diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 00000000..931fdd7d --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,5 @@ +# These are supported funding model platforms + +patreon: placeAtlas +ko_fi: placeatlas +custom: ['https://paypal.me/Codixer'] diff --git a/README.md b/README.md index df74c140..2b40c492 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ To contribute to the map, we require a certain format for artwork region and lab ### Map Edits 1. Create a fork of our repo. -2. Enter your data into the `web/_js/atlas.json` file, with the correct format and ID number. +2. Enter your data into the `web/atlas.json` file, with the correct format and ID number. 3. Create a Pull Request against the `cleanup` branch. ### Cleaning Contributions diff --git a/tools/redditcrawl.py b/tools/redditcrawl.py index bd7101a2..1f7b2f9b 100755 --- a/tools/redditcrawl.py +++ b/tools/redditcrawl.py @@ -3,6 +3,7 @@ import json import time import re +import os outfile = open('temp_atlas.json', 'w', encoding='utf-8') failfile = open('manual_atlas.json', 'w', encoding='utf-8') @@ -25,7 +26,9 @@ for item in existing: existing_ids.append(item['id']) - +total_all_flairs = 0 +duplicate_count = 0 +outfile.write("[\n") for submission in reddit.subreddit('placeAtlas2').new(limit=2000): """ Auth setup @@ -47,10 +50,14 @@ 4. Pull Request """ - #print(dir(submission)) + total_all_flairs += 1 if (submission.id in existing_ids): print("Found first duplicate!") - break + duplicate_count += 1 + if (duplicate_count > 10): + break + else: + continue if(submission.link_flair_text == "New Entry"): text = submission.selftext #Old backslash filter: @@ -73,7 +80,7 @@ lines[i] = line.replace("\"id\": 0", "\"id\": "+"\""+str(submission.id)+"\"") text = "\n".join(lines) try: - outfile.write(json.dumps(json.loads(text))+",\n") + outfile.write(json.dumps(json.loads(text))+" ,\n") successcount += 1 except json.JSONDecodeError: failfile.write(text+",\n") @@ -81,4 +88,10 @@ print("written "+submission.id+" submitted "+str(round(time.time()-submission.created_utc))+" seconds ago") totalcount += 1 -print(f"\n\nSuccess: {successcount}/{totalcount}\nFail: {failcount}/{totalcount}\nPlease check manual_atlas.txt for failed entries to manually resolve.") +# Remove ,\n +outfile.seek(outfile.tell()-4, os.SEEK_SET) +outfile.truncate() + +outfile.write("\n]") + +print(f"\n\nTotal all flairs:{total_all_flairs}\nSuccess: {successcount}/{totalcount}\nFail: {failcount}/{totalcount}\nPlease check manual_atlas.txt for failed entries to manually resolve.") diff --git a/web/_css/style.css b/web/_css/style.css index 9c6eefde..5e4b73fb 100644 --- a/web/_css/style.css +++ b/web/_css/style.css @@ -78,6 +78,7 @@ a:hover { } button, +#exportDirectPost, #aboutBackButton, #drawBackButton { background-image: linear-gradient(to bottom, #888, #666); @@ -103,6 +104,7 @@ button:disabled:hover { } button:hover, +#exportDirectPost:hover, #aboutBackButton:hover, #drawBackButton:hover { background-image: linear-gradient(to bottom, #999, #777); diff --git a/web/_img/place-indexed-final-place.png b/web/_img/place-indexed-final-place.png new file mode 100644 index 00000000..6d939c53 Binary files /dev/null and b/web/_img/place-indexed-final-place.png differ diff --git a/web/_img/place-indexed.png b/web/_img/place-indexed.png index bbeddaea..c11ff2e2 100644 Binary files a/web/_img/place-indexed.png and b/web/_img/place-indexed.png differ diff --git a/web/_js/atlas.js b/web/_js/atlas.js index 72b75f33..92bada94 100644 --- a/web/_js/atlas.js +++ b/web/_js/atlas.js @@ -29,86 +29,30 @@ window.addEventListener("error", function (e) { document.getElementById("loadingContent").innerHTML = errorMessage; }); -function pointIsInPolygon (point, polygon) { - // ray-casting algorithm based on - // http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html - - var x = point[0], y = point[1]; - - var inside = false; - for (var i = 0, j = polygon.length - 1; i < polygon.length; j = i++) { - var xi = polygon[i][0], yi = polygon[i][1]; - var xj = polygon[j][0], yj = polygon[j][1]; - - var intersect = ((yi > y) != (yj > y)) - && (x < (xj - xi) * (y - yi) / (yj - yi) + xi); - if (intersect) inside = !inside; - } - return inside; -}; - -//console.log("There are "+atlas.length+" entries in the Atlas."); - -/* -atlas.sort(function(a, b) { - if (a.id < b.id) { - return -1; - } - if (a.id > b.id) { - return 1; - } - // a must be equal to b - return 0; -}); - -for(var i = 0; i < atlas.length; i++) { - if(atlas[i-1]){ - if(atlas[i-1].id == atlas[i].id) { - console.log(atlas[i-1].id + ": "+ atlas[i-1].name); - console.log(atlas[i ].id + ": "+ atlas[i ].name); - } +function getPositionOfEntry(entry){ + let startX = 2000, startY = 2000; + for(let [x, y] of entry.path){ + startX = Math.min(x, startX); + startY = Math.min(y, startY) } + if(startX === 2000 || startY === 2000) return null; + return [parseInt(startX), parseInt(startY)]; } -console.log("biggest id: "+atlas[atlas.length-1].id + ", " + atlas[atlas.length-1].name); -*/ -/* -for(var i = 0; i < atlas.length; i++) { - if(typeof atlas[i].website == "undefined") { - console.log(atlas[i].name); - } else if(atlas[i].website.trim() != "") { - if(atlas[i].website.trim().substring(0, 4) != "http") { - console.log(atlas[i].name + ": " + atlas[i].website); - } - } -} -*/ +// Modified from https://stackoverflow.com/a/33670691 +function calcPolygonArea(vertices) { + var total = 0; -// sort by center.y, so that lines will overlap less + for (var i = 0, l = vertices.length; i < l; i++) { + var addX = vertices[i][0]; + var addY = vertices[i == vertices.length - 1 ? 0 : i + 1][1]; + var subX = vertices[i == vertices.length - 1 ? 0 : i + 1][0]; + var subY = vertices[i][1]; -/* + total += (addX * addY * 0.5); + total -= (subX * subY * 0.5); + } -// Populate with test data - -for(var i = 0; i < 10000; i++) { - var x = ~~(Math.random() * 1000)+0.5; - var y = ~~(Math.random() * 1000)+0.5; - var w = ~~(Math.random()*100); - var h = ~~(Math.random()*100); - atlas.push( { - "id": 5, - "name": "test"+(i+3), - "website": "", - "subreddit": "", - "center": [0, 0], - "path":[ - [x, y], - [x+w, y], - [x+w, y+h], - [x, y+h] - ] - }); -} - -*/ + return Math.floor(Math.abs(total)); +} \ No newline at end of file diff --git a/web/_js/infoblock.js b/web/_js/infoblock.js index edbaccb1..759e0e32 100644 --- a/web/_js/infoblock.js +++ b/web/_js/infoblock.js @@ -1,4 +1,16 @@ function createInfoBlock(entry) { + function createInfoParagraph(name, value){ + let entryParagraphPositionElement = document.createElement("p"); + let nameElement = document.createElement("span"); + nameElement.style.fontWeight = "bold"; + nameElement.innerText = name; + let valueElement = document.createElement("span"); + valueElement.innerText = value; + entryParagraphPositionElement.appendChild(nameElement); + entryParagraphPositionElement.appendChild(valueElement); + return entryParagraphPositionElement; + } + var element = document.createElement("div"); element.className = "object"; @@ -15,6 +27,15 @@ function createInfoBlock(entry) { descElement.innerText = entry.description; element.appendChild(descElement); } + + let [x, y] = entry.center; + element.appendChild(createInfoParagraph("Position: ", `${Math.floor(x)}x${Math.floor(y)}`)); + + if(entry.path){ + let area = calcPolygonArea(entry.path); + element.appendChild(createInfoParagraph("Area: ", `${area} pixels`)); + } + if (entry.website) { let websiteLinkElement = document.createElement("a"); websiteLinkElement.target = "_blank"; @@ -39,9 +60,8 @@ function createInfoBlock(entry) { element.appendChild(subredditLinkElement); } } - let idElement = document.createElement("p"); + let idElement = createInfoParagraph("ID: ", entry.id); idElement.style.fontFamily = "Dejavu Sans Mono, sans, Sans-Serif;"; - idElement.innerText = "id: " + entry.id; element.appendChild(idElement); return element; diff --git a/web/_js/main.js b/web/_js/main.js index 55ab4a11..15c4f628 100644 --- a/web/_js/main.js +++ b/web/_js/main.js @@ -47,7 +47,7 @@ var lastPosition = [0, 0]; var viewportSize = [0, 0]; document.getElementById("donateButton").addEventListener("click", function(e){ - document.getElementById("bitcoinQR").src = "./_img/bitcoinQR.png?from=index"; +// document.getElementById("bitcoinQR").src = "./_img/bitcoinQR.png?from=index"; document.getElementById("donateOverlay").style.display = "flex"; }); @@ -78,7 +78,8 @@ var atlas = null; init(); async function init(){ - + // For Reviewing Reddit Changes + //let resp = await fetch("../tools/temp_atlas.json"); let resp = await fetch("./atlas.json"); atlas = await resp.json(); atlas.sort(function (a, b) { @@ -270,14 +271,23 @@ async function init(){ initialPinchZoom = zoom; lastPosition = [x, y]; - - if(e.deltaY > 0){ - zoom = zoom / 2; - - } else if(e.deltaY < 0){ - - zoom = zoom * 2; + // Check if we are zooming by pixels + // https://developer.mozilla.org/en-US/docs/Web/API/WheelEvent/deltaMode + if (e.deltaMode === 0) { + // Scale the pixel delta by the current zoom factor + // We want to zoom faster when closer, and slower when further + // This creates a smoother experience + zoom -= e.deltaY * (0.001 * zoom); + } else { + if(e.deltaY > 0){ + + zoom = zoom / 2; + + } else if(e.deltaY < 0){ + + zoom = zoom * 2; + } } zoom = Math.max(minZoom, Math.min(maxZoom, zoom)); diff --git a/web/_js/stats.js b/web/_js/stats.js index b75bafcb..2a88e87f 100644 --- a/web/_js/stats.js +++ b/web/_js/stats.js @@ -21,13 +21,6 @@ for(var q = 0; q < atlas.length; q++){ area = Math.abs(area/2); - if(atlas[q].name == "Companion Cube"){ - var w = atlas[q].path[1][0] - atlas[q].path[0][0]; - var h = atlas[q].path[2][1] - atlas[q].path[1][1]; - console.log(w, h, w*h); - console.log(area, Math.sqrt(area)); - } - areasSum += area; areas.push(area); diff --git a/web/_js/view.js b/web/_js/view.js index 51c107e0..124118b3 100644 --- a/web/_js/view.js +++ b/web/_js/view.js @@ -273,12 +273,12 @@ function initView(){ //var id = parseInt(window.location.hash.substring(3)); - var entry = atlas.filter(function(e){ + var entries = atlas.filter(function(e){ return e.id === id; }); - if (entry.length === 1){ - entry = entry[0]; + if (entries.length === 1){ + let entry = entries[0]; document.title = entry.name + " on the 2022 /r/place Atlas"; @@ -532,7 +532,6 @@ function initView(){ applyView(); } if(document.documentElement.clientWidth < 500){ - objectsContainer.innerHTML = ""; entriesListShown = false; @@ -591,7 +590,7 @@ function initView(){ } } - function render(){ + async function render(){ context.clearRect(0, 0, canvas.width, canvas.height); @@ -636,6 +635,29 @@ function initView(){ context.globalCompositeOperation = "source-out"; context.drawImage(backgroundCanvas, 0, 0); + if(hovered.length === 1 && hovered[0].path.length && hovered[0].overrideImage){ + let undisputableHovered = hovered[0]; + // Find the left-topmost point of all the paths + let entryPosition = getPositionOfEntry(undisputableHovered); + if(entryPosition){ + const [startX, startY] = entryPosition; + let overrideImage = new Image(); + const loadingPromise = new Promise((res, rej) => { + overrideImage.onerror = rej; + overrideImage.onload = res; + }); + overrideImage.src = "imageOverrides/" + undisputableHovered.overrideImage; + try{ + await loadingPromise; + context.globalCompositeOperation = "source-over"; + context.drawImage(overrideImage, startX, startY); + }catch(ex){ + console.log("Cannot override image."); + console.log(ex); + } + } + } + for(var i = 0; i < hovered.length; i++){ var path = hovered[i].path; diff --git a/web/about.html b/web/about.html index 23e97adc..69212212 100644 --- a/web/about.html +++ b/web/about.html @@ -34,7 +34,7 @@ - +
@@ -76,7 +76,7 @@

The 2022 /r/place Atlas

This is an Atlas aiming to chart all the artworks created during the /r/place April's fools event on Reddit in 2022.

The original code was developed by (mail, reddit) and is available under the free AGPL license on GitHub.


-

The currently maintained version of the website is managed by and is obtainable under the same license within a Github Fork.

+

The currently maintained version of the website is managed by and is obtainable under the same license within a Github Fork.

Image's provided by Alex Tsernoh

.

Maintaining and updating the website takes work, but I enjoy doing it for free and giving this to people. But if you would like to support me, or the people who helped me with contributions to this project. You're free to support us though Paypal. (I don't have bitcoin)

To maintain the same tradition, I will also be offering stickers to anyone donating more then 20$ (Due to the size increase). But, you're not forced to do anything! This only shows appreciation to us and the people who've worked on this project

@@ -88,7 +88,7 @@

The 2022 /r/place Atlas

How to contribute

The /r/Place Atlas project relies on user contributions.

To contribute a label for an artwork, please read this post on reddit to learn how to submit a new entry.

-

Alternatively, contributions can be made directly on GitHub.

+

Alternatively, contributions can be made directly on GitHub.

The /r/placeAtlas2 subreddit is also the place to submit all bug reports, feature requests or questions.

diff --git a/web/atlas.json b/web/atlas.json index ad3d893f..dd72d43e 100644 --- a/web/atlas.json +++ b/web/atlas.json @@ -6,13 +6,13 @@ {"id": "000004", "name": "Triforce", "description": "The iconic symbol of the Legend of Zelda franchise.", "website": "", "subreddit": "/r/Zelda", "center": [788.5, 640.5], "path": [[788.5, 598.5], [756.5, 661.5], [819.5, 661.5], [819.5, 660.5], [788.5, 598.5]]}, {"id": "000005", "name": "She-Ra Corner", "description": "A miniature pixel art of the Sword of Protection, the signature weapon of Adora aka She-Ra, protagonist of the 2018 Netflix series She-Ra and the Princesses of Power.\n\nThe text underneath the sword spells out \"She-Ra\".", "website": "https://www.netflix.com/title/80179762", "subreddit": "/r/PrincessesOfPower", "center": [1347.5, 416.5], "path": [[1334.5, 409.5], [1360.5, 409.5], [1360.5, 422.5], [1334.5, 422.5]]}, {"id": "000006", "name": "2b2t logo", "description": "The logo of 2b2t.org, the oldest anarchy server in Minecraft. (r/2b2t)", "website": "", "subreddit": "/r/2b2tplace", "center": [936.5, 451.5], "path": [[912.5, 421.5], [912.5, 481.5], [960.5, 481.5], [960.5, 421.5]]}, -{"id": "000007", "name": "Fancade", "description": "The fancade logo, a mobile game with a built in game engine.", "website": "www.fancade.com", "subreddit": "/r/fancade", "center": [90.5, 696.5], "path": [[72.5, 690.5], [108.5, 690.5], [108.5, 701.5], [79.5, 702.5], [75.5, 702.5], [72.5, 703.5], [73.5, 690.5]]}, +{"id": "000007", "name": "Fancade", "description": "The Fancade logo, a mobile game with a built in-game engine.", "website": "https://www.fancade.com", "subreddit": "/r/fancade", "center": [90.5, 696.5], "path": [[72.5, 690.5], [108.5, 690.5], [108.5, 701.5], [79.5, 702.5], [75.5, 702.5], [72.5, 703.5], [73.5, 690.5]]}, {"id": "000008", "name": "NotITG", "description": "Stepmania fork for modcharts", "website": "https://noti.tg/", "subreddit": "", "center": [1198.5, 58.5], "path": [[1179.5, 60.5], [1183.5, 56.5], [1180.5, 53.5], [1183.5, 50.5], [1184.5, 49.5], [1213.5, 49.5], [1213.5, 63.5], [1215.5, 63.5], [1215.5, 68.5], [1212.5, 68.5], [1212.5, 67.5], [1195.5, 67.5], [1195.5, 64.5], [1183.5, 64.5]]}, {"id": "000009", "name": "Firey", "description": "A pixel version of the bfdi character, Firey", "website": "https://bfdi.tv", "subreddit": "/r/battlefordreamisland", "center": [620.5, 876.5], "path": [[631.5, 866.5], [609.5, 866.5], [609.5, 885.5], [630.5, 886.5]]}, {"id": "000010", "name": "r/DeepRockGalactic", "description": "Deep Rock Galactic is a 1-4 player co-op FPS featuring badass space Dwarves, 100% destructible environments, procedurally-generated caves, and endless hordes of alien monsters.", "website": "https://www.deeprockgalactic.com/", "subreddit": "/r/DeepRockGalactic", "center": [208.5, 285.5], "path": [[175.5, 262.5], [241.5, 262.5], [241.5, 308.5], [175.5, 308.5], [175.5, 262.5]]}, {"id": "000012", "name": "Starwars", "description": "Poster art for 'Star Wars Episode IV: A New Hope', done by the redditors at starwars_place. Heavy battles fought against among us, and only once briefly disappearing to XQC, before being reinstated.", "website": "", "subreddit": "/r/starwars_place", "center": [621.5, 771.5], "path": [[571.5, 698.5], [671.5, 698.5], [671.5, 844.5], [570.5, 843.5]]}, {"id": "000013", "name": "Cang", "description": "It's quite literally just cang.", "website": "", "subreddit": "", "center": [1960.5, 328.5], "path": [[1954.5, 322.5], [1954.5, 333.5], [1966.5, 333.5], [1966.5, 322.5], [1954.5, 322.5]]}, -{"id": "000014", "name": "Avicii Tribute", "description": "The logo of the Swedish DJ and EDM artist Avicii, who was born on 8 September 1989 and died on 20 April 2018. The creation was part of a collaboration with r/Avicii and r/Place_Nordicunion.", "website": "https://discord.gg/9zTbdMSUea", "subreddit": "/r/Avicii", "center": [757.5, 81.5], "path": [[740.5, 91.5], [773.5, 91.5], [773.5, 71.5], [740.5, 71.5], [740.5, 91.5]]}, +{"id": "000014", "name": "Avicii tribute", "description": "The logo of the Swedish DJ and electronic dance music artist Avicii, who was born on 8 September 1989 and died on 20 April 2018. The creation was part of a collaboration with r/Avicii and r/Place_Nordicunion.", "website": "https://discord.gg/9zTbdMSUea", "subreddit": "/r/Avicii", "center": [757.5, 81.5], "path": [[740.5, 91.5], [773.5, 91.5], [773.5, 71.5], [740.5, 71.5], [740.5, 91.5]]}, {"id": "000015", "name": "Burdurland Logo", "description": "Logo of subreddit r/burdurland", "website": "", "subreddit": "/r/burdurland", "center": [965.5, 44.5], "path": [[999.5, 0.5], [999.5, 87.5], [930.5, 87.5], [930.5, 0.5]]}, {"id": "000016", "name": "Trackmania", "description": "Original/previous logo of the arcade racing game series Trackmania.", "website": "https://www.trackmania.com", "subreddit": "/r/trackmania", "center": [411.5, 749.5], "path": [[373.5, 740.5], [448.5, 740.5], [448.5, 757.5], [373.5, 757.5], [373.5, 740.5]]}, {"id": "000017", "name": "Czech flag with pixelarts", "description": "Czech flag made by the community of r/czech.\nWith pixelarts from Czech culture.", "website": "", "subreddit": "/r/czech", "center": [1261.5, 205.5], "path": [[1197.5, 161.5], [1325.5, 161.5], [1325.5, 249.5], [1197.5, 249.5]]}, @@ -22,16 +22,15 @@ {"id": "000022", "name": "United Kingdom", "description": "The Union Jack, featuring pixel art of (right to left) the Palace of Westminster and Big Ben (often defaced with a phallus), a teapot and mug, Saint Piran's Flag (Cornwall), The Cross of Saint Patrick (Ireland), the Welsh Flag, the Scottish Saltire, and the logo of the National Health Service", "website": "", "subreddit": "/r/ukplace", "center": [635.5, 516.5], "path": [[569.5, 476.5], [571.5, 557.5], [701.5, 557.5], [701.5, 476.5], [701.5, 476.5], [701.5, 476.5], [701.5, 476.5], [700.5, 476.5]]}, {"id": "000023", "name": "BFDI Bubble and Leafy", "description": "Leafy and Bubble from \"Battle For Dream Island\" standing on Yoyleland.", "website": "https://www.youtube.com/watch?v=YQa2-DY7Y_Q&list=PL24C8378F296DB656&ab_channel=jacknjellify", "subreddit": "/r/BattleForDreamIsland", "center": [1575.5, 54.5], "path": [[1561.5, 42.5], [1562.5, 67.5], [1588.5, 67.5], [1588.5, 42.5]]}, {"id": "000025", "name": "Northeastern University", "description": "Northeastern University Husky and Initials. Coordinated using discord : https://www.reddit.com/r/NEU/comments/tt7dhj/rplace_northeastern_discord/", "website": "https://www.reddit.com/r/NEU/", "subreddit": "/r/NEU", "center": [221.5, 707.5], "path": [[185.5, 699.5], [258.5, 699.5], [258.5, 714.5], [183.5, 714.5], [184.5, 698.5]]}, -{"id": "000024", "name": "osu!", "description": "Place tiles for the rhythm game osu!", "website": "https://www.reddit.com/r/osuplace/", "subreddit": "/r/osuplace", "center": [727.5, 726.5], "path": [[695.5, 691.5], [710.5, 682.5], [730.5, 679.5], [751.5, 685.5], [765.5, 696.5], [773.5, 716.5], [775.5, 733.5], [768.5, 752.5], [758.5, 764.5], [746.5, 769.5], [728.5, 774.5], [707.5, 769.5], [693.5, 760.5], [683.5, 746.5], [678.5, 732.5], [681.5, 711.5], [692.5, 694.5]]}, {"id": "000026", "name": "GNU/Linux", "description": "Icon for various nix distributions and a large Tux Penguin", "website": "https://www.reddit.com/r/placetux/", "subreddit": "/r/placetux", "center": [46.5, 722.5], "path": [[20.5, 679.5], [71.5, 679.5], [71.5, 764.5], [20.5, 765.5], [21.5, 680.5]]}, {"id": "000027", "name": "Club Penguin", "description": "A blue penguin from the MMO videogame Club Penguin, which officially closed in March 2017.", "website": "", "subreddit": "/r/clubpenguin", "center": [1884.5, 159.5], "path": [[1887.5, 141.5], [1881.5, 141.5], [1880.5, 142.5], [1879.5, 142.5], [1879.5, 144.5], [1878.5, 145.5], [1877.5, 145.5], [1877.5, 151.5], [1876.5, 151.5], [1876.5, 152.5], [1876.5, 152.5], [1875.5, 153.5], [1875.5, 154.5], [1874.5, 155.5], [1874.5, 156.5], [1873.5, 157.5], [1872.5, 158.5], [1872.5, 159.5], [1871.5, 160.5], [1871.5, 161.5], [1871.5, 162.5], [1871.5, 165.5], [1871.5, 166.5], [1872.5, 167.5], [1873.5, 166.5], [1874.5, 165.5], [1875.5, 164.5], [1875.5, 165.5], [1875.5, 167.5], [1876.5, 168.5], [1877.5, 169.5], [1875.5, 169.5], [1875.5, 170.5], [1875.5, 171.5], [1874.5, 171.5], [1874.5, 174.5], [1879.5, 174.5], [1880.5, 173.5], [1881.5, 172.5], [1882.5, 173.5], [1883.5, 174.5], [1884.5, 173.5], [1885.5, 172.5], [1886.5, 172.5], [1886.5, 173.5], [1887.5, 173.5], [1887.5, 174.5], [1893.5, 174.5], [1893.5, 173.5], [1892.5, 172.5], [1892.5, 171.5], [1891.5, 170.5], [1891.5, 169.5], [1890.5, 169.5], [1891.5, 168.5], [1892.5, 168.5], [1892.5, 164.5], [1893.5, 165.5], [1893.5, 166.5], [1894.5, 166.5], [1894.5, 167.5], [1896.5, 167.5], [1896.5, 160.5], [1895.5, 159.5], [1895.5, 156.5], [1894.5, 155.5], [1893.5, 154.5], [1893.5, 153.5], [1892.5, 152.5], [1891.5, 151.5], [1891.5, 149.5], [1890.5, 148.5], [1890.5, 145.5], [1889.5, 144.5], [1889.5, 143.5], [1888.5, 142.5]]}, {"id": "000030", "name": "Flag of East Turkestan", "description": "The historical flag of the Turkic Islamic Republic of East Turkestan, currently used by Uyghur activists", "website": "", "subreddit": "", "center": [978.5, 454.5], "path": [[965.5, 442.5], [991.5, 442.5], [991.5, 464.5], [991.5, 465.5], [965.5, 465.5]]}, {"id": "000031", "name": "Flag of Turkey", "description": "Flag of Turkey with the silhouette of Istanbul", "website": "", "subreddit": "/r/turkey", "center": [390.5, 396.5], "path": [[300.5, 344.5], [479.5, 344.5], [479.5, 448.5], [300.5, 448.5], [300.5, 344.5]]}, {"id": "000032", "name": "Atat\u00fcrk's Portrait", "description": "Mustafa Kemal Atat\u00fcrk, founder of Turkey", "website": "", "subreddit": "/r/turkey", "center": [1052.5, 60.5], "path": [[1001.5, 1.5], [1103.5, 1.5], [1103.5, 119.5], [1001.5, 119.5]]}, {"id": "000033", "name": "Moka pot", "description": "An Italian traditional coffee maker.", "website": "", "subreddit": "", "center": [834.5, 395.5], "path": [[846.5, 404.5], [846.5, 400.5], [845.5, 400.5], [844.5, 399.5], [844.5, 396.5], [843.5, 395.5], [843.5, 393.5], [847.5, 389.5], [848.5, 390.5], [848.5, 391.5], [847.5, 392.5], [847.5, 393.5], [848.5, 394.5], [848.5, 395.5], [849.5, 394.5], [849.5, 387.5], [848.5, 386.5], [848.5, 385.5], [847.5, 385.5], [846.5, 384.5], [845.5, 384.5], [843.5, 382.5], [839.5, 382.5], [837.5, 380.5], [836.5, 380.5], [834.5, 382.5], [828.5, 382.5], [828.5, 383.5], [825.5, 386.5], [825.5, 387.5], [822.5, 390.5], [822.5, 391.5], [820.5, 393.5], [820.5, 395.5], [819.5, 396.5], [819.5, 397.5], [817.5, 399.5], [816.5, 399.5], [816.5, 403.5], [817.5, 404.5], [817.5, 405.5], [818.5, 405.5], [819.5, 406.5], [824.5, 406.5], [826.5, 404.5], [826.5, 398.5], [825.5, 397.5], [824.5, 396.5], [824.5, 392.5], [825.5, 391.5], [825.5, 390.5], [826.5, 389.5], [827.5, 389.5], [830.5, 392.5], [830.5, 393.5], [831.5, 394.5], [831.5, 395.5], [829.5, 397.5], [829.5, 399.5], [828.5, 400.5], [828.5, 406.5], [830.5, 406.5], [831.5, 407.5], [843.5, 407.5], [844.5, 406.5], [845.5, 406.5], [846.5, 405.5]]}, -{"id": "000034", "name": "Toki Pona (ma nanpa wan)", "description": "The first site decorated by the toki pona community. Toki pona is a minimalist constructed language by Sonja Lang (jan Sonja).", "website": "https://tokipona.org/", "subreddit": "/r/tokipona", "center": [763.5, 345.5], "path": [[740.5, 330.5], [786.5, 330.5], [786.5, 360.5], [740.5, 360.5]]}, +{"id": "000034", "name": "Toki Pona (ma nanpa wan)", "description": "The first site decorated by the Toki Pona community. Toki Pona is a minimalist constructed language by Sonja Lang (jan Sonja).", "website": "https://tokipona.org/", "subreddit": "/r/tokipona", "center": [763.5, 345.5], "path": [[740.5, 330.5], [786.5, 330.5], [786.5, 360.5], [740.5, 360.5]]}, {"id": "000035", "name": "civbr :happysperm:/:squirtyay:", "description": "The :squirtyay:/:happysperm: emote built by the r/civbattleroyale and associated communities", "website": "", "subreddit": "/r/civbattleroyale", "center": [718.5, 369.5], "path": [[707.5, 360.5], [724.5, 360.5], [730.5, 366.5], [730.5, 374.5], [725.5, 380.5], [718.5, 380.5], [714.5, 377.5], [707.5, 376.5], [707.5, 376.5], [707.5, 360.5]]}, -{"id": "000036", "name": "Java", "description": "The Java Logo", "website": "", "subreddit": "", "center": [1220.5, 875.5], "path": [[1215.5, 870.5], [1224.5, 870.5], [1224.5, 879.5], [1215.5, 879.5]]}, +{"id": "000036", "name": "Java", "description": "The Java Logo. Built and maintained by the Java Discord server. discord.gg/java", "website": "", "subreddit": "", "center": [1220.5, 875.5], "path": [[1215.5, 870.5], [1224.5, 870.5], [1224.5, 879.5], [1215.5, 879.5]]}, {"id": "000037", "name": "Tally Hall Logo", "description": "This is the logo of the band \"tally hall\". Above it, in the trans pride flag, is the character \"ally hall\", a joint project between the two groups.", "website": "https://www.tallyhall.com", "subreddit": "/r/tallyhall", "center": [769.5, 495.5], "path": [[754.5, 477.5], [754.5, 521.5], [763.5, 521.5], [763.5, 507.5], [786.5, 507.5], [786.5, 477.5], [773.5, 477.5]]}, {"id": "000039", "name": "Encanto Butterfly", "description": "Butterfly from the Disney animated movie Encanto.", "website": "", "subreddit": "", "center": [1924.5, 275.5], "path": [[1918.5, 270.5], [1918.5, 281.5], [1927.5, 281.5], [1933.5, 270.5], [1918.5, 270.5]]}, {"id": "000040", "name": "Outer wilds Patch", "description": "the main logo for the game outer wilds, it's content is animated to emulate a supernovae", "website": "", "subreddit": "/r/outerwilds", "center": [367.5, 948.5], "path": [[347.5, 959.5], [388.5, 959.5], [389.5, 958.5], [389.5, 955.5], [368.5, 925.5], [367.5, 925.5], [346.5, 955.5], [346.5, 958.5], [347.5, 959.5], [371.5, 954.5], [346.5, 955.5]]}, @@ -48,11 +47,11 @@ {"id": "000054", "name": "Smiling Friends", "description": "Smiling Friends is an animated television series created by Zach Hadel and Michael Cusack for Cartoon Network's night-time programming block Adult Swim - Wiki", "website": "https://www.reddit.com/r/SmilingFriends/", "subreddit": "/r/SmilingFriends", "center": [531.5, 927.5], "path": [[513.5, 900.5], [548.5, 900.5], [548.5, 954.5], [514.5, 953.5]]}, {"id": "000055", "name": "Mikio Fujioka Tribute", "description": "A star in tribute to Mikio Fujioka, a guitarist of BABYMETAL's backing band the KAMI band - who sadly passed away in 2018", "website": "https://www.babymetal.com/en/", "subreddit": "/r/BABYMETAL", "center": [1124.5, 482.5], "path": [[1120.5, 478.5], [1120.5, 486.5], [1128.5, 486.5], [1128.5, 481.5], [1125.5, 481.5], [1125.5, 478.5]]}, {"id": "000056", "name": "Tintin and his dog.", "description": "The Tintin comic series originated in Belgium and is represented on the flag.", "website": "", "subreddit": "", "center": [308.5, 596.5], "path": [[322.5, 580.5], [322.5, 613.5], [291.5, 612.5], [296.5, 579.5], [299.5, 579.5]]}, -{"id": "000057", "name": "Queen Margrethe The 2nd", "description": "A picture of her royal highness the Danish queen Margrethe the 2nd smoking", "website": "", "subreddit": "", "center": [472.5, 259.5], "path": [[478.5, 215.5], [484.5, 215.5], [484.5, 216.5], [486.5, 216.5], [486.5, 217.5], [488.5, 217.5], [488.5, 218.5], [490.5, 218.5], [490.5, 219.5], [491.5, 219.5], [491.5, 220.5], [493.5, 220.5], [493.5, 221.5], [494.5, 221.5], [494.5, 222.5], [495.5, 222.5], [495.5, 293.5], [437.5, 294.5], [437.5, 287.5], [448.5, 277.5], [449.5, 275.5], [449.5, 272.5], [448.5, 271.5], [448.5, 269.5], [448.5, 266.5], [448.5, 265.5], [447.5, 262.5], [448.5, 262.5], [450.5, 260.5], [449.5, 258.5], [449.5, 256.5], [447.5, 255.5], [450.5, 253.5], [453.5, 249.5], [448.5, 248.5], [452.5, 245.5], [457.5, 249.5], [458.5, 247.5], [456.5, 245.5], [456.5, 243.5], [458.5, 241.5], [459.5, 240.5], [459.5, 237.5], [459.5, 235.5], [461.5, 237.5], [463.5, 235.5], [463.5, 234.5], [464.5, 231.5], [458.5, 228.5], [459.5, 225.5], [458.5, 224.5], [458.5, 221.5], [458.5, 220.5], [463.5, 220.5], [466.5, 220.5], [467.5, 222.5], [473.5, 219.5], [474.5, 219.5]]}, -{"id": "000058", "name": "Kaj & Andrea", "description": "Popular children cartoon in Denmark containing two puppets named Kaj (the frog) and Andrea (the parrot)", "website": "", "subreddit": "", "center": [445.5, 232.5], "path": [[437.5, 215.5], [454.5, 218.5], [457.5, 222.5], [457.5, 226.5], [459.5, 226.5], [457.5, 226.5], [457.5, 228.5], [459.5, 230.5], [456.5, 232.5], [452.5, 232.5], [453.5, 234.5], [453.5, 243.5], [446.5, 250.5], [442.5, 250.5], [441.5, 248.5], [439.5, 248.5], [437.5, 251.5], [434.5, 249.5], [435.5, 245.5], [436.5, 242.5], [437.5, 234.5], [435.5, 233.5], [435.5, 226.5], [436.5, 224.5], [437.5, 224.5], [437.5, 222.5], [434.5, 221.5], [437.5, 216.5]]}, +{"id": "000057", "name": "Queen Margrethe the 2nd", "description": "A picture of Her Royal Highness the Danish queen Margrethe the 2nd smoking.", "website": "https://en.wikipedia.org/wiki/Margrethe_II_of_Denmark", "subreddit": "/r/Denmark", "center": [472.5, 259.5], "path": [[478.5, 215.5], [484.5, 215.5], [484.5, 216.5], [486.5, 216.5], [486.5, 217.5], [488.5, 217.5], [488.5, 218.5], [490.5, 218.5], [490.5, 219.5], [491.5, 219.5], [491.5, 220.5], [493.5, 220.5], [493.5, 221.5], [494.5, 221.5], [494.5, 222.5], [495.5, 222.5], [495.5, 293.5], [437.5, 294.5], [437.5, 287.5], [448.5, 277.5], [449.5, 275.5], [449.5, 272.5], [448.5, 271.5], [448.5, 269.5], [448.5, 266.5], [448.5, 265.5], [447.5, 262.5], [448.5, 262.5], [450.5, 260.5], [449.5, 258.5], [449.5, 256.5], [447.5, 255.5], [450.5, 253.5], [453.5, 249.5], [448.5, 248.5], [452.5, 245.5], [457.5, 249.5], [458.5, 247.5], [456.5, 245.5], [456.5, 243.5], [458.5, 241.5], [459.5, 240.5], [459.5, 237.5], [459.5, 235.5], [461.5, 237.5], [463.5, 235.5], [463.5, 234.5], [464.5, 231.5], [458.5, 228.5], [459.5, 225.5], [458.5, 224.5], [458.5, 221.5], [458.5, 220.5], [463.5, 220.5], [466.5, 220.5], [467.5, 222.5], [473.5, 219.5], [474.5, 219.5]]}, +{"id": "000058", "name": "Kaj & Andrea", "description": "Popular children cartoon in Denmark containing two puppets named Kaj (the frog) and Andrea (the parrot).", "website": "https://en.wikipedia.org/wiki/Kaj_%26_Andrea", "subreddit": "/r/Denmark", "center": [445.5, 232.5], "path": [[437.5, 215.5], [454.5, 218.5], [457.5, 222.5], [457.5, 226.5], [459.5, 226.5], [457.5, 226.5], [457.5, 228.5], [459.5, 230.5], [456.5, 232.5], [452.5, 232.5], [453.5, 234.5], [453.5, 243.5], [446.5, 250.5], [442.5, 250.5], [441.5, 248.5], [439.5, 248.5], [437.5, 251.5], [434.5, 249.5], [435.5, 245.5], [436.5, 242.5], [437.5, 234.5], [435.5, 233.5], [435.5, 226.5], [436.5, 224.5], [437.5, 224.5], [437.5, 222.5], [434.5, 221.5], [437.5, 216.5]]}, {"id": "000059", "name": "Art Heaven", "description": "Art Heaven is an art community started on discord. This is an image of our mascot, Abby!", "website": "", "subreddit": "/r/artheaven", "center": [652.5, 640.5], "path": [[661.5, 632.5], [661.5, 647.5], [642.5, 647.5], [642.5, 632.5]]}, {"id": "000060", "name": "/r/FigureSkating", "description": "", "website": "", "subreddit": "/r/FigureSkating", "center": [277.5, 975.5], "path": [[286.5, 966.5], [267.5, 966.5], [267.5, 972.5], [268.5, 972.5], [268.5, 973.5], [269.5, 973.5], [269.5, 980.5], [268.5, 980.5], [268.5, 985.5], [286.5, 985.5]]}, -{"id": "000061", "name": "Hermitcraft", "description": "Hermitcraft is a popular Minecraft SMP (Survival MultiPLayer), featuring many of the most popular creators", "website": "https://hermitcraft.com", "subreddit": "/r/hermitcraft", "center": [881.5, 607.5], "path": [[924.5, 583.5], [879.5, 583.5], [879.5, 590.5], [851.5, 590.5], [850.5, 632.5], [902.5, 632.5], [902.5, 616.5], [906.5, 616.5], [906.5, 592.5], [925.5, 592.5], [925.5, 583.5], [924.5, 583.5]]}, +{"id": "000061", "name": "Hermitcraft", "description": "Hermitcraft is a popular Minecraft SMP (Survival Multiplayer), featuring many of the most popular creators.", "website": "https://hermitcraft.com", "subreddit": "/r/hermitcraft", "center": [881.5, 607.5], "path": [[924.5, 583.5], [879.5, 583.5], [879.5, 590.5], [851.5, 590.5], [850.5, 632.5], [902.5, 632.5], [902.5, 616.5], [906.5, 616.5], [906.5, 592.5], [925.5, 592.5], [925.5, 583.5], [924.5, 583.5]]}, {"id": "000062", "name": "Notte Boom Sticker", "description": "The in-game emote used for Dragalia Lost mobile game featuring the character Notte.", "website": "https://dragalialost.com/", "subreddit": "/r/DragaliaLost", "center": [197.5, 49.5], "path": [[178.5, 34.5], [215.5, 34.5], [215.5, 64.5], [178.5, 64.5]]}, {"id": "000063", "name": "Patriotic Dragonite", "description": "A Dragonite from the video game series Pok\u00e9mon with its palm on its chest. It has become a symbol of spanish patriotism on many memes featuring him behind a spanish flag.", "website": "", "subreddit": "/r/esplace", "center": [983.5, 300.5], "path": [[973.5, 308.5], [973.5, 306.5], [974.5, 305.5], [974.5, 303.5], [973.5, 302.5], [972.5, 301.5], [972.5, 300.5], [972.5, 299.5], [973.5, 298.5], [974.5, 297.5], [973.5, 296.5], [973.5, 295.5], [972.5, 294.5], [970.5, 294.5], [968.5, 296.5], [967.5, 295.5], [967.5, 291.5], [969.5, 289.5], [970.5, 288.5], [970.5, 286.5], [971.5, 287.5], [972.5, 288.5], [974.5, 288.5], [975.5, 287.5], [976.5, 286.5], [977.5, 285.5], [980.5, 285.5], [981.5, 286.5], [985.5, 285.5], [986.5, 286.5], [987.5, 286.5], [988.5, 285.5], [989.5, 286.5], [987.5, 288.5], [986.5, 288.5], [985.5, 287.5], [984.5, 288.5], [984.5, 293.5], [985.5, 293.5], [987.5, 293.5], [989.5, 291.5], [989.5, 290.5], [990.5, 288.5], [991.5, 287.5], [992.5, 286.5], [993.5, 287.5], [994.5, 288.5], [995.5, 289.5], [995.5, 296.5], [996.5, 296.5], [996.5, 297.5], [995.5, 297.5], [993.5, 297.5], [993.5, 295.5], [990.5, 295.5], [989.5, 296.5], [988.5, 296.5], [988.5, 298.5], [989.5, 300.5], [989.5, 301.5], [988.5, 302.5], [989.5, 303.5], [992.5, 303.5], [992.5, 302.5], [991.5, 301.5], [991.5, 301.5], [991.5, 298.5], [994.5, 298.5], [995.5, 299.5], [995.5, 300.5], [997.5, 300.5], [997.5, 301.5], [998.5, 301.5], [998.5, 305.5], [997.5, 306.5], [996.5, 306.5], [995.5, 307.5], [990.5, 311.5], [990.5, 312.5], [989.5, 313.5], [989.5, 314.5], [985.5, 318.5], [983.5, 318.5], [982.5, 317.5], [982.5, 316.5], [983.5, 315.5], [983.5, 313.5], [982.5, 312.5], [981.5, 311.5], [980.5, 312.5], [980.5, 313.5], [977.5, 313.5], [977.5, 314.5], [975.5, 316.5], [973.5, 316.5], [972.5, 315.5], [972.5, 314.5], [973.5, 313.5], [974.5, 312.5], [974.5, 311.5], [973.5, 310.5], [973.5, 308.5]]}, {"id": "000064", "name": "Shane Keith Warne (1969-2022)", "description": "Shane Warne was an Australian cricketer. A right-arm leg spinner, he is widely regarded as one of the greatest bowlers in cricket history. Lovingly known as 'Warnie', he would forever stay immortal in the hearts of cricket fans all around the world.", "website": "https://www.instagram.com/shanewarne23/?hl=en", "subreddit": "", "center": [311.5, 267.5], "path": [[296.5, 254.5], [319.5, 260.5], [294.5, 281.5], [294.5, 273.5], [293.5, 268.5], [293.5, 263.5], [293.5, 259.5], [293.5, 256.5], [293.5, 253.5], [294.5, 252.5], [302.5, 252.5], [306.5, 252.5], [311.5, 252.5], [318.5, 252.5], [323.5, 252.5], [330.5, 252.5], [333.5, 253.5], [335.5, 256.5], [334.5, 260.5], [334.5, 264.5], [334.5, 267.5], [334.5, 265.5], [334.5, 269.5], [334.5, 271.5], [334.5, 273.5], [334.5, 282.5], [331.5, 282.5], [328.5, 282.5], [294.5, 282.5], [294.5, 282.5]]}, @@ -61,11 +60,11 @@ {"id": "000067", "name": "Babymetal Resistance Logo", "description": "Babymetal Resistance album logo/art", "website": "https://www.babymetal.com/en/", "subreddit": "/r/BABYMETAL", "center": [1141.5, 470.5], "path": [[1115.5, 465.5], [1125.5, 465.5], [1125.5, 461.5], [1161.5, 461.5], [1161.5, 465.5], [1167.5, 465.5], [1161.5, 474.5], [1157.5, 474.5], [1157.5, 481.5], [1149.5, 481.5], [1146.5, 479.5], [1142.5, 478.5], [1137.5, 479.5], [1133.5, 481.5], [1125.5, 481.5], [1125.5, 476.5], [1122.5, 474.5], [1118.5, 470.5]]}, {"id": "000068", "name": "Outer Wilds: Nomai Mask", "description": "Outer Wilds is an action-adventure game developed by Mobius Digital, featuring a solar system stuck in a 22-minute time loop, which ends as the sun goes supernova. This is the mask of an old, dead civilization in the solar system.", "website": "https://www.mobiusdigitalgames.com/outer-wilds.html", "subreddit": "/r/outerwilds", "center": [1686.5, 664.5], "path": [[1662.5, 637.5], [1662.5, 690.5], [1709.5, 690.5], [1709.5, 637.5]]}, {"id": "000070", "name": "R.I.P. Michigun", "description": "A memorial for famous and skilled Geometry Dash player Michigun.", "website": "https://discord.gg/BcXxhV4mYn", "subreddit": "/r/geometrydashplace", "center": [942.5, 393.5], "path": [[923.5, 367.5], [960.5, 367.5], [960.5, 418.5], [923.5, 418.5]]}, -{"id": "000071", "name": "Georgia Institute of Technology", "description": "Icons and mascots of Georgia Tech.", "website": "gatech.edu", "subreddit": "/r/gatecg", "center": [402.5, 570.5], "path": [[379.5, 529.5], [421.5, 529.5], [420.5, 608.5], [379.5, 608.5], [379.5, 583.5], [412.5, 583.5], [412.5, 549.5], [379.5, 549.5]]}, +{"id": "000071", "name": "Georgia Institute of Technology", "description": "Icons and mascots of Georgia Tech.", "website": "https://gatech.edu", "subreddit": "/r/gatecg", "center": [402.5, 570.5], "path": [[379.5, 529.5], [421.5, 529.5], [420.5, 608.5], [379.5, 608.5], [379.5, 583.5], [412.5, 583.5], [412.5, 549.5], [379.5, 549.5]]}, {"id": "000072", "name": "Formula 1", "description": "Logos of all 2022 Teams, the Williams-W with the addition of \"FW\" in honour of the late founder Frank Williams.\n\n\"Keep fighting Micheal\" honours Michael Schumacher who is still fighting for his life after a devastating skiing accident many years ago.\n\"JB17\" is a testiment to Jules Bianchi, who suffered a fatal accident during the 2014 Japanese Grand Prix.\n\"AH19\" is a testiment to the late Anthoine Hubert who lost his life during the 2019 Belgian Grand Prix in the Saturday race in Formula 2.", "website": "", "subreddit": "/r/formula1", "center": [510.5, 796.5], "path": [[448.5, 762.5], [571.5, 762.5], [571.5, 829.5], [448.5, 829.5], [448.5, 762.5]]}, {"id": "000073", "name": "TUHH", "description": "The Name and Logo of the Hamburg University of Technology.\n\"Technische Universit\u00e4t Hansestadt Hamburg\"", "website": "https://www.tuhh.de", "subreddit": "/r/TU_HH", "center": [234.5, 168.5], "path": [[221.5, 165.5], [245.5, 165.5], [245.5, 171.5], [221.5, 171.5], [221.5, 165.5]]}, {"id": "000074", "name": "Ethereum", "description": "Ethereum is a block chain powering smart contracts and cryptocurrencies, including ETH itself. \nThis logo was built by a small team of only about 50 people after a smaller version south of the current location was taken over.\nIt has been rebuilt after an attack by the trees below in conjunction with the German flag, and has recently added a prism effect with a laser coming from the Loopring logo, through the ETH crystal, and splitting into a rainbow on the Immutable side.", "website": "https://discord.gg/BMCdDHvNm6", "subreddit": "", "center": [841.5, 876.5], "path": [[841.5, 856.5], [854.5, 877.5], [840.5, 896.5], [828.5, 878.5]]}, -{"id": "000075", "name": "Destiny", "description": "Gaming and politics live streamer Steven Kenneth \"Destiny\" Bonnell II", "website": "https://destiny.gg", "subreddit": "/r/Destiny", "center": [367.5, 105.5], "path": [[334.5, 78.5], [399.5, 78.5], [399.5, 131.5], [334.5, 131.5]]}, +{"id": "000075", "name": "Destiny", "description": "Gaming and politics live streamer Steven Kenneth \"Destiny\" Bonnell II.", "website": "https://destiny.gg", "subreddit": "/r/Destiny", "center": [367.5, 105.5], "path": [[334.5, 78.5], [399.5, 78.5], [399.5, 131.5], [334.5, 131.5]]}, {"id": "000076", "name": "LTTSTORE.COM", "description": "A reference to shoutouts in Linus Tech Tips videos for their own merchandise line available on LTTSTORE.COM.\nSpammers have made repeated attempts to replace two pixels of the O in .COM with orange in order to alter the text to .CUM.", "website": "https://www.lttstore.com/", "subreddit": "/r/LinusTechTips", "center": [83.5, 771.5], "path": [[49.5, 766.5], [115.5, 765.5], [115.5, 777.5], [49.5, 776.5]]}, {"id": "000077", "name": "L\u00f6wenzahn", "description": "A Dandelion, representing the popular German children's tv show \"L\u00f6wenzahn\"", "website": "https://en.wikipedia.org/wiki/L%C3%B6wenzahn", "subreddit": "", "center": [517.5, 850.5], "path": [[519.5, 865.5], [523.5, 865.5], [522.5, 864.5], [522.5, 863.5], [524.5, 863.5], [524.5, 864.5], [530.5, 863.5], [528.5, 861.5], [528.5, 858.5], [530.5, 858.5], [530.5, 859.5], [531.5, 859.5], [530.5, 859.5], [530.5, 858.5], [529.5, 858.5], [529.5, 856.5], [532.5, 856.5], [531.5, 856.5], [531.5, 855.5], [531.5, 854.5], [532.5, 854.5], [533.5, 853.5], [531.5, 853.5], [531.5, 851.5], [532.5, 851.5], [532.5, 850.5], [534.5, 850.5], [535.5, 849.5], [535.5, 848.5], [537.5, 846.5], [537.5, 845.5], [537.5, 846.5], [535.5, 848.5], [534.5, 848.5], [533.5, 849.5], [532.5, 849.5], [532.5, 847.5], [533.5, 847.5], [533.5, 846.5], [534.5, 846.5], [534.5, 845.5], [533.5, 844.5], [531.5, 844.5], [530.5, 845.5], [530.5, 846.5], [531.5, 847.5], [532.5, 847.5], [532.5, 849.5], [531.5, 849.5], [529.5, 851.5], [528.5, 853.5], [528.5, 854.5], [528.5, 855.5], [526.5, 855.5], [526.5, 856.5], [524.5, 856.5], [524.5, 851.5], [525.5, 851.5], [525.5, 850.5], [526.5, 850.5], [526.5, 849.5], [527.5, 849.5], [527.5, 844.5], [529.5, 844.5], [529.5, 845.5], [529.5, 844.5], [529.5, 843.5], [530.5, 843.5], [530.5, 842.5], [531.5, 842.5], [531.5, 841.5], [532.5, 841.5], [532.5, 840.5], [532.5, 839.5], [532.5, 841.5], [530.5, 841.5], [530.5, 843.5], [528.5, 843.5], [528.5, 839.5], [529.5, 839.5], [529.5, 838.5], [530.5, 838.5], [530.5, 837.5], [531.5, 837.5], [531.5, 835.5], [529.5, 834.5], [528.5, 833.5], [528.5, 834.5], [527.5, 834.5], [527.5, 835.5], [526.5, 835.5], [526.5, 836.5], [525.5, 836.5], [525.5, 837.5], [526.5, 837.5], [526.5, 838.5], [527.5, 838.5], [527.5, 840.5], [526.5, 840.5], [526.5, 843.5], [525.5, 843.5], [527.5, 843.5], [527.5, 847.5], [526.5, 847.5], [526.5, 849.5], [525.5, 849.5], [525.5, 851.5], [523.5, 851.5], [523.5, 850.5], [522.5, 850.5], [522.5, 848.5], [523.5, 848.5], [523.5, 845.5], [524.5, 845.5], [524.5, 844.5], [525.5, 844.5], [523.5, 844.5], [523.5, 843.5], [519.5, 843.5], [519.5, 841.5], [521.5, 841.5], [521.5, 840.5], [522.5, 840.5], [522.5, 839.5], [523.5, 839.5], [523.5, 836.5], [522.5, 836.5], [522.5, 834.5], [521.5, 834.5], [521.5, 833.5], [520.5, 832.5], [518.5, 832.5], [516.5, 834.5], [516.5, 836.5], [513.5, 836.5], [513.5, 834.5], [514.5, 834.5], [514.5, 833.5], [513.5, 832.5], [511.5, 832.5], [510.5, 833.5], [510.5, 834.5], [511.5, 835.5], [512.5, 836.5], [513.5, 837.5], [513.5, 839.5], [511.5, 839.5], [511.5, 838.5], [510.5, 837.5], [507.5, 837.5], [505.5, 839.5], [505.5, 841.5], [504.5, 841.5], [504.5, 844.5], [507.5, 847.5], [509.5, 847.5], [509.5, 851.5], [507.5, 851.5], [506.5, 852.5], [508.5, 852.5], [508.5, 854.5], [505.5, 857.5], [505.5, 859.5], [503.5, 859.5], [503.5, 860.5], [505.5, 860.5], [505.5, 861.5], [507.5, 861.5], [507.5, 862.5], [509.5, 862.5], [509.5, 863.5], [508.5, 864.5], [509.5, 863.5], [512.5, 863.5], [512.5, 865.5]]}, {"id": "000078", "name": "The Colosseum", "description": "A Roman gladiator arena, built in Rome, Italy.", "website": "https://en.wikipedia.org/wiki/Colosseum", "subreddit": "", "center": [822.5, 427.5], "path": [[790.5, 404.5], [809.5, 404.5], [855.5, 404.5], [855.5, 451.5], [789.5, 450.5], [789.5, 404.5]]}, @@ -73,7 +72,7 @@ {"id": "000080", "name": "Poland", "description": "Polish flag with dumplings, a bottle of vodka, Pope John Paul II, and the dog from the old Polish cartoon \"Reksio\" drawn on top of it.", "website": "", "subreddit": "/r/Polska", "center": [585.5, 359.5], "path": [[481.5, 344.5], [689.5, 342.5], [688.5, 375.5], [480.5, 376.5]]}, {"id": "000081", "name": "Krtek", "description": "The protagonist of the infamous Czech cartoon \"Krtek\", literally meaning \"The Mole\".", "website": "", "subreddit": "", "center": [1298.5, 190.5], "path": [[1299.5, 172.5], [1304.5, 173.5], [1307.5, 177.5], [1307.5, 181.5], [1306.5, 185.5], [1307.5, 192.5], [1307.5, 205.5], [1303.5, 205.5], [1298.5, 206.5], [1295.5, 205.5], [1290.5, 205.5], [1286.5, 204.5], [1286.5, 198.5], [1290.5, 189.5], [1291.5, 179.5], [1294.5, 174.5], [1297.5, 173.5]]}, {"id": "000082", "name": "Kentaro Miura \"Guts\" Tribute", "description": "An illustration of Guts, the protagonist of the manga and anime, \"Berserk\". Seen underneath is Guts's famous \"Dragon Slayer\" sword, next to a plaque that reads \"RIP Miura\".\n\nKentaro Miura, the creator of Berserk, died May 6th, 2021. He has since had many tributes across the internet and media alike.", "website": "https://en.wikipedia.org/wiki/Kentaro_Miura", "subreddit": "/r/Berserk", "center": [642.5, 241.5], "path": [[594.5, 202.5], [677.5, 202.5], [677.5, 214.5], [682.5, 219.5], [694.5, 219.5], [694.5, 274.5], [691.5, 277.5], [596.5, 277.5], [594.5, 275.5]]}, -{"id": "000083", "name": "Karlsruhe Institute of Technology (KIT)", "description": "University of Karlsruhe (Germany)", "website": "kit.edu", "subreddit": "/r/KaIT", "center": [796.5, 534.5], "path": [[760.5, 521.5], [760.5, 547.5], [832.5, 547.5], [832.5, 521.5]]}, +{"id": "000083", "name": "Karlsruhe Institute of Technology (KIT)", "description": "University of Karlsruhe (Germany)", "website": "https://kit.edu", "subreddit": "/r/KaIT", "center": [796.5, 534.5], "path": [[760.5, 521.5], [760.5, 547.5], [832.5, 547.5], [832.5, 521.5]]}, {"id": "000084", "name": "FUCK CARS Parking Lot", "description": "Its a parking lot.\n\nAlthough i am too scared to see whats in the subreddit", "website": "", "subreddit": "/r/fuckcars", "center": [1020.5, 761.5], "path": [[918.5, 798.5], [917.5, 721.5], [1114.5, 721.5], [1114.5, 722.5], [1115.5, 722.5], [1115.5, 723.5], [1115.5, 724.5], [1116.5, 724.5], [1116.5, 725.5], [1117.5, 725.5], [1117.5, 726.5], [1118.5, 726.5], [1119.5, 726.5], [1119.5, 727.5], [1119.5, 728.5], [1120.5, 728.5], [1121.5, 728.5], [1121.5, 729.5], [1122.5, 729.5], [1122.5, 801.5], [964.5, 801.5], [964.5, 796.5], [963.5, 795.5], [962.5, 793.5], [961.5, 792.5], [959.5, 792.5], [958.5, 793.5], [957.5, 794.5], [956.5, 795.5], [954.5, 797.5], [953.5, 798.5], [952.5, 799.5], [932.5, 799.5], [931.5, 798.5], [930.5, 797.5], [929.5, 796.5], [928.5, 795.5], [927.5, 794.5], [926.5, 793.5], [925.5, 792.5], [924.5, 792.5], [923.5, 792.5], [922.5, 793.5], [921.5, 794.5], [921.5, 795.5], [920.5, 796.5], [920.5, 797.5], [919.5, 798.5], [918.5, 798.5]]}, {"id": "000085", "name": "Cave Story", "description": "Cave Story, originally released as D\u014dkutsu Monogatari, is a 2004 Metroidvania platform-adventure game for Microsoft Windows. It was developed over five years by Japanese developer Daisuke \"Pixel\" Amaya in his free time.", "website": "https://www.reddit.com/r/cavestory/", "subreddit": "/r/cavestory", "center": [585.5, 883.5], "path": [[563.5, 866.5], [608.5, 866.5], [607.5, 901.5], [562.5, 900.5]]}, {"id": "000086", "name": "Blender", "description": "Blender Logo. Blender is a free and open-source 3D computer graphics software.", "website": "https://www.blender.org/", "subreddit": "/r/blender", "center": [127.5, 105.5], "path": [[121.5, 103.5], [122.5, 102.5], [123.5, 102.5], [124.5, 100.5], [127.5, 99.5], [130.5, 102.5], [133.5, 105.5], [133.5, 107.5], [132.5, 108.5], [131.5, 109.5], [131.5, 110.5], [130.5, 111.5], [128.5, 111.5], [127.5, 110.5], [125.5, 109.5], [123.5, 108.5], [121.5, 107.5], [122.5, 105.5], [121.5, 104.5], [121.5, 102.5]]}, @@ -85,33 +84,31 @@ {"id": "000092", "name": "Lego", "description": "Lego logo, next to the flag of Denmark, its country of origin.", "website": "", "subreddit": "/r/Lego", "center": [664.5, 331.5], "path": [[689.5, 342.5], [689.5, 320.5], [638.5, 320.5], [638.5, 342.5]]}, {"id": "000093", "name": "Northern Cyprus", "description": "Flag of Northern Cyprus, officially the Turkish Republic of Northern Cyprus", "website": "", "subreddit": "", "center": [1970.5, 54.5], "path": [[1941.5, 35.5], [1999.5, 35.5], [1999.5, 73.5], [1941.5, 73.5]]}, {"id": "000094", "name": "The Great Wave off Kanagawa", "description": "The Great Wave off Kanagawa, also known as The Great Wave or The Wave, is a woodblock print by the Japanese ukiyo-e artist Hokusai. It was created in 1831", "website": "", "subreddit": "", "center": [1960.5, 802.5], "path": [[1921.5, 829.5], [1999.5, 829.5], [1999.5, 775.5], [1920.5, 775.5]]}, -{"id": "000095", "name": "ENA", "description": "ENA is a animated series created by Peruvian animator Joel Guerra. It takes place in a surreal, digital world and stars the eponymous character ENA", "website": "", "subreddit": "/r/ENA", "center": [1986.5, 752.5], "path": [[1972.5, 730.5], [1999.5, 730.5], [1999.5, 775.5], [1973.5, 775.5]]}, +{"id": "000095", "name": "\u018eNA", "description": "\u018eNA is a animated series created by Peruvian animator Joel Guerra. It takes place in a surreal, digital world and stars the eponymous character \u018eNA.", "website": "https://joelgc.com/", "subreddit": "/r/ENA", "center": [1986.5, 752.5], "path": [[1972.5, 730.5], [1999.5, 730.5], [1999.5, 775.5], [1973.5, 775.5]]}, {"id": "000096", "name": "Big Ten West", "description": "The original claims of the Big Ten Conference of college universities. Started by Purdue, and joined by Rutgers, Nebraska, Illinois, Iowa, and Penn State.", "website": "", "subreddit": "/r/TheB1G", "center": [211.5, 605.5], "path": [[256.5, 582.5], [256.5, 629.5], [174.5, 629.5], [174.5, 609.5], [151.5, 609.5], [154.5, 601.5], [161.5, 601.5], [166.5, 590.5], [161.5, 589.5], [163.5, 582.5]]}, {"id": "000097", "name": "Niko from OneShot", "description": "The main character \"Niko\" from the indie video game OneShot.", "website": "http://www.oneshot-game.com/", "subreddit": "/r/oneshot", "center": [921.5, 264.5], "path": [[911.5, 266.5], [911.5, 248.5], [933.5, 248.5], [933.5, 250.5], [932.5, 250.5], [932.5, 251.5], [931.5, 251.5], [931.5, 258.5], [930.5, 258.5], [930.5, 260.5], [932.5, 260.5], [932.5, 266.5], [931.5, 266.5], [931.5, 269.5], [929.5, 269.5], [929.5, 270.5], [928.5, 270.5], [928.5, 272.5], [932.5, 272.5], [932.5, 274.5], [931.5, 274.5], [931.5, 275.5], [930.5, 275.5], [930.5, 276.5], [928.5, 276.5], [928.5, 280.5], [927.5, 280.5], [927.5, 281.5], [926.5, 281.5], [926.5, 282.5], [925.5, 282.5], [924.5, 282.5], [924.5, 283.5], [918.5, 283.5], [918.5, 282.5], [916.5, 282.5], [916.5, 281.5], [915.5, 281.5], [915.5, 280.5], [914.5, 280.5], [914.5, 276.5], [913.5, 276.5], [913.5, 274.5], [911.5, 274.5], [911.5, 272.5], [914.5, 272.5], [914.5, 269.5], [912.5, 269.5], [912.5, 266.5]]}, {"id": "000098", "name": "/r/196 Mural", "description": "The mural created by the shitposting subreddit /r/196", "website": "", "subreddit": "/r/196", "center": [208.5, 664.5], "path": [[174.5, 629.5], [241.5, 629.5], [241.5, 698.5], [174.5, 698.5]]}, {"id": "000099", "name": "Lemon Demon", "description": "The Lemon Demon logo was designed by u/iforgotmypasswordss, and was part of a joint project between r/lemondemon and r/tallyhall", "website": "", "subreddit": "/r/lemondemon", "center": [770.5, 414.5], "path": [[754.5, 399.5], [754.5, 428.5], [786.5, 428.5], [786.5, 399.5]]}, {"id": "000100", "name": "The Inkunzi Logo", "description": "The Logo for the nation rp Inkunzi, a geopolitical Nation RP on a fantasy planet. Made by CalmDownLevelUp", "website": "https://www.youtube.com/watch?v=gLXxk7ZsrDM", "subreddit": "/r/CalmDownLevelUp", "center": [1840.5, 811.5], "path": [[1845.5, 806.5], [1845.5, 815.5], [1835.5, 815.5], [1835.5, 806.5]]}, {"id": "000101", "name": "A Practical Guide To Evil by ErraticErrata - Do Wrong Right", "description": "A Practical Guide to Evil is a YA fantasy novel about a young girl named Catherine Foundling making her way through the world \u2013 though, in a departure from the norm, not on the side of the heroes. Is there such a thing as doing bad things for good reasons, or is she just rationalizing her desire for control? Good and Evil are tricky concepts, and the more power you get the blurrier the lines between them become.", "website": "http://practicalguidetoevil.wordpress.com/", "subreddit": "/r/practicalguidetoevil", "center": [947.5, 531.5], "path": [[959.5, 520.5], [959.5, 541.5], [935.5, 541.5], [935.5, 520.5], [959.5, 520.5]]}, -{"id": "000102", "name": "HasanAbi Logo", "description": "Twitch streamer Hasan Piker's logo/icon", "website": "twitch.tv/HasanAbi", "subreddit": "/r/Hasan_Piker", "center": [1799.5, 484.5], "path": [[1849.5, 429.5], [1749.5, 429.5], [1749.5, 539.5], [1850.5, 539.5], [1849.5, 539.5], [1849.5, 429.5]]}, +{"id": "000102", "name": "HasanAbi logo", "description": "Twitch streamer Hasan Piker's logo/icon.", "website": "https://twitch.tv/HasanAbi", "subreddit": "/r/Hasan_Piker", "center": [1802.5, 518.5], "path": [[1782.5, 496.5], [1783.5, 539.5], [1821.5, 539.5], [1821.5, 497.5]]}, {"id": "000103", "name": "The Ohio State University", "description": "The Ohio State University (OSU) is located in Columbus, Ohio, USA. OSU's school colors are scarlet and gray which can be seen around their famous Block O - located towards the bottom left of the artwork. The Block \"O\" together with the Buckeye nut is the logo for The Ohio State University. OSU (not to be confused with the rhythm game \"osu!\") is famous for it's rivalry with the University of Michigan with the 15-2 representing the current streak of 15 wins against UofM's 2. The Ohio flag is on the top right, representing the state of Ohio, USA. The bottom right has the famous \"Script Ohio\" - a long-time Ohio State tradition from the school's Marching Band where members of the band will form the word \"Ohio\" in script during football games. A second block \"O\" is situated next to Purdue University & Rutgers University elsewhere on r/place.", "website": "https://www.osu.edu", "subreddit": "/r/osu", "center": [1347.5, 813.5], "path": [[1331.5, 795.5], [1331.5, 830.5], [1363.5, 831.5], [1363.5, 795.5], [1363.5, 795.5], [1363.5, 795.5]]}, -{"id": "000104", "name": "One Piece", "description": "Anime", "website": "", "subreddit": "/r/OnePiece", "center": [354.5, 571.5], "path": [[330.5, 528.5], [378.5, 528.5], [377.5, 614.5], [330.5, 614.5], [330.5, 614.5]]}, {"id": "000105", "name": "PotatoMcWhiskey", "description": "The logo of Civ VI streamer PotatoMcWhiskey", "website": "https://www.youtube.com/user/PotatoMcWhiskey/", "subreddit": "/r/PotatoMcWhiskey", "center": [1516.5, 81.5], "path": [[1494.5, 96.5], [1518.5, 98.5], [1521.5, 107.5], [1535.5, 89.5], [1534.5, 60.5], [1507.5, 61.5], [1508.5, 71.5], [1500.5, 72.5], [1494.5, 62.5]]}, {"id": "000106", "name": "Operation Gooseflight", "description": "Splinter from r/canada to escape the meme of messing with the flag.", "website": "", "subreddit": "/r/canada", "center": [1816.5, 908.5], "path": [[1829.5, 880.5], [1829.5, 934.5], [1794.5, 934.5], [1793.5, 931.5], [1808.5, 916.5], [1808.5, 912.5], [1806.5, 912.5], [1806.5, 879.5], [1829.5, 879.5]]}, {"id": "000107", "name": "Critical Role", "description": "Emblem of the actual-play Dungeons and Dragons series", "website": "https://critrole.com/", "subreddit": "/r/CriticalRole", "center": [526.5, 977.5], "path": [[513.5, 963.5], [538.5, 963.5], [538.5, 991.5], [513.5, 991.5]]}, {"id": "000108", "name": "Palico", "description": "An iconic character from the popular game series, Monster Hunter", "website": "", "subreddit": "/r/MonsterHunter", "center": [761.5, 621.5], "path": [[748.5, 608.5], [748.5, 635.5], [769.5, 635.5], [776.5, 620.5], [776.5, 608.5]]}, {"id": "000109", "name": "Portugal", "description": "The flag of Portugal and depictions of portuguese poet Lu\u00eds de Cam\u00f5es, Pena National Palace, celebrity Fernando Mendes, statue of Afonso Henriques (1st King of Portugal), Bridge 25th of April, and finally, a Caravel.", "website": "", "subreddit": "/r/portugal", "center": [984.5, 336.5], "path": [[865.5, 308.5], [865.5, 360.5], [856.5, 360.5], [856.5, 371.5], [922.5, 370.5], [923.5, 367.5], [960.5, 367.5], [960.5, 360.5], [1099.5, 360.5], [1109.5, 352.5], [1121.5, 347.5], [1121.5, 325.5], [1113.5, 325.5], [1113.5, 313.5], [1113.5, 308.5], [865.5, 308.5]]}, {"id": "000110", "submitted_by": "electric-blue", "name": "Trans Pride Flag", "description": "The Trans Pride Flag, emblazoned with a variety of pixel arts.", "website": "", "subreddit": "/r/transplace", "center": [634.5, 453.5], "path": [[481.5, 430.5], [786.5, 430.5], [786.5, 476.5], [481.5, 475.5]]}, -{"id": "000111", "submitted_by": "electric-blue", "name": "Connection Lost", "description": "The \"Connection lost... Please wait - attempting to reestablish.\" message originates from RuneScape, the popular free MMORPG.", "website": "https://oldschool.runescape.com/", "subreddit": "/r/2007scape", "center": [116.5, 17.5], "path": [[0.5, 0.5], [231.5, 0.5], [231.5, 33.5], [0.5, 33.5]]}, +{"id": "000111", "submitted_by": "electric-blue", "name": "Connection lost", "description": "The \"Connection lost... Please wait - attempting to reestablish.\" message originates from RuneScape, the popular free MMORPG.", "website": "https://oldschool.runescape.com/", "subreddit": "/r/2007scape", "center": [116.5, 17.5], "path": [[0.5, 0.5], [231.5, 0.5], [231.5, 33.5], [0.5, 33.5]]}, {"id": "000112", "submitted_by": "electric-blue", "name": "Froggy Chair", "description": "The Froggy Chair, from the Nintendo game Animal Crossing.", "website": "", "subreddit": "", "center": [61.5, 125.5], "path": [[54.5, 115.5], [66.5, 113.5], [67.5, 121.5], [70.5, 125.5], [71.5, 133.5], [70.5, 134.5], [67.5, 134.5], [66.5, 131.5], [62.5, 131.5], [62.5, 136.5], [57.5, 136.5], [57.5, 133.5], [53.5, 133.5], [53.5, 126.5], [54.5, 125.5], [54.5, 115.5]]}, {"id": "000113", "submitted_by": "electric-blue", "name": "The Welsh Flag", "description": "The Welsh Flag, featuring the Dragon of Cadwaladr", "website": "", "subreddit": "", "center": [100.5, 132.5], "path": [[128.5, 147.5], [128.5, 118.5], [67.5, 118.5], [68.5, 120.5], [71.5, 124.5], [72.5, 133.5], [71.5, 134.5], [70.5, 135.5], [66.5, 135.5], [65.5, 132.5], [63.5, 132.5], [62.5, 136.5], [75.5, 136.5], [75.5, 146.5], [128.5, 147.5]]}, {"id": "000114", "submitted_by": "electric-blue", "name": "Radiohead Crying Minotaur", "description": "The Crying Minotaur, from the cover of Radiohead's 2001 album \"Amnesiac\"", "website": "", "subreddit": "/r/radiohead", "center": [102.5, 554.5], "path": [[79.5, 530.5], [124.5, 530.5], [124.5, 578.5], [79.5, 578.5], [79.5, 530.5]]}, -{"id": "000115", "submitted_by": "electric-blue", "name": "DFTBA", "description": "Don't Forget To Be Awesome (DFTBA), the catchphrase of YouTuber duo Vlogbrothers, and their community Nerdfightaria, held aloft by Crank the Crab.", "website": "https://nerdfighteria.com", "subreddit": "/r/nerdfighters", "center": [148.5, 703.5], "path": [[135.5, 695.5], [162.5, 695.5], [164.5, 697.5], [164.5, 705.5], [162.5, 707.5], [155.5, 707.5], [152.5, 711.5], [154.5, 713.5], [154.5, 714.5], [143.5, 714.5], [143.5, 713.5], [145.5, 711.5], [143.5, 709.5], [142.5, 708.5], [142.5, 707.5], [135.5, 707.5], [133.5, 705.5], [133.5, 697.5], [135.5, 695.5]]}, {"id": "000116", "submitted_by": "electric-blue", "name": "Pizza John", "description": "Pizza John, the logo/meme surrounding Pizzamas, an annual celebration by the Green Brothers (Vlogbrothers)", "website": "https://pizzamas.com/pages/what-is-this", "subreddit": "/r/nerdfighters", "center": [1378.5, 804.5], "path": [[1364.5, 779.5], [1391.5, 779.5], [1391.5, 829.5], [1364.5, 829.5], [1364.5, 779.5]]}, {"id": "003621", "submitted_by": "electric-blue", "name": "e621 Logo", "description": "The logo of the mature imageboard e621.net. WARNING: WEBSITE CONTAINS NSFW IMAGES", "website": "", "subreddit": "", "center": [1616.5, 622.5], "path": [[1604.5, 610.5], [1630.5, 610.5], [1630.5, 619.5], [1627.5, 619.5], [1627.5, 635.5], [1604.5, 635.5], [1604.5, 610.5]]}, {"id": "000118", "submitted_by": "electric-blue", "name": "Bad Dragon Logo", "description": "The logo of Bad Dragon, a manufacturer of fantasy adult toys. WARNING: WEBSITE CONTAINS NSFW CONTENT.", "website": "", "subreddit": "", "center": [1595.5, 628.5], "path": [[1587.5, 620.5], [1602.5, 620.5], [1602.5, 635.5], [1587.5, 635.5], [1587.5, 620.5]]}, {"id": "000119", "submitted_by": "electric-blue", "name": "r/Furry_IRL", "description": "The logo of the r/Furry_IRL subreddit, dedicated to furry memes.", "website": "", "subreddit": "/r/furry_irl", "center": [912.5, 92.5], "path": [[894.5, 70.5], [929.5, 70.5], [929.5, 114.5], [894.5, 114.5], [894.5, 70.5]]}, {"id": "000120", "submitted_by": "electric-blue", "name": "Greggs", "description": "The logo of Greggs, the British fast-food bakery chain.", "website": "", "subreddit": "", "center": [727.5, 479.5], "path": [[702.5, 477.5], [752.5, 477.5], [752.5, 481.5], [702.5, 481.5], [702.5, 477.5]]}, -{"id": "000121", "submitted_by": "electric-blue", "name": "Peppy", "description": "A Pixel art image of Peppy, the creator of Osu!", "website": "https://osu.ppy.sh/", "subreddit": "/r/osugame", "center": [1726.5, 736.5], "path": [[1726.5, 672.5], [1751.5, 693.5], [1751.5, 707.5], [1743.5, 718.5], [1755.5, 726.5], [1756.5, 731.5], [1760.5, 738.5], [1760.5, 747.5], [1763.5, 753.5], [1762.5, 766.5], [1762.5, 773.5], [1756.5, 779.5], [1748.5, 779.5], [1747.5, 780.5], [1702.5, 780.5], [1701.5, 781.5], [1700.5, 781.5], [1700.5, 776.5], [1699.5, 774.5], [1697.5, 773.5], [1693.5, 773.5], [1693.5, 771.5], [1692.5, 769.5], [1691.5, 766.5], [1690.5, 763.5], [1690.5, 756.5], [1689.5, 755.5], [1689.5, 745.5], [1690.5, 744.5], [1690.5, 739.5], [1691.5, 738.5], [1691.5, 734.5], [1692.5, 730.5], [1694.5, 729.5], [1694.5, 727.5], [1695.5, 725.5], [1699.5, 721.5], [1701.5, 721.5], [1703.5, 720.5], [1706.5, 719.5], [1707.5, 718.5], [1708.5, 717.5], [1708.5, 716.5], [1707.5, 715.5], [1707.5, 712.5], [1706.5, 711.5], [1706.5, 709.5], [1705.5, 708.5], [1704.5, 707.5], [1703.5, 707.5], [1703.5, 700.5], [1704.5, 698.5], [1704.5, 695.5], [1707.5, 695.5], [1708.5, 694.5], [1708.5, 691.5], [1710.5, 691.5], [1710.5, 689.5], [1710.5, 685.5], [1726.5, 672.5]]}, +{"id": "000121", "submitted_by": "electric-blue", "name": "Peppy", "description": "A pixel art image of Peppy, the creator of osu!", "website": "https://osu.ppy.sh/", "subreddit": "/r/osuplace", "center": [1726.5, 736.5], "path": [[1726.5, 672.5], [1751.5, 693.5], [1751.5, 707.5], [1743.5, 718.5], [1755.5, 726.5], [1756.5, 731.5], [1760.5, 738.5], [1760.5, 747.5], [1763.5, 753.5], [1762.5, 766.5], [1762.5, 773.5], [1756.5, 779.5], [1748.5, 779.5], [1747.5, 780.5], [1702.5, 780.5], [1701.5, 781.5], [1700.5, 781.5], [1700.5, 776.5], [1699.5, 774.5], [1697.5, 773.5], [1693.5, 773.5], [1693.5, 771.5], [1692.5, 769.5], [1691.5, 766.5], [1690.5, 763.5], [1690.5, 756.5], [1689.5, 755.5], [1689.5, 745.5], [1690.5, 744.5], [1690.5, 739.5], [1691.5, 738.5], [1691.5, 734.5], [1692.5, 730.5], [1694.5, 729.5], [1694.5, 727.5], [1695.5, 725.5], [1699.5, 721.5], [1701.5, 721.5], [1703.5, 720.5], [1706.5, 719.5], [1707.5, 718.5], [1708.5, 717.5], [1708.5, 716.5], [1707.5, 715.5], [1707.5, 712.5], [1706.5, 711.5], [1706.5, 709.5], [1705.5, 708.5], [1704.5, 707.5], [1703.5, 707.5], [1703.5, 700.5], [1704.5, 698.5], [1704.5, 695.5], [1707.5, 695.5], [1708.5, 694.5], [1708.5, 691.5], [1710.5, 691.5], [1710.5, 689.5], [1710.5, 685.5], [1726.5, 672.5]]}, {"id": "000122", "submitted_by": "electric-blue", "name": "Girl with a Pearl Earring", "description": "Pixel art of the Girl with a Pearl Earring, by Johannes Vermeer", "website": "https://en.wikipedia.org/wiki/Girl_with_a_Pearl_Earring", "subreddit": "", "center": [907.5, 34.5], "path": [[928.5, 0.5], [928.5, 68.5], [886.5, 68.5], [886.5, 0.5], [928.5, 0.5]]}, {"id": "000123", "submitted_by": "Kenjidono_", "name": "Palestanian Flag", "description": "This is the current Flag of Palestine.", "website": "", "subreddit": "/r/Palestine", "center": [44.5, 660.5], "path": [[20.5, 643.5], [20.5, 678.5], [68.5, 678.5], [69.5, 643.5], [20.5, 643.5], [20.5, 678.5]]}, {"id": "000124", "submitted_by": "Inzaniity", "name": "German Fast-Train (ICE)", "description": "The German fast train ICE (Inter-City-Express) with bad network reception. It is known for having really bad network reception while travelling with Deutsche Bahn.", "website": "", "subreddit": "", "center": [349.5, 858.5], "path": [[373.5, 849.5], [373.5, 867.5], [325.5, 867.5], [325.5, 863.5], [326.5, 859.5], [331.5, 854.5], [324.5, 853.5], [324.5, 851.5], [323.5, 850.5], [323.5, 844.5], [327.5, 844.5], [327.5, 846.5], [328.5, 847.5], [329.5, 846.5], [331.5, 846.5], [331.5, 854.5], [333.5, 854.5], [335.5, 852.5], [337.5, 852.5], [344.5, 849.5], [373.5, 849.5]]}, @@ -125,7 +122,7 @@ {"id": "000132", "submitted_by": "linwji", "name": "Bangladesh (country)", "description": "Bangladesh, to the east of India on the Bay of Bengal, is a South Asian country marked by lush greenery and many waterways. Its Padma (Ganges), Meghna and Jamuna rivers create fertile plains, and travel by boat is common.", "website": "", "subreddit": "/r/bangladesh", "center": [305.5, 985.5], "path": [[287.5, 978.5], [323.5, 978.5], [323.5, 992.5], [283.5, 992.5], [288.5, 991.5]]}, {"id": "000133", "submitted_by": "neinwhal", "name": "Singapore", "description": "Singapore is a city-state in Southeast Asia with a population of 5.9M. The flag is overlaid by a silhouette of the country and its prominent landmarks - the Merlion, Marina Bay Sands, Changi Airport control tower, and the Mass Rapid Transit system. The greenery showcases Singapore as a City in Nature, while the purple flower on the Merlion represents our national flower, Vanda Ms Joaquim.", "website": "https://www.visitsingapore.com/en/", "subreddit": "/r/singapore", "center": [306.5, 972.5], "path": [[286.5, 961.5], [286.5, 977.5], [299.5, 977.5], [299.5, 984.5], [316.5, 984.5], [318.5, 986.5], [319.5, 986.5], [322.5, 983.5], [322.5, 961.5]]}, {"id": "000134", "submitted_by": "linwji", "name": "Google Chrome Dino", "description": "This dino game appears when Chrome browser is offline", "website": "https://chromedino.com/", "subreddit": "", "center": [323.5, 793.5], "path": [[342.5, 779.5], [304.5, 779.5], [302.5, 807.5], [342.5, 808.5]]}, -{"id": "000135", "submitted_by": "linwji", "name": "Malaysia (country)", "description": "Lovely country in South-East Asia with a 30M population", "website": "", "subreddit": "/r/malaysia", "center": [358.5, 974.5], "path": [[394.5, 962.5], [325.5, 960.5], [324.5, 988.5], [392.5, 988.5]]}, +{"id": "000135", "submitted_by": "linwji", "name": "Malaysia", "description": "Jalur Gemilang (the national flag of Malaysia) with the Petronas Twin Towers, Mount Kinabalu and the rhinoceros hornbill", "website": "", "subreddit": "/r/malaysia", "center": [358.5, 977.5], "path": [[323.5, 961.5], [393.5, 961.5], [393.5, 992.5], [323.5, 992.5], [323.5, 961.5]]}, {"id": "000136", "submitted_by": "linwji", "name": "Gear in Factorio Video Game", "description": "One of the most important component pieces in Factorio game to craft machines to grow the factory", "website": "https://factorio.com/", "subreddit": "/r/factorio", "center": [1598.5, 563.5], "path": [[1574.5, 548.5], [1621.5, 548.5], [1622.5, 578.5], [1573.5, 578.5]]}, {"id": "000137", "submitted_by": "linwji", "name": "BTS Young Forever Album Cover", "description": "Korea's hottest boyband's album cover featured a colourful hot-air balloon", "website": "https://www.youtube.com/watch?v=7m-4u4GONsA&ab_channel=BangtanSubs", "subreddit": "/r/bangtan", "center": [1971.5, 217.5], "path": [[1999.5, 195.5], [1944.5, 196.5], [1942.5, 239.5], [1998.5, 238.5]]}, {"id": "000138", "submitted_by": "linwji", "name": "Aang, the last Avatar (cartoon)", "description": "The world is divided into four nations -- the Water Tribe, the Earth Kingdom, the Fire Nation and and the Air Nomads -- each represented by a natural element for which the nation is named. Benders have the ability to control and manipulate the element from their nation. Only the Avatar is the master of all four elements and Aang conquers them all!!", "website": "http://www.nick.co.uk/shows/avatar/q03fvj", "subreddit": "", "center": [289.5, 947.5], "path": [[281.5, 938.5], [296.5, 938.5], [297.5, 957.5], [282.5, 956.5]]}, @@ -133,34 +130,32 @@ {"id": "000140", "submitted_by": "bafimet", "name": "Ghost", "description": "'Grucifix' symbol for the Swedish metal band Ghost.", "website": "", "subreddit": "/r/GhostBC", "center": [1308.5, 60.5], "path": [[1300.5, 49.5], [1318.5, 49.5], [1316.5, 72.5], [1299.5, 72.5], [1299.5, 71.5], [1299.5, 49.5]]}, {"id": "000141", "submitted_by": "linwji", "name": "Factorio (video game)", "description": "One of the most popular factory simulation games with a strong community of over 2.5million players", "website": "https://factorio.com", "subreddit": "/r/factorio", "center": [291.5, 557.5], "path": [[252.5, 548.5], [252.5, 567.5], [329.5, 567.5], [330.5, 548.5]]}, {"id": "000142", "submitted_by": "JCx64", "name": "Giralda Tower", "description": "A moorish & christian tower from Seville, one of the most iconic monuments from Spain.", "website": "https://en.wikipedia.org/wiki/Giralda", "subreddit": "/r/Spain", "center": [1335.5, 300.5], "path": [[1335.5, 287.5], [1335.5, 289.5], [1336.5, 289.5], [1336.5, 296.5], [1338.5, 296.5], [1338.5, 295.5], [1338.5, 304.5], [1339.5, 304.5], [1339.5, 307.5], [1332.5, 307.5], [1332.5, 295.5], [1332.5, 296.5], [1333.5, 296.5], [1334.5, 296.5], [1334.5, 289.5], [1335.5, 289.5], [1335.5, 287.5]]}, -{"id": "000143", "submitted_by": "morganisboring", "name": "Taylor Swift tribute", "description": "A tribute to singer-songerwriter Taylor Swift. The 13 represents her lucky number, which is particularly referenced in the art she creates. Her initials are below, and the whole is surrounded by a border of colours representing her 9 studio albums (as of r/place 2). A special thank you to r/Lego, whom we have mutually defended.", "website": "", "subreddit": "/r/taylorswift", "center": [650.5, 307.5], "path": [[638.5, 294.5], [659.5, 294.5], [660.5, 295.5], [663.5, 295.5], [663.5, 320.5], [638.5, 320.5], [638.5, 294.5]]}, +{"id": "000143", "submitted_by": "morganisboring", "name": "Taylor Swift tribute", "description": "A tribute to singer-songerwriter Taylor Swift. The 13 represents her lucky number, which is particularly referenced in the art she creates. Her initials are below, and the whole is surrounded by a border of colours representing her 9 studio albums (as of r/place 2). A special thank you to our alliances with Lego, WEiTI, Shovel Knight, and FNAF.", "website": "https://taylorswift.com", "subreddit": "/r/TaylorSwift", "center": [650.5, 307.5], "path": [[638.5, 294.5], [659.5, 294.5], [660.5, 295.5], [663.5, 295.5], [663.5, 320.5], [638.5, 320.5], [638.5, 294.5]]}, {"id": "000144", "submitted_by": "greese1", "name": "Fish Cult tank 2", "description": "a team of people dedicated to making fish on r/place", "website": "", "subreddit": "/r/PlaceFishCult", "center": [1435.5, 920.5], "path": [[1431.5, 935.5], [1429.5, 935.5], [1429.5, 934.5], [1428.5, 934.5], [1427.5, 933.5], [1426.5, 932.5], [1426.5, 931.5], [1426.5, 931.5], [1425.5, 931.5], [1425.5, 930.5], [1423.5, 930.5], [1421.5, 930.5], [1421.5, 907.5], [1421.5, 906.5], [1450.5, 906.5], [1449.5, 930.5], [1446.5, 930.5], [1446.5, 931.5], [1445.5, 932.5], [1445.5, 931.5], [1444.5, 933.5], [1443.5, 934.5], [1442.5, 934.5], [1442.5, 935.5]]}, {"id": "000145", "submitted_by": "greese1", "name": "Fish Cult tank 1", "description": "a team of people dedicated to making fish on [r/place](https://www.reddit.com/r/place/)", "website": "", "subreddit": "/r/PlaceFishCult", "center": [473.5, 898.5], "path": [[448.5, 890.5], [448.5, 914.5], [453.5, 914.5], [453.5, 906.5], [454.5, 906.5], [454.5, 905.5], [499.5, 905.5], [499.5, 904.5], [500.5, 904.5], [500.5, 890.5], [448.5, 890.5]]}, -{"id": "000146", "submitted_by": "sciencecw2020","name": "Free Hong Kong", "description": "A white Bauhinia flower over black background and a yellow umbrella symbolize Hong Kong's continuing struggle for democracy, first prominantly featured in 2014 Umbrella revolution, and later in 2019 Anti-Extradition Protest", "website": "", "subreddit": "/r/HongKong", "center": [624.5, 674.5], "path": [[600.5, 650.5], [600.5, 698.5], [668.5, 699.5], [668.5, 650.5]]}, -{"id": "000147", "submitted_by": "morganisboring", "name": "Lover - Taylor Swift Album", "description": "The Lover logo inspired by Taylor Swift's 2019 studio album.", "website": "", "subreddit": "/r/taylorswift", "center": [1824.5, 106.5], "path": [[1809.5, 98.5], [1837.5, 98.5], [1837.5, 129.5], [1832.5, 129.5], [1835.5, 126.5], [1835.5, 124.5], [1836.5, 123.5], [1836.5, 116.5], [1830.5, 110.5], [1829.5, 110.5], [1828.5, 109.5], [1820.5, 109.5], [1819.5, 110.5], [1817.5, 110.5], [1815.5, 112.5], [1814.5, 112.5], [1810.5, 116.5], [1810.5, 117.5], [1809.5, 117.5], [1809.5, 98.5]]}, +{"id": "000146", "submitted_by": "sciencecw2020", "name": "Free Hong Kong", "description": "A white Bauhinia flower over black background and a yellow umbrella symbolize Hong Kong's continuing struggle for democracy, first prominantly featured in 2014 Umbrella revolution, and later in 2019 Anti-Extradition Protest", "website": "", "subreddit": "/r/HongKong", "center": [624.5, 674.5], "path": [[600.5, 650.5], [600.5, 698.5], [668.5, 699.5], [668.5, 650.5]]}, +{"id": "000147", "submitted_by": "morganisboring", "name": "Lover - Taylor Swift Album", "description": "The Lover logo inspired by Taylor Swift's 2019 studio album. Special thanks to our allies r/TenseiSlime, r/madeon, and r/YTTD.", "website": "https://en.wikipedia.org/wiki/Lover_(album)", "subreddit": "/r/TaylorSwift", "center": [1824.5, 106.5], "path": [[1809.5, 98.5], [1837.5, 98.5], [1837.5, 129.5], [1832.5, 129.5], [1835.5, 126.5], [1835.5, 124.5], [1836.5, 123.5], [1836.5, 116.5], [1830.5, 110.5], [1829.5, 110.5], [1828.5, 109.5], [1820.5, 109.5], [1819.5, 110.5], [1817.5, 110.5], [1815.5, 112.5], [1814.5, 112.5], [1810.5, 116.5], [1810.5, 117.5], [1809.5, 117.5], [1809.5, 98.5]]}, {"id": "000148", "submitted_by": "jasonycw", "name": "Palico", "description": "An iconic character from the popular game series, Monster Hunter", "website": "", "subreddit": "/r/MonsterHunter", "center": [761.5, 621.5], "path": [[748.5, 608.5], [748.5, 635.5], [769.5, 635.5], [776.5, 620.5], [776.5, 608.5]]}, -{"id": "000149", "submitted_by": "pixelsimulation", "name": "Art Heaven", "description": "Art Heaven is an art community started on discord. This is an image of our mascot, Abby!", "website": "", "subreddit": "/r/artheaven", "center": [652.5, 640.5], "path": [[661.5, 632.5], [661.5, 647.5], [642.5, 647.5], [642.5, 632.5]]}, {"id": "000150", "submitted_by": "ljcool2006", "name": "Hawaii: Part II", "description": "An album by Miracle Musical, a music project made by members of Tally Hall", "website": "https://www.hawaiipartii.com/", "subreddit": "/r/tallyhall", "center": [1507.5, 191.5], "path": [[1495.5, 180.5], [1518.5, 180.5], [1518.5, 201.5], [1495.5, 201.5]]}, -{"id": "000151", "submitted_by": "F-L-A-R-E", "name": "Karlsruhe Institute of Technology (KIT)", "description": "University of Karlsruhe (Germany)", "website": "kit.edu", "subreddit": "/r/KaIT", "center": [796.5, 534.5], "path": [[760.5, 521.5], [760.5, 547.5], [832.5, 547.5], [832.5, 521.5]]}, {"id": "000152", "submitted_by": "Powaza", "name": "Chick (Powi)", "description": "The Chick from the MEA (Middle Eastern Alliance). Idea from 'Powi Club's Discord server and other helpers.", "website": "https://discord.gg/EyNsdbU", "subreddit": "/r/PowiTeam", "center": [1777.5, 949.5], "path": [[1784.5, 940.5], [1773.5, 940.5], [1773.5, 946.5], [1768.5, 947.5], [1768.5, 957.5], [1784.5, 957.5], [1784.5, 952.5]]}, {"id": "000153", "submitted_by": "horsewhips", "name": "The Ohio State University", "description": "The Ohio State University (OSU) is located in Columbus, Ohio, USA. OSU's school colors are scarlet and gray which can be seen around their famous Block O - located towards the bottom left of the artwork. The Block 'O' together with the Buckeye nut is the logo for The Ohio State University. OSU (not to be confused with the rhythm game 'osu!') is famous for it's rivalry with the University of Michigan with the 15-2 representing the current streak of 15 wins against UofM's 2. The Ohio flag is on the top right, representing the state of Ohio, USA. The bottom right has the famous 'Script Ohio' - a long-time Ohio State tradition from the school's Marching Band where members of the band will form the word 'Ohio' in script during football games. A second block 'O' is situated next to Purdue University & Rutgers University elsewhere on r/place.", "website": "https://www.osu.edu", "subreddit": "/r/osu", "center": [1347.5, 813.5], "path": [[1331.5, 795.5], [1331.5, 830.5], [1363.5, 831.5], [1363.5, 795.5], [1363.5, 795.5], [1363.5, 795.5]]}, -{"id": "000154", "name": "EVE Online", "description": "The logo for Eve Online, an economy-based space MMORPG.", "website": "eveonline.com", "subreddit": "/r/Eve", "center": [38.5, 44.5], "path": [[13.5, 34.5], [62.5, 34.5], [62.5, 53.5], [13.5, 53.5]]}, +{"id": "000154", "name": "EVE Online", "description": "The logo for Eve Online, an economy-based space MMORPG.", "website": "https://eveonline.com", "subreddit": "/r/Eve", "center": [38.5, 44.5], "path": [[13.5, 34.5], [62.5, 34.5], [62.5, 53.5], [13.5, 53.5]]}, {"id": "000155", "name": "o7", "description": "An emoticon depicting a person saluting.", "website": "", "subreddit": "", "center": [7.5, 46.5], "path": [[12.5, 35.5], [12.5, 53.5], [0.5, 53.5], [0.5, 46.5], [12.5, 35.5]]}, -{"id": "000156", "name": "SS13 clown", "description": "The clown, a playable character in the game Space Station 13.", "website": "spacestation13.com", "subreddit": "/r/SS13", "center": [70.5, 103.5], "path": [[61.5, 91.5], [79.5, 91.5], [79.5, 116.5], [68.5, 116.5], [68.5, 111.5], [61.5, 111.5]]}, -{"id": "000157", "name": "Dota 2", "description": "The logo for Dota 2, a MOBA developed by Valve.", "website": "dota2.com", "subreddit": "/r/DotA2", "center": [14.5, 160.5], "path": [[0.5, 143.5], [27.5, 143.5], [27.5, 177.5], [0.5, 177.5]]}, -{"id": "000158", "name": "Flag of Egypt", "description": "", "website": "", "subreddit": "/r/Egypt", "center": [66.5, 156.5], "path": [[28.5, 144.5], [28.5, 169.5], [108.5, 169.5], [108.5, 148.5], [74.5, 148.5], [74.5, 138.5], [52.5, 138.5], [47.5, 144.5], [28.5, 144.5]]}, +{"id": "000156", "name": "SS13 clown", "description": "The clown, a playable character in the game Space Station 13.", "website": "https://spacestation13.com", "subreddit": "/r/SS13", "center": [70.5, 103.5], "path": [[61.5, 91.5], [79.5, 91.5], [79.5, 116.5], [68.5, 116.5], [68.5, 111.5], [61.5, 111.5]]}, +{"id": "000157", "name": "Dota 2", "description": "The logo for Dota 2, a MOBA developed by Valve.", "website": "https://dota2.com", "subreddit": "/r/DotA2", "center": [14.5, 160.5], "path": [[0.5, 143.5], [27.5, 143.5], [27.5, 177.5], [0.5, 177.5]]}, +{"id": "000158", "name": "Flag of Egypt", "description": "", "website": "", "subreddit": "/r/Egypt", "center": [ 64.5, 155.5 ], "path": [ [ 27.5, 137.5 ], [ 27.5, 169.5 ], [ 108.5, 169.5 ], [ 108.5, 147.5 ], [ 72.5, 147.5 ], [ 72.5, 137.5 ], [ 27.5, 137.5 ], [ 27.5, 139.5 ] ] }, {"id": "000159", "name": "Pyramids of Giza", "description": "", "website": "", "subreddit": "", "center": [66.5, 157.5], "path": [[52.5, 160.5], [80.5, 160.5], [74.5, 154.5], [72.5, 155.5], [68.5, 152.5], [66.5, 154.5], [62.5, 150.5]]}, -{"id": "000160", "name": "Homestuck", "description": "A webcomic by Andrew Hussie that ran from 2009 to 2016.", "website": "homestuck.com", "subreddit": "/r/homestuck", "center": [248.5, 145.5], "path": [[221.5, 126.5], [266.5, 126.5], [275.5, 135.5], [275.5, 164.5], [221.5, 164.5]]}, -{"id": "000161", "name": "Hiveswap", "description": "An adventure game set in the same multiverse as Homestuck.", "website": "hiveswap.com", "subreddit": "/r/homestuck", "center": [262.5, 168.5], "path": [[247.5, 165.5], [247.5, 171.5], [276.5, 171.5], [276.5, 165.5]]}, -{"id": "000162", "name": "Flag of Taiwan", "description": "", "website": "", "subreddit": "", "center": [286.5, 165.5], "path": [[276.5, 158.5], [295.5, 158.5], [295.5, 172.5], [276.5, 172.5]]}, +{"id": "000160", "name": "Homestuck", "description": "A webcomic by Andrew Hussie that ran from 2009 to 2016.", "website": "https://homestuck.com", "subreddit": "/r/homestuck", "center": [248.5, 145.5], "path": [[221.5, 126.5], [266.5, 126.5], [275.5, 135.5], [275.5, 164.5], [221.5, 164.5]]}, +{"id": "000161", "name": "Hiveswap", "description": "An adventure game set in the same multiverse as Homestuck.", "website": "https://hiveswap.com", "subreddit": "/r/homestuck", "center": [262.5, 168.5], "path": [[247.5, 165.5], [247.5, 171.5], [276.5, 171.5], [276.5, 165.5]]}, +{"id": "000162", "submitted_by": "howardt12345", "name": "Former Flag of Taiwan", "description": "The former flag of Taiwan at the Asian Trio, gifted to Mongolia on the last day of r/place.", "website": "", "subreddit": "/r/Taiwan", "center": [286.5, 165.5], "path": [[276.5, 158.5], [295.5, 158.5], [295.5, 172.5], [276.5, 172.5]]}, {"id": "000163", "name": "Flag of South Korea", "description": "", "website": "", "subreddit": "", "center": [306.5, 165.5], "path": [[295.5, 158.5], [316.5, 158.5], [316.5, 172.5], [295.5, 172.5]]}, {"id": "000164", "name": "Flag of Japan", "description": "", "website": "", "subreddit": "", "center": [327.5, 165.5], "path": [[316.5, 158.5], [337.5, 158.5], [337.5, 172.5], [316.5, 172.5]]}, {"id": "000166", "name": "Nepeta Leijon", "description": "A character from Homestuck.", "website": "", "subreddit": "", "center": [180.5, 153.5], "path": [[171.5, 141.5], [188.5, 141.5], [188.5, 165.5], [171.5, 165.5]]}, -{"id": "000167", "name": "Faroe Islands", "description": "", "website": "", "subreddit": "", "center": [437.5, 120.5], "path": [[412.5, 103.5], [461.5, 103.5], [461.5, 136.5], [412.5, 136.5]]}, -{"id": "000168", "name": "Flag of Norway", "description": "", "website": "", "subreddit": "", "center": [352.5, 72.5], "path": [[493.5, 36.5], [215.5, 36.5], [215.5, 95.5], [231.5, 95.5], [231.5, 100.5], [259.5, 100.5], [259.5, 124.5], [268.5, 125.5], [334.5, 124.5], [334.5, 78.5], [400.5, 78.5], [400.5, 124.5], [412.5, 124.5], [412.5, 103.5], [461.5, 103.5], [461.5, 119.5], [475.5, 119.5], [475.5, 103.5], [495.5, 102.5], [494.5, 79.5]]}, -{"id": "000169", "name": "The Scream", "description": "A painting by Norwegian artist Edvard Munch.", "website": "", "subreddit": "", "center": [274.5, 66.5], "path": [[247.5, 40.5], [300.5, 40.5], [300.5, 91.5], [247.5, 91.5]]}, +{"id": "000167", "name": "Flag of the Faroe Islands", "description": "", "website": "https://en.wikipedia.org/wiki/Faroe_Islands", "subreddit": "/r/place_nordicunion", "center": [437.5, 120.5], "path": [[412.5, 103.5], [461.5, 103.5], [461.5, 136.5], [412.5, 136.5]]}, +{"id": "000168", "name": "Flag of Norway", "description": "", "website": "https://en.wikipedia.org/wiki/Norway", "subreddit": "/r/place_nordicunion", "center": [352.5, 72.5], "path": [[493.5, 36.5], [215.5, 36.5], [215.5, 95.5], [231.5, 95.5], [231.5, 100.5], [259.5, 100.5], [259.5, 124.5], [268.5, 125.5], [334.5, 124.5], [334.5, 78.5], [400.5, 78.5], [400.5, 124.5], [412.5, 124.5], [412.5, 103.5], [461.5, 103.5], [461.5, 119.5], [475.5, 119.5], [475.5, 103.5], [495.5, 102.5], [494.5, 79.5]]}, +{"id": "000169", "name": "The Scream", "description": "A painting by Norwegian artist Edvard Munch.", "website": "https://en.wikipedia.org/wiki/The_Scream", "subreddit": "/r/place_nordicunion", "center": [277.5, 65.5], "path": [[248.5, 41.5], [249.5, 39.5], [269.5, 41.5], [275.5, 39.5], [283.5, 39.5], [286.5, 37.5], [289.5, 37.5], [292.5, 39.5], [294.5, 37.5], [310.5, 37.5], [311.5, 38.5], [305.5, 43.5], [304.5, 46.5], [301.5, 50.5], [301.5, 54.5], [301.5, 58.5], [300.5, 60.5], [298.5, 62.5], [299.5, 66.5], [302.5, 70.5], [305.5, 70.5], [307.5, 74.5], [309.5, 75.5], [309.5, 79.5], [310.5, 80.5], [309.5, 82.5], [308.5, 82.5], [306.5, 83.5], [300.5, 91.5], [255.5, 91.5], [253.5, 87.5], [251.5, 91.5], [245.5, 91.5], [245.5, 87.5], [247.5, 87.5], [247.5, 83.5], [247.5, 74.5], [246.5, 72.5], [247.5, 67.5], [251.5, 61.5], [253.5, 56.5], [253.5, 53.5], [250.5, 47.5], [248.5, 44.5], [248.5, 40.5]]}, {"id": "000170", "name": "Flag of Ukraine", "description": "", "website": "", "subreddit": "", "center": [205.5, 213.5], "path": [[0.5, 170.5], [337.5, 171.5], [337.5, 193.5], [433.5, 193.5], [433.5, 252.5], [237.5, 251.5], [237.5, 249.5], [-1.5, 251.5]]}, -{"id": "000171", "name": "Gnome Child", "description": "An NPC from the MMORPG RuneScape who became a meme for its weird, philosophical quotes.", "website": "https://knowyourmeme.com/memes/gnome-child", "subreddit": "/r/dankmemes, /r/2007scape", "center": [152.5, 63.5], "path": [[146.5, 34.5], [137.5, 57.5], [146.5, 71.5], [135.5, 83.5], [138.5, 86.5], [144.5, 82.5], [168.5, 84.5], [168.5, 77.5], [161.5, 71.5], [164.5, 65.5], [164.5, 54.5], [155.5, 43.5], [151.5, 43.5], [150.5, 34.5]]}, +{"id": "000171", "name": "Gnome child", "description": "An NPC from the MMORPG RuneScape who became a meme for its weird, philosophical quotes.", "website": "https://knowyourmeme.com/memes/gnome-child", "subreddit": "/r/dankmemes, /r/2007scape", "center": [152.5, 63.5], "path": [[146.5, 34.5], [137.5, 57.5], [146.5, 71.5], [135.5, 83.5], [138.5, 86.5], [144.5, 82.5], [168.5, 84.5], [168.5, 77.5], [161.5, 71.5], [164.5, 65.5], [164.5, 54.5], [155.5, 43.5], [151.5, 43.5], [150.5, 34.5]]}, {"id": "000172", "name": "Big Floppa", "description": "The one and only.", "website": "", "subreddit": "/r/bigfloppa", "center": [1937.5, 465.5], "path": [[1954.5, 491.5], [1918.5, 490.5], [1925.5, 465.5], [1924.5, 448.5], [1923.5, 436.5], [1928.5, 440.5], [1934.5, 436.5], [1939.5, 435.5], [1947.5, 440.5], [1954.5, 434.5], [1954.5, 442.5], [1950.5, 450.5], [1951.5, 465.5]]}, {"id": "000173", "name": "Hytale", "description": "Hytale is an upcoming sandbox game by Hypixel Studios. Production began in 2015 by developers from the Minecraft multiplayer server Hypixel with funding and assistance from Riot Games, who later acquired the studio in 2020.", "website": "https://hytale.com/", "subreddit": "/r/hytaleinfo", "center": [342.5, 630.5], "path": [[323.5, 614.5], [361.5, 614.5], [361.5, 645.5], [323.5, 645.5], [323.5, 614.5]]}, {"id": "000174", "name": "Truttle1", "description": "An animated Youtube channel dedicated to showcasing esoteric programming languages, old game engines, and other miscellaneous cartoons.", "website": "http://truttle1.xyz/", "subreddit": "/r/Truttle1", "center": [1854.5, 496.5], "path": [[1849.5, 495.5], [1849.5, 497.5], [1852.5, 497.5], [1854.5, 499.5], [1856.5, 497.5], [1858.5, 499.5], [1859.5, 498.5], [1859.5, 497.5], [1858.5, 495.5], [1857.5, 495.5], [1856.5, 494.5], [1855.5, 494.5], [1853.5, 496.5], [1853.5, 496.5], [1851.5, 495.5], [1851.5, 494.5], [1852.5, 494.5], [1851.5, 493.5], [1851.5, 492.5], [1850.5, 492.5], [1850.5, 493.5], [1849.5, 494.5], [1850.5, 495.5]]}, @@ -184,7 +179,7 @@ {"id": "000193", "name": "Haaton", "description": "Akai Haato is a VTuber from Hololive's 1st Generation from Japan. She also has a nickname \"Haachama\". Her fanbase is officially called \"Haaton\" (\u306f\u3042\u3068\u3093), which is a combination of \"Haato\" and \"ton\" \u8c5a (pig). They are represented by a yellow plush pig that also works as her mascot.", "website": "https://www.youtube.com/channel/UC1CfXB_kRs3C-zaeTG3oGyg", "subreddit": "/r/Hololive", "center": [1362.5, 898.5], "path": [[1354.5, 894.5], [1370.5, 894.5], [1370.5, 901.5], [1354.5, 901.5]]}, {"id": "000195", "name": "Kobo Kanaeru x Wave collab", "description": "Kobo Kanaeru is a VTuber from Hololive Indonesia. The art was made in collaboration with r/place_the_wave", "website": "https://www.youtube.com/channel/UCjLEmnpCNeisMxy134KPwWw", "subreddit": "/r/Hololive", "center": [1916.5, 714.5], "path": [[1892.5, 697.5], [1939.5, 697.5], [1939.5, 731.5], [1892.5, 731.5]]}, {"id": "000196", "name": "Oaklands", "description": "A pixel art version of the game Oaklands on Roblox, made by Typical Developers.", "website": "https://twitter.com/TypicalDevelops", "subreddit": "/r/Oaklands", "center": [19.5, 1118.5], "path": [[0.5, 1114.5], [40.5, 1115.5], [40.5, 1121.5], [0.5, 1121.5]]}, -{"id": "000197", "submitted_by": "Matojeje", "name": "Pok\u00e9mon Workshop", "description": "A Discord community for artists who create drawings, songs or stories related to the Pok\u00e9mon franchise. The Discord server with hundreds of friendly artists holds art weekly contests.", "website": "https://discord.gg/PkmnWorkshop", "subreddit": "", "center": [1495.5, 1196.5], "path": [[1484.5, 1192.5], [1505.5, 1192.5], [1505.5, 1200.5], [1484.5, 1200.5]]}, +{"id": "000197", "submitted_by": "Matojeje", "name": "Pok\u00e9mon Workshop", "description": "A Discord community for artists who create drawings, songs or stories related to the Pok\u00e9mon franchise. The Discord server with hundreds of friendly artists holds art weekly contests.\n\nThis is the former location of the Pok\u00e9mon Workshop banner; the banner was later moved next to the Time Gear after allying with r/MysteryDungeon.", "website": "https://discord.gg/PkmnWorkshop", "subreddit": "", "center": [1495.5, 1196.5], "path": [[1484.5, 1192.5], [1505.5, 1192.5], [1505.5, 1200.5], [1484.5, 1200.5]]}, {"id": "000199", "name": "McMaster University Crest", "description": "The school crest of McMaster University, located in Hamilton, Ontario, Canada.", "website": "https://www.mcmaster.ca/", "subreddit": "/r/McMaster", "center": [1255.5, 45.5], "path": [[1261.5, 36.5], [1263.5, 36.5], [1263.5, 51.5], [1255.5, 58.5], [1247.5, 51.5], [1247.5, 36.5]]}, {"id": "000200", "name": "ImmutableX", "description": "ImmutableX is a Layer 2 scaling solution for NFTs built on Ethereum.", "website": "https://www.immutable.com/", "subreddit": "", "center": [873.5, 876.5], "path": [[841.5, 856.5], [905.5, 856.5], [905.5, 896.5], [841.5, 896.5]]}, {"id": "000201", "name": "Loopring", "description": "Loopring is a zero-knowledge exchange and payment protocol built on Ethereum.", "website": "https://loopring.org/", "subreddit": "", "center": [807.5, 876.5], "path": [[775.5, 856.5], [775.5, 896.5], [839.5, 896.5], [840.5, 857.5], [775.5, 856.5]]}, @@ -202,9 +197,9 @@ {"id": "000213", "submitted_by": "L33Tech", "name": "SMP Online", "description": "The SMP Online Minecraft server community!", "website": "https://callmecarson.live", "subreddit": "/r/CallMeCarson", "center": [516.5, 1686.5], "path": [[499.5, 1673.5], [499.5, 1673.5], [537.5, 1673.5], [536.5, 1685.5], [530.5, 1685.5], [530.5, 1699.5], [500.5, 1700.5], [500.5, 1688.5], [499.5, 1688.5], [499.5, 1680.5]]}, {"id": "000214", "name": "Loky Ronin", "description": "a piece of art drawn by Videoyun Community", "website": "https://twitch.tv/videoyun", "subreddit": "/r/videoyun", "center": [772.5, 1421.5], "path": [[735.5, 1403.5], [735.5, 1439.5], [809.5, 1439.5], [809.5, 1403.5]]}, {"id": "000215", "submitted_by": "L33Tech", "name": "Place Start", "description": "A start menu for r/place, styled after Windows XP", "website": "", "subreddit": "/r/PlaceStart", "center": [589.5, 1985.5], "path": [[0.5, 1970.5], [1200.5, 1972.5], [1200.5, 1999.5], [0.5, 2000.5], [0.5, 1970.5]]}, -{"id": "000216", "submitted_by": "L33Tech", "name": "r/TheBlueCorner", "description": "Exactly what it sounds like. One of the founding factions from the original Place.", "website": "", "subreddit": "/r/TheBlueCorner", "center": [1962.5, 1934.5], "path":[[1924.5,1868.5],[1999.5,1868.5],[1999.5,1999.5],[1924.5,1999.5]]}, +{"id": "000216", "submitted_by": "L33Tech", "name": "r/TheBlueCorner", "description": "Exactly what it sounds like. One of the founding factions from the original Place.", "website": "", "subreddit": "/r/TheBlueCorner", "center": [1962.5, 1934.5], "path": [[1924.5, 1868.5], [1999.5, 1868.5], [1999.5, 1999.5], [1924.5, 1999.5]]}, {"id": "000217", "name": "The Rust programming language", "description": "This little square belongs to the community of the Rust programming language", "website": "https://rust-lang.org", "subreddit": "/r/rust", "center": [735.5, 622.5], "path": [[722.5, 608.5], [722.5, 635.5], [748.5, 635.5], [748.5, 608.5]]}, -{"id": "000218", "name": "Realm of the Mad God", "description": "Realm of The Mad God is a permadeath MMORPG developed by Deca Games. The image shows all eighteen of the playable classes in the game, a White Bag (Rarest loot container), the head of Oryx the Mad God (An endgame boss), Craig the Intern (A friendly NPC), and Archbishop Leucoryx (Another endgame boss) pictured as part of the German Flag holding.", "website": "", "subreddit": "/r/Rotmg", "center": [508.5, 877.5], "path": [[470.5, 866.5], [470.5, 889.5], [561.5, 889.5], [561.5, 886.5], [536.5, 886.5], [536.5, 871.5], [548.5, 871.5], [548.5, 861.5], [547.5, 861.5], [547.5, 857.5], [546.5, 857.5], [546.5, 858.5], [543.5, 858.5], [543.5, 857.5], [541.5, 857.5], [541.5, 858.5], [538.5, 858.5], [538.5, 857.5], [538.5, 858.5], [537.5, 858.5], [537.5, 865.5], [536.5, 865.5], [536.5, 866.5], [470.5, 866.5]]}, +{"id": "000218", "name": "Realm of the Mad God", "description": "Realm of The Mad God is a permadeath MMORPG developed by Deca Games. The image shows all eighteen of the playable classes in the game, a White Bag (Rarest loot container), the head of Oryx the Mad God (An endgame boss), Craig the Intern (A friendly NPC), and Archbishop Leucoryx (Another endgame boss) pictured holding the German autobahn sign made in collaboration with r/placede.", "website": "https://www.realmofthemadgod.com/", "subreddit": "/r/rotmg", "center": [510.5, 877.5], "path": [[470.5, 866.5], [470.5, 890.5], [562.5, 890.5], [562.5, 885.5], [536.5, 885.5], [536.5, 871.5], [549.5, 871.5], [549.5, 868.5], [550.5, 868.5], [550.5, 865.5], [549.5, 865.5], [549.5, 864.5], [548.5, 864.5], [548.5, 862.5], [547.5, 862.5], [548.5, 862.5], [548.5, 856.5], [545.5, 856.5], [545.5, 857.5], [544.5, 857.5], [544.5, 856.5], [543.5, 856.5], [543.5, 855.5], [541.5, 855.5], [541.5, 856.5], [540.5, 856.5], [540.5, 857.5], [539.5, 857.5], [539.5, 856.5], [536.5, 856.5], [536.5, 862.5], [537.5, 862.5], [536.5, 862.5], [536.5, 864.5], [535.5, 864.5], [535.5, 866.5], [470.5, 866.5]]}, {"id": "000219", "name": "Forgotten King and Shattered Queen", "description": "Endgame Bosses from the video game Realm of the Mad God. The Forgotten King on the left shown holding a tri-force to symbolize the alliance between r/Zelda and r/RoTMG, while the Shattered Queen is shown on the right. In the bottom right corner is the iconic level 20 grave representing the permadeath nature of the game.", "website": "", "subreddit": "/r/Rotmg", "center": [1346.5, 1888.5], "path": [[1326.5, 1876.5], [1326.5, 1900.5], [1366.5, 1900.5], [1366.5, 1876.5], [1326.5, 1876.5]]}, {"id": "000220", "name": "The Shotbow Network", "description": "The Original Minecraft Server Network! Home to old classics like MineZ, Annihilation and Smash!", "website": "https://shotbow.net/", "subreddit": "/r/Shotbow", "center": [1009.5, 478.5], "path": [[999.5, 495.5], [1008.5, 495.5], [1008.5, 492.5], [1010.5, 492.5], [1010.5, 488.5], [1012.5, 487.5], [1014.5, 486.5], [1020.5, 486.5], [1020.5, 465.5], [999.5, 465.5]]}, {"id": "000221", "name": "MineZ", "description": "Shotbow's original Minecraft gamemode! Based on the popular DayZ mod.", "website": "https://shotbow.net/", "subreddit": "/r/MineZ", "center": [1012.5, 460.5], "path": [[1004.5, 465.5], [1020.5, 465.5], [1020.5, 455.5], [1004.5, 455.5]]}, @@ -214,36 +209,34 @@ {"id": "000225", "name": "Shelly (Small)", "description": "Shelly is the player character in the indie platformer Will You Snail?", "website": "https://store.steampowered.com/app/1115050/Will_You_Snail/", "subreddit": "/r/WillYouSnail", "center": [853.5, 973.5], "path": [[849.5, 971.5], [849.5, 971.5], [850.5, 971.5], [851.5, 971.5], [851.5, 970.5], [857.5, 970.5], [857.5, 976.5], [849.5, 976.5], [849.5, 973.5]]}, {"id": "000226", "name": "Hu Tao Poland from r/polandball", "description": "Poland from r/polandball dressed up as Hu Tao from Genshin Impact, our allies!", "website": "", "subreddit": "/r/polandball", "center": [1598.5, 1781.5], "path": [[1577.5, 1762.5], [1576.5, 1761.5], [1625.5, 1761.5], [1625.5, 1781.5], [1620.5, 1784.5], [1620.5, 1786.5], [1619.5, 1788.5], [1615.5, 1798.5], [1615.5, 1801.5], [1612.5, 1803.5], [1610.5, 1801.5], [1607.5, 1798.5], [1604.5, 1797.5], [1603.5, 1799.5], [1603.5, 1800.5], [1604.5, 1801.5], [1605.5, 1802.5], [1604.5, 1803.5], [1597.5, 1803.5], [1595.5, 1804.5], [1591.5, 1804.5], [1594.5, 1801.5], [1596.5, 1798.5], [1593.5, 1795.5], [1588.5, 1798.5], [1587.5, 1799.5], [1586.5, 1802.5], [1588.5, 1806.5], [1591.5, 1806.5], [1587.5, 1806.5], [1586.5, 1810.5], [1576.5, 1810.5], [1577.5, 1761.5], [1577.5, 1761.5]]}, {"id": "000227", "name": "Tiny! Hu Tao Poland - Polandball", "description": "The tiny version of Poland from r/polandball dressed up as Hu Tao, with Boo Tao as well!", "website": "", "subreddit": "/r/polandball", "center": [1152.5, 78.5], "path": [[1133.5, 84.5], [1133.5, 84.5], [1136.5, 86.5], [1133.5, 78.5], [1131.5, 72.5], [1138.5, 66.5], [1144.5, 65.5], [1148.5, 69.5], [1151.5, 73.5], [1159.5, 67.5], [1165.5, 68.5], [1170.5, 73.5], [1171.5, 79.5], [1170.5, 82.5], [1173.5, 81.5], [1173.5, 86.5], [1171.5, 87.5], [1166.5, 88.5], [1162.5, 88.5], [1158.5, 87.5], [1136.5, 87.5], [1135.5, 86.5]]}, -{"id": "000228", "name": "Femboy Bean", "description": "Original artwork by Fleurfurr, and Bean's sona, reimagined in pixel form by furry_irl.", "website": "", "subreddit": "/r/furry_irl", "center": [1044.5, 1798.5], "path": [[1030.5, 1780.5], [1056.5, 1780.5], [1056.5, 1817.5], [1054.5, 1817.5], [1054.5, 1818.5], [1053.5, 1818.5], [1053.5, 1819.5], [1052.5, 1819.5], [1052.5, 1820.5], [1051.5, 1820.5], [1051.5, 1821.5], [1048.5, 1821.5], [1048.5, 1822.5], [1045.5, 1822.5], [1045.5, 1820.5], [1044.5, 1820.5], [1044.5, 1816.5], [1043.5, 1816.5], [1043.5, 1815.5], [1042.5, 1815.5], [1042.5, 1814.5], [1041.5, 1814.5], [1041.5, 1813.5], [1041.5, 1812.5], [1033.5, 1812.5], [1033.5, 1813.5], [1032.5, 1813.5], [1032.5, 1814.5], [1031.5, 1814.5], [1030.5, 1814.5], [1030.5, 1815.5], [1030.5, 1780.5]]}, {"id": "000229", "name": "Scott (Nelward)", "description": "Scott, the symbol for Atlanta-based independent music artist Nelward.", "website": "https://www.nelward.com", "subreddit": "/r/Nelward", "center": [7.5, 69.5], "path": [[1.5, 65.5], [12.5, 65.5], [12.5, 72.5], [1.5, 72.5]]}, -{"id": "000230", "submitted_by": "howardt12345", "name": "Taiwan's First Claim", "description": "r/Taiwan's first claims on r/Place, starting from the big ROC (Taiwan) flag and evolving into the mini-flags, Taipei 101, and Boba tea.", "website": "https://en.wikipedia.org/wiki/Taiwan", "subreddit": "/r/Taiwan", "center": [938.5, 546.5], "path": [[978.5, 567.5], [910.5, 567.5], [910.5, 515.5], [958.5, 515.5], [959.5, 519.5], [934.5, 519.5], [934.5, 542.5], [978.5, 542.5], [978.5, 567.5]]}, -{"id": "000231", "submitted_by": "howardt12345", "name": "Taiwan Independence Flag", "description": "The flag of the World Taiwanese Congress, the most common flag representing the Taiwanese Independence movement.", "website": "https://en.wikipedia.org/wiki/Taiwan_independence_movement", "subreddit": "/r/Taiwan", "center": [1227.5, 147.5], "path": [[1206.5, 134.5], [1248.5, 134.5], [1248.5, 160.5], [1206.5, 160.5], [1206.5, 134.5]]}, +{"id": "000230", "submitted_by": "howardt12345", "name": "Taiwan's First Claim", "description": "r/Taiwan's first claims on r/Place, starting from the big ROC (Taiwan) flag. Other symbols on it by the end of r/place include the Taipei 101, Boba/Pearl Milk Tea, and the bear mascot for the city of Taipei, named Bravo.", "website": "https://en.wikipedia.org/wiki/Taiwan", "subreddit": "/r/Taiwan", "center": [938.5, 546.5], "path": [[978.5, 567.5], [910.5, 567.5], [910.5, 515.5], [958.5, 515.5], [959.5, 519.5], [934.5, 519.5], [934.5, 542.5], [978.5, 542.5], [978.5, 567.5]]}, +{"id": "000231", "submitted_by": "howardt12345", "name": "Taiwan Independence Flag", "description": "Flag of the World Taiwanese Congress, commonly used to represent the Taiwanese Independence movement, featuring T\u00e1iw\u0101n (\u53f0\u7063) written on it in traditional Chinese (simplified \u5f13 design). The \"Taiwan\" part of the \"r/Taiwan\" was converted to be \"Taiwan #1\", for the popular \"Taiwan number one\" saying.\n\n This flag was made during the first canvas expansion by /r/Taiwan, leading to an alliance with Ireland and strengthening the Czech alliance. The Chinese writing was added on the last day of r/place.\n\n This flag came under heavy attack by an agressive expansion of a nearly Turkish flag (led by streamers, not r/Turkey), which it resiliently defended against with the help of its allies.", "website": "https://en.wikipedia.org/wiki/Taiwan_independence_movement", "subreddit": "/r/Taiwan", "center": [1223.5, 148.5], "path": [[1197.5, 134.5], [1248.5, 134.5], [1248.5, 161.5], [1197.5, 161.5], [1197.5, 134.5]]}, {"id": "000232", "name": "Taipei 101 attempt", "description": "r/Taiwan tried to make a 101 pixel high Taipei 101 at this location, in coordination with many other allies.", "website": "", "subreddit": "/r/Taiwan", "center": [1200.5, 1266.5], "path": [[1178.5, 1275.5], [1219.5, 1275.5], [1219.5, 1265.5], [1217.5, 1265.5], [1217.5, 1264.5], [1216.5, 1264.5], [1216.5, 1262.5], [1214.5, 1262.5], [1214.5, 1261.5], [1213.5, 1261.5], [1213.5, 1260.5], [1212.5, 1260.5], [1212.5, 1259.5], [1211.5, 1259.5], [1211.5, 1258.5], [1210.5, 1258.5], [1210.5, 1257.5], [1209.5, 1257.5], [1209.5, 1256.5], [1207.5, 1256.5], [1207.5, 1254.5], [1206.5, 1254.5], [1206.5, 1251.5], [1205.5, 1251.5], [1205.5, 1247.5], [1204.5, 1247.5], [1204.5, 1241.5], [1202.5, 1241.5], [1202.5, 1250.5], [1199.5, 1250.5], [1199.5, 1257.5], [1199.5, 1257.5], [1199.5, 1258.5], [1198.5, 1258.5], [1198.5, 1263.5], [1179.5, 1263.5], [1178.5, 1263.5], [1178.5, 1275.5]]}, {"id": "000233", "name": "Super Smash Bros Melee", "description": "Super smash bros melee, a fighting game community dedicated to their game, which they have not abandoned after 20 years and 3 sequels. They also never abandoned their main slippi.gg logo, which stood for effectively the whole duration of r/place. They also collaborated with place trees to construct Dream Land, one of the 6 legal stages in competitive Melee, featuring Whispy woods, and added Fox and Falco Stock icons.", "website": "https://slippi.gg", "subreddit": "/r/ssbm", "center": [789.5, 943.5], "path": [[776.5, 927.5], [775.5, 961.5], [781.5, 962.5], [781.5, 978.5], [800.5, 982.5], [817.5, 979.5], [818.5, 962.5], [824.5, 962.5], [823.5, 926.5], [800.5, 915.5], [777.5, 926.5], [771.5, 907.5], [750.5, 905.5], [749.5, 927.5], [748.5, 945.5], [776.5, 947.5]]}, -{"id": "000234", "name": "VRChat Logo", "description": "Logo of VRChat, the online virtual reality social platform. The platform allows users to interact with others with user-created 3D avatars and worlds.", "website": "https://vrchat.com/", "subreddit": "/r/vrchat", "center": [963.5,97.5], "path": [[929.5,88.5],[929.5,105.5],[983.5,105.5],[990.5,113.5],[991.5,113.5],[991.5,105.5],[995.5,105.5],[995.5,88.5]]}, +{"id": "000234", "name": "VRChat Logo", "description": "Logo of VRChat, the online virtual reality social platform. The platform allows users to interact with others with user-created 3D avatars and worlds.", "website": "https://vrchat.com/", "subreddit": "/r/vrchat", "center": [963.5, 97.5], "path": [[929.5, 88.5], [929.5, 105.5], [983.5, 105.5], [990.5, 113.5], [991.5, 113.5], [991.5, 105.5], [995.5, 105.5], [995.5, 88.5]]}, {"id": "000235", "name": "UW Madison Motion W", "description": "The \"Motion W\", University of Wisconsin-Madison's athletics logo.", "website": "https://wisc.edu", "subreddit": "/r/UWMadison", "center": [112.5, 593.5], "path": [[100.5, 580.5], [124.5, 580.5], [124.5, 606.5], [100.5, 606.5]]}, {"id": "000236", "name": "Bucky Badger", "description": "University of Wisconsin-Madison's mascot Bucky U Badger, in the middle of being consumed.", "website": "https://wisc.edu", "subreddit": "/r/UWMadison", "center": [280.5, 1565.5], "path": [[250.5, 1552.5], [300.5, 1552.5], [300.5, 1585.5], [280.5, 1585.5], [280.5, 1569.5], [250.5, 1567.5], [250.5, 1552.5]]}, {"id": "000238", "name": "Shisheyu_Mayamoto's Logo", "description": "Shisheyu Mayamoto's Twitch channel's logo", "website": "https://www.twitch.tv/shisheyu_mayamoto", "subreddit": "", "center": [1915.5, 1568.5], "path": [[1909.5, 1562.5], [1909.5, 1573.5], [1921.5, 1573.5], [1921.5, 1562.5], [1909.5, 1562.5]]}, -{"id": "000239", "name": "Esperanto", "description": "A proposed international language designed to be as simple as possible to understand", "website": "https://esperanto.net/en/", "subreddit": "/r/esperanto", "center": [1466.5, 494.5], "path": [[1433.5, 487.5], [1499.5, 487.5], [1499.5, 501.5], [1433.5, 501.5]]}, -{"id": "000240", "name": "VRChat Modding Group", "description": "Logo of the VRChat Modding Group, a community dedicated to creating and maintaining mods for the VR social platform VRChat", "website": "https://discord.gg/vrcmg", "subreddit": "", "center": [1296.5,1985.5],"path": [[1303.5,1975.5],[1290.5,1975.5],[1290.5,1994.5],[1291.5,1994.5],[1291.5,1996.5],[1294.5,1996.5],[1294.5,1995.5],[1294.5,1996.5],[1297.5,1996.5],[1297.5,1995.5],[1297.5,1996.5],[1300.5,1996.5],[1300.5,1994.5],[1303.5,1994.5]]}, +{"id": "000239", "name": "Esperanto and Zamenhof", "description": "A proposed international language designed to be as simple to learn as possible. To the left is a green star (a symbol of esperanto) and to the right is Zamenhof (the creator of Esperanto) wearing sunglasses", "website": "https://esperanto.net/en/", "subreddit": "/r/Esperanto", "center": [1471.5, 494.5], "path": [[1433.5, 487.5], [1508.5, 487.5], [1508.5, 500.5], [1433.5, 500.5]]}, +{"id": "000240", "name": "VRChat Modding Group", "description": "Logo of the VRChat Modding Group, a community dedicated to creating and maintaining mods for the VR social platform VRChat", "website": "https://discord.gg/vrcmg", "subreddit": "", "center": [1296.5, 1985.5], "path": [[1303.5, 1975.5], [1290.5, 1975.5], [1290.5, 1994.5], [1291.5, 1994.5], [1291.5, 1996.5], [1294.5, 1996.5], [1294.5, 1995.5], [1294.5, 1996.5], [1297.5, 1996.5], [1297.5, 1995.5], [1297.5, 1996.5], [1300.5, 1996.5], [1300.5, 1994.5], [1303.5, 1994.5]]}, {"id": "000241", "name": "Disco Elisium", "description": "Main characters of the game.", "website": "https://discoelysium.com/", "subreddit": "/r/DiscoElysium", "center": [1383.5, 1900.5], "path": [[1362.5, 1884.5], [1403.5, 1884.5], [1403.5, 1917.5], [1364.5, 1917.5]]}, {"id": "000242", "submitted_by": "StrikerX3", "name": "Pok\u00e9mon Mystery Dungeon: Rescue Team DX badge", "description": "A depiction of the rescue team badge in Pok\u00e9mon Mystery Dungeon: Rescue Team DX. The background has the pattern of the Harmony Scarf from Pok\u00e9mon Super Mystery Dungeon, and the picture also contains a Seed and an Orb, two usable items in the game.", "website": "https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_Mystery_Dungeon:_Rescue_Team_DX", "subreddit": "/r/MysteryDungeon", "center": [722.5, 791.5], "path": [[709.5, 778.5], [709.5, 803.5], [734.5, 803.5], [734.5, 778.5]]}, {"id": "000243", "submitted_by": "StrikerX3", "name": "Time Gear", "description": "A depiction of a Time Gear from Pok\u00e9mon Mystery Dungeon: Explorers of Time/Darkness/Sky. Time Gears are artifacts that regulate time and are key plot items in the games.", "website": "https://bulbapedia.bulbagarden.net/wiki/Time_Gear", "subreddit": "/r/MysteryDungeon", "center": [1090.5, 477.5], "path": [[1078.5, 465.5], [1078.5, 488.5], [1101.5, 488.5], [1101.5, 465.5]]}, {"id": "000244", "submitted_by": "StrikerX3", "name": "Sleeping Shiny Celebi", "description": "A sleeping Shiny Celebi. The sprite was based on in-game art from the Pok\u00e9mon Mystery Dungeon: Explorers of Time/Darkness/Sky games for the Nintendo DS, which feature Shiny Celebi as a supporting character.", "website": "https://bulbapedia.bulbagarden.net/wiki/Celebi_(Explorers_of_Time,_Darkness,_and_Sky)", "subreddit": "/r/MysteryDungeon", "center": [1325.5, 61.5], "path": [[1323.5, 50.5], [1321.5, 54.5], [1321.5, 61.5], [1318.5, 61.5], [1318.5, 63.5], [1320.5, 66.5], [1320.5, 68.5], [1326.5, 69.5], [1328.5, 68.5], [1328.5, 65.5], [1331.5, 63.5], [1331.5, 55.5], [1330.5, 54.5], [1327.5, 55.5], [1325.5, 54.5], [1325.5, 53.5]]}, {"id": "000245", "submitted_by": "StrikerX3", "name": "Victini and the V-Wheel", "description": "A depiction of Victini and his V-Wheel from Pok\u00e9mon Mystery Dungeon: Gates to Infinity.", "website": "https://bulbapedia.bulbagarden.net/wiki/Pok%C3%A9mon_Paradise#V-Wheel", "subreddit": "/r/MysteryDungeon", "center": [1752.5, 1485.5], "path": [[1734.5, 1473.5], [1734.5, 1496.5], [1770.5, 1496.5], [1770.5, 1473.5]]}, {"id": "000246", "name": "Green Greens", "description": "A collaboration between /r/PlaceTrees and the Super Smash Bros. Melee community. Based on the Smash 64 stage Dream Land, with Pikachu, Fox, Falco, and Kirby fighting.", "website": "https://supersmashbros.fandom.com/wiki/Dream_Land_(Super_Smash_Bros.)", "subreddit": "", "center": [762.5, 918.5], "path": [[753.5, 931.5], [771.5, 931.5], [774.5, 928.5], [774.5, 908.5], [772.5, 906.5], [753.5, 906.5], [750.5, 910.5], [750.5, 928.5]]}, -{"id": "000247", "name": "Veloren", "description": "Veloren is an open source multiplayer voxel RPG written in Rust.", "website": "https://veloren.net/", "subreddit": "/r/veloren", "center": [741.5, 642.5],"path": [[735.5,636.5], [735.5, 647.5], [746.5, 647.5], [746.5, 636.5], [735.5, 636.5]]}, +{"id": "000247", "name": "Veloren", "description": "Veloren is an open source multiplayer voxel RPG written in Rust.", "website": "https://veloren.net/", "subreddit": "/r/veloren", "center": [741.5, 642.5], "path": [[735.5, 636.5], [735.5, 647.5], [746.5, 647.5], [746.5, 636.5], [735.5, 636.5]]}, {"id": "000249", "submitted_by": "ostensacken", "name": "Protea", "description": "Proteas are a species of plant mostly found in South Africa. The King Protea is the national flower of South Africa", "website": "", "subreddit": "/r/southafrica", "center": [771.5, 1054.5], "path": [[765.5, 1053.5], [764.5, 1051.5], [765.5, 1050.5], [767.5, 1050.5], [768.5, 1050.5], [767.5, 1049.5], [767.5, 1048.5], [768.5, 1048.5], [769.5, 1049.5], [770.5, 1048.5], [770.5, 1047.5], [771.5, 1046.5], [772.5, 1048.5], [773.5, 1048.5], [773.5, 1049.5], [774.5, 1048.5], [775.5, 1048.5], [775.5, 1047.5], [775.5, 1049.5], [774.5, 1050.5], [775.5, 1051.5], [776.5, 1050.5], [777.5, 1049.5], [778.5, 1048.5], [778.5, 1049.5], [778.5, 1051.5], [778.5, 1051.5], [777.5, 1052.5], [777.5, 1053.5], [777.5, 1054.5], [777.5, 1056.5], [776.5, 1057.5], [775.5, 1058.5], [775.5, 1060.5], [774.5, 1061.5], [773.5, 1060.5], [772.5, 1059.5], [771.5, 1061.5], [773.5, 1063.5], [772.5, 1064.5], [770.5, 1064.5], [770.5, 1063.5], [771.5, 1060.5], [769.5, 1060.5], [769.5, 1060.5], [768.5, 1061.5], [767.5, 1060.5], [767.5, 1058.5], [767.5, 1057.5], [766.5, 1057.5], [766.5, 1056.5], [766.5, 1055.5], [765.5, 1055.5]]}, -{"id": "000250", "submitted_by": "Glitchious404", "name": "Small Alula", "description": "A smaller version of the character Alula from Oneshot. Original sprite by Glitchious404.", "website": "www.oneshot-game.com", "subreddit": "/r/oneshot", "center": [1086.5, 1695.5], "path": [[1084.5, 1705.5], [1083.5, 1705.5], [1083.5, 1704.5], [1082.5, 1704.5], [1079.5, 1704.5], [1079.5, 1703.5], [1079.5, 1702.5], [1079.5, 1701.5], [1079.5, 1698.5], [1078.5, 1698.5], [1078.5, 1697.5], [1078.5, 1693.5], [1077.5, 1697.5], [1077.5, 1696.5], [1079.5, 1693.5], [1079.5, 1691.5], [1080.5, 1691.5], [1080.5, 1690.5], [1081.5, 1690.5], [1081.5, 1689.5], [1081.5, 1688.5], [1081.5, 1686.5], [1081.5, 1683.5], [1083.5, 1683.5], [1083.5, 1684.5], [1084.5, 1684.5], [1084.5, 1685.5], [1085.5, 1685.5], [1085.5, 1686.5], [1085.5, 1687.5], [1086.5, 1688.5], [1086.5, 1687.5], [1087.5, 1688.5], [1088.5, 1688.5], [1088.5, 1687.5], [1088.5, 1686.5], [1089.5, 1686.5], [1089.5, 1685.5], [1090.5, 1685.5], [1090.5, 1684.5], [1091.5, 1684.5], [1092.5, 1684.5], [1092.5, 1689.5], [1091.5, 1690.5], [1092.5, 1690.5], [1092.5, 1692.5], [1093.5, 1692.5], [1093.5, 1697.5], [1092.5, 1697.5], [1092.5, 1700.5], [1093.5, 1700.5], [1093.5, 1701.5], [1093.5, 1702.5], [1093.5, 1704.5], [1090.5, 1704.5], [1090.5, 1705.5], [1087.5, 1705.5]]}, +{"id": "000250", "submitted_by": "Glitchious404", "name": "Small Alula", "description": "A smaller version of the character Alula from Oneshot. Original sprite by Glitchious404.", "website": "https://www.oneshot-game.com", "subreddit": "/r/oneshot", "center": [1086.5, 1695.5], "path": [[1084.5, 1705.5], [1083.5, 1705.5], [1083.5, 1704.5], [1082.5, 1704.5], [1079.5, 1704.5], [1079.5, 1703.5], [1079.5, 1702.5], [1079.5, 1701.5], [1079.5, 1698.5], [1078.5, 1698.5], [1078.5, 1697.5], [1078.5, 1693.5], [1077.5, 1697.5], [1077.5, 1696.5], [1079.5, 1693.5], [1079.5, 1691.5], [1080.5, 1691.5], [1080.5, 1690.5], [1081.5, 1690.5], [1081.5, 1689.5], [1081.5, 1688.5], [1081.5, 1686.5], [1081.5, 1683.5], [1083.5, 1683.5], [1083.5, 1684.5], [1084.5, 1684.5], [1084.5, 1685.5], [1085.5, 1685.5], [1085.5, 1686.5], [1085.5, 1687.5], [1086.5, 1688.5], [1086.5, 1687.5], [1087.5, 1688.5], [1088.5, 1688.5], [1088.5, 1687.5], [1088.5, 1686.5], [1089.5, 1686.5], [1089.5, 1685.5], [1090.5, 1685.5], [1090.5, 1684.5], [1091.5, 1684.5], [1092.5, 1684.5], [1092.5, 1689.5], [1091.5, 1690.5], [1092.5, 1690.5], [1092.5, 1692.5], [1093.5, 1692.5], [1093.5, 1697.5], [1092.5, 1697.5], [1092.5, 1700.5], [1093.5, 1700.5], [1093.5, 1701.5], [1093.5, 1702.5], [1093.5, 1704.5], [1090.5, 1704.5], [1090.5, 1705.5], [1087.5, 1705.5]]}, {"id": "000251", "submitted_by": "Evo_Kaer", "name": "No Man's Sky Atlas", "description": "The Atlas is an iconic symbol of the game No Man's Sky", "website": "https://nomanssky.fandom.com/de/wiki/No_Man%27s_Sky", "subreddit": "/r/NoMansSkyTheGame", "center": [1631.5, 1631.5], "path": [[1615.5, 1610.5], [1615.5, 1636.5], [1631.5, 1657.5], [1635.5, 1657.5], [1653.5, 1628.5], [1635.5, 1610.5]]}, {"id": "000252", "submitted_by": "MrEduxator", "name": "holostars", "description": "An icon that represents holostars, which is a male branch of hololive.", "website": "https://holostars.hololivepro.com/en/", "subreddit": "/r/holostars", "center": [312.5, 767.5], "path": [[302.5, 758.5], [321.5, 758.5], [321.5, 777.5], [303.5, 777.5]]}, {"id": "000253", "submitted_by": "Lambocoon", "name": "r/baduk", "description": "the subreddit for the ancient board game Go/Baduk/Weiqi", "website": "", "subreddit": "/r/baduk", "center": [1522.5, 1284.5], "path": [[1494.5, 1279.5], [1550.5, 1279.5], [1550.5, 1289.5], [1494.5, 1289.5]]}, -{"id": "000254", "submitted_by": "ExpressEducator15", "name": "Indian Art on Place No.1", "description": "Indian Flag with artwork Design 1 nco-ordinated on discordnr/indianplacennShort descriptionnTop right side Isro Flag nfrom left to right on the flagn1> PSLV Launch of ISROn2> Gopuram of Menakshi Temlen3> Ashoka Chakra (flag component)n4> Taj Mahaln5> A Royal Indian Elephant", "website": "", "subreddit": "/r/indianplace", "center": [372.5, 314.5], "path": [[237.5, 307.5], [240.5, 307.5], [241.5, 299.5], [250.5, 299.5], [250.5, 253.5], [293.5, 253.5], [293.5, 297.5], [536.5, 298.5], [536.5, 342.5], [237.5, 343.5], [237.5, 307.5]]}, {"id": "000258", "submitted_by": "Tylersfoot", "name": "Green Lattice", "description": "Green Lattice was a peaceful faction, determined to fill the canvas with a beautiful orderly light and dark green lattice, that would serve as a safe home for art to live", "website": "", "subreddit": "/r/greenlattice", "center": [1547.5, 1542.5], "path": [[1499.5, 1499.5], [1569.5, 1499.5], [1570.5, 1518.5], [1620.5, 1520.5], [1620.5, 1539.5], [1595.5, 1539.5], [1594.5, 1580.5], [1535.5, 1579.5], [1534.5, 1585.5], [1499.5, 1586.5], [1498.5, 1499.5]]}, {"id": "000259", "submitted_by": "zpjester", "name": "Scott Munley", "description": "Scott Manley's head nightmarishly projected onto the Mun. Fly ns\u0341\u031f\u032ca\u0317\u032a\u0353\u032cf\u0315\u031f\u0353\u032ee\u0334\u0319\u0347\u031e.", "website": "https://www.youtube.com/channel/UCxzC4EngIsMrPmbm6Nxvb-A", "subreddit": "/r/SpaceXPlace", "center": [946.5, 1521.5], "path": [[938.5, 1519.5], [940.5, 1516.5], [943.5, 1513.5], [948.5, 1513.5], [952.5, 1515.5], [953.5, 1518.5], [953.5, 1523.5], [951.5, 1527.5], [949.5, 1528.5], [944.5, 1529.5], [940.5, 1526.5], [938.5, 1523.5]]}, {"id": "000261", "submitted_by": "shekevje", "name": "University of Washiington", "description": "The logo of the University of Washington in Seattle, featuring some of the school's characteristic cherry blossoms. The school's mascot is a husky.", "website": "http://uw.edu/", "subreddit": "/r/udub", "center": [897.5, 527.5], "path": [[889.5, 520.5], [889.5, 534.5], [905.5, 534.5], [905.5, 520.5], [889.5, 520.5], [889.5, 520.5]]}, {"id": "000262", "submitted_by": "Scotty98745", "name": "Green Bay Packers", "description": "The Green Bay Packers are a historic American football team based in Green Bay, Wisconsin that competes in the National Football League (NFL).nnIt is the third-oldest franchise in the NFL, dating back to 1919, and is the only non-profit, community-owned major league professional sports team based in the United States.nnThe Packers have won 13 league championships, the most in NFL history, with nine pre-Super Bowl NFL titles and four Super Bowl victories.nnGO PACK GO!", "website": "https://www.packers.com/", "subreddit": "/r/GreenBayPackers", "center": [418.5, 922.5], "path": [[407.5, 913.5], [428.5, 913.5], [428.5, 931.5], [407.5, 931.5], [407.5, 913.5]]}, -{"id": "000263", "submitted_by": "jonathan6405", "name": "Roskilde Cathedral", "description": "A cathedral from the Danish city of Roskilde", "website": "https://roskildedomkirke.dk/english/", "subreddit": "", "center": [290.5, 144.5], "path": [[277.5, 139.5], [277.5, 157.5], [302.5, 157.5], [302.5, 139.5], [301.5, 139.5], [301.5, 138.5], [300.5, 138.5], [300.5, 131.5], [299.5, 131.5], [299.5, 130.5], [298.5, 130.5], [298.5, 128.5], [297.5, 128.5], [297.5, 119.5], [296.5, 119.5], [296.5, 128.5], [295.5, 128.5], [295.5, 129.5], [295.5, 130.5], [294.5, 130.5], [294.5, 131.5], [293.5, 131.5], [293.5, 132.5], [293.5, 135.5], [287.5, 135.5], [286.5, 135.5], [286.5, 131.5], [285.5, 131.5], [285.5, 130.5], [284.5, 130.5], [284.5, 128.5], [283.5, 128.5], [283.5, 119.5], [282.5, 119.5], [282.5, 128.5], [281.5, 129.5], [281.5, 129.5], [281.5, 130.5], [280.5, 130.5], [280.5, 131.5], [279.5, 131.5], [279.5, 137.5], [279.5, 138.5], [278.5, 138.5], [278.5, 139.5], [277.5, 139.5]]}, +{"id": "000263", "submitted_by": "jonathan6405", "name": "Roskilde Cathedral", "description": "A cathedral from the Danish city of Roskilde.", "website": "https://roskildedomkirke.dk/english/", "subreddit": "/r/Denmark", "center": [290.5, 144.5], "path": [[277.5, 139.5], [277.5, 157.5], [302.5, 157.5], [302.5, 139.5], [301.5, 139.5], [301.5, 138.5], [300.5, 138.5], [300.5, 131.5], [299.5, 131.5], [299.5, 130.5], [298.5, 130.5], [298.5, 128.5], [297.5, 128.5], [297.5, 119.5], [296.5, 119.5], [296.5, 128.5], [295.5, 128.5], [295.5, 129.5], [295.5, 130.5], [294.5, 130.5], [294.5, 131.5], [293.5, 131.5], [293.5, 132.5], [293.5, 135.5], [287.5, 135.5], [286.5, 135.5], [286.5, 131.5], [285.5, 131.5], [285.5, 130.5], [284.5, 130.5], [284.5, 128.5], [283.5, 128.5], [283.5, 119.5], [282.5, 119.5], [282.5, 128.5], [281.5, 129.5], [281.5, 129.5], [281.5, 130.5], [280.5, 130.5], [280.5, 131.5], [279.5, 131.5], [279.5, 137.5], [279.5, 138.5], [278.5, 138.5], [278.5, 139.5], [277.5, 139.5]]}, {"id": "000264", "submitted_by": "carpinx", "name": "Boca Juniors and River Plate", "description": "The colors of the most popular football teams in Argentina, in the base of the Obelisco de Buenos Aires.", "website": "", "subreddit": "/r/Argentina", "center": [1126.5, 656.5], "path": [[1117.5, 653.5], [1117.5, 660.5], [1135.5, 660.5], [1135.5, 652.5], [1117.5, 653.5]]}, {"id": "000266", "submitted_by": "Turwaith", "name": "Switzerland and Liechtenstein", "description": "Swiss and Liechtenstein Flag, accompanied by some classics. The mountain Matterhorn, an Edelweiss flower, a chocolate bar which Switzerland is very famous for, a cow and an SBB train.", "website": "https://discord.gg/JS9eFKty", "subreddit": "", "center": [550.5, 697.5], "path": [[514.5, 682.5], [514.5, 716.5], [571.5, 716.5], [571.5, 698.5], [599.5, 698.5], [599.5, 682.5]]}, {"id": "000267", "submitted_by": "madebymvx", "name": "Yandhi", "description": "Unreleased Kanye West album because Jesus Christ did the laundry.", "website": "", "subreddit": "/r/westsubever", "center": [31.5, 814.5], "path": [[14.5, 799.5], [47.5, 799.5], [47.5, 829.5], [14.5, 829.5], [14.5, 799.5]]}, @@ -253,7 +246,6 @@ {"id": "000271", "submitted_by": "drc7777777", "name": "Gondola", "description": "A mutation of the Spurdo Sp\u00e4rde meme. He peacefully observes.", "website": "", "subreddit": "", "center": [742.5, 1708.5], "path": [[736.5, 1692.5], [743.5, 1694.5], [750.5, 1699.5], [755.5, 1705.5], [756.5, 1708.5], [757.5, 1713.5], [754.5, 1723.5], [749.5, 1729.5], [745.5, 1732.5], [737.5, 1733.5], [737.5, 1736.5], [742.5, 1735.5], [750.5, 1731.5], [758.5, 1724.5], [760.5, 1715.5], [760.5, 1707.5], [758.5, 1701.5], [753.5, 1695.5], [744.5, 1691.5], [740.5, 1691.5], [739.5, 1685.5], [732.5, 1685.5], [730.5, 1692.5], [725.5, 1695.5], [719.5, 1701.5], [716.5, 1704.5], [716.5, 1710.5], [716.5, 1721.5], [719.5, 1727.5], [729.5, 1734.5], [736.5, 1735.5], [736.5, 1733.5], [731.5, 1733.5], [723.5, 1728.5], [718.5, 1721.5], [716.5, 1715.5], [717.5, 1707.5], [721.5, 1700.5], [728.5, 1695.5], [737.5, 1693.5]]}, {"id": "000272", "submitted_by": "N0ZTRA", "name": "lgwMlem", "description": "A Twitch emote from streamer DumbDog. Mlem.", "website": "https://www.twitch.tv/dumbdog", "subreddit": "", "center": [1856.5, 1403.5], "path": [[1838.5, 1383.5], [1838.5, 1423.5], [1873.5, 1423.5], [1873.5, 1383.5], [1838.5, 1383.5]]}, {"id": "000274", "submitted_by": "zpjester", "name": "Starship / Super Heavy stack", "description": "SpaceX's upcoming (as of 4/2022) Starship / Super Heavy launch vehicle, under development for crewed missions to the Moon and Mars (also pictured)", "website": "", "subreddit": "/r/SpaceXPlace", "center": [817.5, 634.5], "path": [[811.5, 684.5], [816.5, 678.5], [816.5, 662.5], [820.5, 662.5], [819.5, 659.5], [816.5, 651.5], [792.5, 605.5], [834.5, 605.5], [834.5, 609.5], [826.5, 620.5], [826.5, 637.5], [827.5, 684.5]]}, -{"id": "000276", "submitted_by": "Key-Department-7826", "name": "Brad", "description": "The main character for the game Lisa: the Painful", "website": "https://store.steampowered.com/app/335670/LISA_The_Painful/", "subreddit": "/r/lisathepainfulrpg", "center": [0.5, 0.5], "path": []}, {"id": "000277", "submitted_by": "madebymvx", "name": "Nah Nah Nah", "description": "Cover of one of Kanye West's greatest songs.", "website": "", "subreddit": "/r/westsubever", "center": [31.5, 782.5], "path": [[14.5, 766.5], [47.5, 766.5], [47.5, 798.5], [14.5, 798.5], [14.5, 766.5]]}, {"id": "000279", "submitted_by": "N0ZTRA", "name": "lgwWoof", "description": "Twitch emote from streamer DumbDog. A barking dog, woof.", "website": "https://www.twitch.tv/dumbdog", "subreddit": "", "center": [1821.5, 1403.5], "path": [[1803.5, 1383.5], [1803.5, 1418.5], [1805.5, 1416.5], [1806.5, 1416.5], [1808.5, 1418.5], [1808.5, 1421.5], [1806.5, 1423.5], [1838.5, 1423.5], [1838.5, 1383.5], [1803.5, 1383.5]]}, {"id": "000280", "submitted_by": "ostensacken", "name": "Madagascan flag", "description": "The flag of Madagascar, an island nation famous for its endemic Lemurs.", "website": "", "subreddit": "", "center": [777.5, 1071.5], "path": [[774.5, 1069.5], [774.5, 1072.5], [780.5, 1072.5], [780.5, 1069.5]]}, @@ -261,13 +253,13 @@ {"id": "000285", "submitted_by": "ostensacken", "name": "Zimbabwean flag", "description": "The flag of Zimbabwe, a Southern African nation. This is one of two Zimbabwean flags on r/place, the other being to the north in what remains of the Green Latice.", "website": "", "subreddit": "", "center": [769.5, 1070.5], "path": [[766.5, 1068.5], [772.5, 1068.5], [772.5, 1072.5], [766.5, 1072.5]]}, {"id": "000286", "submitted_by": "zpjester", "name": "NASA / SpaceX / Rocket Lab Logos", "description": "Logos of 3 leading space agencies, along with Earth.", "website": "", "subreddit": "/r/SpaceXPlace", "center": [804.5, 588.5], "path": [[755.5, 581.5], [851.5, 581.5], [850.5, 596.5], [756.5, 595.5]]}, {"id": "000288", "submitted_by": "Virtual_Cheek_7633", "name": "ToriGate", "description": "Gensokyo radio's iconnthey stream Touhou music", "website": "https://gensokyoradio.net/", "subreddit": "/r/touhou", "center": [1654.5, 1517.5], "path": [[1649.5, 1513.5], [1650.5, 1513.5], [1650.5, 1512.5], [1658.5, 1512.5], [1658.5, 1513.5], [1659.5, 1513.5], [1659.5, 1521.5], [1658.5, 1521.5], [1658.5, 1522.5], [1650.5, 1522.5], [1650.5, 1521.5], [1649.5, 1521.5]]}, -{"id": "000290", "submitted_by": "LetteredSymbol", "name": "Sertle Chicken", "description": "the one chicken that survived. Originally, there were also ones on Quebec's flag.", "website": "twitch.tv/sertle", "subreddit": "", "center": [1095.5, 965.5], "path": [[1097.5, 966.5], [1097.5, 963.5], [1094.5, 963.5], [1093.5, 967.5], [1096.5, 967.5], [1096.5, 965.5], [1097.5, 964.5], [1097.5, 965.5], [1097.5, 965.5], [1095.5, 965.5], [1096.5, 965.5], [1096.5, 965.5], [1098.5, 965.5], [1092.5, 966.5], [1092.5, 965.5], [1092.5, 967.5], [1094.5, 966.5], [1092.5, 966.5], [1093.5, 966.5], [1091.5, 966.5], [1094.5, 965.5], [1094.5, 965.5], [1094.5, 965.5], [1095.5, 965.5], [1095.5, 964.5], [1097.5, 964.5], [1097.5, 963.5], [1095.5, 964.5], [1095.5, 964.5], [1096.5, 966.5], [1096.5, 965.5], [1096.5, 966.5], [1093.5, 964.5]]}, +{"id": "000290", "submitted_by": "LetteredSymbol", "name": "Sertle Chicken", "description": "the one chicken that survived. Originally, there were also ones on Quebec's flag.", "website": "https://twitch.tv/sertle", "subreddit": "", "center": [1095.5, 965.5], "path": [[1097.5, 966.5], [1097.5, 963.5], [1094.5, 963.5], [1093.5, 967.5], [1096.5, 967.5], [1096.5, 965.5], [1097.5, 964.5], [1097.5, 965.5], [1097.5, 965.5], [1095.5, 965.5], [1096.5, 965.5], [1096.5, 965.5], [1098.5, 965.5], [1092.5, 966.5], [1092.5, 965.5], [1092.5, 967.5], [1094.5, 966.5], [1092.5, 966.5], [1093.5, 966.5], [1091.5, 966.5], [1094.5, 965.5], [1094.5, 965.5], [1094.5, 965.5], [1095.5, 965.5], [1095.5, 964.5], [1097.5, 964.5], [1097.5, 963.5], [1095.5, 964.5], [1095.5, 964.5], [1096.5, 966.5], [1096.5, 965.5], [1096.5, 966.5], [1093.5, 964.5]]}, {"id": "000291", "submitted_by": "Tonda98", "name": "Girl's Last Tour", "description": "Manga/Anime: Characters Yuuri, Nuko and Chito on their Kettenkrad", "website": "", "subreddit": "/r/GirlsLastTour", "center": [1343.5, 1162.5], "path": [[1334.5, 1170.5], [1353.5, 1170.5], [1352.5, 1169.5], [1353.5, 1169.5], [1353.5, 1168.5], [1354.5, 1168.5], [1354.5, 1167.5], [1354.5, 1166.5], [1353.5, 1166.5], [1353.5, 1165.5], [1353.5, 1164.5], [1353.5, 1163.5], [1352.5, 1163.5], [1352.5, 1162.5], [1351.5, 1162.5], [1351.5, 1161.5], [1352.5, 1161.5], [1352.5, 1160.5], [1353.5, 1160.5], [1353.5, 1159.5], [1353.5, 1156.5], [1353.5, 1157.5], [1353.5, 1158.5], [1353.5, 1159.5], [1353.5, 1156.5], [1353.5, 1155.5], [1352.5, 1155.5], [1352.5, 1154.5], [1351.5, 1154.5], [1350.5, 1154.5], [1350.5, 1153.5], [1349.5, 1153.5], [1348.5, 1153.5], [1347.5, 1153.5], [1346.5, 1153.5], [1345.5, 1153.5], [1344.5, 1153.5], [1344.5, 1154.5], [1343.5, 1153.5], [1342.5, 1153.5], [1340.5, 1153.5], [1339.5, 1153.5], [1338.5, 1153.5], [1337.5, 1153.5], [1336.5, 1153.5], [1335.5, 1153.5], [1335.5, 1154.5], [1334.5, 1154.5], [1334.5, 1155.5], [1334.5, 1156.5], [1333.5, 1156.5], [1333.5, 1157.5], [1332.5, 1157.5], [1332.5, 1158.5], [1332.5, 1159.5], [1332.5, 1159.5], [1332.5, 1160.5], [1332.5, 1161.5], [1333.5, 1161.5], [1333.5, 1162.5], [1333.5, 1163.5], [1333.5, 1164.5], [1332.5, 1164.5], [1332.5, 1165.5], [1332.5, 1166.5], [1333.5, 1166.5], [1332.5, 1167.5], [1332.5, 1168.5], [1332.5, 1169.5], [1333.5, 1169.5], [1333.5, 1170.5]]}, {"id": "000292", "submitted_by": "carpinx", "name": "Juggernaut", "description": "A Dota 2 hero.", "website": "", "subreddit": "/r/DotA2", "center": [14.5, 190.5], "path": [[1.5, 178.5], [27.5, 178.5], [27.5, 202.5], [1.5, 201.5]]}, {"id": "000293", "submitted_by": "ostensacken", "name": "Ghanaian flag", "description": "The flag of Ghana, a West African nation with a population of 31 million.nPreviously on the Nigerian flag to the south, it was moved here after being removed due to their inability to find a space for a larger flag.", "website": "", "subreddit": "", "center": [762.5, 1070.5], "path": [[759.5, 1068.5], [759.5, 1072.5], [764.5, 1072.5], [764.5, 1068.5]]}, {"id": "000294", "submitted_by": "Flamberge3000", "name": "Doki Doki Literature Club!", "description": "Doki Doki Literature Club! is a 2017 freeware visual novel developed by American independent game studio Team Salvato for Microsoft Windows, macOS, and Linux. You play as a highschool student who must woo the girls of the literature club... through poetry!", "website": "https://ddlc.moe/", "subreddit": "/r/DDLC", "center": [1575.5, 1192.5], "path": [[1550.5, 1184.5], [1550.5, 1200.5], [1600.5, 1200.5], [1600.5, 1184.5]]}, {"id": "000295", "submitted_by": "zpjester", "name": "r/spaceXPlace and affiliates mural", "description": "SpaceX and related interests. Features Starship S20, Starman / Roadster, the Hubble Space Telescope, Starhopper, and the logos for Tesla and LabPadre. Also features shoutouts to RGV Aerial Photography, Tim Dodd (The Everyday Astronaut), NasaSpaceflightLive, and Kerbal Space Program", "website": "", "subreddit": "/r/SpaceXPlace", "center": [906.5, 1576.5], "path": [[941.5, 1638.5], [941.5, 1631.5], [900.5, 1631.5], [905.5, 1620.5], [930.5, 1620.5], [930.5, 1610.5], [916.5, 1610.5], [916.5, 1606.5], [933.5, 1599.5], [934.5, 1592.5], [943.5, 1591.5], [949.5, 1585.5], [949.5, 1556.5], [954.5, 1551.5], [955.5, 1543.5], [952.5, 1535.5], [936.5, 1528.5], [935.5, 1524.5], [931.5, 1524.5], [930.5, 1528.5], [926.5, 1529.5], [919.5, 1522.5], [915.5, 1519.5], [901.5, 1519.5], [902.5, 1524.5], [894.5, 1522.5], [882.5, 1539.5], [881.5, 1546.5], [887.5, 1547.5], [887.5, 1580.5], [845.5, 1580.5], [846.5, 1612.5], [890.5, 1611.5], [894.5, 1637.5]]}, -{"id": "000297", "submitted_by": "MarUlberg", "name": "Kirby", "description": "YouTube streamer Ludwig used his chat to overtake the Kirby built by russian streamer bratishkinoff.nThe art was overall loved by all communities (including bratishkinoff) and saw minimal sabotage throughout the remaining time.", "website": "https://www.youtube.com/c/Ludwigahgren", "subreddit": "/r/LudwigAhgren", "center": [1845.5, 581.5], "path": [[1800.5, 539.5], [1890.5, 539.5], [1890.5, 623.5], [1800.5, 623.5]]}, +{"id": "000297", "submitted_by": "MarUlberg", "name": "Kirby", "description": "YouTube streamer Ludwig used his chat to overtake the Kirby built by russian streamer bratishkinoff. The art was overall loved by all communities (including bratishkinoff) and saw minimal sabotage throughout the remaining time.", "website": "https://www.youtube.com/c/Ludwigahgren", "subreddit": "/r/LudwigAhgren", "center": [1845.5, 581.5], "path": [[1800.5, 539.5], [1890.5, 539.5], [1890.5, 623.5], [1800.5, 623.5]]}, {"id": "000299", "submitted_by": "SadChiruno", "name": ":Marisad:", "description": "Marisa Kirisame is a character from Touhou Project. And in the fan made anime \u201cMemories of Phantasm\u201d she is seen crying during one scene. Her funny expression quickly became a popular meme inside the Touhou fandom, who dubbed her \u201cMarisad\u201d (Marisa+Sad). Additionally the emote of Marisa crying spreaded across many Touhou related discord servers, further adding to its popularity.", "website": "", "subreddit": "/r/marisad", "center": [1797.5, 881.5], "path": [[1785.5, 870.5], [1786.5, 870.5], [1809.5, 870.5], [1809.5, 893.5], [1791.5, 893.5], [1785.5, 887.5]]}, {"id": "000300", "submitted_by": "ObliviousFail", "name": "New Zealand", "description": "r/NewZealand's place featuring the Laser Kiwi, Kakapo, Tino Rangatiratanga, Kiwi fruit, ANZAC Poppies, and a map of New Zealand", "website": "", "subreddit": "/r/newzealand", "center": [1546.5, 726.5], "path": [[1515.5, 689.5], [1515.5, 711.5], [1539.5, 711.5], [1539.5, 727.5], [1515.5, 727.5], [1515.5, 746.5], [1550.5, 747.5], [1551.5, 767.5], [1577.5, 767.5], [1576.5, 730.5], [1554.5, 729.5], [1554.5, 714.5], [1558.5, 711.5], [1562.5, 711.5], [1561.5, 689.5], [1515.5, 689.5]]}, {"id": "000301", "submitted_by": "MrEduxator", "name": "Sakamata Chloe's Mask", "description": "A mask worn by Sakamata Chloe, a member of holoX, or hololive 6th Gen.", "website": "https://www.youtube.com/channel/UCIBY1ollUsauvVi4hW4cumw", "subreddit": "/r/hololive", "center": [1393.5, 1067.5], "path": [[1387.5, 1064.5], [1388.5, 1063.5], [1398.5, 1063.5], [1399.5, 1064.5], [1399.5, 1067.5], [1398.5, 1068.5], [1397.5, 1069.5], [1397.5, 1070.5], [1397.5, 1071.5], [1391.5, 1071.5], [1391.5, 1070.5], [1389.5, 1070.5], [1388.5, 1070.5], [1388.5, 1069.5], [1387.5, 1069.5], [1387.5, 1068.5], [1386.5, 1068.5], [1386.5, 1064.5], [1387.5, 1064.5], [1388.5, 1064.5]]}, @@ -275,7 +267,7 @@ {"id": "000304", "submitted_by": "OEAAS", "name": "Kaaba", "description": "The kaaba.", "website": "https://discord.gg/Tappelino", "subreddit": "/r/KanelbollensHjemland", "center": [789.5, 129.5], "path": [[779.5, 120.5], [779.5, 138.5], [799.5, 138.5], [799.5, 120.5]]}, {"id": "000305", "submitted_by": "_ScrapLord_", "name": "Zero", "description": "Art of the protagonist of indie action game Katana:ZERO", "website": "https://katanazero.com/", "subreddit": "/r/KatanaZero", "center": [1150.5, 1874.5], "path": [[1136.5, 1857.5], [1164.5, 1857.5], [1164.5, 1871.5], [1166.5, 1871.5], [1166.5, 1885.5], [1166.5, 1883.5], [1165.5, 1883.5], [1165.5, 1883.5], [1163.5, 1881.5], [1159.5, 1885.5], [1159.5, 1890.5], [1159.5, 1893.5], [1136.5, 1893.5], [1136.5, 1857.5]]}, {"id": "000306", "submitted_by": "Smirkydevil52", "name": "The Stormlight Archvive/Malazan", "description": "The Stormlight Archive and Malazan are both fantasy book series. The two communities worked together, becoming what is now the Science Fiction-Fantasy Alliance. Features characters from both series. n", "website": "", "subreddit": "/r/Stormlight_Archive, /r/Malazan, /r/SFFA", "center": [1849.5, 910.5], "path": [[1830.5, 870.5], [1868.5, 870.5], [1868.5, 949.5], [1830.5, 949.5], [1830.5, 913.5]]}, -{"id": "000308", "submitted_by": "Virtual_Cheek_7633", "name": "Komeiji Koishi", "description": "She is a satori A mind reading yokai from Touhou Project she also loves her hat", "website": "nhentai.net/g/323464", "subreddit": "/r/touhou", "center": [1638.5, 1501.5], "path": [[1621.5, 1484.5], [1621.5, 1517.5], [1654.5, 1517.5], [1654.5, 1484.5]]}, +{"id": "000308", "submitted_by": "Virtual_Cheek_7633", "name": "Komeiji Koishi", "description": "She is a satori A mind reading yokai from Touhou Project she also loves her hat", "website": "https://nhentai.net/g/323464", "subreddit": "/r/touhou", "center": [1638.5, 1501.5], "path": [[1621.5, 1484.5], [1621.5, 1517.5], [1654.5, 1517.5], [1654.5, 1484.5]]}, {"id": "000309", "submitted_by": "Historical_Bus_1135", "name": "Technoblade", "description": "A Minecraft youtuber and is part of the dsmp", "website": "", "subreddit": "/r/Technoblade", "center": [222.5, 1080.5], "path": [[189.5, 1039.5], [189.5, 1121.5], [255.5, 1121.5], [254.5, 1040.5]]}, {"id": "000310", "submitted_by": "carpinx", "name": "Lionel Messi and Cristiano Ronaldo", "description": "A picture of Messi and Ronaldo in representation of the brotherhood between Portuguese and Argentinian communities.", "website": "", "subreddit": "", "center": [1531.5, 1868.5], "path": [[1532.5, 1831.5], [1536.5, 1831.5], [1534.5, 1824.5], [1537.5, 1821.5], [1543.5, 1823.5], [1542.5, 1831.5], [1548.5, 1835.5], [1555.5, 1845.5], [1559.5, 1857.5], [1558.5, 1869.5], [1554.5, 1871.5], [1551.5, 1868.5], [1552.5, 1860.5], [1551.5, 1854.5], [1549.5, 1857.5], [1550.5, 1874.5], [1550.5, 1884.5], [1548.5, 1891.5], [1547.5, 1904.5], [1546.5, 1909.5], [1541.5, 1911.5], [1533.5, 1910.5], [1520.5, 1912.5], [1514.5, 1912.5], [1512.5, 1901.5], [1510.5, 1884.5], [1511.5, 1871.5], [1511.5, 1868.5], [1505.5, 1863.5], [1503.5, 1856.5], [1504.5, 1850.5], [1510.5, 1839.5], [1515.5, 1836.5], [1520.5, 1830.5], [1522.5, 1827.5], [1528.5, 1825.5], [1531.5, 1830.5]]}, {"id": "000311", "submitted_by": "mariogeorge59", "name": "Flag Of Lebanon", "description": "This is the current flag of Lebanon", "website": "", "subreddit": "/r/lebanon", "center": [15.5, 446.5], "path": [[0.5, 429.5], [35.5, 429.5], [35.5, 463.5], [0.5, 463.5], [-10.5, 447.5], [0.5, 429.5], [0.5, 429.5]]}, @@ -284,51 +276,43 @@ {"id": "000317", "submitted_by": "ohshitwrongaccount", "name": "Avali", "description": "A fictional species of feathered raptors created by RyuujinZERO and popularized by a mod for the game Starbound. The art is a sprite from the mod.", "website": "https://community.playstarbound.com/resources/avali-triage.2852/triage.2852/", "subreddit": "/r/avali", "center": [1462.5, 1281.5], "path": [[1477.5, 1260.5], [1477.5, 1302.5], [1446.5, 1302.5], [1446.5, 1260.5]]}, {"id": "000318", "submitted_by": "carpinx", "name": "World Cup", "description": "A representation of the World Cup, between the Argentinian and Brazilian flags.", "website": "", "subreddit": "", "center": [1033.5, 613.5], "path": [[1023.5, 634.5], [1029.5, 639.5], [1039.5, 638.5], [1043.5, 633.5], [1040.5, 628.5], [1039.5, 619.5], [1040.5, 612.5], [1043.5, 606.5], [1041.5, 597.5], [1036.5, 590.5], [1030.5, 589.5], [1024.5, 593.5], [1022.5, 600.5], [1022.5, 607.5], [1024.5, 610.5], [1025.5, 614.5], [1028.5, 617.5], [1028.5, 624.5], [1025.5, 628.5], [1024.5, 634.5]]}, {"id": "000319", "submitted_by": "ostensacken", "name": "Lesotho flag", "description": "A small flag of Lesotho, a land-locked enclave nation of South Africa.", "website": "", "subreddit": "", "center": [739.5, 1070.5], "path": [[736.5, 1068.5], [736.5, 1072.5], [742.5, 1072.5], [742.5, 1068.5]]}, -{"id": "000320", "submitted_by": "HyBerTop_1", "name": "osu!hungary", "description": "An insanely small, but an insanely dedicated osu! discord group.", "website": "https://discordapp.com/invite/rFYD6Pq", "subreddit": "", "center": [719.5, 1660.5], "path": [[713.5, 1657.5], [719.5, 1654.5], [726.5, 1658.5], [726.5, 1664.5], [713.5, 1664.5]]}, +{"id": "000320", "submitted_by": "HyBerTop_1", "name": "osu!hungary", "description": "The Hungarian osu! community. An insanely dedicated osu! group. With the help from the osu! Storyboarder Banquet community, and after the negotiations with the Star Wars community, our logo and our community efforts will live forever and ever.", "website": "https://discordapp.com/invite/rFYD6Pq", "subreddit": "/r/osugame", "center": [719.5, 1660.5], "path": [[713.5, 1657.5], [719.5, 1654.5], [726.5, 1658.5], [726.5, 1664.5], [713.5, 1664.5]]}, {"id": "000321", "submitted_by": "flippin_egg", "name": "Serball", "description": "A parody of the character 'Serval' from the anime 'Kemono Friends'. She is a playable character in the Roblox game 'Become Fumo'", "website": "", "subreddit": "", "center": [612.5, 1576.5], "path": [[607.5, 1569.5], [603.5, 1574.5], [604.5, 1581.5], [608.5, 1583.5], [617.5, 1583.5], [620.5, 1580.5], [620.5, 1578.5], [620.5, 1574.5], [620.5, 1572.5], [617.5, 1571.5], [611.5, 1569.5]]}, {"id": "000322", "submitted_by": "Gourmet_Salad", "name": "Saudi Arabia", "description": "featuring the saudi emblem and some Arabic coffee", "website": "", "subreddit": "/r/saudiarabia", "center": [1618.5, 1059.5], "path": [[1591.5, 1044.5], [1645.5, 1044.5], [1645.5, 1074.5], [1591.5, 1074.5], [1591.5, 1044.5]]}, {"id": "000323", "submitted_by": "MrEduxator", "name": "hat mouse", "description": "\u201cHi. Me sell hats. Okay, poke? Come to old old old haus, poke. Bring coines. -hat mouse\u201d", "website": "https://www.stardewvalley.net/", "subreddit": "/r/StardewValley", "center": [1738.5, 1025.5], "path": [[1708.5, 1008.5], [1767.5, 1008.5], [1767.5, 1043.5], [1709.5, 1042.5]]}, {"id": "000325", "submitted_by": "zpjester", "name": "Starman / Tesla Roadster", "description": "Elon Musk's Tesla Roaster and its sole passenger, Starman (not to scale). Currently orbiting the sun near the orbits of Earth and Mars.", "website": "https://spacein3d.com/where-is-starman-live-tracker/", "subreddit": "/r/spacexplace", "center": [918.5, 1580.5], "path": [[908.5, 1608.5], [911.5, 1609.5], [932.5, 1599.5], [933.5, 1589.5], [930.5, 1587.5], [931.5, 1572.5], [929.5, 1560.5], [921.5, 1554.5], [912.5, 1554.5], [903.5, 1561.5], [904.5, 1584.5], [910.5, 1594.5], [910.5, 1604.5], [908.5, 1605.5], [905.5, 1605.5]]}, -{"id": "000327", "submitted_by": "ostensacken", "name": "Swazi flag", "description": "A flag for the small nation of eSwatini, an enclave of South Africa.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "000328", "submitted_by": "carpinx", "name": "Capybara and Hornero", "description": "The Capybara (in Argentina called Carpincho) is a symbolic animal in the region. The Hornero is the National bird of Argentina.", "website": "", "subreddit": "/r/Argentina", "center": [940.5, 670.5], "path": [[919.5, 677.5], [937.5, 678.5], [956.5, 678.5], [960.5, 677.5], [963.5, 661.5], [954.5, 662.5], [936.5, 662.5], [930.5, 663.5], [923.5, 664.5], [917.5, 668.5], [916.5, 672.5], [919.5, 678.5]]}, {"id": "000330", "submitted_by": "zpjester", "name": "Hubble Space Telescope", "description": "NASA's HST, launched in 1990 aboard the Space Shuttle Discovery.", "website": "https://www.nasa.gov/mission_pages/hubble/main/index.html", "subreddit": "/r/spaceXPlace", "center": [935.5, 1540.5], "path": [[919.5, 1535.5], [918.5, 1534.5], [913.5, 1528.5], [913.5, 1526.5], [916.5, 1522.5], [919.5, 1522.5], [924.5, 1527.5], [925.5, 1529.5], [933.5, 1533.5], [931.5, 1528.5], [931.5, 1526.5], [934.5, 1525.5], [935.5, 1526.5], [935.5, 1533.5], [938.5, 1530.5], [953.5, 1537.5], [950.5, 1540.5], [954.5, 1543.5], [955.5, 1548.5], [952.5, 1552.5], [949.5, 1554.5], [946.5, 1554.5], [941.5, 1551.5], [936.5, 1555.5], [921.5, 1548.5], [926.5, 1543.5], [921.5, 1539.5], [920.5, 1534.5]]}, -{"id": "000331", "submitted_by": "ostensacken", "name": "Mauritian Flag", "description": "A small Mauritian flag. Mauritius is an Indian Ocean island nation.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "000332", "submitted_by": "BeautifulStandard849", "name": "Stranger things", "description": "After loosing our full size logo we made a smaller logo here with the release date of season 4 of stranger things and a small cute eggo coz they are the best", "website": "", "subreddit": "/r/StrangerThings", "center": [0.5, 0.5], "path": []}, {"id": "000333", "submitted_by": "Virtual_Cheek_7633", "name": "Sakuya Izayoi", "description": "The perfect and elegant maid from Touhou project", "website": "https://youtu.be/S9ZT0HXjTBs", "subreddit": "/r/touhou", "center": [1671.5, 1468.5], "path": [[1654.5, 1451.5], [1654.5, 1484.5], [1687.5, 1484.5], [1687.5, 1451.5]]}, {"id": "000334", "submitted_by": "theguywith1025milk", "name": "BFDI!", "description": "The BFDI section made by Battle For r/place, with the characters Firey, Donut, Four, X, Cloudy, and the announcers.", "website": "", "subreddit": "/r/BattleForDreamIsland", "center": [494.5, 1077.5], "path": [[477.5, 1062.5], [477.5, 1062.5], [511.5, 1063.5], [510.5, 1092.5], [477.5, 1091.5], [477.5, 1089.5], [477.5, 1089.5], [477.5, 1089.5], [477.5, 1081.5], [477.5, 1081.5], [477.5, 1081.5], [477.5, 1081.5], [477.5, 1081.5], [477.5, 1084.5], [477.5, 1084.5], [477.5, 1084.5], [477.5, 1085.5], [477.5, 1085.5], [477.5, 1085.5], [477.5, 1085.5], [477.5, 1085.5], [477.5, 1085.5], [477.5, 1077.5], [477.5, 1074.5], [477.5, 1074.5], [478.5, 1072.5], [477.5, 1072.5], [477.5, 1072.5], [477.5, 1072.5]]}, -{"id": "000336", "submitted_by": "TrashDanQuack", "name": "Ducks", "description": "Pixel ducks holding hands", "website": "", "subreddit": "/r/place_ducks", "center": [343.5, 911.5], "path": [[295.5, 916.5], [295.5, 916.5], [402.5, 915.5], [399.5, 908.5], [293.5, 905.5], [293.5, 907.5]]}, +{"id": "000336", "submitted_by": "babyhuehnchen", "name": "duck chain", "description": "a chain of ducks holding hands, originally created by r/duck_place, the following communities helped out by adding hats and a marshmallow on a stick to sit on r/croatia, r/serbia, r/outerwilds/", "website": "", "subreddit": "/r/duck_place, /r/serbia, /r/croatia, /r/outerwilds", "center": [339.5, 909.5], "path": [[293.5, 901.5], [293.5, 907.5], [291.5, 907.5], [292.5, 907.5], [292.5, 912.5], [293.5, 912.5], [293.5, 916.5], [294.5, 916.5], [294.5, 917.5], [295.5, 917.5], [295.5, 918.5], [296.5, 918.5], [297.5, 918.5], [297.5, 917.5], [297.5, 917.5], [368.5, 917.5], [368.5, 918.5], [368.5, 919.5], [389.5, 919.5], [389.5, 920.5], [394.5, 920.5], [394.5, 919.5], [395.5, 919.5], [395.5, 918.5], [396.5, 918.5], [396.5, 917.5], [404.5, 917.5], [404.5, 909.5], [400.5, 909.5], [400.5, 906.5], [393.5, 906.5], [393.5, 909.5], [389.5, 909.5], [389.5, 906.5], [382.5, 906.5], [382.5, 909.5], [378.5, 909.5], [378.5, 906.5], [371.5, 906.5], [371.5, 909.5], [367.5, 909.5], [367.5, 906.5], [361.5, 906.5], [360.5, 906.5], [360.5, 909.5], [357.5, 909.5], [357.5, 905.5], [353.5, 905.5], [353.5, 906.5], [353.5, 906.5], [352.5, 906.5], [352.5, 905.5], [348.5, 905.5], [348.5, 909.5], [346.5, 909.5], [346.5, 905.5], [343.5, 905.5], [342.5, 905.5], [342.5, 906.5], [341.5, 906.5], [341.5, 905.5], [338.5, 905.5], [337.5, 905.5], [337.5, 909.5], [335.5, 909.5], [335.5, 905.5], [331.5, 905.5], [331.5, 906.5], [330.5, 906.5], [330.5, 905.5], [327.5, 905.5], [326.5, 905.5], [326.5, 909.5], [324.5, 909.5], [324.5, 905.5], [321.5, 905.5], [320.5, 905.5], [320.5, 906.5], [319.5, 906.5], [319.5, 905.5], [315.5, 905.5], [315.5, 909.5], [313.5, 909.5], [313.5, 902.5], [309.5, 902.5], [309.5, 903.5], [308.5, 903.5], [308.5, 902.5], [304.5, 902.5], [304.5, 909.5], [302.5, 909.5], [302.5, 900.5], [299.5, 899.5], [298.5, 899.5], [298.5, 898.5], [297.5, 898.5], [297.5, 896.5], [295.5, 896.5], [295.5, 895.5], [294.5, 895.5], [294.5, 894.5], [293.5, 894.5], [293.5, 893.5], [291.5, 893.5], [291.5, 892.5], [289.5, 892.5], [289.5, 891.5], [284.5, 891.5], [284.5, 889.5], [271.5, 889.5], [271.5, 896.5], [290.5, 896.5], [290.5, 897.5], [291.5, 897.5], [291.5, 898.5], [293.5, 898.5], [293.5, 899.5], [294.5, 899.5], [294.5, 900.5], [293.5, 900.5], [293.5, 901.5]]}, {"id": "000337", "submitted_by": "carpinx", "name": "Argentinian flag", "description": "Argentinian flag with Tango dancers, Fernet con Coca, Mate, Obelisco, Mafalda and San Mart\u00edn crossing the Andes.", "website": "", "subreddit": "/r/Argentina", "center": [1097.5, 642.5], "path": [[905.5, 619.5], [1290.5, 620.5], [1290.5, 665.5], [905.5, 665.5], [905.5, 620.5]]}, {"id": "000339", "submitted_by": "Bazo_05", "name": "Radiance", "description": "Radiance, the final boss of Hollow Knight and our final project. A project by the Hollow Knight and Elden Ring Community", "website": "", "subreddit": "/r/hkplace", "center": [294.5, 1392.5], "path": [[246.5, 1339.5], [341.5, 1339.5], [341.5, 1444.5], [246.5, 1444.5]]}, {"id": "000340", "submitted_by": "MrEduxator", "name": "Etika Memorial", "description": "A Memorial dedicated to iconic YouTube streamer Desmond Daniel Amofah, or more commonly known as Etika. JoyCon Boyz for life! The following website will lead you to a library of his content.", "website": "https://www.youtube.com/c/LibraryofEtika", "subreddit": "", "center": [1625.5, 164.5], "path": [[1578.5, 165.5], [1616.5, 165.5], [1616.5, 148.5], [1617.5, 147.5], [1659.5, 147.5], [1659.5, 176.5], [1588.5, 174.5], [1578.5, 174.5], [1569.5, 177.5], [1568.5, 165.5]]}, {"id": "000342", "submitted_by": "ziemnakiscool", "name": "The Azerbaijan flag", "description": "The azerbaijan flag formed here. It was originally a little bit more left, but its moon and star have been moved to the middle.", "website": "", "subreddit": "/r/placeazerbaijan", "center": [948.5, 182.5], "path": [[1071.5, 198.5], [1071.5, 197.5], [1071.5, 198.5], [1072.5, 198.5], [1071.5, 166.5], [825.5, 166.5], [821.5, 166.5], [822.5, 168.5], [823.5, 170.5], [821.5, 171.5], [822.5, 173.5], [821.5, 174.5], [825.5, 176.5], [821.5, 176.5], [825.5, 179.5], [824.5, 181.5], [823.5, 181.5], [821.5, 179.5], [822.5, 181.5], [824.5, 183.5], [823.5, 184.5], [824.5, 185.5], [825.5, 186.5], [823.5, 187.5], [822.5, 187.5], [826.5, 189.5], [826.5, 196.5], [825.5, 198.5], [825.5, 191.5], [825.5, 191.5], [826.5, 189.5], [825.5, 197.5]]}, -{"id": "000343", "submitted_by": "ostensacken", "name": "Nigerian Flag", "description": "The Nigerian Flag. Created by r/Nigeria, and with a blue butterfly as a collaboration with r/lifeisstrange.nPrior to the creation of this flag, r/Nigeria had multiple small flag-hearts but no definitive flag. This location was chosen after The Void damaged a previous flag location towards the south.", "website": "", "subreddit": "/r/nigeria", "center": [0.5, 0.5], "path": []}, -{"id": "000344", "submitted_by": "zpjester", "name": "Mars", "description": "Larger version of Mars", "website": "", "subreddit": "/r/spaceXPlace", "center": [0.5, 0.5], "path": []}, {"id": "000345", "submitted_by": "carpinx", "name": "Obelisco de Buenos Aires", "description": "The Obelisco de Buenos Aires (Obelisk of Buenos Aires) is a national historic monument and icon of Buenos Aires.", "website": "", "subreddit": "/r/Argentina", "center": [1126.5, 641.5], "path": [[1124.5, 655.5], [1129.5, 655.5], [1127.5, 624.5], [1124.5, 624.5], [1124.5, 655.5]]}, {"id": "000346", "submitted_by": "Virtual_Cheek_7633", "name": "Flandre Scarlet", "description": "A character from Touhou 6 Embodiment of Scarlet Devil", "website": "https://youtu.be/iSNfKxfhMnc", "subreddit": "/r/touhou", "center": [1638.5, 1468.5], "path": [[1621.5, 1451.5], [1654.5, 1451.5], [1654.5, 1484.5], [1621.5, 1484.5]]}, {"id": "000347", "submitted_by": "carpinx", "name": "San Mart\u00edn crossing the Andes", "description": "The Crossing of the Andes (Spanish: Cruce de los Andes) was one of the most important feats in the Argentine and Chilean wars of independence, in which a combined army of Argentine soldiers and Chilean exiles invaded Chile leading to Chile's liberation from Spanish rule. The crossing of the Andes was a major step in the strategy devised by Jos\u00e9 de San Mart\u00edn to defeat the royalist forces at their stronghold of Lima, Viceroyalty of Per\u00fa, and secure the Spanish American independence movements.", "website": "", "subreddit": "/r/Argentina", "center": [1250.5, 652.5], "path": [[1200.5, 664.5], [1199.5, 658.5], [1196.5, 656.5], [1199.5, 650.5], [1207.5, 645.5], [1213.5, 648.5], [1212.5, 654.5], [1216.5, 657.5], [1225.5, 648.5], [1225.5, 646.5], [1229.5, 645.5], [1230.5, 653.5], [1232.5, 650.5], [1233.5, 644.5], [1238.5, 644.5], [1238.5, 651.5], [1242.5, 646.5], [1242.5, 642.5], [1247.5, 642.5], [1246.5, 647.5], [1252.5, 640.5], [1252.5, 635.5], [1258.5, 636.5], [1257.5, 641.5], [1265.5, 634.5], [1266.5, 630.5], [1271.5, 632.5], [1269.5, 636.5], [1274.5, 641.5], [1280.5, 636.5], [1280.5, 632.5], [1286.5, 632.5], [1283.5, 636.5], [1288.5, 641.5], [1290.5, 663.5], [1202.5, 664.5]]}, {"id": "000349", "submitted_by": "SoakingBearInTheMoss", "name": "Daimyo", "description": "Beloved dog of fabled paladin and game designer Artix von Krieger. Created by fans of Artix Entertainment games such as; /r/AQW, /r/AQ3D, /r/AdventureQuest and /r/DragonFable", "website": "https://twitter.com/Daimyo_AE", "subreddit": "/r/AQW", "center": [734.5, 1662.5], "path": [[727.5, 1656.5], [729.5, 1658.5], [730.5, 1658.5], [731.5, 1657.5], [732.5, 1656.5], [733.5, 1656.5], [733.5, 1658.5], [734.5, 1658.5], [735.5, 1657.5], [736.5, 1657.5], [737.5, 1656.5], [740.5, 1656.5], [742.5, 1658.5], [742.5, 1661.5], [741.5, 1661.5], [739.5, 1663.5], [739.5, 1666.5], [738.5, 1668.5], [737.5, 1667.5], [736.5, 1667.5], [735.5, 1668.5], [734.5, 1667.5], [733.5, 1667.5], [732.5, 1668.5], [731.5, 1667.5], [730.5, 1668.5], [729.5, 1667.5], [729.5, 1666.5], [728.5, 1665.5], [727.5, 1665.5], [727.5, 1656.5]]}, {"id": "000350", "submitted_by": "Y_Martinaise", "name": "/r/SouthAfrica", "description": "Mural of the South African national flag displayed horizontally, featuring a mural of Nelson Mandela, the country's first democratically-elected president following the end of apartheid, and a springbok, a species of antelope which is the national animal of South Africa", "website": "", "subreddit": "/r/SouthAfrica", "center": [751.5, 1011.5], "path": [[720.5, 955.5], [720.5, 1066.5], [781.5, 1067.5], [781.5, 955.5], [781.5, 954.5], [781.5, 954.5]]}, {"id": "000352", "submitted_by": "palapapa0201", "name": "Nitori", "description": "Nitori from Touhou Project", "website": "", "subreddit": "/r/touhou", "center": [485.5, 535.5], "path": [[469.5, 528.5], [501.5, 529.5], [501.5, 541.5], [469.5, 541.5], [469.5, 528.5]]}, -{"id": "000354", "submitted_by": "Youtube_Games123", "name": "The Nordic Union", "description": "A collection of flags, although most are not actually Nordic, they're just in the North.", "website": "", "subreddit": "/r/place_nordicunion", "center": [501.5, 128.5], "path": [[537.5, 294.5], [437.5, 294.5], [437.5, 167.5], [344.5, 167.5], [344.5, 158.5], [275.5, 158.5], [275.5, 134.5], [266.5, 126.5], [235.5, 126.5], [235.5, 100.5], [231.5, 100.5], [207.5, 100.5], [207.5, 94.5], [215.5, 94.5], [215.5, 35.5], [657.5, 35.5], [657.5, 70.5], [840.5, 70.5], [840.5, 67.5], [885.5, 67.5], [885.5, 69.5], [892.5, 69.5], [892.5, 88.5], [798.5, 88.5], [798.5, 119.5], [778.5, 119.5], [778.5, 137.5], [633.5, 136.5], [633.5, 201.5], [633.5, 201.5], [593.5, 201.5], [593.5, 283.5], [537.5, 283.5], [537.5, 294.5]]}, +{"id": "000354", "submitted_by": "Youtube_Games123", "name": "The Nordic Union", "description": "A collection of countries in northern Europe.", "website": "", "subreddit": "/r/place_nordicunion", "center": [501.5, 128.5], "path": [[537.5, 294.5], [437.5, 294.5], [437.5, 167.5], [344.5, 167.5], [344.5, 158.5], [275.5, 158.5], [275.5, 134.5], [266.5, 126.5], [235.5, 126.5], [235.5, 100.5], [231.5, 100.5], [207.5, 100.5], [207.5, 94.5], [215.5, 94.5], [215.5, 35.5], [657.5, 35.5], [657.5, 70.5], [840.5, 70.5], [840.5, 67.5], [885.5, 67.5], [885.5, 69.5], [892.5, 69.5], [892.5, 88.5], [798.5, 88.5], [798.5, 119.5], [778.5, 119.5], [778.5, 137.5], [633.5, 136.5], [633.5, 201.5], [633.5, 201.5], [593.5, 201.5], [593.5, 283.5], [537.5, 283.5], [537.5, 294.5]]}, {"id": "000355", "submitted_by": "Nincadalop", "name": "Update TF2", "description": "A collaborative effort by the two communities of two games that share initials, game engine, and bot crisis. TF2 stands for Team Fortress 2 and Titanfall 2, two games which desperately need a security update. Subreddits: r/tf2 and r/titanfalln", "website": "", "subreddit": "", "center": [815.5, 53.5], "path": [[790.5, 35.5], [840.5, 35.5], [840.5, 70.5], [790.5, 70.5]]}, {"id": "000356", "submitted_by": "ziemnakiscool", "name": "pxls.space", "description": "This community is named pxls.space and got helped mostly by osu!. They moved from a italian flag to this location to prevent being crushed.", "website": "", "subreddit": "", "center": [807.5, 723.5], "path": [[776.5, 733.5], [777.5, 719.5], [784.5, 718.5], [785.5, 717.5], [778.5, 716.5], [778.5, 714.5], [783.5, 713.5], [787.5, 708.5], [790.5, 708.5], [792.5, 712.5], [790.5, 718.5], [794.5, 719.5], [793.5, 714.5], [798.5, 713.5], [804.5, 714.5], [802.5, 718.5], [804.5, 718.5], [805.5, 712.5], [802.5, 708.5], [806.5, 709.5], [808.5, 711.5], [809.5, 717.5], [811.5, 718.5], [810.5, 714.5], [813.5, 713.5], [816.5, 714.5], [817.5, 718.5], [820.5, 719.5], [818.5, 715.5], [821.5, 712.5], [822.5, 710.5], [825.5, 713.5], [825.5, 717.5], [823.5, 719.5], [825.5, 711.5], [826.5, 708.5], [828.5, 708.5], [828.5, 715.5], [828.5, 719.5], [829.5, 710.5], [832.5, 707.5], [835.5, 711.5], [834.5, 717.5], [835.5, 718.5], [836.5, 729.5], [836.5, 734.5], [777.5, 735.5]]}, -{"id": "000357", "submitted_by": "Techtype_Apple", "name": "The Retro Apple Logo", "description": "This was made by the Retro Apple Community in alliance with r/GreenLattice. More specifically we're from the Action Retro Discord Server. Link is below.", "website": "https://discord.com/invite/q4uJ5eC", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "000358", "submitted_by": "Narnall", "name": "Katawa Shoujo", "description": "This art features Hanako Ikezawa from the visual novel Katawa Shoujo", "website": "", "subreddit": "/r/katawashoujo", "center": [1575.5, 1178.5], "path": [[1550.5, 1172.5], [1550.5, 1172.5], [1600.5, 1172.5], [1600.5, 1184.5], [1550.5, 1184.5]]}, {"id": "000359", "submitted_by": "carpinx", "name": "Mafalda", "description": "Mafalda is an Argentinian comic strip written and drawn by cartoonist Quino.", "website": "", "subreddit": "/r/Argentina", "center": [1179.5, 648.5], "path": [[1174.5, 664.5], [1174.5, 658.5], [1170.5, 657.5], [1168.5, 653.5], [1170.5, 650.5], [1173.5, 650.5], [1168.5, 648.5], [1167.5, 644.5], [1169.5, 638.5], [1172.5, 636.5], [1172.5, 632.5], [1186.5, 632.5], [1186.5, 637.5], [1188.5, 638.5], [1191.5, 643.5], [1191.5, 648.5], [1186.5, 650.5], [1190.5, 651.5], [1191.5, 656.5], [1188.5, 658.5], [1187.5, 660.5], [1187.5, 663.5], [1186.5, 665.5], [1174.5, 664.5]]}, {"id": "000360", "submitted_by": "fruselight", "name": "Honkai Impact 3rd", "description": "Honkai Impact 3rd is a Free-to-play 3D action Hack'n Slash game inspired by Evangelion, developed and published by miHoYo/HoYoverse in 2016.", "website": "https://honkaiimpact3.hoyoverse.com", "subreddit": "/r/houkai3rd", "center": [1695.5, 1786.5], "path": [[1674.5, 1809.5], [1674.5, 1762.5], [1709.5, 1762.5], [1709.5, 1773.5], [1720.5, 1774.5], [1721.5, 1787.5], [1715.5, 1789.5], [1716.5, 1790.5], [1717.5, 1790.5], [1713.5, 1792.5], [1713.5, 1793.5], [1714.5, 1793.5], [1715.5, 1793.5], [1713.5, 1795.5], [1714.5, 1797.5], [1722.5, 1810.5], [1722.5, 1802.5], [1721.5, 1808.5], [1722.5, 1810.5]]}, {"id": "000361", "submitted_by": "Flamberge3000", "name": "Overly Sarcastic Productions", "description": "An edutainment YouTube channel based around discussing literature, mythology, and history with sarcasm and attitude. They've seen better days.", "website": "https://www.youtube.com/c/OverlySarcasticProductionsChannel/featured", "subreddit": "/r/osp", "center": [1704.5, 1635.5], "path": [[1706.5, 1626.5], [1706.5, 1624.5], [1704.5, 1622.5], [1700.5, 1622.5], [1697.5, 1624.5], [1693.5, 1626.5], [1692.5, 1627.5], [1691.5, 1632.5], [1695.5, 1638.5], [1699.5, 1636.5], [1699.5, 1642.5], [1702.5, 1643.5], [1702.5, 1648.5], [1714.5, 1648.5], [1714.5, 1626.5]]}, -{"id": "000362", "submitted_by": "DarknDeepNut", "name": "Dofus From r/france", "description": "Dofus is a famous game in france wich marked most our childhood, it was created in 2004 by french studio Ankama.", "website": "https://www.dofus.com/", "subreddit": "/r/france", "center": [73.5, 1766.5], "path": [[58.5, 1749.5], [59.5, 1780.5], [94.5, 1781.5], [78.5, 1749.5]]}, +{"id": "000362", "submitted_by": "DarknDeepNut", "name": "Dofus", "description": "Dofus is a famous children's game in France. It was created in 2004 by French studio Ankama.\n\nSprite made by Haykira, a pixel artist during the Dofus Retro Temporis server's start.", "website": "https://www.dofus.com/", "subreddit": "/r/france", "center": [73.5, 1766.5], "path": [[58.5, 1749.5], [59.5, 1780.5], [94.5, 1781.5], [78.5, 1749.5]]}, {"id": "000363", "submitted_by": "Spenske-", "name": "TGForever Discord Advertisement", "description": "An advertisement for the TGForever Discord Server, a Minecraft and Terraria community with dedicated servers for each.", "website": "https://discord.gg/tgf", "subreddit": "/r/TGF", "center": [1602.5, 985.5], "path": [[1592.5, 969.5], [1612.5, 969.5], [1612.5, 1000.5], [1591.5, 1000.5], [1591.5, 969.5]]}, {"id": "000365", "submitted_by": "ScarfKat", "name": "Teddy and Ben", "description": "Characters from a web series by Wavetro. It was cut short after it's first episode by the creator leaving his YouTube career to pursue new interests.", "website": "https://wavetro.net/", "subreddit": "", "center": [1056.5, 407.5], "path": [[1050.5, 401.5], [1062.5, 401.5], [1062.5, 413.5], [1050.5, 413.5]]}, {"id": "000366", "submitted_by": "zL2noob-", "name": "The Longing", "description": "Shade, the main character from The Longing, is hiding behind Cookie Clicker, a game that the devs of The Longing were inspired by. THE LONGING is an unusual mix of an adventure and an idle-game. The player controls a Shade, who is told to keep watch of a sleeping King for 400 days until he awakens. The catch: These 400 days start to count down in real-time.", "website": "http://www.399d-23h-59m-59s.com/", "subreddit": "/r/TheLonging", "center": [1563.5, 185.5], "path": [[1559.5, 179.5], [1569.5, 179.5], [1568.5, 181.5], [1568.5, 182.5], [1566.5, 183.5], [1567.5, 185.5], [1566.5, 185.5], [1566.5, 189.5], [1567.5, 189.5], [1567.5, 192.5], [1559.5, 192.5]]}, -{"id": "000367", "submitted_by": "GeoJayman", "name": "Rainbow Dash", "description": "Depicts the Element of Loyalty saluting the future and the world. Caption demonstrates that the fandom will continue despite the ending of Friendship is Magic in 2019.", "website": "mlp.fandom.com/wiki/Rainbow_Dash", "subreddit": "/r/mylittlepony", "center": [927.5, 1858.5], "path": [[925.5, 1830.5], [892.5, 1830.5], [892.5, 1885.5], [961.5, 1886.5], [961.5, 1830.5], [925.5, 1830.5]]}, -{"id": "000368", "submitted_by": "Virtual_Cheek_7633", "name": "Nitori and Badapple", "description": "A kappa from Touhou she was raided by peru multiple times we were forced to concede land at the end", "website": "", "subreddit": "/r/touhou", "center": [497.5, 527.5], "path": [[468.5, 528.5], [468.5, 541.5], [511.5, 541.5], [511.5, 528.5], [527.5, 528.5], [527.5, 513.5], [480.5, 513.5], [480.5, 527.5]]}, +{"id": "000367", "submitted_by": "GeoJayman", "name": "Rainbow Dash", "description": "Depicts the Element of Loyalty saluting the future and the world. Caption demonstrates that the fandom will continue despite the ending of Friendship is Magic in 2019.", "website": "https://mlp.fandom.com/wiki/Rainbow_Dash", "subreddit": "/r/mylittlepony", "center": [927.5, 1858.5], "path": [[925.5, 1830.5], [892.5, 1830.5], [892.5, 1885.5], [961.5, 1886.5], [961.5, 1830.5], [925.5, 1830.5]]}, +{"id": "000368", "submitted_by": "Virtual_Cheek_7633", "name": "Nitori and Badapple", "description": "Nitori, a kappa from Touhou and Bad Apple, a famous black and white silhouette music video featuring a remix of a videogame soundtrack from the touhou franchise, with characters from the franchise dancing and interacting as shadowart. Both were raided by a Peruvian streamer multiple times, and were forced to cede land in the end.", "website": "", "subreddit": "/r/touhou", "center": [497.5, 527.5], "path": [[468.5, 528.5], [468.5, 541.5], [511.5, 541.5], [511.5, 528.5], [527.5, 528.5], [527.5, 513.5], [480.5, 513.5], [480.5, 527.5]]}, {"id": "000370", "submitted_by": "lemonaid4", "name": "Suncracker0", "description": "the simplified logo of a small twitch streamer named Suncracker0", "website": "https://www.twitch.tv/suncracker0", "subreddit": "/r/Suncracker", "center": [736.5, 950.5], "path": [[734.5, 946.5], [734.5, 954.5], [738.5, 954.5], [738.5, 946.5], [738.5, 946.5]]}, {"id": "000371", "submitted_by": "SkytAsul", "name": "INSA", "description": "A French engineering school.", "website": "https://www.groupe-insa.fr/", "subreddit": "", "center": [12.5, 1073.5], "path": [[0.5, 1068.5], [24.5, 1068.5], [24.5, 1078.5], [1.5, 1078.5], [0.5, 1068.5]]}, -{"id": "000372", "submitted_by": "ostensacken", "name": "Blue Butterfly", "description": "The Blue Butterfly, an insect commonly depicted in the episodic adventure game, Life is Strange. Appearing on the Nigerian flag as a collaboration between r/lifeisstrange and r/Nigeria", "website": "", "subreddit": "/r/lifeisstrange", "center": [0.5, 0.5], "path": []}, {"id": "000374", "submitted_by": "ziemnakiscool", "name": "Kurzgesagt Painting", "description": "The r/kurzgesagt community made this picture.", "website": "", "subreddit": "/r/kurzgesagt", "center": [749.5, 52.5], "path": [[788.5, 70.5], [790.5, 68.5], [790.5, 36.5], [788.5, 35.5], [707.5, 35.5], [708.5, 69.5], [707.5, 70.5], [707.5, 36.5], [707.5, 70.5]]}, -{"id": "000375", "submitted_by": "MagicBraden1", "name": "r/Cubers", "description": "r/cubers is a place for speedcubers (people who speedsolve different twisty-puzzles, such as the Rubik's cube) discuss different cubes, solving styles, records, and more.", "website": "https://www.reddit.com/r/Cubers/", "subreddit": "/r/cubers", "center": [1388.5, 497.5], "path": [[1350.5, 485.5], [1364.5, 485.5], [1363.5, 486.5], [1364.5, 487.5], [1365.5, 487.5], [1365.5, 488.5], [1366.5, 488.5], [1366.5, 489.5], [1366.5, 489.5], [1367.5, 490.5], [1368.5, 490.5], [1368.5, 491.5], [1425.5, 491.5], [1425.5, 509.5], [1412.5, 509.5], [1412.5, 503.5], [1355.5, 503.5], [1355.5, 502.5], [1354.5, 502.5], [1354.5, 501.5], [1353.5, 501.5], [1353.5, 500.5], [1352.5, 500.5], [1352.5, 499.5], [1351.5, 499.5], [1351.5, 498.5], [1350.5, 498.5], [1350.5, 485.5]]}, -{"id": "000376", "submitted_by": "GeoJayman", "name": "Derpy Hooves", "description": "Depicts the fandom's favorite background character", "website": "mlp.fandom.com/wiki/Derpy_Hooves", "subreddit": "/r/mylittlepony", "center": [1975.5, 378.5], "path": [[2000.5, 356.5], [1950.5, 356.5], [1950.5, 400.5], [2000.5, 400.5], [2000.5, 356.5]]}, +{"id": "000376", "submitted_by": "GeoJayman", "name": "Derpy Hooves", "description": "Depicts the fandom's favorite background character", "website": "https://mlp.fandom.com/wiki/Derpy_Hooves", "subreddit": "/r/mylittlepony", "center": [1975.5, 378.5], "path": [[2000.5, 356.5], [1950.5, 356.5], [1950.5, 400.5], [2000.5, 400.5], [2000.5, 356.5]]}, {"id": "000377", "submitted_by": "sk1pzy", "name": "Bow from Inanimate Insanity", "description": "Bow from Inanimate Insanity holding up the earth (r/BuildTheEarth)", "website": "https://www.inanimateinsanity.com/", "subreddit": "/r/inanimateinsanity", "center": [68.5, 638.5], "path": [[60.5, 632.5], [60.5, 642.5], [76.5, 642.5], [76.5, 632.5], [74.5, 632.5], [74.5, 633.5], [73.5, 633.5], [73.5, 634.5], [72.5, 634.5], [72.5, 635.5], [69.5, 635.5], [69.5, 633.5], [70.5, 633.5], [70.5, 632.5], [69.5, 632.5], [69.5, 635.5], [67.5, 635.5], [67.5, 632.5], [66.5, 632.5], [66.5, 633.5], [67.5, 633.5], [67.5, 635.5], [64.5, 635.5], [63.5, 635.5], [63.5, 634.5], [63.5, 633.5], [62.5, 633.5], [61.5, 633.5], [61.5, 632.5]]}, {"id": "000378", "submitted_by": "Virtual_Cheek_7633", "name": "Kirisame Marisa", "description": "logo from Touhou 6 Embodiment of Scarlet Devil", "website": "", "subreddit": "/r/touhou", "center": [1122.5, 1985.5], "path": [[1109.5, 1973.5], [1109.5, 1997.5], [1135.5, 1996.5], [1135.5, 1973.5]]}, {"id": "000379", "submitted_by": "Boring_Disaster_21", "name": "Luna Crown", "description": "Crown representing Himemori Luna, a Vtuber from Hololive Japan 4th Generation.", "website": "https://hololive.hololivepro.com/en/talents/himemori-luna/", "subreddit": "/r/hololive", "center": [1360.5, 1119.5], "path": [[1360.5, 1111.5], [1360.5, 1124.5], [1355.5, 1124.5], [1353.5, 1119.5], [1358.5, 1111.5], [1366.5, 1117.5], [1365.5, 1124.5], [1360.5, 1124.5]]}, @@ -347,15 +331,13 @@ {"id": "000405", "submitted_by": "silverwolv", "name": "WolvHaven Minecraft Server", "description": "WolvHaven is a creative minecraft server that started out as a city-roleplay and survival server established in 2011. It is mainly known for its railway Metro Systems constructed using the TrainCarts bukkit plugin. The server has since transistioned into more of a creative city-building server for architecture, urban, and transit enthusiasts, centered around a showcase city. Depicted here is the server's official flag.", "website": "https://wolvhaven.net", "subreddit": "/r/wolvhaven", "center": [1350.5, 463.5], "path": [[1346.5, 461.5], [1354.5, 461.5], [1354.5, 465.5], [1346.5, 465.5]]}, {"id": "000406", "submitted_by": "GoJoeyGo123", "name": "BL\u00c5HAJ", "description": "BL\u00c5HAJ is a popular soft toy sold by ikea", "website": "https://www.ikea.com/us/en/p/blahaj-soft-toy-shark-90373590/", "subreddit": "/r/BLAHAJ", "center": [250.5, 669.5], "path": [[242.5, 668.5], [242.5, 667.5], [247.5, 667.5], [247.5, 666.5], [248.5, 666.5], [248.5, 665.5], [249.5, 665.5], [249.5, 664.5], [250.5, 664.5], [251.5, 664.5], [251.5, 667.5], [253.5, 667.5], [253.5, 666.5], [254.5, 666.5], [254.5, 665.5], [255.5, 665.5], [255.5, 664.5], [258.5, 664.5], [258.5, 665.5], [258.5, 666.5], [257.5, 666.5], [257.5, 667.5], [257.5, 668.5], [256.5, 668.5], [256.5, 669.5], [257.5, 669.5], [257.5, 670.5], [258.5, 670.5], [258.5, 671.5], [258.5, 672.5], [255.5, 672.5], [255.5, 671.5], [254.5, 671.5], [254.5, 670.5], [253.5, 671.5], [252.5, 671.5], [252.5, 672.5], [251.5, 672.5], [250.5, 672.5], [250.5, 673.5], [250.5, 674.5], [249.5, 674.5], [248.5, 674.5], [248.5, 673.5], [247.5, 673.5], [247.5, 672.5], [243.5, 672.5], [242.5, 672.5], [242.5, 671.5], [241.5, 671.5], [241.5, 669.5], [241.5, 668.5], [241.5, 668.5], [241.5, 668.5]]}, {"id": "000407", "submitted_by": "flippin_egg", "name": "Olive", "description": "The protagonist of the Purrfect Apawcalypse series", "website": "", "subreddit": "", "center": [492.5, 483.5], "path": [[486.5, 478.5], [486.5, 478.5], [486.5, 488.5], [486.5, 488.5], [497.5, 488.5], [497.5, 478.5]]}, -{"id": "000410", "submitted_by": "SenatusSPQR", "name": "Nano currency symbol", "description": "The currency symbol of Nano, a green, instant & feeless cryptocurrency", "website": "www.nano.org", "subreddit": "/r/nanocurrency", "center": [841.5, 649.5], "path": [[826.5, 634.5], [856.5, 634.5], [856.5, 663.5], [826.5, 663.5]]}, +{"id": "000410", "submitted_by": "SenatusSPQR", "name": "Nano currency symbol", "description": "The currency symbol of Nano, a green, instant & feeless cryptocurrency", "website": "https://www.nano.org", "subreddit": "/r/nanocurrency", "center": [841.5, 649.5], "path": [[826.5, 634.5], [856.5, 634.5], [856.5, 663.5], [826.5, 663.5]]}, {"id": "000411", "submitted_by": "hakyeons-army", "name": "Pink Fantasy", "description": "Logo of K-Pop group Pink Fantasy. Left is a logo consisting of two keys crossing over each other, and to the right is a bunny representing member Daewang.", "website": "", "subreddit": "", "center": [1689.5, 894.5], "path": [[1684.5, 896.5], [1681.5, 897.5], [1681.5, 891.5], [1696.5, 891.5], [1696.5, 897.5]]}, {"id": "000412", "submitted_by": "betterert", "name": "Juke's Towers of Hell", "description": "Juke's Towers of Hell is a platforming game on the ROBLOX platform where players are tasked with climbing very tall and difficult towers. It is notorious for its high difficulty. The three large towers (from left to right) are the Tower of Hecc (sic), the Tower of Screen Punching, and the Tower of Impossible Expectations. These are the first three towers ever added to the game, respectively. The small structures in the middle are other beloved towers in the community.", "website": "https://jtoh.fandom.com/wiki/Juke%27s_Towers_of_Hell_Wiki", "subreddit": "/r/JToH2", "center": [1520.5, 1628.5], "path": [[1507.5, 1605.5], [1532.5, 1605.5], [1532.5, 1651.5], [1507.5, 1651.5]]}, {"id": "000415", "submitted_by": "Killer_The_Cat", "name": "M\u00e9tis Flag", "description": "The flag of the M\u00e9tis people of Canada", "website": "", "subreddit": "", "center": [218.5, 467.5], "path": [[226.5, 462.5], [210.5, 462.5], [210.5, 472.5], [226.5, 472.5]]}, {"id": "000417", "submitted_by": "GaymerQWQ", "name": "Genshin Impact (Chinese Characters)", "description": "Genshin Impact's Chinese Logo. Venti, a playable character in the game, is featured above.", "website": "https://genshin.hoyoverse.com/en/", "subreddit": "/r/GenshinImpact", "center": [1145.5, 51.5], "path": [[1104.5, 74.5], [1110.5, 74.5], [1110.5, 71.5], [1112.5, 68.5], [1116.5, 70.5], [1118.5, 71.5], [1120.5, 67.5], [1122.5, 67.5], [1125.5, 65.5], [1127.5, 66.5], [1127.5, 70.5], [1130.5, 73.5], [1133.5, 70.5], [1145.5, 65.5], [1150.5, 71.5], [1151.5, 72.5], [1159.5, 67.5], [1164.5, 67.5], [1172.5, 75.5], [1175.5, 70.5], [1177.5, 65.5], [1181.5, 63.5], [1178.5, 60.5], [1183.5, 57.5], [1181.5, 54.5], [1179.5, 52.5], [1182.5, 50.5], [1181.5, 35.5], [1175.5, 35.5], [1174.5, 31.5], [1174.5, 26.5], [1170.5, 26.5], [1169.5, 24.5], [1171.5, 21.5], [1170.5, 20.5], [1166.5, 22.5], [1164.5, 20.5], [1163.5, 16.5], [1162.5, 14.5], [1161.5, 18.5], [1158.5, 21.5], [1156.5, 23.5], [1154.5, 20.5], [1156.5, 25.5], [1154.5, 28.5], [1156.5, 31.5], [1158.5, 35.5], [1149.5, 35.5], [1147.5, 38.5], [1132.5, 39.5], [1130.5, 41.5], [1118.5, 40.5], [1115.5, 36.5], [1104.5, 35.5]]}, {"id": "000418", "submitted_by": "Beegrene", "name": "Daft Punk", "description": "The robotic hands of Daft Punk, a French house music duo active from 1993 to 2021.", "website": "", "subreddit": "/r/DaftPunk", "center": [220.5, 945.5], "path": [[195.5, 926.5], [195.5, 964.5], [244.5, 964.5], [244.5, 926.5], [195.5, 926.5]]}, -{"id": "000419", "submitted_by": "MineRabbit33", "name": "EPITA", "description": "EPITA (\u00c9cole Pour l'Informatique et les Techniques Avanc\u00e9es) is a French computer engineering school", "website": "https://www.epita.fr/", "subreddit": "/r/epita", "center": [1210.5, 321.5], "path": [[1209.5, 308.5], [1192.5, 320.5], [1196.5, 324.5], [1195.5, 327.5], [1201.5, 330.5], [1200.5, 332.5], [1205.5, 331.5], [1211.5, 336.5], [1212.5, 329.5], [1228.5, 328.5], [1226.5, 325.5], [1228.5, 323.5], [1223.5, 319.5], [1219.5, 309.5], [1214.5, 312.5]]}, {"id": "000420", "submitted_by": "Vampire_Artyom", "name": "Stardew Valley Art #1", "description": "Created by the Stardew Valley Community, depicting some recognizable art from the game: Brown Chicken, Blue Chicken, a Stardrop and a Green Junimo, alongside a heavily pixelated part of the world's landscape", "website": "https://www.stardewvalley.net", "subreddit": "/r/StardewValley", "center": [102.5, 365.5], "path": [[71.5, 345.5], [132.5, 345.5], [132.5, 386.5], [77.5, 386.5], [77.5, 385.5], [76.5, 385.5], [76.5, 383.5], [75.5, 383.5], [74.5, 382.5], [71.5, 382.5]]}, -{"id": "000421", "submitted_by": "AsrielDashie", "name": "Taiwan/R.O.C Flag", "description": "National flag of Republic of China a.k.a Taiwan.", "website": "", "subreddit": "/r/taiwan", "center": [959.5, 555.5], "path": [[941.5, 543.5], [941.5, 566.5], [977.5, 566.5], [977.5, 543.5]]}, {"id": "000422", "submitted_by": "Killer_The_Cat", "name": "Flag of Nunavut", "description": "", "website": "", "subreddit": "/r/nunavut", "center": [201.5, 457.5], "path": [[193.5, 462.5], [209.5, 462.5], [209.5, 452.5], [193.5, 452.5]]}, {"id": "000423", "submitted_by": "Asteralium", "name": "Animal Jam Ladybug", "description": "A ladybug from the logo of Animal Jam, a virtual world that opened in 2010.", "website": "https://discord.com/invite/animaljamcommunity", "subreddit": "/r/AnimalJam", "center": [1761.5, 1090.5], "path": [[1755.5, 1083.5], [1767.5, 1083.5], [1767.5, 1097.5], [1755.5, 1097.5]]}, {"id": "000424", "submitted_by": "Drakzia", "name": "ENS Rennes Logo", "description": "The logo of the French school \u00c9cole normale sup\u00e9rieure de Rennes (ENS Rennes).", "website": "http://www.ens-rennes.fr/", "subreddit": "", "center": [288.5, 1590.5], "path": [[282.5, 1586.5], [282.5, 1594.5], [293.5, 1594.5], [293.5, 1586.5]]}, @@ -370,23 +352,19 @@ {"id": "000433", "submitted_by": "Killer_The_Cat", "name": "Flag of Denver", "description": "The flag of Denver, Colorado, United States.", "website": "", "subreddit": "/r/denver", "center": [10.5, 750.5], "path": [[19.5, 745.5], [0.5, 745.5], [0.5, 755.5], [19.5, 755.5]]}, {"id": "000434", "submitted_by": "micarot", "name": "Aromat", "description": "A swiss spice, famous in swizerland only", "website": "", "subreddit": "", "center": [1180.5, 885.5], "path": [[1177.5, 879.5], [1183.5, 879.5], [1183.5, 890.5], [1177.5, 890.5]]}, {"id": "000435", "submitted_by": "keroshijoshi", "name": "Former Hero's Logo", "description": "Indie electronic musician Former Hero's bridge logo. Former Hero is known for his fast-paced, pulsating melodic tracks and is well-loved in the SoundCloud dance scene, garnering the attention of San Holo and his independent label bitbird.", "website": "", "subreddit": "/r/bitbird", "center": [883.5, 1795.5], "path": [[872.5, 1790.5], [872.5, 1799.5], [893.5, 1799.5], [893.5, 1790.5], [872.5, 1790.5]]}, -{"id": "000436", "submitted_by": "micarot", "name": "RTS", "description": "The french speaking radio and TV for Switzerland", "website": "https://www.rts.ch", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "000437", "submitted_by": "CyborgRyno603", "name": "The iFunny watermark", "description": "Uh oh, you forgot to crop your stolen meme, now you deal with the consequences. Brought to you by r/Place_iFunny.", "website": "https://www.ifunny.co", "subreddit": "/r/iFunny", "center": [338.5, 1893.5], "path": [[311.5, 1888.5], [365.5, 1888.5], [365.5, 1897.5], [311.5, 1897.5], [311.5, 1888.5]]}, -{"id": "000438", "submitted_by": "GoJoeyGo123", "name": "Anarchy Chess", "description": "Anarchy chess is a chess meme subreddit", "website": "", "subreddit": "/r/AnarchyChess", "center": [123.5, 661.5], "path": [[80.5, 607.5], [151.5, 607.5], [151.5, 609.5], [174.5, 609.5], [174.5, 712.5], [125.5, 712.5], [125.5, 715.5], [71.5, 715.5], [71.5, 679.5], [70.5, 679.5], [70.5, 642.5], [76.5, 642.5], [76.5, 632.5], [74.5, 632.5], [74.5, 633.5], [73.5, 633.5], [73.5, 634.5], [72.5, 634.5], [72.5, 635.5], [70.5, 635.5], [70.5, 631.5], [72.5, 631.5], [73.5, 630.5], [74.5, 630.5], [75.5, 629.5], [76.5, 628.5], [77.5, 627.5], [78.5, 626.5], [79.5, 625.5], [80.5, 624.5], [80.5, 623.5], [81.5, 622.5], [81.5, 620.5], [82.5, 619.5], [82.5, 612.5], [81.5, 611.5], [81.5, 609.5], [80.5, 608.5], [80.5, 607.5]]}, {"id": "000440", "submitted_by": "MrEduxator", "name": "Snuffy", "description": "An emote of Twitch VTuber Snuffy. Lead by her community, and Snuffy herself.", "website": "https://www.twitch.tv/snuffy", "subreddit": "", "center": [694.5, 1074.5], "path": [[667.5, 1050.5], [719.5, 1050.5], [720.5, 1098.5], [668.5, 1098.5]]}, {"id": "000441", "submitted_by": "ibm2431", "name": "DDLC Micro Yuri", "description": "A miniature representation of Yuri, a character from Doki Doki Literature Club. DDLC is a psychological horror visual novel about writing your way into a girl's heart. Yuri's hobbies include aromatherapy, reading horror novels, and knife collecting. Will you take a stab at her route and make the cut?", "website": "https://ddlc.moe/", "subreddit": "/r/ddlc", "center": [1862.5, 1443.5], "path": [[1859.5, 1439.5], [1864.5, 1439.5], [1864.5, 1447.5], [1859.5, 1447.5]]}, {"id": "000448", "submitted_by": "CornMayor", "name": "Cuca from XTale (Undertale AU)", "description": "Cuca is a butterfly. Became a local character on Discord Server. XTale is a YT animation series by Jael Pe\u00f1aloza", "website": "https://www.youtube.com/c/JakeiHazen", "subreddit": "/r/XTale", "center": [1850.5, 1706.5], "path": [[1851.5, 1699.5], [1855.5, 1708.5], [1852.5, 1709.5], [1850.5, 1711.5], [1844.5, 1706.5], [1844.5, 1704.5], [1849.5, 1706.5], [1849.5, 1703.5], [1850.5, 1703.5], [1850.5, 1700.5]]}, {"id": "000449", "submitted_by": "MrEduxator", "name": "Ankimo & Tokino Sora", "description": "Tokino Sora (Right side) and her mascot, Ankimo. (Left side)", "website": "https://hololive.hololivepro.com/en/", "subreddit": "/r/hololive", "center": [1342.5, 1120.5], "path": [[1333.5, 1115.5], [1350.5, 1115.5], [1351.5, 1115.5], [1351.5, 1117.5], [1352.5, 1117.5], [1352.5, 1119.5], [1353.5, 1119.5], [1353.5, 1124.5], [1353.5, 1125.5], [1332.5, 1125.5], [1332.5, 1115.5]]}, {"id": "000450", "submitted_by": "bermuda__", "name": "Newgrounds", "description": "A site for online animations and games", "website": "https://www.newgrounds.com", "subreddit": "/r/newgrounds", "center": [903.5, 1921.5], "path": [[878.5, 1947.5], [878.5, 1895.5], [929.5, 1896.5], [929.5, 1947.5]]}, -{"id": "000451", "submitted_by": "MiguJib", "name": "Moist Esports", "description": "Moist Esports is an e-sports team founded by MoistCr1TiKaL", "website": "https://www.twitch.tv/moistcr1tikal", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "000452", "submitted_by": "MrDaveCole98", "name": "Guinness Rei", "description": "Pixel art of Rei Ayanami, a character from the anime Neon Genesis Evangelion, holding a mug of Guinness beer in honor of the subreddit's alliance with Ireland.", "website": "https://www.evangelion.co.jp/index.html", "subreddit": "/r/evangelion", "center": [1261.5, 143.5], "path": [[1250.5, 157.5], [1272.5, 157.5], [1272.5, 128.5], [1250.5, 128.5], [1250.5, 157.5]]}, {"id": "000453", "submitted_by": "CanicheFumando", "name": "Flag of Uruguay", "description": "Uruguayan flag with some typical stuff of the country", "website": "", "subreddit": "/r/Uruguay", "center": [1083.5, 675.5], "path": [[966.5, 665.5], [966.5, 684.5], [1172.5, 684.5], [1200.5, 684.5], [1200.5, 665.5], [966.5, 665.5]]}, {"id": "000457", "submitted_by": "SA_AVOCADO", "name": "Zyzz tribute", "description": "A tribute to the late Aziz (Zyzz) Shavershian, a Russian-born Australian bodybuilder, who gained a cult following after posting on YouTube.", "website": "https://en.wikipedia.org/wiki/Aziz_Shavershian", "subreddit": "/r/Zyzz", "center": [1381.5, 1689.5], "path": [[1332.5, 1612.5], [1332.5, 1682.5], [1332.5, 1753.5], [1439.5, 1754.5], [1439.5, 1658.5], [1417.5, 1658.5], [1413.5, 1654.5], [1413.5, 1638.5], [1394.5, 1637.5], [1394.5, 1612.5]]}, {"id": "000460", "submitted_by": "GoJoeyGo123", "name": "Homage to Daft punk", "description": "daft punk was a french electronic duo that formed in 1993 and split in 2021", "website": "https://en.wikipedia.org/wiki/Daft_Punk", "subreddit": "/r/DaftPunk", "center": [220.5, 945.5], "path": [[195.5, 926.5], [244.5, 926.5], [244.5, 964.5], [195.5, 964.5]]}, {"id": "000463", "submitted_by": "Yolo1212123", "name": "AKL", "description": "Alternative Keyboard Layouts", "website": "", "subreddit": "", "center": [642.5, 1344.5], "path": [[639.5, 1343.5], [645.5, 1343.5], [644.5, 1346.5], [639.5, 1346.5], [639.5, 1343.5]]}, -{"id": "000248", "submitted_by": "Smokydoh", "name": "Aireu's hand", "description": "A photo of osu! top player, Aireu, after setting a play on 'Guess Who Is Back', awarding him 727pp.", "website": "https://twitter.com/Aireuu_", "subreddit": "/r/osugame", "center": [626.5, 1487.5], "path": [[592.5, 1453.5], [660.5, 1453.5], [660.5, 1522.5], [645.5, 1522.5], [645.5, 1520.5], [636.5, 1520.5], [636.5, 1522.5], [592.5, 1522.5], [592.5, 1453.5]]}, {"id": "000255", "submitted_by": "Constant_Disillusion", "name": "Red vs. Blue Poster", "description": "Red vs. Blue or RvB is a Halo-based machinima and animated web series created by Rooster Teeth. The 19 on the helmet signifies the 19th anniversary of the series on April 1, 2022, and the heart on the border with RWBY shows the friendship between the communities as Rooster Teeth creations.", "website": "", "subreddit": "/r/RedvsBlue", "center": [461.5, 698.5], "path": [[449.5, 713.5], [472.5, 713.5], [472.5, 682.5], [449.5, 682.5]]}, -{"id": "000256", "submitted_by": "Git_Good", "name": "Half-life 3 Lambda", "description": "Half-life is a first-person shooter series developed by Valve. Half-Life 2: Episode two was released alongside Team Fortress 2 as part of the Orange Box Collection, and also runs on the Source engine.nnFans of the series have been waiting for a third instalment to the main series since 2007, and jokes about the wait time and nonexistent release date of 'Half-Life 3' has become one of the most iconic memes within the gaming community.", "website": "www.half-life.com", "subreddit": "/r/HalfLife", "center": [1566.5, 1926.5], "path": [[1559.5, 1919.5], [1573.5, 1919.5], [1573.5, 1933.5], [1562.5, 1933.5], [1562.5, 1932.5], [1562.5, 1931.5], [1559.5, 1931.5]]}, +{"id": "000256", "submitted_by": "Git_Good", "name": "Half-life 3 Lambda", "description": "Half-life is a first-person shooter series developed by Valve. Half-Life 2: Episode two was released alongside Team Fortress 2 as part of the Orange Box Collection, and also runs on the Source engine.nnFans of the series have been waiting for a third instalment to the main series since 2007, and jokes about the wait time and nonexistent release date of 'Half-Life 3' has become one of the most iconic memes within the gaming community.", "website": "https://www.half-life.com", "subreddit": "/r/HalfLife", "center": [1566.5, 1926.5], "path": [[1559.5, 1919.5], [1573.5, 1919.5], [1573.5, 1933.5], [1562.5, 1933.5], [1562.5, 1932.5], [1562.5, 1931.5], [1559.5, 1931.5]]}, {"id": "000257", "submitted_by": "iTzHard", "name": "Saudi Arabia", "description": "The Saudi flag drawn by the r/SaudiArabia Discord displaying the traditional palm trees and swords, a mabkhara, a dallah, and a peepo wearing a thobe.", "website": "", "subreddit": "/r/SaudiArabia", "center": [1618.5, 1059.5], "path": [[1645.5, 1044.5], [1645.5, 1074.5], [1591.5, 1074.5], [1591.5, 1044.5]]}, {"id": "000260", "submitted_by": "lEternalDarkness", "name": "Okami", "description": "Features Amaterasu, the lupine protagonist of the video game 'Okami' (2006). Placement organized mainly by the Okami speedrunning community, and contributed to by all loving fans.", "website": "https://okami.speedruns.wiki/Main_Page", "subreddit": "/r/okami", "center": [999.5, 398.5], "path": [[989.5, 389.5], [989.5, 389.5], [989.5, 407.5], [1007.5, 407.5], [1010.5, 405.5], [1010.5, 389.5], [1010.5, 389.5], [1010.5, 389.5]]}, {"id": "000275", "submitted_by": "Viktor_Denmark", "name": "The Danish flag", "description": "The Danish flag containing a swan which is the national bird of Denmark, a Lego brick and the famous Lego astronaut, since Lego is a danish company, the 3 shadowy figures are Egon Olsen, Benny Frandsen and Kjeld Jensen they make op the group called 'Olsen-banden' which is a series of Danish crime comedies", "website": "", "subreddit": "/r/Denmark", "center": [588.5, 315.5], "path": [[638.5, 342.5], [638.5, 286.5], [556.5, 286.5], [556.5, 290.5], [542.5, 290.5], [542.5, 298.5], [541.5, 298.5], [541.5, 299.5], [537.5, 298.5], [536.5, 343.5], [638.5, 342.5]]}, @@ -394,7 +372,7 @@ {"id": "000281", "submitted_by": "Smirkydevil52", "name": "Cosmere R.A.F.O.", "description": "The Cosmere is the greater universe in which The Stormlight Archive - and many of Brandon Sanderson's other adult fiction books - take place. RAFO is a term Brandon Sanderson uses at signings as a non-answer for prying fans. It means 'Read and Find Out.' When Brandon uses this, it is neutral, and neither means one is right or one is wrong. Many things are RAFO'd because they would spoil future books.", "website": "", "subreddit": "/r/Cosmere", "center": [881.5, 949.5], "path": [[861.5, 924.5], [901.5, 924.5], [901.5, 974.5], [861.5, 974.5]]}, {"id": "000284", "submitted_by": "jessneedsgeesuslol", "name": "Gir from Invader Zim", "description": "Gir from the show 'Invader Zim'", "website": "", "subreddit": "/r/invaderzim", "center": [1340.5, 1330.5], "path": [[1332.5, 1344.5], [1331.5, 1344.5], [1347.5, 1317.5], [1332.5, 1317.5], [1332.5, 1344.5], [1347.5, 1344.5], [1348.5, 1318.5], [1347.5, 1318.5], [1348.5, 1318.5], [1347.5, 1318.5], [1348.5, 1318.5], [1347.5, 1318.5], [1347.5, 1318.5], [1348.5, 1317.5], [1348.5, 1318.5], [1349.5, 1318.5], [1347.5, 1317.5], [1331.5, 1344.5]]}, {"id": "000287", "submitted_by": "nostalgicsobbing", "name": "Arctic Monkeys discography and references", "description": "This space contains six (6) studio albums and (1) solo EP by the British rock band Arctic monkeys. These albums are named Tranquility Base Hotel & Casino, Suck It And See (although in this screenshot it is still unfinished), Humbug, Whatever People Say I Am; That's What I'm Not, Favourite Worst Nightmare, AM, and the solo EP by the band's lead singer Alex Turner: Submarine. There is also a reference to the Monkeys' fandom favorite meme: 'bric[c]' and a song of theirs called 505 from the Favourite Worst Nightmare album.", "website": "", "subreddit": "/r/arcticmonkeys", "center": [1338.5, 363.5], "path": [[1315.5, 345.5], [1316.5, 381.5], [1361.5, 382.5], [1360.5, 344.5], [1315.5, 344.5], [1361.5, 344.5], [1360.5, 344.5]]}, -{"id": "000298", "submitted_by": "SimpleAmbassador", "name": "Futurama", "description": "The Futurama section, created by r/futurama users (with some help from other communities). It depicts various characters from the show, as well as the Planet Express, the main ship from the show, seen flying against a starry background. Underneath that is the subreddit's handle, as well as the main characters from 'It's Always Sunny in Philadelphia' (representing r/alwayssunny, with whom r/futurama was allied with). Towards the very end of this section's life, a mini version of the Comet Tiamat from 'Your Name.' (representing r/kiminonawa) was also added to the canvas above the Planet Express.", "website": "", "subreddit": "/r/futurama, /r/alwayssunny", "center": [1252.5, 1975.5], "path": [[1201.5, 1954.5], [1299.5, 1954.5], [1300.5, 1970.5], [1286.5, 1972.5], [1288.5, 2000.5], [1219.5, 1999.5], [1219.5, 1971.5], [1201.5, 1971.5]]}, +{"id": "000298", "submitted_by": "SimpleAmbassador", "name": "Futurama", "description": "The Futurama section, created by r/futurama users (with help from several allied communities). It depicts many characters from the show, as well as their spaceship The Planet Express Ship, seen flying against a starry background. Underneath that is the subreddit's handle. Allied communities featured in this space include: r/IASIP - The main cast of 'It's Always Sunny in Philadelphia' can be seen in the taskbar section; Holly HQ - The 'H' Trans Flag behind the spaceship; r/byzantium - The Byzantium flag to the right; r/panama - The Panamanian flag was flying from the ship's turret for much of r/place; Mushrooms - placed by a lone redditor in memoriam of a loved one; Purple Dragon - Another small community sharing space with r/futurama; r/kiminonawa - Towards the very end of r/place, a mini version of the Comet Tiamat from the anime film 'Your Name.' was also added to the canvas above the Planet Express.", "website": "", "subreddit": "/r/futurama, /r/IASIP, /r/panama, /r/kiminonawa, /r/byzantium", "center": [1252.5, 1975.5], "path": [[1201.5, 1954.5], [1299.5, 1954.5], [1300.5, 1970.5], [1286.5, 1972.5], [1288.5, 2000.5], [1219.5, 1999.5], [1219.5, 1971.5], [1201.5, 1971.5]]}, {"id": "000303", "submitted_by": "PrincesStarfire1234", "name": "Five Nights at Freddy's banner", "description": "Banner for the popular indie horror franchise Five Nights at Freddy's (FNAF). To the left sits the iconic Purple Guy, and to the right is a version of Michael Afton from a fancomic called Children Rekindled. The banner was originally going to be bigger and would sit underneath My Little Pony but was made limited due to complications with the early Ukraine flag, several bot raids and streamer raids, multiple fights with the Denmark flag, and trolls attempting to change the words 'Nights' and 'Freddy's' into offensive words. It had been wiped out and messed with atleast 3 times, but was eventually restored thanks to allies from MLP, Deltarune, Asexual Flag gang, the Swifties, and Berserk.", "website": "", "subreddit": "/r/fivenightsatfreddys", "center": [641.5, 281.5], "path": [[595.5, 277.5], [595.5, 285.5], [688.5, 284.5], [688.5, 281.5], [689.5, 281.5], [689.5, 277.5], [595.5, 277.5]]}, {"id": "000307", "submitted_by": "ryanlllwolf", "name": "Ryan the Bun (ITBERYAN)", "description": "A small icon representing 'Ryan the Bun' a content creator known for being a bunny with a bowtie, closely linked with the VRChat community.", "website": "https://twitter.com/ITBERYAN2", "subreddit": "/r/VRChat", "center": [983.5, 110.5], "path": [[979.5, 106.5], [979.5, 113.5], [987.5, 113.5], [987.5, 106.5], [979.5, 106.5]]}, {"id": "000313", "submitted_by": "Dibblepistols", "name": "Foxhole Map", "description": "The first of three artworks made by a group of gamers who play the cooperative sandbox massively-multiplayer action-strategy video game 'Foxhole'. The piece depicts a map from the game colored in green and blue to represent the 'Colonial' and 'Warden' (logos at the bottom of the map) battle for control over the fictional land of Caoiva.", "website": "https://www.foxholegame.com", "subreddit": "/r/foxholegame", "center": [727.5, 573.5], "path": [[701.5, 533.5], [755.5, 547.5], [755.5, 601.5], [755.5, 602.5], [754.5, 603.5], [753.5, 603.5], [753.5, 606.5], [753.5, 607.5], [701.5, 607.5], [701.5, 557.5], [701.5, 556.5], [704.5, 556.5], [705.5, 556.5], [705.5, 550.5], [701.5, 550.5], [701.5, 533.5], [753.5, 533.5]]}, @@ -419,11 +397,8 @@ {"id": "twpf4h", "submitted_by": "jetfantastic", "name": "Project+", "description": "The shortened logo of Project+, an overhaul mod for Super Smash Bros. Brawl that adds characters, stages, and revamps both characters and general gameplay. Project+ is a continuation of the brawl mod Project M, which originally disbanded in 2015.", "website": "https://projectplusgame.com", "subreddit": "/r/ssbpm", "center": [810.5, 1981.5], "path": [[803.5, 1975.5], [803.5, 1976.5], [802.5, 1977.5], [802.5, 1979.5], [801.5, 1980.5], [801.5, 1982.5], [800.5, 1983.5], [800.5, 1985.5], [799.5, 1986.5], [799.5, 1988.5], [800.5, 1988.5], [802.5, 1988.5], [803.5, 1987.5], [803.5, 1986.5], [804.5, 1985.5], [804.5, 1983.5], [804.5, 1983.5], [805.5, 1983.5], [806.5, 1983.5], [807.5, 1983.5], [808.5, 1983.5], [809.5, 1983.5], [810.5, 1982.5], [814.5, 1982.5], [814.5, 1983.5], [813.5, 1984.5], [812.5, 1984.5], [812.5, 1987.5], [813.5, 1987.5], [814.5, 1985.5], [817.5, 1985.5], [817.5, 1984.5], [818.5, 1983.5], [818.5, 1982.5], [821.5, 1982.5], [823.5, 1979.5], [819.5, 1979.5], [819.5, 1976.5], [820.5, 1975.5], [820.5, 1974.5], [816.5, 1974.5], [816.5, 1975.5], [815.5, 1976.5], [815.5, 1978.5], [814.5, 1979.5], [811.5, 1979.5], [811.5, 1978.5], [810.5, 1977.5], [810.5, 1976.5], [806.5, 1976.5], [805.5, 1975.5], [804.5, 1975.5]]}, {"id": "twpeu7", "submitted_by": "memer864", "name": "The flag train", "description": "A train with all the flags of dutch province\u2019s", "website": "", "subreddit": "/r/PlaceNL", "center": [1240.5, 7.5], "path": [[1370.5, 13.5], [1368.5, 1.5], [1108.5, 2.5], [1107.5, 13.5]]}, {"id": "twpesa", "submitted_by": "feebl", "name": "Piet Mondriaan", "description": "Pieter Cornelis Mondriaan (7 March 1872 \u2013 1 February 1944), was a Dutch painter and art theoretician who is regarded as one of the greatest artists of the 20th century. He is known for being one of the pioneers of 20th-century abstract art, as he changed his artistic direction from figurative painting to an increasingly abstract style, until he reached a point where his artistic vocabulary was reduced to simple geometric elements.", "website": "", "subreddit": "/r/PlaceNL", "center": [1434.5, 17.5], "path": [[1420.5, 3.5], [1448.5, 3.5], [1448.5, 30.5], [1420.5, 30.5]]}, -{"id": "twpeq4", "submitted_by": "Tonda98", "name": "Coat of Arms / German Federated States pt. 1", "description": "(fltr)Saxony, Saxony-Anhalt, Saarland, Thuringia, Schleswig-Holstein, North Rhine-Westphalia, Brandenburg, Mecklenburg-Vorpommern, Baden-W\u00fcrttemberg, Hamburg, Lower Saxony", "website": "https://en.wikipedia.org/wiki/States_of_Germany", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "twpeo1", "submitted_by": "GiveMeSomeBEANS", "name": "Frikandel broodje", "description": "a typical dutch snackn2de gratis bij Albert Heijn!", "website": "https://www.ah.nl/producten/product/wi230720/ah-frikandelbroodje", "subreddit": "", "center": [1690.5, 21.5], "path": [[1662.5, 9.5], [1662.5, 33.5], [1718.5, 33.5], [1718.5, 9.5]]}, {"id": "twpelt", "submitted_by": "sad_lagoon", "name": "Fuck NFTs", "description": "enough said", "website": "", "subreddit": "/r/fuckNFTs", "center": [420.5, 1345.5], "path": [[400.5, 1339.5], [441.5, 1339.5], [441.5, 1350.5], [399.5, 1350.5], [399.5, 1339.5]]}, {"id": "twpelq", "submitted_by": "SinisterMJ", "name": "The little Prince", "description": "A book by Antoine de Saint-Exup\u00e9ry", "website": "https://en.wikipedia.org/wiki/The_Little_Prince", "subreddit": "", "center": [155.5, 362.5], "path": [[144.5, 343.5], [141.5, 346.5], [142.5, 354.5], [139.5, 358.5], [136.5, 365.5], [136.5, 374.5], [139.5, 378.5], [145.5, 385.5], [146.5, 385.5], [146.5, 383.5], [145.5, 383.5], [145.5, 380.5], [147.5, 380.5], [147.5, 376.5], [148.5, 376.5], [148.5, 374.5], [149.5, 374.5], [149.5, 366.5], [150.5, 366.5], [150.5, 357.5], [157.5, 357.5], [157.5, 362.5], [151.5, 374.5], [152.5, 374.5], [152.5, 376.5], [153.5, 376.5], [153.5, 380.5], [155.5, 380.5], [155.5, 382.5], [154.5, 382.5], [154.5, 383.5], [153.5, 383.5], [153.5, 386.5], [160.5, 386.5], [163.5, 385.5], [170.5, 377.5], [172.5, 373.5], [172.5, 366.5], [171.5, 361.5], [168.5, 357.5], [166.5, 356.5], [170.5, 353.5], [170.5, 349.5], [168.5, 349.5], [166.5, 353.5], [163.5, 353.5], [163.5, 352.5], [164.5, 351.5], [163.5, 349.5], [161.5, 351.5], [158.5, 348.5], [158.5, 346.5], [159.5, 343.5], [161.5, 345.5], [164.5, 345.5], [165.5, 343.5], [162.5, 341.5], [163.5, 340.5], [164.5, 340.5], [164.5, 339.5], [165.5, 339.5], [167.5, 342.5], [170.5, 340.5], [170.5, 338.5], [166.5, 336.5], [163.5, 336.5], [160.5, 338.5], [157.5, 338.5], [158.5, 337.5], [158.5, 333.5], [157.5, 332.5], [155.5, 332.5], [154.5, 331.5], [153.5, 331.5], [151.5, 333.5], [151.5, 335.5], [152.5, 337.5], [153.5, 339.5], [152.5, 339.5], [152.5, 340.5], [151.5, 341.5], [151.5, 349.5], [150.5, 349.5], [150.5, 351.5], [148.5, 351.5], [148.5, 345.5], [146.5, 343.5]]}, -{"id": "twpejp", "submitted_by": "Tim_Coolwine", "name": "In Honor of Mako", "description": "A piece of art from the popular show Avatar the Last Aibender wich shows the character Iroh. The voice actor Mako is remebered in this picture.", "website": "", "subreddit": "/r/avatarplace", "center": [1415.5, 1555.5], "path": [[1498.5, 1611.5], [1332.5, 1611.5], [1332.5, 1498.5], [1498.5, 1498.5]]}, {"id": "twpee3", "submitted_by": "themistik", "name": "Ancienne France", "description": "First french flag and art made by the french reddit community", "website": "https://www.reddit.com/r/placefrance/", "subreddit": "/r/placefrance", "center": [151.5, 414.5], "path": [[132.5, 387.5], [126.5, 387.5], [126.5, 495.5], [174.5, 496.5], [174.5, 389.5], [174.5, 330.5], [134.5, 329.5], [126.5, 329.5], [125.5, 346.5], [133.5, 344.5]]}, {"id": "twpee2", "submitted_by": "EmberBaban", "name": "The Tortoise Trainer", "description": "The Tortoise Trainer is a painting by Osman Hamdi Bey, with a first version created in 1906 and a second in 1907. Hamdi's painting of an anachronistic historical character attempting to train tortoises is usually interpreted as a satire on the slow and ineffective attempts at reforming the Ottoman Empire.", "website": "", "subreddit": "", "center": [1133.5, 187.5], "path": [[1071.5, 248.5], [1072.5, 121.5], [1162.5, 121.5], [1163.5, 132.5], [1195.5, 129.5], [1195.5, 251.5]]}, {"id": "twpeak", "submitted_by": "th3_fish_", "name": "watchdominion.org", "description": "Link to a documentary about the animal exploitation industry. Created by animal rights activists.", "website": "", "subreddit": "/r/vegan_place", "center": [1969.5, 902.5], "path": [[1939.5, 887.5], [1939.5, 916.5], [1999.5, 916.5], [1999.5, 887.5]]}, @@ -444,10 +419,8 @@ {"id": "twpbe0", "submitted_by": "Bane_SRB", "name": "Serbia", "description": "Image of the flag of Serbia, with the face of Nikola Tesla.", "website": "", "subreddit": "/r/Serbia", "center": [200.5, 364.5], "path": [[176.5, 344.5], [224.5, 344.5], [224.5, 384.5], [176.5, 384.5], [176.5, 344.5]]}, {"id": "twpbdl", "submitted_by": "Rj_Rajat", "name": "India (Artworks area - 2)", "description": "Indian Flag with art design includes India's National Animal - Tiger, India Gate, India's National Flower, Namaste (our greeting gesture), Himalayas and Tibet's Flag", "website": "", "subreddit": "/r/IndiaPlace", "center": [171.5, 1199.5], "path": [[0.5, 1225.5], [342.5, 1225.5], [342.5, 1172.5], [0.5, 1172.5]]}, {"id": "twpbdi", "submitted_by": "tc_vfx", "name": "The MCDM Logo", "description": "The Logo of TTRPG Company MCDM", "website": "https://www.mcdmproductions.com/", "subreddit": "/r/mattcoleville", "center": [418.5, 948.5], "path": [[407.5, 935.5], [428.5, 935.5], [428.5, 960.5], [407.5, 960.5], [407.5, 949.5]]}, -{"id": "twpb52", "submitted_by": "Great_Lettucehead", "name": "Keebkatten", "description": "This is the mascot for weebklubben at NTI Stockholm High school. (P.S. it is not supposed to have a dick)n", "website": "", "subreddit": "/r/weebklubben", "center": [0.5, 0.5], "path": []}, {"id": "twpao7", "submitted_by": "SinisterMJ", "name": "Haribo Goldbear", "description": "German Candy", "website": "https://www.haribo.com/en/products/goldbears", "subreddit": "", "center": [716.5, 1156.5], "path": [[702.5, 1172.5], [703.5, 1167.5], [705.5, 1161.5], [702.5, 1160.5], [702.5, 1157.5], [703.5, 1153.5], [702.5, 1149.5], [699.5, 1145.5], [700.5, 1141.5], [703.5, 1138.5], [705.5, 1140.5], [708.5, 1137.5], [713.5, 1139.5], [716.5, 1142.5], [716.5, 1144.5], [722.5, 1149.5], [726.5, 1147.5], [731.5, 1148.5], [731.5, 1151.5], [735.5, 1153.5], [738.5, 1154.5], [738.5, 1157.5], [734.5, 1160.5], [731.5, 1160.5], [727.5, 1167.5], [725.5, 1167.5], [725.5, 1172.5]]}, {"id": "twpanj", "submitted_by": "remakker", "name": "The Starry Night and Vincent van Gogh", "description": "The Starry Night is an oil-on-canvas painting by Dutch painter Vincent van Gogh, made by r/placenl", "website": "https://en.wikipedia.org/wiki/The_Starry_Night", "subreddit": "", "center": [1482.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, 20.5], [1513.5, 19.5], [1512.5, 17.5], [1511.5, 16.5], [1511.5, 15.5], [1512.5, 14.5], [1512.5, 8.5], [1511.5, 7.5], [1510.5, 6.5], [1509.5, 5.5], [1506.5, 5.5], [1506.5, 2.5], [1468.5, 2.5]]}, -{"id": "twpan9", "submitted_by": "Teldramet", "name": "waffle", "description": "It's a waffle.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twpam4", "submitted_by": "sayakamiki649", "name": "Madoka Kaname and Homura Akemi", "description": "Protagonists from the Madoka Magica series. The hearts at the right side represents the rest of the main cast (Madoka=Pink, Homura=Purple, Sayaka Miki Blue, Kyouko Sakura=Red, Mami Tomoe=Yellow)", "website": "", "subreddit": "/r/madokamagica", "center": [652.5, 402.5], "path": [[635.5, 393.5], [634.5, 411.5], [669.5, 410.5], [670.5, 393.5]]}, {"id": "twpa86", "submitted_by": "Teldramet", "name": "Atomium", "description": "the Atomium is a monument in Belgium built for the 58 world fair. It represents the lattice of an iron atom", "website": "https://atomium.be/home/Index", "subreddit": "", "center": [289.5, 818.5], "path": [[280.5, 829.5], [280.5, 826.5], [280.5, 824.5], [278.5, 822.5], [278.5, 820.5], [280.5, 818.5], [281.5, 818.5], [281.5, 815.5], [280.5, 815.5], [278.5, 813.5], [278.5, 811.5], [280.5, 809.5], [282.5, 809.5], [283.5, 810.5], [284.5, 810.5], [284.5, 809.5], [289.5, 805.5], [289.5, 798.5], [293.5, 798.5], [293.5, 802.5], [289.5, 802.5], [289.5, 805.5], [290.5, 805.5], [292.5, 808.5], [293.5, 808.5], [295.5, 810.5], [296.5, 809.5], [298.5, 809.5], [300.5, 811.5], [300.5, 813.5], [297.5, 815.5], [297.5, 818.5], [298.5, 818.5], [300.5, 820.5], [300.5, 822.5], [297.5, 824.5], [297.5, 825.5], [298.5, 826.5], [298.5, 829.5]]}, {"id": "twpa7h", "submitted_by": "Joeywp", "name": "Craftventure", "description": "A virtual Minecraft Themepark opening first in April 2012", "website": "https://discord.craftventure.net", "subreddit": "", "center": [1610.5, 200.5], "path": [[1606.5, 197.5], [1613.5, 197.5], [1613.5, 203.5], [1606.5, 203.5], [1606.5, 197.5]]}, @@ -459,19 +432,16 @@ {"id": "twp9ek", "submitted_by": "Sp3ctraZ", "name": "Terraria Art (Moments before Destruction)", "description": "A small depiction of Terraria Art which included the Player and the r/Terraria logo.", "website": "https://www.reddit.com/r/Terraria/", "subreddit": "", "center": [398.5, 1903.5], "path": [[418.5, 1889.5], [418.5, 1917.5], [379.5, 1916.5], [378.5, 1889.5]]}, {"id": "twp96z", "submitted_by": "Teldramet", "name": "Duvel", "description": "Duvel is a strong Belgian beer, seen here being poured down the gullet of the german adler.", "website": "https://en.wikipedia.org/wiki/Duvel_Moortgat_Brewery#Duvel", "subreddit": "", "center": [268.5, 822.5], "path": [[264.5, 811.5], [263.5, 812.5], [263.5, 814.5], [262.5, 815.5], [261.5, 816.5], [261.5, 818.5], [259.5, 818.5], [259.5, 819.5], [258.5, 820.5], [258.5, 821.5], [259.5, 821.5], [259.5, 823.5], [260.5, 824.5], [260.5, 825.5], [261.5, 825.5], [261.5, 826.5], [258.5, 829.5], [261.5, 829.5], [262.5, 827.5], [265.5, 827.5], [266.5, 828.5], [269.5, 825.5], [269.5, 823.5], [270.5, 823.5], [272.5, 821.5], [273.5, 822.5], [273.5, 823.5], [274.5, 823.5], [273.5, 825.5], [274.5, 828.5], [272.5, 830.5], [273.5, 832.5], [279.5, 837.5], [280.5, 836.5], [276.5, 830.5], [276.5, 825.5], [275.5, 824.5], [275.5, 820.5], [270.5, 815.5], [268.5, 815.5], [268.5, 814.5], [267.5, 813.5], [265.5, 811.5]]}, {"id": "twp8vh", "submitted_by": "Rj_Rajat", "name": "India (Artworks area - 1)", "description": "Indian Flag with art design includes ISRO - Indian Space Research Organization, a rocket launch, India's National Bird - Peacock, Meenakshi Temple, Taj Mahal and an Indian Elephant", "website": "", "subreddit": "/r/IndiaPlace", "center": [372.5, 315.5], "path": [[250.5, 298.5], [237.5, 298.5], [237.5, 343.5], [536.5, 343.5], [536.5, 298.5], [293.5, 298.5], [293.5, 252.5], [250.5, 252.5]]}, -{"id": "twp8mq", "submitted_by": "sad_lagoon", "name": "Subnautica", "description": "An exploration and survival video game.", "website": "https://unknownworlds.com/subnautica/", "subreddit": "/r/subnautica", "center": [0.5, 0.5], "path": []}, {"id": "twp8lz", "submitted_by": "Ryan_diaz1", "name": "TGV POS High speed train", "description": "Piece showing the front of a French TGV POS high speed train, depicted as having good cell service unlike it's neighbor", "website": "", "subreddit": "", "center": [453.5, 854.5], "path": [[434.5, 865.5], [434.5, 843.5], [471.5, 843.5], [471.5, 855.5], [477.5, 865.5], [477.5, 865.5]]}, {"id": "twp81l", "submitted_by": "SinisterMJ", "name": "Gol D.Roger", "description": "Gol D. Roger laughed when he saw the treasure left behind by Joy Boy", "website": "https://onepiece.fandom.com/wiki/Gol_D._Roger", "subreddit": "/r/onepiece", "center": [1662.5, 1271.5], "path": [[1600.5, 1200.5], [1724.5, 1200.5], [1722.5, 1357.5], [1686.5, 1357.5], [1685.5, 1326.5], [1663.5, 1321.5], [1625.5, 1335.5], [1607.5, 1359.5], [1600.5, 1359.5], [1600.5, 1200.5]]}, {"id": "twp7x2", "submitted_by": "jahdhjksasthmor", "name": "The Batter", "description": "The Batter is the protagonist from the 2008 video game OFF, by Mortis Ghost.", "website": "https://www.zchr.org/off.html", "subreddit": "/r/offthegame", "center": [1912.5, 776.5], "path": [[1905.5, 761.5], [1905.5, 791.5], [1919.5, 792.5], [1919.5, 761.5]]}, -{"id": "twp7tf", "submitted_by": "Teldramet", "name": "Fuck AFD", "description": "Alternative F\u00fcr Deutschland is an extremist right wing party in Germany. They deserve to be ridiculed.", "website": "https://en.wikipedia.org/wiki/Alternative_for_Germany", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twp7pm", "submitted_by": "Kaneki_KonnoY", "name": "Tarik", "description": "Ex-CSGO pro (now Twitch star) who's a W Friend that plays valorant", "website": "http://SaveTheTarik.com", "subreddit": "/r/tarik", "center": [1751.5, 1656.5], "path": [[1719.5, 1612.5], [1782.5, 1612.5], [1782.5, 1699.5], [1719.5, 1699.5]]}, -{"id": "twp7es", "submitted_by": "MilkyTough", "name": "Warrior Cat Clan Symbols", "description": "The clan symbols of RiverClan [blue], WindClan [green], and ShadowClan [red]. These clans belond to a somewhat famous book series called Warrior Cats made by Erin Hunter. The logos were made by the WCUE community, which is an experience on Roblox where you play as one of these cats and role-play as a clan, rogue or loner. ThunderClan was here [yellow] and was built back on the left minutes after the creator of the art on the left of the symbols said we could rebuild.", "website": "", "subreddit": "/r/wcueroblox", "center": [ 1463.5, 1485.5 ], "path": [ [ 1436.5, 1472.5 ], [ 1489.5, 1472.5 ], [ 1489.5, 1497.5 ], [ 1436.5, 1497.5 ], [ 1436.5, 1472.5 ] ] }, +{"id": "twp7es", "submitted_by": "MilkyTough", "name": "Warrior Cat Clan Symbols", "description": "The clan symbols of RiverClan [blue], WindClan [green], and ShadowClan [red]. These clans belond to a somewhat famous book series called Warrior Cats made by Erin Hunter. The logos were made by the WCUE community, which is an experience on Roblox where you play as one of these cats and role-play as a clan, rogue or loner. ThunderClan was here [yellow] and was built back on the left minutes after the creator of the art on the left of the symbols said we could rebuild.", "website": "", "subreddit": "/r/wcueroblox", "center": [1463.5, 1485.5], "path": [[1436.5, 1472.5], [1489.5, 1472.5], [1489.5, 1497.5], [1436.5, 1497.5], [1436.5, 1472.5]]}, {"id": "twp78r", "submitted_by": "22cheez", "name": "Path of Exile", "description": "A dark fantasy online action role-playing game by Grinding Gear Games. The Mirror of Kalandra (center), Nervyr's logo (bottom left), a map (right), and NeverSink's FilterBlade styling for an exalted and chaos orb (bottom).", "website": "", "subreddit": "/r/pathofexile", "center": [1403.5, 467.5], "path": [[1364.5, 446.5], [1364.5, 446.5], [1424.5, 446.5], [1424.5, 446.5], [1424.5, 459.5], [1424.5, 459.5], [1429.5, 459.5], [1429.5, 459.5], [1432.5, 462.5], [1432.5, 462.5], [1432.5, 490.5], [1432.5, 490.5], [1384.5, 490.5], [1384.5, 490.5], [1384.5, 473.5], [1384.5, 473.5], [1380.5, 473.5], [1380.5, 473.5], [1380.5, 456.5], [1380.5, 456.5], [1364.5, 456.5], [1364.5, 446.5]]}, -{"id": "twp6v0", "submitted_by": "Uniquenessisuseless", "name": "Saab JAS 39 Gripen", "description": "Iconic swedish warplane", "website": "https://en.wikipedia.org/wiki/Saab_JAS_39_Gripen", "subreddit": "", "center": [623.5, 56.5], "path": [[611.5, 55.5], [606.5, 62.5], [602.5, 61.5], [603.5, 65.5], [614.5, 70.5], [614.5, 68.5], [618.5, 67.5], [618.5, 69.5], [621.5, 69.5], [621.5, 66.5], [624.5, 65.5], [626.5, 67.5], [630.5, 66.5], [643.5, 66.5], [645.5, 68.5], [652.5, 70.5], [655.5, 69.5], [653.5, 66.5], [643.5, 59.5], [640.5, 57.5], [639.5, 51.5], [637.5, 52.5], [636.5, 53.5], [636.5, 55.5], [635.5, 55.5], [635.5, 51.5], [635.5, 48.5], [633.5, 48.5], [633.5, 45.5], [636.5, 45.5], [635.5, 43.5], [621.5, 36.5], [621.5, 38.5], [626.5, 42.5], [618.5, 50.5], [609.5, 43.5], [607.5, 44.5], [608.5, 47.5], [587.5, 35.5], [585.5, 36.5], [608.5, 51.5], [612.5, 56.5]]}, -{"id": "twp6cg", "submitted_by": "Teldramet", "name": "Statue of Ambiorix", "description": "Ambiorix was a leader of the Eburones, a Gallic tribe that lived in what low is Belgium.", "website": "https://en.wikipedia.org/wiki/Ambiorix", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "twp61m", "submitted_by": "Sp3ctraZ", "name": "Vargfren (Vargskelethor/Vinesauce Joel)", "description": "A popular character in the streams of Streamer/YouTuber Vargskelethor, otherwise known as Vinesauce Joel.", "website": "fecalfunny.com", "subreddit": "", "center": [95.5, 679.5], "path": [[110.5, 687.5], [110.5, 682.5], [109.5, 680.5], [104.5, 675.5], [102.5, 676.5], [102.5, 674.5], [101.5, 673.5], [97.5, 673.5], [95.5, 672.5], [95.5, 673.5], [96.5, 674.5], [94.5, 676.5], [92.5, 674.5], [91.5, 671.5], [92.5, 669.5], [85.5, 669.5], [86.5, 674.5], [84.5, 675.5], [84.5, 677.5], [84.5, 679.5], [80.5, 682.5], [80.5, 684.5], [82.5, 686.5], [84.5, 686.5], [86.5, 684.5], [88.5, 683.5], [89.5, 683.5], [90.5, 684.5], [92.5, 682.5], [92.5, 680.5], [95.5, 677.5], [96.5, 678.5], [97.5, 679.5], [99.5, 682.5], [106.5, 687.5], [110.5, 687.5]]}, +{"id": "twp6v0", "submitted_by": "Uniquenessisuseless", "name": "Saab JAS 39 Gripen", "description": "Iconic Swedish warplane.", "website": "https://en.wikipedia.org/wiki/Saab_JAS_39_Gripen", "subreddit": "/r/sweden", "center": [623.5, 56.5], "path": [[611.5, 55.5], [606.5, 62.5], [602.5, 61.5], [603.5, 65.5], [614.5, 70.5], [614.5, 68.5], [618.5, 67.5], [618.5, 69.5], [621.5, 69.5], [621.5, 66.5], [624.5, 65.5], [626.5, 67.5], [630.5, 66.5], [643.5, 66.5], [645.5, 68.5], [652.5, 70.5], [655.5, 69.5], [653.5, 66.5], [643.5, 59.5], [640.5, 57.5], [639.5, 51.5], [637.5, 52.5], [636.5, 53.5], [636.5, 55.5], [635.5, 55.5], [635.5, 51.5], [635.5, 48.5], [633.5, 48.5], [633.5, 45.5], [636.5, 45.5], [635.5, 43.5], [621.5, 36.5], [621.5, 38.5], [626.5, 42.5], [618.5, 50.5], [609.5, 43.5], [607.5, 44.5], [608.5, 47.5], [587.5, 35.5], [585.5, 36.5], [608.5, 51.5], [612.5, 56.5]]}, +{"id": "twp61m", "submitted_by": "Sp3ctraZ", "name": "Vargfren (Vargskelethor/Vinesauce Joel)", "description": "A popular character in the streams of Streamer/YouTuber Vargskelethor, otherwise known as Vinesauce Joel.", "website": "https://fecalfunny.com", "subreddit": "", "center": [95.5, 679.5], "path": [[110.5, 687.5], [110.5, 682.5], [109.5, 680.5], [104.5, 675.5], [102.5, 676.5], [102.5, 674.5], [101.5, 673.5], [97.5, 673.5], [95.5, 672.5], [95.5, 673.5], [96.5, 674.5], [94.5, 676.5], [92.5, 674.5], [91.5, 671.5], [92.5, 669.5], [85.5, 669.5], [86.5, 674.5], [84.5, 675.5], [84.5, 677.5], [84.5, 679.5], [80.5, 682.5], [80.5, 684.5], [82.5, 686.5], [84.5, 686.5], [86.5, 684.5], [88.5, 683.5], [89.5, 683.5], [90.5, 684.5], [92.5, 682.5], [92.5, 680.5], [95.5, 677.5], [96.5, 678.5], [97.5, 679.5], [99.5, 682.5], [106.5, 687.5], [110.5, 687.5]]}, {"id": "twp61h", "submitted_by": "turbineslut", "name": "Dutch canalhouses", "description": "Typical Dutch architecture along canals in cities like Amsterdam, Utrecht and Leiden.", "website": "", "subreddit": "/r/TheNetherlands", "center": [1287.5, 24.5], "path": [[1236.5, 22.5], [1236.5, 35.5], [1338.5, 35.5], [1338.5, 22.5], [1328.5, 13.5], [1279.5, 11.5], [1253.5, 13.5], [1238.5, 19.5]]}, -{"id": "twp603", "submitted_by": "mosredna101", "name": "MNOT", "description": "Weekly podcast full of humor and tech in which nerds Floris, Jurian and Randal discuss fascinating topics with a guest nerd, while enjoying a Nerd beer.", "website": "https://www.metnerdsomtafel.nl/", "subreddit": "/r/MetNerdsomTafel", "center": [848.5, 1960.5], "path":[[841.5, 1955.5], [843.5, 1955.5], [843.5, 1954.5], [844.5, 1954.5], [844.5, 1952.5], [851.5, 1952.5], [851.5, 1954.5], [852.5, 1954.5], [852.5, 1955.5], [854.5, 1955.5], [854.5, 1959.5], [853.5, 1959.5], [853.5, 1960.5], [852.5, 1960.5], [852.5, 1966.5], [851.5, 1966.5], [851.5, 1967.5], [844.5, 1967.5], [844.5, 1966.5], [843.5, 1966.5], [843.5, 1960.5], [842.5, 1960.5], [842.5, 1959.5], [841.5, 1959.5]]}, +{"id": "twp603", "submitted_by": "mosredna101", "name": "MNOT", "description": "Weekly podcast full of humor and tech in which nerds Floris, Jurian and Randal discuss fascinating topics with a guest nerd, while enjoying a Nerd beer.", "website": "https://www.metnerdsomtafel.nl/", "subreddit": "/r/MetNerdsomTafel", "center": [848.5, 1960.5], "path": [[841.5, 1955.5], [843.5, 1955.5], [843.5, 1954.5], [844.5, 1954.5], [844.5, 1952.5], [851.5, 1952.5], [851.5, 1954.5], [852.5, 1954.5], [852.5, 1955.5], [854.5, 1955.5], [854.5, 1959.5], [853.5, 1959.5], [853.5, 1960.5], [852.5, 1960.5], [852.5, 1966.5], [851.5, 1966.5], [851.5, 1967.5], [844.5, 1967.5], [844.5, 1966.5], [843.5, 1966.5], [843.5, 1960.5], [842.5, 1960.5], [842.5, 1959.5], [841.5, 1959.5]]}, {"id": "twp5xn", "submitted_by": "Petoexe", "name": "Ale \u010dau (read ah-leh chau)", "description": "The slogan of a slovak youtuber/streamer known as Duklock", "website": "https://youtube.com/c/Duklock", "subreddit": "/r/Duklock", "center": [1356.5, 150.5], "path": [[1348.5, 140.5], [1363.5, 140.5], [1363.5, 161.5], [1349.5, 160.5]]}, {"id": "twp5vg", "submitted_by": "lewinsideofficial", "name": "Das Sandm\u00e4nnchen", "description": "Das Sandm\u00e4nnchen is a German children's bedtime television programme using stop motion animation.", "website": "", "subreddit": "", "center": [488.5, 849.5], "path": [[482.5, 865.5], [477.5, 862.5], [481.5, 856.5], [473.5, 851.5], [472.5, 846.5], [482.5, 834.5], [490.5, 830.5], [494.5, 830.5], [490.5, 832.5], [492.5, 835.5], [495.5, 836.5], [500.5, 840.5], [502.5, 846.5], [499.5, 850.5], [491.5, 856.5], [498.5, 856.5], [502.5, 850.5], [507.5, 853.5], [504.5, 858.5], [499.5, 862.5], [496.5, 863.5], [495.5, 865.5]]}, {"id": "twp5i8", "submitted_by": "ostensacken", "name": "Springbok", "description": "The national animal of South Africa, seen here perched on the head of Nelson Mandela. Once extremely common, its population has been reduced by hunting and poaching.", "website": "", "subreddit": "/r/southafrica", "center": [739.5, 994.5], "path": [[737.5, 1007.5], [736.5, 1006.5], [736.5, 1005.5], [735.5, 1003.5], [734.5, 1003.5], [734.5, 1001.5], [731.5, 1001.5], [730.5, 1000.5], [729.5, 999.5], [728.5, 998.5], [729.5, 997.5], [731.5, 997.5], [733.5, 998.5], [734.5, 1000.5], [735.5, 998.5], [734.5, 997.5], [734.5, 996.5], [734.5, 996.5], [733.5, 995.5], [731.5, 995.5], [730.5, 994.5], [729.5, 994.5], [729.5, 993.5], [730.5, 992.5], [731.5, 992.5], [732.5, 991.5], [731.5, 990.5], [730.5, 989.5], [729.5, 988.5], [729.5, 987.5], [728.5, 986.5], [728.5, 985.5], [729.5, 984.5], [730.5, 983.5], [731.5, 983.5], [732.5, 983.5], [731.5, 985.5], [731.5, 984.5], [731.5, 984.5], [731.5, 985.5], [731.5, 986.5], [732.5, 986.5], [733.5, 987.5], [734.5, 987.5], [735.5, 988.5], [735.5, 989.5], [736.5, 989.5], [736.5, 989.5], [737.5, 989.5], [738.5, 988.5], [738.5, 987.5], [737.5, 987.5], [737.5, 985.5], [736.5, 985.5], [736.5, 984.5], [736.5, 983.5], [735.5, 983.5], [738.5, 983.5], [739.5, 984.5], [738.5, 984.5], [740.5, 985.5], [739.5, 985.5], [740.5, 986.5], [741.5, 987.5], [742.5, 988.5], [744.5, 988.5], [745.5, 988.5], [745.5, 989.5], [747.5, 989.5], [748.5, 989.5], [747.5, 990.5], [749.5, 990.5], [750.5, 991.5], [750.5, 994.5], [749.5, 994.5], [749.5, 995.5], [748.5, 995.5], [748.5, 995.5], [747.5, 995.5], [747.5, 996.5], [746.5, 996.5], [746.5, 997.5], [747.5, 999.5], [747.5, 1000.5], [747.5, 1001.5], [748.5, 1001.5], [748.5, 1002.5], [747.5, 1002.5], [746.5, 1001.5], [746.5, 1000.5], [745.5, 1001.5], [745.5, 1002.5], [744.5, 1001.5], [743.5, 1002.5], [742.5, 1002.5], [743.5, 1003.5], [744.5, 1003.5], [741.5, 1003.5], [740.5, 1003.5], [740.5, 1004.5], [738.5, 1004.5], [738.5, 1005.5], [738.5, 1006.5], [737.5, 1006.5], [737.5, 1004.5]]}, @@ -500,8 +470,7 @@ {"id": "twp1z8", "submitted_by": "Sp3ctraZ", "name": "ICM Train & Tulips", "description": "A standard ICM (Intercity Material).", "website": "https://en.wikipedia.org/wiki/NS_Intercity_Materieel", "subreddit": "", "center": [516.5, 7.5], "path": [[442.5, 0.5], [438.5, 3.5], [438.5, 11.5], [439.5, 12.5], [442.5, 13.5], [593.5, 13.5], [593.5, 0.5], [442.5, 0.5]]}, {"id": "twp1qc", "submitted_by": "arkinsis", "name": "Terrene Protectorate", "description": "Icon of the Terrene Protectorate, a multi-species coalition from the indie game Starbound to train graduates to protect and lend aid across the known universe.\nr/starbound allied with r/ena leading to the creation of the ENA Alliance, later joining efforts with the Green Lattice and the United Factions of r/Place.", "website": "https://playstarbound.com/", "subreddit": "/r/starbound", "center": [1123.5, 390.5], "path": [[1116.5, 392.5], [1116.5, 389.5], [1119.5, 389.5], [1119.5, 385.5], [1128.5, 386.5], [1128.5, 389.5], [1129.5, 389.5], [1129.5, 393.5], [1116.5, 393.5]]}, {"id": "twp1n7", "submitted_by": "Asmuni", "name": "Logo BTS", "description": "Logo of group BTS plus an Army Bomb lightstick.", "website": "", "subreddit": "/r/Bangtan", "center": [250.5, 686.5], "path": [[241.5, 698.5], [259.5, 698.5], [259.5, 672.5], [250.5, 676.5], [241.5, 672.5]]}, -{"id": "twp17x", "submitted_by": "ostensacken", "name": "Sneed's Feed and Seed (Formerly Chuck's)", "description": "This piece represents a joke and popular meme from Season 11 episode 5 of The Simpsons. Mostly organized by the /b/ board on 4chan.", "website": "4chan.org/b/", "subreddit": "/r/sneedposting", "center": [1749.5, 885.5], "path": [[1717.5, 870.5], [1719.5, 902.5], [1748.5, 902.5], [1749.5, 901.5], [1771.5, 900.5], [1772.5, 899.5], [1772.5, 894.5], [1772.5, 892.5], [1772.5, 891.5], [1773.5, 890.5], [1775.5, 889.5], [1778.5, 889.5], [1779.5, 890.5], [1780.5, 891.5], [1781.5, 890.5], [1782.5, 889.5], [1783.5, 888.5], [1784.5, 888.5], [1784.5, 885.5], [1784.5, 873.5], [1784.5, 869.5], [1718.5, 870.5]]}, -{"id": "twp0ss", "submitted_by": "Petoexe", "name": "Hitcircle", "description": "One of the circles you click in osu!", "website": "https://osu.ppy.sh", "subreddit": "/r/osuplace", "center": [737.5, 1713.5], "path": [[742.5, 1694.5], [731.5, 1693.5], [728.5, 1697.5], [723.5, 1699.5], [718.5, 1704.5], [717.5, 1711.5], [718.5, 1719.5], [722.5, 1726.5], [730.5, 1731.5], [746.5, 1731.5], [755.5, 1723.5], [757.5, 1714.5], [756.5, 1706.5], [751.5, 1699.5], [744.5, 1695.5], [746.5, 1695.5]]}, +{"id": "twp17x", "submitted_by": "ostensacken", "name": "Sneed's Feed and Seed (Formerly Chuck's)", "description": "This piece represents a joke and popular meme from Season 11 episode 5 of The Simpsons. Mostly organized by the /b/ board on 4chan.", "website": "https://4chan.org/b/", "subreddit": "/r/sneedposting", "center": [1749.5, 885.5], "path": [[1717.5, 870.5], [1719.5, 902.5], [1748.5, 902.5], [1749.5, 901.5], [1771.5, 900.5], [1772.5, 899.5], [1772.5, 894.5], [1772.5, 892.5], [1772.5, 891.5], [1773.5, 890.5], [1775.5, 889.5], [1778.5, 889.5], [1779.5, 890.5], [1780.5, 891.5], [1781.5, 890.5], [1782.5, 889.5], [1783.5, 888.5], [1784.5, 888.5], [1784.5, 885.5], [1784.5, 873.5], [1784.5, 869.5], [1718.5, 870.5]]}, {"id": "twp0k2", "submitted_by": "Chinese__T", "name": "Octavarium Newton's Cradle", "description": "Album art from the progressive metal band Dream Theater's 2005 album, Octavarium. This art was unfinished before it was consumed by bratishkinoff's My Little Pony artwork raid.", "website": "https://dreamtheater.net/", "subreddit": "/r/dreamtheater", "center": [896.5, 1669.5], "path": [[890.5, 1662.5], [902.5, 1662.5], [902.5, 1675.5], [890.5, 1675.5]]}, {"id": "twozx7", "submitted_by": "_MicrosoftExcel_", "name": "Flairwars Logo", "description": "Flairwars is an online reddit-based game where users are split into 6 teams, and then compete by raiding and defending one another.", "website": "https://www.flairwars.com/", "subreddit": "/r/flairwars", "center": [502.5, 1819.5], "path": [[492.5, 1814.5], [509.5, 1814.5], [509.5, 1817.5], [511.5, 1817.5], [511.5, 1815.5], [512.5, 1815.5], [512.5, 1814.5], [515.5, 1814.5], [515.5, 1816.5], [514.5, 1816.5], [514.5, 1818.5], [513.5, 1818.5], [513.5, 1820.5], [512.5, 1820.5], [512.5, 1822.5], [511.5, 1822.5], [511.5, 1823.5], [510.5, 1823.5], [510.5, 1825.5], [509.5, 1825.5], [509.5, 1826.5], [506.5, 1826.5], [506.5, 1823.5], [504.5, 1823.5], [504.5, 1825.5], [503.5, 1825.5], [503.5, 1826.5], [500.5, 1826.5], [500.5, 1821.5], [494.5, 1821.5], [494.5, 1823.5], [493.5, 1823.5], [493.5, 1826.5], [490.5, 1826.5], [490.5, 1822.5], [491.5, 1822.5], [491.5, 1817.5], [492.5, 1817.5], [492.5, 1814.5]]}, {"id": "twoztm", "submitted_by": "MarUlberg", "name": "Leaves From The Vine", "description": "YouTube streamer Ludwig opened dialog with the French streamers in an attempt to acquire some real estate. The French agreed to let him have the spot they were trying to take from the Spanish and helped him black it out.nLudwig then used his chat to build a very nice art of One Piece's Nami in a Bikini, but the people quickly decided to remove the bikini and make her lactate. After a penis was drawn in between her boobs Ludwig decided to again black out the square and rebuild this scene from Tales Of Ba Sing Se episode of Avatar: The Last Airbender. The art continued to evolve after Ludwig moved on with support from the r/ATLA community and saw minimal sabotage throughout the remaining time.", "website": "https://www.youtube.com/c/Ludwigahgren", "subreddit": "/r/ATLA", "center": [1415.5, 1555.5], "path": [[1332.5, 1498.5], [1498.5, 1498.5], [1498.5, 1611.5], [1332.5, 1611.5]]}, @@ -514,8 +483,7 @@ {"id": "twoyf1", "submitted_by": "Asmuni", "name": "Whale", "description": "Purple whale representing the group BTS.", "website": "", "subreddit": "/r/bangtan", "center": [1913.5, 1200.5], "path": [[1885.5, 1175.5], [1884.5, 1171.5], [1885.5, 1227.5], [1941.5, 1225.5], [1941.5, 1172.5]]}, {"id": "twoy9m", "submitted_by": "TimvandenOever", "name": "Compositie met groot rood vlak, geel, zwart, grijs en blauw by Piet Mondrian", "description": "A painting by Piet Mondrian known for his world-famous 'de stijl' art movement. This abstract painting can be viewed in real life in Kunstmuseum Den Haag", "website": "https://en.wikipedia.org/wiki/Piet_Mondrian", "subreddit": "/r/placenl", "center": [1434.5, 17.5], "path": [[1421.5, 4.5], [1447.5, 4.5], [1447.5, 29.5], [1421.5, 29.5]]}, {"id": "twoy1k", "submitted_by": "N0ZTRA", "name": "Bedge", "description": "Twitch third party emote of Pepe getting a good nights rest. 2022 shading included.", "website": "", "subreddit": "", "center": [1366.5, 1023.5], "path": [[1353.5, 999.5], [1352.5, 1000.5], [1352.5, 1001.5], [1351.5, 1001.5], [1349.5, 1003.5], [1349.5, 1004.5], [1348.5, 1005.5], [1347.5, 1006.5], [1347.5, 1007.5], [1346.5, 1007.5], [1346.5, 1009.5], [1344.5, 1011.5], [1344.5, 1020.5], [1345.5, 1020.5], [1345.5, 1029.5], [1343.5, 1029.5], [1343.5, 1030.5], [1342.5, 1031.5], [1342.5, 1032.5], [1344.5, 1035.5], [1344.5, 1036.5], [1345.5, 1037.5], [1346.5, 1038.5], [1346.5, 1041.5], [1345.5, 1043.5], [1390.5, 1043.5], [1390.5, 1027.5], [1389.5, 1027.5], [1389.5, 1025.5], [1388.5, 1025.5], [1388.5, 1021.5], [1384.5, 1021.5], [1384.5, 1018.5], [1385.5, 1018.5], [1385.5, 1008.5], [1382.5, 1005.5], [1381.5, 1005.5], [1380.5, 1004.5], [1379.5, 1003.5], [1379.5, 1002.5], [1377.5, 1000.5], [1376.5, 999.5]]}, -{"id": "twoxlf", "submitted_by": "richguy777", "name": "John Dillermand", "description": "John Dillermand is a Danish stop motion animated children's television series about a man and his very long penis. Part of the independent Denmark project with permission from r/place_nordicunion", "website": "", "subreddit": "/r/Denmark", "center": [438.5, 222.5], "path": [[552.5, 252.5], [554.5, 252.5], [554.5, 253.5], [555.5, 253.5], [555.5, 254.5], [556.5, 254.5], [556.5, 255.5], [557.5, 255.5], [557.5, 256.5], [558.5, 256.5], [558.5, 261.5], [557.5, 261.5], [557.5, 262.5], [556.5, 262.5], [556.5, 263.5], [556.5, 264.5], [560.5, 264.5], [560.5, 256.5], [561.5, 256.5], [561.5, 254.5], [563.5, 254.5], [563.5, 256.5], [564.5, 256.5], [564.5, 266.5], [562.5, 266.5], [562.5, 267.5], [560.5, 267.5], [560.5, 268.5], [559.5, 268.5], [559.5, 276.5], [560.5, 276.5], [560.5, 282.5], [562.5, 282.5], [562.5, 283.5], [563.5, 283.5], [563.5, 285.5], [555.5, 285.5], [555.5, 289.5], [541.5, 289.5], [541.5, 297.5], [539.5, 297.5], [539.5, 298.5], [433.5, 298.5], [433.5, 171.5], [340.5, 171.5], [340.5, 135.5], [277.5, 135.5], [271.5, 130.5], [271.5, 106.5], [275.5, 106.5], [275.5, 129.5], [277.5, 131.5], [342.5, 131.5], [344.5, 133.5], [344.5, 167.5], [435.5, 167.5], [437.5, 169.5], [437.5, 294.5], [537.5, 294.5], [537.5, 286.5], [538.5, 285.5], [543.5, 285.5], [543.5, 283.5], [544.5, 282.5], [546.5, 282.5], [546.5, 276.5], [547.5, 275.5], [547.5, 269.5], [545.5, 267.5], [544.5, 267.5], [542.5, 265.5], [542.5, 256.5], [543.5, 255.5], [543.5, 254.5], [545.5, 254.5], [545.5, 256.5], [546.5, 256.5], [546.5, 263.5], [547.5, 264.5], [549.5, 264.5], [549.5, 262.5], [548.5, 262.5], [548.5, 257.5], [549.5, 257.5], [549.5, 256.5], [549.5, 255.5], [550.5, 255.5], [550.5, 254.5], [551.5, 254.5], [551.5, 253.5], [552.5, 253.5], [552.5, 252.5], [554.5, 252.5]]}, -{"id": "twoxit", "submitted_by": "Petoexe", "name": "WYSI (When you see it)", "description": "The hand of a famous osu! player Aireu when he saw the number 727", "website": "https://osu.ppy.sh", "subreddit": "/r/osuplace", "center": [627.5, 1487.5], "path": [[593.5, 1453.5], [591.5, 1522.5], [661.5, 1521.5], [662.5, 1453.5]]}, +{"id": "twoxlf", "submitted_by": "richguy777", "name": "John Dillermand", "description": "John Dillermand is a Danish stop-motion animated children's television series about a man and his very long penis. Part of the independent Denmark project with permission from r/place_nordicunion", "website": "https://en.wikipedia.org/wiki/John_Dillermand", "subreddit": "/r/Denmark", "center": [438.5, 222.5], "path": [[552.5, 252.5], [554.5, 252.5], [554.5, 253.5], [555.5, 253.5], [555.5, 254.5], [556.5, 254.5], [556.5, 255.5], [557.5, 255.5], [557.5, 256.5], [558.5, 256.5], [558.5, 261.5], [557.5, 261.5], [557.5, 262.5], [556.5, 262.5], [556.5, 263.5], [556.5, 264.5], [560.5, 264.5], [560.5, 256.5], [561.5, 256.5], [561.5, 254.5], [563.5, 254.5], [563.5, 256.5], [564.5, 256.5], [564.5, 266.5], [562.5, 266.5], [562.5, 267.5], [560.5, 267.5], [560.5, 268.5], [559.5, 268.5], [559.5, 276.5], [560.5, 276.5], [560.5, 282.5], [562.5, 282.5], [562.5, 283.5], [563.5, 283.5], [563.5, 285.5], [555.5, 285.5], [555.5, 289.5], [541.5, 289.5], [541.5, 297.5], [539.5, 297.5], [539.5, 298.5], [433.5, 298.5], [433.5, 171.5], [340.5, 171.5], [340.5, 135.5], [277.5, 135.5], [271.5, 130.5], [271.5, 106.5], [275.5, 106.5], [275.5, 129.5], [277.5, 131.5], [342.5, 131.5], [344.5, 133.5], [344.5, 167.5], [435.5, 167.5], [437.5, 169.5], [437.5, 294.5], [537.5, 294.5], [537.5, 286.5], [538.5, 285.5], [543.5, 285.5], [543.5, 283.5], [544.5, 282.5], [546.5, 282.5], [546.5, 276.5], [547.5, 275.5], [547.5, 269.5], [545.5, 267.5], [544.5, 267.5], [542.5, 265.5], [542.5, 256.5], [543.5, 255.5], [543.5, 254.5], [545.5, 254.5], [545.5, 256.5], [546.5, 256.5], [546.5, 263.5], [547.5, 264.5], [549.5, 264.5], [549.5, 262.5], [548.5, 262.5], [548.5, 257.5], [549.5, 257.5], [549.5, 256.5], [549.5, 255.5], [550.5, 255.5], [550.5, 254.5], [551.5, 254.5], [551.5, 253.5], [552.5, 253.5], [552.5, 252.5], [554.5, 252.5]]}, {"id": "twox10", "submitted_by": "Spinomantus", "name": "South African Flag", "description": "The flag of South Africa including many of cultural symbols of the country", "website": "", "subreddit": "", "center": [751.5, 1015.5], "path": [[720.5, 963.5], [721.5, 962.5], [721.5, 1067.5], [780.5, 1067.5], [780.5, 963.5], [780.5, 962.5], [722.5, 962.5]]}, {"id": "twox0x", "submitted_by": "ostensacken", "name": "Flag of Barbados", "description": "The flag of Barbados, in close proximity to the flag of Guyana. Barbados is a small island nation in the Caribbean.", "website": "", "subreddit": "/r/barbados", "center": [959.5, 1382.5], "path": [[952.5, 1377.5], [966.5, 1377.5], [966.5, 1387.5], [952.5, 1387.5]]}, {"id": "twowxm", "submitted_by": "FamousPlan101", "name": "r/citieswar", "description": "A browser game on google maps. www.citieswar.com/tutorial for tutorial.", "website": "https://www.citieswar.com", "subreddit": "/r/citieswar", "center": [426.5, 1639.5], "path": [[409.5, 1642.5], [410.5, 1640.5], [406.5, 1640.5], [401.5, 1642.5], [452.5, 1642.5], [451.5, 1635.5], [403.5, 1635.5], [397.5, 1639.5]]}, @@ -551,7 +519,6 @@ {"id": "tworh3", "submitted_by": "ostensacken", "name": "Ljud & Bildskolan", "description": "Ljud & Bildskolan (Audio and Visual School) is a Swedish high school founded in 1993.", "website": "", "subreddit": "", "center": [789.5, 1118.5], "path": [[782.5, 1115.5], [795.5, 1115.5], [795.5, 1120.5], [795.5, 1121.5], [782.5, 1121.5]]}, {"id": "twoqvg", "submitted_by": "Ok-Distribution-1336", "name": "Technoblade", "description": "A Minecraft youtuber that is known for his competitiveness and funny humor and also part of the dsmp", "website": "", "subreddit": "/r/Technoblade", "center": [222.5, 1080.5], "path": [[189.5, 1039.5], [254.5, 1039.5], [254.5, 1122.5], [190.5, 1122.5]]}, {"id": "twoqne", "submitted_by": "Cargo_Commando", "name": "King Crimson - Beat", "description": "A miniature illustration of the cover of King Crimson's 1982 album, Beat. It was agreed Between King Crimson and the Anime Alliance that a music note could be built between Gon and BU, in exchange for King Crimson moving their 'Schizoid Man' illustration 50 pixels right of it's original position. After one day and 2 failed attempts, the music note was finally built at 1:20 PM PST April 4th and stood there until the end", "website": "https://www.dgmlive.com/king-crimson", "subreddit": "/r/KingCrimson", "center": [1707.5, 1196.5], "path": [[1709.5, 1199.5], [1709.5, 1192.5], [1705.5, 1192.5], [1705.5, 1194.5], [1706.5, 1195.5], [1706.5, 1196.5], [1705.5, 1197.5], [1705.5, 1199.5]]}, -{"id": "twod6v", "submitted_by": "zpjester", "name": "Mars", "description": "Larger version of Mars", "website": "", "subreddit": "/r/spaceXPlace", "center": [0.5, 0.5], "path": []}, {"id": "twod4d", "submitted_by": "carpinx", "name": "Obelisco de Buenos Aires", "description": "The Obelisco de Buenos Aires (Obelisk of Buenos Aires) is a national historic monument and icon of Buenos Aires.", "website": "", "subreddit": "/r/Argentina", "center": [1126.5, 641.5], "path": [[1124.5, 655.5], [1129.5, 655.5], [1127.5, 624.5], [1124.5, 624.5], [1124.5, 655.5]]}, {"id": "twoczd", "submitted_by": "Virtual_Cheek_7633", "name": "Flandre Scarlet", "description": "A character from Touhou 6 Embodiment of Scarlet Devil", "website": "https://youtu.be/iSNfKxfhMnc", "subreddit": "/r/touhou", "center": [1638.5, 1468.5], "path": [[1621.5, 1451.5], [1654.5, 1451.5], [1654.5, 1484.5], [1621.5, 1484.5]]}, {"id": "twock2", "submitted_by": "carpinx", "name": "San Mart\u00edn crossing the Andes", "description": "The Crossing of the Andes (Spanish: Cruce de los Andes) was one of the most important feats in the Argentine and Chilean wars of independence, in which a combined army of Argentine soldiers and Chilean exiles invaded Chile leading to Chile's liberation from Spanish rule. The crossing of the Andes was a major step in the strategy devised by Jos\u00e9 de San Mart\u00edn to defeat the royalist forces at their stronghold of Lima, Viceroyalty of Per\u00fa, and secure the Spanish American independence movements.", "website": "", "subreddit": "/r/Argentina", "center": [1250.5, 652.5], "path": [[1200.5, 664.5], [1199.5, 658.5], [1196.5, 656.5], [1199.5, 650.5], [1207.5, 645.5], [1213.5, 648.5], [1212.5, 654.5], [1216.5, 657.5], [1225.5, 648.5], [1225.5, 646.5], [1229.5, 645.5], [1230.5, 653.5], [1232.5, 650.5], [1233.5, 644.5], [1238.5, 644.5], [1238.5, 651.5], [1242.5, 646.5], [1242.5, 642.5], [1247.5, 642.5], [1246.5, 647.5], [1252.5, 640.5], [1252.5, 635.5], [1258.5, 636.5], [1257.5, 641.5], [1265.5, 634.5], [1266.5, 630.5], [1271.5, 632.5], [1269.5, 636.5], [1274.5, 641.5], [1280.5, 636.5], [1280.5, 632.5], [1286.5, 632.5], [1283.5, 636.5], [1288.5, 641.5], [1290.5, 663.5], [1202.5, 664.5]]}, @@ -560,34 +527,26 @@ {"id": "twocbz", "submitted_by": "Y_Martinaise", "name": "/r/SouthAfrica", "description": "Mural of the South African national flag displayed horizontally, featuring a mural of Nelson Mandela, the country's first democratically-elected president following the end of apartheid, and a springbok, a species of antelope which is the national animal of South Africa", "website": "", "subreddit": "/r/SouthAfrica", "center": [751.5, 1011.5], "path": [[720.5, 955.5], [720.5, 1066.5], [781.5, 1067.5], [781.5, 955.5], [781.5, 954.5], [781.5, 954.5]]}, {"id": "twocb4", "submitted_by": "Bazo_05", "name": "Hornet", "description": "Made by the Hollow Knight Community", "website": "", "subreddit": "/r/hkplace", "center": [262.5, 382.5], "path": [[225.5, 343.5], [225.5, 420.5], [299.5, 420.5], [299.5, 344.5], [299.5, 343.5]]}, {"id": "twoc8e", "submitted_by": "palapapa0201", "name": "Nitori", "description": "Nitori from Touhou Project", "website": "", "subreddit": "/r/touhou", "center": [485.5, 535.5], "path": [[469.5, 528.5], [501.5, 529.5], [501.5, 541.5], [469.5, 541.5], [469.5, 528.5]]}, -{"id": "twobtx", "submitted_by": "Youtube_Games123", "name": "The Nordic Union", "description": "A collection of flags, although most are not actually Nordic, they're just in the North.", "website": "", "subreddit": "/r/place_nordicunion", "center": [501.5, 128.5], "path": [[537.5, 294.5], [437.5, 294.5], [437.5, 167.5], [344.5, 167.5], [344.5, 158.5], [275.5, 158.5], [275.5, 134.5], [266.5, 126.5], [235.5, 126.5], [235.5, 100.5], [231.5, 100.5], [207.5, 100.5], [207.5, 94.5], [215.5, 94.5], [215.5, 35.5], [657.5, 35.5], [657.5, 70.5], [840.5, 70.5], [840.5, 67.5], [885.5, 67.5], [885.5, 69.5], [892.5, 69.5], [892.5, 88.5], [798.5, 88.5], [798.5, 119.5], [778.5, 119.5], [778.5, 137.5], [633.5, 136.5], [633.5, 201.5], [633.5, 201.5], [593.5, 201.5], [593.5, 283.5], [537.5, 283.5], [537.5, 294.5]]}, {"id": "twobr1", "submitted_by": "Nincadalop", "name": "Update TF2", "description": "A collaborative effort by the two communities of two games that share initials, game engine, and bot crisis. TF2 stands for Team Fortress 2 and Titanfall 2, two games which desperately need a security update. Subreddits: r/tf2 and r/titanfalln", "website": "", "subreddit": "", "center": [815.5, 53.5], "path": [[790.5, 35.5], [840.5, 35.5], [840.5, 70.5], [790.5, 70.5]]}, {"id": "twoboa", "submitted_by": "ziemnakiscool", "name": "pxls.space", "description": "This community is named pxls.space and got helped mostly by osu!. They moved from a italian flag to this location to prevent being crushed.", "website": "", "subreddit": "", "center": [807.5, 723.5], "path": [[776.5, 733.5], [777.5, 719.5], [784.5, 718.5], [785.5, 717.5], [778.5, 716.5], [778.5, 714.5], [783.5, 713.5], [787.5, 708.5], [790.5, 708.5], [792.5, 712.5], [790.5, 718.5], [794.5, 719.5], [793.5, 714.5], [798.5, 713.5], [804.5, 714.5], [802.5, 718.5], [804.5, 718.5], [805.5, 712.5], [802.5, 708.5], [806.5, 709.5], [808.5, 711.5], [809.5, 717.5], [811.5, 718.5], [810.5, 714.5], [813.5, 713.5], [816.5, 714.5], [817.5, 718.5], [820.5, 719.5], [818.5, 715.5], [821.5, 712.5], [822.5, 710.5], [825.5, 713.5], [825.5, 717.5], [823.5, 719.5], [825.5, 711.5], [826.5, 708.5], [828.5, 708.5], [828.5, 715.5], [828.5, 719.5], [829.5, 710.5], [832.5, 707.5], [835.5, 711.5], [834.5, 717.5], [835.5, 718.5], [836.5, 729.5], [836.5, 734.5], [777.5, 735.5]]}, -{"id": "twobm3", "submitted_by": "Techtype_Apple", "name": "The Retro Apple Logo", "description": "This was made by the Retro Apple Community in alliance with r/GreenLattice. More specifically we're from the Action Retro Discord Server. Link is below.", "website": "https://discord.com/invite/q4uJ5eC", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twobkt", "submitted_by": "Narnall", "name": "Katawa Shoujo", "description": "This art features Hanako Ikezawa from the visual novel Katawa Shoujo", "website": "", "subreddit": "/r/katawashoujo", "center": [1575.5, 1178.5], "path": [[1550.5, 1172.5], [1550.5, 1172.5], [1600.5, 1172.5], [1600.5, 1184.5], [1550.5, 1184.5]]}, {"id": "twobhf", "submitted_by": "carpinx", "name": "Mafalda", "description": "Mafalda is an Argentinian comic strip written and drawn by cartoonist Quino.", "website": "", "subreddit": "/r/Argentina", "center": [1179.5, 648.5], "path": [[1174.5, 664.5], [1174.5, 658.5], [1170.5, 657.5], [1168.5, 653.5], [1170.5, 650.5], [1173.5, 650.5], [1168.5, 648.5], [1167.5, 644.5], [1169.5, 638.5], [1172.5, 636.5], [1172.5, 632.5], [1186.5, 632.5], [1186.5, 637.5], [1188.5, 638.5], [1191.5, 643.5], [1191.5, 648.5], [1186.5, 650.5], [1190.5, 651.5], [1191.5, 656.5], [1188.5, 658.5], [1187.5, 660.5], [1187.5, 663.5], [1186.5, 665.5], [1174.5, 664.5]]}, {"id": "twobh1", "submitted_by": "fruselight", "name": "Honkai Impact 3rd", "description": "Honkai Impact 3rd is a Free-to-play 3D action Hack'n Slash game inspired by Evangelion, developed and published by miHoYo/HoYoverse in 2016.", "website": "https://honkaiimpact3.hoyoverse.com", "subreddit": "/r/houkai3rd", "center": [1695.5, 1786.5], "path": [[1674.5, 1809.5], [1674.5, 1762.5], [1709.5, 1762.5], [1709.5, 1773.5], [1720.5, 1774.5], [1721.5, 1787.5], [1715.5, 1789.5], [1716.5, 1790.5], [1717.5, 1790.5], [1713.5, 1792.5], [1713.5, 1793.5], [1714.5, 1793.5], [1715.5, 1793.5], [1713.5, 1795.5], [1714.5, 1797.5], [1722.5, 1810.5], [1722.5, 1802.5], [1721.5, 1808.5], [1722.5, 1810.5]]}, {"id": "twobfs", "submitted_by": "Flamberge3000", "name": "Overly Sarcastic Productions", "description": "An edutainment YouTube channel based around discussing literature, mythology, and history with sarcasm and attitude. They've seen better days.", "website": "https://www.youtube.com/c/OverlySarcasticProductionsChannel/featured", "subreddit": "/r/osp", "center": [1704.5, 1635.5], "path": [[1706.5, 1626.5], [1706.5, 1624.5], [1704.5, 1622.5], [1700.5, 1622.5], [1697.5, 1624.5], [1693.5, 1626.5], [1692.5, 1627.5], [1691.5, 1632.5], [1695.5, 1638.5], [1699.5, 1636.5], [1699.5, 1642.5], [1702.5, 1643.5], [1702.5, 1648.5], [1714.5, 1648.5], [1714.5, 1626.5]]}, -{"id": "twobcm", "submitted_by": "DarknDeepNut", "name": "Dofus From r/france", "description": "Dofus is a famous game in france wich marked most our childhood, it was created in 2004 by french studio Ankama.", "website": "https://www.dofus.com/", "subreddit": "/r/france", "center": [73.5, 1766.5], "path": [[58.5, 1749.5], [59.5, 1780.5], [94.5, 1781.5], [78.5, 1749.5]]}, {"id": "twob1y", "submitted_by": "Spenske-", "name": "TGForever Discord Advertisement", "description": "An advertisement for the TGForever Discord Server, a Minecraft and Terraria community with dedicated servers for each.", "website": "https://discord.gg/tgf", "subreddit": "/r/TGF", "center": [1602.5, 985.5], "path": [[1592.5, 969.5], [1612.5, 969.5], [1612.5, 1000.5], [1591.5, 1000.5], [1591.5, 969.5]]}, -{"id": "twob1s", "submitted_by": "Canigetfries", "name": "DDRaceNetwork", "description": "Art of a free game on Steam.", "website": "https://ddnet.tw", "subreddit": "/r/ddnet", "center": [0.5, 0.5], "path": []}, {"id": "twoad0", "submitted_by": "zL2noob-", "name": "The Longing", "description": "Shade, the main character from The Longing, is hiding behind Cookie Clicker, a game that the devs of The Longing were inspired by.nnTHE LONGING is an unusual mix of an adventure and an idle-game. The player controls a Shade, who is told to keep watch of a sleeping King for 400 days until he awakens. The catch: These 400 days start to count down in real-time.", "website": "http://www.399d-23h-59m-59s.com/", "subreddit": "/r/TheLonging", "center": [1563.5, 185.5], "path": [[1559.5, 179.5], [1569.5, 179.5], [1568.5, 181.5], [1568.5, 182.5], [1566.5, 183.5], [1567.5, 185.5], [1566.5, 185.5], [1566.5, 189.5], [1567.5, 189.5], [1567.5, 192.5], [1559.5, 192.5]]}, -{"id": "two9iy", "submitted_by": "Virtual_Cheek_7633", "name": "Nitori and Badapple", "description": "A kappa from Touhou she was raided by peru multiple times we were forced to concede land at the end", "website": "", "subreddit": "/r/touhou", "center": [497.5, 527.5], "path": [[468.5, 528.5], [468.5, 541.5], [511.5, 541.5], [511.5, 528.5], [527.5, 528.5], [527.5, 513.5], [480.5, 513.5], [480.5, 527.5]]}, {"id": "two8y1", "submitted_by": "hakyeons-army", "name": "BC Logo", "description": "Logo of a C inside a B. Created and maintained by BC logo guy in alliance with r/dinoplace", "website": "", "subreddit": "/r/dinoplace", "center": [340.5, 784.5], "path": [[342.5, 781.5], [342.5, 786.5], [338.5, 786.5], [338.5, 781.5]]}, {"id": "two8xr", "submitted_by": "lemonaid4", "name": "Suncracker0", "description": "the simplified logo of a small twitch streamer named Suncracker0", "website": "https://www.twitch.tv/suncracker0", "subreddit": "/r/Suncracker", "center": [736.5, 950.5], "path": [[734.5, 946.5], [734.5, 954.5], [738.5, 954.5], [738.5, 946.5], [738.5, 946.5]]}, {"id": "two8xe", "submitted_by": "SkytAsul", "name": "INSA", "description": "A French engineering school.", "website": "https://www.groupe-insa.fr/", "subreddit": "", "center": [12.5, 1073.5], "path": [[0.5, 1068.5], [24.5, 1068.5], [24.5, 1078.5], [1.5, 1078.5], [0.5, 1068.5]]}, -{"id": "two8ve", "submitted_by": "ostensacken", "name": "Blue Butterfly", "description": "The Blue Butterfly, an insect commonly depicted in the episodic adventure game, Life is Strange. Appearing on the Nigerian flag as a collaboration between r/lifeisstrange and r/Nigeria", "website": "", "subreddit": "/r/lifeisstrange", "center": [0.5, 0.5], "path": []}, {"id": "two8s7", "submitted_by": "ziemnakiscool", "name": "Kurzgesagt Painting", "description": "The r/kurzgesagt community made this picture.", "website": "", "subreddit": "/r/kurzgesagt", "center": [749.5, 52.5], "path": [[788.5, 70.5], [790.5, 68.5], [790.5, 36.5], [788.5, 35.5], [707.5, 35.5], [708.5, 69.5], [707.5, 70.5], [707.5, 36.5], [707.5, 70.5]]}, {"id": "two8df", "submitted_by": "MagicBraden1", "name": "r/Cubers", "description": "r/cubers is a place for speedcubers (people who speedsolve different twisty-puzzles, such as the Rubik's cube) discuss different cubes, solving styles, records, and more.", "website": "https://www.reddit.com/r/Cubers/", "subreddit": "/r/cubers", "center": [1388.5, 497.5], "path": [[1350.5, 485.5], [1364.5, 485.5], [1363.5, 486.5], [1364.5, 487.5], [1365.5, 487.5], [1365.5, 488.5], [1366.5, 488.5], [1366.5, 489.5], [1366.5, 489.5], [1367.5, 490.5], [1368.5, 490.5], [1368.5, 491.5], [1425.5, 491.5], [1425.5, 509.5], [1412.5, 509.5], [1412.5, 503.5], [1355.5, 503.5], [1355.5, 502.5], [1354.5, 502.5], [1354.5, 501.5], [1353.5, 501.5], [1353.5, 500.5], [1352.5, 500.5], [1352.5, 499.5], [1351.5, 499.5], [1351.5, 498.5], [1350.5, 498.5], [1350.5, 485.5]]}, -{"id": "two7wa", "submitted_by": "GeoJayman", "name": "Derpy Hooves", "description": "Depicts the fandom's favorite background character", "website": "mlp.fandom.com/wiki/Derpy_Hooves", "subreddit": "/r/mylittlepony", "center": [1975.5, 378.5], "path": [[2000.5, 356.5], [1950.5, 356.5], [1950.5, 400.5], [2000.5, 400.5], [2000.5, 356.5]]}, +{"id": "two7wa", "submitted_by": "GeoJayman", "name": "Derpy Hooves", "description": "Depicts the fandom's favorite background character", "website": "https://mlp.fandom.com/wiki/Derpy_Hooves", "subreddit": "/r/mylittlepony", "center": [1975.5, 378.5], "path": [[2000.5, 356.5], [1950.5, 356.5], [1950.5, 400.5], [2000.5, 400.5], [2000.5, 356.5]]}, {"id": "two7h3", "submitted_by": "sk1pzy", "name": "Bow from Inanimate Insanity", "description": "Bow from Inanimate Insanity holding up the earth (r/BuildTheEarth)", "website": "https://www.inanimateinsanity.com/", "subreddit": "/r/inanimateinsanity", "center": [68.5, 638.5], "path": [[60.5, 632.5], [60.5, 642.5], [76.5, 642.5], [76.5, 632.5], [74.5, 632.5], [74.5, 633.5], [73.5, 633.5], [73.5, 634.5], [72.5, 634.5], [72.5, 635.5], [69.5, 635.5], [69.5, 633.5], [70.5, 633.5], [70.5, 632.5], [69.5, 632.5], [69.5, 635.5], [67.5, 635.5], [67.5, 632.5], [66.5, 632.5], [66.5, 633.5], [67.5, 633.5], [67.5, 635.5], [64.5, 635.5], [63.5, 635.5], [63.5, 634.5], [63.5, 633.5], [62.5, 633.5], [61.5, 633.5], [61.5, 632.5]]}, -{"id": "two7fp", "submitted_by": "Virtual_Cheek_7633", "name": "Kirisame Marisa", "description": "logo from Touhou 6 Embodiment of Scarlet Devil", "website": "", "subreddit": "/r/touhou", "center": [1122.5, 1985.5], "path": [[1109.5, 1973.5], [1109.5, 1997.5], [1135.5, 1996.5], [1135.5, 1973.5]]}, {"id": "two7fm", "submitted_by": "Boring_Disaster_21", "name": "Luna Crown", "description": "Crown representing Himemori Luna, a Vtuber from Hololive Japan 4th Generation.", "website": "https://hololive.hololivepro.com/en/talents/himemori-luna/", "subreddit": "/r/hololive", "center": [1360.5, 1119.5], "path": [[1360.5, 1111.5], [1360.5, 1124.5], [1355.5, 1124.5], [1353.5, 1119.5], [1358.5, 1111.5], [1366.5, 1117.5], [1365.5, 1124.5], [1360.5, 1124.5]]}, {"id": "two7br", "submitted_by": "Narnall", "name": "Starscape", "description": "A small artwork relating to the roblox game starscape", "website": "", "subreddit": "", "center": [1663.5, 837.5], "path": [[1693.5, 832.5], [1632.5, 833.5], [1631.5, 842.5], [1693.5, 842.5]]}, {"id": "two7bb", "submitted_by": "MrEduxator", "name": "Delutaya's Delta", "description": "A small green Delta symbol to represent Delutaya, a JP V-tuber.", "website": "https://www.youtube.com/channel/UC7YXqPO3eUnxbJ6rN0z2z1Q", "subreddit": "", "center": [269.5, 766.5], "path": [[264.5, 767.5], [264.5, 766.5], [265.5, 766.5], [265.5, 765.5], [266.5, 765.5], [266.5, 764.5], [267.5, 764.5], [267.5, 763.5], [268.5, 763.5], [268.5, 762.5], [269.5, 762.5], [270.5, 762.5], [270.5, 763.5], [271.5, 763.5], [271.5, 764.5], [272.5, 764.5], [272.5, 765.5], [273.5, 765.5], [273.5, 766.5], [274.5, 766.5], [274.5, 767.5], [274.5, 768.5], [264.5, 768.5], [264.5, 767.5]]}, -{"id": "two6y0", "submitted_by": "Koton_Bads", "name": "r/unixporn", "description": "r/unixporn - the home for *NIX customization! Submit screenshots of all your *NIX desktops, themes, and nifty configurations, or submit anything else that will make ricers happy. Maybe a server running on an Amiga, or a thinkpad signed by Bjarne Stroustrup? Show the world how sexy your computer can be!", "website": "https://unixporn.github.io/", "subreddit": "/r/unixporn", "center": [10.5, 761.5], "path": [[0.5, 765.5], [20.5, 765.5], [20.5, 756.5], [0.5, 756.5], [0.5, 765.5]]}, {"id": "two6n0", "submitted_by": "-ChronicClub", "name": "Classic Guy, Spelunky Series", "description": "The protagonist of Spelunky Classic, and returns as the final unlockable character in Spelunky 2, both games being tough, 2D roguelike platformers.", "website": "https://www.mossmouth.com/spelunky2/", "subreddit": "/r/Spelunky", "center": [871.5, 513.5], "path": [[867.5, 518.5], [877.5, 518.5], [876.5, 516.5], [874.5, 516.5], [874.5, 514.5], [877.5, 510.5], [875.5, 510.5], [874.5, 507.5], [869.5, 507.5], [867.5, 510.5], [867.5, 517.5]]}, -{"id": "two6gx", "submitted_by": "GeoJayman", "name": "My Little Pony", "description": "Combines the main characters of Generations 4 and 5 of the My Little Pony series. Also includes the combined Unicorn, Pegasus, and Earth Pony gems from A New Generation (2021).", "website": "mlp.wikia.com", "subreddit": "/r/mylittlepony", "center": [1651.5, 247.5], "path": [[1656.5, 211.5], [1645.5, 211.5], [1633.5, 212.5], [1627.5, 217.5], [1616.5, 229.5], [1613.5, 240.5], [1614.5, 258.5], [1619.5, 278.5], [1637.5, 279.5], [1640.5, 281.5], [1652.5, 281.5], [1669.5, 281.5], [1671.5, 279.5], [1684.5, 279.5], [1686.5, 261.5], [1689.5, 257.5], [1688.5, 228.5], [1677.5, 221.5], [1676.5, 213.5], [1662.5, 211.5], [1652.5, 211.5]]}, +{"id": "two6gx", "submitted_by": "GeoJayman", "name": "My Little Pony", "description": "Combines the main characters of Generations 4 and 5 of the My Little Pony series. Also includes the combined Unicorn, Pegasus, and Earth Pony gems from A New Generation (2021).", "website": "https://mlp.wikia.com", "subreddit": "/r/mylittlepony", "center": [1651.5, 247.5], "path": [[1656.5, 211.5], [1645.5, 211.5], [1633.5, 212.5], [1627.5, 217.5], [1616.5, 229.5], [1613.5, 240.5], [1614.5, 258.5], [1619.5, 278.5], [1637.5, 279.5], [1640.5, 281.5], [1652.5, 281.5], [1669.5, 281.5], [1671.5, 279.5], [1684.5, 279.5], [1686.5, 261.5], [1689.5, 257.5], [1688.5, 228.5], [1677.5, 221.5], [1676.5, 213.5], [1662.5, 211.5], [1652.5, 211.5]]}, {"id": "two5oy", "submitted_by": "j123s", "name": "oc.tc (Overcast Community)", "description": "Overcast Community, formerly Overcast Network, is a Minecraft server that focuses on large team-based minigames like Capture the Wool.", "website": "https://oc.tc", "subreddit": "", "center": [1990.5, 1517.5], "path": [[1982.5, 1511.5], [1990.5, 1509.5], [1998.5, 1511.5], [1997.5, 1522.5], [1990.5, 1527.5], [1983.5, 1522.5]]}, {"id": "two4yq", "submitted_by": "MrEduxator", "name": "Uruha Rushia's Butterfly", "description": "A short and sweet tribute to Uruha Rushia, a hololive member who was a part of holoive until Feburary 24th, 2022. The butterfly was used to represent her, as she had a strong association with them.", "website": "https://www.youtube.com/channel/UCl_gCybOJRIgOXw6Qb4qJzQ", "subreddit": "/r/hololive", "center": [253.5, 790.5], "path": [[250.5, 785.5], [259.5, 785.5], [259.5, 791.5], [256.5, 793.5], [255.5, 794.5], [254.5, 795.5], [253.5, 795.5], [253.5, 796.5], [252.5, 796.5], [251.5, 795.5], [250.5, 794.5], [249.5, 794.5], [248.5, 793.5], [247.5, 793.5], [247.5, 789.5], [248.5, 789.5], [248.5, 787.5], [249.5, 786.5]]}, {"id": "two4ji", "submitted_by": "Narnall", "name": "Space Station 13", "description": "Space station 13 clown", "website": "", "subreddit": "/r/ss13", "center": [1699.5, 591.5], "path": [[1678.5, 570.5], [1727.5, 569.5], [1726.5, 590.5], [1722.5, 596.5], [1715.5, 592.5], [1710.5, 593.5], [1707.5, 598.5], [1707.5, 600.5], [1710.5, 605.5], [1711.5, 606.5], [1705.5, 611.5], [1706.5, 618.5], [1678.5, 618.5]]}, @@ -599,15 +558,14 @@ {"id": "two1zz", "submitted_by": "silverwolv", "name": "WolvHaven Minecraft Server", "description": "WolvHaven is a creative minecraft server that started out as a city-roleplay and survival server established in 2011. It is mainly known for its railway Metro Systems constructed using the TrainCarts bukkit plugin. The server has since transistioned into more of a creative city-building server for architecture, urban, and transit enthusiasts, centered around a showcase city. Depicted here is the server's official flag.", "website": "https://wolvhaven.net", "subreddit": "/r/wolvhaven", "center": [1350.5, 463.5], "path": [[1346.5, 461.5], [1354.5, 461.5], [1354.5, 465.5], [1346.5, 465.5]]}, {"id": "two1vu", "submitted_by": "GoJoeyGo123", "name": "BL\u00c5HAJ", "description": "BL\u00c5HAJ is a popular soft toy sold by ikea", "website": "https://www.ikea.com/us/en/p/blahaj-soft-toy-shark-90373590/", "subreddit": "/r/BLAHAJ", "center": [250.5, 669.5], "path": [[242.5, 668.5], [242.5, 667.5], [247.5, 667.5], [247.5, 666.5], [248.5, 666.5], [248.5, 665.5], [249.5, 665.5], [249.5, 664.5], [250.5, 664.5], [251.5, 664.5], [251.5, 667.5], [253.5, 667.5], [253.5, 666.5], [254.5, 666.5], [254.5, 665.5], [255.5, 665.5], [255.5, 664.5], [258.5, 664.5], [258.5, 665.5], [258.5, 666.5], [257.5, 666.5], [257.5, 667.5], [257.5, 668.5], [256.5, 668.5], [256.5, 669.5], [257.5, 669.5], [257.5, 670.5], [258.5, 670.5], [258.5, 671.5], [258.5, 672.5], [255.5, 672.5], [255.5, 671.5], [254.5, 671.5], [254.5, 670.5], [253.5, 671.5], [252.5, 671.5], [252.5, 672.5], [251.5, 672.5], [250.5, 672.5], [250.5, 673.5], [250.5, 674.5], [249.5, 674.5], [248.5, 674.5], [248.5, 673.5], [247.5, 673.5], [247.5, 672.5], [243.5, 672.5], [242.5, 672.5], [242.5, 671.5], [241.5, 671.5], [241.5, 669.5], [241.5, 668.5], [241.5, 668.5], [241.5, 668.5]]}, {"id": "two1vh", "submitted_by": "flippin_egg", "name": "Olive", "description": "The protagonist of the Purrfect Apawcalypse series", "website": "", "subreddit": "", "center": [492.5, 483.5], "path": [[486.5, 478.5], [486.5, 478.5], [486.5, 488.5], [486.5, 488.5], [497.5, 488.5], [497.5, 478.5]]}, -{"id": "two0ph", "submitted_by": "SenatusSPQR", "name": "Nano currency symbol", "description": "The currency symbol of Nano, a green, instant & feeless cryptocurrency", "website": "www.nano.org", "subreddit": "/r/nanocurrency", "center": [841.5, 649.5], "path": [[826.5, 634.5], [856.5, 634.5], [856.5, 663.5], [826.5, 663.5]]}, +{"id": "two0ph", "submitted_by": "SenatusSPQR", "name": "Nano currency symbol", "description": "The currency symbol of Nano, a green, instant & feeless cryptocurrency", "website": "https://www.nano.org", "subreddit": "/r/nanocurrency", "center": [841.5, 649.5], "path": [[826.5, 634.5], [856.5, 634.5], [856.5, 663.5], [826.5, 663.5]]}, {"id": "two0lb", "submitted_by": "hakyeons-army", "name": "Pink Fantasy", "description": "Logo of K-Pop group Pink Fantasy. Left is a logo consisting of two keys crossing over each other, and to the right is a bunny representing member Daewang.", "website": "", "subreddit": "", "center": [1689.5, 894.5], "path": [[1684.5, 896.5], [1681.5, 897.5], [1681.5, 891.5], [1696.5, 891.5], [1696.5, 897.5]]}, {"id": "two0em", "submitted_by": "betterert", "name": "Juke's Towers of Hell", "description": "Juke's Towers of Hell is a platforming game on the ROBLOX platform where players are tasked with climbing very tall and difficult towers. It is notorious for its high difficulty. The three large towers (from left to right) are the Tower of Hecc (sic), the Tower of Screen Punching, and the Tower of Impossible Expectations. These are the first three towers ever added to the game, respectively. The small structures in the middle are other beloved towers in the community.", "website": "https://jtoh.fandom.com/wiki/Juke%27s_Towers_of_Hell_Wiki", "subreddit": "/r/JToH2", "center": [1520.5, 1628.5], "path": [[1507.5, 1605.5], [1532.5, 1605.5], [1532.5, 1651.5], [1507.5, 1651.5]]}, {"id": "twnzxf", "submitted_by": "Killer_The_Cat", "name": "M\u00e9tis Flag", "description": "The flag of the M\u00e9tis people of Canada", "website": "", "subreddit": "", "center": [218.5, 467.5], "path": [[226.5, 462.5], [210.5, 462.5], [210.5, 472.5], [226.5, 472.5]]}, {"id": "twnzwk", "submitted_by": "vizce", "name": "IQ & J\u00e4ger", "description": "Two of the four German playable characters from the game Rainbow Six Siege. Cooperation with /r/Rainbow6/ n", "website": "", "subreddit": "/r/placeDE", "center": [255.5, 1160.5], "path": [[236.5, 1148.5], [274.5, 1148.5], [274.5, 1171.5], [235.5, 1171.5], [236.5, 1148.5]]}, {"id": "twnz8w", "submitted_by": "Beegrene", "name": "Daft Punk", "description": "The robotic hands of Daft Punk, a French house music duo active from 1993 to 2021.", "website": "", "subreddit": "/r/DaftPunk", "center": [220.5, 945.5], "path": [[195.5, 926.5], [195.5, 964.5], [244.5, 964.5], [244.5, 926.5], [195.5, 926.5]]}, -{"id": "twnz42", "submitted_by": "MineRabbit33", "name": "EPITA", "description": "EPITA (\u00c9cole Pour l'Informatique et les Techniques Avanc\u00e9es) is a French computer engineering school", "website": "https://www.epita.fr/", "subreddit": "/r/epita", "center": [1210.5, 321.5], "path": [[1209.5, 308.5], [1192.5, 320.5], [1196.5, 324.5], [1195.5, 327.5], [1201.5, 330.5], [1200.5, 332.5], [1205.5, 331.5], [1211.5, 336.5], [1212.5, 329.5], [1228.5, 328.5], [1226.5, 325.5], [1228.5, 323.5], [1223.5, 319.5], [1219.5, 309.5], [1214.5, 312.5]]}, {"id": "twnz2v", "submitted_by": "Vampire_Artyom", "name": "Stardew Valley Art #1", "description": "Created by the Stardew Valley Community, depicting some recognizable art from the game: Brown Chicken, Blue Chicken, a Stardrop and a Green Junimo, alongside a heavily pixelated part of the world's landscape", "website": "https://www.stardewvalley.net", "subreddit": "/r/StardewValley", "center": [102.5, 365.5], "path": [[71.5, 345.5], [132.5, 345.5], [132.5, 386.5], [77.5, 386.5], [77.5, 385.5], [76.5, 385.5], [76.5, 383.5], [75.5, 383.5], [74.5, 382.5], [71.5, 382.5]]}, -{"id": "twnyry", "submitted_by": "AsrielDashie", "name": "Taiwan/R.O.C Flag", "description": "National flag of Republic of China a.k.a Taiwan.", "website": "", "subreddit": "/r/taiwan", "center": [959.5, 555.5], "path": [[941.5, 543.5], [941.5, 566.5], [977.5, 566.5], [977.5, 543.5]]}, +{"id": "twnyry", "submitted_by": "AsrielDashie", "name": "Taiwan/R.O.C Flag", "description": "National flag of Republic of China (Taiwan).", "website": "", "subreddit": "/r/taiwan", "center": [959.5, 555.5], "path": [[941.5, 543.5], [941.5, 566.5], [977.5, 566.5], [977.5, 543.5]]}, {"id": "twnyr8", "submitted_by": "Killer_The_Cat", "name": "Flag of Nunavut", "description": "", "website": "", "subreddit": "/r/nunavut", "center": [201.5, 457.5], "path": [[193.5, 462.5], [209.5, 462.5], [209.5, 452.5], [193.5, 452.5]]}, {"id": "twnymj", "submitted_by": "Asteralium", "name": "Animal Jam Ladybug", "description": "A ladybug from the logo of Animal Jam, a virtual world that opened in 2010.", "website": "https://discord.com/invite/animaljamcommunity", "subreddit": "/r/AnimalJam", "center": [1761.5, 1090.5], "path": [[1755.5, 1083.5], [1767.5, 1083.5], [1767.5, 1097.5], [1755.5, 1097.5]]}, {"id": "twnyli", "submitted_by": "Drakzia", "name": "ENS Rennes Logo", "description": "The logo of the French school \u00c9cole normale sup\u00e9rieure de Rennes (ENS Rennes).", "website": "http://www.ens-rennes.fr/", "subreddit": "", "center": [288.5, 1590.5], "path": [[282.5, 1586.5], [282.5, 1594.5], [293.5, 1594.5], [293.5, 1586.5]]}, @@ -616,23 +574,17 @@ {"id": "twny3k", "submitted_by": "GoJoeyGo123", "name": "Rickroll QR code", "description": "Rick Astley - Never Gonna Give You Up", "website": "https://www.youtube.com/watch?v=dQw4w9WgXcQ", "subreddit": "", "center": [1886.5, 933.5], "path": [[1870.5, 917.5], [1902.5, 917.5], [1902.5, 949.5], [1870.5, 949.5]]}, {"id": "twny35", "submitted_by": "TehEpicDuckeh", "name": "Stimlo", "description": "The short-lived logo of the musician Stimlo. They create music in varying styles and genres, but all are EDM.", "website": "https://open.spotify.com/artist/4hF7yJOF52q2pczg70fdl2", "subreddit": "/r/stimlo", "center": [875.5, 1850.5], "path": [[872.5, 1847.5], [872.5, 1852.5], [877.5, 1852.5], [877.5, 1847.5]]}, {"id": "twny22", "submitted_by": "TL_H", "name": "Ninji", "description": "Ninji is an enemy from the Super Mario Bros. series, appearing in Super Mario Bros. 2 (USA), Super Mario World, Super Mario Run, Super Mario Maker 2, and more games. Super Mario Maker 2's v2.0.0 update added a Ninji Speedruns mode, where players complete to beat levels designed by Nintendo in the fastest time possible. In that mode, you can race against other players' times, with their ghosts appearing as Ninjis.", "website": "https://discord.gg/5ECWF94", "subreddit": "/r/MarioMaker2", "center": [1767.5, 145.5], "path": [[1762.5, 139.5], [1762.5, 151.5], [1772.5, 151.5], [1772.5, 139.5]]}, -{"id": "twnxtm", "submitted_by": "Killer_The_Cat", "name": "Flag of Colorado", "description": "The flag of the US State of Colorado.", "website": "", "subreddit": "/r/colorado", "center": [10.5, 738.5], "path": [[19.5, 731.5], [0.5, 731.5], [0.5, 744.5], [19.5, 744.5]]}, {"id": "twnxkl", "submitted_by": "MrEduxator", "name": "Risu Nut", "description": "HoloID's Ayunda Risu as a nut! How nutty! She's also the creator of Nonstop Nut November, a fun spin on the average No Nut November.", "website": "https://www.youtube.com/channel/UCOyYb1c43VlX9rc_lT6NKQw", "subreddit": "/r/hololive", "center": [1342.5, 1070.5], "path": [[1336.5, 1082.5], [1349.5, 1082.5], [1349.5, 1081.5], [1350.5, 1081.5], [1350.5, 1079.5], [1351.5, 1079.5], [1351.5, 1076.5], [1352.5, 1076.5], [1352.5, 1070.5], [1352.5, 1069.5], [1353.5, 1069.5], [1354.5, 1069.5], [1354.5, 1068.5], [1355.5, 1067.5], [1354.5, 1066.5], [1353.5, 1065.5], [1353.5, 1061.5], [1351.5, 1061.5], [1351.5, 1060.5], [1349.5, 1060.5], [1349.5, 1059.5], [1347.5, 1059.5], [1347.5, 1058.5], [1345.5, 1058.5], [1345.5, 1057.5], [1338.5, 1057.5], [1338.5, 1058.5], [1336.5, 1058.5], [1336.5, 1059.5], [1336.5, 1059.5], [1334.5, 1059.5], [1334.5, 1060.5], [1333.5, 1060.5], [1333.5, 1061.5], [1332.5, 1061.5], [1332.5, 1079.5], [1333.5, 1079.5], [1333.5, 1079.5], [1333.5, 1081.5], [1335.5, 1081.5], [1335.5, 1082.5], [1341.5, 1082.5]]}, -{"id": "twnx92", "submitted_by": "Killer_The_Cat", "name": "Flag of Denver", "description": "The flag of Denver, Colorado, United States.", "website": "", "subreddit": "/r/denver", "center": [10.5, 750.5], "path": [[19.5, 745.5], [0.5, 745.5], [0.5, 755.5], [19.5, 755.5]]}, {"id": "twnx3u", "submitted_by": "micarot", "name": "Aromat", "description": "A swiss spice, famous in swizerland only", "website": "", "subreddit": "", "center": [1180.5, 885.5], "path": [[1177.5, 879.5], [1183.5, 879.5], [1183.5, 890.5], [1177.5, 890.5]]}, {"id": "twnw5c", "submitted_by": "keroshijoshi", "name": "Former Hero's Logo", "description": "Indie electronic musician Former Hero's bridge logo. Former Hero is known for his fast-paced, pulsating melodic tracks and is well-loved in the SoundCloud dance scene, garnering the attention of San Holo and his independent label bitbird.", "website": "", "subreddit": "/r/bitbird", "center": [883.5, 1795.5], "path": [[872.5, 1790.5], [872.5, 1799.5], [893.5, 1799.5], [893.5, 1790.5], [872.5, 1790.5]]}, -{"id": "twnw1v", "submitted_by": "micarot", "name": "RTS", "description": "The french speaking radio and TV for Switzerland", "website": "https://www.rts.ch", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twnvko", "submitted_by": "CyborgRyno603", "name": "The iFunny watermark", "description": "Uh oh, you forgot to crop your stolen meme, now you deal with the consequences. Brought to you by r/Place_iFunny.", "website": "https://www.ifunny.co", "subreddit": "/r/iFunny", "center": [338.5, 1893.5], "path": [[311.5, 1888.5], [365.5, 1888.5], [365.5, 1897.5], [311.5, 1897.5], [311.5, 1888.5]]}, -{"id": "twnvj5", "submitted_by": "GoJoeyGo123", "name": "Anarchy Chess", "description": "Anarchy chess is a chess meme subreddit", "website": "", "subreddit": "/r/AnarchyChess", "center": [123.5, 661.5], "path": [[80.5, 607.5], [151.5, 607.5], [151.5, 609.5], [174.5, 609.5], [174.5, 712.5], [125.5, 712.5], [125.5, 715.5], [71.5, 715.5], [71.5, 679.5], [70.5, 679.5], [70.5, 642.5], [76.5, 642.5], [76.5, 632.5], [74.5, 632.5], [74.5, 633.5], [73.5, 633.5], [73.5, 634.5], [72.5, 634.5], [72.5, 635.5], [70.5, 635.5], [70.5, 631.5], [72.5, 631.5], [73.5, 630.5], [74.5, 630.5], [75.5, 629.5], [76.5, 628.5], [77.5, 627.5], [78.5, 626.5], [79.5, 625.5], [80.5, 624.5], [80.5, 623.5], [81.5, 622.5], [81.5, 620.5], [82.5, 619.5], [82.5, 612.5], [81.5, 611.5], [81.5, 609.5], [80.5, 608.5], [80.5, 607.5]]}, {"id": "twnvep", "submitted_by": "MrEduxator", "name": "Snuffy", "description": "An emote of Twitch VTuber Snuffy. Lead by her community, and Snuffy herself.", "website": "https://www.twitch.tv/snuffy", "subreddit": "", "center": [694.5, 1074.5], "path": [[667.5, 1050.5], [719.5, 1050.5], [720.5, 1098.5], [668.5, 1098.5]]}, {"id": "twnv32", "submitted_by": "ibm2431", "name": "DDLC Micro Yuri", "description": "A miniature representation of Yuri, a character from Doki Doki Literature Club. DDLC is a psychological horror visual novel about writing your way into a girl's heart. Yuri's hobbies include aromatherapy, reading horror novels, and knife collecting. Will you take a stab at her route and make the cut?", "website": "https://ddlc.moe/", "subreddit": "/r/ddlc", "center": [1862.5, 1443.5], "path": [[1859.5, 1439.5], [1864.5, 1439.5], [1864.5, 1447.5], [1859.5, 1447.5]]}, {"id": "twnutc", "submitted_by": "eevee1714", "name": "Belkan Flag", "description": "The flag of Belka from the video game Ace Combat, infamous for dropping 7 nukes on itself to prevent the advance of allied forces", "website": "", "subreddit": "/r/acecombat", "center": [1699.5, 319.5], "path": [[1706.5, 329.5], [1697.5, 329.5], [1697.5, 328.5], [1692.5, 328.5], [1692.5, 309.5], [1705.5, 309.5], [1705.5, 329.5]]}, {"id": "twnut5", "submitted_by": "Beegrene", "name": "Metroid", "description": "One of the titular alien parasites from the Metroid video game series", "website": "", "subreddit": "/r/Metroid", "center": [1357.5, 60.5], "path": [[1352.5, 68.5], [1362.5, 68.5], [1365.5, 62.5], [1365.5, 57.5], [1360.5, 52.5], [1353.5, 52.5], [1348.5, 58.5], [1349.5, 63.5], [1352.5, 68.5]]}, {"id": "twnuop", "submitted_by": "Narnall", "name": "Chestnut Puck (Berserk)", "description": "This is Puck from Berserk in his iconic and emotional chestnut form.", "website": "", "subreddit": "/r/berserklejerk", "center": [730.5, 283.5], "path": [[715.5, 296.5], [715.5, 269.5], [745.5, 269.5], [745.5, 296.5]]}, -{"id": "twntzq", "submitted_by": "CornMayor", "name": "Cuca from XTale (Undertale AU)", "description": "Cuca is a butterfly. Became a local character on Discord Server. XTale is a YT animation series by Jael Pe\u00f1aloza", "website": "https://www.youtube.com/c/JakeiHazen", "subreddit": "/r/XTale", "center": [1850.5, 1706.5], "path": [[1851.5, 1699.5], [1855.5, 1708.5], [1852.5, 1709.5], [1850.5, 1711.5], [1844.5, 1706.5], [1844.5, 1704.5], [1849.5, 1706.5], [1849.5, 1703.5], [1850.5, 1703.5], [1850.5, 1700.5]]}, {"id": "twntyf", "submitted_by": "MrEduxator", "name": "Ankimo & Tokino Sora", "description": "Tokino Sora (Right side) and her mascot, Ankimo. (Left side)", "website": "https://hololive.hololivepro.com/en/", "subreddit": "/r/hololive", "center": [1342.5, 1120.5], "path": [[1333.5, 1115.5], [1350.5, 1115.5], [1351.5, 1115.5], [1351.5, 1117.5], [1352.5, 1117.5], [1352.5, 1119.5], [1353.5, 1119.5], [1353.5, 1124.5], [1353.5, 1125.5], [1332.5, 1125.5], [1332.5, 1115.5]]}, {"id": "twntsr", "submitted_by": "bermuda__", "name": "Newgrounds", "description": "A site for online animations and games", "website": "https://www.newgrounds.com", "subreddit": "/r/newgrounds", "center": [903.5, 1921.5], "path": [[878.5, 1947.5], [878.5, 1895.5], [929.5, 1896.5], [929.5, 1947.5]]}, -{"id": "twntrk", "submitted_by": "MiguJib", "name": "Moist Esports", "description": "Moist Esports is an e-sports team founded by MoistCr1TiKaL", "website": "https://www.twitch.tv/moistcr1tikal", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twntnk", "submitted_by": "MrDaveCole98", "name": "Guinness Rei", "description": "Pixel art of Rei Ayanami, a character from the anime Neon Genesis Evangelion, holding a mug of Guinness beer in honor of the subreddit's alliance with Ireland.", "website": "https://www.evangelion.co.jp/index.html", "subreddit": "/r/evangelion", "center": [1261.5, 143.5], "path": [[1250.5, 157.5], [1272.5, 157.5], [1272.5, 128.5], [1250.5, 128.5], [1250.5, 157.5]]}, {"id": "twntm5", "submitted_by": "CanicheFumando", "name": "Flag of Uruguay", "description": "Uruguayan flag with some typical stuff of the country", "website": "", "subreddit": "/r/Uruguay", "center": [1083.5, 675.5], "path": [[966.5, 665.5], [966.5, 684.5], [1172.5, 684.5], [1200.5, 684.5], [1200.5, 665.5], [966.5, 665.5]]}, {"id": "twnsd8", "submitted_by": "GoJoeyGo123", "name": "Homage to Daft punk", "description": "daft punk was a french electronic duo that formed in 1993 and split in 2021", "website": "https://en.wikipedia.org/wiki/Daft_Punk", "subreddit": "/r/DaftPunk", "center": [220.5, 945.5], "path": [[195.5, 926.5], [244.5, 926.5], [244.5, 964.5], [195.5, 964.5]]}, @@ -648,40 +600,37 @@ {"id": "twnp51", "submitted_by": "ToCatchACreditor", "name": "Xenoblade Chronicles", "description": "Artwork representing each game in the Xenoblade franchise. nnClockwise from left:n(1,X,3,2)", "website": "https://www.reddit.com/r/Xenoblade_Chronicles/", "subreddit": "/r/Xenoblade_Chronicles", "center": [1186.5, 716.5], "path": [[1175.5, 743.5], [1175.5, 716.5], [1174.5, 715.5], [1174.5, 709.5], [1172.5, 707.5], [1172.5, 704.5], [1171.5, 703.5], [1171.5, 701.5], [1172.5, 698.5], [1173.5, 680.5], [1176.5, 678.5], [1179.5, 680.5], [1178.5, 683.5], [1177.5, 684.5], [1177.5, 690.5], [1178.5, 691.5], [1178.5, 693.5], [1183.5, 693.5], [1186.5, 695.5], [1200.5, 695.5], [1200.5, 743.5], [1175.5, 743.5]]}, {"id": "twnp12", "submitted_by": "Mikepick492", "name": "Dale Earnhardt's Number 3", "description": "The number of famous nascar driver Dale Earnhardt", "website": "", "subreddit": "/r/nascar", "center": [775.5, 1527.5], "path": [[754.5, 1512.5], [754.5, 1543.5], [796.5, 1542.5], [797.5, 1511.5], [796.5, 1511.5], [772.5, 1512.5]]}, {"id": "twno9a", "submitted_by": "NoodleSushi", "name": "Godot Engine", "description": "The logo of Godot designed by Andrea Calabr\u00f3. Godot is a free and open-source game engine released under the MIT license, initially developed by Juan Linietsky (logo designer's husband) and Ariel Manzur and maintained by a community of voluntary contributors.", "website": "https://godotengine.org", "subreddit": "/r/godot", "center": [1222.5, 438.5], "path": [[1196.5, 433.5], [1196.5, 445.5], [1246.5, 445.5], [1246.5, 430.5], [1222.5, 430.5], [1222.5, 433.5]]}, -{"id": "twno94", "submitted_by": "Norpaz", "name": "Finland Flag", "description": "Finland Flag made by r/NordicUnion and r/Suomi", "website": "", "subreddit": "/r/NordicUnion", "center": [559.5, 204.5], "path": [[497.5, 294.5], [537.5, 293.5], [537.5, 285.5], [594.5, 285.5], [594.5, 203.5], [634.5, 203.5], [634.5, 189.5], [635.5, 188.5], [635.5, 188.5], [635.5, 186.5], [634.5, 185.5], [635.5, 183.5], [636.5, 182.5], [636.5, 181.5], [636.5, 180.5], [635.5, 179.5], [634.5, 179.5], [634.5, 159.5], [634.5, 120.5], [635.5, 122.5], [591.5, 120.5], [591.5, 136.5], [539.5, 136.5], [539.5, 120.5], [525.5, 120.5], [525.5, 136.5], [496.5, 136.5], [496.5, 149.5], [527.5, 149.5], [527.5, 180.5], [496.5, 180.5], [497.5, 293.5]]}, +{"id": "twno94", "submitted_by": "Norpaz", "name": "Flag of Finland", "description": "Finland flag made by r/NordicUnion and r/Suomi", "website": "https://en.wikipedia.org/wiki/Finland", "subreddit": "/r/NordicUnion", "center": [559.5, 204.5], "path": [[497.5, 294.5], [537.5, 293.5], [537.5, 285.5], [594.5, 285.5], [594.5, 203.5], [634.5, 203.5], [634.5, 189.5], [635.5, 188.5], [635.5, 188.5], [635.5, 186.5], [634.5, 185.5], [635.5, 183.5], [636.5, 182.5], [636.5, 181.5], [636.5, 180.5], [635.5, 179.5], [634.5, 179.5], [634.5, 159.5], [634.5, 120.5], [635.5, 122.5], [591.5, 120.5], [591.5, 136.5], [539.5, 136.5], [539.5, 120.5], [525.5, 120.5], [525.5, 136.5], [496.5, 136.5], [496.5, 149.5], [527.5, 149.5], [527.5, 180.5], [496.5, 180.5], [497.5, 293.5]]}, {"id": "twnnbb", "submitted_by": "BreakDownSphere", "name": "Star Trek Delta", "description": "The Star Trek Delta Insignia, a direct descendant of the vector component of the old NASA (and later UESPA) logos. The logo is synonymous with Star Trek in today's pop culture.", "website": "", "subreddit": "/r/startrek", "center": [616.5, 960.5], "path": [[608.5, 975.5], [613.5, 973.5], [623.5, 973.5], [623.5, 947.5], [609.5, 947.5], [609.5, 961.5], [608.5, 965.5], [608.5, 975.5]]}, -{"id": "twnn3g", "submitted_by": "Zerustu", "name": "ISAE SUPAERO/ENSMA", "description": "two major engineering schools in France specializing in aeronautics", "website": "http://groupe-isae.fr", "subreddit": "", "center": [1156.5, 877.5], "path": [[1130.5, 869.5], [1175.5, 869.5], [1175.5, 890.5], [1161.5, 890.5], [1161.5, 880.5], [1130.5, 880.5]]}, +{"id": "twnn3g", "submitted_by": "Zerustu", "name": "ISAE SUPAERO/ENSMA", "description": "two major engineering schools in France specializing in aeronautics", "website": "http://groupe-isae.fr", "subreddit": "", "center": [1157.5, 879.5], "path": [[1130.5, 869.5], [1175.5, 869.5], [1175.5, 890.5], [1172.5, 890.5], [1172.5, 896.5], [1175.5, 896.5], [1169.5, 902.5], [1169.5, 899.5], [1167.5, 897.5], [1163.5, 897.5], [1161.5, 899.5], [1161.5, 880.5], [1130.5, 880.5]]}, {"id": "twnn1g", "submitted_by": "CharlieNmyT", "name": "Sakamata Chloe Mask", "description": "Mask worn by Hololive Japan Generation 6 (Secret Society HoloX) Vtuber Sakamata Chloe. During her debut, she took off her eye mask and showed her red eyes to the audience. After her debut, her YouTube and Twitter profile pictures were updated to no longer feature the eye mask. A new version of the holoX PV was released on the official hololive channel after her debut to reflect the mask change.", "website": "https://www.youtube.com/channel/UCIBY1ollUsauvVi4hW4cumw/featured", "subreddit": "/r/hololive", "center": [1392.5, 1067.5], "path": [[1386.5, 1065.5], [1386.5, 1068.5], [1389.5, 1070.5], [1397.5, 1070.5], [1399.5, 1067.5], [1399.5, 1064.5], [1386.5, 1064.5]]}, {"id": "twnmmh", "submitted_by": "MrDaveCole98", "name": "NERV Logo (Evangelion)", "description": "The logo representing NERV, a fictional paramilitary agency from the Neon Genesis Evangelion anime, stylized in the color of Ireland's flag.", "website": "https://www.evangelion.co.jp/index.html", "subreddit": "/r/evangelion", "center": [135.5, 751.5], "path": [[122.5, 763.5], [149.5, 763.5], [148.5, 738.5], [122.5, 738.5], [122.5, 763.5]]}, {"id": "twnmb9", "submitted_by": "TorebeCP", "name": "Piston", "description": "A Minecraft's piston, capable of pushing blocks, players, and mobs when given a redstone pulse", "website": "", "subreddit": "", "center": [244.5, 296.5], "path": [[241.5, 294.5], [246.5, 294.5], [246.5, 298.5], [241.5, 298.5], [241.5, 294.5]]}, {"id": "twnlr1", "submitted_by": "AJCisanacronym", "name": "TUYU", "description": "TUYU (\u30c4\u30e6) is a Japanese pop group consisting of Pusu on (\u3077\u3059) on guitar, Reikoromo (\u793c\u8863) as vocals, and Miro on piano. Omutatsu (\u304a\u3080\u305f\u3064) and AzyuN is in charge of the illustration and video design. \u201c\u3084\u3063\u3071\u308a\u96e8\u306f\u964d\u308b\u3093\u3060\u306d\u201d (It's Raining After All) was released as a full album on March 2020.", "website": "https://www.youtube.com/channel/UCB2tP2QfRG7hTra0KTOtTBg?feature=gws_kp_artist&feature=gws_kp_artist", "subreddit": "/r/TUYU_official", "center": [1153.5, 1355.5], "path": [[1144.5, 1340.5], [1162.5, 1370.5], [1162.5, 1340.5], [1144.5, 1340.5], [1144.5, 1370.5], [1162.5, 1370.5]]}, {"id": "twnlo2", "submitted_by": "Yolo1212123", "name": "Issaquah High School Emblem", "description": "Issaquah High School's Emblem in Purple and Gold. Located in Issaquah, WA, USA", "website": "", "subreddit": "", "center": [1311.5, 79.5], "path": [[1307.5, 76.5], [1315.5, 76.5], [1315.5, 81.5], [1307.5, 81.5]]}, {"id": "twnkbf", "submitted_by": "Fuizaidomineer", "name": "XJPooh and LIHKG pig", "description": "Originally a meme circulating in the Chinese Internet comparing the Chinese President and Communist Party Chair Xi Jinping to the Disney character Winnie the Pooh, it saw wider recognition in the West after the cartoon character was blacklisted by the Chinese censorship authorities in July 2017. The pig emote mascot used in Hong Kong online forum LIHKG is also depicted wearing a gas mask and helmet, a common attire for Hong Kong protesters during the 2019 Anti-Extradition Bill Protests", "website": "https://lihkg.com", "subreddit": "", "center": [987.5, 143.5], "path": [[949.5, 120.5], [949.5, 165.5], [1025.5, 166.5], [1025.5, 120.5], [949.5, 120.5]]}, -{"id": "twnjmz", "submitted_by": "_8o_", "name": "Machu Picchu", "description": "One of the seven wonders of the world, located in Peru. There was some conflict over the top and right side of this place. Even when Twitch streamer 'JackManifoldTV' coordinated an unsuccessful attack on this section, r/UKPlace, r/Bluey, r/touhou, and r/LibraryOfRuina were unable to reclaim the sections that had been overtaken.", "website": "machupicchu.gob.pe", "subreddit": "/r/PERU", "center": [517.5, 572.5], "path": [[469.5, 541.5], [571.5, 541.5], [571.5, 557.5], [575.5, 557.5], [575.5, 587.5], [535.5, 587.5], [535.5, 609.5], [535.5, 610.5], [469.5, 610.5], [469.5, 541.5]]}, +{"id": "twnjmz", "submitted_by": "_8o_", "name": "Machu Picchu", "description": "One of the seven wonders of the world, located in Peru. There was some conflict over the top and right side of this place. Even when Twitch streamer 'JackManifoldTV' coordinated an unsuccessful attack on this section, r/UKPlace, r/Bluey, r/touhou, and r/LibraryOfRuina were unable to reclaim the sections that had been overtaken.", "website": "https://machupicchu.gob.pe", "subreddit": "/r/PERU", "center": [517.5, 572.5], "path": [[469.5, 541.5], [571.5, 541.5], [571.5, 557.5], [575.5, 557.5], [575.5, 587.5], [535.5, 587.5], [535.5, 609.5], [535.5, 610.5], [469.5, 610.5], [469.5, 541.5]]}, {"id": "twnjl4", "submitted_by": "Kvothealar", "name": "GFG/Sky/AB Alliance", "description": "This group established a white boundary around not only their own art, but all the art in the neighbourhood to stop them from being griefed. Over 200 confirmed users contributed to defending the artwork of all these users until the very last moments of /r/Place. Depicted here are:nnNot within blue boundaryn- AwardBonanza Logon- GoForGold Logon- Mamadon- Green Seedn- 6-Pixel Rainbown- Efrei OwlnnWithin blue boundary (non-Sky)n- Pansexual Flagn- Lemonn- A TV named Screenien- FlowernnWithin blue boundary (Sky)n- Sky Logon- Butterfliesn- Mantas (3)n- Crabn- Moth with Candlesn- Krilln- Jellyfish n", "website": "", "subreddit": "/r/GoForGold", "center": [1189.5, 381.5], "path": [[1181.5, 346.5], [1205.5, 346.5], [1205.5, 382.5], [1222.5, 382.5], [1222.5, 391.5], [1245.5, 391.5], [1245.5, 398.5], [1205.5, 398.5], [1204.5, 398.5], [1204.5, 401.5], [1191.5, 401.5], [1191.5, 402.5], [1183.5, 402.5], [1183.5, 403.5], [1165.5, 403.5], [1165.5, 407.5], [1155.5, 407.5], [1155.5, 385.5], [1158.5, 385.5], [1158.5, 377.5], [1159.5, 377.5], [1159.5, 376.5], [1161.5, 376.5], [1161.5, 367.5], [1181.5, 367.5]]}, {"id": "twnj64", "submitted_by": "ICastTidalWave", "name": "Wings of Fire Logo", "description": "Wings of Fire is a series of children's fantasy novels written by author Tui T. Sutherland.", "website": "", "subreddit": "/r/WingsOfFire", "center": [1066.5, 482.5], "path": [[1053.5, 465.5], [1078.5, 465.5], [1078.5, 498.5], [1053.5, 498.5], [1053.5, 480.5], [1053.5, 472.5]]}, {"id": "twnj5b", "submitted_by": "Trainzack", "name": "3D Benchy", "description": "A mural of the 3D Benchy, one of the most popular 3D printer benchmark tests among 3D printer enthusiasts.", "website": "https://www.3dbenchy.com/about/", "subreddit": "/r/3Dprinting", "center": [281.5, 537.5], "path": [[272.5, 528.5], [272.5, 523.5], [274.5, 523.5], [274.5, 518.5], [275.5, 517.5], [279.5, 517.5], [279.5, 522.5], [281.5, 522.5], [282.5, 521.5], [290.5, 521.5], [290.5, 526.5], [289.5, 526.5], [289.5, 535.5], [290.5, 534.5], [291.5, 534.5], [292.5, 533.5], [300.5, 533.5], [300.5, 540.5], [295.5, 547.5], [292.5, 547.5], [292.5, 548.5], [291.5, 549.5], [266.5, 549.5], [266.5, 548.5], [263.5, 548.5], [262.5, 547.5], [261.5, 547.5], [260.5, 547.5], [258.5, 545.5], [259.5, 544.5], [259.5, 540.5], [260.5, 539.5], [262.5, 539.5], [263.5, 540.5], [265.5, 542.5], [267.5, 542.5], [267.5, 538.5], [273.5, 538.5], [273.5, 528.5], [272.5, 528.5]]}, -{"id": "twnitj", "submitted_by": "XandroR2", "name": "The Cover of Playboi Carti's Whole Lotta Red", "description": "It has been vandalized multiple times since its creation throughout the whole event by a lot of people, including haters of Carti and fans led by streamer Adin Ross. Adin was condemned by the majority of the subreddit for this type of behavior, even also Lil Uzi Vert.", "website": "", "subreddit": "/r/playboicarti", "center": [73.5, 498.5], "path": [[92.5, 528.5], [53.5, 528.5], [53.5, 509.5], [54.5, 508.5], [55.5, 507.5], [55.5, 499.5], [54.5, 498.5], [53.5, 497.5], [53.5, 468.5], [92.5, 468.5], [92.5, 498.5]]}, -{"id": "twniov", "submitted_by": "I_Love_U_and_1892", "name": "Kurzgesagt - In a Nutshell", "description": "The banner of the YouTube channel Kurzgesagt - In a nutshell made by its fans. It consists of 2 ducks surrounding the Kurzgesagt Earth and Moon, a few stars, a black hole, a galaxy and a comet, with a small picture of the German flag in the bottom right corner.", "website": "youtube.com/c/inanutshell", "subreddit": "/r/kurzgesagt", "center": [0.5, 0.5], "path": []}, {"id": "twnil1", "submitted_by": "paketiket", "name": "Brams the Cat", "description": "A little ginger cat that was built by a group of his fans", "website": "", "subreddit": "/r/kotbrams", "center": [1536.5, 1505.5], "path": [[1529.5, 1512.5], [1529.5, 1508.5], [1526.5, 1505.5], [1528.5, 1503.5], [1530.5, 1499.5], [1531.5, 1498.5], [1531.5, 1497.5], [1535.5, 1500.5], [1540.5, 1500.5], [1542.5, 1497.5], [1543.5, 1500.5], [1544.5, 1503.5], [1545.5, 1504.5], [1547.5, 1505.5], [1542.5, 1509.5], [1543.5, 1512.5]]}, {"id": "twnihw", "submitted_by": "RedditRodditRaddit", "name": "Geocaching", "description": "A traditional geocache overlaid on the Geocaching logo. It is the third generation of geocaches placed on the r/Place canvas.", "website": "https://geocaching.com", "subreddit": "/r/geocaching", "center": [1562.5, 199.5], "path": [[1556.5, 193.5], [1556.5, 204.5], [1568.5, 204.5], [1568.5, 193.5], [1556.5, 193.5]]}, {"id": "twni8x", "submitted_by": "wfa19", "name": "CLG", "description": "The logo of esports organization Counter Logic Gaming", "website": "https://clg.gg", "subreddit": "/r/CLG", "center": [1207.5, 891.5], "path": [[1192.5, 892.5], [1198.5, 886.5], [1205.5, 886.5], [1214.5, 888.5], [1221.5, 888.5], [1221.5, 894.5], [1221.5, 896.5], [1208.5, 895.5], [1206.5, 894.5], [1203.5, 894.5], [1201.5, 897.5], [1198.5, 897.5], [1195.5, 895.5], [1192.5, 893.5]]}, {"id": "twnhu3", "submitted_by": "userat", "name": "ISRO", "description": "Indian Space Research Organisation", "website": "", "subreddit": "", "center": [272.5, 275.5], "path": [[251.5, 252.5], [293.5, 252.5], [293.5, 298.5], [250.5, 298.5], [250.5, 252.5], [250.5, 252.5]]}, {"id": "twnhlv", "submitted_by": "Narnall", "name": "Astroneer Logo", "description": "The logo of the game Astroneer", "website": "", "subreddit": "/r/astroneer", "center": [1124.5, 495.5], "path": [[1118.5, 500.5], [1118.5, 497.5], [1119.5, 494.5], [1121.5, 491.5], [1120.5, 491.5], [1121.5, 489.5], [1125.5, 487.5], [1127.5, 490.5], [1128.5, 493.5], [1129.5, 496.5], [1130.5, 500.5], [1129.5, 501.5], [1119.5, 501.5]]}, -{"id": "twngqg", "submitted_by": "userat", "name": "Indian Flag", "description": "Indian Flag with PSLV, Peacock, Madurai Meenakshi Temple, Taj Mahal and a caparisoned elephant.", "website": "", "subreddit": "", "center": [386.5, 320.5], "path": [[241.5, 298.5], [241.5, 308.5], [237.5, 308.5], [237.5, 343.5], [536.5, 342.5], [531.5, 342.5], [531.5, 340.5], [532.5, 339.5], [534.5, 339.5], [535.5, 340.5], [536.5, 340.5], [536.5, 298.5], [241.5, 298.5], [241.5, 298.5], [241.5, 300.5], [241.5, 300.5], [248.5, 298.5], [241.5, 298.5], [241.5, 298.5]]}, {"id": "twngew", "submitted_by": "TheWingedevil", "name": "Noita (H\u00e4mis)", "description": "Noita is a magical action roguelite set in a world where every pixel is physically simulated. Fight, explore, melt, burn, freeze and evaporate your way through the procedurally generated world using spells you've crafted yourself.", "website": "https://noitagame.com/", "subreddit": "/r/noita", "center": [590.5, 911.5], "path": [[549.5, 934.5], [549.5, 900.5], [556.5, 900.5], [556.5, 890.5], [562.5, 890.5], [562.5, 900.5], [638.5, 900.5], [638.5, 888.5], [655.5, 888.5], [655.5, 909.5], [579.5, 909.5], [580.5, 948.5], [572.5, 948.5], [572.5, 934.5], [549.5, 934.5]]}, -{"id": "twng3y", "submitted_by": "Penguiner1888", "name": "evermore", "description": "Taylor Swift's 8th studio album. Completed in collaboration with the 13 and lover albums. Shortly before being taken over by the pufferfish bots.", "website": "www.taylorswift.com", "subreddit": "", "center": [1964.5, 923.5], "path": [[1927.5, 917.5], [1927.5, 929.5], [2001.5, 929.5], [2001.5, 917.5]]}, +{"id": "twng3y", "submitted_by": "Penguiner1888", "name": "evermore - Taylor Swift Album", "description": "Taylor Swift's 9th studio album. The ivy border represents her song 'Ivy', which is track 10 on the album and one of many fan-favourites. The piece was defended for a short period of time before being taken over by pufferfish bots.", "website": "https://en.wikipedia.org/wiki/Evermore_(Taylor_Swift_album)", "subreddit": "/r/TaylorSwift", "center": [1964.5, 923.5], "path": [[1927.5, 917.5], [1927.5, 929.5], [2001.5, 929.5], [2001.5, 917.5]]}, {"id": "twnfym", "submitted_by": "TheAdvertisement", "name": "Spamton", "description": "A popular character from Deltarune Chapter 2, who was heavily memed. The extremely long nose he was given was extended by random people.", "website": "", "subreddit": "/r/Deltarune", "center": [601.5, 408.5], "path": [[698.5, 391.5], [670.5, 391.5], [670.5, 411.5], [594.5, 411.5], [594.5, 400.5], [481.5, 400.5], [481.5, 414.5], [670.5, 414.5], [670.5, 429.5], [698.5, 429.5], [698.5, 398.5], [706.5, 398.5], [706.5, 392.5], [706.5, 392.5], [706.5, 391.5], [675.5, 392.5]]}, {"id": "twnfed", "submitted_by": "Ugleh", "name": "My Neighbour Bebop", "description": "My Neighbour Totoro & Cowboy Bebop overlap made at the same time by streamer Ludwig and his viewers", "website": "https://www.youtube.com/channel/UCrPseYLGpNygVi34QpGNqpA", "subreddit": "/r/LudwigAhgren", "center": [1221.5, 1549.5], "path": [[1155.5, 1489.5], [1286.5, 1489.5], [1286.5, 1609.5], [1156.5, 1609.5]]}, {"id": "twnevu", "submitted_by": "_8o_", "name": "Tomiii 11", "description": "tribute to tomiii 11, a child who passed away due to brain cancer in 2021 whose last wish was to become a big youtuber, as of 04/04/2022 tomiii 11 youtube channel has 10.5 million subscribers.", "website": "https://www.youtube.com/c/tomiii11_oficial", "subreddit": "", "center": [1272.5, 1921.5], "path": [[1299.5, 1953.5], [1243.5, 1953.5], [1244.5, 1897.5], [1249.5, 1894.5], [1249.5, 1890.5], [1248.5, 1890.5], [1248.5, 1888.5], [1300.5, 1888.5], [1300.5, 1953.5]]}, -{ "id": "twnep0", "submitted_by": "sayaduck", "name": "Wynncraft Logo", "description": "A small version of the logo for Wynncraft, a Minecraft MMORPG server.", "website": "https://wynncraft.com/", "subreddit": "/r/wynncraft", "center": [ 705.5, 779.5 ], "path": [ [ 703.5, 775.5 ], [ 707.5, 775.5 ], [ 707.5, 776.5 ], [ 708.5, 776.5 ], [ 708.5, 777.5 ], [ 709.5, 777.5 ], [ 709.5, 778.5 ], [ 708.5, 778.5 ], [ 708.5, 783.5 ], [ 707.5, 783.5 ], [ 707.5, 784.5 ], [ 703.5, 784.5 ], [ 703.5, 783.5 ], [ 702.5, 783.5 ], [ 702.5, 782.5 ], [ 701.5, 782.5 ], [ 701.5, 777.5 ], [ 702.5, 777.5 ], [ 702.5, 776.5 ], [ 703.5, 776.5 ], [ 703.5, 775.5 ] ] }, +{"id": "twnep0", "submitted_by": "sayaduck", "name": "Wynncraft Logo", "description": "A small version of the logo for Wynncraft, a Minecraft MMORPG server.", "website": "https://wynncraft.com/", "subreddit": "/r/wynncraft", "center": [705.5, 779.5], "path": [[703.5, 775.5], [707.5, 775.5], [707.5, 776.5], [708.5, 776.5], [708.5, 777.5], [709.5, 777.5], [709.5, 778.5], [708.5, 778.5], [708.5, 783.5], [707.5, 783.5], [707.5, 784.5], [703.5, 784.5], [703.5, 783.5], [702.5, 783.5], [702.5, 782.5], [701.5, 782.5], [701.5, 777.5], [702.5, 777.5], [702.5, 776.5], [703.5, 776.5], [703.5, 775.5]]}, {"id": "twne4z", "submitted_by": "MrDaveCole98", "name": "Red vs. Blue", "description": "An American web series produced by Rooster Teeth. The show is based on the Halo franchise.", "website": "https://roosterteeth.com/channel/red-vs-blue-universe", "subreddit": "/r/RedvsBlue", "center": [461.5, 698.5], "path": [[448.5, 682.5], [472.5, 682.5], [472.5, 713.5], [449.5, 713.5], [449.5, 682.5]]}, {"id": "twndms", "submitted_by": "userat", "name": "Indian Flag", "description": "Indian flag with the India gate, Lotus and The Himalayas", "website": "", "subreddit": "", "center": [170.5, 1199.5], "path": [[0.5, 1225.5], [0.5, 1173.5], [343.5, 1175.5], [343.5, 1225.5], [2.5, 1225.5], [2.5, 1225.5], [0.5, 1225.5], [0.5, 1225.5]]}, {"id": "twndhk", "submitted_by": "TheCracker27", "name": "Rio Logo", "description": "The logo for the 2011 animated movie about spix's macaws", "website": "https://rio.fandom.com/wiki/Rio_Wiki", "subreddit": "/r/RioMovie", "center": [1338.5, 1757.5], "path": [[1332.5, 1754.5], [1344.5, 1754.5], [1344.5, 1759.5], [1332.5, 1759.5]]}, {"id": "twndhc", "submitted_by": "penguin14425", "name": "r/protogen", "description": "a sub reddit for protogens, incudes, memes art", "website": "", "subreddit": "/r/protogen", "center": [304.5, 1914.5], "path": [[291.5, 1903.5], [317.5, 1903.5], [316.5, 1926.5], [292.5, 1926.5]]}, {"id": "twndd2", "submitted_by": "TacoMadeOfCoco", "name": "Deeeep.io - Eat fish, become the shark", "description": "4 colorful clownfish made by r/deeeepio. Deeeep.io is a multiplayer online browser game. You start as small aquatic animals, and evolve to become the apex predator.", "website": "https://deeeep.io/", "subreddit": "/r/deeeepio", "center": [490.5, 1644.5], "path": [[479.5, 1650.5], [479.5, 1637.5], [500.5, 1637.5], [500.5, 1650.5], [500.5, 1650.5]]}, {"id": "twncts", "submitted_by": "Narnall", "name": "Neco arc", "description": "buru nyu", "website": "", "subreddit": "", "center": [462.5, 1087.5], "path": [[448.5, 1071.5], [476.5, 1071.5], [476.5, 1103.5], [449.5, 1103.5]]}, -{"id": "twncr2", "submitted_by": "SOXDRAW", "name": "Eren yeager", "description": "The true eren from anime and manga attack on titan", "website": "Shingekinokyojin.com", "subreddit": "/r/titanfolk", "center": [205.5, 132.5], "path": [[172.5, 92.5], [174.5, 137.5], [133.5, 139.5], [133.5, 94.5], [88.5, 96.5], [84.5, 113.5], [125.5, 116.5], [138.5, 92.5], [137.5, 112.5], [146.5, 94.5], [143.5, 91.5], [139.5, 94.5], [137.5, 98.5]]}, +{"id": "twncr2", "submitted_by": "SOXDRAW", "name": "Eren yeager", "description": "The true eren from anime and manga attack on titan", "website": "https://Shingekinokyojin.com", "subreddit": "/r/titanfolk", "center": [205.5, 132.5], "path": [[172.5, 92.5], [174.5, 137.5], [133.5, 139.5], [133.5, 94.5], [88.5, 96.5], [84.5, 113.5], [125.5, 116.5], [138.5, 92.5], [137.5, 112.5], [146.5, 94.5], [143.5, 91.5], [139.5, 94.5], [137.5, 98.5]]}, {"id": "twnc9l", "submitted_by": "FRUHD", "name": "#100Devs", "description": "It's our fearless leader, miniLeon! miniLeons are the currency on Twitch streams led by Leon Noel, who created #100Devs: A free full stack coding bootcamp for those laid off or affected by the pandemic.", "website": "https://www.twitch.tv/learnwithleon", "subreddit": "", "center": [840.5, 534.5], "path": [[832.5, 521.5], [832.5, 547.5], [848.5, 547.5], [848.5, 521.5]]}, {"id": "twnbtz", "submitted_by": "VermillionOcean", "name": "Madoka Magoca", "description": "Puella Magi Madoka Magica is a 2011 anime series animated by Shaft studio. The characters featured are Akemi Homura on the left and Kaname Madoka on the right. The 5 hearts represent the 5 magical girls featured on the show in order from top to bottom: Akemi Homura, Kname Madoka, Miki Sayaka, Sakura Kyouko and Tomoe Mami.", "website": "https://wiki.puella-magi.net/Puella_Magi_Madoka_Magica", "subreddit": "/r/MadokaMagica", "center": [652.5, 402.5], "path": [[635.5, 393.5], [635.5, 410.5], [669.5, 410.5], [669.5, 393.5]]}, {"id": "twnbju", "submitted_by": "_8o_", "name": "VT LATAM", "description": "VTLatam represents all of the VTubers from the spanish-speaking community made by various streamers.", "website": "", "subreddit": "", "center": [1752.5, 1969.5], "path": [[1731.5, 1952.5], [1774.5, 1952.5], [1773.5, 1986.5], [1731.5, 1986.5], [1731.5, 1952.5]]}, @@ -689,11 +638,9 @@ {"id": "twnaxd", "submitted_by": "Narnall", "name": "Mug Moment", "description": "This is a certified MUG MOMENT.", "website": "", "subreddit": "", "center": [669.5, 1707.5], "path": [[644.5, 1693.5], [644.5, 1693.5], [645.5, 1693.5], [646.5, 1693.5], [646.5, 1691.5], [648.5, 1689.5], [653.5, 1687.5], [687.5, 1686.5], [692.5, 1690.5], [693.5, 1716.5], [691.5, 1716.5], [691.5, 1718.5], [689.5, 1719.5], [689.5, 1731.5], [686.5, 1731.5], [685.5, 1730.5], [681.5, 1730.5], [681.5, 1729.5], [680.5, 1728.5], [658.5, 1728.5], [658.5, 1729.5], [655.5, 1729.5], [653.5, 1729.5], [651.5, 1728.5], [648.5, 1724.5], [648.5, 1721.5], [648.5, 1719.5], [645.5, 1718.5], [644.5, 1713.5]]}, {"id": "twn9mp", "submitted_by": "_8o_", "name": "Nimu VT", "description": "Nimu Spacecat is one of the biggest spanish vtubers,this pixel art shows her official mascot, which is a parasite that hosts the body of centi, the girl that we can usually see on her streams.", "website": "https://www.youtube.com/c/NimuCh", "subreddit": "", "center": [1528.5, 1186.5], "path": [[1506.5, 1172.5], [1506.5, 1200.5], [1550.5, 1200.5], [1550.5, 1172.5]]}, {"id": "twn9em", "submitted_by": "GamerGuySeth", "name": "New Location McGee", "description": "Hey all, Scott here!", "website": "", "subreddit": "/r/scottthewoz", "center": [1577.5, 230.5], "path": [[1577.5, 230.5], [1603.5, 231.5], [1603.5, 248.5], [1551.5, 248.5], [1551.5, 212.5], [1603.5, 212.5], [1603.5, 231.5]]}, -{"id": "twn9c1", "submitted_by": "veem96", "name": "ISRO logo", "description": "Logo of the Indian Space Research Organisation", "website": "Indian Space Research Organisation", "subreddit": "/r/indiaplace", "center": [272.5, 275.5], "path": [[251.5, 252.5], [251.5, 253.5], [292.5, 252.5], [292.5, 297.5], [251.5, 297.5]]}, +{"id": "twn9c1", "submitted_by": "veem96", "name": "ISRO logo", "description": "Logo of the Indian Space Research Organisation", "website": "https://Indian Space Research Organisation", "subreddit": "/r/indiaplace", "center": [272.5, 275.5], "path": [[251.5, 252.5], [251.5, 253.5], [292.5, 252.5], [292.5, 297.5], [251.5, 297.5]]}, {"id": "twn99e", "submitted_by": "LeaderThren", "name": "Anbennar", "description": "An fantasy word setting inspired by mainstream D&D worlds, and has become an EU4 mod.", "website": "", "subreddit": "/r/anbennar", "center": [580.5, 991.5], "path": [[540.5, 974.5], [540.5, 1012.5], [623.5, 1012.5], [624.5, 1012.5], [624.5, 974.5], [610.5, 974.5], [610.5, 975.5], [609.5, 975.5], [609.5, 976.5], [608.5, 976.5], [607.5, 976.5], [607.5, 975.5], [607.5, 974.5], [572.5, 974.5], [572.5, 960.5], [551.5, 960.5], [551.5, 974.5]]}, -{"id": "twn97p", "submitted_by": "Vernon-xta", "name": "The United States of America", "description": "A shrining bastion of Freedom and Democracy. An idea of free men and women in a land of brave generations. The flag was taken down by multiple invaders and shredded by many hostiles. But the American people hold their flag high and their voice higher. What can you stop? Certainly not an idea, certainly not the American people.", "website": "", "subreddit": "/r/AmericaFlagInPlace", "center": [1887.5, 1809.5], "path": [[1775.5, 1751.5], [1999.5, 1750.5], [1999.5, 1867.5], [1774.5, 1868.5], [1774.5, 1792.5]]}, {"id": "twn8k6", "submitted_by": "Trainzack", "name": "GME Stock Price Line", "description": "A line representing the price of the GME stock. The line exits its originating mural and weaves between multiple other murals. Note that the line has been traced here only so far as it unambiguously does not branch; multiple offshoots of the line continue beyond that point.", "website": "", "subreddit": "", "center": [1328.5, 308.5], "path": [[774.5, 782.5], [774.5, 784.5], [870.5, 784.5], [871.5, 783.5], [872.5, 778.5], [874.5, 779.5], [876.5, 783.5], [877.5, 784.5], [878.5, 783.5], [879.5, 780.5], [881.5, 778.5], [882.5, 780.5], [882.5, 784.5], [883.5, 784.5], [884.5, 782.5], [885.5, 781.5], [886.5, 779.5], [887.5, 780.5], [888.5, 782.5], [889.5, 784.5], [890.5, 782.5], [891.5, 780.5], [892.5, 778.5], [893.5, 780.5], [894.5, 781.5], [895.5, 782.5], [896.5, 784.5], [897.5, 782.5], [898.5, 780.5], [899.5, 779.5], [900.5, 781.5], [901.5, 783.5], [902.5, 784.5], [905.5, 784.5], [905.5, 619.5], [909.5, 619.5], [909.5, 514.5], [956.5, 514.5], [956.5, 497.5], [964.5, 497.5], [964.5, 364.5], [1046.5, 364.5], [1098.5, 312.5], [1394.5, 312.5], [1394.5, 277.5], [1411.5, 247.5], [1440.5, 247.5], [1440.5, 240.5], [1458.5, 240.5], [1458.5, 205.5], [1514.5, 205.5], [1514.5, 204.5], [1522.5, 204.5], [1522.5, 114.5], [1527.5, 109.5], [1528.5, 107.5], [1529.5, 105.5], [1530.5, 103.5], [1531.5, 101.5], [1532.5, 99.5], [1537.5, 90.5], [1537.5, 64.5], [1562.5, 64.5], [1562.5, 37.5], [1597.5, 2.5], [1971.5, 2.5], [1998.5, 33.5], [1998.5, 80.5], [1971.5, 80.5], [1971.5, 99.5], [1953.5, 99.5], [1953.5, 118.5], [1951.5, 118.5], [1951.5, 119.5], [1952.5, 119.5], [1952.5, 132.5], [1953.5, 133.5], [1953.5, 159.5], [1947.5, 159.5], [1947.5, 173.5], [1940.5, 173.5], [1940.5, 174.5], [1939.5, 174.5], [1939.5, 238.5], [1941.5, 238.5], [1941.5, 175.5], [1949.5, 175.5], [1949.5, 161.5], [1955.5, 161.5], [1955.5, 131.5], [1953.5, 131.5], [1953.5, 119.5], [1955.5, 119.5], [1955.5, 101.5], [1973.5, 101.5], [1973.5, 82.5], [1999.5, 82.5], [1999.5, 28.5], [1974.5, 0.5], [1596.5, 0.5], [1559.5, 37.5], [1559.5, 61.5], [1534.5, 61.5], [1534.5, 89.5], [1525.5, 106.5], [1519.5, 110.5], [1519.5, 202.5], [1455.5, 202.5], [1455.5, 237.5], [1437.5, 237.5], [1437.5, 244.5], [1409.5, 244.5], [1391.5, 276.5], [1391.5, 309.5], [1096.5, 309.5], [1043.5, 361.5], [961.5, 361.5], [961.5, 494.5], [953.5, 494.5], [953.5, 511.5], [906.5, 511.5], [906.5, 616.5], [902.5, 616.5], [902.5, 781.5], [901.5, 778.5], [899.5, 774.5], [896.5, 780.5], [892.5, 774.5], [889.5, 780.5], [886.5, 776.5], [884.5, 779.5], [882.5, 776.5], [881.5, 773.5], [880.5, 776.5], [878.5, 778.5], [877.5, 781.5], [875.5, 777.5], [874.5, 774.5], [873.5, 776.5], [872.5, 773.5], [869.5, 782.5], [774.5, 782.5]]}, -{"id": "twn8gv", "submitted_by": "Advanced-Vacation-49", "name": "France", "description": "The flag of France", "website": "", "subreddit": "/r/france", "center": [0.5, 0.5], "path": []}, {"id": "twn8d6", "submitted_by": "qfoxb", "name": "Moist E-Sports", "description": "An E-Sports team ran by Cr1Tikal also known as penguinz0", "website": "https://www.twitch.tv/moistcr1tikal", "subreddit": "/r/penguinz0", "center": [1986.5, 98.5], "path": [[1974.5, 83.5], [1998.5, 83.5], [1998.5, 112.5], [1974.5, 112.5]]}, {"id": "twn7z4", "submitted_by": "WeedRats", "name": "r/furry", "description": "Mural made by r/furry.", "website": "https://discord.com/invite/rfurry", "subreddit": "/r/furry", "center": [1763.5, 913.5], "path": [[1749.5, 929.5], [1749.5, 897.5], [1772.5, 897.5], [1780.5, 908.5], [1780.5, 912.5], [1774.5, 912.5], [1774.5, 916.5], [1776.5, 918.5], [1777.5, 928.5], [1775.5, 928.5], [1775.5, 937.5], [1771.5, 934.5], [1771.5, 929.5], [1768.5, 929.5], [1766.5, 927.5], [1764.5, 929.5], [1762.5, 929.5], [1760.5, 927.5], [1758.5, 929.5], [1749.5, 929.5]]}, {"id": "twn7yg", "submitted_by": "connardnumero1", "name": "The Little Prince", "description": "Famous french story of Antoine de Saint-Exupery. This simple tale tells the story of a child, the little prince, who travels the universe gaining wisdom. He discovers how to love, appriciate, understand and truly live a happy and peaceful life", "website": "https://en.wikipedia.org/wiki/The_Little_Prince", "subreddit": "/r/TheLittlePrince", "center": [154.5, 357.5], "path": [[133.5, 386.5], [175.5, 386.5], [175.5, 328.5], [133.5, 328.5], [133.5, 328.5]]}, @@ -711,8 +658,6 @@ {"id": "twn3zy", "submitted_by": "Midokuni", "name": "Blue Archive and Sporkbot", "description": "Hifumi and Peroro from Blue Archive along with Sporkbot server. And half of the burger.n", "website": "https://discord.gg/bluearchive", "subreddit": "/r/BlueArchive", "center": [163.5, 989.5], "path": [[136.5, 963.5], [189.5, 963.5], [189.5, 1014.5], [136.5, 1014.5]]}, {"id": "twn3rk", "submitted_by": "qfoxb", "name": "iPod Classic", "description": "An iPod Classic, used to have an iPod Nano next to it, but it was destroyed.", "website": "https://discord.gg/iPod", "subreddit": "/r/ipod", "center": [858.5, 984.5], "path": [[855.5, 978.5], [855.5, 989.5], [861.5, 989.5], [861.5, 978.5]]}, {"id": "twn3qv", "submitted_by": "FastHound", "name": "Chile", "description": "Chilean flag with depictions of the Andes mountains, the pud\u00fa, the condor, red wine, mote con huesillo and the silhouette of the country in the flag", "website": "", "subreddit": "/r/chile", "center": [333.5, 489.5], "path": [[245.5, 528.5], [272.5, 528.5], [272.5, 523.5], [274.5, 523.5], [274.5, 518.5], [274.5, 517.5], [279.5, 517.5], [279.5, 522.5], [281.5, 522.5], [281.5, 521.5], [290.5, 521.5], [290.5, 526.5], [300.5, 526.5], [300.5, 528.5], [314.5, 528.5], [378.5, 528.5], [421.5, 527.5], [421.5, 450.5], [244.5, 450.5], [244.5, 528.5]]}, -{"id": "twn3no", "submitted_by": "Narnall", "name": "Colorado Flag", "description": "A flag of colorado", "website": "", "subreddit": "/r/Colorado", "center": [10.5, 738.5], "path": [[0.5, 730.5], [20.5, 730.5], [20.5, 745.5], [0.5, 745.5]]}, -{"id": "twn3ne", "submitted_by": "flappity", "name": "Aromantic/Ace Flags", "description": "Three flags from the aromantic/asexual community. nnFirst flag: top 5 stripes (Dark yellow, light yellow, white, blue, dark blue) are the Aroace flagnnSecond flag: Next five stripes (Dark green, light green, white, grey, black) are the Aromantic flagnnThird flag: Bottom four stripes (Black, grey, white, purple) are the Asexual flag.", "website": "", "subreddit": "", "center": [524.5, 664.5], "path": [[449.5, 646.5], [598.5, 647.5], [598.5, 682.5], [449.5, 681.5], [449.5, 646.5]]}, {"id": "twn3ak", "submitted_by": "carpinx", "name": "Mate", "description": "Traditional South American, specially Argentinian and Uruguayan, caffeine-rich infused drink.", "website": "", "subreddit": "", "center": [1092.5, 656.5], "path": [[1083.5, 664.5], [1081.5, 661.5], [1082.5, 656.5], [1087.5, 649.5], [1095.5, 648.5], [1100.5, 643.5], [1104.5, 644.5], [1098.5, 651.5], [1098.5, 653.5], [1102.5, 657.5], [1101.5, 665.5], [1084.5, 665.5]]}, {"id": "twn35n", "submitted_by": "Kliuqard", "name": "Excalibur & The Lotus Symbol", "description": "Excalibur Warframe from Warframe and the Lotus symbol, the trademark symbol of the game. Bonus Central Alliance logo (top left).", "website": "https://www.warframe.com", "subreddit": "/r/Warframe", "center": [570.5, 1063.5], "path": [[540.5, 1054.5], [540.5, 1068.5], [562.5, 1068.5], [562.5, 1081.5], [590.5, 1081.5], [590.5, 1046.5], [562.5, 1046.5], [562.5, 1054.5], [540.5, 1054.5]]}, {"id": "twn2ft", "submitted_by": "MasterTrouble", "name": "FIRST Robotics", "description": "FIRST Robotics is an organization that sponsors multiple robotics leagues and teaches students about STEM and working with others all around the world. The 4 digit numbers in area are FRC team numbers that contributed to logo", "website": "https://www.firstinspires.org/", "subreddit": "/r/FRC, /r/FTC, /r/FLL", "center": [1201.5, 1636.5], "path": [[1163.5, 1609.5], [1223.5, 1610.5], [1223.5, 1647.5], [1280.5, 1648.5], [1280.5, 1655.5], [1163.5, 1658.5]]}, @@ -720,19 +665,18 @@ {"id": "twn1sc", "submitted_by": "mc395686", "name": "Minecraft Championship", "description": "MCC is a Minecraft tournament featuring various different creators competing in minigames!", "website": "https://noxcrew.com/mcc", "subreddit": "/r/Minecraftchampionship", "center": [1789.5, 117.5], "path": [[1801.5, 98.5], [1809.5, 109.5], [1809.5, 130.5], [1789.5, 130.5], [1789.5, 141.5], [1780.5, 141.5], [1780.5, 130.5], [1769.5, 131.5], [1769.5, 110.5], [1774.5, 110.5], [1774.5, 98.5]]}, {"id": "twn1rc", "submitted_by": "Oponik", "name": "Jetstream Sam", "description": "His real name is Samuel Rodrigues from Metal Gear Rising Revengeance. Has the whitest smile and a thicc ass", "website": "", "subreddit": "", "center": [1880.5, 1720.5], "path": [[1884.5, 1740.5], [1896.5, 1740.5], [1897.5, 1741.5], [1901.5, 1741.5], [1901.5, 1737.5], [1901.5, 1734.5], [1901.5, 1731.5], [1893.5, 1728.5], [1894.5, 1722.5], [1892.5, 1719.5], [1893.5, 1712.5], [1889.5, 1705.5], [1885.5, 1702.5], [1880.5, 1698.5], [1872.5, 1697.5], [1868.5, 1698.5], [1864.5, 1700.5], [1862.5, 1707.5], [1862.5, 1718.5], [1866.5, 1722.5], [1863.5, 1726.5], [1868.5, 1730.5], [1870.5, 1732.5], [1869.5, 1735.5], [1873.5, 1736.5], [1878.5, 1740.5]]}, {"id": "twn1pg", "submitted_by": "carpinx", "name": "Fernet con Coca", "description": "Typical drink from Argentina. Fernet Branca (Italian beverage) mixed with Coca-Cola, usually in a 30-70 proportion.", "website": "", "subreddit": "", "center": [1030.5, 654.5], "path": [[1016.5, 665.5], [1045.5, 665.5], [1044.5, 649.5], [1043.5, 647.5], [1043.5, 642.5], [1039.5, 642.5], [1028.5, 642.5], [1025.5, 644.5], [1018.5, 644.5], [1017.5, 651.5], [1015.5, 653.5], [1016.5, 665.5]]}, -{"id": "twn1fh", "submitted_by": "firthisaword", "name": "Bulgarian Flag", "description": "The flag of Bulgaria and a portrait of its national hero Vasil Levski", "website": "", "subreddit": "/r/bulgaria", "center": [1622.5, 729.5], "path": [[1578.5, 691.5], [1664.5, 691.5], [1666.5, 767.5], [1580.5, 767.5], [1578.5, 691.5]]}, +{"id": "twn1fh", "submitted_by": "firthisaword", "name": "Bulgarian Flag", "description": "The second Bulgarian flag on the canvas, with national heroes Vasil Levski and Hristo Botev, and former professional football player Dimitar Berbatov", "website": "", "subreddit": "/r/bulgaria", "center": [1620.5, 728.5], "path": [[1577.5, 690.5], [1577.5, 758.5], [1579.5, 760.5], [1579.5, 762.5], [1578.5, 763.5], [1578.5, 767.5], [1581.5, 767.5], [1582.5, 766.5], [1596.5, 766.5], [1597.5, 765.5], [1598.5, 765.5], [1599.5, 766.5], [1605.5, 766.5], [1606.5, 765.5], [1607.5, 765.5], [1608.5, 766.5], [1663.5, 766.5], [1663.5, 691.5], [1662.5, 691.5], [1661.5, 690.5], [1577.5, 690.5]]}, {"id": "twn0zr", "submitted_by": "GamerRighway", "name": "Hikari", "description": "One of the two main characters of Arcaea; representing 'Light'", "website": "https://arcaea.lowiro.com/en", "subreddit": "/r/arcaea", "center": [1841.5, 1665.5], "path": [[1833.5, 1661.5], [1834.5, 1660.5], [1834.5, 1659.5], [1835.5, 1658.5], [1835.5, 1657.5], [1836.5, 1656.5], [1837.5, 1655.5], [1838.5, 1654.5], [1839.5, 1654.5], [1840.5, 1654.5], [1841.5, 1654.5], [1842.5, 1654.5], [1843.5, 1654.5], [1844.5, 1655.5], [1845.5, 1656.5], [1846.5, 1657.5], [1846.5, 1658.5], [1847.5, 1659.5], [1847.5, 1660.5], [1848.5, 1661.5], [1848.5, 1662.5], [1847.5, 1662.5], [1847.5, 1663.5], [1847.5, 1664.5], [1847.5, 1665.5], [1847.5, 1666.5], [1847.5, 1667.5], [1847.5, 1668.5], [1847.5, 1669.5], [1848.5, 1670.5], [1849.5, 1671.5], [1848.5, 1672.5], [1847.5, 1673.5], [1846.5, 1672.5], [1845.5, 1672.5], [1844.5, 1673.5], [1843.5, 1674.5], [1843.5, 1675.5], [1842.5, 1676.5], [1841.5, 1675.5], [1840.5, 1675.5], [1839.5, 1676.5], [1838.5, 1675.5], [1838.5, 1674.5], [1837.5, 1673.5], [1836.5, 1672.5], [1835.5, 1672.5], [1834.5, 1673.5], [1833.5, 1672.5], [1832.5, 1671.5], [1833.5, 1670.5], [1834.5, 1669.5], [1834.5, 1668.5], [1834.5, 1667.5], [1834.5, 1666.5], [1834.5, 1665.5], [1834.5, 1664.5], [1834.5, 1663.5], [1834.5, 1662.5], [1833.5, 1662.5], [1833.5, 1661.5]]}, {"id": "twn05d", "submitted_by": "daily_flags", "name": "Giant \u00d1 between hispanic flags", "description": "Giant \u00d1 that represents the Spanish language, on the sides is the flag of Ecuador, Mexico, Dominican Republic, Guatemala, Argentina, Colombia, Spain, Panama, El Salvador, Cuba, Puerto Rico, Bolivia, Nicaragua, Chile, Venezuela, Uruguay and Paraguay plus the flag of France, the old Chechnya flag, and a random unrecognized flag", "website": "", "subreddit": "/r/PERU, with, the, help, of, other, random, redditords", "center": [500.5, 628.5], "path": [[535.5, 610.5], [535.5, 646.5], [465.5, 646.5], [465.5, 610.5]]}, {"id": "twmzln", "submitted_by": "_8o_", "name": "Cyclic VS Riot", "description": "a tribute to one of the biggest rivalries in geometry dash history", "website": "", "subreddit": "/r/geometrydashplace", "center": [583.5, 1698.5], "path": [[550.5, 1711.5], [588.5, 1711.5], [589.5, 1710.5], [597.5, 1710.5], [598.5, 1711.5], [615.5, 1711.5], [615.5, 1706.5], [616.5, 1706.5], [617.5, 1705.5], [618.5, 1705.5], [618.5, 1703.5], [619.5, 1702.5], [618.5, 1701.5], [618.5, 1700.5], [619.5, 1699.5], [618.5, 1698.5], [616.5, 1695.5], [617.5, 1695.5], [617.5, 1694.5], [618.5, 1693.5], [615.5, 1690.5], [614.5, 1687.5], [599.5, 1687.5], [598.5, 1688.5], [597.5, 1686.5], [598.5, 1686.5], [598.5, 1680.5], [590.5, 1680.5], [587.5, 1682.5], [583.5, 1682.5], [577.5, 1687.5], [573.5, 1687.5], [571.5, 1689.5], [568.5, 1689.5], [566.5, 1687.5], [562.5, 1687.5], [560.5, 1689.5], [558.5, 1689.5], [558.5, 1687.5], [557.5, 1687.5], [554.5, 1684.5], [553.5, 1684.5], [552.5, 1683.5], [550.5, 1683.5], [550.5, 1711.5]]}, {"id": "twmzdz", "submitted_by": "Mathgeek007", "name": "Trash Taste", "description": "An anime podcast run by three anitubers: Connor (CDawgVA), Joey (TheAn1meMan), and Garnt (GiggukAZ). The white logo represents the main podcast and brand, while the black variant next to it is for After Dark, the YouTube channel that hosts stream VODs and other miscellaneous content. The subtitle references a friend of the show and regular guest - Chris Broad. Beneath are people related to the podcast, from left to right: Ashley, Mudan, Ironmouse, Sydsnap, Akidearest, Ladybeard, Shibuya Kaho, Meilyne, Chris Broad, Garnt, Joey, and Connor.", "website": "https://www.youtube.com/channel/UCcmxOGYGF51T1XsqQLewGtQ", "subreddit": "/r/TrashTaste", "center": [39.5, 559.5], "path": [[77.5, 528.5], [78.5, 589.5], [0.5, 588.5], [0.5, 529.5]]}, -{"id": "twmyah", "submitted_by": "Arlong-sama", "name": "V\u0334\u030b\u0303\u030e\u030c\u0358\u034a\u034a\u0300\u035d\u0307\u034c\u0352\u0343\u0327o\u0334\u0313\u0350\u0304\u030a\u0315\u0315\u0303\u030a\u033e\u035d\u0351\u0314\u030c\u0321\u031c\u031c\u0329\u031c\u0328\u0325\u0320\u0329\u032c\u032bi\u0337\u0352\u0311\u033e\u0357\u0344\u0357\u0343\u030f\u030d\u033d\u0352\u034c\u0323\u0316\u0345\u0318\u0333\u031d\u032a\u032f\u0321\u0332\u033c\u033b\u0318\u033bd\u0336\u0305\u0330\u0326\u032d\u0324\u0347\u033c\u0316 \u0336\u034c\u0340\u0314\u030c\u033f\u0302\u0303\u0307\u0342\u0357\u030b\u030e\u035d\u030e\u035a\u0319\u035a\u035a\u0325\u0354\u0328\u031d\u0354\u035c\u034e\u0319\u0324\u033c\u034dM\u0334\u033e\u030f\u0342\u031b\u0301\u0351\u0310\u0351\u0310\u0311\u0300\u0301\u032f\u0319\u0322\u0339\u0356\u0330\u034d\u033c\u034d\u0339\u033bo\u0338\u0302\u035b\u0302\u0306\u0303\u0351\u0358\u0313\u0303\u0304\u0344\u0301\u033f\u030e\u030b\u0321t\u0335\u033e\u0344\u0343\u032c\u032f\u0339\u0333h\u0334\u035d\u0315\u031b\u0332\u032c\u0324\u0339\u0323\u0318\u0333e\u0335\u0351\u030f\u0302\u0308r\u0336\u0308\u0357\u0303\u030c\u032c", "description": "T\u0335\u0314\u0359\u0323\u0348he\u0337\u0312\u0350\u033d\u0317\u0323\u0330\u0349 \u0338\u0314\u030a\u0312\u0304\u032c\u035aV\u0335\u035b\u0305\u0304\u035b\u0318\u0316\u0326o\u0338\u0308\u0346\u0327\u0318\u031e\u0332i\u0338\u033f\u035b\u0303\u033b\u0349\u0319d\u0338\u0305\u035c\u0323\u031c \u0334\u0342\u031d\u031fC\u0338\u0351\u031c\u0328o\u0338\u0351\u0324\u0319\u0321n\u0338\u0302\u0345\u033b\u0333s\u0334\u0303\u0329\u0318\u0348\u0321u\u0335\u034c\u0303\u0303\u0348\u0329m\u0334\u033e\u0300\u0300\u0357\u035a\u034ee\u0337\u0315\u0318s\u0334\u0313\u0332\u0345\u0331 \u0337\u030f\u034a\u033f\u0306\u032e\u034dA\u0334\u030e\u032e\u032a\u0325l\u0334\u0343\u032cl\u0336\u0310\u0327\u034d", "website": "V\u0335\u0306\u0358\u030a\u0345\u0345\u031dO\u0335\u035d\u0312\u030e\u0350\u0345I\u0338\u030c\u0315\u035d\u0323\u0319\u034eD\u0338\u0300\u0311\u030f\u0341\u0330\u034e\u035c", "subreddit": "V\u0335\u0306\u0358\u030a\u0345\u0345\u031dO\u0335\u035d\u0312\u030e\u0350\u0345I\u0338\u030c\u0315\u035d\u0323\u0319\u034eD\u0338\u0300\u0311\u030f\u0341\u0330\u034e\u035c", "center": [1017.5, 1481.5], "path": [[989.5, 1349.5], [967.5, 1376.5], [949.5, 1427.5], [959.5, 1437.5], [965.5, 1446.5], [965.5, 1459.5], [965.5, 1471.5], [964.5, 1497.5], [962.5, 1574.5], [992.5, 1631.5], [1006.5, 1652.5], [1022.5, 1656.5], [1031.5, 1641.5], [1041.5, 1617.5], [1057.5, 1592.5], [1063.5, 1564.5], [1066.5, 1536.5], [1066.5, 1503.5], [1069.5, 1485.5], [1073.5, 1466.5], [1081.5, 1444.5], [1081.5, 1421.5], [1074.5, 1389.5], [1071.5, 1364.5], [1068.5, 1350.5], [1041.5, 1343.5], [1031.5, 1333.5], [1022.5, 1331.5], [1004.5, 1337.5], [993.5, 1343.5]]}, +{"id": "twmyah", "submitted_by": "Arlong-sama", "name": "V\u0334\u030b\u0303\u030e\u030c\u0358\u034a\u034a\u0300\u035d\u0307\u034c\u0352\u0343\u0327o\u0334\u0313\u0350\u0304\u030a\u0315\u0315\u0303\u030a\u033e\u035d\u0351\u0314\u030c\u0321\u031c\u031c\u0329\u031c\u0328\u0325\u0320\u0329\u032c\u032bi\u0337\u0352\u0311\u033e\u0357\u0344\u0357\u0343\u030f\u030d\u033d\u0352\u034c\u0323\u0316\u0345\u0318\u0333\u031d\u032a\u032f\u0321\u0332\u033c\u033b\u0318\u033bd\u0336\u0305\u0330\u0326\u032d\u0324\u0347\u033c\u0316 \u0336\u034c\u0340\u0314\u030c\u033f\u0302\u0303\u0307\u0342\u0357\u030b\u030e\u035d\u030e\u035a\u0319\u035a\u035a\u0325\u0354\u0328\u031d\u0354\u035c\u034e\u0319\u0324\u033c\u034dM\u0334\u033e\u030f\u0342\u031b\u0301\u0351\u0310\u0351\u0310\u0311\u0300\u0301\u032f\u0319\u0322\u0339\u0356\u0330\u034d\u033c\u034d\u0339\u033bo\u0338\u0302\u035b\u0302\u0306\u0303\u0351\u0358\u0313\u0303\u0304\u0344\u0301\u033f\u030e\u030b\u0321t\u0335\u033e\u0344\u0343\u032c\u032f\u0339\u0333h\u0334\u035d\u0315\u031b\u0332\u032c\u0324\u0339\u0323\u0318\u0333e\u0335\u0351\u030f\u0302\u0308r\u0336\u0308\u0357\u0303\u030c\u032c", "description": "T\u0335\u0314\u0359\u0323\u0348he\u0337\u0312\u0350\u033d\u0317\u0323\u0330\u0349 \u0338\u0314\u030a\u0312\u0304\u032c\u035aV\u0335\u035b\u0305\u0304\u035b\u0318\u0316\u0326o\u0338\u0308\u0346\u0327\u0318\u031e\u0332i\u0338\u033f\u035b\u0303\u033b\u0349\u0319d\u0338\u0305\u035c\u0323\u031c \u0334\u0342\u031d\u031fC\u0338\u0351\u031c\u0328o\u0338\u0351\u0324\u0319\u0321n\u0338\u0302\u0345\u033b\u0333s\u0334\u0303\u0329\u0318\u0348\u0321u\u0335\u034c\u0303\u0303\u0348\u0329m\u0334\u033e\u0300\u0300\u0357\u035a\u034ee\u0337\u0315\u0318s\u0334\u0313\u0332\u0345\u0331 \u0337\u030f\u034a\u033f\u0306\u032e\u034dA\u0334\u030e\u032e\u032a\u0325l\u0334\u0343\u032cl\u0336\u0310\u0327\u034d", "website": "https://V\u0335\u0306\u0358\u030a\u0345\u0345\u031dO\u0335\u035d\u0312\u030e\u0350\u0345I\u0338\u030c\u0315\u035d\u0323\u0319\u034eD\u0338\u0300\u0311\u030f\u0341\u0330\u034e\u035c", "subreddit": "V\u0335\u0306\u0358\u030a\u0345\u0345\u031dO\u0335\u035d\u0312\u030e\u0350\u0345I\u0338\u030c\u0315\u035d\u0323\u0319\u034eD\u0338\u0300\u0311\u030f\u0341\u0330\u034e\u035c", "center": [1017.5, 1481.5], "path": [[989.5, 1349.5], [967.5, 1376.5], [949.5, 1427.5], [959.5, 1437.5], [965.5, 1446.5], [965.5, 1459.5], [965.5, 1471.5], [964.5, 1497.5], [962.5, 1574.5], [992.5, 1631.5], [1006.5, 1652.5], [1022.5, 1656.5], [1031.5, 1641.5], [1041.5, 1617.5], [1057.5, 1592.5], [1063.5, 1564.5], [1066.5, 1536.5], [1066.5, 1503.5], [1069.5, 1485.5], [1073.5, 1466.5], [1081.5, 1444.5], [1081.5, 1421.5], [1074.5, 1389.5], [1071.5, 1364.5], [1068.5, 1350.5], [1041.5, 1343.5], [1031.5, 1333.5], [1022.5, 1331.5], [1004.5, 1337.5], [993.5, 1343.5]]}, {"id": "twmxrw", "submitted_by": "ritardandoo", "name": "Thousand Sunny", "description": "The Thousand Sunny ship from the manga/anime One Piece. There is also a floating island called Onigashima in the background, and the One Piece logo on the far left. The smaller boat next to the Sunny is called the Mini Merry, a smaller ship based on the first One Piece ship.", "website": "", "subreddit": "/r/OnePiece", "center": [1576.5, 138.5], "path": [[1544.5, 113.5], [1543.5, 115.5], [1542.5, 115.5], [1541.5, 118.5], [1539.5, 120.5], [1540.5, 138.5], [1536.5, 141.5], [1533.5, 141.5], [1533.5, 138.5], [1524.5, 134.5], [1525.5, 118.5], [1523.5, 116.5], [1523.5, 158.5], [1525.5, 156.5], [1529.5, 154.5], [1532.5, 155.5], [1535.5, 155.5], [1534.5, 152.5], [1534.5, 148.5], [1537.5, 146.5], [1540.5, 143.5], [1542.5, 142.5], [1546.5, 145.5], [1549.5, 146.5], [1550.5, 147.5], [1550.5, 151.5], [1550.5, 153.5], [1551.5, 153.5], [1551.5, 155.5], [1553.5, 155.5], [1554.5, 160.5], [1558.5, 165.5], [1615.5, 165.5], [1615.5, 114.5]]}, {"id": "twmxnx", "submitted_by": "elljobellnackle", "name": "Silksong", "description": "Art of Hornet, main character of Silksong (the still-in-development sequel to Hollow Knight). Also depicts art of a small grub from the original Hollow Knight game.", "website": "", "subreddit": "/r/hkplace", "center": [263.5, 381.5], "path": [[225.5, 343.5], [299.5, 343.5], [299.5, 420.5], [228.5, 420.5], [228.5, 419.5], [227.5, 419.5], [227.5, 418.5], [226.5, 418.5], [226.5, 417.5], [225.5, 417.5], [225.5, 398.5], [226.5, 398.5], [226.5, 397.5], [227.5, 397.5], [227.5, 396.5], [228.5, 396.5], [228.5, 395.5], [237.5, 395.5], [237.5, 394.5], [238.5, 394.5], [238.5, 393.5], [239.5, 393.5], [239.5, 388.5], [238.5, 387.5], [238.5, 386.5], [237.5, 386.5], [237.5, 385.5], [225.5, 385.5]]}, {"id": "twmxmf", "submitted_by": "bigFoote0069", "name": "r/GreenLattice", "description": "A green lattice background created to give small pixel artists a place to build their art.", "website": "", "subreddit": "/r/GreenLattice", "center": [1036.5, 429.5], "path": [[866.5, 372.5], [867.5, 485.5], [963.5, 480.5], [962.5, 495.5], [1172.5, 499.5], [1172.5, 465.5], [1199.5, 465.5], [1198.5, 433.5], [1199.5, 361.5]]}, {"id": "twmwcx", "submitted_by": "Chartlecake", "name": "Oant Moarn", "description": "The catchphrase of Dutch weatherman Piet Paulusma, who died March 20th 2022 of cancer.", "website": "", "subreddit": "", "center": [1204.5, 17.5], "path": [[1180.5, 14.5], [1180.5, 20.5], [1227.5, 20.5], [1227.5, 14.5], [1204.5, 14.5], [1204.5, 14.5]]}, -{"id": "twmw78", "submitted_by": "miku_hatsunase", "name": "Holo - Spice and Wolf", "description": "Holo the Wise Wolf from the light novel and anime series Spice and Wolf.", "website": "https://www.crunchyroll.com/spice-and-wolf", "subreddit": "/r/SpiceandWolf", "center": [0.5, 0.5], "path": []}, {"id": "twmvzq", "submitted_by": "Bismvth_", "name": "Nurture by Porter Robinson", "description": "A nod to Porter Robinson's 2021 album Nurture. The stylized N was a recurring icon throughout the album's promotion.", "website": "https://porterrobinson.com/", "subreddit": "/r/porterrobinson", "center": [1821.5, 85.5], "path": [[1841.5, 80.5], [1801.5, 80.5], [1801.5, 90.5], [1841.5, 90.5]]}, -{"id": "twmvvp", "submitted_by": "RacgiMan", "name": "TagPro", "description": "Free to play web-based capture the flag game, banned from askreddit (no, really)", "website": "tagpro.gg", "subreddit": "/r/tagpro", "center": [1750.5, 1934.5], "path": [[1732.5, 1919.5], [1773.5, 1919.5], [1773.5, 1938.5], [1760.5, 1937.5], [1760.5, 1952.5], [1732.5, 1952.5], [1732.5, 1935.5]]}, +{"id": "twmvvp", "submitted_by": "RacgiMan", "name": "TagPro", "description": "Free to play web-based capture the flag game, banned from askreddit (no, really)", "website": "https://tagpro.gg", "subreddit": "/r/tagpro", "center": [1750.5, 1934.5], "path": [[1732.5, 1919.5], [1773.5, 1919.5], [1773.5, 1938.5], [1760.5, 1937.5], [1760.5, 1952.5], [1732.5, 1952.5], [1732.5, 1935.5]]}, {"id": "twmvou", "submitted_by": "Erixperience", "name": "Cosmere", "description": "The connected universe by author Brandon Sanderson", "website": "https://www.brandonsanderson.com/", "subreddit": "/r/comsere", "center": [881.5, 950.5], "path": [[861.5, 924.5], [863.5, 926.5], [901.5, 924.5], [901.5, 974.5], [861.5, 974.5], [861.5, 974.5], [861.5, 974.5], [862.5, 941.5], [862.5, 941.5]]}, {"id": "twmuos", "submitted_by": "202042", "name": "Solid Snake (Metal Gear Solid)", "description": "The codec image of one of the most iconic characters in gaming; Solid Snake.nSnake originates from the Metal gear games.", "website": "", "subreddit": "/r/metalgearsolid", "center": [1968.5, 147.5], "path": [[1956.5, 131.5], [1980.5, 131.5], [1980.5, 162.5], [1956.5, 162.5]]}, {"id": "twmuoq", "submitted_by": "BillSimmonsSkinSuit", "name": "I Heart Pat Bev", "description": "a meme from Minnesota Timberwolves basketball twitter. Pat Bev is short for Patrick Beverley, a basketball player for the wolves known for being unhinged on the basketball court, and widely despised by all the teams he doesn't play for. Based off of the design by @jakesgraphs on twitter", "website": "", "subreddit": "/r/timberwolves", "center": [427.5, 1385.5], "path": [[418.5, 1373.5], [414.5, 1372.5], [437.5, 1373.5], [438.5, 1397.5], [416.5, 1396.5], [416.5, 1372.5]]}, @@ -741,14 +685,14 @@ {"id": "twmt61", "submitted_by": "XOXAR9", "name": "ULTRAKILL", "description": "A simple logo of the game ULTRAKILL. Featuring the iconic marksman revolver coin, and the P-rank symbol", "website": "http://devilmayquake.com/", "subreddit": "/r/Ultrakill", "center": [1360.5, 1808.5], "path": [[1346.5, 1797.5], [1346.5, 1818.5], [1353.5, 1818.5], [1353.5, 1820.5], [1365.5, 1820.5], [1365.5, 1818.5], [1374.5, 1817.5], [1374.5, 1797.5]]}, {"id": "twmt3s", "submitted_by": "thysnice", "name": "Original Blue Corner", "description": "Before the First Expansion, this was the base of the Blue Corner. Remnants can be seen in the Quebec Area and surrounding region.", "website": "", "subreddit": "/r/TheBlueCorner", "center": [959.5, 1069.5], "path": [[902.5, 1016.5], [1016.5, 1016.5], [1016.5, 1122.5], [902.5, 1122.5]]}, {"id": "twmt33", "submitted_by": "-KiriHana", "name": "Goku", "description": "Goku from Dragon Ball Z charging his Spirit Bomb!", "website": "https://discord.gg/Mqk6FhJp", "subreddit": "/r/DBZ", "center": [1979.5, 1452.5], "path": [[1965.5, 1431.5], [1978.5, 1431.5], [1978.5, 1434.5], [1979.5, 1435.5], [1987.5, 1435.5], [1987.5, 1437.5], [1986.5, 1438.5], [1985.5, 1439.5], [1985.5, 1441.5], [1986.5, 1442.5], [1987.5, 1443.5], [1987.5, 1445.5], [1989.5, 1445.5], [1989.5, 1448.5], [1988.5, 1453.5], [1989.5, 1453.5], [1989.5, 1455.5], [1991.5, 1455.5], [1992.5, 1456.5], [1993.5, 1457.5], [1995.5, 1458.5], [1995.5, 1465.5], [1996.5, 1466.5], [1998.5, 1467.5], [1998.5, 1468.5], [1989.5, 1468.5], [1989.5, 1469.5], [1988.5, 1470.5], [1987.5, 1474.5], [1975.5, 1474.5], [1974.5, 1473.5], [1975.5, 1469.5], [1976.5, 1469.5], [1978.5, 1468.5], [1978.5, 1466.5], [1976.5, 1462.5], [1975.5, 1460.5], [1974.5, 1458.5], [1970.5, 1456.5], [1968.5, 1453.5], [1967.5, 1450.5], [1965.5, 1446.5], [1962.5, 1447.5], [1961.5, 1446.5], [1960.5, 1444.5], [1961.5, 1442.5], [1964.5, 1441.5], [1965.5, 1439.5], [1966.5, 1436.5], [1968.5, 1433.5]]}, -{"id": "twmszp", "submitted_by": "oMEGAthreader", "name": "100 Devs", "description": "A picture of Leon Noel. Leon leads an entirely free and remote software engineering bootcamp on twitch. The bootcamp is called 100 Devs after a goal Leon set to help 100 people affected by the pandemic break into the tech industry. This goal was recently achieved. He now leads a second cohort with 1000s of people checking in to class each week. This picture of him was made by some of the students and friends in the discord community. We don't get got. We go get!", "website": "https://www.twitch.tv/learnwithleon", "subreddit": "", "center": [1616.5, 521.5], "path": [[1600.5, 499.5], [1600.5, 543.5], [1632.5, 543.5], [1632.5, 499.5], [1632.5, 499.5]]}, +{"id": "twmszp", "submitted_by": "oMEGAthreader", "name": "#100Devs", "description": "A picture of Leon Noel. Leon leads an entirely free and remote software engineering bootcamp on twitch. The bootcamp is called #100Devs after a goal Leon set to help 100 people affected by the pandemic break into the tech industry. This goal was recently achieved. He now leads a second cohort with 1000s of people checking in to class each week. This picture of him was made by some of the students and friends in the discord community. We don't get got. We go get!", "website": "https://www.twitch.tv/learnwithleon", "subreddit": "", "center": [1616.5, 521.5], "path": [[1600.5, 499.5], [1600.5, 543.5], [1632.5, 543.5], [1632.5, 499.5], [1632.5, 499.5]]}, {"id": "twmsme", "submitted_by": "ThatDudeIsShort", "name": "KAngel", "description": "KAngel or OMGKawaiiANgel is the persona of Ame-chan, the main protagonist of Needy Girl Overdose / Needy Streamer Overload.", "website": "", "subreddit": "", "center": [1869.5, 1263.5], "path": [[1856.5, 1250.5], [1881.5, 1250.5], [1881.5, 1276.5], [1857.5, 1276.5]]}, {"id": "twmsl5", "submitted_by": "ScorpionStrike77", "name": "Lateralus 'Flame Eye'", "description": "The Flame Eye is a logo associated with American Rock band Tool.", "website": "https://en.wikipedia.org/wiki/Tool_(band)", "subreddit": "/r/ToolBand", "center": [310.5, 1237.5], "path": [[319.5, 1247.5], [321.5, 1246.5], [323.5, 1245.5], [324.5, 1244.5], [325.5, 1242.5], [323.5, 1238.5], [320.5, 1237.5], [318.5, 1235.5], [317.5, 1231.5], [315.5, 1228.5], [313.5, 1233.5], [312.5, 1233.5], [313.5, 1228.5], [312.5, 1227.5], [310.5, 1224.5], [307.5, 1223.5], [309.5, 1226.5], [307.5, 1226.5], [306.5, 1229.5], [304.5, 1225.5], [301.5, 1226.5], [302.5, 1231.5], [299.5, 1229.5], [298.5, 1224.5], [297.5, 1228.5], [297.5, 1235.5], [298.5, 1236.5], [299.5, 1238.5], [302.5, 1241.5], [303.5, 1242.5], [306.5, 1244.5], [309.5, 1247.5], [319.5, 1248.5]]}, {"id": "twmsjg", "submitted_by": "Correct_Month9612", "name": "Technoblade", "description": "One of the two technoblade pixel arts.", "website": "", "subreddit": "/r/technoblade", "center": [220.5, 1078.5], "path": [[189.5, 1043.5], [190.5, 1044.5], [249.5, 1041.5], [253.5, 1044.5], [252.5, 1051.5], [250.5, 1061.5], [252.5, 1064.5], [252.5, 1070.5], [252.5, 1076.5], [252.5, 1081.5], [252.5, 1088.5], [251.5, 1088.5], [249.5, 1095.5], [250.5, 1098.5], [251.5, 1100.5], [252.5, 1102.5], [250.5, 1105.5], [250.5, 1104.5], [252.5, 1104.5], [253.5, 1103.5], [250.5, 1104.5], [250.5, 1106.5], [254.5, 1107.5], [251.5, 1109.5], [251.5, 1114.5], [188.5, 1112.5]]}, -{"id": "twmsav", "submitted_by": "Kuberd", "name": "Gigachad Emote DGG", "description": "Popular Emote created by the DGG community together with the Destiny logo.", "website": "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": "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": "twmrth", "submitted_by": "NeoCipher790", "name": "Destiny 2", "description": "Destiny 2 is a free-to-play online-only multiplayer first-person shooter video game developed by Bungie.", "website": "https://www.bungie.net/", "subreddit": "/r/Destinythegame", "center": [483.5, 997.5], "path": [[449.5, 962.5], [511.5, 961.5], [512.5, 992.5], [524.5, 993.5], [522.5, 1030.5], [448.5, 1031.5], [448.5, 963.5]]}, -{"id": "twmrnx", "submitted_by": "frosty704", "name": "Superstonk / Gamestop", "description": "Superstonk is a subreddit that converses in all things GameStop/GME. 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": "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 \u201cMeta Studios\u201d 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": "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]]}, @@ -759,15 +703,13 @@ {"id": "twmpz9", "submitted_by": "Nezarecs", "name": "Star Citizen", "description": "Realism-driven space simulation game", "website": "https://robertsspaceindustries.com/", "subreddit": "/r/starcitizen", "center": [1735.5, 69.5], "path": [[1721.5, 55.5], [1721.5, 55.5], [1720.5, 86.5], [1749.5, 86.5], [1749.5, 52.5], [1721.5, 53.5]]}, {"id": "twmpx6", "submitted_by": "journcy", "name": "/r/parahumans", "description": "Subreddit for the works of webfiction author Wildbow, including the popular 2011-2013 superhero webnovel Worm.", "website": "", "subreddit": "/r/parahumans", "center": [755.5, 380.5], "path": [[718.5, 381.5], [718.5, 398.5], [787.5, 398.5], [787.5, 361.5], [726.5, 361.5], [727.5, 361.5], [727.5, 364.5], [729.5, 364.5], [729.5, 366.5], [729.5, 368.5], [729.5, 374.5], [729.5, 376.5], [729.5, 378.5], [728.5, 378.5], [725.5, 380.5]]}, {"id": "twmpua", "submitted_by": "MemoryAggravating694", "name": "The Mask", "description": "Titular character from Jim Carey\u2019s classic 1994 movie The Masm", "website": "", "subreddit": "", "center": [1871.5, 91.5], "path": [[1877.5, 84.5], [1875.5, 86.5], [1876.5, 90.5], [1873.5, 92.5], [1878.5, 94.5], [1877.5, 99.5], [1874.5, 100.5], [1871.5, 100.5], [1864.5, 100.5], [1865.5, 96.5], [1864.5, 94.5], [1867.5, 93.5], [1868.5, 91.5], [1865.5, 90.5], [1865.5, 88.5], [1866.5, 86.5], [1866.5, 85.5], [1864.5, 84.5], [1866.5, 85.5], [1866.5, 83.5], [1867.5, 81.5], [1875.5, 81.5], [1876.5, 82.5], [1877.5, 85.5]]}, -{"id": "twmpcj", "submitted_by": "NeoCipher790", "name": "Doki Doki Literature Club", "description": "Doki Doki Literature Club! (DDLC) is a 2017 freeware visual novel developed by American independent game studio Team Salvato.", "website": "https://ddlc.moe/", "subreddit": "/r/ddlc", "center": [0.5, 0.5], "path": []}, {"id": "twmoxn", "submitted_by": "Buddist_pizza", "name": "Spike Spegial from cowboy bebop", "description": "This is Spike Spegial from the popular anime cowboy bebop smoking a cigrate.", "website": "", "subreddit": "/r/cowboybebop", "center": [1247.5, 1547.5], "path": [[1285.5, 1490.5], [1225.5, 1489.5], [1225.5, 1518.5], [1211.5, 1537.5], [1225.5, 1559.5], [1209.5, 1537.5], [1218.5, 1523.5], [1194.5, 1508.5], [1170.5, 1522.5], [1195.5, 1537.5], [1224.5, 1567.5], [1225.5, 1608.5], [1286.5, 1609.5]]}, {"id": "twmovo", "submitted_by": "OnlyManOnMars", "name": "The Gizzard Gator", "description": "The mascot for the band King Gizzard And The Lizard Wizard", "website": "https://kinggizzardandthelizardwizard.com/", "subreddit": "/r/KGATLW", "center": [72.5, 401.5], "path": [[50.5, 389.5], [50.5, 387.5], [51.5, 387.5], [51.5, 386.5], [52.5, 386.5], [52.5, 385.5], [54.5, 385.5], [54.5, 384.5], [55.5, 384.5], [55.5, 383.5], [58.5, 383.5], [58.5, 379.5], [59.5, 379.5], [59.5, 377.5], [60.5, 377.5], [61.5, 373.5], [64.5, 370.5], [68.5, 373.5], [70.5, 378.5], [70.5, 383.5], [73.5, 383.5], [73.5, 385.5], [78.5, 384.5], [79.5, 393.5], [82.5, 395.5], [93.5, 400.5], [109.5, 400.5], [109.5, 403.5], [109.5, 407.5], [101.5, 413.5], [89.5, 414.5], [89.5, 420.5], [56.5, 420.5], [56.5, 415.5], [50.5, 409.5], [49.5, 408.5], [49.5, 406.5], [48.5, 406.5], [48.5, 392.5], [49.5, 392.5], [49.5, 390.5], [50.5, 390.5]]}, {"id": "twmouf", "submitted_by": "FreakoSchizo", "name": "Flag of Australia", "description": "", "website": "", "subreddit": "/r/Australia", "center": [1959.5, 1707.5], "path": [[1941.5, 1696.5], [1941.5, 1718.5], [1977.5, 1718.5], [1977.5, 1696.5]]}, {"id": "twmogt", "submitted_by": "frito11", "name": "Chvrches band", "description": "band name with stylized E colored with their 4 album colors and black heart with blue cross logo from their 3rd album Love is Dead", "website": "", "subreddit": "/r/chvrches", "center": [1533.5, 57.5], "path": [[1507.5, 52.5], [1559.5, 52.5], [1559.5, 61.5], [1507.5, 61.5]]}, -{"id": "twmo8e", "submitted_by": "Kuberd", "name": "MrMouton Logo", "description": "Twitch streamer MrMouton, associated with the Dgg community", "website": "twitch.tv/mrmouton", "subreddit": "", "center": [194.5, 109.5], "path": [[180.5, 97.5], [207.5, 97.5], [207.5, 121.5], [180.5, 120.5], [180.5, 97.5]]}, +{"id": "twmo8e", "submitted_by": "Kuberd", "name": "MrMouton Logo", "description": "Twitch streamer MrMouton, associated with the Dgg community", "website": "https://twitch.tv/mrmouton", "subreddit": "", "center": [194.5, 109.5], "path": [[180.5, 97.5], [207.5, 97.5], [207.5, 121.5], [180.5, 120.5], [180.5, 97.5]]}, {"id": "twmo0t", "submitted_by": "journcy", "name": "KyoAni", "description": "Abbreviated logo of the popular Japanese animation studio Kyoto Animation.", "website": "https://www.kyotoanimation.co.jp/", "subreddit": "/r/kyoani", "center": [1937.5, 764.5], "path": [[1920.5, 760.5], [1920.5, 768.5], [1953.5, 769.5], [1953.5, 760.5]]}, {"id": "twmnzn", "submitted_by": "KingMarine", "name": "Source", "description": "A game engine developed by Valve. Used in games like Team Fortress 2 and Counter-Strike: Global Offensive. Used in filmmaking with Source Filmmaker", "website": "https://www.sourcefilmmaker.com/", "subreddit": "/r/SourceEngine", "center": [807.5, 66.5], "path": [[813.5, 61.5], [816.5, 61.5], [818.5, 63.5], [818.5, 66.5], [816.5, 68.5], [792.5, 68.5], [792.5, 65.5], [811.5, 65.5], [811.5, 63.5]]}, -{"id": "twmnes", "submitted_by": "MithradatesMegas", "name": "Demon Queen Lilith", "description": "The Queen of Demon World in Guardian Tales, also serving as the Guardian Tales Logo for Season 2.", "website": "https://guardiantales.com/", "subreddit": "/r/GuardianTales", "center": [0.5, 0.5], "path": []}, {"id": "twmn8q", "submitted_by": "JasperDG828", "name": "World War 1 Memorial", "description": "A war memorial on the intersection of the Belgian and German flags", "website": "", "subreddit": "", "center": [1309.5, 1150.5], "path": [[1286.5, 1126.5], [1287.5, 1170.5], [1298.5, 1175.5], [1321.5, 1177.5], [1331.5, 1172.5], [1332.5, 1125.5]]}, {"id": "twmmyy", "submitted_by": "Seiunn", "name": "Boston Mural", "description": "A mural consisting of colleges located in and around the city of Boston. It includes Boston University, Tufts, Northeastern, Massachusetts Institute of Technology, Wentworth Institute of Technology, Worcester Polytechnic Institute, and Boston College.", "website": "", "subreddit": "", "center": [322.5, 1537.5], "path": [[300.5, 1500.5], [301.5, 1576.5], [343.5, 1572.5], [344.5, 1501.5]]}, {"id": "twmmwi", "submitted_by": "Narnall2", "name": "Asriel Dreemur", "description": "A small artwork of Asriel Dreemur from Undertale", "website": "", "subreddit": "", "center": [684.5, 826.5], "path": [[675.5, 834.5], [675.5, 833.5], [676.5, 832.5], [677.5, 832.5], [678.5, 833.5], [679.5, 833.5], [679.5, 830.5], [677.5, 828.5], [677.5, 824.5], [678.5, 822.5], [680.5, 819.5], [686.5, 817.5], [689.5, 819.5], [691.5, 822.5], [692.5, 826.5], [691.5, 829.5], [690.5, 832.5], [690.5, 832.5], [691.5, 833.5], [693.5, 832.5], [694.5, 833.5], [694.5, 834.5]]}, @@ -782,7 +724,6 @@ {"id": "twmlez", "submitted_by": "Narnall2", "name": "June and Angel Memorial (Sewerslvt)", "description": "A piece dedicated to the music artist Sewerslvt. The artwork is based off of the thumbnail image used for the final song of their career titled 'Goodbye'", "website": "https://www.youtube.com/watch?v=ABBpsy6rlVU&t", "subreddit": "/r/sewerslvt", "center": [445.5, 1815.5], "path": [[464.5, 1800.5], [425.5, 1800.5], [425.5, 1829.5], [464.5, 1829.5], [464.5, 1807.5]]}, {"id": "twml87", "submitted_by": "rafaelloaa", "name": "WPI", "description": "Logo of Worcester Polytechnic University, an engineering school in Worcester, MA", "website": "", "subreddit": "/r/WPI", "center": [318.5, 1559.5], "path": [[310.5, 1554.5], [325.5, 1554.5], [325.5, 1563.5], [325.5, 1563.5], [325.5, 1564.5], [310.5, 1564.5]]}, {"id": "twml7z", "submitted_by": "Acrobatic-Waltz-1702", "name": "Pregnant Mario", "description": "You heard that correctly.", "website": "", "subreddit": "", "center": [1618.5, 1956.5], "path": [[1606.5, 1970.5], [1607.5, 1971.5], [1610.5, 1972.5], [1616.5, 1972.5], [1619.5, 1975.5], [1623.5, 1975.5], [1623.5, 1974.5], [1624.5, 1973.5], [1625.5, 1974.5], [1633.5, 1974.5], [1634.5, 1973.5], [1635.5, 1973.5], [1638.5, 1970.5], [1638.5, 1965.5], [1637.5, 1964.5], [1637.5, 1962.5], [1636.5, 1961.5], [1635.5, 1961.5], [1634.5, 1960.5], [1634.5, 1959.5], [1633.5, 1958.5], [1633.5, 1957.5], [1632.5, 1956.5], [1628.5, 1956.5], [1627.5, 1955.5], [1625.5, 1955.5], [1625.5, 1951.5], [1623.5, 1951.5], [1623.5, 1950.5], [1622.5, 1950.5], [1622.5, 1949.5], [1622.5, 1948.5], [1624.5, 1948.5], [1625.5, 1947.5], [1625.5, 1944.5], [1626.5, 1943.5], [1627.5, 1942.5], [1628.5, 1941.5], [1628.5, 1939.5], [1626.5, 1937.5], [1624.5, 1937.5], [1624.5, 1936.5], [1621.5, 1933.5], [1619.5, 1933.5], [1619.5, 1932.5], [1613.5, 1932.5], [1613.5, 1933.5], [1609.5, 1933.5], [1609.5, 1935.5], [1608.5, 1935.5], [1606.5, 1937.5], [1606.5, 1940.5], [1607.5, 1940.5], [1608.5, 1941.5], [1608.5, 1947.5], [1609.5, 1948.5], [1608.5, 1949.5], [1607.5, 1949.5], [1601.5, 1955.5], [1601.5, 1956.5], [1600.5, 1957.5], [1600.5, 1964.5], [1601.5, 1965.5], [1601.5, 1966.5], [1603.5, 1968.5], [1605.5, 1968.5], [1606.5, 1970.5]]}, -{"id": "twmkzk", "submitted_by": "keroshijoshi", "name": "Worlds Kaomoji", "description": "The famous kaomoji from Porter Robinson's debut album, Worlds (2014), now in a tiny form!", "website": "https://porterrobinson.com/", "subreddit": "/r/porterrobinson", "center": [0.5, 0.5], "path": []}, {"id": "twmkux", "submitted_by": "jeezerschristicles", "name": "Firey and other characters from BFDI", "description": "Firey, Cloudy, X, Four, Puffball announcer, Firey announcer, Announcer, and Flower announcer from Battle For Dream Island.", "website": "", "subreddit": "/r/BattleForDreamIsland", "center": [494.5, 1077.5], "path": [[478.5, 1062.5], [510.5, 1063.5], [510.5, 1092.5], [478.5, 1092.5], [478.5, 1064.5], [478.5, 1062.5], [478.5, 1062.5]]}, {"id": "twmkup", "submitted_by": "daily_flags", "name": "Peru flag with llama wearing sunglasses", "description": "Peruvian flag with a llama wearing sunglasses, aside there is a bottle of Inca Kola, a popular soft drink in Peru", "website": "", "subreddit": "/r/PERU", "center": [568.5, 617.5], "path": [[535.5, 587.5], [600.5, 587.5], [600.5, 646.5], [535.5, 646.5], [535.5, 587.5]]}, {"id": "twmkoo", "submitted_by": "QuietWanderingNerd", "name": "Hollow Knight: Silksong", "description": "Features Hornet, the protagonist of the game.", "website": "", "subreddit": "/r/HKPlace", "center": [263.5, 381.5], "path": [[226.5, 343.5], [299.5, 343.5], [299.5, 419.5], [229.5, 419.5], [225.5, 415.5], [225.5, 398.5], [229.5, 395.5], [236.5, 395.5], [239.5, 392.5], [239.5, 388.5], [236.5, 385.5], [226.5, 385.5]]}, @@ -792,7 +733,6 @@ {"id": "twmk7q", "submitted_by": "Wonderful-Surprise-7", "name": "Derpy and Fluttershy", "description": "Derpy and Fluttershy are two characters from My Little Pony: Friendship is Magic. Derpy was first noticed by fans in 2010 for her cross-eyed look in the pilot episode of the show. She was a fan favorite ever since. Fluttershy is one of the main characters in the show and is known for representing the element of kindness.", "website": "", "subreddit": "/r/mylittlepony", "center": [1975.5, 378.5], "path": [[1951.5, 357.5], [2001.5, 356.5], [2000.5, 400.5], [1949.5, 400.5]]}, {"id": "twmk6g", "submitted_by": "GabrielDieck", "name": "Flag of Paraguay", "description": "Flag of Paraguay made by r/Paraguay and the Paraguayan Discord community.", "website": "", "subreddit": "/r/Paraguay", "center": [1063.5, 690.5], "path": [[926.5, 684.5], [1200.5, 684.5], [1200.5, 695.5], [926.5, 695.5]]}, {"id": "twmk0n", "submitted_by": "K4M1k4ZE_", "name": "LGBTQ Pride", "description": "Pride flags :D", "website": "", "subreddit": "/r/placepride", "center": [525.5, 485.5], "path": [[496.5, 494.5], [496.5, 501.5], [502.5, 501.5], [503.5, 501.5], [503.5, 502.5], [553.5, 501.5], [553.5, 494.5], [552.5, 494.5], [552.5, 493.5], [537.5, 493.5], [537.5, 488.5], [536.5, 488.5], [536.5, 487.5], [535.5, 487.5], [535.5, 486.5], [534.5, 486.5], [534.5, 486.5], [534.5, 485.5], [533.5, 484.5], [532.5, 483.5], [532.5, 483.5], [531.5, 481.5], [530.5, 481.5], [529.5, 480.5], [528.5, 479.5], [527.5, 477.5], [527.5, 475.5], [528.5, 474.5], [529.5, 474.5], [529.5, 475.5], [530.5, 475.5], [537.5, 482.5], [547.5, 473.5], [535.5, 460.5], [525.5, 473.5], [515.5, 462.5], [502.5, 474.5], [509.5, 482.5], [520.5, 473.5], [523.5, 476.5], [511.5, 492.5]]}, -{"id": "twmk0b", "submitted_by": "Relssifille", "name": "MCYT (mostly DSMP) monument", "description": "What started as a monument for Minecraft YouTuber Technoblade but evolved to involve many other MCYTers as well", "website": "https://www.reddit.com/r/Technoblade/", "subreddit": "/r/Technoblade", "center": [0.5, 0.5], "path": []}, {"id": "twmjz6", "submitted_by": "JohnnyHotshot", "name": "HYDRA", "description": "A terrorist organization within the Marvel universe focused on world domination. Beginning as a cult to worship the Inhuman known as Alveus or Hive, Hydra has existed in many forms over the years, most notable the rogue Nazi science division. This green variant of their logo is found in Framework's virtual reality alternate timeline.", "website": "https://marvelcinematicuniverse.fandom.com/wiki/HYDRA", "subreddit": "/r/shield", "center": [938.5, 913.5], "path": [[936.5, 905.5], [940.5, 905.5], [947.5, 911.5], [947.5, 915.5], [941.5, 921.5], [935.5, 921.5], [929.5, 915.5], [929.5, 910.5]]}, {"id": "twmjrt", "submitted_by": "-robotic", "name": "Happinex", "description": "Discord gaming community's mascot, Smiles. Allied with Green Lattice. Check us out on YouTube :) <3", "website": "https://www.youtube.com/channel/UCQVdNL6Vs8RRmC6ZkozXVWg", "subreddit": "", "center": [1559.5, 1529.5], "path": [[1554.5, 1526.5], [1563.5, 1526.5], [1563.5, 1529.5], [1562.5, 1529.5], [1562.5, 1532.5], [1561.5, 1532.5], [1561.5, 1533.5], [1556.5, 1533.5], [1556.5, 1532.5], [1555.5, 1532.5], [1555.5, 1529.5], [1554.5, 1529.5]]}, {"id": "twmjhe", "submitted_by": "KingMarine", "name": "Team Fortress 2", "description": "Team Fortress 2 (TF2) is a game developed by Valve and released in 2007 as a paid game. TF2 was changed to a Free to Play game in 2011.", "website": "https://www.teamfortress.com", "subreddit": "/r/tf2", "center": [802.5, 55.5], "path": [[793.5, 46.5], [810.5, 46.5], [810.5, 63.5], [793.5, 63.5]]}, @@ -814,14 +754,13 @@ {"id": "twmgj5", "submitted_by": "Acrobatic-Waltz-1702", "name": "The Great Void Enitity", "description": "The Void in its final moments. Created by The Swarm.", "website": "", "subreddit": "/r/theswarm", "center": [1014.5, 1484.5], "path": [[938.5, 1348.5], [1014.5, 1315.5], [1078.5, 1346.5], [1085.5, 1478.5], [1037.5, 1650.5], [1025.5, 1685.5], [1007.5, 1684.5], [979.5, 1649.5], [948.5, 1598.5], [955.5, 1571.5], [957.5, 1545.5], [945.5, 1490.5], [961.5, 1489.5], [962.5, 1435.5], [951.5, 1432.5], [963.5, 1370.5]]}, {"id": "twmg9x", "submitted_by": "Doodley0", "name": "Jill from VA-11 HALL-A", "description": "Jill from the indie game VA-11 HALL-A, sitting at her kotatsu, as seen at the end of workdays in the game.", "website": "https://www.reddit.com/r/waifubartending/comments/twf172/i_designed_the_template_for_jill_on_rplace_check/", "subreddit": "/r/waifubartending", "center": [512.5, 1574.5], "path": [[535.5, 1598.5], [535.5, 1550.5], [492.5, 1550.5], [492.5, 1562.5], [486.5, 1562.5], [486.5, 1591.5], [492.5, 1591.5], [492.5, 1599.5]]}, {"id": "twmg8y", "submitted_by": "KingMarine", "name": "TF2 Rectangle", "description": "The two games listed, Team Fortress 2 and Titanfall 2 are both games that have been neglected by their developers, have unique takes on a First Person Shooter game, and are both shortened to TF2.", "website": "", "subreddit": "", "center": [815.5, 53.5], "path": [[790.5, 35.5], [840.5, 35.5], [840.5, 70.5], [790.5, 70.5]]}, -{"id": "twmg88", "submitted_by": "K4M1k4ZE_", "name": "r/placenl", "description": "The subreddit for Dutch people to participate on r/place", "website": "", "subreddit": "/r/placenl", "center": [337.5, 25.5], "path": [[297.5, 14.5], [297.5, 35.5], [378.5, 35.5], [377.5, 14.5], [297.5, 14.5]]}, {"id": "twmg7n", "submitted_by": "The_Dinkster2201", "name": "Tower of F1 Champions", "description": "A Formula 1 timing tower featuring the previous F1 World Champions in order, aswell as a tributes to the late Anthoine Hubert and Jules Bianchi", "website": "", "subreddit": "/r/Formula1", "center": [1405.5, 779.5], "path": [[1392.5, 752.5], [1418.5, 752.5], [1418.5, 806.5], [1392.5, 806.5]]}, {"id": "twmg1n", "submitted_by": "SmoreBender", "name": "Melee", "description": "Super Smash Bros. Melee is a popular fighting game from 2001. Slippi is an online service that allows melee to run with rollback netcode.", "website": "https://slippi.gg/", "subreddit": "/r/SSBM", "center": [800.5, 949.5], "path": [[799.5, 916.5], [823.5, 927.5], [824.5, 961.5], [817.5, 961.5], [817.5, 979.5], [796.5, 981.5], [783.5, 979.5], [782.5, 962.5], [776.5, 961.5], [776.5, 928.5], [799.5, 916.5]]}, {"id": "twmfnl", "submitted_by": "MemoryAggravating694", "name": "IFunny", "description": "IFunny is a popular meme app. The art depicts the dreaded \u201ciFunny watermark\u201d that appears on saved images from the site", "website": "", "subreddit": "/r/ifunny", "center": [322.5, 1892.5], "path": [[310.5, 1888.5], [309.5, 1898.5], [335.5, 1896.5], [337.5, 1888.5]]}, {"id": "twmfmx", "submitted_by": "Buddist_pizza", "name": "Loner flag from r/stalker", "description": "This is the flag on the loners/Stalkers from the popular Ukraine game S.T.A.L.K.E.R. which represents the people who went to the exclusion zone of chernboyl in search of artifacts or riches (Anomalies and artifacts with mysterious powers came into the zone when it blew up agian)of course there are other flags too.Well what are you hovering your mouse over for stalker, go visit other pieces of art too.", "website": "https://www.stalker2.com/", "subreddit": "/r/stalker", "center": [497.5, 1046.5], "path": [[481.5, 1030.5], [481.5, 1062.5], [513.5, 1063.5], [512.5, 1031.5], [512.5, 1030.5]]}, {"id": "twmfj6", "submitted_by": "FreakoSchizo", "name": "Dark Side of the Moon", "description": "This is the album art for Pink Floyd's psychedelic 1973 album Dark Side of the Moon.", "website": "https://www.pinkfloyd.com/", "subreddit": "/r/PinkFloyd", "center": [1812.5, 1355.5], "path": [[1726.5, 1378.5], [1723.5, 1365.5], [1720.5, 1360.5], [1723.5, 1356.5], [1723.5, 1330.5], [1778.5, 1330.5], [1779.5, 1331.5], [1783.5, 1331.5], [1786.5, 1330.5], [1798.5, 1330.5], [1801.5, 1329.5], [1812.5, 1330.5], [1882.5, 1330.5], [1882.5, 1338.5], [1883.5, 1346.5], [1885.5, 1348.5], [1889.5, 1351.5], [1901.5, 1357.5], [1907.5, 1363.5], [1912.5, 1369.5], [1918.5, 1376.5], [1924.5, 1384.5], [1926.5, 1384.5], [1926.5, 1386.5], [1925.5, 1386.5], [1925.5, 1390.5], [1924.5, 1390.5], [1924.5, 1394.5], [1912.5, 1394.5], [1912.5, 1377.5], [1811.5, 1377.5], [1809.5, 1376.5], [1803.5, 1378.5], [1766.5, 1378.5], [1742.5, 1378.5], [1726.5, 1378.5]]}, {"id": "twmfdv", "submitted_by": "thysnice", "name": "No Man's Sky", "description": "The No Man's Sky community's contribution to r/place. A large Atlas diamond (the game's logo) fills the center, and the letters I [love] NMS can be seen. The number 16 16 16 can also be seen. 16 16 16 is a part of the game's lore and meme culture.", "website": "https://www.nomanssky.com/", "subreddit": "/r/NoMansSkyTheGame", "center": [1631.5, 1630.5], "path": [[1614.5, 1610.5], [1613.5, 1632.5], [1633.5, 1658.5], [1642.5, 1648.5], [1653.5, 1628.5], [1643.5, 1618.5], [1639.5, 1614.5], [1640.5, 1610.5], [1629.5, 1610.5]]}, -{"id": "twmelt", "submitted_by": "Difficult_Tourist_79", "name": "Rat", "description": "A rat that was invaded by Catalonia early in Place was rebuilt in the eastern Toki Pona/Parahumans area.", "website": "", "subreddit": "", "center": [1705.5, 222.5], "path": [[1708.5, 220.5], [1707.5, 220.5], [1707.5, 221.5], [1706.5, 221.5], [1705.5, 221.5], [1704.5, 221.5], [1704.5, 220.5], [1703.5, 220.5], [1703.5, 221.5], [1703.5, 222.5], [1702.5, 223.5], [1702.5, 224.5], [1702.5, 225.5], [1703.5, 224.5], [1704.5, 223.5], [1705.5, 223.5], [1706.5, 224.5], [1707.5, 224.5], [1708.5, 223.5], [1707.5, 222.5], [1708.5, 221.5]]}, +{"id": "twmelt", "submitted_by": "olly", "name": "Snowdrop", "description": "Snowdrop is an opossum that features heavily in Pale, created here by the Parahumans community.", "website": "https://pact-web-serial.fandom.com/wiki/Snowdrop", "subreddit": "", "center": [1705.5, 222.5], "path": [[1708.5, 220.5], [1707.5, 220.5], [1707.5, 221.5], [1706.5, 221.5], [1705.5, 221.5], [1704.5, 221.5], [1704.5, 220.5], [1703.5, 220.5], [1703.5, 221.5], [1703.5, 222.5], [1702.5, 223.5], [1702.5, 224.5], [1702.5, 225.5], [1703.5, 224.5], [1704.5, 223.5], [1705.5, 223.5], [1706.5, 224.5], [1707.5, 224.5], [1708.5, 223.5], [1707.5, 222.5], [1708.5, 221.5]]}, {"id": "twme8p", "submitted_by": "Wonderful-Surprise-7", "name": "Tottenham Hotspur F.C.", "description": "Tottenham Hotspur, also known as Spurs, are an English football club based in North London. Despite being a team that often finishes in the top 6 of the Premier League, they are often mocked for their lack of trophies, their most recent one being in 2008.", "website": "", "subreddit": "/r/tottenham", "center": [1699.5, 443.5], "path": [[1684.5, 420.5], [1713.5, 420.5], [1713.5, 466.5], [1685.5, 467.5]]}, {"id": "twmdw6", "submitted_by": "K4M1k4ZE_", "name": "Sylveon", "description": "Sylveon, from Pokemon, is often seen as a trans icon, due to it's coloration matching that of the trans flag. It's shiny version does too.", "website": "", "subreddit": "", "center": [673.5, 451.5], "path": [[662.5, 451.5], [662.5, 449.5], [661.5, 448.5], [662.5, 447.5], [661.5, 446.5], [662.5, 445.5], [663.5, 444.5], [663.5, 443.5], [662.5, 442.5], [661.5, 442.5], [661.5, 439.5], [662.5, 439.5], [662.5, 438.5], [664.5, 438.5], [664.5, 437.5], [666.5, 437.5], [666.5, 436.5], [667.5, 436.5], [669.5, 435.5], [670.5, 435.5], [670.5, 436.5], [671.5, 436.5], [671.5, 441.5], [671.5, 442.5], [670.5, 442.5], [670.5, 444.5], [672.5, 442.5], [673.5, 442.5], [673.5, 443.5], [674.5, 442.5], [675.5, 441.5], [675.5, 440.5], [676.5, 440.5], [676.5, 439.5], [678.5, 439.5], [678.5, 438.5], [681.5, 438.5], [681.5, 439.5], [682.5, 439.5], [682.5, 443.5], [681.5, 443.5], [682.5, 444.5], [681.5, 445.5], [681.5, 446.5], [680.5, 446.5], [680.5, 447.5], [679.5, 447.5], [678.5, 448.5], [680.5, 448.5], [682.5, 447.5], [682.5, 445.5], [683.5, 445.5], [683.5, 443.5], [684.5, 443.5], [684.5, 442.5], [685.5, 442.5], [686.5, 442.5], [686.5, 443.5], [687.5, 443.5], [688.5, 443.5], [688.5, 444.5], [689.5, 444.5], [689.5, 447.5], [689.5, 448.5], [687.5, 448.5], [687.5, 448.5], [687.5, 449.5], [686.5, 449.5], [686.5, 450.5], [685.5, 450.5], [685.5, 451.5], [683.5, 451.5], [683.5, 454.5], [682.5, 454.5], [682.5, 455.5], [681.5, 455.5], [682.5, 456.5], [683.5, 456.5], [683.5, 457.5], [684.5, 457.5], [684.5, 456.5], [688.5, 456.5], [688.5, 457.5], [689.5, 457.5], [689.5, 458.5], [689.5, 459.5], [688.5, 459.5], [688.5, 460.5], [686.5, 460.5], [686.5, 461.5], [682.5, 461.5], [681.5, 461.5], [681.5, 460.5], [680.5, 461.5], [680.5, 463.5], [680.5, 464.5], [679.5, 464.5], [679.5, 465.5], [677.5, 465.5], [676.5, 465.5], [676.5, 464.5], [675.5, 464.5], [675.5, 462.5], [674.5, 461.5], [673.5, 461.5], [673.5, 462.5], [673.5, 463.5], [672.5, 463.5], [672.5, 464.5], [672.5, 465.5], [671.5, 465.5], [671.5, 466.5], [670.5, 466.5], [667.5, 466.5], [666.5, 465.5], [666.5, 464.5], [667.5, 464.5], [667.5, 463.5], [667.5, 464.5], [667.5, 463.5], [666.5, 462.5], [666.5, 461.5], [665.5, 460.5], [664.5, 461.5], [662.5, 461.5], [661.5, 461.5], [661.5, 460.5], [662.5, 459.5], [663.5, 459.5], [662.5, 458.5], [661.5, 458.5], [661.5, 454.5], [662.5, 454.5], [662.5, 453.5], [661.5, 453.5], [661.5, 449.5]]}, {"id": "twmdtg", "submitted_by": "AwesomeTy79", "name": "FurfSky Reborn", "description": "A neon logo for the Hypixel Skyblock minecraft texture pack, FurfSky Reborn", "website": "https://furfsky.net/", "subreddit": "", "center": [1261.5, 818.5], "path": [[1281.5, 829.5], [1240.5, 829.5], [1240.5, 806.5], [1281.5, 806.5]]}, @@ -832,9 +771,7 @@ {"id": "twmclv", "submitted_by": "Rop-Tamen", "name": "BT-7274 and Titanfall 2 Logo", "description": "A depiction of BT-7274 from the game Titanfall 2 with the Titanfall 2 logo above him.", "website": "", "subreddit": "/r/titanfall", "center": [1546.5, 1952.5], "path": [[1522.5, 1918.5], [1570.5, 1918.5], [1570.5, 1985.5], [1522.5, 1985.5]]}, {"id": "twmck8", "submitted_by": "JohnnyHotshot", "name": "SHIELD", "description": "The Strategic Homeland Investigation, Enforcement, and Logistics Division. A fictional government organization within the Marvel Universe, specializing in matters related to the Avengers and the supernatural. Featured heavily in the 'Marvel's Agents of SHIELD' television show.", "website": "https://marvelcinematicuniverse.fandom.com/wiki/S.H.I.E.L.D.", "subreddit": "/r/shield", "center": [938.5, 894.5], "path": [[933.5, 886.5], [943.5, 886.5], [946.5, 890.5], [947.5, 897.5], [941.5, 903.5], [936.5, 903.5], [930.5, 898.5], [930.5, 891.5]]}, {"id": "twmcix", "submitted_by": "f5xs_0000b", "name": "Roxy Migurdia", "description": "The mentor of Rudeus Greyrat in the anime Mushoku Tensei: Jobless Reincarnation", "website": "https://myanimelist.net/anime/39535/Mushoku_Tensei__Isekai_Ittara_Honki_Dasu", "subreddit": "/r/mushokutensei", "center": [1774.5, 1304.5], "path": [[1765.5, 1291.5], [1766.5, 1291.5], [1767.5, 1292.5], [1769.5, 1290.5], [1771.5, 1290.5], [1774.5, 1293.5], [1776.5, 1293.5], [1778.5, 1295.5], [1779.5, 1295.5], [1781.5, 1293.5], [1784.5, 1293.5], [1787.5, 1290.5], [1788.5, 1290.5], [1788.5, 1292.5], [1789.5, 1293.5], [1787.5, 1293.5], [1787.5, 1294.5], [1785.5, 1296.5], [1785.5, 1297.5], [1784.5, 1298.5], [1784.5, 1299.5], [1785.5, 1300.5], [1789.5, 1300.5], [1789.5, 1304.5], [1788.5, 1305.5], [1788.5, 1306.5], [1786.5, 1306.5], [1785.5, 1305.5], [1780.5, 1305.5], [1779.5, 1304.5], [1777.5, 1304.5], [1776.5, 1305.5], [1776.5, 1306.5], [1777.5, 1307.5], [1777.5, 1308.5], [1779.5, 1310.5], [1779.5, 1311.5], [1777.5, 1311.5], [1776.5, 1312.5], [1774.5, 1312.5], [1773.5, 1313.5], [1773.5, 1314.5], [1772.5, 1315.5], [1772.5, 1317.5], [1773.5, 1318.5], [1773.5, 1327.5], [1772.5, 1327.5], [1770.5, 1328.5], [1769.5, 1327.5], [1769.5, 1325.5], [1770.5, 1325.5], [1770.5, 1323.5], [1768.5, 1321.5], [1768.5, 1320.5], [1769.5, 1319.5], [1769.5, 1313.5], [1766.5, 1313.5], [1765.5, 1312.5], [1762.5, 1309.5], [1762.5, 1307.5], [1761.5, 1307.5], [1760.5, 1307.5], [1759.5, 1308.5], [1757.5, 1308.5], [1758.5, 1307.5], [1759.5, 1307.5], [1760.5, 1306.5], [1761.5, 1306.5], [1762.5, 1305.5], [1763.5, 1304.5], [1764.5, 1304.5], [1766.5, 1302.5], [1766.5, 1301.5], [1767.5, 1300.5], [1763.5, 1296.5], [1762.5, 1296.5], [1762.5, 1295.5], [1759.5, 1295.5], [1759.5, 1296.5], [1760.5, 1297.5], [1759.5, 1297.5], [1758.5, 1296.5], [1758.5, 1294.5], [1759.5, 1294.5], [1760.5, 1295.5], [1762.5, 1295.5], [1763.5, 1296.5], [1766.5, 1296.5], [1768.5, 1294.5]]}, -{"id": "twmcgz", "submitted_by": "sunnyotakuu", "name": ":wubby7:", "description": "An emote of Twitch Streamer PayMoneyWubby saluting. The emote is known in the community as \u201cwubby7.\u201d", "website": "https://twitch.tv/paymoneywubby", "subreddit": "/r/paymoneywubby", "center": [406.5, 1496.5], "path": [[370.5, 1460.5], [442.5, 1460.5], [442.5, 1532.5], [370.5, 1532.5]]}, -{"id": "twmc0y", "submitted_by": "thysnice", "name": "Large French Flag", "description": "An overly large French Flag created by a few French streamers. A large amount of controversy was created by the flag's sheer size, and some backlash was directed towards r/placefrance, even though they had nothing to do with the flag. In the last couple of hours, the area became a warzone, as Spanish streamers, French streamers, BTS fans, and many other smaller communities battled over the large area.", "website": "", "subreddit": "/r/placefrance", "center": [125.5, 1705.5], "path": [[0.5, 1443.5], [249.5, 1969.5], [250.5, 1443.5], [111.5, 1442.5], [0.5, 1442.5], [0.5, 1969.5], [249.5, 1969.5]]}, -{"id": "twmbzr", "submitted_by": "Chloe_Mae_Art", "name": "Kirby in the Stars", "description": "Kirby is a fictional character and the titular protagonist of the Kirby series of video games owned by Nintendo and HAL Laboratory.", "website": "", "subreddit": "", "center": [1845.5, 581.5], "path": [[1890.5, 539.5], [1890.5, 623.5], [1801.5, 623.5], [1800.5, 539.5]]}, +{"id": "twmcgz", "submitted_by": "Shadox", "name": ":Wubby7:", "description": "An emote of Twitch Streamer PayMoneyWubby saluting. The emote is known in the community as \u201cwubby7.\u201dThe emote is known in the community as 'wubby7.'\\n\\nThis emote have been attacked by French Community when Wubby would to make an aliance with Mizkif to attack the Huge French Flag (#FRANCE_over_sPAIN), Wubby thought that was a bots attack because of the efficiency of the French Army, so they wrote 'HUMAN' to show him how alive were they\\n\\Sh0xFr #Lpb", "website": "https://www.twitch.tv/paymoneywubby/clip/SmoggyUnusualMeerkatFloof--xu5f_5vkPmgx24C?filter=clips&range=7d&sort=time", "subreddit": "/r/paymoneywubby", "center": [406.5, 1496.5], "path": [[370.5, 1460.5], [442.5, 1460.5], [442.5, 1532.5], [370.5, 1532.5]]}, {"id": "twmbzs", "submitted_by": "Slyguy46", "name": "New York Jets", "description": "The New York Jets, a football team in the NFL, using their 80's logo.", "website": "", "subreddit": "/r/nyjets", "center": [1349.5, 42.5], "path": [[1328.5, 35.5], [1369.5, 35.5], [1369.5, 39.5], [1371.5, 39.5], [1371.5, 40.5], [1372.5, 40.5], [1372.5, 42.5], [1371.5, 42.5], [1371.5, 43.5], [1370.5, 43.5], [1370.5, 44.5], [1369.5, 44.5], [1369.5, 50.5], [1328.5, 50.5], [1328.5, 45.5], [1328.5, 44.5], [1327.5, 44.5], [1327.5, 43.5], [1326.5, 43.5], [1326.5, 42.5], [1325.5, 42.5], [1325.5, 40.5], [1326.5, 40.5], [1326.5, 39.5], [1328.5, 39.5], [1328.5, 35.5], [1328.5, 35.5], [1328.5, 35.5]]}, {"id": "twmbw6", "submitted_by": "Wonderful-Surprise-7", "name": "Flag of Canada", "description": "Canada's flag quickly became the target of memes as their leaf was never quite in shape. This led to constant vandalism on the flag. At one point, the flag was changed to yellow and the leaf changed to a banana. Canada managed to gain a little progress on their leaf, but the canvas ended before it could be fully fixed.", "website": "", "subreddit": "/r/canada", "center": [209.5, 506.5], "path": [[175.5, 528.5], [244.5, 528.5], [244.5, 485.5], [175.5, 484.5]]}, {"id": "twmbri", "submitted_by": "FreakoSchizo", "name": "Foxhole", "description": "Foxhole is a massively multiplayer war game where hundreds and thousands of players battle for control of the map. This image is the main icon for the game.", "website": "https://www.foxholegame.com/", "subreddit": "/r/foxholegame", "center": [564.5, 1559.5], "path": [[536.5, 1522.5], [536.5, 1596.5], [592.5, 1596.5], [592.5, 1522.5]]}, @@ -846,8 +783,7 @@ {"id": "twmayf", "submitted_by": "splongadongla", "name": "Klei Logo", "description": "Klei Entertainment's Logo, Made by the Chester/Place Discord Server", "website": "", "subreddit": "", "center": [1068.5, 520.5], "path": [[1061.5, 511.5], [1061.5, 529.5], [1075.5, 529.5], [1075.5, 511.5]]}, {"id": "twmas3", "submitted_by": "mitgas", "name": "r/sadboys", "description": "An emblem made by the r/sadboys subreddit. The subreddit is for the fans of the Sad Boys and Drain Gang music collectives. The emblem depicts two logos of the collectives, SBE for Sad Boys Entertainment on top, and DG for Drain Gang on the bottom.", "website": "", "subreddit": "/r/sadboys", "center": [1550.5, 382.5], "path": [[1526.5, 353.5], [1526.5, 353.5], [1526.5, 408.5], [1531.5, 413.5], [1568.5, 413.5], [1568.5, 411.5], [1573.5, 411.5], [1573.5, 360.5], [1573.5, 353.5], [1564.5, 353.5], [1563.5, 353.5], [1563.5, 352.5], [1537.5, 352.5], [1537.5, 353.5], [1526.5, 353.5]]}, {"id": "twmard", "submitted_by": "TheXtremeVocaloid", "name": "Dreamcatcher", "description": "A South Korean girl group. Notable for their more rock-based songs.", "website": "", "subreddit": "/r/Dreamcatcher", "center": [1627.5, 874.5], "path": [[1588.5, 869.5], [1588.5, 879.5], [1670.5, 878.5], [1670.5, 870.5], [1588.5, 869.5]]}, -{"id": "twmaoz", "submitted_by": "MortalUnicornnn", "name": "Honduras", "description": "Hondurans came together to leave something that represented our country. With our beutiful flag and our national bird, the red macaw.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "twmajs", "submitted_by": "DeidreMengedoht", "name": "Yume Nikki Fan Games", "description": "Sprites of three characters, Urotsuki, Madotsuki, and Sabitsuki. Madotsuki is the protagonist of the surreal indie game Yume Nikki, while the others are protagonists from two of its popular fangames.", "website": "", "subreddit": "/r/yumenikki", "center": [1222.5, 120.5], "path": [[1197.5, 104.5], [1197.5, 104.5], [1197.5, 104.5], [1213.5, 104.5], [1213.5, 107.5], [1248.5, 107.5], [1248.5, 134.5], [1197.5, 134.5]]}, +{"id": "twmajs", "submitted_by": "DeidreMengedoht", "name": "Yume Nikki and its numerous fangames", "description": "Yume Nikki is a cult classic psychological surreal-horror RPG/Maker game that is regarded as the start of a possible new genre of games and has influenced several majorly popular indie games throughout years. Besides the sprites of the most recognizable protagonists in the fandom, the panel features references to several Yume Nikki fangames: Lcd Dem, Answered Prayers, Amillusion, Uneven Dream, Collective Subconscious, and, indirectly, Dreaming Bad.", "website": "https://yumenikki.fandom.com/wiki/Yume_Nikki#", "subreddit": "/r/yumenikki", "center": [1222.5, 120.5], "path": [[1197.5, 104.5], [1197.5, 104.5], [1197.5, 104.5], [1213.5, 104.5], [1213.5, 107.5], [1248.5, 107.5], [1248.5, 134.5], [1197.5, 134.5]]}, {"id": "twmae3", "submitted_by": "Loicass", "name": "Halo Energy Sword", "description": "", "website": "", "subreddit": "", "center": [83.5, 1246.5], "path": [[0.5, 1226.5], [0.5, 1265.5], [166.5, 1265.5], [166.5, 1226.5]]}, {"id": "twmaay", "submitted_by": "a_printer", "name": "H", "description": "H", "website": "", "subreddit": "/r/theletterH", "center": [1587.5, 1377.5], "path": [[1576.5, 1368.5], [1576.5, 1386.5], [1600.5, 1386.5], [1600.5, 1373.5], [1595.5, 1373.5], [1595.5, 1372.5], [1594.5, 1372.5], [1594.5, 1368.5], [1576.5, 1368.5]]}, {"id": "twma30", "submitted_by": "fleeval", "name": "6reen Bay Packers", "description": "Football team from Green Bay, Wisconsin.", "website": "", "subreddit": "/r/greenbaypackers", "center": [418.5, 922.5], "path": [[408.5, 914.5], [427.5, 914.5], [427.5, 930.5], [408.5, 930.5], [408.5, 914.5]]}, @@ -858,7 +794,6 @@ {"id": "twm9pl", "submitted_by": "FreakoSchizo", "name": "Foxhole", "description": "Foxhole is a massively multiplayer war game where hundreds and thousands of players battle for control of the map. Each tile represents a subdivision of the map, and the colors represent which team controls that area on the tile.", "website": "https://www.foxholegame.com/", "subreddit": "/r/foxholegame", "center": [728.5, 571.5], "path": [[702.5, 607.5], [702.5, 607.5], [701.5, 607.5], [701.5, 556.5], [705.5, 556.5], [705.5, 550.5], [701.5, 550.5], [701.5, 534.5], [753.5, 534.5], [753.5, 547.5], [755.5, 547.5], [755.5, 602.5], [754.5, 602.5], [754.5, 603.5], [753.5, 603.5], [753.5, 607.5], [754.5, 607.5], [702.5, 607.5]]}, {"id": "twm9nb", "submitted_by": "IndecisionGames", "name": "Bi_irl icon", "description": "Bi_irl discord icon and our lord and friend Eggy", "website": "https://discord.com/invite/nBnt3UDsZA", "subreddit": "/r/bi_irl", "center": [395.5, 1931.5], "path": [[378.5, 1918.5], [412.5, 1918.5], [412.5, 1943.5], [378.5, 1943.5], [378.5, 1918.5]]}, {"id": "twm97a", "submitted_by": "Various_Profit1097", "name": "r/place 2022 Touhou Hijack :)", "description": "A small Touhou Hijack that is in the same style as the one from back in r/place in 2017 with this one having different characters including Kasane Teto as a sign of the partnership between r/Touhou and r/Hatsune", "website": "", "subreddit": "/r/Touhou", "center": [1652.5, 1503.5], "path": [[1688.5, 1556.5], [1621.5, 1556.5], [1620.5, 1452.5], [1685.5, 1451.5], [1683.5, 1549.5]]}, -{"id": "twm91r", "submitted_by": "Loicass", "name": "Aziz Shavershian", "description": "Beloved Australian bodybuilder who sadly passed away from a heart attack at 22.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twm90e", "submitted_by": "FancySkunk", "name": "Construction skill icon", "description": "Construction is one of the 23 skills in Old School RuneScape, primarily focused on the creation of furnishings for player-owned houses. The icon here includes the green pixel on the saw, which was a long standing community meme.", "website": "https://oldschool.runescape.wiki/w/Construction", "subreddit": "/r/2007scape", "center": [130.5, 47.5], "path": [[118.5, 49.5], [119.5, 44.5], [125.5, 44.5], [135.5, 34.5], [141.5, 37.5], [139.5, 45.5], [133.5, 49.5], [137.5, 53.5], [135.5, 58.5], [127.5, 58.5], [124.5, 54.5], [122.5, 55.5], [119.5, 51.5], [118.5, 49.5]]}, {"id": "twm8x2", "submitted_by": "MemoryAggravating694", "name": "Queens of the Stone Age", "description": "A tribute to the rock band Queens of the Stone Age featuring two album logos, Left: \u2026.Like Clockwork (2013); Right: Songs for the Deaf (2002)n", "website": "", "subreddit": "/r/qotsa", "center": [1144.5, 1668.5], "path": [[1132.5, 1659.5], [1132.5, 1676.5], [1136.5, 1676.5], [1135.5, 1678.5], [1151.5, 1678.5], [1157.5, 1672.5], [1157.5, 1658.5]]}, {"id": "twm8lz", "submitted_by": "YaBoiLiam2005", "name": "Phish, Jojo, & Grateful Dead Collaboration", "description": "A collaboration between the Jojo, Phish, and Grateful Dead communities. The Jojo community also made a collaboration with the Jerma985 Community to put Jotaro's hat on Jerma.", "website": "", "subreddit": "/r/ShitPostCrusaders, /r/phish, /r/gratefuldead, /r/StardustCrusaders, /r/wholesomejojo, /r/jerma985", "center": [75.5, 910.5], "path": [[0.5, 874.5], [154.5, 874.5], [154.5, 882.5], [161.5, 882.5], [161.5, 898.5], [136.5, 898.5], [136.5, 957.5], [92.5, 957.5], [92.5, 942.5], [0.5, 942.5]]}, @@ -868,7 +803,6 @@ {"id": "twm8am", "submitted_by": "--MagiK--", "name": "Rosie", "description": "Popular Cat on instagram u/rockyandrosie_ . Rosie is a figure of empowerment and hope for those who follow her, and I hope anyone who stumbles upon her on r/place has a blessed evening :3", "website": "https://www.instagram.com/rockyandrosie_/", "subreddit": "/r/rockyandrosie", "center": [11.5, 1088.5], "path": [[0.5, 1079.5], [13.5, 1079.5], [14.5, 1081.5], [18.5, 1082.5], [18.5, 1084.5], [18.5, 1085.5], [23.5, 1084.5], [23.5, 1095.5], [0.5, 1095.5]]}, {"id": "twm8ad", "submitted_by": "SmoreBender", "name": "Moist E-Sports", "description": "An esports team run by Cr1tikal.", "website": "https://www.youtube.com/channel/UCq6VFHwMzcMXbuKyG7SQYIg", "subreddit": "", "center": [1986.5, 97.5], "path": [[1973.5, 82.5], [1974.5, 112.5], [1999.5, 112.5], [1998.5, 83.5], [1973.5, 82.5]]}, {"id": "twm89u", "submitted_by": "K4M1k4ZE_", "name": "Flag of the province Flevoland", "description": "", "website": "", "subreddit": "", "center": [1354.5, 7.5], "path": [[1347.5, 2.5], [1347.5, 12.5], [1361.5, 12.5], [1361.5, 2.5], [1347.5, 2.5]]}, -{"id": "twm899", "submitted_by": "Pure_Library_1069", "name": "Liverpool Football Club", "description": "", "website": "", "subreddit": "/r/LiverpoolFC", "center": [0.5, 0.5], "path": []}, {"id": "twm82r", "submitted_by": "fleeval", "name": "Minnesota Vikings", "description": "American football team based in Minneapolis, Minnesota. Featuring the team's Norseman logo, SKOL! cheer, and star wide receiver Justin Jefferson.", "website": "", "subreddit": "/r/minnesotavikings", "center": [1312.5, 640.5], "path": [[1290.5, 615.5], [1333.5, 615.5], [1333.5, 664.5], [1290.5, 664.5], [1290.5, 616.5]]}, {"id": "twm7uz", "submitted_by": "K4M1k4ZE_", "name": "Flag of the province Zuid-Holland", "description": "", "website": "", "subreddit": "", "center": [1335.5, 7.5], "path": [[1328.5, 2.5], [1328.5, 12.5], [1342.5, 12.5], [1342.5, 2.5], [1328.5, 2.5]]}, {"id": "twm7gc", "submitted_by": "Schmittez", "name": "Captain Sparklez Head", "description": "The head of Youtuber CaptainSparklez' Minecraft skin.", "website": "https://www.youtube.com/c/CaptainSparklez", "subreddit": "/r/CaptainSparklez", "center": [900.5, 580.5], "path": [[895.5, 576.5], [904.5, 576.5], [904.5, 584.5], [895.5, 584.5]]}, @@ -877,15 +811,14 @@ {"id": "twm6zf", "submitted_by": "Ember457", "name": "Squishums", "description": "A rare in-game item from the Dragalia Lost mobile game. A squishy blob. ...Or something more? No one knows for sure, but its squishiness is undeniable.", "website": "", "subreddit": "/r/DragaliaLost", "center": [1470.5, 1716.5], "path": [[1460.5, 1706.5], [1479.5, 1706.5], [1479.5, 1725.5], [1460.5, 1725.5]]}, {"id": "twm6wc", "submitted_by": "CydersZenith", "name": "RWBY Logo", "description": "The logo for anime-inspired show RWBY (ruby) created by Monty Oum (1981-2015). The heart connects to another popular show on Rooster Teeth.", "website": "https://roosterteeth.com", "subreddit": "/r/RWBY", "center": [473.5, 721.5], "path": [[449.5, 713.5], [497.5, 713.5], [497.5, 729.5], [449.5, 729.5]]}, {"id": "twm6ty", "submitted_by": "Adhara16", "name": "Spreen's Bear", "description": "Minecraft skin that belongs to Spreen, an argentinian content creator.", "website": "https://www.twitch.tv/elspreen", "subreddit": "", "center": [1435.5, 637.5], "path": [[1410.5, 613.5], [1410.5, 660.5], [1460.5, 660.5], [1460.5, 613.5], [1410.5, 613.5]]}, -{"id": "twm6qo", "submitted_by": "Zidakuh", "name": "WYSI (When you see it)", "description": "A popular joke used in the osu! community. The joke originated by the player Aireu and is used every time the number 727 is spotted.", "website": "https://www.reddit.com/r/osugame/", "subreddit": "/r/osugame", "center": [626.5, 1489.5], "path": [[592.5, 1522.5], [660.5, 1522.5], [660.5, 1453.5], [642.5, 1453.5], [642.5, 1456.5], [641.5, 1456.5], [641.5, 1457.5], [592.5, 1457.5], [592.5, 1522.5]]}, +{"id": "twm6qo", "submitted_by": "Zidakuh", "name": "WYSI (When you see it)", "description": "A photo of the hand of osu! top player, Aireu, after setting a play on 'Guess Who Is Back', awarding him 727pp. A popular joke used in the osu! community, used every time the number 727 is spotted.", "website": "https://www.urbandictionary.com/define.php?term=727", "subreddit": "/r/osuplace", "center": [626.5, 1489.5], "path": [[592.5, 1522.5], [660.5, 1522.5], [660.5, 1453.5], [642.5, 1453.5], [642.5, 1456.5], [641.5, 1456.5], [641.5, 1457.5], [592.5, 1457.5], [592.5, 1522.5]]}, {"id": "twm6kp", "submitted_by": "Ericbazinga", "name": "r/Femboy", "description": "Femboys are males who choose to adopt a more feminine appearance, wearing feminine clothes and makeup. The character depicted is Astolfo from the anime series Fate, a very popular femboy character.", "website": "https://aesthetics.fandom.com/wiki/Femboy", "subreddit": "/r/femboy", "center": [264.5, 952.5], "path": [[245.5, 938.5], [281.5, 938.5], [281.5, 956.5], [285.5, 956.5], [285.5, 966.5], [245.5, 966.5]]}, {"id": "twm6j2", "submitted_by": "K4M1k4ZE_", "name": "Flag of the province Utrecht", "description": "", "website": "", "subreddit": "", "center": [1297.5, 7.5], "path": [[1290.5, 2.5], [1290.5, 12.5], [1304.5, 12.5], [1304.5, 2.5], [1290.5, 2.5]]}, -{"id": "twm6g6", "submitted_by": "f5xs_0000b", "name": "Volodymyr Zelenskyy", "description": "The sixth and current president of Ukraine. Known for his valiant efforts in leading his country against the invasion of Russia into Ukraine.", "website": "https://www.president.gov.ua/", "subreddit": "", "center": [174.5, 221.5], "path": [[157.5, 216.5], [156.5, 215.5], [156.5, 214.5], [155.5, 213.5], [155.5, 212.5], [154.5, 211.5], [154.5, 203.5], [156.5, 201.5], [157.5, 200.5], [157.5, 199.5], [158.5, 198.5], [158.5, 197.5], [161.5, 194.5], [162.5, 194.5], [163.5, 193.5], [164.5, 193.5], [165.5, 192.5], [179.5, 192.5], [180.5, 193.5], [182.5, 193.5], [185.5, 196.5], [186.5, 197.5], [186.5, 200.5], [187.5, 201.5], [187.5, 219.5], [188.5, 220.5], [188.5, 221.5], [189.5, 222.5], [189.5, 230.5], [188.5, 230.5], [187.5, 231.5], [187.5, 233.5], [186.5, 234.5], [186.5, 235.5], [185.5, 236.5], [185.5, 241.5], [187.5, 243.5], [192.5, 243.5], [194.5, 245.5], [195.5, 245.5], [195.5, 246.5], [199.5, 250.5], [167.5, 250.5], [165.5, 248.5], [165.5, 247.5], [164.5, 246.5], [164.5, 245.5], [163.5, 244.5], [163.5, 241.5], [162.5, 240.5], [162.5, 237.5], [163.5, 235.5], [163.5, 233.5], [162.5, 232.5], [162.5, 229.5], [161.5, 228.5], [161.5, 227.5], [160.5, 226.5], [160.5, 222.5], [159.5, 221.5], [159.5, 219.5], [159.5, 219.5]]}, {"id": "twm682", "submitted_by": "K4M1k4ZE_", "name": "Flag of the province Noord-Holland", "description": "", "website": "", "subreddit": "", "center": [1279.5, 7.5], "path": [[1272.5, 2.5], [1272.5, 12.5], [1285.5, 12.5], [1285.5, 2.5], [1272.5, 2.5]]}, {"id": "twm5um", "submitted_by": "smokeyinferno", "name": "Spirit Phone Album Cover", "description": "The album cover for Neil Cicierega\u2019s 2016 album, Spirit Phone, which was released under the musical project known as \u201cLemon Demon\u201d. This album cover was drawn by Neil\u2019s wife, Ming Doyle, and features art of Neil holding Maui, a cat owned by the two until he passed away in 2020. The album itself is very eccentric; it is primarily composed of synth-pop songs about various things related to the occult, ranging from Gef the Talking Mongoose to a girl from another dimension who the narrator is hopelessly in love with despite her race\u2019s Earth-shattering properties.", "website": "https://lemondemon.bandcamp.com/album/spirit-phone", "subreddit": "/r/lemondemon", "center": [316.5, 1947.5], "path": [[292.5, 1926.5], [292.5, 1926.5], [292.5, 1925.5], [292.5, 1969.5], [340.5, 1969.5], [340.5, 1925.5]]}, {"id": "twm5se", "submitted_by": "Flamberge3000", "name": "Kobo Kanaeru", "description": "Kobo Kanaeru is a talent of Hololive, a Vtuber agency. She debuted with two other VTubers as the third generation of Hololive's Indonesian branch.", "website": "https://hololive.hololivepro.com/en/talents/kobo-kanaeru/", "subreddit": "/r/Hololive", "center": [1916.5, 714.5], "path": [[1891.5, 696.5], [1891.5, 732.5], [1940.5, 732.5], [1940.5, 696.5]]}, {"id": "twm5b4", "submitted_by": "K4M1k4ZE_", "name": "Flag of the Dutch province Overijssel", "description": "", "website": "", "subreddit": "", "center": [1260.5, 7.5], "path": [[1253.5, 2.5], [1253.5, 12.5], [1267.5, 12.5], [1267.5, 2.5], [1253.5, 2.5]]}, -{"id": "twm4kc", "submitted_by": "Spoken-Softly", "name": "Stellaris Gigastructures Kaiser", "description": "A crisis event from the major Stellaris mod Gigastructures.", "website": "", "subreddit": "", "center": [1464.5, 987.5], "path": [[787.5, 692.5 ], [ 822.5, 693.5 ], [ 822.5, 697.5 ], [ 820.5, 698.5 ], [ 823.5, 701.5 ], [ 821.5, 704.5 ], [ 821.5, 708.5 ], [ 818.5, 711.5 ], [ 812.5, 711.5 ], [ 809.5, 708.5 ], [ 805.5, 707.5 ], [ 803.5, 707.5 ], [ 801.5, 709.5 ], [ 799.5, 711.5 ], [ 794.5, 711.5 ], [ 791.5, 710.5 ], [ 790.5, 707.5 ], [ 787.5, 707.5 ], [ 785.5, 702.5 ], [ 787.5, 692.5 ]]}, +{"id": "twm4kc", "submitted_by": "Spoken-Softly", "name": "Stellaris Gigastructures Kaiser", "description": "A crisis event from the major Stellaris mod Gigastructures.", "website": "", "subreddit": "", "center": [1464.5, 987.5], "path": [[787.5, 692.5], [822.5, 693.5], [822.5, 697.5], [820.5, 698.5], [823.5, 701.5], [821.5, 704.5], [821.5, 708.5], [818.5, 711.5], [812.5, 711.5], [809.5, 708.5], [805.5, 707.5], [803.5, 707.5], [801.5, 709.5], [799.5, 711.5], [794.5, 711.5], [791.5, 710.5], [790.5, 707.5], [787.5, 707.5], [785.5, 702.5], [787.5, 692.5]]}, {"id": "twm4jy", "submitted_by": "Charimia", "name": "r/StardewValley Mural", "description": "It all started with a Chicken, but this tribute to the Stardew Valley community and subreddit grew into the piece you see before you. It underwent several renditions -- First just the Chicken, then the text and its mountainous background was added, then a green Junimo, a Blue chicken, and a purple Junimo. By day 2, the purple Junimo had lost to a more iconic Stardrop. The piece remained relatively unchanged for the remainder of r/place, with the exception of coloring improvements and several updates to the text backdrop. I'm so proud of our community for keeping this piece beautiful till the very end.", "website": "", "subreddit": "/r/StardewValley", "center": [102.5, 366.5], "path": [[71.5, 345.5], [132.5, 345.5], [132.5, 386.5], [71.5, 386.5]]}, {"id": "twm4ix", "submitted_by": "Various_Profit1097", "name": "Reimu Hakurei & Hatsune Miku", "description": "A small Reimu beside a small Miku symbolizing the friendship between the two subreddits throughout r/place 2022", "website": "", "subreddit": "/r/Touhou, r/, Hatsune", "center": [810.5, 697.5], "path": [[786.5, 687.5], [777.5, 685.5], [792.5, 687.5], [801.5, 688.5], [807.5, 687.5], [809.5, 688.5], [811.5, 689.5], [812.5, 688.5], [813.5, 687.5], [813.5, 687.5], [814.5, 687.5], [813.5, 689.5], [813.5, 689.5], [813.5, 690.5], [813.5, 690.5], [813.5, 690.5], [811.5, 685.5], [821.5, 686.5], [829.5, 685.5], [806.5, 686.5], [805.5, 686.5], [806.5, 685.5], [793.5, 686.5], [791.5, 685.5], [787.5, 685.5], [786.5, 685.5], [784.5, 685.5], [808.5, 685.5], [811.5, 684.5], [810.5, 685.5], [794.5, 689.5], [790.5, 690.5], [791.5, 691.5], [796.5, 688.5], [797.5, 689.5], [799.5, 689.5], [802.5, 690.5], [804.5, 689.5], [805.5, 689.5], [807.5, 689.5], [790.5, 688.5], [787.5, 689.5], [786.5, 689.5], [784.5, 689.5], [783.5, 688.5], [782.5, 687.5], [779.5, 687.5], [778.5, 687.5], [778.5, 686.5], [777.5, 686.5], [777.5, 687.5], [778.5, 688.5], [775.5, 686.5], [782.5, 689.5], [781.5, 689.5], [778.5, 689.5], [780.5, 690.5], [781.5, 691.5], [785.5, 691.5], [788.5, 690.5], [789.5, 690.5], [786.5, 689.5], [784.5, 688.5], [781.5, 689.5], [781.5, 689.5], [798.5, 690.5], [799.5, 691.5], [797.5, 692.5], [789.5, 691.5], [788.5, 690.5], [788.5, 691.5], [784.5, 687.5], [783.5, 689.5], [783.5, 687.5], [781.5, 688.5], [782.5, 688.5], [792.5, 688.5], [794.5, 688.5], [794.5, 688.5], [790.5, 687.5], [788.5, 688.5], [789.5, 687.5], [788.5, 688.5], [787.5, 688.5], [809.5, 688.5], [809.5, 691.5], [807.5, 691.5], [807.5, 691.5], [801.5, 691.5], [801.5, 691.5], [816.5, 690.5], [813.5, 690.5], [820.5, 686.5], [828.5, 687.5], [828.5, 688.5], [828.5, 690.5], [828.5, 690.5], [828.5, 690.5], [827.5, 691.5], [814.5, 692.5], [813.5, 689.5], [829.5, 690.5], [829.5, 686.5], [828.5, 684.5], [825.5, 685.5], [815.5, 685.5], [814.5, 685.5], [813.5, 684.5], [820.5, 685.5], [824.5, 684.5], [828.5, 683.5], [830.5, 687.5], [831.5, 685.5], [829.5, 683.5], [830.5, 688.5], [831.5, 689.5], [831.5, 688.5], [830.5, 686.5], [829.5, 690.5], [828.5, 691.5], [826.5, 691.5], [827.5, 691.5], [824.5, 690.5], [825.5, 688.5], [826.5, 685.5], [826.5, 689.5], [823.5, 690.5], [823.5, 691.5], [820.5, 691.5], [822.5, 691.5], [818.5, 689.5], [820.5, 686.5], [820.5, 690.5], [819.5, 690.5], [820.5, 690.5], [821.5, 689.5], [827.5, 688.5], [827.5, 688.5], [826.5, 687.5], [824.5, 689.5], [822.5, 687.5], [823.5, 686.5], [824.5, 689.5], [821.5, 690.5], [821.5, 690.5], [821.5, 691.5], [820.5, 692.5], [819.5, 692.5], [820.5, 691.5], [821.5, 690.5], [821.5, 689.5], [813.5, 696.5], [817.5, 698.5], [814.5, 702.5], [814.5, 705.5], [812.5, 707.5], [812.5, 707.5], [811.5, 709.5], [817.5, 709.5], [817.5, 704.5], [812.5, 698.5], [811.5, 706.5], [796.5, 708.5], [789.5, 705.5], [787.5, 705.5], [795.5, 710.5], [787.5, 702.5], [798.5, 709.5], [788.5, 697.5], [787.5, 701.5], [790.5, 701.5], [820.5, 694.5], [820.5, 699.5], [821.5, 693.5], [822.5, 700.5], [828.5, 694.5], [827.5, 700.5], [827.5, 703.5], [828.5, 703.5], [827.5, 705.5], [826.5, 706.5], [822.5, 708.5], [818.5, 710.5], [814.5, 712.5], [810.5, 711.5], [787.5, 693.5], [787.5, 696.5], [793.5, 710.5], [784.5, 694.5], [783.5, 692.5], [782.5, 703.5], [777.5, 707.5], [774.5, 709.5], [784.5, 706.5], [776.5, 711.5], [786.5, 703.5], [774.5, 713.5], [786.5, 705.5]]}, {"id": "twm4i3", "submitted_by": "Wonderful-Surprise-7", "name": "Arsenal F.C.", "description": "Arsenal are a soccer/football club founded in 1886. They are currently based in North London. They are known as one of the most successful clubs in English football history, winning 13 Division One Titles and 14 FA Cups respectively, as well as many more.", "website": "", "subreddit": "/r/gunners", "center": [727.5, 503.5], "path": [[701.5, 482.5], [752.5, 482.5], [753.5, 523.5], [701.5, 523.5]]}, @@ -917,9 +850,8 @@ {"id": "twm0b6", "submitted_by": "cabbage-soup", "name": "Blue Aisha", "description": "Aisha is a very popular and cute Neopet. This one happens to be blue.", "website": "http://neopets.com/", "subreddit": "/r/neopets", "center": [545.5, 1504.5], "path": [[532.5, 1490.5], [534.5, 1487.5], [537.5, 1487.5], [538.5, 1489.5], [542.5, 1489.5], [546.5, 1494.5], [547.5, 1494.5], [547.5, 1492.5], [548.5, 1491.5], [549.5, 1492.5], [550.5, 1493.5], [551.5, 1494.5], [552.5, 1495.5], [552.5, 1496.5], [553.5, 1497.5], [553.5, 1498.5], [552.5, 1499.5], [551.5, 1500.5], [550.5, 1500.5], [551.5, 1502.5], [552.5, 1503.5], [553.5, 1504.5], [553.5, 1505.5], [554.5, 1506.5], [554.5, 1508.5], [553.5, 1509.5], [553.5, 1512.5], [552.5, 1513.5], [552.5, 1514.5], [551.5, 1515.5], [551.5, 1516.5], [550.5, 1517.5], [549.5, 1518.5], [548.5, 1519.5], [547.5, 1519.5], [546.5, 1520.5], [545.5, 1520.5], [544.5, 1521.5], [541.5, 1521.5], [540.5, 1520.5], [539.5, 1520.5], [538.5, 1519.5], [537.5, 1518.5], [536.5, 1517.5], [536.5, 1515.5], [537.5, 1516.5], [538.5, 1517.5], [540.5, 1517.5], [540.5, 1518.5], [542.5, 1518.5], [543.5, 1517.5], [542.5, 1516.5], [542.5, 1515.5], [541.5, 1514.5], [541.5, 1513.5], [542.5, 1511.5], [543.5, 1511.5], [544.5, 1511.5], [545.5, 1512.5], [546.5, 1511.5], [545.5, 1510.5], [544.5, 1509.5], [544.5, 1507.5], [547.5, 1505.5], [546.5, 1504.5], [544.5, 1504.5], [544.5, 1503.5], [543.5, 1502.5], [542.5, 1501.5], [541.5, 1499.5], [540.5, 1497.5], [540.5, 1496.5], [539.5, 1495.5], [537.5, 1495.5], [536.5, 1496.5], [535.5, 1496.5], [534.5, 1497.5], [533.5, 1498.5], [533.5, 1499.5], [531.5, 1499.5], [530.5, 1497.5], [529.5, 1497.5], [530.5, 1496.5], [531.5, 1495.5], [533.5, 1495.5], [535.5, 1494.5], [536.5, 1494.5], [537.5, 1493.5], [541.5, 1493.5], [542.5, 1494.5], [544.5, 1495.5], [544.5, 1494.5], [543.5, 1493.5], [542.5, 1492.5], [541.5, 1491.5], [538.5, 1491.5], [537.5, 1491.5], [536.5, 1492.5], [534.5, 1492.5], [533.5, 1491.5], [532.5, 1490.5], [533.5, 1488.5], [532.5, 1489.5], [534.5, 1488.5], [533.5, 1489.5]]}, {"id": "twlzw3", "submitted_by": "K4M1k4ZE_", "name": "Tulips", "description": "The Dutch are famous for their tulips. The flower itself actually originates from Central Asia.", "website": "", "subreddit": "", "center": [537.5, 4.5], "path": [[481.5, 13.5], [480.5, 13.5], [480.5, 9.5], [481.5, 9.5], [481.5, 0.5], [543.5, -10.5], [592.5, 0.5], [592.5, 1.5], [593.5, 1.5], [593.5, 2.5], [594.5, 2.5], [594.5, 11.5], [593.5, 11.5], [593.5, 12.5], [592.5, 13.5], [554.5, 13.5], [480.5, 14.5]]}, {"id": "twlzv2", "submitted_by": "Ericbazinga", "name": "Sakamoto", "description": "A popular character from the anime Nichijou. He lives with the child genius Professor Hakase and her robot caretaker Nano. The scarf around his neck allows him to talk.", "website": "https://en.wikipedia.org/wiki/Nichijou", "subreddit": "/r/nichijou", "center": [1454.5, 523.5], "path": [[1461.5, 535.5], [1448.5, 535.5], [1448.5, 532.5], [1449.5, 532.5], [1449.5, 528.5], [1450.5, 528.5], [1450.5, 526.5], [1445.5, 520.5], [1448.5, 515.5], [1448.5, 511.5], [1451.5, 513.5], [1453.5, 510.5], [1457.5, 509.5], [1457.5, 512.5], [1458.5, 512.5], [1458.5, 519.5], [1459.5, 519.5], [1462.5, 518.5], [1462.5, 521.5], [1458.5, 525.5], [1459.5, 528.5], [1461.5, 526.5], [1462.5, 527.5], [1462.5, 531.5], [1461.5, 535.5]]}, -{"id": "twlzrt", "submitted_by": "SrPeixinho", "name": "Kindelia", "description": "A functional crypto-computer based on the HVM (High-order Virtual Machine). Kindelia is more efficient than alternatives, and, thanks to formal proofs, inherently more secure. Programs hosted on Kindelia are hack-proof and eternal.", "website": "https://kindelia.org/", "subreddit": "/r/kindelia", "center": [997.5, 559.5], "path": [[979.5, 566.5], [979.5, 553.5], [1014.5, 553.5], [1014.5, 562.5], [1012.5, 562.5], [1012.5, 563.5], [1010.5, 563.5], [1010.5, 566.5], [998.5, 566.5], [998.5, 557.5], [988.5, 557.5], [988.5, 566.5], [979.5, 566.5], [979.5, 553.5]]}, +{"id": "twlzrt", "submitted_by": "SrPeixinho", "name": "Kindelia", "description": "A functional crypto-computer based on the HVM (High-order Virtual Machine). Kindelia is more efficient than alternatives, and, thanks to formal proofs, inherently more secure. Programs hosted on Kindelia are hack-proof and eternal.", "website": "https://kindelia.org/", "subreddit": "/r/kindelia", "center": [997.5, 559.5], "path": [[978.5, 566.5], [978.5, 552.5], [1015.5, 552.5], [1015.5, 563.5], [1012.5, 563.5], [1012.5, 564.5], [1011.5, 564.5], [1011.5, 567.5], [978.5, 567.5]]}, {"id": "twlyz5", "submitted_by": "nhokbeo2005", "name": "Legends of IdleOn!", "description": "An icon representing Legends of Idleon MMO", "website": "https://www.legendsofidleon.com/", "subreddit": "/r/idleon", "center": [1726.5, 657.5], "path": [[1710.5, 637.5], [1710.5, 684.5], [1725.5, 670.5], [1727.5, 670.5], [1742.5, 683.5], [1742.5, 637.5], [1725.5, 637.5]]}, -{"id": "twlyru", "submitted_by": "Logical-Shoulder-820", "name": "Deltarune plush mural", "description": "A collection of plushies of Deltarune characters sitting in the Cyberworld", "website": "", "subreddit": "/r/deltarune", "center": [0.5, 0.5], "path": []}, {"id": "twlylc", "submitted_by": "MemoryAggravating694", "name": "Mitski", "description": "Reference to the musical artist mitski", "website": "", "subreddit": "/r/mitski", "center": [1071.5, 1805.5], "path": [[1058.5, 1810.5], [1058.5, 1801.5], [1083.5, 1800.5], [1084.5, 1810.5]]}, {"id": "twlyi6", "submitted_by": "Castmaker", "name": "B.B chibi portrait", "description": "B.B is a character found in the Fate/Grand Order mobile game and the Fate/Extra game series", "website": "", "subreddit": "/r/grandorder", "center": [178.5, 787.5], "path": [[169.5, 765.5], [154.5, 777.5], [156.5, 803.5], [208.5, 805.5], [189.5, 768.5], [186.5, 766.5]]}, {"id": "twly9x", "submitted_by": "Spoodnt", "name": "The Battle Cats X World Box", "description": "The collab of Mobile game 'The Battle Cats' with Survival game 'World Box'", "website": "", "subreddit": "/r/battlecats", "center": [567.5, 1669.5], "path": [[558.5, 1647.5], [578.5, 1646.5], [578.5, 1655.5], [580.5, 1667.5], [589.5, 1673.5], [589.5, 1682.5], [581.5, 1682.5], [577.5, 1687.5], [559.5, 1689.5], [553.5, 1682.5], [548.5, 1681.5], [545.5, 1669.5], [552.5, 1669.5], [555.5, 1664.5], [557.5, 1654.5], [558.5, 1647.5], [559.5, 1647.5], [560.5, 1647.5], [558.5, 1647.5], [558.5, 1647.5]]}, @@ -930,19 +862,17 @@ {"id": "twlxb1", "submitted_by": "CydersZenith", "name": "Monty Oum Tribute", "description": "A tribute to Monty Oum (1981-2015), creator of the show RWBY and animator of many incredible fights.", "website": "https://roosterteeth.com", "subreddit": "/r/RWBY", "center": [521.5, 1729.5], "path": [[500.5, 1700.5], [541.5, 1700.5], [541.5, 1758.5], [500.5, 1758.5]]}, {"id": "twlwvw", "submitted_by": "Ok_Difference9054", "name": "RU3 Colony", "description": "A colony of the RU3 community!", "website": "", "subreddit": "/r/RiskUniversalis", "center": [1345.5, 1246.5], "path": [[1332.5, 1234.5], [1358.5, 1234.5], [1358.5, 1257.5], [1332.5, 1257.5]]}, {"id": "twlwh4", "submitted_by": "Yay295", "name": "Big Madoka", "description": "Madoka Kaname from the Puella Magi Madoka Magica anime series.", "website": "", "subreddit": "/r/MadokaMagica", "center": [1242.5, 888.5], "path": [[1222.5, 906.5], [1262.5, 906.5], [1262.5, 900.5], [1252.5, 900.5], [1250.5, 898.5], [1250.5, 897.5], [1252.5, 895.5], [1252.5, 894.5], [1257.5, 889.5], [1257.5, 870.5], [1227.5, 870.5], [1227.5, 878.5], [1226.5, 879.5], [1226.5, 885.5], [1234.5, 893.5], [1234.5, 895.5], [1229.5, 900.5], [1222.5, 900.5]]}, -{"id": "twlwgi", "submitted_by": "sukablyet109", "name": "Happy Gomez", "description": "A sprite of Gomez, main character of the indie videogame FEZ, jumping up and down with joy.", "website": "https://www.reddit.com/r/Fez/", "subreddit": "/r/Fez", "center": [0.5, 0.5], "path": []}, {"id": "twlwb7", "submitted_by": "K4M1k4ZE_", "name": "Turkey and Netherlands (Destroyed)", "description": "Turkey and The Netherlands decided to become allies since a lot of Turkish people live in The Netherlands.", "website": "", "subreddit": "", "center": [1104.5, 22.5], "path": [[1104.5, 20.5], [1105.5, 19.5], [1106.5, 18.5], [1109.5, 17.5], [1110.5, 18.5], [1111.5, 19.5], [1111.5, 20.5], [1111.5, 21.5], [1111.5, 22.5], [1110.5, 23.5], [1109.5, 24.5], [1104.5, 28.5], [1098.5, 23.5], [1097.5, 22.5], [1097.5, 19.5], [1098.5, 18.5], [1099.5, 17.5], [1101.5, 17.5], [1102.5, 18.5], [1103.5, 19.5], [1104.5, 20.5]]}, {"id": "twlw9l", "submitted_by": "MLGIyel", "name": "Paladins", "description": "Tiles placed to resemble the logo of Paladins, a character-based FPS that, at the time of writing, has 54 champions. Being a relatively small community, this is quite the achievement for us!", "website": "https://www.paladins.com", "subreddit": "/r/Paladins", "center": [652.5, 1363.5], "path": [[652.5, 1368.5], [650.5, 1366.5], [649.5, 1366.5], [649.5, 1365.5], [647.5, 1365.5], [647.5, 1363.5], [648.5, 1362.5], [649.5, 1361.5], [650.5, 1360.5], [650.5, 1359.5], [651.5, 1358.5], [652.5, 1357.5], [653.5, 1358.5], [654.5, 1359.5], [654.5, 1360.5], [655.5, 1361.5], [656.5, 1362.5], [657.5, 1363.5], [657.5, 1364.5], [656.5, 1365.5], [655.5, 1366.5], [654.5, 1366.5], [653.5, 1367.5]]}, {"id": "twlw2h", "submitted_by": "Ericbazinga", "name": "Doomguy and Isabelle", "description": "The pairing of Doomguy (the main character of Doom) and Isabelle (a primary supporting character from Animal Crossing). In 2020, the games Doom Eternal and Animal Crossing: New Horizons launched on the same day, leading to jokes about the two characters being friends and trading hobbies.", "website": "https://knowyourmeme.com/memes/doomguy-and-isabelle", "subreddit": "/r/doom", "center": [623.5, 1358.5], "path": [[632.5, 1343.5], [636.5, 1346.5], [640.5, 1347.5], [644.5, 1348.5], [645.5, 1350.5], [649.5, 1354.5], [649.5, 1356.5], [649.5, 1361.5], [644.5, 1367.5], [642.5, 1370.5], [632.5, 1369.5], [632.5, 1366.5], [624.5, 1366.5], [623.5, 1367.5], [622.5, 1367.5], [622.5, 1375.5], [621.5, 1375.5], [618.5, 1373.5], [613.5, 1374.5], [610.5, 1375.5], [606.5, 1375.5], [605.5, 1374.5], [609.5, 1371.5], [609.5, 1367.5], [604.5, 1367.5], [601.5, 1364.5], [601.5, 1360.5], [604.5, 1357.5], [609.5, 1356.5], [609.5, 1355.5], [608.5, 1354.5], [608.5, 1352.5], [604.5, 1354.5], [602.5, 1351.5], [602.5, 1345.5], [605.5, 1341.5], [610.5, 1341.5], [613.5, 1343.5], [619.5, 1343.5], [621.5, 1345.5], [624.5, 1349.5], [625.5, 1358.5], [626.5, 1358.5], [627.5, 1355.5], [629.5, 1351.5], [629.5, 1351.5], [628.5, 1348.5], [628.5, 1345.5], [631.5, 1343.5]]}, {"id": "twlvx9", "submitted_by": "Flamberge3000", "name": "Hololive ft. HoloCouncil", "description": "Hololive Production is a virtual YouTuber agency owned by Japanese tech entertainment company Cover Corporation. Above its name are the five members of HoloCouncil, a group from the EN branch: Hakos Baelz, Nanashi Mumei, Ceres Fauna, Ouro Kronii, and Tsukumo Sana.", "website": "https://youtu.be/SLnxCyzFgPw", "subreddit": "/r/Hololive", "center": [245.5, 741.5], "path": [[200.5, 723.5], [200.5, 771.5], [239.5, 753.5], [302.5, 753.5], [302.5, 737.5], [293.5, 725.5], [215.5, 725.5], [207.5, 721.5], [200.5, 721.5]]}, {"id": "twlvjr", "submitted_by": "Schmittez", "name": "Crumb (Cuptoast) Pixel Art", "description": "A small pixel art for the animator and twitch streamer Cuptoast, AKA Crumb.", "website": "https://twitter.com/cuptoast", "subreddit": "/r/CaptainSparklez", "center": [1944.5, 392.5], "path": [[1939.5, 387.5], [1948.5, 387.5], [1948.5, 396.5], [1939.5, 396.5]]}, {"id": "twlvfz", "submitted_by": "coelecanthcannon", "name": "Logo of Lobotomy Corporation", "description": "Lobotomy Corporation is a game developed by Project Moon, a South Korean video game studio.", "website": "", "subreddit": "/r/LobotomyCorp", "center": [266.5, 1245.5], "path": [[250.5, 1225.5], [250.5, 1225.5], [282.5, 1225.5], [281.5, 1265.5], [250.5, 1265.5], [250.5, 1225.5]]}, -{"id": "twlvef", "submitted_by": "FancySkunk", "name": "Muse", "description": "Depicts (from left to right) the English band Muse's logo, and the album art for each of their nine studio albums: Showbiz, Origin of Symmetry, Absolution, Black Holes and Revelations, The Resistance, The 2nd Law, Drones, Simulation Theory, and Will of the People.", "website": "muse.mu", "subreddit": "/r/muse", "center": [42.5, 59.5], "path": [[0.5, 55.5], [86.5, 55.5], [86.5, 62.5], [0.5, 63.5], [0.5, 55.5]]}, +{"id": "twlvef", "submitted_by": "FancySkunk", "name": "Muse", "description": "Depicts (from left to right) the English band Muse's logo, and the album art for each of their nine studio albums: Showbiz, Origin of Symmetry, Absolution, Black Holes and Revelations, The Resistance, The 2nd Law, Drones, Simulation Theory, and Will of the People.", "website": "https://muse.mu", "subreddit": "/r/muse", "center": [42.5, 59.5], "path": [[0.5, 55.5], [86.5, 55.5], [86.5, 62.5], [0.5, 63.5], [0.5, 55.5]]}, {"id": "twlvbt", "submitted_by": "ThyCheshireCat", "name": "Sponge", "description": "A Vinesauce meme based on a supposed 'lost Mario brother'. He has the ability to soak up all the sadness and anguish of the Mushroom Kingdom, hence his name. He has a brother named Pretzel.", "website": "https://www.youtube.com/watch?v=bsO2QjbrUCA", "subreddit": "/r/Vinesauce", "center": [129.5, 1082.5], "path": [[126.5, 1069.5], [129.5, 1069.5], [130.5, 1070.5], [131.5, 1070.5], [133.5, 1072.5], [133.5, 1075.5], [134.5, 1075.5], [135.5, 1076.5], [135.5, 1087.5], [132.5, 1087.5], [132.5, 1094.5], [133.5, 1095.5], [133.5, 1096.5], [128.5, 1096.5], [128.5, 1091.5], [126.5, 1091.5], [125.5, 1092.5], [124.5, 1091.5], [123.5, 1091.5], [123.5, 1090.5], [125.5, 1088.5], [125.5, 1085.5], [124.5, 1084.5], [124.5, 1083.5], [123.5, 1082.5], [123.5, 1081.5], [122.5, 1080.5], [122.5, 1079.5], [124.5, 1077.5], [124.5, 1075.5], [125.5, 1074.5], [125.5, 1073.5], [126.5, 1072.5], [126.5, 1069.5]]}, {"id": "twluu7", "submitted_by": "AungAlvin", "name": "Sakamoto", "description": "Sakamoto is one of the main characters from the Nichijou anime and manga.", "website": "", "subreddit": "/r/Nichijou", "center": [1454.5, 523.5], "path": [[1449.5, 511.5], [1450.5, 512.5], [1450.5, 513.5], [1451.5, 513.5], [1452.5, 513.5], [1452.5, 512.5], [1453.5, 510.5], [1454.5, 510.5], [1456.5, 510.5], [1457.5, 510.5], [1457.5, 511.5], [1458.5, 512.5], [1458.5, 519.5], [1459.5, 520.5], [1459.5, 521.5], [1460.5, 519.5], [1461.5, 518.5], [1462.5, 518.5], [1462.5, 521.5], [1461.5, 522.5], [1460.5, 523.5], [1459.5, 524.5], [1458.5, 525.5], [1458.5, 526.5], [1458.5, 527.5], [1459.5, 528.5], [1460.5, 527.5], [1461.5, 526.5], [1462.5, 527.5], [1462.5, 532.5], [1461.5, 532.5], [1461.5, 533.5], [1461.5, 535.5], [1448.5, 535.5], [1448.5, 532.5], [1449.5, 532.5], [1449.5, 528.5], [1450.5, 528.5], [1450.5, 526.5], [1450.5, 525.5], [1449.5, 525.5], [1449.5, 524.5], [1448.5, 524.5], [1448.5, 523.5], [1447.5, 523.5], [1447.5, 522.5], [1447.5, 521.5], [1447.5, 521.5], [1446.5, 520.5], [1445.5, 519.5], [1446.5, 518.5], [1447.5, 517.5], [1447.5, 516.5], [1448.5, 515.5], [1448.5, 512.5], [1449.5, 511.5], [1450.5, 513.5]]}, {"id": "twlut2", "submitted_by": "seven_seven", "name": "MrMouton", "description": "Twitch variety (and League) gaming streamer.", "website": "https://www.twitch.tv/mrmouton", "subreddit": "/r/MrMouton", "center": [194.5, 109.5], "path": [[180.5, 97.5], [207.5, 97.5], [207.5, 121.5], [180.5, 121.5]]}, {"id": "twlupf", "submitted_by": "f5xs_0000b", "name": "Roxy Migurdia", "description": "The mentor of Rudeus Greyrat in the anime Mushoku Tensei: Jobless Reincarnation.", "website": "https://myanimelist.net/anime/39535/Mushoku_Tensei__Isekai_Ittara_Honki_Dasu", "subreddit": "/r/mushokutensei", "center": [1865.5, 703.5], "path": [[1840.5, 691.5], [1891.5, 691.5], [1891.5, 694.5], [1890.5, 694.5], [1890.5, 715.5], [1839.5, 715.5], [1839.5, 706.5], [1840.5, 706.5]]}, -{"id": "twluh9", "submitted_by": "Look2Esc", "name": "Aromantic/Asexual Dragons", "description": "A pair of dragon characters representing aromantic and asexual pride", "website": "https://www.reddit.com/r/Asexual", "subreddit": "/r/Asexual", "center": [523.5, 664.5], "path": [[448.5, 646.5], [448.5, 681.5], [598.5, 681.5], [598.5, 646.5]]}, {"id": "twlufp", "submitted_by": "Castmaker", "name": "Rembrandt's The Night Watch", "description": "The Night Watch (Dutch: De Nachtwacht), is a 1642 painting by Rembrandt van Rijn. It is in the collection of the Amsterdam Museum but is prominently displayed in the Rijksmuseum as the best-known painting in its collection. The Night Watch is one of the most famous Dutch Golden Age paintings.", "website": "", "subreddit": "/r/PlaceNL", "center": [627.5, 1898.5], "path": [[538.5, 1849.5], [715.5, 1849.5], [715.5, 1948.5], [538.5, 1947.5]]}, {"id": "twluem", "submitted_by": "manawesome326", "name": "Red Gnome", "description": "The red Gnome from the game Everhood, hiding behind half the DankPods sign.", "website": "https://everhoodgame.com/", "subreddit": "/r/Everhood", "center": [1445.5, 820.5], "path": [[1441.5, 824.5], [1449.5, 824.5], [1445.5, 812.5]]}, {"id": "twlubc", "submitted_by": "Excellent-Sort6280", "name": "St. Louis Blues", "description": "A logo of the St. Louis Blues hockey team", "website": "", "subreddit": "/r/stlouisblues", "center": [1789.5, 923.5], "path": [[1774.5, 912.5], [1807.5, 912.5], [1807.5, 916.5], [1791.5, 931.5], [1792.5, 936.5], [1791.5, 936.5], [1791.5, 937.5], [1788.5, 939.5], [1779.5, 940.5], [1776.5, 936.5], [1776.5, 932.5], [1780.5, 929.5], [1784.5, 929.5], [1775.5, 915.5], [1774.5, 915.5], [1774.5, 912.5]]}, @@ -950,13 +880,12 @@ {"id": "twlt2a", "submitted_by": "f5xs_0000b", "name": "German Maple Leaf", "description": "As a result of the inability of the Canadians above to draw a proper maple leaf, the Germans below teach them how it's done.", "website": "", "subreddit": "", "center": [1721.5, 1144.5], "path": [[1720.5, 1163.5], [1722.5, 1163.5], [1722.5, 1153.5], [1725.5, 1153.5], [1726.5, 1154.5], [1731.5, 1154.5], [1731.5, 1153.5], [1730.5, 1152.5], [1730.5, 1151.5], [1732.5, 1149.5], [1733.5, 1149.5], [1737.5, 1145.5], [1737.5, 1144.5], [1736.5, 1144.5], [1735.5, 1143.5], [1736.5, 1142.5], [1736.5, 1140.5], [1737.5, 1139.5], [1737.5, 1138.5], [1735.5, 1138.5], [1734.5, 1139.5], [1731.5, 1139.5], [1731.5, 1138.5], [1730.5, 1137.5], [1729.5, 1138.5], [1727.5, 1140.5], [1726.5, 1139.5], [1726.5, 1138.5], [1727.5, 1137.5], [1727.5, 1133.5], [1726.5, 1133.5], [1725.5, 1134.5], [1724.5, 1134.5], [1723.5, 1133.5], [1723.5, 1132.5], [1722.5, 1131.5], [1722.5, 1130.5], [1721.5, 1129.5], [1720.5, 1130.5], [1720.5, 1131.5], [1719.5, 1132.5], [1718.5, 1134.5], [1717.5, 1134.5], [1716.5, 1133.5], [1715.5, 1133.5], [1715.5, 1136.5], [1716.5, 1137.5], [1716.5, 1139.5], [1715.5, 1140.5], [1712.5, 1137.5], [1710.5, 1139.5], [1708.5, 1139.5], [1707.5, 1138.5], [1705.5, 1138.5], [1705.5, 1139.5], [1706.5, 1140.5], [1706.5, 1142.5], [1707.5, 1143.5], [1706.5, 1144.5], [1705.5, 1144.5], [1705.5, 1145.5], [1709.5, 1149.5], [1710.5, 1149.5], [1712.5, 1151.5], [1712.5, 1152.5], [1711.5, 1153.5], [1711.5, 1154.5], [1715.5, 1154.5], [1716.5, 1153.5], [1720.5, 1153.5]]}, {"id": "twlssp", "submitted_by": "ErinEvie", "name": "SFU", "description": "Simon Fraser University (SFU) is a public research university in British Columbia, Canada. SFU Consistently ranks as Canada's top comprehensive university and named to the Times Higher Education List of 100 universities. SFU was founded in 1962. This pixel art is SFU's smaller current logo", "website": "https://www.sfu.ca/", "subreddit": "/r/simonfraser", "center": [1467.5, 793.5], "path": [[1461.5, 790.5], [1461.5, 796.5], [1473.5, 796.5], [1473.5, 790.5], [1461.5, 790.5]]}, {"id": "twlshq", "submitted_by": "CaptainDoge", "name": "Dogecoin", "description": "One of the most memeable cryptocurrencies. Featuring a picture of Kabosu the original source of the Doge meme. Much Teamwork, wow!", "website": "", "subreddit": "/r/dogecoin", "center": [1681.5, 402.5], "path": [[1651.5, 377.5], [1651.5, 427.5], [1684.5, 427.5], [1684.5, 420.5], [1713.5, 419.5], [1714.5, 415.5], [1721.5, 414.5], [1721.5, 396.5], [1702.5, 395.5], [1701.5, 378.5]]}, -{"id": "twlsac", "submitted_by": "Anonymous0726", "name": "5up Leafling Stack", "description": "A stack of streamer 5up's leaflings.", "website": "twitch.tv/5uppp", "subreddit": "/r/5up", "center": [1799.5, 1303.5], "path": [[1796.5, 1328.5], [1807.5, 1328.5], [1807.5, 1322.5], [1804.5, 1319.5], [1804.5, 1295.5], [1805.5, 1294.5], [1804.5, 1293.5], [1804.5, 1288.5], [1803.5, 1287.5], [1803.5, 1277.5], [1804.5, 1277.5], [1804.5, 1276.5], [1802.5, 1276.5], [1791.5, 1283.5], [1791.5, 1307.5], [1796.5, 1307.5], [1796.5, 1318.5], [1793.5, 1321.5]]}, +{"id": "twlsac", "submitted_by": "Anonymous0726", "name": "5up Leafling Stack", "description": "A stack of streamer 5up's leaflings.", "website": "https://twitch.tv/5uppp", "subreddit": "/r/5up", "center": [1799.5, 1303.5], "path": [[1796.5, 1328.5], [1807.5, 1328.5], [1807.5, 1322.5], [1804.5, 1319.5], [1804.5, 1295.5], [1805.5, 1294.5], [1804.5, 1293.5], [1804.5, 1288.5], [1803.5, 1287.5], [1803.5, 1277.5], [1804.5, 1277.5], [1804.5, 1276.5], [1802.5, 1276.5], [1791.5, 1283.5], [1791.5, 1307.5], [1796.5, 1307.5], [1796.5, 1318.5], [1793.5, 1321.5]]}, {"id": "twls6b", "submitted_by": "funguy7777777", "name": "DEMONDICE", "description": "A pixel tribute to the rapper DEMONDICE!", "website": "", "subreddit": "/r/DEMONDICE", "center": [1978.5, 1502.5], "path": [[1960.5, 1493.5], [1974.5, 1493.5], [1977.5, 1495.5], [1999.5, 1495.5], [1999.5, 1508.5], [1978.5, 1508.5], [1978.5, 1510.5], [1960.5, 1510.5], [1960.5, 1493.5]]}, {"id": "twls61", "submitted_by": "Prior_Gate_9909", "name": "Windows XP Start Logo", "description": "Pictured is a the Windows XP Start Logo, and much of the Windows XP Task Bar.", "website": "https://support.microsoft.com/en-us/windows/windows-xp-support-has-ended-47b944b8-f4d3-82f2-9acc-21c79ee6ef5e", "subreddit": "/r/windowsXP", "center": [47.5, 1984.5], "path": [[0.5, 1970.5], [0.5, 1999.5], [92.5, 1998.5], [96.5, 1992.5], [96.5, 1977.5], [95.5, 1977.5], [95.5, 1971.5]]}, {"id": "twls3y", "submitted_by": "aConfusedAlt", "name": "Daft punk Hand Gesture", "description": "Signature Pyramid Iconography from disbanded (1993 - 2021) French electronic duo Daft Punk", "website": "", "subreddit": "/r/daftpunk", "center": [220.5, 945.5], "path": [[195.5, 926.5], [244.5, 926.5], [244.5, 964.5], [195.5, 964.5]]}, {"id": "twlrom", "submitted_by": "FancySkunk", "name": "Melvor Idle", "description": "Logo for Melvor Idle, an idle RPG heavily inspired by RuneScape.", "website": "https://melvoridle.com/", "subreddit": "/r/MelvorIdle", "center": [1465.5, 962.5], "path": [[1451.5, 949.5], [1478.5, 949.5], [1478.5, 974.5], [1467.5, 974.5], [1465.5, 976.5], [1464.5, 976.5], [1462.5, 974.5], [1451.5, 974.5], [1451.5, 949.5]]}, {"id": "twlrmq", "submitted_by": "SilentJarl7008", "name": "CaptainSparklez", "description": "Popular Minecraft Youtuber/Streamer who's current channel has been on the platform since 2010.", "website": "https://www.youtube.com/c/CaptainSparklez/about", "subreddit": "/r/captainsparklez", "center": [900.5, 580.5], "path": [[896.5, 577.5], [896.5, 583.5], [903.5, 583.5], [903.5, 577.5]]}, -{"id": "twlrld", "submitted_by": "Xynthexyz", "name": "Nyatle", "description": "Pixel art of a squirtle pusheen, lovingly named the Nyatle for its cat/turtle features. Made by like 4 guys lmao", "website": "https://tenor.com/view/pusheen-pokemon-squirtle-gif-5462528", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twlqk5", "submitted_by": "pseudobans", "name": "Boston University and Citgo Sign", "description": "Boston University and it's mascot, Rhett. Accompanied by the Boston Citgo Sign.", "website": "https://www.reddit.com/r/BostonU/", "subreddit": "/r/BostonU", "center": [1579.5, 345.5], "path": [[1606.5, 336.5], [1552.5, 336.5], [1552.5, 353.5], [1606.5, 353.5]]}, {"id": "twlqeh", "submitted_by": "Plotlo1019", "name": "Chloe", "description": "An OC created by SrGrafo.", "website": "https://www.srgrafo.com/", "subreddit": "/r/Chloe", "center": [1954.5, 254.5], "path": [[1940.5, 269.5], [1968.5, 269.5], [1968.5, 239.5], [1940.5, 239.5]]}, {"id": "twlq8d", "submitted_by": "h_h_gregg", "name": "Rain World (Initial Location)", "description": "Rain World is a 2017 video game made by the indie studio Videocult. This location displays (from top to bottom) the game's title, the Hunter slugcat (one of the game's playable characters), the game's Blue Fruit food item, karma glyphs, and a green Neuron Fly.", "website": "https://rainworldgame.com/", "subreddit": "/r/rainworld", "center": [343.5, 936.5], "path": [[367.5, 960.5], [329.5, 960.5], [328.5, 917.5], [367.5, 917.5], [361.5, 923.5], [359.5, 926.5], [359.5, 928.5], [364.5, 924.5], [367.5, 924.5], [365.5, 926.5], [365.5, 927.5], [363.5, 929.5], [363.5, 930.5], [361.5, 932.5], [361.5, 933.5], [359.5, 935.5], [359.5, 936.5], [357.5, 938.5], [357.5, 939.5], [355.5, 941.5], [355.5, 942.5], [353.5, 944.5], [353.5, 945.5], [353.5, 946.5], [352.5, 947.5], [352.5, 948.5], [350.5, 950.5], [350.5, 951.5], [345.5, 955.5], [345.5, 959.5]]}, @@ -972,15 +901,14 @@ {"id": "twlnhq", "submitted_by": "alexspm", "name": "Daft punk french flag", "description": "Made by r/franceplace", "website": "", "subreddit": "/r/franceplace", "center": [1163.5, 777.5], "path": [[1129.5, 730.5], [1129.5, 829.5], [1200.5, 829.5], [1200.5, 744.5], [1175.5, 743.5], [1174.5, 718.5], [1174.5, 717.5], [1173.5, 714.5], [1138.5, 714.5], [1138.5, 724.5], [1129.5, 730.5]]}, {"id": "twlmsz", "submitted_by": "TeHokioi", "name": "K\u0101k\u0101p\u014d", "description": "A large flightless parrot native to New Zealand", "website": "", "subreddit": "/r/NewZealand", "center": [1528.5, 702.5], "path": [[1534.5, 692.5], [1532.5, 692.5], [1529.5, 695.5], [1529.5, 696.5], [1523.5, 702.5], [1522.5, 702.5], [1517.5, 707.5], [1517.5, 710.5], [1520.5, 710.5], [1522.5, 708.5], [1523.5, 708.5], [1524.5, 707.5], [1525.5, 710.5], [1531.5, 710.5], [1531.5, 707.5], [1535.5, 703.5], [1535.5, 697.5], [1536.5, 698.5], [1538.5, 698.5], [1538.5, 695.5], [1537.5, 694.5], [1536.5, 694.5], [1534.5, 692.5]]}, {"id": "twlmav", "submitted_by": "MemoryAggravating694", "name": "Coldplay Section", "description": "A Small depiction of various coldplay albums. From left to right: Viva referenceing Viva la Vida, a song by Coldplay, not an album; A Rush of Blood to the Head (2002), X and Y (2005), Mylo Xyloto (2011), Parachutes (2000)", "website": "", "subreddit": "/r/coldplay", "center": [1724.5, 42.5], "path": [[1695.5, 46.5], [1695.5, 36.5], [1749.5, 35.5], [1748.5, 51.5], [1718.5, 50.5], [1717.5, 46.5]]}, -{"id": "twlm3t", "submitted_by": "VermillionOcean", "name": "Madokami", "description": "Goddess version of Kaname Madoka, the titular character of the anime Puella Magi Madoka Magica. The egg like objects at the bottom are the soul gems of Sayaka, Kyouko, Madoka, Mami and Homura respectively.nnPixel art by Xya#9254.", "website": "https://discord.com/invite/madoka", "subreddit": "/r/MadokaMagica", "center": [1705.5, 1947.5], "path": [[1679.5, 1918.5], [1679.5, 1918.5], [1679.5, 1918.5], [1679.5, 1966.5], [1683.5, 1966.5], [1683.5, 1977.5], [1731.5, 1977.5], [1731.5, 1918.5]]}, +{"id": "twlm3t", "submitted_by": "chocomint1", "name": "Madokami", "description": "Goddess version of Kaname Madoka, the titular character of the anime Puella Magi Madoka Magica. The egg-like objects at the bottom are the Soul Gems of Sayaka, Kyoko, Nagisa, Mami and Homura respectively. \n\nPixel art by @luzanami_art.", "website": "https://discord.com/invite/madoka", "subreddit": "/r/MadokaMagica", "center": [1705.5, 1948.5], "path": [[1679.5, 1918.5], [1679.5, 1977.5], [1731.5, 1977.5], [1731.5, 1918.5]]}, {"id": "twlm2k", "submitted_by": "BeyondLiesTheWub", "name": "University of Texas at Austin", "description": "The signature Longhorn logo of UT Austin is displayed below the school's hand gesture (Hook 'em Horns)", "website": "", "subreddit": "/r/UTAustin", "center": [586.5, 961.5], "path": [[581.5, 948.5], [581.5, 974.5], [592.5, 973.5], [592.5, 948.5], [581.5, 948.5], [581.5, 948.5]]}, {"id": "twllxw", "submitted_by": "BoomBloxGD", "name": "Clone Hero", "description": "Clone Hero is a freeware music rhythm video game created by Ryan Foster, first released on March 1, 2017. The game is a clone of the Guitar Hero franchise with nearly identical gameplay. The main draw of the game is its ability to play community-made songs, which has resulted in a large fan community around the game as well as a resurgence in popularity for the genre.", "website": "https://clonehero.net", "subreddit": "/r/CloneHero", "center": [597.5, 572.5], "path": [[577.5, 559.5], [576.5, 558.5], [617.5, 558.5], [617.5, 586.5], [576.5, 586.5], [576.5, 559.5]]}, {"id": "twllxk", "submitted_by": "AcidicSaiyan", "name": "Plum and 33", "description": "Plum is a group of friends from Australia, named after a guess from the game Cluedo, being Plum, Rope, Courtyard nn33 is from the 33 Gang clan on Clash of Clans, Destiny 2, R6 and more.", "website": "", "subreddit": "", "center": [1981.5, 408.5], "path": [[1974.5, 401.5], [1987.5, 401.5], [1987.5, 415.5], [1974.5, 415.5], [1974.5, 401.5]]}, -{"id": "twllwg", "submitted_by": "Prior_Gate_9909", "name": "U.S.A Flag", "description": "Pictured is the flag of the United States of America. Details: (Left to Right)n-Golden Gate Bridge, F-22 Raptor (Military Aircraft), The Gateway Arch, Bald Eagle, The Washington Monument, A Launching Space Shuttle, The Raising Of the Flag at Iwo Jima, One World Trade Center, and the Statue of Liberty.nn", "website": "https://usdebtclock.org", "subreddit": "/r/americanflaginplace", "center": [1886.5, 1809.5], "path": [[1775.5, 1751.5], [1999.5, 1751.5], [1999.5, 1864.5], [1774.5, 1868.5], [1774.5, 1839.5]]}, {"id": "twllvq", "submitted_by": "CharlieNmyT", "name": "Delutaya \u25b2", "description": "Symbol representing Independent Japanese vtuber Delutaya \u25b2", "website": "https://www.youtube.com/channel/UC7YXqPO3eUnxbJ6rN0z2z1Q/featured", "subreddit": "/r/Delutaya", "center": [269.5, 765.5], "path": [[269.5, 762.5], [265.5, 767.5], [273.5, 767.5]]}, {"id": "twlllz", "submitted_by": "MugaSofer", "name": "Offline Twitch Streamers", "description": "Banner for offline Twitch streamers, featuring the subreddit's Pepe mascot.nnThe crown is a reference to the Turtle Queen, a contagious meme entity in the free urban fantasy series Pale.", "website": "", "subreddit": "/r/Offliners", "center": [781.5, 1335.5], "path": [[702.5, 1302.5], [701.5, 1323.5], [711.5, 1324.5], [719.5, 1330.5], [720.5, 1335.5], [722.5, 1338.5], [723.5, 1347.5], [725.5, 1348.5], [727.5, 1357.5], [722.5, 1360.5], [723.5, 1369.5], [735.5, 1369.5], [741.5, 1366.5], [741.5, 1364.5], [742.5, 1360.5], [745.5, 1356.5], [757.5, 1358.5], [758.5, 1364.5], [772.5, 1364.5], [774.5, 1365.5], [777.5, 1368.5], [808.5, 1368.5], [854.5, 1368.5], [852.5, 1312.5], [790.5, 1313.5], [789.5, 1301.5]]}, {"id": "twlknz", "submitted_by": "Guilty_Nail_1333", "name": "5up's Leaflings", "description": "Emote character for Twitch Streamer 5up who, along with his community, assisted smaller communities in restoring their voided art during r/place", "website": "https://www.twitch.tv/5uppp/", "subreddit": "", "center": [1792.5, 1439.5], "path": [[1770.5, 1423.5], [1815.5, 1423.5], [1815.5, 1455.5], [1770.5, 1456.5], [1770.5, 1423.5]]}, -{"id": "twlkjp", "submitted_by": "Anonymous0726", "name": "5up Scarf Art", "description": "A small collection of streamer 5up's leaflings wrapped up in a scarf.", "website": "twitch.tv/5uppp", "subreddit": "/r/5up", "center": [1793.5, 1439.5], "path": [[1814.5, 1454.5], [1814.5, 1424.5], [1771.5, 1424.5], [1771.5, 1454.5]]}, +{"id": "twlkjp", "submitted_by": "Anonymous0726", "name": "5up Scarf Art", "description": "A small collection of streamer 5up's leaflings wrapped up in a scarf.", "website": "https://twitch.tv/5uppp", "subreddit": "/r/5up", "center": [1793.5, 1439.5], "path": [[1814.5, 1454.5], [1814.5, 1424.5], [1771.5, 1424.5], [1771.5, 1454.5]]}, {"id": "twlki2", "submitted_by": "Aryyy521", "name": "Nagito Komaeda", "description": "The man, the myth, the legend. He's survived murder, meteors, and the apocalypse. Perhaps this monument will be the Hope he is searching for after all.", "website": "", "subreddit": "/r/Danganronpa", "center": [1475.5, 152.5], "path": [[1454.5, 170.5], [1493.5, 170.5], [1493.5, 132.5], [1490.5, 132.5], [1489.5, 133.5], [1489.5, 134.5], [1488.5, 134.5], [1487.5, 134.5], [1486.5, 133.5], [1481.5, 133.5], [1481.5, 134.5], [1480.5, 135.5], [1479.5, 135.5], [1478.5, 134.5], [1478.5, 133.5], [1477.5, 132.5], [1476.5, 131.5], [1475.5, 130.5], [1471.5, 130.5], [1471.5, 130.5], [1470.5, 131.5], [1468.5, 132.5], [1467.5, 133.5], [1465.5, 133.5], [1465.5, 139.5], [1465.5, 140.5], [1460.5, 140.5], [1460.5, 145.5], [1454.5, 145.5], [1454.5, 170.5]]}, {"id": "twlkfj", "submitted_by": "FancySkunk", "name": "/r/Furry", "description": "/r/Furry is the main hub for SFW furry content on reddit", "website": "", "subreddit": "/r/Furry", "center": [1762.5, 914.5], "path": [[1749.5, 897.5], [1772.5, 897.5], [1775.5, 902.5], [1775.5, 912.5], [1774.5, 912.5], [1774.5, 916.5], [1776.5, 919.5], [1776.5, 922.5], [1777.5, 923.5], [1777.5, 927.5], [1776.5, 928.5], [1775.5, 937.5], [1773.5, 936.5], [1771.5, 932.5], [1771.5, 929.5], [1749.5, 929.5], [1749.5, 897.5]]}, {"id": "twlke1", "submitted_by": "alexspm", "name": "Zevent", "description": "French charitable event. Created by Zerator and his community", "website": "https://www.twitch.tv/zerator", "subreddit": "", "center": [1226.5, 1454.5], "path": [[1166.5, 1419.5], [1286.5, 1419.5], [1286.5, 1490.5], [1163.5, 1488.5]]}, @@ -989,7 +917,6 @@ {"id": "twlk86", "submitted_by": "alexspm", "name": "Ast\u00e9rix french flag", "description": "Flag made by r/franceplace", "website": "", "subreddit": "/r/franceplace", "center": [403.5, 793.5], "path": [[433.5, 757.5], [433.5, 829.5], [373.5, 829.5], [373.5, 757.5]]}, {"id": "twlk2m", "submitted_by": "gofl124", "name": "Miami Dolphins", "description": "The Miami Dolphins are an American Football team known for the only perfect season in football: 1972.", "website": "", "subreddit": "/r/miamidolphins", "center": [313.5, 930.5], "path": [[298.5, 917.5], [328.5, 916.5], [328.5, 944.5], [298.5, 944.5]]}, {"id": "twljvh", "submitted_by": "SeiIkeyia2", "name": "Build the Earth", "description": "Build the Earth (BTE) is a project dedicated to creating a 1:1 scale model of Earth within the sandbox video game Minecraft.", "website": "", "subreddit": "/r/buildtheearth", "center": [66.5, 615.5], "path": [[50.5, 622.5], [50.5, 620.5], [50.5, 619.5], [49.5, 619.5], [49.5, 613.5], [50.5, 610.5], [51.5, 607.5], [54.5, 604.5], [56.5, 601.5], [61.5, 600.5], [69.5, 599.5], [73.5, 600.5], [77.5, 603.5], [80.5, 608.5], [82.5, 612.5], [82.5, 620.5], [77.5, 627.5], [71.5, 631.5], [70.5, 632.5], [62.5, 632.5], [57.5, 630.5], [53.5, 626.5], [51.5, 623.5]]}, -{"id": "twljn9", "submitted_by": "LordFanor", "name": "Tomoko", "description": "Tomoko Kuroki from WataMote, with haedphones because of our music based neighbors.", "website": "", "subreddit": "/r/watamote", "center": [1974.5, 1065.5], "path": [[1964.5, 1056.5], [1964.5, 1056.5], [1983.5, 1056.5], [1983.5, 1073.5], [1964.5, 1073.5], [1964.5, 1071.5], [1964.5, 1056.5], [1964.5, 1056.5], [1964.5, 1056.5], [1972.5, 1060.5], [1968.5, 1058.5]]}, {"id": "twljim", "submitted_by": "splongadongla", "name": "Chester", "description": "Sprite of the Dont Starve Companion 'Chester' from the Terraria/Dont Starve crossover. Made by the Chester/Place Discord Server.", "website": "", "subreddit": "", "center": [659.5, 1347.5], "path": [[659.5, 1340.5], [647.5, 1345.5], [647.5, 1346.5], [649.5, 1353.5], [654.5, 1354.5], [668.5, 1354.5], [668.5, 1340.5]]}, {"id": "twljhd", "submitted_by": "f5xs_0000b", "name": "Crying YAGOO", "description": "Motoaki Tanigo, aka YAGOO, is the CEO of Cover Corp., the company behind the virtual youtuber agency hololive and holostars. He looks cute in Kizuna AI's headband though.", "website": "https://cover-corp.com/", "subreddit": "", "center": [1370.5, 941.5], "path": [[1342.5, 970.5], [1342.5, 948.5], [1343.5, 947.5], [1343.5, 945.5], [1344.5, 944.5], [1344.5, 942.5], [1345.5, 941.5], [1345.5, 939.5], [1346.5, 938.5], [1346.5, 936.5], [1345.5, 935.5], [1345.5, 933.5], [1347.5, 933.5], [1349.5, 931.5], [1351.5, 931.5], [1352.5, 930.5], [1353.5, 930.5], [1355.5, 928.5], [1356.5, 927.5], [1358.5, 927.5], [1359.5, 926.5], [1360.5, 926.5], [1361.5, 925.5], [1364.5, 925.5], [1367.5, 922.5], [1367.5, 916.5], [1368.5, 915.5], [1368.5, 913.5], [1369.5, 912.5], [1369.5, 910.5], [1370.5, 909.5], [1375.5, 909.5], [1376.5, 910.5], [1377.5, 910.5], [1379.5, 908.5], [1378.5, 907.5], [1378.5, 905.5], [1379.5, 904.5], [1380.5, 903.5], [1383.5, 903.5], [1384.5, 904.5], [1385.5, 904.5], [1387.5, 906.5], [1388.5, 905.5], [1388.5, 902.5], [1389.5, 901.5], [1389.5, 900.5], [1393.5, 900.5], [1394.5, 901.5], [1394.5, 903.5], [1393.5, 904.5], [1393.5, 909.5], [1391.5, 911.5], [1391.5, 913.5], [1392.5, 913.5], [1392.5, 914.5], [1393.5, 915.5], [1393.5, 923.5], [1392.5, 923.5], [1391.5, 924.5], [1391.5, 929.5], [1389.5, 931.5], [1389.5, 932.5], [1390.5, 933.5], [1390.5, 934.5], [1391.5, 935.5], [1391.5, 936.5], [1392.5, 937.5], [1392.5, 938.5], [1393.5, 939.5], [1393.5, 949.5], [1394.5, 950.5], [1394.5, 951.5], [1395.5, 952.5], [1395.5, 959.5], [1396.5, 960.5], [1396.5, 961.5], [1394.5, 963.5], [1390.5, 963.5], [1389.5, 962.5], [1388.5, 963.5], [1387.5, 964.5], [1387.5, 966.5], [1386.5, 967.5], [1385.5, 967.5], [1385.5, 966.5], [1384.5, 965.5], [1384.5, 963.5], [1383.5, 962.5], [1382.5, 961.5], [1379.5, 961.5], [1375.5, 965.5], [1375.5, 966.5], [1374.5, 967.5], [1369.5, 967.5], [1365.5, 971.5]]}, {"id": "twljfj", "submitted_by": "gothenby", "name": "Gol D. Roger", "description": "One Piece manga panel - chapter 967", "website": "", "subreddit": "", "center": [1661.5, 1279.5], "path": [[1601.5, 1358.5], [1722.5, 1357.5], [1723.5, 1200.5], [1601.5, 1200.5], [1600.5, 1357.5], [1719.5, 1357.5], [1718.5, 1357.5], [1602.5, 1357.5]]}, @@ -1015,17 +942,15 @@ {"id": "twlf28", "submitted_by": "learn2die101", "name": "Edmonton Oilers", "description": "Edmonton Oilers logo and the jersey number of the captain, Connor McDavid.", "website": "https://old.reddit.com/r/EdmontonOilers", "subreddit": "/r/EdmontonOilers", "center": [1814.5, 1028.5], "path": [[1796.5, 1013.5], [1829.5, 1013.5], [1829.5, 1044.5], [1799.5, 1044.5], [1799.5, 1019.5], [1796.5, 1019.5], [1796.5, 1013.5]]}, {"id": "twlese", "submitted_by": "KirbeTheEngineer", "name": "Dart Monkey (BTD6)", "description": "The Dart Monkey is a tower from the tower defense game Bloons Tower Defense, namely the sixth mainline installment, Bloons Tower Defense 6.", "website": "", "subreddit": "", "center": [1877.5, 1656.5], "path": [[1886.5, 1679.5], [1872.5, 1679.5], [1872.5, 1669.5], [1863.5, 1669.5], [1863.5, 1665.5], [1872.5, 1663.5], [1863.5, 1659.5], [1863.5, 1644.5], [1870.5, 1638.5], [1874.5, 1637.5], [1875.5, 1634.5], [1878.5, 1633.5], [1882.5, 1635.5], [1884.5, 1638.5], [1884.5, 1640.5], [1887.5, 1648.5], [1890.5, 1650.5], [1890.5, 1654.5], [1884.5, 1658.5], [1885.5, 1666.5], [1896.5, 1665.5], [1900.5, 1671.5], [1897.5, 1673.5], [1896.5, 1671.5], [1896.5, 1668.5], [1883.5, 1669.5]]}, {"id": "twlemi", "submitted_by": "MemoryAggravating694", "name": "Breaking Bad", "description": "A cute homage to the show Breaking Bad with the shows title up top, and Heisenberg in the center", "website": "", "subreddit": "/r/breakingbad", "center": [1144.5, 941.5], "path": [[1134.5, 928.5], [1153.5, 928.5], [1153.5, 953.5], [1134.5, 953.5]]}, -{"id": "twlemc", "submitted_by": "Ace_Sinclair", "name": "Zootopia", "description": "A piece dedicated to the 2016 Disney Movie Zootopia", "website": "", "subreddit": "/r/zootopia", "center": [1670.5, 775.5], "path": [[1664.5, 766.5], [1664.5, 766.5], [1664.5, 784.5], [1676.5, 784.5], [1676.5, 766.5]]}, {"id": "twlekf", "submitted_by": "f5xs_0000b", "name": "BEMANI", "description": "A rhythm game division of KONAMI hosting several arcade rhythm games including but not limited to Dance Dance Revolution, beatmania IIDX, and Sound Voltex.", "website": "", "subreddit": "", "center": [1244.5, 76.5], "path": [[1215.5, 69.5], [1215.5, 82.5], [1273.5, 82.5], [1273.5, 69.5]]}, {"id": "twlejr", "submitted_by": "Vennyxx", "name": "Telesto (Destiny 2)", "description": "A weapon infamous in the destiny community for unexpected bugs and glitches", "website": "https://telesto.report/", "subreddit": "/r/destinythegame", "center": [441.5, 977.5], "path": [[443.5, 982.5], [440.5, 982.5], [439.5, 981.5], [439.5, 980.5], [439.5, 979.5], [437.5, 979.5], [437.5, 978.5], [436.5, 978.5], [436.5, 977.5], [433.5, 977.5], [435.5, 976.5], [435.5, 975.5], [433.5, 975.5], [439.5, 975.5], [440.5, 974.5], [444.5, 974.5], [444.5, 975.5], [447.5, 975.5], [447.5, 979.5], [446.5, 978.5], [445.5, 977.5], [443.5, 977.5], [443.5, 979.5], [444.5, 980.5], [444.5, 981.5], [444.5, 980.5]]}, {"id": "twlehq", "submitted_by": "FairyRave", "name": "Snowchester Flag", "description": "Snowchester is a nation that was founded by Tubbo after the Doomsday War on the Dream SMP.", "website": "https://dreamteam.fandom.com/wiki/Snowchester", "subreddit": "/r/dreamsmp", "center": [142.5, 162.5], "path": [[136.5, 158.5], [136.5, 165.5], [147.5, 165.5], [147.5, 158.5]]}, {"id": "twlegz", "submitted_by": "ampers-andy", "name": "St. Louis Blues", "description": "The logo for the St. Louis Hockey team, the Blues", "website": "https://www.nhl.com/blues", "subreddit": "/r/stlouisblues", "center": [1788.5, 923.5], "path": [[1808.5, 911.5], [1807.5, 912.5], [1774.5, 912.5], [1774.5, 916.5], [1775.5, 916.5], [1775.5, 917.5], [1776.5, 917.5], [1776.5, 919.5], [1777.5, 919.5], [1777.5, 920.5], [1778.5, 920.5], [1778.5, 922.5], [1779.5, 922.5], [1779.5, 923.5], [1780.5, 923.5], [1780.5, 925.5], [1781.5, 925.5], [1781.5, 926.5], [1782.5, 926.5], [1782.5, 928.5], [1782.5, 929.5], [1779.5, 929.5], [1779.5, 930.5], [1778.5, 930.5], [1778.5, 931.5], [1777.5, 931.5], [1777.5, 932.5], [1776.5, 932.5], [1776.5, 937.5], [1777.5, 937.5], [1777.5, 938.5], [1778.5, 938.5], [1778.5, 939.5], [1779.5, 939.5], [1779.5, 940.5], [1788.5, 940.5], [1788.5, 939.5], [1789.5, 939.5], [1790.5, 939.5], [1790.5, 938.5], [1791.5, 938.5], [1791.5, 936.5], [1792.5, 935.5], [1792.5, 931.5], [1791.5, 931.5], [1791.5, 930.5], [1792.5, 930.5], [1792.5, 929.5], [1793.5, 929.5], [1794.5, 929.5], [1794.5, 928.5], [1795.5, 928.5], [1795.5, 927.5], [1796.5, 927.5], [1796.5, 926.5], [1797.5, 926.5], [1797.5, 925.5], [1798.5, 925.5], [1798.5, 924.5], [1799.5, 924.5], [1799.5, 923.5], [1800.5, 923.5], [1800.5, 922.5], [1801.5, 922.5], [1801.5, 921.5], [1802.5, 921.5], [1802.5, 920.5], [1803.5, 920.5], [1803.5, 919.5], [1804.5, 919.5], [1804.5, 918.5], [1805.5, 918.5], [1805.5, 917.5], [1806.5, 917.5], [1806.5, 916.5], [1807.5, 916.5], [1807.5, 912.5]]}, {"id": "twle81", "submitted_by": "2005HondaCivic245", "name": "Dale Earnhardt", "description": "Dale Earnhardt's #3, which was the number of the car he drove during his NASCAR career. He won NASCAR Championships, tied for the most with Richard Petty and Jimmie Johnson. He died during an accident on the final lap of the 2001 Daytona 500", "website": "", "subreddit": "/r/NASCAR", "center": [775.5, 1527.5], "path": [[754.5, 1512.5], [754.5, 1541.5], [797.5, 1541.5], [799.5, 1519.5], [788.5, 1519.5], [781.5, 1512.5]]}, -{"id": "twle38", "submitted_by": "Coolbatguy", "name": "ULTRAKILL", "description": "ULTRAKILL is a fast-paced ultraviolent retro FPS combining the skill-based style scoring from character action games with unadulterated carnage inspired by the best shooters of the '90s.", "website": "devilmayquake.com", "subreddit": "/r/ultrakill", "center": [1360.5, 1808.5], "path": [[1346.5, 1797.5], [1346.5, 1818.5], [1353.5, 1818.5], [1353.5, 1820.5], [1365.5, 1820.5], [1365.5, 1819.5], [1374.5, 1819.5], [1374.5, 1797.5]]}, +{"id": "twle38", "submitted_by": "Coolbatguy", "name": "ULTRAKILL", "description": "ULTRAKILL is a fast-paced ultraviolent retro FPS combining the skill-based style scoring from character action games with unadulterated carnage inspired by the best shooters of the '90s.", "website": "https://devilmayquake.com", "subreddit": "/r/ultrakill", "center": [1360.5, 1808.5], "path": [[1346.5, 1797.5], [1346.5, 1818.5], [1353.5, 1818.5], [1353.5, 1820.5], [1365.5, 1820.5], [1365.5, 1819.5], [1374.5, 1819.5], [1374.5, 1797.5]]}, {"id": "twle0e", "submitted_by": "Spikey_Bits", "name": "Be Gay, Do Witchcraft", "description": "See title", "website": "https://reddit.com/r/theowlhouse https://reddit.com/amphibia https://reddit.com/r/princessesofpower https://reddit.com/ghostandmollymcgee", "subreddit": "/r/theowlhouse, /r/amphibia, /r/princessesofpower, /r/ghostandmollymcgee", "center": [490.5, 923.5], "path": [[454.5, 906.5], [453.5, 935.5], [488.5, 935.5], [488.5, 941.5], [507.5, 941.5], [507.5, 959.5], [544.5, 959.5], [544.5, 954.5], [514.5, 954.5], [514.5, 953.5], [513.5, 953.5], [512.5, 890.5], [500.5, 890.5], [500.5, 904.5], [499.5, 904.5], [499.5, 905.5], [453.5, 905.5], [453.5, 929.5]]}, {"id": "twldf6", "submitted_by": "MemoryAggravating694", "name": "Futurama", "description": "Five of the main characters of futurama, from left to right: Dr. Zoidberg, Fry, Leela, Nibbler, Bender, Farnsworth", "website": "", "subreddit": "/r/futurama", "center": [1248.5, 1968.5], "path": [[1201.5, 1971.5], [1201.5, 1954.5], [1285.5, 1955.5], [1284.5, 1986.5], [1237.5, 1986.5], [1238.5, 1973.5], [1201.5, 1972.5]]}, -{"id": "twldb4", "submitted_by": "therealnumberone", "name": "Shiny Chatot", "description": "The 441st Pokemon, Chatot is based off of a musical note/singing birds. This one is in the rarer 'shiny' coloration", "website": "https://www.serebii.net/pokedex-sm/441.shtml", "subreddit": "/r/pokemon", "center": [0.5, 0.5], "path": []}, -{"id": "twld3g", "submitted_by": "MugaSofer", "name": "Grodan Boll", "description": "A Swedish cartoon character and popular meme on /r/Sweden. nnThe crown is a reference to the Turtle Queen, an infectious meme from urban fantasy series Pale.", "website": "https://www.reddit.com/r/OutOfTheLoop/comments/7zokxc/okay_i_give_up_whats_with_the_det_\u00e4r_fredag_mina/", "subreddit": "/r/Sweden", "center": [636.5, 100.5], "path": [[618.5, 117.5], [622.5, 102.5], [712.5, 103.5], [711.5, 93.5], [616.5, 91.5], [612.5, 83.5], [604.5, 83.5], [591.5, 99.5], [589.5, 102.5], [594.5, 112.5], [591.5, 118.5], [594.5, 121.5], [614.5, 120.5]]}, +{"id": "twld3g", "submitted_by": "MugaSofer", "name": "Grodan Boll", "description": "A Swedish cartoon character and popular meme on /r/Sweden.\n\nThe crown is a reference to the Turtle Queen, an infectious meme from urban fantasy series Pale.", "website": "https://www.reddit.com/r/OutOfTheLoop/comments/7zokxc/okay_i_give_up_whats_with_the_det_\u00e4r_fredag_mina/", "subreddit": "/r/Sweden", "center": [636.5, 100.5], "path": [[618.5, 117.5], [622.5, 102.5], [712.5, 103.5], [711.5, 93.5], [616.5, 91.5], [612.5, 83.5], [604.5, 83.5], [591.5, 99.5], [589.5, 102.5], [594.5, 112.5], [591.5, 118.5], [594.5, 121.5], [614.5, 120.5]]}, {"id": "twld2e", "submitted_by": "bubbasplat", "name": "LeChuck", "description": "Evil undead pirate captain from the point & click puzzle adventure series Monkey Island", "website": "https://returntomonkeyisland.com", "subreddit": "/r/MonkeyIsland", "center": [585.5, 1201.5], "path": [[579.5, 1209.5], [579.5, 1194.5], [592.5, 1194.5], [590.5, 1209.5], [579.5, 1209.5]]}, {"id": "twlcx8", "submitted_by": "carlyc999", "name": "A2C", "description": "A community for anyone going through the college application process. Whether you need resources to help you through your college admissions journey or just a place to destress, we\u2019re here for you!", "website": "https://applyingto.college", "subreddit": "/r/ApplyingToCollege", "center": [354.5, 1571.5], "path": [[343.5, 1564.5], [365.5, 1564.5], [365.5, 1571.5], [364.5, 1579.5], [344.5, 1579.5], [344.5, 1565.5], [344.5, 1564.5], [345.5, 1565.5], [345.5, 1565.5]]}, {"id": "twlcoj", "submitted_by": "FancySkunk", "name": "TWRP Logo", "description": "TWRP is a Canadian rock band originally from Halifax, Nova Scotia. Their lineup consists of keyboardist and vocalist Doctor Sung, guitarist Lord Phobos, bassist Commander Meouch, and drummer Havve Hogan.", "website": "https://linktr.ee/twrpband", "subreddit": "/r/TWRP", "center": [493.5, 418.5], "path": [[481.5, 414.5], [505.5, 414.5], [505.5, 422.5], [481.5, 422.5], [481.5, 414.5]]}, @@ -1033,31 +958,30 @@ {"id": "twlcmm", "submitted_by": "AAAAAARRRRRR", "name": "The Stormight Archive", "description": "The Stormlight Archive is a series of epic fantasy novels written by American author Brandon Sanderson. Unlike some other authors Sanderson actually writes books activity. Also Moash loves his grandparents a lot", "website": "", "subreddit": "/r/Stormlight_Archive", "center": [1686.5, 1396.5], "path": [[1689.5, 1414.5], [1689.5, 1418.5], [1686.5, 1421.5], [1684.5, 1418.5], [1684.5, 1414.5], [1678.5, 1412.5], [1674.5, 1409.5], [1670.5, 1405.5], [1668.5, 1400.5], [1668.5, 1391.5], [1670.5, 1385.5], [1675.5, 1381.5], [1681.5, 1377.5], [1685.5, 1377.5], [1685.5, 1371.5], [1686.5, 1370.5], [1687.5, 1371.5], [1688.5, 1377.5], [1694.5, 1378.5], [1698.5, 1382.5], [1702.5, 1386.5], [1704.5, 1390.5], [1705.5, 1394.5], [1705.5, 1399.5], [1702.5, 1404.5], [1698.5, 1409.5], [1693.5, 1413.5], [1689.5, 1413.5]]}, {"id": "twlcgh", "submitted_by": "littleMAHER1", "name": "Hey All Scott Here", "description": "A mural made by the fine folks over at r/scottthewoznBetween them needing to switch locations 3 times to XQC destroying it causing Luidwig to help rebuild it, this little picture's life was pretty rough but dangit did it pull through creating a pretty good picture that Hey Alls", "website": "https://www.youtube.com/channel/UC4rqhyiTs7XyuODcECvuiiQ", "subreddit": "/r//scottthewoz", "center": [1576.5, 230.5], "path": [[1551.5, 213.5], [1602.5, 213.5], [1602.5, 248.5], [1551.5, 248.5], [1551.5, 212.5], [1601.5, 212.5]]}, {"id": "twlcfj", "submitted_by": "CharlieNmyT", "name": "Risu Nnnut", "description": "Hololive Indonesia 1st Generation Vtuber Ayunda Risu as a Walnut.", "website": "https://www.youtube.com/channel/UCOyYb1c43VlX9rc_lT6NKQw", "subreddit": "/r/hololive", "center": [1342.5, 1070.5], "path": [[1332.5, 1062.5], [1332.5, 1079.5], [1334.5, 1081.5], [1336.5, 1082.5], [1345.5, 1083.5], [1350.5, 1082.5], [1352.5, 1076.5], [1352.5, 1069.5], [1355.5, 1067.5], [1352.5, 1061.5], [1347.5, 1059.5], [1344.5, 1057.5], [1338.5, 1057.5], [1336.5, 1058.5]]}, -{"id": "twlcbj", "submitted_by": "insert553", "name": "Mindustry", "description": "A sandbox tower defense game. The block shown here is the Core.n", "website": "mindustrygame.github.io", "subreddit": "/r/mindustry", "center": [864.5, 566.5], "path": [[850.5, 552.5], [850.5, 579.5], [877.5, 579.5], [877.5, 552.5]]}, +{"id": "twlcbj", "submitted_by": "insert553", "name": "Mindustry", "description": "A sandbox tower defense game. The block shown here is the Core.n", "website": "https://mindustrygame.github.io", "subreddit": "/r/mindustry", "center": [864.5, 566.5], "path": [[850.5, 552.5], [850.5, 579.5], [877.5, 579.5], [877.5, 552.5]]}, {"id": "twlc0g", "submitted_by": "KirbeTheEngineer", "name": "Python", "description": "Python is a programming language, invented on 1991.", "website": "", "subreddit": "", "center": [1270.5, 889.5], "path": [[1260.5, 884.5], [1265.5, 884.5], [1265.5, 879.5], [1274.5, 879.5], [1274.5, 884.5], [1279.5, 884.5], [1279.5, 894.5], [1274.5, 894.5], [1274.5, 899.5], [1265.5, 899.5], [1265.5, 894.5], [1260.5, 894.5]]}, {"id": "twlbqh", "submitted_by": "FairyRave", "name": "Kinoko Kingdom Flag", "description": "Kinoko Kingdom is a nation formed by Karl Jacobs on the Dream SMP.", "website": "https://dreamteam.fandom.com/wiki/Kinoko_Kingdom", "subreddit": "/r/dreamsmp", "center": [142.5, 153.5], "path": [[136.5, 147.5], [136.5, 147.5], [136.5, 158.5], [147.5, 158.5], [147.5, 147.5], [136.5, 147.5]]}, {"id": "twlbpn", "submitted_by": "SilentJarl7008", "name": "Ethoslab", "description": "Well-known Minecraft Youtuber. Known mostly for his complex redstone contraptions", "website": "https://www.youtube.com/channel/UCFKDEp9si4RmHFWJW1vYsMA", "subreddit": "/r/ethoslab", "center": [246.5, 290.5], "path": [[242.5, 287.5], [242.5, 293.5], [249.5, 293.5], [249.5, 287.5], [242.5, 287.5]]}, {"id": "twlb2b", "submitted_by": "Temmle_IsAwesome", "name": "Garfield", "description": "The fat, orange, lazy, monday-hating, hungry cat, in all his r/place glory! Excuse his ears being pink, please.", "website": "https://www.garfield.com/", "subreddit": "/r/garfield", "center": [1763.5, 938.5], "path": [[1763.5, 929.5], [1767.5, 928.5], [1770.5, 932.5], [1770.5, 933.5], [1773.5, 937.5], [1773.5, 941.5], [1769.5, 947.5], [1758.5, 947.5], [1755.5, 943.5], [1754.5, 935.5], [1756.5, 932.5], [1760.5, 928.5], [1763.5, 930.5]]}, -{"id": "twlau5", "submitted_by": "RenegadePenguino", "name": "Colossal Dreadmaw", "description": "A meme cards in the trading card game Magic the Gathering", "website": "https://gatherer.wizards.com/Pages/Card/Details.aspx?multiverseid=485499", "subreddit": "/r/MTG", "center": [1703.5, 481.5], "path": [[1690.5, 466.5], [1690.5, 487.5], [1685.5, 487.5], [1685.5, 495.5], [1718.5, 495.5], [1718.5, 475.5], [1714.5, 474.5], [1714.5, 466.5], [1690.5, 466.5]]}, +{"id": "twlau5", "submitted_by": "mweepinc", "name": "Colossal Dreadmaw", "description": "A heavily memed card from the trading card game Magic: The Gathering, favored by the r/magicthecirclejerking community", "website": "https://scryfall.com/card/xln/180/colossal-dreadmaw", "subreddit": "/r/magicthecirclejerking", "center": [1703.5, 481.5], "path": [[1690.5, 466.5], [1690.5, 487.5], [1685.5, 487.5], [1685.5, 495.5], [1718.5, 495.5], [1718.5, 475.5], [1714.5, 474.5], [1714.5, 466.5], [1690.5, 466.5]]}, {"id": "twlaty", "submitted_by": "Ericbazinga", "name": "Splitgate", "description": "An indie competitive first-person-shooter game that's essentially the result of throwing Halo and Portal into a blender. Free to play, available on PlayStation, Xbox, Windows, Mac, and Linux.", "website": "https://www.splitgate.com/", "subreddit": "/r/splitgate", "center": [1447.5, 590.5], "path": [[1422.5, 574.5], [1440.5, 574.5], [1440.5, 587.5], [1482.5, 587.5], [1482.5, 599.5], [1422.5, 599.5], [1422.5, 574.5]]}, {"id": "twla6v", "submitted_by": "OnlyManOnMars", "name": "100 Gecs", "description": "100 Gecs is a Hyperpop group consisting of Laura Les and Dylan Brady, they are often considered to be one of the most important groups in the genre", "website": "https://www.100gecs.com/", "subreddit": "/r/100gecs", "center": [494.5, 427.5], "path": [[481.5, 423.5], [507.5, 423.5], [507.5, 430.5], [481.5, 430.5]]}, {"id": "twl9wx", "submitted_by": "darylpuppy", "name": "Wheel of time", "description": "", "website": "", "subreddit": "", "center": [1646.5, 1380.5], "path": [[1630.5, 1366.5], [1630.5, 1366.5], [1620.5, 1379.5], [1620.5, 1379.5], [1627.5, 1393.5], [1635.5, 1394.5], [1646.5, 1386.5], [1659.5, 1393.5], [1662.5, 1393.5], [1670.5, 1385.5], [1671.5, 1375.5], [1662.5, 1367.5], [1654.5, 1367.5], [1646.5, 1375.5], [1639.5, 1367.5]]}, {"id": "twl9rb", "submitted_by": "KirbeTheEngineer", "name": "Bill Cipher", "description": "Bill Cipher is a character from the show Gravity Falls. (aired 2012-2016)", "website": "", "subreddit": "", "center": [1180.5, 911.5], "path": [[1148.5, 926.5], [1213.5, 926.5], [1194.5, 907.5], [1198.5, 901.5], [1198.5, 897.5], [1192.5, 897.5], [1192.5, 902.5], [1190.5, 902.5], [1183.5, 895.5], [1187.5, 895.5], [1187.5, 891.5], [1184.5, 891.5], [1184.5, 882.5], [1176.5, 882.5], [1176.5, 891.5], [1173.5, 891.5], [1173.5, 895.5], [1178.5, 895.5], [1169.5, 904.5], [1169.5, 897.5], [1162.5, 897.5], [1162.5, 902.5], [1166.5, 906.5]]}, {"id": "twl9q1", "submitted_by": "cannotcomputename", "name": "Animal Crossing Leaf", "description": "This is the Leaf along with other items such as the bell bag, pitfall seed, fossil, and gyroid, which were all from the Animal Crossing video game series by Nintendo.", "website": "", "subreddit": "/r/AnimalCrossing", "center": [1421.5, 885.5], "path": [[1403.5, 869.5], [1412.5, 868.5], [1413.5, 863.5], [1429.5, 862.5], [1429.5, 869.5], [1437.5, 869.5], [1441.5, 904.5], [1403.5, 902.5]]}, {"id": "twl9p4", "submitted_by": "CharlieNmyT", "name": "Rushia Butterfly", "description": "Butterfly representing Hololive Japan 3rd Generation Vtuber Uruha Rushia.", "website": "https://virtualyoutuber.fandom.com/wiki/Uruha_Rushia", "subreddit": "/r/Hololive", "center": [252.5, 791.5], "path": [[247.5, 792.5], [252.5, 796.5], [254.5, 795.5], [259.5, 790.5], [259.5, 788.5], [254.5, 791.5], [252.5, 788.5], [252.5, 785.5], [249.5, 785.5]]}, -{"id": "twl9m7", "submitted_by": "morningstarunicorn", "name": "wubby7", "description": "an emote from the twitch streamer PaymoneyWubby", "website": "https://www.twitch.tv/paymoneywubby", "subreddit": "/r/PaymoneyWubby", "center": [406.5, 1496.5], "path": [[442.5, 1460.5], [442.5, 1532.5], [417.5, 1532.5], [417.5, 1531.5], [416.5, 1530.5], [414.5, 1530.5], [413.5, 1531.5], [412.5, 1529.5], [410.5, 1529.5], [409.5, 1530.5], [408.5, 1530.5], [402.5, 1530.5], [401.5, 1531.5], [401.5, 1532.5], [370.5, 1532.5], [370.5, 1472.5], [373.5, 1468.5], [373.5, 1466.5], [371.5, 1466.5], [370.5, 1466.5], [370.5, 1460.5], [413.5, 1460.5], [417.5, 1464.5], [422.5, 1460.5]]}, {"id": "twl9gv", "submitted_by": "Prior_Gate_9909", "name": "The Indianapolis Colts", "description": "(American Football)nThe Colts are an NFL team that plays for Indianapolis, Indiana. Pictured is the teams horseshoe logo, as well as the team's name.nn", "website": "https://www.colts.com", "subreddit": "/r/Colts", "center": [1968.5, 83.5], "path": [[1955.5, 74.5], [1955.5, 97.5], [1969.5, 97.5], [1969.5, 79.5], [1997.5, 79.5], [1997.5, 74.5]]}, -{"id": "twl9fs", "submitted_by": "Phosuletec-Shen", "name": "Retrora pepeL", "description": "A recreation of a twitch emote representing twitch streamer Retrora.", "website": "twitch.tv/retrora", "subreddit": "/r/retrora", "center": [436.5, 1442.5], "path": [[426.5, 1437.5], [426.5, 1446.5], [448.5, 1446.5], [448.5, 1442.5], [445.5, 1439.5], [445.5, 1437.5], [427.5, 1437.5]]}, +{"id": "twl9fs", "submitted_by": "Phosuletec-Shen", "name": "Retrora pepeL", "description": "A recreation of a twitch emote representing twitch streamer Retrora.", "website": "https://twitch.tv/retrora", "subreddit": "/r/retrora", "center": [436.5, 1442.5], "path": [[426.5, 1437.5], [426.5, 1446.5], [448.5, 1446.5], [448.5, 1442.5], [445.5, 1439.5], [445.5, 1437.5], [427.5, 1437.5]]}, {"id": "twl99l", "submitted_by": "MemoryAggravating694", "name": "Talking heads section", "description": "Different Talking heads representation. From top down, The most iconic logo for the group, used on the album True Stories (86), The album Speaking in Tongues on the left (83), The album Remain in Light (80), and a picture of David Byrne in his iconic large suit", "website": "", "subreddit": "/r/talkingheads", "center": [543.5, 1385.5], "path": [[531.5, 1367.5], [530.5, 1408.5], [545.5, 1408.5], [545.5, 1393.5], [559.5, 1392.5], [559.5, 1367.5]]}, {"id": "twl909", "submitted_by": "cpthawking", "name": "8-bit Saber", "description": "Mini saber pixel art made by r/Grandorder alongside gudako", "website": "", "subreddit": "/r/Grandorder", "center": [1426.5, 385.5], "path": [[1423.5, 382.5], [1423.5, 381.5], [1425.5, 381.5], [1425.5, 382.5], [1428.5, 382.5], [1427.5, 384.5], [1429.5, 383.5], [1429.5, 384.5], [1430.5, 384.5], [1430.5, 385.5], [1429.5, 386.5], [1429.5, 387.5], [1428.5, 387.5], [1428.5, 388.5], [1426.5, 388.5], [1425.5, 388.5], [1424.5, 388.5], [1425.5, 389.5], [1426.5, 389.5], [1423.5, 387.5], [1423.5, 385.5], [1423.5, 383.5], [1427.5, 385.5]]}, -{"id": "twl8uf", "submitted_by": "Own_Structure_2163", "name": "Minecraft Speedrunning (MCSR)", "description": "The Minecraft speedrunning community revolves around completing various aspects of the titular video game as fast as possible. Important elements of a speedrun, as well as the current world record holders, are pictured.", "website": "https://www.speedrun.com/mc", "subreddit": "", "center": [1451.5, 1456.5], "path": [ [ 1436.5, 1436.5 ], [ 1498.5, 1436.5 ], [ 1499.5, 1497.5 ], [ 1490.5, 1497.5 ], [ 1490.5, 1472.5 ], [ 1436.5, 1472.5 ], [ 1436.5, 1436.5 ] ] }, +{"id": "twl8uf", "submitted_by": "Own_Structure_2163", "name": "Minecraft Speedrunning (MCSR)", "description": "The Minecraft speedrunning community revolves around completing various aspects of the titular video game as fast as possible. Important elements of a speedrun, as well as the current world record holders, are pictured.", "website": "https://www.speedrun.com/mc", "subreddit": "", "center": [1451.5, 1456.5], "path": [[1436.5, 1436.5], [1498.5, 1436.5], [1499.5, 1497.5], [1490.5, 1497.5], [1490.5, 1472.5], [1436.5, 1472.5], [1436.5, 1436.5]]}, {"id": "twl8o1", "submitted_by": "herobrian328", "name": "Boston University Banner", "description": "The banner representing Boston University, featuring the iconic Citgo sign with a sunset background and Rhett the Terrier mascot", "website": "https://www.bu.edu", "subreddit": "/r/BostonU", "center": [1579.5, 345.5], "path": [[1552.5, 336.5], [1552.5, 353.5], [1606.5, 353.5], [1606.5, 336.5], [1591.5, 336.5]]}, {"id": "twl8le", "submitted_by": "NerdKnight66", "name": "Celeste", "description": "Celeste is a videogame made in 2018 by EXOK studios. The artwork shows the game's logo", "website": "https://celestegame.com", "subreddit": "/r/celestegame", "center": [1416.5, 1300.5], "path": [[1387.5, 1279.5], [1446.5, 1279.5], [1445.5, 1280.5], [1444.5, 1322.5], [1389.5, 1322.5], [1389.5, 1311.5], [1388.5, 1311.5], [1388.5, 1306.5], [1387.5, 1306.5], [1387.5, 1279.5]]}, {"id": "twl8ew", "submitted_by": "Flamberge3000", "name": "Gawr Gura", "description": "Gawr Gura is a talent of the VTuber agency Hololive. She has the most subscribers out of any VTuber in YouTube.", "website": "https://www.youtube.com/channel/UCoSrY_IQQVpmIRZ9Xf-y93g", "subreddit": "/r/GawrGura", "center": [247.5, 769.5], "path": [[227.5, 780.5], [266.5, 780.5], [266.5, 775.5], [260.5, 774.5], [265.5, 769.5], [253.5, 755.5], [246.5, 753.5], [240.5, 757.5], [230.5, 769.5], [233.5, 770.5], [234.5, 775.5], [227.5, 775.5], [227.5, 778.5]]}, {"id": "twl879", "submitted_by": "OnlyManOnMars", "name": "They Might Be Giants", "description": "The initials of legendary alternative rock group They Might Be Giants", "website": "https://www.theymightbegiants.com/", "subreddit": "/r/tmbg", "center": [1835.5, 642.5], "path": [[1825.5, 639.5], [1844.5, 639.5], [1843.5, 645.5], [1826.5, 645.5]]}, {"id": "twl873", "submitted_by": "KirbeTheEngineer", "name": "The Last Supper", "description": "The Last Supper is a High Renaissance painting by Leonardo Da Vinci on circa 1495-1498 AD.", "website": "", "subreddit": "", "center": [959.5, 1096.5], "path": [[902.5, 1073.5], [1022.5, 1073.5], [1022.5, 1100.5], [1007.5, 1109.5], [1005.5, 1112.5], [1005.5, 1115.5], [1005.5, 1121.5], [902.5, 1121.5]]}, {"id": "twl86e", "submitted_by": "Bro3256", "name": "wavetro", "description": "Teddy and Ben, two of the most prominent characters of wavetro's former 3D animation career", "website": "https://wavetro.net/", "subreddit": "/r/wavetro", "center": [1056.5, 406.5], "path": [[1050.5, 407.5], [1050.5, 402.5], [1051.5, 401.5], [1058.5, 401.5], [1059.5, 402.5], [1060.5, 401.5], [1061.5, 401.5], [1062.5, 402.5], [1062.5, 411.5], [1061.5, 412.5], [1060.5, 413.5], [1055.5, 413.5], [1054.5, 412.5], [1053.5, 411.5], [1053.5, 409.5], [1052.5, 408.5], [1051.5, 408.5]]}, -{"id": "twl86b", "submitted_by": "Leggo15", "name": "Osteh\u00f8vel", "description": "The Mighty Osteh\u00f8vel a symbol of Norwegian Innovation!", "website": "", "subreddit": "", "center": [446.5, 56.5], "path": [[433.5, 68.5], [433.5, 67.5], [444.5, 56.5], [444.5, 55.5], [442.5, 53.5], [442.5, 53.5], [442.5, 52.5], [444.5, 50.5], [445.5, 50.5], [448.5, 47.5], [451.5, 47.5], [455.5, 51.5], [455.5, 54.5], [452.5, 57.5], [452.5, 58.5], [450.5, 60.5], [449.5, 60.5], [447.5, 58.5], [446.5, 58.5], [435.5, 69.5], [434.5, 69.5], [433.5, 68.5]]}, +{"id": "twl86b", "submitted_by": "Leggo15", "name": "Osteh\u00f8vel", "description": "The mighty Osteh\u00f8vel, a cheese slicer and a symbol of Norwegian innovation!", "website": "https://en.wikipedia.org/wiki/Cheese_knife#Cheese_slicer", "subreddit": "/r/place_nordicunion", "center": [446.5, 56.5], "path": [[433.5, 68.5], [433.5, 67.5], [444.5, 56.5], [444.5, 55.5], [442.5, 53.5], [442.5, 53.5], [442.5, 52.5], [444.5, 50.5], [445.5, 50.5], [448.5, 47.5], [451.5, 47.5], [455.5, 51.5], [455.5, 54.5], [452.5, 57.5], [452.5, 58.5], [450.5, 60.5], [449.5, 60.5], [447.5, 58.5], [446.5, 58.5], [435.5, 69.5], [434.5, 69.5], [433.5, 68.5]]}, {"id": "twl85l", "submitted_by": "AAAAAARRRRRR", "name": "Mistborn", "description": "Mistborn is a series of epic fantasy novels written by American author Brandon Sanderson and published by Tor Books. The first trilogy, published between 2006 and 2008, consists of The Final Empire, The Well of Ascension, and The Hero of Ages.", "website": "", "subreddit": "/r/mistborn", "center": [1647.5, 1402.5], "path": [[1662.5, 1393.5], [1667.5, 1398.5], [1666.5, 1405.5], [1663.5, 1410.5], [1661.5, 1411.5], [1654.5, 1413.5], [1649.5, 1414.5], [1644.5, 1414.5], [1638.5, 1413.5], [1635.5, 1410.5], [1630.5, 1411.5], [1626.5, 1404.5], [1626.5, 1398.5], [1631.5, 1394.5], [1639.5, 1391.5], [1646.5, 1390.5], [1655.5, 1391.5]]}, {"id": "twl80u", "submitted_by": "MAGNAPlNNA", "name": "Subnautica", "description": "The Peeper, a fauna species and mascot from the Unknown Worlds game, Subnautica.", "website": "", "subreddit": "/r/subnautica", "center": [1964.5, 412.5], "path": [[1950.5, 400.5], [1973.5, 400.5], [1973.5, 416.5], [1987.5, 416.5], [1988.5, 416.5], [1988.5, 422.5], [1950.5, 422.5], [1950.5, 400.5]]}, {"id": "twl7yu", "submitted_by": "FrothiestWord", "name": "Neo of Matrix", "description": "Art of character Neo from The Matrix freezing bullets in place.", "website": "", "subreddit": "", "center": [785.5, 1380.5], "path": [[796.5, 1368.5], [775.5, 1368.5], [775.5, 1397.5], [781.5, 1397.5], [781.5, 1393.5], [784.5, 1390.5], [793.5, 1390.5], [796.5, 1393.5]]}, @@ -1067,7 +991,7 @@ {"id": "twl7bo", "submitted_by": "DubyaDude", "name": "VRCat", "description": "VRCat, the mascot for VRChat, introduced from the VRChat+ subscription service introduced to give a monetization incentive to the platform. The cat was given a limited run plush and is a banner reward in game for early supporters.", "website": "https://hello.vrchat.com/vrchatplus", "subreddit": "/r/vrchat", "center": [1604.5, 1682.5], "path": [[1606.5, 1661.5], [1613.5, 1656.5], [1615.5, 1664.5], [1624.5, 1669.5], [1618.5, 1689.5], [1620.5, 1693.5], [1617.5, 1693.5], [1621.5, 1703.5], [1619.5, 1707.5], [1606.5, 1707.5], [1605.5, 1707.5], [1596.5, 1706.5], [1596.5, 1705.5], [1589.5, 1704.5], [1589.5, 1701.5], [1594.5, 1697.5], [1595.5, 1686.5], [1593.5, 1686.5], [1590.5, 1688.5], [1587.5, 1688.5], [1582.5, 1688.5], [1584.5, 1684.5], [1584.5, 1679.5], [1591.5, 1661.5], [1595.5, 1661.5], [1600.5, 1655.5], [1602.5, 1662.5]]}, {"id": "twl74x", "submitted_by": "Zaquking1", "name": "Megumin", "description": "Crimson Demon Megumin form Konosuba with Aqua, Darkness, Kazuma, Wiz, Chomusuke and a weird stranger.", "website": "", "subreddit": "/r/pMegu", "center": [1680.5, 182.5], "path": [[1660.5, 153.5], [1660.5, 151.5], [1660.5, 151.5], [1660.5, 151.5], [1660.5, 212.5], [1707.5, 212.5], [1707.5, 207.5], [1707.5, 206.5], [1698.5, 206.5], [1698.5, 151.5], [1660.5, 151.5], [1660.5, 151.5]]}, {"id": "twl6ow", "submitted_by": "Zaquking1", "name": "Megumin", "description": "Crimson Demon Megumin form Konosuba with Aqua, Darkness, Kazuma, Wiz, Chomusuke and a weird stranger.", "website": "", "subreddit": "/r/pMegu", "center": [1680.5, 182.5], "path": [[1660.5, 153.5], [1660.5, 151.5], [1660.5, 151.5], [1660.5, 151.5], [1660.5, 212.5], [1707.5, 212.5], [1707.5, 207.5], [1707.5, 206.5], [1698.5, 206.5], [1698.5, 151.5], [1660.5, 151.5], [1660.5, 151.5]]}, -{"id": "twl6n2", "submitted_by": "Bottomtexting", "name": "\u018eNA", "description": "Turron! Turron! Turron! Turrrrron!", "website": "https://joelgc.com/", "subreddit": "/r/ENA", "center": [1140.5, 400.5], "path": [[1154.5, 385.5], [1154.5, 413.5], [1126.5, 413.5], [1126.5, 412.5], [1125.5, 412.5], [1125.5, 411.5], [1124.5, 411.5], [1124.5, 394.5], [1129.5, 394.5], [1129.5, 393.5], [1130.5, 393.5], [1130.5, 392.5], [1131.5, 392.5], [1131.5, 385.5], [1153.5, 385.5]]}, +{"id": "twl6n2", "submitted_by": "Bottomtexting", "name": "\u018eNA", "description": "Turron! Turron! Turron! Turrrrron! ENA (stylized \u018eNA) is the Pablo Picasso-inspired protagonist of the eponymous animated web series, created by Joel Guerra. The surrealist series is recognizable by an aesthetic comparable to early web animations, inspired by the graphics of computer adventure and PS1 games.", "website": "https://joelgc.com/", "subreddit": "/r/ENA", "center": [1140.5, 400.5], "path": [[1154.5, 385.5], [1154.5, 413.5], [1126.5, 413.5], [1126.5, 412.5], [1125.5, 412.5], [1125.5, 411.5], [1124.5, 411.5], [1124.5, 394.5], [1129.5, 394.5], [1129.5, 393.5], [1130.5, 393.5], [1130.5, 392.5], [1131.5, 392.5], [1131.5, 385.5], [1153.5, 385.5]]}, {"id": "twl6i0", "submitted_by": "ScythePigeon", "name": "Red vs Blue", "description": "A machinima comedy show created by Rooster Teeth. The 19 Represents it's 19th anniversary, which it had on the first day of r/place 20222", "website": "https://roosterteeth.com/", "subreddit": "/r/redvsblue", "center": [461.5, 697.5], "path": [[449.5, 682.5], [472.5, 682.5], [472.5, 712.5], [449.5, 712.5], [449.5, 682.5]]}, {"id": "twl6eu", "submitted_by": "tagthe", "name": "No Love Deep Web", "description": "No Love Deep Web is the second studio album from experimental Hip-Hop group Death Grips released on October 1, 2012. It's notoriously known for having one of the band member's erect penis as it's album cover.", "website": "https://thirdworlds.net/main.html", "subreddit": "/r/deathgrips", "center": [7.5, 773.5], "path": [[0.5, 765.5], [14.5, 765.5], [13.5, 782.5], [0.5, 781.5], [0.5, 781.5]]}, {"id": "twl6aa", "submitted_by": "soweli-Lin", "name": "Che Guevara", "description": "Portrait of Cuban revolutionary Che Guevara.", "website": "", "subreddit": "/r/TheFarLeftSide", "center": [1393.5, 1492.5], "path": [[1385.5, 1497.5], [1400.5, 1497.5], [1400.5, 1486.5], [1385.5, 1486.5]]}, @@ -1076,7 +1000,6 @@ {"id": "twl57d", "submitted_by": "MemoryAggravating694", "name": "Foo Fighters", "description": "The logo of the popular band The Foo Fighters, the logo can be found on majority of their albums. Hawkins refers to Taylor Hawkins, who passed away recently. RIP", "website": "", "subreddit": "/r/foofighters", "center": [1629.5, 985.5], "path": [[1613.5, 970.5], [1644.5, 970.5], [1644.5, 999.5], [1613.5, 999.5]]}, {"id": "twl56v", "submitted_by": "Appw", "name": "Dyson Sphere Program", "description": "The logo of the interplanetary logistics video game Dyson Sphere Program by Youthcat Studio. Additionally, there is a rocket and planet from the game.", "website": "https://store.steampowered.com/app/1366540/Dyson_Sphere_Program/", "subreddit": "/r/Dyson_Sphere_Program", "center": [1498.5, 536.5], "path": [[1489.5, 542.5], [1504.5, 542.5], [1504.5, 533.5], [1508.5, 533.5], [1508.5, 526.5], [1508.5, 528.5], [1500.5, 528.5], [1500.5, 533.5], [1489.5, 533.5]]}, {"id": "twl56a", "submitted_by": "aidend_27", "name": "Red Rising / Portugal Peace Tile", "description": "This tile represents the alliance between the Red Rising and Portugal communities. The red symbol in the middle represents both a heart and the red wolf's head.", "website": "", "subreddit": "/r/redrising, /r/portugal", "center": [917.5, 416.5], "path": [[913.5, 412.5], [913.5, 420.5], [921.5, 420.5], [921.5, 412.5]]}, -{"id": "twl54c", "submitted_by": "Irrational345", "name": "Wheat-chan", "description": "@Wheatzies on instagram's community grain and mascot", "website": "https://www.instagram.com/wheatzies/", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twl50a", "submitted_by": "Prior_Gate_9909", "name": "The Detroit Redwings", "description": "(Professional Ice Hockey)nThe Detroit Red Wings are an NHL team that plays for Detroit, Michigan.nPictured is the teams logo. Also pictured is a Red/Blue Detroit logo made by both Detroit Red Wings and Detroit Lions fans.nn", "website": "https://www.nhl.com/redwings", "subreddit": "/r/DetroitRedWings", "center": [1228.5, 94.5], "path": [[1248.5, 106.5], [1248.5, 83.5], [1195.5, 83.5], [1195.5, 88.5], [1214.5, 88.5], [1214.5, 106.5]]}, {"id": "twl4ze", "submitted_by": "khanacademy03", "name": "Northwestern 'N'", "description": "The logo of Northwestern University. This version is commonly associated with the school's athletic teams.", "website": "https://www.northwestern.edu/", "subreddit": "/r/Northwestern", "center": [1532.5, 758.5], "path": [[1525.5, 748.5], [1525.5, 767.5], [1538.5, 767.5], [1538.5, 748.5], [1538.5, 748.5], [1538.5, 748.5], [1538.5, 748.5], [1538.5, 748.5], [1538.5, 748.5], [1525.5, 748.5]]}, {"id": "twl4qw", "submitted_by": "Harmonmj13", "name": "Dallas from Payday 2", "description": "AAAAAAAAAAAAAAGH! I NEEEEEEEEEEED A MEDIC BAG!!!", "website": "", "subreddit": "", "center": [1097.5, 1533.5], "path": [[1088.5, 1521.5], [1105.5, 1521.5], [1105.5, 1545.5], [1088.5, 1545.5]]}, @@ -1084,9 +1007,8 @@ {"id": "twl46i", "submitted_by": "PluckyDog", "name": "MadeOfStyrofoam", "description": "MadeOfStyrofoam is a self-harm support subreddit, aimed towards creating a safe place and community for those who struggle or have struggled in the past with self-injurious behavior.", "website": "https://www.reddit.com/r/MadeOfStyrofoam/", "subreddit": "/r/MadeOfStyrofoam", "center": [712.5, 421.5], "path": [[706.5, 413.5], [706.5, 428.5], [717.5, 428.5], [717.5, 413.5]]}, {"id": "twl3ve", "submitted_by": "uwu0w00W0", "name": "UNFINISHED sneed's feed n seed", "description": "It's unfinished because you place atlas people didn't update your canvas to show the most recent artwork", "website": "https://www.4chan.org", "subreddit": "/b/, (it's, not, on, reddit)", "center": [1757.5, 882.5], "path": [[1733.5, 870.5], [1780.5, 869.5], [1783.5, 877.5], [1782.5, 888.5], [1776.5, 890.5], [1771.5, 891.5], [1770.5, 897.5], [1733.5, 896.5]]}, {"id": "twl3uz", "submitted_by": "OnlyManOnMars", "name": "Dungeons And Dragons Logo", "description": "The logo for popular tabletop role playing game Dungeons And Dragons.", "website": "https://dnd.wizards.com/", "subreddit": "/r/DnD", "center": [534.5, 1078.5], "path": [[513.5, 1051.5], [540.5, 1051.5], [540.5, 1068.5], [562.5, 1068.5], [561.5, 1100.5], [511.5, 1100.5], [511.5, 1064.5], [513.5, 1063.5]]}, -{"id": "twl3rd", "submitted_by": "Poker7Seven", "name": "Bittersweet Candy Bowl", "description": "Bittersweet Candy Bowl is a comic about love, cats, dogs, and highschool drama!", "website": "bcb.cat", "subreddit": "", "center": [1767.5, 1945.5], "path": [[1760.5, 1938.5], [1760.5, 1952.5], [1774.5, 1952.5], [1774.5, 1938.5], [1760.5, 1938.5]]}, +{"id": "twl3rd", "submitted_by": "Poker7Seven", "name": "Bittersweet Candy Bowl", "description": "Bittersweet Candy Bowl is a comic about love, cats, dogs, and highschool drama!", "website": "https://bcb.cat", "subreddit": "", "center": [1767.5, 1945.5], "path": [[1760.5, 1938.5], [1760.5, 1952.5], [1774.5, 1952.5], [1774.5, 1938.5], [1760.5, 1938.5]]}, {"id": "twl3ko", "submitted_by": "TheForthcomingStorm", "name": ":FubuHappy:", "description": "A happy emoji of the Hololive Vtuber Fubuki. Created by the people of r/OkBuddyHololive.", "website": "https://discord.gg/holotards", "subreddit": "/r/okbuddyhololive", "center": [1348.5, 884.5], "path": [[1332.5, 869.5], [1332.5, 902.5], [1353.5, 902.5], [1353.5, 898.5], [1354.5, 898.5], [1354.5, 893.5], [1356.5, 893.5], [1356.5, 894.5], [1357.5, 894.5], [1357.5, 895.5], [1359.5, 895.5], [1359.5, 896.5], [1365.5, 896.5], [1365.5, 869.5], [1332.5, 869.5]]}, -{"id": "twl3jo", "submitted_by": "therealnumberone", "name": "wubby7 emote", "description": "An emote used by popular twitch streamer paymoneywubby", "website": "https://www.twitch.tv/paymoneywubby", "subreddit": "/r/PaymoneyWubby", "center": [406.5, 1496.5], "path": [[371.5, 1460.5], [442.5, 1460.5], [442.5, 1532.5], [370.5, 1532.5]]}, {"id": "twl3fj", "submitted_by": "raavaatis", "name": "Gacha Alliance", "description": "Several Gacha games that worked together to represent their communities.", "website": "", "subreddit": "", "center": [1662.5, 1758.5], "path": [[1774.5, 1712.5], [1775.5, 1809.5], [1577.5, 1810.5], [1577.5, 1761.5], [1528.5, 1761.5], [1528.5, 1712.5], [1773.5, 1712.5]]}, {"id": "twl2y7", "submitted_by": "Djjjunior", "name": "r/TameImpala", "description": "the reddit community for fans of the Australian psych project Tame Impala", "website": "https://www.reddit.com/r/TameImpala/", "subreddit": "/r/TameImpala", "center": [1576.5, 775.5], "path": [[1553.5, 768.5], [1600.5, 769.5], [1600.5, 782.5], [1553.5, 782.5], [1553.5, 782.5], [1553.5, 768.5]]}, {"id": "twl2vs", "submitted_by": "GoldenToiletGaming", "name": "Good Pizza, Great Pizza Wordmark", "description": "A GPGP wordmark from the Good Pizza, Great Pizza game's community. Originally planned to be a full-on logo, however, after some issues with the place team, a simpler wordmark version was completed by members of the GPGP Discord server.", "website": "https://discord.com/invite/goodpizzagreatpizza", "subreddit": "/r/goodpizzagreatpizza", "center": [1492.5, 1733.5], "path": [[1497.5, 1739.5], [1497.5, 1727.5], [1486.5, 1727.5], [1486.5, 1739.5], [1497.5, 1739.5]]}, @@ -1114,11 +1036,11 @@ {"id": "a478fa", "name": "Meltryllis | FGO", "description": "She is a character from the Gacha Fate/Grand Order.\nMeltryllis is an Alter Ego born from a girl's wish.", "website": "https://discord.gg/grandorder", "subreddit": "/r/GrandOrder", "center": [116.5, 393.5], "path": [[108.5, 386.5], [125.5, 386.5], [125.5, 399.5], [107.5, 399.5]]}, {"id": "8ccdb2", "name": "Astolfo", "description": "A character in the mobile game Fate/Grand Order. \n\nAstolfo is an androgynous-looking boy who is fancily dressed.\n\nThe character was drawn by /r/femboy with some /r/grandorder members providing support when they were being raided.", "website": "https://typemoon.fandom.com/wiki/Astolfo", "subreddit": "/r/femboy, and, /r/grandorder", "center": [271.5, 956.5], "path": [[259.5, 946.5], [259.5, 948.5], [258.5, 949.5], [257.5, 950.5], [258.5, 951.5], [258.5, 955.5], [257.5, 956.5], [256.5, 957.5], [254.5, 958.5], [253.5, 959.5], [253.5, 960.5], [254.5, 961.5], [255.5, 962.5], [254.5, 963.5], [254.5, 965.5], [254.5, 966.5], [285.5, 966.5], [285.5, 957.5], [286.5, 946.5], [260.5, 946.5]]}, {"id": "febcaa", "name": "Abby | Abigail Williams", "description": "A character from the mobile game Fate/Grand Order.\n \nA Foreigner-class Servant and a key character in the events of Salem", "website": "https://typemoon.fandom.com/wiki/Abigail_Williams", "subreddit": "/r/grandorder", "center": [946.5, 1426.5], "path": [[941.5, 1419.5], [941.5, 1433.5], [951.5, 1433.5], [951.5, 1419.5], [941.5, 1419.5]]}, -{"id": "3cd3ce", "name": "Saber | Fate Route", "description": "Saber - a Main character in the Visual Novel Fate/Stay Night\n\nFate Route - One of the main routes in the visual novel where Saber is featured as the main heroine.", "website": "https://typemoon.fandom.com/wiki/Saber", "subreddit": "/r/fatestaynight", "center": [18.5, 1046.5], "path": [[0.5, 1028.5], [35.5, 1028.5], [35.5, 1063.5], [0.5, 1063.5], [0.5, 1028.5]]}, -{"id": "6448c5", "name": "EMIYA", "description": "A main character in the Fate/Stay Night series and also a summonable character in Fate/Grand Order", "website": "https://typemoon.fandom.com/wiki/EMIYA_(Archer)", "subreddit": "/r/grandorder", "center": [8.5, 957.5], "path": [[0.5, 942.5], [16.5, 942.5], [15.5, 972.5], [0.5, 972.5], [0.5, 942.5]]}, -{"id": "twrtjb", "submitted_by": "lmN0tAR0b0t", "name": "sitelen pona", "description": "The logo of toki pona, which was inducted into the Web Serial Alliance as an honourary serial due to their existing alliance with Parahumans.", "website": "https://tokipona.org/", "subreddit": "/r/tokipona", "center": [1779.5, 1282.5], "path": [[1774.5, 1275.5], [1772.5, 1282.5], [1772.5, 1288.5], [1775.5, 1291.5], [1776.5, 1291.5], [1777.5, 1292.5], [1781.5, 1292.5], [1782.5, 1291.5], [1783.5, 1291.5], [1785.5, 1289.5], [1786.5, 1288.5], [1786.5, 1282.5], [1785.5, 1281.5], [1785.5, 1273.5], [1779.5, 1273.5], [1775.5, 1274.5]]}, +{"id": "3cd3ce", "submitted_by": "enshael", "name": "Saber | Fate Route", "description": "Saber - a Main character in the Visual Novel Fate/Stay Night\n\nFate Route - One of the main routes in the visual novel where Saber is featured as the main heroine.", "website": "https://typemoon.fandom.com/wiki/Artoria_Pendragon_(Saber)", "subreddit": "/r/fatestaynight", "center": [17.5, 1046.5], "path": [[0.5, 1029.5], [34.5, 1029.5], [34.5, 1062.5], [0.5, 1062.5], [0.5, 1029.5]]}, +{"id": "6448c5", "name": "Chibi Dante", "description": "Protagonist of the Devil May Cry series, Dante the legendary Devil Hunter.", "website": "https://devilmaycry.fandom.com/wiki/Dante", "subreddit": "/r/DevilMayCry", "center": [8.5, 957.5], "path": [[0.5, 942.5], [16.5, 942.5], [15.5, 972.5], [0.5, 972.5], [0.5, 942.5]]}, +{"id": "twrtjb", "submitted_by": "lmN0tAR0b0t", "name": "sitelen pona", "description": "The logo of Toki Pona, which was inducted into the Web Serial Alliance as an honourary serial due to their existing alliance with Parahumans.", "website": "https://tokipona.org/", "subreddit": "/r/tokipona", "center": [1779.5, 1282.5], "path": [[1774.5, 1275.5], [1772.5, 1282.5], [1772.5, 1288.5], [1775.5, 1291.5], [1776.5, 1291.5], [1777.5, 1292.5], [1781.5, 1292.5], [1782.5, 1291.5], [1783.5, 1291.5], [1785.5, 1289.5], [1786.5, 1288.5], [1786.5, 1282.5], [1785.5, 1281.5], [1785.5, 1273.5], [1779.5, 1273.5], [1775.5, 1274.5]]}, {"id": "twrtgk", "submitted_by": "AwayNefariousness442", "name": "France vs Spain", "description": "Spanish people and Deepwoken taking over a French flag created by twitch streamer JOYCA", "website": "", "subreddit": "", "center": [387.5, 1345.5], "path": [[376.5, 1340.5], [376.5, 1349.5], [398.5, 1349.5], [398.5, 1340.5], [376.5, 1340.5]]}, -{"id": "twrtfu", "submitted_by": "GLUE_COLLUSION", "name": "GeoGuessr pin", "description": "Another pin from the game GeoGuessr. This artwork was actually fully restored before the whiteout, this screenshot is just not recent enough.", "website": "geoguessr.com", "subreddit": "/r/geoguessr", "center": [1493.5, 480.5], "path": [[1486.5, 474.5], [1486.5, 486.5], [1500.5, 486.5], [1500.5, 474.5]]}, +{"id": "twrtfu", "submitted_by": "GLUE_COLLUSION", "name": "GeoGuessr pin", "description": "Another pin from the game GeoGuessr. This artwork was actually fully restored before the whiteout, this screenshot is just not recent enough.", "website": "https://geoguessr.com", "subreddit": "/r/geoguessr", "center": [1493.5, 480.5], "path": [[1486.5, 474.5], [1486.5, 486.5], [1500.5, 486.5], [1500.5, 474.5]]}, {"id": "twrtec", "submitted_by": "_hhhnnnggg_", "name": "Kishirika Kishirisu", "description": "A character from the novel/anime series Mushoku Tensei", "website": "", "subreddit": "/r/mushokutensei", "center": [1739.5, 220.5], "path": [[1731.5, 212.5], [1747.5, 212.5], [1747.5, 228.5], [1731.5, 228.5], [1731.5, 212.5]]}, {"id": "twrsum", "submitted_by": "IceDragonus23", "name": "r/ShibbySays Spiral", "description": "A large spiral created by r/ShibbySays, a subreddit dedicated to an ASMR Hypnosis content creator. One of a few animated art pieces on the canvas, the colors of the spiral changed consistently up until the very end.", "website": "", "subreddit": "/r/ShibbySays", "center": [1228.5, 476.5], "path": [[1199.5, 447.5], [1257.5, 447.5], [1259.5, 506.5], [1198.5, 505.5]]}, {"id": "twrsu0", "submitted_by": "IenjoyPineapplepizza", "name": "Planetside2", "description": "PlanetSide 2 is a free-to-play massively multiplayer online first-person shooter developed by Rogue Planet Games and published by Daybreak Game Company.", "website": "", "subreddit": "/r/planetside", "center": [1881.5, 905.5], "path": [[1869.5, 893.5], [1892.5, 893.5], [1892.5, 916.5], [1869.5, 916.5]]}, @@ -1130,10 +1052,10 @@ {"id": "twrs8s", "submitted_by": "Pakku0087", "name": "Dumsex", "description": "Chibi version of USS Essex from mobile game Azur Lane", "website": "https://azurlane.yo-star.com/#/", "subreddit": "/r/AzureLane", "center": [1607.5, 475.5], "path": [[1591.5, 465.5], [1592.5, 486.5], [1622.5, 486.5], [1621.5, 464.5]]}, {"id": "twrs1a", "submitted_by": "Dartzinho_V", "name": "r/vexillology flag", "description": "The flag/subreddit icon of r/vexillology, a subreddit for those who enjoy learning about flags, the history behind them, and their design characteristics.", "website": "https://www.reddit.com/r/vexillology/", "subreddit": "/r/vexillology", "center": [1341.5, 666.5], "path": [[1333.5, 661.5], [1348.5, 661.5], [1348.5, 671.5], [1333.5, 671.5], [1333.5, 661.5]]}, {"id": "twrs0x", "submitted_by": "SushiSience", "name": "Dirtybiologistan", "description": "Dirtybiologistan, Democratic Republic of Dirtybiology, or more rarely dirty-country, is a micronation created by the French youtuber L\u00e9o Grasset (aka Dirtybiology). The goal of this micronation is explained on a video of his channel how the creation of a country is done.", "website": "https://dirtybiologistan.fandom.com/fr/wiki/Dirtybiologistan", "subreddit": "//r/dirtybiology", "center": [1425.5, 726.5], "path": [[1420.5, 705.5], [1424.5, 705.5], [1431.5, 705.5], [1435.5, 706.5], [1437.5, 708.5], [1440.5, 709.5], [1442.5, 718.5], [1443.5, 738.5], [1442.5, 744.5], [1418.5, 746.5], [1414.5, 742.5], [1413.5, 740.5], [1410.5, 742.5], [1408.5, 740.5], [1407.5, 737.5], [1407.5, 733.5], [1404.5, 732.5], [1403.5, 731.5], [1403.5, 724.5], [1411.5, 723.5], [1411.5, 721.5], [1411.5, 718.5], [1413.5, 714.5], [1414.5, 712.5], [1416.5, 709.5], [1416.5, 706.5], [1417.5, 705.5], [1419.5, 705.5], [1424.5, 705.5]]}, -{"id": "twrrvg", "submitted_by": "Yuanls", "name": "Imperial College London", "description": "The blue emblem of Imperial College London, above which rests the Central Library, the Queen's Tower and Queen's Lawn.", "website": "imperial.ac.uk", "subreddit": "/r/Imperial", "center": [531.5, 1448.5], "path": [[525.5, 1435.5], [525.5, 1447.5], [524.5, 1447.5], [524.5, 1460.5], [537.5, 1460.5], [537.5, 1433.5], [536.5, 1433.5], [535.5, 1432.5], [535.5, 1431.5], [535.5, 1432.5], [534.5, 1433.5], [533.5, 1434.5], [533.5, 1439.5], [529.5, 1439.5], [529.5, 1435.5], [529.5, 1435.5], [529.5, 1435.5], [529.5, 1435.5]]}, +{"id": "twrrvg", "submitted_by": "Yuanls", "name": "Imperial College London", "description": "The blue emblem of Imperial College London, above which rests the Central Library, the Queen's Tower and Queen's Lawn.", "website": "https://imperial.ac.uk", "subreddit": "/r/Imperial", "center": [531.5, 1448.5], "path": [[525.5, 1435.5], [525.5, 1447.5], [524.5, 1447.5], [524.5, 1460.5], [537.5, 1460.5], [537.5, 1433.5], [536.5, 1433.5], [535.5, 1432.5], [535.5, 1431.5], [535.5, 1432.5], [534.5, 1433.5], [533.5, 1434.5], [533.5, 1439.5], [529.5, 1439.5], [529.5, 1435.5], [529.5, 1435.5], [529.5, 1435.5], [529.5, 1435.5]]}, {"id": "twrrav", "submitted_by": "IenjoyPineapplepizza", "name": "NLAW", "description": "The Next generation Light Anti-tank Weapon (NLAW). Lightweight shoulder fired anti tank missile launcher.", "website": "", "subreddit": "/r/noncredibledefense, /r/neoliberal", "center": [837.5, 134.5], "path": [[829.5, 131.5], [845.5, 131.5], [845.5, 136.5], [829.5, 136.5]]}, -{"id": "twrr46", "submitted_by": "KrumpleTrash", "name": "Tommyinnit", "description": "is an English gaming YouTuber and Twitch streamer known for his Minecraft-related streams and videos, most notably his collaborations with YouTubers and streamers!nYou should totally buy his merch", "website": "tommyinnit.store", "subreddit": "/r/Tommyinnit", "center": [233.5, 978.5], "path": [[221.5, 965.5], [221.5, 990.5], [244.5, 990.5], [244.5, 965.5], [221.5, 965.5]]}, -{"id": "twhgl7", "name": "Missing Texture", "description": "r/place forgot to install CS:S textures\n\nA contribution to the Source Engine, and all the communities related, like TF2Maps (source of idea), Half Life, etc...\n\nThis lattice represent the lack of texture in the game, and the ERROR represents the lack of prop model.", "website": "", "subreddit": "", "center": [ 1789.5, 229.5 ], "path": [ [ 1772.5, 206.5 ], [ 1805.5, 206.5 ], [ 1805.5, 240.5 ], [ 1813.5, 240.5 ], [ 1806.5, 251.5 ], [ 1804.5, 252.5 ], [ 1805.5, 252.5 ], [ 1772.5, 252.5 ], [ 1772.5, 206.5 ] ]}, +{"id": "twrr46", "submitted_by": "KrumpleTrash", "name": "Tommyinnit", "description": "is an English gaming YouTuber and Twitch streamer known for his Minecraft-related streams and videos, most notably his collaborations with YouTubers and streamers!nYou should totally buy his merch", "website": "https://tommyinnit.store", "subreddit": "/r/Tommyinnit", "center": [233.5, 978.5], "path": [[221.5, 965.5], [221.5, 990.5], [244.5, 990.5], [244.5, 965.5], [221.5, 965.5]]}, +{"id": "twhgl7", "name": "Missing Texture", "description": "r/place forgot to install CS:S textures\n\nA contribution to the Source Engine, and all the communities related, like TF2Maps (source of idea), Half Life, etc...\n\nThis lattice represent the lack of texture in the game, and the ERROR represents the lack of prop model.", "website": "", "subreddit": "", "center": [1789.5, 229.5], "path": [[1772.5, 206.5], [1805.5, 206.5], [1805.5, 240.5], [1813.5, 240.5], [1806.5, 251.5], [1804.5, 252.5], [1805.5, 252.5], [1772.5, 252.5], [1772.5, 206.5]]}, {"id": "twrr1t", "submitted_by": "Tetlo", "name": "Falcone and Borsellino", "description": "A memorial for the 2 historical judges who fought against the mafia", "website": "", "subreddit": "", "center": [823.5, 223.5], "path": [[781.5, 248.5], [864.5, 247.5], [864.5, 199.5], [782.5, 199.5]]}, {"id": "twrqzc", "submitted_by": "CalmCollectedOmega", "name": "The Sex Cult Logo", "description": "Not an actual Sex Cult, but it's a Logo of a friend group that went through a lot of stuff just to be on the map.", "website": "", "subreddit": "", "center": [544.5, 1822.5], "path": [[539.5, 1816.5], [548.5, 1816.5], [548.5, 1827.5], [539.5, 1827.5], [539.5, 1816.5]]}, {"id": "twrqz6", "submitted_by": "eXernox", "name": "Overwatch (2) logo", "description": "Symbol representing Overwatch/ Overwach 2 FPS video game from Blizzard Entertainment", "website": "", "subreddit": "/r/PlayOverwatch", "center": [701.5, 284.5], "path": [[696.5, 275.5], [689.5, 282.5], [689.5, 288.5], [696.5, 295.5], [702.5, 295.5], [709.5, 288.5], [711.5, 283.5], [714.5, 283.5], [714.5, 275.5], [696.5, 275.5]]}, @@ -1148,7 +1070,6 @@ {"id": "twrq9w", "submitted_by": "Greenthy", "name": "Jelledot", "description": "twitch streamer", "website": "https://www.twitch.tv/jelledot", "subreddit": "", "center": [1958.5, 748.5], "path": [[1954.5, 745.5], [1961.5, 745.5], [1961.5, 751.5], [1954.5, 751.5]]}, {"id": "twrq66", "submitted_by": "ReloadedMichi", "name": "Grundgesetz", "description": "The German constitution", "website": "", "subreddit": "/r/placeDE", "center": [1681.5, 1145.5], "path": [[1670.5, 1127.5], [1691.5, 1127.5], [1691.5, 1163.5], [1670.5, 1163.5]]}, {"id": "twrq52", "submitted_by": "Rat_Skull", "name": "Romanian Flag", "description": "Hiding From The Poles", "website": "", "subreddit": "/r/Romania", "center": [1824.5, 133.5], "path": [[1819.5, 129.5], [1819.5, 136.5], [1828.5, 136.5], [1828.5, 129.5], [1819.5, 129.5], [1819.5, 129.5], [1819.5, 129.5], [1819.5, 129.5], [1819.5, 136.5]]}, -{"id": "twrq1y", "submitted_by": "Adrianpih", "name": "Nether portals in the Nether", "description": "A small area of the Nether that connects both sides of the green GME stock line through the Hermitcraft logo. The red outline represents the Nether and the green line passes through the portals in the middle.nMade by the r/Hermitcraft community.nA nice easter egg if you happen to find this on your own. Kudos to you!", "website": "", "subreddit": "/r/Hermitcraft", "center": [1283.5, 1405.5], "path": [[1280.5, 1398.5], [1285.5, 1398.5], [1285.5, 1411.5], [1280.5, 1411.5]]}, {"id": "twrpyr", "submitted_by": "heyhowzitgoinn", "name": "Centaurworld", "description": "(From left to right and starting at the top] The characters Zulius, Glendale, Durpleton, and Wammawink from the 2021 animated musical comedy series Centaurworld.", "website": "https://www.netflix.com", "subreddit": "/r/CentaurWorld", "center": [1544.5, 1354.5], "path": [[1551.5, 1361.5], [1538.5, 1361.5], [1536.5, 1358.5], [1535.5, 1352.5], [1539.5, 1351.5], [1542.5, 1349.5], [1545.5, 1349.5], [1546.5, 1349.5], [1546.5, 1345.5], [1549.5, 1343.5], [1550.5, 1344.5], [1550.5, 1350.5], [1552.5, 1351.5], [1552.5, 1351.5], [1551.5, 1353.5]]}, {"id": "twrpof", "submitted_by": "HogoX", "name": "Unit-01", "description": "The flagship mecha of the Evangelion saga. Eva-01 is piloted by the series' protagonist Shinji Ikari and inhabited by the soul of his mother, Yui Ikari.", "website": "https://www.evangelion.co.jp/final.html", "subreddit": "/r/evangelion, /r/evangelionmemes", "center": [685.5, 1407.5], "path": [[693.5, 1402.5], [693.5, 1401.5], [692.5, 1401.5], [692.5, 1399.5], [691.5, 1399.5], [691.5, 1398.5], [688.5, 1398.5], [688.5, 1397.5], [686.5, 1397.5], [686.5, 1399.5], [685.5, 1399.5], [685.5, 1400.5], [683.5, 1400.5], [683.5, 1397.5], [681.5, 1397.5], [681.5, 1398.5], [680.5, 1398.5], [680.5, 1403.5], [679.5, 1403.5], [679.5, 1405.5], [678.5, 1405.5], [678.5, 1408.5], [677.5, 1408.5], [677.5, 1412.5], [681.5, 1412.5], [681.5, 1417.5], [680.5, 1417.5], [680.5, 1419.5], [679.5, 1419.5], [679.5, 1421.5], [682.5, 1421.5], [681.5, 1420.5], [682.5, 1419.5], [682.5, 1417.5], [686.5, 1414.5], [687.5, 1418.5], [686.5, 1418.5], [686.5, 1420.5], [685.5, 1420.5], [686.5, 1420.5], [685.5, 1421.5], [688.5, 1421.5], [687.5, 1420.5], [688.5, 1419.5], [688.5, 1417.5], [689.5, 1417.5], [689.5, 1415.5], [688.5, 1415.5], [688.5, 1413.5], [687.5, 1412.5], [686.5, 1411.5], [686.5, 1409.5], [687.5, 1409.5], [687.5, 1408.5], [690.5, 1408.5], [690.5, 1409.5], [691.5, 1409.5], [691.5, 1410.5], [693.5, 1410.5], [693.5, 1411.5], [694.5, 1411.5], [694.5, 1410.5], [695.5, 1410.5], [695.5, 1409.5], [692.5, 1409.5], [692.5, 1408.5], [691.5, 1408.5], [691.5, 1407.5], [690.5, 1407.5], [690.5, 1405.5], [691.5, 1405.5], [691.5, 1403.5], [692.5, 1403.5]]}, {"id": "twrpjq", "submitted_by": "Foufou10", "name": "Hermine", "description": "Une chienne anthromorphe, personnage de la cha\u00eene de MisterFlech participant \u00e0 chaque Reset System.", "website": "https://www.youtube.com/c/MisterFlech", "subreddit": "", "center": [1323.5, 1673.5], "path": [[1314.5, 1664.5], [1331.5, 1664.5], [1331.5, 1681.5], [1315.5, 1682.5], [1314.5, 1664.5]]}, @@ -1156,7 +1077,7 @@ {"id": "twrp7z", "submitted_by": "JackThatGamerYT", "name": "Thomas\u2019 Number 1", "description": "A Number 1 from the character Thomas The Tank Engine.", "website": "", "subreddit": "/r/thomasthetankengine", "center": [641.5, 1377.5], "path": [[636.5, 1372.5], [645.5, 1372.5], [645.5, 1382.5], [636.5, 1382.5]]}, {"id": "twrp78", "submitted_by": "AltoNeptune", "name": "", "description": "A small logo dedicated to the Manga/Anime Beastars.nBuilt by r/Beastars and Project Cherryton(IB)", "website": "https://www.youtube.com/c/ImaginaryBadger", "subreddit": "/r/Beastars", "center": [1340.5, 389.5], "path": [[1333.5, 382.5], [1345.5, 382.5], [1345.5, 396.5], [1336.5, 396.5], [1336.5, 389.5], [1335.5, 389.5], [1335.5, 383.5], [1333.5, 383.5], [1333.5, 382.5]]}, {"id": "twrp1b", "submitted_by": "smity31", "name": "Yogscast Bleb Icons", "description": "Various icons and logos from across the Yogscast", "website": "https://www.yogscast.com/", "subreddit": "/r/yogscast", "center": [1514.5, 242.5], "path": [[1502.5, 206.5], [1531.5, 278.5], [1496.5, 279.5], [1497.5, 206.5], [1530.5, 205.5], [1531.5, 278.5]]}, -{"id": "twrojz", "submitted_by": "Notekalia", "name": "A tribute to Etoiles", "description": "As a greeting for the great effort made by the twitch streamer Etoiles and his community on the french zone nearby", "website": "twitch.tv/etoiles", "subreddit": "", "center": [264.5, 1576.5], "path": [[249.5, 1552.5], [249.5, 1600.5], [279.5, 1600.5], [279.5, 1552.5], [248.5, 1551.5]]}, +{"id": "twrojz", "submitted_by": "Notekalia", "name": "A tribute to Etoiles", "description": "As a greeting for the great effort made by the twitch streamer Etoiles and his community on the french zone nearby", "website": "https://twitch.tv/etoiles", "subreddit": "", "center": [264.5, 1576.5], "path": [[249.5, 1552.5], [249.5, 1600.5], [279.5, 1600.5], [279.5, 1552.5], [248.5, 1551.5]]}, {"id": "twrohx", "submitted_by": "What_A_Flame", "name": "Shelly (Large)", "description": "Shelly is the player character in the indie platformer Will You Snail?", "website": "https://store.steampowered.com/app/1115050/Will_You_Snail/", "subreddit": "/r/WillYouSnail", "center": [1683.5, 1048.5], "path": [[1676.5, 1043.5], [1690.5, 1043.5], [1690.5, 1053.5], [1676.5, 1053.5], [1676.5, 1043.5]]}, {"id": "twrogm", "submitted_by": "Inheritance2", "name": "Energy Sword", "description": "Melee weapon from the Halo gaming franchise. Created by xQcOW and his community.", "website": "", "subreddit": "/r/halo", "center": [71.5, 1246.5], "path": [[3.5, 1236.5], [11.5, 1236.5], [24.5, 1238.5], [29.5, 1245.5], [26.5, 1252.5], [4.5, 1255.5], [4.5, 1260.5], [10.5, 1264.5], [20.5, 1264.5], [30.5, 1259.5], [45.5, 1255.5], [54.5, 1255.5], [57.5, 1253.5], [165.5, 1250.5], [165.5, 1248.5], [165.5, 1242.5], [74.5, 1239.5], [45.5, 1237.5], [18.5, 1227.5], [11.5, 1228.5], [4.5, 1232.5]]}, {"id": "twroad", "submitted_by": "OkBOOMERR08", "name": "Freddie Mercury", "description": "Famous singer and leader of the band Queen, Freddie Mercury in his iconic pose with his yellow jacket. Also Freddie is standing next to, and wearing rainbow colours and at the side a 'say gay' text that may be a reference to Freddie's homosexuality", "website": "https://i0.wp.com/www.michigandaily.com/wp-content/uploads/2019/04/Screen-Shot-2019-04-22-at-6.26.12-PM.png?fit=562%2C787&ssl=1", "subreddit": "", "center": [571.5, 492.5], "path": [[564.5, 504.5], [565.5, 505.5], [566.5, 504.5], [577.5, 504.5], [577.5, 497.5], [578.5, 496.5], [578.5, 488.5], [577.5, 488.5], [575.5, 487.5], [575.5, 479.5], [573.5, 478.5], [567.5, 479.5], [566.5, 483.5], [562.5, 482.5], [561.5, 483.5], [562.5, 486.5], [563.5, 488.5], [564.5, 488.5], [565.5, 490.5], [566.5, 494.5], [567.5, 495.5], [568.5, 496.5], [565.5, 498.5], [563.5, 503.5], [564.5, 505.5]]}, @@ -1165,7 +1086,7 @@ {"id": "twro5l", "submitted_by": "TidgePea", "name": "Fiery Cambridge", "description": "Within a fiery duel between Obi Wan and Anakin, the crest of the University of Cambridge hides using Jedi mind tricks.", "website": "", "subreddit": "/r/cambridge_uni", "center": [774.5, 1595.5], "path": [[767.5, 1586.5], [784.5, 1586.5], [784.5, 1591.5], [783.5, 1591.5], [783.5, 1595.5], [782.5, 1595.5], [782.5, 1595.5], [782.5, 1596.5], [781.5, 1596.5], [781.5, 1597.5], [780.5, 1597.5], [780.5, 1598.5], [779.5, 1598.5], [778.5, 1598.5], [778.5, 1599.5], [778.5, 1600.5], [779.5, 1600.5], [779.5, 1601.5], [780.5, 1601.5], [779.5, 1601.5], [779.5, 1602.5], [779.5, 1605.5], [778.5, 1605.5], [778.5, 1606.5], [776.5, 1606.5], [776.5, 1607.5], [771.5, 1607.5], [770.5, 1605.5], [769.5, 1604.5], [768.5, 1604.5], [767.5, 1603.5], [767.5, 1602.5], [767.5, 1586.5]]}, {"id": "twro4i", "submitted_by": "quetzatcoatl_", "name": "Grave of Stellaris", "description": "Combined Stellaris, Raimnbow Six Siege and PHTANUM B site, brutally attacked by streamers in the last hours of r/Place. Formerly located right below Kaiser Kattail.", "website": "", "subreddit": "", "center": [1464.5, 1011.5], "path": [[1451.5, 999.5], [1451.5, 1023.5], [1476.5, 1023.5], [1476.5, 999.5], [1451.5, 999.5]]}, {"id": "twrnwc", "submitted_by": "gothminister", "name": "Bidetcoin", "description": "A fictional cryptocurrency created by the Spanish Twitch streamer and content creator Outconsumer and his community for the GTA roleplay series Marbella Vice", "website": "https://www.bidetcoins.com/", "subreddit": "", "center": [1754.5, 409.5], "path": [[1751.5, 405.5], [1751.5, 413.5], [1757.5, 413.5], [1757.5, 405.5]]}, -{"id": "twrnsi", "submitted_by": "newnative", "name": "Red Velvet mini logo", "description": "Red Velvet (RV) is a South Korean k-pop girl group. The five colors at the bottom of the logo represents the five members of the group.", "website": "", "subreddit": "/r/red_velvet", "center": [1305.5, 577.5], "path": [[1300.5, 573.5], [1309.5, 573.5], [1309.5, 581.5], [1300.5, 581.5], [1300.5, 573.5]]}, +{"id": "twrnsi", "submitted_by": "newnative", "name": "Red Velvet mini logo", "description": "The Mini logo of Red Velvet (RV), a South Korean girl group formed and managed by SM Entertainment. The group consists of members: Irene, Seulgi, Wendy, Joy and Yeri. Musically, the work of Red Velvet reflects their own group name: their predominantly-pop \"red\" side experiments occasionally with electronic, funk and hip hop, while their \"velvet\" side focuses on '90s-influenced R&B with elements of ballad and jazz. Their genre versatility and hooks have garnered critical praise. The five colors underneath represents the five members of the group.", "website": "https://redvelvet-jp.net/en/", "subreddit": "/r/red_velvet", "center": [1305.5, 577.5], "path": [[1300.5, 573.5], [1309.5, 573.5], [1309.5, 581.5], [1300.5, 581.5], [1300.5, 573.5]]}, {"id": "twrnpt", "submitted_by": "OkBOOMERR08", "name": "The Beatles Abbey Road", "description": "The famous band of Liverpool, The Beatles can be seen crossing a road, like in their album and famous cover of Abbey Road", "website": "https://static.dw.com/image/39219505_6.jpg", "subreddit": "", "center": [682.5, 494.5], "path": [[700.5, 485.5], [701.5, 506.5], [698.5, 506.5], [697.5, 503.5], [696.5, 502.5], [694.5, 502.5], [692.5, 505.5], [664.5, 505.5], [663.5, 485.5], [663.5, 484.5], [665.5, 484.5], [663.5, 484.5], [674.5, 484.5], [700.5, 484.5]]}, {"id": "twrnhj", "submitted_by": "AdryRS2A", "name": "Giovanni Falcone and Paolo Borsellino", "description": "anti-mafia judges", "website": "https://en.wikipedia.org/wiki/Paolo_Borsellino", "subreddit": "/r/italy", "center": [823.5, 225.5], "path": [[782.5, 198.5], [782.5, 250.5], [865.5, 251.5], [864.5, 199.5]]}, {"id": "twrnfk", "submitted_by": "Lutheian", "name": "Hat and Candle", "description": "The Exceptional Hat and the candle are from the browser-based game Fallen London. A great achievement for this small community!", "website": "https://www.fallenlondon.com/login", "subreddit": "/r/fallenlondon", "center": [1498.5, 1379.5], "path": [[1492.5, 1364.5], [1504.5, 1363.5], [1504.5, 1394.5], [1493.5, 1393.5], [1492.5, 1394.5]]}, @@ -1184,29 +1105,27 @@ {"id": "twrlng", "submitted_by": "CelerySilent7734", "name": "Fubuking", "description": "Hololive Vtuber Fubuki sitting on a burger, eating a burger, with a crown on her head (hence the king in fubuking)", "website": "", "subreddit": "/r/Hololive", "center": [1373.5, 1092.5], "path": [[1350.5, 1113.5], [1350.5, 1111.5], [1351.5, 1111.5], [1351.5, 1110.5], [1352.5, 1110.5], [1352.5, 1109.5], [1353.5, 1109.5], [1353.5, 1108.5], [1353.5, 1107.5], [1352.5, 1107.5], [1352.5, 1106.5], [1351.5, 1106.5], [1351.5, 1105.5], [1350.5, 1105.5], [1350.5, 1104.5], [1349.5, 1104.5], [1350.5, 1105.5], [1350.5, 1106.5], [1350.5, 1107.5], [1349.5, 1107.5], [1349.5, 1108.5], [1348.5, 1109.5], [1347.5, 1109.5], [1347.5, 1110.5], [1347.5, 1112.5], [1346.5, 1112.5], [1346.5, 1113.5], [1346.5, 1113.5], [1345.5, 1113.5], [1345.5, 1114.5], [1345.5, 1115.5], [1341.5, 1115.5], [1341.5, 1110.5], [1340.5, 1110.5], [1340.5, 1109.5], [1338.5, 1109.5], [1338.5, 1107.5], [1338.5, 1107.5], [1336.5, 1107.5], [1336.5, 1109.5], [1335.5, 1109.5], [1334.5, 1109.5], [1334.5, 1110.5], [1333.5, 1110.5], [1333.5, 1114.5], [1333.5, 1115.5], [1333.5, 1098.5], [1333.5, 1097.5], [1334.5, 1097.5], [1336.5, 1097.5], [1335.5, 1096.5], [1335.5, 1096.5], [1335.5, 1095.5], [1337.5, 1095.5], [1336.5, 1094.5], [1336.5, 1094.5], [1346.5, 1094.5], [1346.5, 1091.5], [1347.5, 1091.5], [1347.5, 1090.5], [1348.5, 1090.5], [1348.5, 1089.5], [1349.5, 1089.5], [1349.5, 1088.5], [1351.5, 1088.5], [1351.5, 1087.5], [1352.5, 1087.5], [1352.5, 1086.5], [1353.5, 1086.5], [1353.5, 1085.5], [1354.5, 1085.5], [1354.5, 1084.5], [1355.5, 1084.5], [1355.5, 1083.5], [1358.5, 1083.5], [1358.5, 1082.5], [1361.5, 1082.5], [1361.5, 1081.5], [1362.5, 1081.5], [1363.5, 1081.5], [1363.5, 1080.5], [1364.5, 1080.5], [1364.5, 1078.5], [1363.5, 1078.5], [1363.5, 1073.5], [1362.5, 1073.5], [1361.5, 1073.5], [1361.5, 1074.5], [1361.5, 1075.5], [1360.5, 1075.5], [1360.5, 1076.5], [1359.5, 1076.5], [1359.5, 1078.5], [1358.5, 1078.5], [1358.5, 1079.5], [1357.5, 1079.5], [1357.5, 1080.5], [1357.5, 1079.5], [1356.5, 1079.5], [1356.5, 1078.5], [1355.5, 1078.5], [1355.5, 1077.5], [1354.5, 1077.5], [1355.5, 1077.5], [1355.5, 1076.5], [1356.5, 1076.5], [1356.5, 1075.5], [1357.5, 1075.5], [1357.5, 1074.5], [1358.5, 1074.5], [1358.5, 1073.5], [1359.5, 1073.5], [1359.5, 1072.5], [1360.5, 1072.5], [1360.5, 1071.5], [1361.5, 1071.5], [1361.5, 1070.5], [1361.5, 1069.5], [1361.5, 1068.5], [1359.5, 1068.5], [1359.5, 1066.5], [1358.5, 1066.5], [1358.5, 1065.5], [1357.5, 1065.5], [1357.5, 1061.5], [1358.5, 1061.5], [1358.5, 1058.5], [1359.5, 1058.5], [1359.5, 1056.5], [1360.5, 1056.5], [1360.5, 1053.5], [1361.5, 1053.5], [1361.5, 1049.5], [1360.5, 1049.5], [1360.5, 1048.5], [1359.5, 1048.5], [1359.5, 1044.5], [1360.5, 1044.5], [1360.5, 1045.5], [1363.5, 1045.5], [1363.5, 1046.5], [1366.5, 1046.5], [1366.5, 1047.5], [1370.5, 1047.5], [1370.5, 1047.5], [1370.5, 1046.5], [1370.5, 1045.5], [1370.5, 1044.5], [1369.5, 1044.5], [1370.5, 1044.5], [1370.5, 1045.5], [1371.5, 1045.5], [1372.5, 1045.5], [1372.5, 1044.5], [1372.5, 1045.5], [1373.5, 1045.5], [1374.5, 1045.5], [1374.5, 1044.5], [1374.5, 1045.5], [1375.5, 1045.5], [1375.5, 1046.5], [1376.5, 1045.5], [1377.5, 1045.5], [1377.5, 1044.5], [1379.5, 1044.5], [1379.5, 1044.5], [1379.5, 1046.5], [1380.5, 1046.5], [1379.5, 1046.5], [1379.5, 1047.5], [1379.5, 1048.5], [1378.5, 1048.5], [1378.5, 1049.5], [1377.5, 1049.5], [1377.5, 1052.5], [1378.5, 1052.5], [1378.5, 1055.5], [1379.5, 1055.5], [1379.5, 1060.5], [1380.5, 1060.5], [1380.5, 1064.5], [1381.5, 1064.5], [1380.5, 1064.5], [1380.5, 1065.5], [1379.5, 1065.5], [1379.5, 1071.5], [1379.5, 1071.5], [1381.5, 1071.5], [1381.5, 1070.5], [1387.5, 1070.5], [1387.5, 1071.5], [1388.5, 1071.5], [1389.5, 1071.5], [1389.5, 1072.5], [1391.5, 1072.5], [1391.5, 1079.5], [1390.5, 1079.5], [1390.5, 1079.5], [1389.5, 1079.5], [1389.5, 1080.5], [1388.5, 1080.5], [1388.5, 1081.5], [1390.5, 1080.5], [1391.5, 1080.5], [1392.5, 1080.5], [1392.5, 1080.5], [1392.5, 1079.5], [1392.5, 1078.5], [1392.5, 1076.5], [1392.5, 1081.5], [1391.5, 1081.5], [1391.5, 1082.5], [1390.5, 1082.5], [1390.5, 1083.5], [1387.5, 1083.5], [1387.5, 1084.5], [1382.5, 1084.5], [1382.5, 1083.5], [1381.5, 1083.5], [1379.5, 1083.5], [1380.5, 1084.5], [1380.5, 1086.5], [1381.5, 1086.5], [1381.5, 1087.5], [1396.5, 1087.5], [1396.5, 1088.5], [1398.5, 1088.5], [1398.5, 1089.5], [1399.5, 1089.5], [1399.5, 1090.5], [1401.5, 1090.5], [1401.5, 1091.5], [1403.5, 1091.5], [1403.5, 1092.5], [1405.5, 1092.5], [1405.5, 1093.5], [1408.5, 1093.5], [1412.5, 1093.5], [1413.5, 1093.5], [1415.5, 1093.5], [1416.5, 1093.5], [1416.5, 1092.5], [1416.5, 1091.5], [1421.5, 1091.5], [1420.5, 1097.5], [1421.5, 1097.5], [1421.5, 1096.5], [1421.5, 1095.5], [1421.5, 1096.5], [1421.5, 1097.5], [1420.5, 1097.5], [1420.5, 1098.5], [1419.5, 1098.5], [1419.5, 1101.5], [1418.5, 1101.5], [1418.5, 1102.5], [1415.5, 1102.5], [1415.5, 1102.5], [1415.5, 1101.5], [1414.5, 1101.5], [1413.5, 1101.5], [1413.5, 1100.5], [1410.5, 1100.5], [1410.5, 1098.5], [1409.5, 1098.5], [1409.5, 1097.5], [1409.5, 1097.5], [1406.5, 1097.5], [1406.5, 1096.5], [1404.5, 1096.5], [1404.5, 1095.5], [1401.5, 1095.5], [1401.5, 1094.5], [1398.5, 1094.5], [1398.5, 1093.5], [1400.5, 1094.5], [1398.5, 1094.5], [1397.5, 1094.5], [1397.5, 1095.5], [1397.5, 1096.5], [1398.5, 1096.5], [1399.5, 1096.5], [1399.5, 1099.5], [1398.5, 1099.5], [1398.5, 1100.5], [1398.5, 1101.5], [1399.5, 1101.5], [1399.5, 1104.5], [1398.5, 1104.5], [1398.5, 1105.5], [1397.5, 1105.5], [1397.5, 1108.5], [1397.5, 1109.5], [1395.5, 1109.5], [1395.5, 1111.5], [1396.5, 1112.5], [1396.5, 1111.5], [1396.5, 1110.5], [1397.5, 1110.5], [1398.5, 1110.5], [1398.5, 1109.5], [1398.5, 1110.5], [1399.5, 1110.5], [1399.5, 1111.5], [1400.5, 1111.5], [1400.5, 1112.5], [1400.5, 1113.5], [1399.5, 1113.5], [1399.5, 1114.5], [1396.5, 1114.5], [1396.5, 1115.5], [1397.5, 1115.5], [1397.5, 1116.5], [1398.5, 1116.5], [1398.5, 1117.5], [1399.5, 1117.5], [1399.5, 1119.5], [1398.5, 1119.5], [1398.5, 1123.5], [1397.5, 1123.5], [1397.5, 1125.5], [1390.5, 1125.5], [1390.5, 1124.5], [1385.5, 1124.5], [1385.5, 1125.5], [1382.5, 1125.5], [1382.5, 1124.5], [1379.5, 1124.5], [1369.5, 1124.5], [1369.5, 1125.5], [1367.5, 1125.5], [1367.5, 1124.5], [1367.5, 1124.5], [1366.5, 1124.5], [1366.5, 1123.5], [1367.5, 1123.5], [1367.5, 1123.5], [1367.5, 1122.5], [1367.5, 1121.5], [1368.5, 1121.5], [1368.5, 1120.5], [1368.5, 1119.5], [1368.5, 1118.5], [1368.5, 1117.5], [1368.5, 1117.5], [1367.5, 1117.5], [1367.5, 1116.5], [1366.5, 1116.5], [1366.5, 1115.5], [1366.5, 1115.5], [1365.5, 1115.5], [1364.5, 1115.5], [1363.5, 1115.5], [1363.5, 1114.5], [1363.5, 1113.5], [1363.5, 1112.5], [1362.5, 1112.5], [1362.5, 1111.5], [1362.5, 1110.5], [1357.5, 1110.5], [1357.5, 1112.5], [1356.5, 1112.5], [1356.5, 1114.5], [1356.5, 1114.5], [1355.5, 1114.5], [1355.5, 1115.5], [1354.5, 1115.5], [1354.5, 1116.5], [1353.5, 1116.5], [1353.5, 1117.5], [1352.5, 1117.5], [1352.5, 1119.5], [1352.5, 1117.5], [1351.5, 1117.5], [1351.5, 1116.5], [1351.5, 1117.5], [1351.5, 1116.5], [1351.5, 1115.5], [1351.5, 1114.5], [1350.5, 1114.5]]}, {"id": "twrlhi", "submitted_by": "Party_Ad_619", "name": "Solary", "description": "Famous french esport team & webTV from TOURS, Indre-et-Loire", "website": "https://www.solary.fr/", "subreddit": "", "center": [859.5, 1722.5], "path": [[844.5, 1707.5], [872.5, 1707.5], [873.5, 1736.5], [845.5, 1736.5], [845.5, 1707.5]]}, {"id": "twrlhh", "submitted_by": "veronie_", "name": "Nijntje", "description": "Written and drawn by the dutch Dick Bruna. Children stories about a little rabbit.", "website": "", "subreddit": "", "center": [790.5, 22.5], "path": [[768.5, 34.5], [766.5, 34.5], [766.5, 33.5], [765.5, 33.5], [765.5, 29.5], [766.5, 29.5], [766.5, 28.5], [768.5, 28.5], [768.5, 21.5], [766.5, 20.5], [766.5, 18.5], [765.5, 18.5], [765.5, 13.5], [766.5, 13.5], [766.5, 12.5], [769.5, 12.5], [774.5, 10.5], [782.5, 10.5], [785.5, 6.5], [787.5, 6.5], [793.5, 5.5], [799.5, 11.5], [808.5, 10.5], [814.5, 13.5], [815.5, 13.5], [815.5, 17.5], [814.5, 18.5], [814.5, 20.5], [813.5, 20.5], [813.5, 21.5], [812.5, 21.5], [812.5, 28.5], [814.5, 28.5], [814.5, 29.5], [815.5, 29.5], [815.5, 33.5], [814.5, 33.5], [814.5, 34.5], [812.5, 34.5], [812.5, 35.5], [769.5, 35.5]]}, -{"id": "twrlh2", "submitted_by": "Hiddenblade53", "name": "Littlepip", "description": "Main character of Fallout: Equestria, by Kkat; one of the longest pieces of self-published derivative fiction ever written.", "website": "", "subreddit": "/r/falloutequestria", "center": [539.5, 277.5], "path": [[542.5, 279.5], [542.5, 278.5], [541.5, 277.5], [540.5, 277.5], [540.5, 276.5], [539.5, 275.5], [538.5, 274.5], [537.5, 274.5], [536.5, 275.5], [536.5, 276.5], [536.5, 277.5], [537.5, 278.5], [537.5, 279.5], [538.5, 280.5], [539.5, 279.5], [540.5, 280.5], [541.5, 280.5]]}, {"id": "twrlgz", "submitted_by": "HogoX", "name": "Asuka Langley Soryu", "description": "fictional character from the Neon Genesis Evangelion franchise.", "website": "https://www.evangelion.co.jp", "subreddit": "/r/evangelion, /r/evangelionmemes", "center": [664.5, 1391.5], "path": [[662.5, 1384.5], [662.5, 1385.5], [659.5, 1385.5], [659.5, 1388.5], [658.5, 1388.5], [658.5, 1390.5], [659.5, 1390.5], [659.5, 1392.5], [658.5, 1392.5], [658.5, 1393.5], [657.5, 1393.5], [657.5, 1395.5], [658.5, 1395.5], [658.5, 1396.5], [659.5, 1396.5], [659.5, 1397.5], [661.5, 1397.5], [661.5, 1399.5], [663.5, 1399.5], [663.5, 1397.5], [665.5, 1397.5], [665.5, 1399.5], [667.5, 1399.5], [667.5, 1397.5], [669.5, 1397.5], [669.5, 1396.5], [670.5, 1396.5], [670.5, 1395.5], [671.5, 1395.5], [671.5, 1393.5], [670.5, 1393.5], [670.5, 1392.5], [669.5, 1392.5], [669.5, 1390.5], [670.5, 1390.5], [670.5, 1388.5], [669.5, 1388.5], [669.5, 1385.5], [666.5, 1385.5], [666.5, 1384.5]]}, {"id": "twrleg", "submitted_by": "Gemyma", "name": "Beneath the Dragoneye Moons - Auri", "description": "A small hummingbird from the webserial Beneath the Dragoneye Moons by Selkie Myth, winner of the Best Serialised Fiction Stabby Award 2021.", "website": "https://www.royalroad.com/fiction/36299/beneath-the-dragoneye-moons", "subreddit": "", "center": [1787.5, 1271.5], "path": [[1783.5, 1271.5], [1786.5, 1269.5], [1787.5, 1270.5], [1790.5, 1268.5], [1788.5, 1271.5], [1790.5, 1271.5], [1790.5, 1273.5], [1783.5, 1271.5]]}, -{"id": "twrl9z", "submitted_by": "SebWayz", "name": "Joueur du grenier", "description": "French youtuber known for his humoristic and satirical videos about old retro games", "website": "https://www.youtube.com/user/joueurdugrenier", "subreddit": "", "center": [25.5, 1923.5], "path": [[4.5, 1903.5], [23.5, 1892.5], [51.5, 1901.5], [38.5, 1957.5], [15.5, 1953.5], [3.5, 1931.5], [1.5, 1919.5], [3.5, 1905.5]]}, +{"id": "twrl9z", "submitted_by": "SebWayz", "name": "Joueur du Grenier", "description": "French YouTuber known for his humoristic and satirical videos about old retro games.", "website": "https://www.youtube.com/user/joueurdugrenier", "subreddit": "/r/placefrance", "center": [25.5, 1923.5], "path": [[4.5, 1903.5], [23.5, 1892.5], [51.5, 1901.5], [38.5, 1957.5], [15.5, 1953.5], [3.5, 1931.5], [1.5, 1919.5], [3.5, 1905.5]]}, {"id": "twrl9b", "submitted_by": "Greenhx", "name": "Second Etika Memorial", "description": "A second Memorial dedicated to the iconic YouTube streamer Desmond Daniel Amofah, or more commonly known as Etika. This art features Red Robin one of Etika's favorite Fire Emblem Characters that Akairiot drew for him, his red 3ds, and his logo. Etika's Sponsor discord worked together to gather as many Joyconboyz as possible to work on both Etika memorials.", "website": "https://discord.gg/VHzRpZ3327", "subreddit": "/r/EtikaRedditNetwork", "center": [1566.5, 1261.5], "path": [[1600.5, 1250.5], [1542.5, 1250.5], [1542.5, 1273.5], [1545.5, 1273.5], [1546.5, 1274.5], [1549.5, 1279.5], [1550.5, 1279.5], [1551.5, 1282.5], [1561.5, 1282.5], [1561.5, 1278.5], [1564.5, 1273.5], [1564.5, 1263.5], [1600.5, 1263.5]]}, {"id": "twrl69", "submitted_by": "eXernox", "name": "Oshino Shinobu with her donut", "description": "Character from light novel/anime series Monogatari", "website": "", "subreddit": "/r/araragi", "center": [363.5, 1269.5], "path": [[367.5, 1255.5], [375.5, 1263.5], [378.5, 1272.5], [377.5, 1275.5], [367.5, 1282.5], [359.5, 1282.5], [352.5, 1280.5], [348.5, 1276.5], [351.5, 1263.5], [360.5, 1255.5], [367.5, 1255.5]]}, {"id": "twrl52", "submitted_by": "Sorry-Strength-4573", "name": "\u0160ajka\u010de", "description": "Serbian national hat", "website": "", "subreddit": "", "center": [322.5, 905.5], "path": [[294.5, 908.5], [359.5, 909.5], [359.5, 905.5], [293.5, 900.5], [293.5, 907.5]]}, -{"id": "twrl51", "submitted_by": "Vandabe", "name": "Danish osu! Community", "description": "A danish community who shares an interest in the osu! rhythm game", "website": "", "subreddit": "", "center": [1384.5, 409.5], "path": [[1376.5, 404.5], [1395.5, 404.5], [1395.5, 410.5], [1387.5, 410.5], [1387.5, 413.5], [1384.5, 413.5], [1384.5, 415.5], [1376.5, 415.5], [1376.5, 404.5]]}, +{"id": "twrl51", "submitted_by": "Vandabe", "name": "Danish osu! Community", "description": "A Danish community who shares an interest in the osu! rhythm game", "website": "https://osu.ppy.sh/", "subreddit": "/r/osugame", "center": [1384.5, 409.5], "path": [[1376.5, 404.5], [1395.5, 404.5], [1395.5, 410.5], [1387.5, 410.5], [1387.5, 413.5], [1384.5, 413.5], [1384.5, 415.5], [1376.5, 415.5], [1376.5, 404.5]]}, {"id": "twrkzw", "submitted_by": "Klisurovi4", "name": "Trixie", "description": "A character from My Little Pony: Friendship is Magic, There are rumours that she was originally supposed to be a male pony, before getting changed to a female, so her being trans is a popular headcanon.", "website": "", "subreddit": "/r/mylittlepony", "center": [651.5, 463.5], "path": [[648.5, 475.5], [649.5, 473.5], [641.5, 473.5], [640.5, 471.5], [642.5, 471.5], [642.5, 469.5], [639.5, 465.5], [638.5, 461.5], [644.5, 460.5], [647.5, 455.5], [654.5, 450.5], [657.5, 449.5], [662.5, 456.5], [661.5, 460.5], [657.5, 461.5], [657.5, 463.5], [661.5, 467.5], [656.5, 468.5], [655.5, 471.5], [661.5, 472.5], [663.5, 475.5]]}, {"id": "twrkvk", "submitted_by": "Streammz", "name": "Ice barrage", "description": "The ice barrage icon of (Oldschool) Runescape.", "website": "https://oldschool.runescape.wiki/w/Ice_Barrage", "subreddit": "/r/2007scape", "center": [169.5, 43.5], "path": [[162.5, 34.5], [162.5, 39.5], [160.5, 43.5], [160.5, 46.5], [163.5, 49.5], [166.5, 47.5], [169.5, 51.5], [172.5, 48.5], [173.5, 47.5], [175.5, 49.5], [178.5, 47.5], [178.5, 43.5], [176.5, 39.5], [176.5, 34.5], [174.5, 34.5], [174.5, 39.5], [172.5, 44.5], [171.5, 44.5], [170.5, 35.5], [168.5, 35.5], [168.5, 41.5], [167.5, 44.5], [166.5, 44.5], [165.5, 42.5], [163.5, 37.5], [163.5, 34.5], [162.5, 34.5]]}, {"id": "twrkp1", "submitted_by": "SphealArt", "name": "Starsector", "description": "Starsector is a 2D RPG with emphasis on combat and exploration. The game has a very active modding community as well as an unofficial Discord server.", "website": "", "subreddit": "/r/starsector", "center": [1737.5, 984.5], "path": [[1732.5, 979.5], [1732.5, 988.5], [1741.5, 988.5], [1741.5, 979.5], [1741.5, 979.5]]}, -{"id": "twrkcb", "submitted_by": "Trinky12312", "name": "Freak Squad", "description": "The name of one of the most popular Russian twitch squads", "website": "https://www.twitch.tv/team/freak", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "twrkbf", "submitted_by": "C-EZ", "name": "Remy", "description": "Remy, from the movie Ratatouille(2007), is the rat aspiring to become a renowned French chef.", "website": "", "subreddit": "/r/France", "center": [222.5, 1751.5], "path": [[243.5, 1786.5], [233.5, 1749.5], [239.5, 1738.5], [225.5, 1709.5], [219.5, 1709.5], [201.5, 1736.5], [202.5, 1747.5], [215.5, 1749.5], [217.5, 1754.5], [207.5, 1777.5], [192.5, 1783.5], [233.5, 1783.5], [236.5, 1788.5]]}, -{"id": "twrk8x", "submitted_by": "lmN0tAR0b0t", "name": "New Radio Shows?", "description": "An in-joke in the toki pona community, stemming from a youtube comment argument.", "website": "", "subreddit": "/r/tokipona", "center": [763.5, 358.5], "path": [[740.5, 356.5], [786.5, 356.5], [786.5, 360.5], [740.5, 360.5]]}, +{"id": "twrkbf", "submitted_by": "C-EZ", "name": "Remy (Ratatouille)", "description": "Remy, from the movie Ratatouille (2007), is a rat aspiring to become a renowned French chef.", "website": "https://en.wikipedia.org/wiki/Ratatouille_(film)", "subreddit": "/r/France", "center": [222.5, 1751.5], "path": [[243.5, 1786.5], [233.5, 1749.5], [239.5, 1738.5], [225.5, 1709.5], [219.5, 1709.5], [201.5, 1736.5], [202.5, 1747.5], [215.5, 1749.5], [217.5, 1754.5], [207.5, 1777.5], [192.5, 1783.5], [233.5, 1783.5], [236.5, 1788.5]]}, +{"id": "twrk8x", "submitted_by": "lmN0tAR0b0t", "name": "New Radio Shows?", "description": "An in-joke in the Toki Pona community, stemming from a YouTube comment argument.", "website": "https://tokipona.org/", "subreddit": "/r/tokipona", "center": [763.5, 358.5], "path": [[740.5, 356.5], [786.5, 356.5], [786.5, 360.5], [740.5, 360.5]]}, {"id": "twrk2t", "submitted_by": "Aksyyy", "name": "Trojan Horse Chuu", "description": "Trojan Horse Chuu refers to a series of photoshopped images that include a red arrow pointing at a seemingly random area with a circled picture of Chuu from K-pop girl group LOONA in it. This was made by r/Loona in collaboration with r/Philippines", "website": "", "subreddit": "/r/Loona", "center": [370.5, 1617.5], "path": [[368.5, 1601.5], [374.5, 1601.5], [375.5, 1603.5], [376.5, 1602.5], [377.5, 1603.5], [378.5, 1603.5], [379.5, 1604.5], [380.5, 1604.5], [381.5, 1605.5], [382.5, 1606.5], [383.5, 1607.5], [384.5, 1608.5], [384.5, 1609.5], [385.5, 1610.5], [385.5, 1611.5], [386.5, 1612.5], [386.5, 1613.5], [387.5, 1622.5], [386.5, 1623.5], [384.5, 1627.5], [383.5, 1628.5], [379.5, 1628.5], [378.5, 1629.5], [376.5, 1629.5], [375.5, 1630.5], [374.5, 1630.5], [373.5, 1631.5], [372.5, 1632.5], [371.5, 1633.5], [371.5, 1634.5], [371.5, 1635.5], [366.5, 1635.5], [365.5, 1634.5], [364.5, 1634.5], [363.5, 1633.5], [362.5, 1633.5], [361.5, 1632.5], [360.5, 1632.5], [359.5, 1631.5], [358.5, 1630.5], [357.5, 1629.5], [356.5, 1628.5], [356.5, 1627.5], [355.5, 1626.5], [355.5, 1625.5], [354.5, 1624.5], [354.5, 1623.5], [353.5, 1614.5], [354.5, 1613.5], [354.5, 1612.5], [355.5, 1611.5], [355.5, 1610.5], [355.5, 1609.5], [356.5, 1608.5], [357.5, 1608.5], [359.5, 1607.5], [359.5, 1606.5], [361.5, 1605.5], [362.5, 1604.5], [366.5, 1601.5]]}, {"id": "twrk1w", "submitted_by": "Melter30", "name": "A Bretzl", "description": "Its a Bretzel. What else should I say? German Leitkultur", "website": "", "subreddit": "", "center": [127.5, 860.5], "path": [[111.5, 855.5], [112.5, 854.5], [112.5, 853.5], [113.5, 852.5], [114.5, 851.5], [115.5, 850.5], [118.5, 850.5], [118.5, 849.5], [124.5, 849.5], [125.5, 850.5], [126.5, 851.5], [127.5, 851.5], [128.5, 850.5], [129.5, 850.5], [130.5, 849.5], [135.5, 849.5], [136.5, 850.5], [137.5, 850.5], [139.5, 852.5], [139.5, 853.5], [140.5, 854.5], [141.5, 854.5], [142.5, 855.5], [143.5, 856.5], [143.5, 864.5], [142.5, 865.5], [136.5, 871.5], [134.5, 871.5], [134.5, 872.5], [123.5, 872.5], [122.5, 871.5], [121.5, 871.5], [120.5, 870.5], [119.5, 870.5], [111.5, 862.5], [111.5, 855.5]]}, {"id": "twrjwj", "submitted_by": "Party_Ad_619", "name": "Gotaga", "description": "The french monter's logo", "website": "https://www.twitch.tv/gotaga", "subreddit": "", "center": [418.5, 1195.5], "path": [[397.5, 1172.5], [439.5, 1172.5], [439.5, 1219.5], [397.5, 1219.5], [397.5, 1172.5], [398.5, 1172.5], [410.5, 1184.5], [399.5, 1176.5], [399.5, 1176.5]]}, -{"id": "twrjrw", "submitted_by": "Idrialite", "name": "Fire Emblem", "description": "Contains three characters from the Fire Emblem series: Micaiah, Anna, and Tiki.", "website": "", "subreddit": "/r/fireemblem", "center": [499.5, 1378.5], "path": [[469.5, 1361.5], [469.5, 1395.5], [529.5, 1395.5], [529.5, 1361.5], [529.5, 1361.5]]}, +{"id": "twrjrw", "submitted_by": "Idrialite", "name": "Fire Emblem", "description": "Fire Emblem is a tactical role-playing game franchise published by Nintendo. Characters shown from left to right are Micaiah, Anna, and Tiki with the Japanese title of the series: \u30d5\u30a1\u30a4\u30a2\u30fc\u30a8\u30e0\u30d6\u30ec\u30e0 (pronounced Fai\u0101emuburemu).", "website": "", "subreddit": "/r/fireemblem", "center": [499.5, 1378.5], "path": [[469.5, 1361.5], [469.5, 1395.5], [529.5, 1395.5], [529.5, 1361.5], [529.5, 1361.5]]}, {"id": "twrjka", "submitted_by": "YallaYalla", "name": "Healthy Gamer Foundation", "description": "Logo of the Healthy Gamer Foundation -nDedicated to helping the gaming community lead healthier, happier lives.", "website": "https://www.healthygamer.gg/", "subreddit": "/r/Healthygamergg", "center": [1810.5, 317.5], "path": [[1798.5, 309.5], [1823.5, 309.5], [1823.5, 325.5], [1816.5, 325.5], [1816.5, 324.5], [1814.5, 324.5], [1814.5, 323.5], [1809.5, 323.5], [1809.5, 324.5], [1808.5, 324.5], [1808.5, 325.5], [1798.5, 325.5], [1798.5, 310.5], [1798.5, 309.5]]}, -{"id": "twrjcw", "submitted_by": "newnative", "name": "Red Velvet ReVe Robot", "description": "'ReVe' is the name of the robot mascot of the South Korean k-pop girl group Red Velvet.", "website": "", "subreddit": "/r/red_velvet", "center": [1701.5, 1068.5], "path": [[1694.5, 1062.5], [1707.5, 1062.5], [1707.5, 1073.5], [1694.5, 1073.5], [1694.5, 1062.5]]}, +{"id": "twrjcw", "submitted_by": "newnative", "name": "Red Velvet ReVe Robot", "description": "Designed by Seulgi and named by Yeri, \"ReVe\" is the name of the robot mascot of Red Velvet. \"Reve\" is named based on french word \"r\u00eaver\" (dream). Yeri likes that name because it's similar to Reveluv.", "website": "https://redvelvet-jp.net/en/", "subreddit": "/r/red_velvet", "center": [1701.5, 1068.5], "path": [[1694.5, 1062.5], [1707.5, 1062.5], [1707.5, 1073.5], [1694.5, 1073.5], [1694.5, 1062.5]]}, {"id": "twrjah", "submitted_by": "AURAequine", "name": "r/SGaP", "description": "So Great and PowerfulnRelated to a My Little Pony: Friendship is Magic character; Trixie.", "website": "", "subreddit": "/r/SGaP", "center": [1374.5, 1292.5], "path": [[1362.5, 1290.5], [1386.5, 1290.5], [1386.5, 1294.5], [1362.5, 1294.5]]}, {"id": "twrj8k", "submitted_by": "qwartal1", "name": "Pulsus", "description": "Pulsus is an online rhythm game for PC in which you hit incoming beats on a 3x3 tile board.", "website": "https://pulsus.cc", "subreddit": "/r/pulsus", "center": [680.5, 689.5], "path": [[674.5, 695.5], [680.5, 695.5], [680.5, 696.5], [683.5, 696.5], [683.5, 695.5], [686.5, 695.5], [686.5, 689.5], [687.5, 689.5], [687.5, 686.5], [686.5, 686.5], [686.5, 683.5], [680.5, 683.5], [680.5, 682.5], [677.5, 682.5], [677.5, 683.5], [674.5, 683.5], [674.5, 689.5], [673.5, 689.5], [673.5, 692.5], [674.5, 692.5], [674.5, 695.5]]}, -{"id": "twrj8e", "submitted_by": "lmN0tAR0b0t", "name": "Abenaki Flag", "description": "After struggling to find somewhere to keep their flag, the Abenaki (Indigenous Canadians) were given space by toki pona/parahumans", "website": "", "subreddit": "", "center": [1707.5, 228.5], "path": [[1705.5, 226.5], [1705.5, 226.5], [1705.5, 230.5], [1708.5, 230.5], [1708.5, 226.5]]}, +{"id": "twrj8e", "submitted_by": "lmN0tAR0b0t", "name": "Abenaki Flag", "description": "After struggling to find somewhere to keep their flag, the Abenaki (Indigenous Canadians) were given space by Toki Pona and r/Parahumans", "website": "https://en.wikipedia.org/wiki/Abenaki", "subreddit": "", "center": [1707.5, 228.5], "path": [[1705.5, 226.5], [1705.5, 226.5], [1705.5, 230.5], [1708.5, 230.5], [1708.5, 226.5]]}, {"id": "twriya", "submitted_by": "eXernox", "name": "Re:Zero Anime", "description": "3 main characters from Re:Zero anime: Emilia, Ram and Rem", "website": "", "subreddit": "/r/Re_Zero", "center": [1883.5, 810.5], "path": [[1868.5, 799.5], [1898.5, 799.5], [1898.5, 820.5], [1868.5, 820.5], [1868.5, 799.5]]}, {"id": "twrig2", "submitted_by": "veronie_", "name": "Mango the landshark", "description": "Mango is a landshark created by the swedish youtuber The Click.", "website": "", "subreddit": "", "center": [1740.5, 912.5], "path": [[1730.5, 922.5], [1749.5, 922.5], [1749.5, 902.5], [1730.5, 902.5]]}, {"id": "twribt", "submitted_by": "Maksiwood", "name": "Algerian Flag", "description": "A flag begun by the Algerian subreddit. However, people treid to turn its neighbours against the flag to destory it. Alongside that, the flag suffered a lot of bot attacks but with the help of Liverpool , the Algerian flag survived.", "website": "", "subreddit": "/r/Algeria", "center": [1617.5, 1594.5], "path": [[1533.5, 1609.5], [1533.5, 1579.5], [1700.5, 1579.5], [1700.5, 1609.5], [1533.5, 1609.5]]}, @@ -1217,8 +1136,7 @@ {"id": "twrhho", "submitted_by": "FlyingKiwiNZ", "name": "Mriya", "description": "The Antonov An-225 Mriya was a strategic airlift cargo aircraft designed in the 1980s in Ukraine. With a maximum takeoff weight of 640 tonnes (705 short tons), the An-225 held several records, including heaviest aircraft ever built and largest wingspan of any aircraft in operational service. The Mriya attracted a high degree of public interest, attaining a global following due to its size and its uniqueness. People frequently visited airports to see its scheduled arrivals and departures.nnThe An-225 was destroyed in the Battle of Antonov Airport during the 2022 Russian invasion of Ukraine.", "website": "", "subreddit": "/r/PlaceUkraine", "center": [259.5, 184.5], "path": [[239.5, 188.5], [239.5, 190.5], [243.5, 192.5], [245.5, 194.5], [251.5, 194.5], [254.5, 195.5], [259.5, 195.5], [260.5, 196.5], [275.5, 196.5], [275.5, 195.5], [277.5, 195.5], [277.5, 193.5], [283.5, 186.5], [283.5, 183.5], [276.5, 178.5], [276.5, 176.5], [251.5, 174.5], [251.5, 171.5], [243.5, 171.5], [243.5, 176.5], [241.5, 174.5], [239.5, 174.5], [239.5, 175.5], [238.5, 176.5], [237.5, 176.5], [236.5, 182.5], [237.5, 182.5], [237.5, 185.5], [239.5, 186.5], [240.5, 188.5], [240.5, 190.5], [242.5, 192.5]]}, {"id": "twrhg2", "submitted_by": "plasticflwr", "name": "Gege Akutami", "description": "Author and artist of the manga series Jujutsu Kaisen.", "website": "", "subreddit": "/r/JuJutsuKaisen", "center": [444.5, 1454.5], "path": [[435.5, 1448.5], [435.5, 1455.5], [436.5, 1459.5], [456.5, 1458.5], [455.5, 1453.5], [452.5, 1452.5], [452.5, 1451.5], [451.5, 1451.5], [451.5, 1449.5], [450.5, 1449.5], [450.5, 1448.5], [449.5, 1449.5], [435.5, 1448.5]]}, {"id": "twrhdo", "submitted_by": "gvp2053", "name": "Willem van oranje", "description": "In the Netherlands, he is also known as Father of the Fatherland (Pater Patriae) (Dutch: Vader des Vaderlands). was the main leader of the https://en.wikipedia.org/wiki/Dutch_Revolt against the Spanish https://en.wikipedia.org/wiki/Habsburg_Netherlands that set off the https://en.wikipedia.org/wiki/Eighty_Years%27_War (1568\u20131648) and resulted in the formal independence of the https://en.wikipedia.org/wiki/Dutch_Republic in 1581", "website": "https://en.wikipedia.org/wiki/William_the_Silent", "subreddit": "/r/Netherlands", "center": [1893.5, 19.5], "path": [[1891.5, 35.5], [1903.5, 35.5], [1905.5, 26.5], [1902.5, 17.5], [1901.5, 8.5], [1896.5, 3.5], [1885.5, 3.5], [1882.5, 7.5], [1881.5, 20.5], [1881.5, 26.5], [1892.5, 35.5]]}, -{"id": "twrhbj", "submitted_by": "P3verall", "name": "Magic the Gathering", "description": "A strategy card game originally published in 1993, now owned by Wizards of the Coast", "website": "https://magic.wizards.com/en/mtgarena?sub3=kwd-71606273799757%3Aloc-190&sub5=o", "subreddit": "/r/mtg", "center": [614.5, 1418.5], "path": [[587.5, 1387.5], [588.5, 1387.5], [588.5, 1384.5], [589.5, 1383.5], [636.5, 1383.5], [637.5, 1384.5], [643.5, 1383.5], [639.5, 1388.5], [644.5, 1393.5], [645.5, 1394.5], [642.5, 1396.5], [640.5, 1395.5], [639.5, 1396.5], [639.5, 1412.5], [642.5, 1414.5], [639.5, 1418.5], [641.5, 1425.5], [646.5, 1429.5], [651.5, 1426.5], [651.5, 1429.5], [642.5, 1429.5], [642.5, 1453.5], [588.5, 1451.5], [587.5, 1449.5]]}, -{"id": "twrhb5", "submitted_by": "C-EZ", "name": "Arc de Triomphe", "description": "This french monument in Paris honours soldiers who fought for France.", "website": "", "subreddit": "/r/France", "center": [123.5, 1868.5], "path": [[53.5, 1805.5], [189.5, 1805.5], [195.5, 1810.5], [195.5, 1828.5], [188.5, 1854.5], [189.5, 1933.5], [59.5, 1933.5], [58.5, 1876.5], [53.5, 1826.5]]}, +{"id": "twrhbj", "submitted_by": "mweepinc", "name": "Magic: The Gathering", "description": "The first trading card game, created by Richard Garfield and originally published in 1993 by Wizards of the Coast", "website": "https://magic.wizards.com/en/", "subreddit": "/r/magicTCG", "center": [614.5, 1418.5], "path": [[587.5, 1387.5], [588.5, 1387.5], [588.5, 1384.5], [589.5, 1383.5], [636.5, 1383.5], [637.5, 1384.5], [643.5, 1383.5], [639.5, 1388.5], [644.5, 1393.5], [645.5, 1394.5], [642.5, 1396.5], [640.5, 1395.5], [639.5, 1396.5], [639.5, 1412.5], [642.5, 1414.5], [639.5, 1418.5], [641.5, 1425.5], [646.5, 1429.5], [651.5, 1426.5], [651.5, 1429.5], [642.5, 1429.5], [642.5, 1453.5], [588.5, 1451.5], [587.5, 1449.5]]}, {"id": "twrh5l", "submitted_by": "spedeedeps", "name": "DGG 4 LYFE", "description": "Popular emotes from the Twitch/Youtube streamer Destiny's community, the Pepe and the Yee. These two emotes are depicted here as being friendly, even though in lore they eternally locked in a battle for supremacy, with Yee often times coming out on top.", "website": "https://destiny.gg", "subreddit": "/r/Destiny", "center": [1588.5, 91.5], "path": [[1561.5, 69.5], [1615.5, 69.5], [1615.5, 113.5], [1561.5, 113.5]]}, {"id": "twrh3g", "submitted_by": "Sarinyann", "name": "The Boyfriend", "description": "Main Hero of the game Friday Night Funkin", "website": "", "subreddit": "", "center": [956.5, 1924.5], "path": [[930.5, 1898.5], [981.5, 1898.5], [981.5, 1949.5], [930.5, 1949.5], [930.5, 1898.5]]}, {"id": "twrgwj", "submitted_by": "Klisurovi4", "name": "Unity makes strength", "description": "The national motto of Bulgaria", "website": "", "subreddit": "/r/Bulgaria", "center": [533.5, 396.5], "path": [[481.5, 392.5], [481.5, 399.5], [584.5, 399.5], [584.5, 392.5]]}, @@ -1248,19 +1166,17 @@ {"id": "twre65", "submitted_by": "iced_americano99", "name": "Kep1er", "description": "Kep1er is a 9 member K-pop project girl group formed through the Mnet survival show Girls Planet 999. They officially debuted on January 3, 2022, with the mini-album \u201cFIRST IMPACT\u201d and title track \u201cWA DA DA\u201c.", "website": "", "subreddit": "/r/kep1er", "center": [1652.5, 886.5], "path": [[1634.5, 880.5], [1669.5, 880.5], [1669.5, 891.5], [1634.5, 891.5], [1634.5, 880.5]]}, {"id": "twre3d", "submitted_by": "Jarwho-", "name": "Balisong Community Logos", "description": "A group of logos pertaining to the Balisong Knife Community. Featuring CamaroEE, Glidrco, Zippybalisong, Squid Industries, NRB and TheWillHirsch.", "website": "https://www.willhirsch.gay, https://www.squidindustries.co, https://www.nrbknives.com, https://www.glidr.co, https://www.zippybalisong.com, https://youtube.com/c/camaroEE", "subreddit": "/r/balisong", "center": [1811.5, 1202.5], "path": [[1800.5, 1195.5], [1801.5, 1195.5], [1800.5, 1195.5], [1795.5, 1204.5], [1795.5, 1208.5], [1815.5, 1208.5], [1814.5, 1206.5], [1818.5, 1207.5], [1818.5, 1208.5], [1826.5, 1207.5], [1826.5, 1195.5]]}, {"id": "twre2w", "submitted_by": "Xexanos", "name": "LilyPichu", "description": "Variety streamer (mainly music and games), YouTuber and voice actress.nnFriend of streamer Destiny which lead to the inclusion of her logo into the GigaChad", "website": "https://lilypichu.com/", "subreddit": "/r/lilypichu", "center": [1944.5, 1455.5], "path": [[1931.5, 1442.5], [1931.5, 1466.5], [1958.5, 1467.5], [1957.5, 1443.5], [1931.5, 1442.5]]}, -{"id": "twre1o", "submitted_by": "XDFloody", "name": "FeelsYabbeMan", "description": "A twitch emote of the twitch streamer Yabbe with a FeelsDonkMan hat.", "website": "twitch.tv/yabbe", "subreddit": "", "center": [660.5, 938.5], "path": [[656.5, 942.5], [656.5, 933.5], [664.5, 933.5], [664.5, 942.5]]}, +{"id": "twre1o", "submitted_by": "XDFloody", "name": "FeelsYabbeMan", "description": "A twitch emote of the twitch streamer Yabbe with a FeelsDonkMan hat.", "website": "https://twitch.tv/yabbe", "subreddit": "", "center": [660.5, 938.5], "path": [[656.5, 942.5], [656.5, 933.5], [664.5, 933.5], [664.5, 942.5]]}, {"id": "twrdy3", "submitted_by": "sopiix", "name": "Serbian cross", "description": "The Serbian Cross is a national symbol of Serbia, part of the coat of arms and flag of Serbia, and of the Serbian Orthodox Church. It is based on the tetragrammic cross emblem/flag of the Byzantine Palaiologos dynasty, with the difference that in Serbian use the cross is usually white on a red background, rather than gold on a red background (though it can be depicted in gold as well).", "website": "https://en.wikipedia.org/wiki/Serbian_cross", "subreddit": "/r/serbia", "center": [350.5, 897.5], "path": [[344.5, 891.5], [355.5, 891.5], [355.5, 902.5], [344.5, 902.5]]}, -{"id": "twrdu0", "submitted_by": "Penguin_Mania", "name": "CarlSagan42's Yoshi", "description": "A Yoshi head made by viewers of CarlSagan42's Twitch stream, with a long tongue snaking around various other drawings.", "website": "twitch.tv/carlsagan42", "subreddit": "", "center": [1846.5, 1267.5], "path": [[1835.5, 1258.5], [1856.5, 1258.5], [1856.5, 1276.5], [1835.5, 1276.5]]}, +{"id": "twrdu0", "submitted_by": "Penguin_Mania", "name": "CarlSagan42's Yoshi", "description": "A Yoshi head made by viewers of CarlSagan42's Twitch stream, with a long tongue snaking around various other drawings.", "website": "https://twitch.tv/carlsagan42", "subreddit": "", "center": [1846.5, 1267.5], "path": [[1835.5, 1258.5], [1856.5, 1258.5], [1856.5, 1276.5], [1835.5, 1276.5]]}, {"id": "twrdse", "submitted_by": "Zaborgar_Delta", "name": "Willem van Oranje (William of Orange)", "description": "William of Orange, leader of the Dutch Revolt in the 16th and 17th century and \u201cFather of the Fatherland\u201d.", "website": "https://www.canonvannederland.nl/en/willemvanoranje", "subreddit": "", "center": [1892.5, 19.5], "path": [[1890.5, 34.5], [1888.5, 34.5], [1888.5, 33.5], [1887.5, 33.5], [1887.5, 32.5], [1885.5, 32.5], [1885.5, 31.5], [1884.5, 31.5], [1884.5, 30.5], [1883.5, 30.5], [1883.5, 29.5], [1882.5, 29.5], [1882.5, 28.5], [1879.5, 25.5], [1879.5, 23.5], [1879.5, 21.5], [1880.5, 21.5], [1880.5, 18.5], [1881.5, 18.5], [1881.5, 13.5], [1880.5, 13.5], [1880.5, 10.5], [1881.5, 10.5], [1881.5, 10.5], [1881.5, 6.5], [1882.5, 6.5], [1882.5, 4.5], [1883.5, 4.5], [1883.5, 3.5], [1884.5, 3.5], [1884.5, 2.5], [1897.5, 2.5], [1897.5, 3.5], [1898.5, 4.5], [1900.5, 6.5], [1901.5, 6.5], [1901.5, 7.5], [1902.5, 8.5], [1902.5, 17.5], [1903.5, 18.5], [1904.5, 19.5], [1904.5, 22.5], [1906.5, 24.5], [1907.5, 25.5], [1907.5, 28.5], [1906.5, 28.5], [1906.5, 30.5], [1905.5, 30.5], [1905.5, 33.5], [1904.5, 33.5], [1903.5, 34.5]]}, -{"id": "twrdr7", "submitted_by": "newnative", "name": "Red Velvet Logo", "description": "The logo of Red Velvet, a South Korean k-pop girl group. The five colors on the rightmost end represents the five members of the group.", "website": "", "subreddit": "/r/red_velvet", "center": [1621.5, 892.5], "path": [[1607.5, 880.5], [1607.5, 902.5], [1645.5, 902.5], [1645.5, 898.5], [1632.5, 898.5], [1632.5, 880.5], [1616.5, 880.5], [1607.5, 880.5]]}, +{"id": "twrdr7", "submitted_by": "newnative", "name": "Red Velvet Logo", "description": "The logo of Red Velvet (RV), a South Korean girl group formed and managed by SM Entertainment. The group consists of members: Irene, Seulgi, Wendy, Joy and Yeri. Musically, the work of Red Velvet reflects their own group name: their predominantly-pop \"red\" side experiments occasionally with electronic, funk and hip hop, while their \"velvet\" side focuses on '90s-influenced R&B with elements of ballad and jazz. Their genre versatility and hooks have garnered critical praise. The five colors on the rightmost end of the name represents the five members of the group.", "website": "https://redvelvet-jp.net/en/", "subreddit": "/r/red_velvet", "center": [1621.5, 892.5], "path": [[1607.5, 880.5], [1607.5, 902.5], [1645.5, 902.5], [1645.5, 898.5], [1632.5, 898.5], [1632.5, 880.5], [1616.5, 880.5], [1607.5, 880.5]]}, {"id": "twrdq5", "submitted_by": "Rrait", "name": "VUTEZ", "description": "VUT FIT discord emote", "website": "https://www.su.fit.vutbr.cz/", "subreddit": "", "center": [1346.5, 585.5], "path": [[1330.5, 570.5], [1330.5, 599.5], [1361.5, 599.5], [1361.5, 570.5], [1330.5, 570.5]]}, {"id": "twrdot", "submitted_by": "AhThatsSjam", "name": "nu.nl ( Dutch news site )", "description": "A Dutch news website. It was founded in 1999", "website": "https://www.nu.nl/", "subreddit": "/r/PlaceNL", "center": [613.5, 1959.5], "path": [[607.5, 1951.5], [604.5, 1953.5], [603.5, 1958.5], [603.5, 1963.5], [604.5, 1964.5], [605.5, 1966.5], [607.5, 1967.5], [609.5, 1968.5], [610.5, 1969.5], [614.5, 1969.5], [615.5, 1968.5], [616.5, 1968.5], [617.5, 1967.5], [618.5, 1967.5], [619.5, 1966.5], [620.5, 1965.5], [620.5, 1964.5], [621.5, 1963.5], [621.5, 1962.5], [623.5, 1962.5], [624.5, 1961.5], [625.5, 1960.5], [625.5, 1959.5], [625.5, 1958.5], [624.5, 1957.5], [623.5, 1956.5], [621.5, 1956.5], [620.5, 1955.5], [619.5, 1954.5], [619.5, 1953.5], [618.5, 1952.5], [617.5, 1952.5], [616.5, 1951.5], [616.5, 1951.5], [615.5, 1951.5], [614.5, 1950.5], [610.5, 1950.5], [609.5, 1951.5]]}, -{"id": "twrdns", "submitted_by": "Patatelover434", "name": "Karmine Corp", "description": "#BlueWalln#RATIO KOIn#My CEO", "website": "", "subreddit": "", "center": [58.5, 1490.5], "path": [[41.5, 1475.5], [47.5, 1473.5], [54.5, 1473.5], [66.5, 1477.5], [72.5, 1484.5], [76.5, 1491.5], [70.5, 1508.5], [60.5, 1509.5], [52.5, 1503.5], [44.5, 1494.5], [38.5, 1482.5], [38.5, 1477.5]]}, -{"id": "twrd56", "submitted_by": "Amazonit", "name": "Imperial College", "description": "Logo of Imperial College London, with art of Queen's Tower and Central Library", "website": "www.imperial.ac.uk", "subreddit": "/r/imperial", "center": [531.5, 1446.5], "path": [[525.5, 1435.5], [525.5, 1446.5], [524.5, 1446.5], [524.5, 1460.5], [537.5, 1460.5], [537.5, 1431.5], [529.5, 1432.5]]}, +{"id": "twrd56", "submitted_by": "Amazonit", "name": "Imperial College", "description": "Logo of Imperial College London, with art of Queen's Tower and Central Library", "website": "https://www.imperial.ac.uk", "subreddit": "/r/imperial", "center": [531.5, 1446.5], "path": [[525.5, 1435.5], [525.5, 1446.5], [524.5, 1446.5], [524.5, 1460.5], [537.5, 1460.5], [537.5, 1431.5], [529.5, 1432.5]]}, {"id": "twrd2b", "submitted_by": "Rrait", "name": "VUT", "description": "Brno University of Technology (abbreviated: BUT; in Czech: Vysok\u00e9 u\u010den\u00ed technick\u00e9 v Brn\u011b \u2013 Czech abbreviation: VUT) is a university located in Brno, Czech Republic. Being founded in 1899 and initially offering a single course in civil engineering, it grew to become a major technical Czech university with over 18,000 students enrolled at 8 faculties and 2 university institutes.", "website": "https://www.vut.cz/", "subreddit": "", "center": [358.5, 799.5], "path": [[343.5, 780.5], [343.5, 818.5], [373.5, 818.5], [373.5, 780.5], [343.5, 780.5]]}, {"id": "twrd09", "submitted_by": "Maksiwood", "name": "Everton F.C.", "description": "Everton Football Club are an English football club from the city of Liverpool. The club currently competes in the Premier League and have played more seasons in the top league of English football than any other team.", "website": "", "subreddit": "/r/Everton", "center": [869.5, 702.5], "path": [[863.5, 693.5], [863.5, 710.5], [875.5, 710.5], [875.5, 693.5], [863.5, 693.5]]}, {"id": "twrczf", "submitted_by": "FlyingKiwiNZ", "name": "The Tryzub", "description": "The tryzub is the coat of arms of Ukraine - a blue shield with a gold trident. The insignia derives from the seal-trident of Volodymyr, the first Grand Prince of Kyiv.", "website": "", "subreddit": "/r/PlaceUkraine", "center": [204.5, 211.5], "path": [[205.5, 233.5], [219.5, 225.5], [219.5, 192.5], [188.5, 192.5], [188.5, 206.5], [190.5, 206.5], [190.5, 211.5], [191.5, 211.5], [191.5, 219.5], [190.5, 219.5], [190.5, 226.5], [203.5, 233.5], [202.5, 234.5], [205.5, 234.5], [206.5, 233.5], [205.5, 233.5]]}, -{"id": "twrcsb", "submitted_by": "eXernox", "name": "Sewayaki Kitsune no Senko-san", "description": "Rice cooker with a fox tail that represents anime: The Helpful Fox Senko-san", "website": "", "subreddit": "/r/SewayakiKitsune", "center": [0.5, 0.5], "path": []}, {"id": "twrcqt", "submitted_by": "sn0wbit2", "name": "six impala", "description": "The logo of the (super awesome) band six impala.", "website": "https://soundcloud.com/siximpala", "subreddit": "", "center": [1792.5, 82.5], "path": [[1787.5, 68.5], [1788.5, 71.5], [1786.5, 68.5], [1799.5, 68.5], [1799.5, 97.5], [1786.5, 97.5], [1786.5, 68.5]]}, {"id": "twrcmo", "submitted_by": "sopiix", "name": "Hram Svetog Save u Beogradu", "description": "Church of Saint Sava - is a Serbian Orthodox church which sits on the Vra\u010dar plateau in Belgrade, Serbia. It was planned as the bishopric seat and main cathedral of the Serbian Orthodox Church. The church is dedicated to Saint Sava, the founder of the Serbian Orthodox Church and an important figure in medieval Serbia.", "website": "https://en.wikipedia.org/wiki/Church_of_Saint_Sava", "subreddit": "/r/serbia", "center": [320.5, 899.5], "path": [[302.5, 905.5], [340.5, 905.5], [311.5, 890.5], [311.5, 892.5], [311.5, 891.5], [310.5, 893.5], [302.5, 901.5], [302.5, 904.5], [340.5, 906.5], [331.5, 890.5], [321.5, 886.5], [314.5, 891.5]]}, {"id": "twrclv", "submitted_by": "Aksyyy", "name": "ASEAN", "description": "The Flag of the Association of Southeast Asian Nations, or ASEAN", "website": "", "subreddit": "/r/Asean", "center": [1361.5, 660.5], "path": [[1374.5, 671.5], [1348.5, 671.5], [1348.5, 648.5], [1374.5, 648.5], [1374.5, 671.5]]}, @@ -1279,7 +1195,7 @@ {"id": "twrbdv", "submitted_by": "TwoMuchSicko", "name": "KingKontent", "description": "KingKontent is a Twitch streamer from the Netherlands. This pixel art was placed in the last 2 hours of r/Place. In allience with the people from r/bi_irl we made the backdrop a Bi flag.", "website": "https://kingkontent.me/", "subreddit": "", "center": [396.5, 1931.5], "path": [[379.5, 1918.5], [412.5, 1918.5], [412.5, 1943.5], [379.5, 1943.5], [379.5, 1918.5]]}, {"id": "twrb90", "submitted_by": "Mari_-", "name": "Madness Combat Sheriff/Grunt", "description": "Originally a grunt from the Madness Combat web series created by Krinkels, now the sheriff from Madness Combat 2: Redeemer.", "website": "", "subreddit": "/r/madnesscombat", "center": [209.5, 1235.5], "path": [[200.5, 1224.5], [218.5, 1224.5], [219.5, 1246.5], [200.5, 1245.5], [200.5, 1224.5]]}, {"id": "twrb7m", "submitted_by": "jobbo321", "name": "William of Orange", "description": "Also known as William the Silent. Famous leader of the Dutch Revolt against Spain which resulted in the formal independence of the United Provinces of the Netherlands.", "website": "", "subreddit": "/r/placeNL, and, /r/cirkeltrek", "center": [1893.5, 19.5], "path": [[1892.5, 3.5], [1885.5, 3.5], [1896.5, 3.5], [1897.5, 4.5], [1884.5, 4.5], [1899.5, 6.5], [1901.5, 9.5], [1901.5, 13.5], [1901.5, 20.5], [1902.5, 19.5], [1903.5, 21.5], [1903.5, 24.5], [1904.5, 25.5], [1905.5, 29.5], [1905.5, 28.5], [1904.5, 31.5], [1903.5, 33.5], [1901.5, 34.5], [1898.5, 34.5], [1891.5, 34.5], [1883.5, 28.5], [1883.5, 24.5], [1881.5, 20.5], [1883.5, 13.5], [1881.5, 11.5], [1883.5, 6.5], [1885.5, 4.5], [1892.5, 4.5], [1895.5, 3.5]]}, -{"id": "twrb77", "submitted_by": "Huxtley", "name": "Murder Crumpet", "description": "A Snorty and Shorty, Feminem, and sugar supreme cream swallowing machine!", "website": "www.twitch.tv/murdercrumpet", "subreddit": "", "center": [611.5, 1037.5], "path": [[598.5, 1012.5], [598.5, 1062.5], [624.5, 1062.5], [624.5, 1012.5], [598.5, 1012.5]]}, +{"id": "twrb77", "submitted_by": "Huxtley", "name": "Murder Crumpet", "description": "A Snorty and Shorty, Feminem, and sugar supreme cream swallowing machine!", "website": "https://www.twitch.tv/murdercrumpet", "subreddit": "", "center": [611.5, 1037.5], "path": [[598.5, 1012.5], [598.5, 1062.5], [624.5, 1062.5], [624.5, 1012.5], [598.5, 1012.5]]}, {"id": "twrb6c", "submitted_by": "AURAequine", "name": "Ponies Among Us", "description": "Ponified (Turned into or resembles pony characters) version of Among Us characters. nnContains the Mane 6 n- Twilight Sparklen- Applejackn- Pinkie Pien- Rainbow Dashn- Rarityn- Fluttershy", "website": "", "subreddit": "", "center": [935.5, 1761.5], "path": [[933.5, 1745.5], [936.5, 1745.5], [936.5, 1777.5], [933.5, 1777.5]]}, {"id": "twrb5p", "submitted_by": "Kuvfefe", "name": "monkeytype", "description": "The logo of monkeytype, a community all about typing on the website monkeytype.com, made with the help of r/mk or r/mechanicalkeyboards, a similar community focusing on making custom keyboards.", "website": "https://monkeytype.com", "subreddit": "/r/monkeytype, /r/mechanicalkeyboards", "center": [623.5, 1322.5], "path": [[590.5, 1301.5], [643.5, 1301.5], [643.5, 1323.5], [650.5, 1323.5], [650.5, 1328.5], [669.5, 1328.5], [670.5, 1335.5], [674.5, 1339.5], [672.5, 1341.5], [670.5, 1339.5], [650.5, 1339.5], [650.5, 1344.5], [633.5, 1344.5], [633.5, 1338.5], [590.5, 1338.5], [590.5, 1301.5]]}, {"id": "twrb47", "submitted_by": "Bonfim_BR", "name": "Michael Gould", "description": "Michael Gould from the FNaF fancomic Children: Rekindled. It was originally built higher up, but had to lower its position due to the Berserker memorial. It was under constant threat by the FNaF logo to the left, whose members wanted to continuously change it into Freddy or a normal Crying Child. It was also wiped out during the streamer attack, and was turned by FNaF fans into Fredbear at one point, but managed to rebuild before the end. It was an uphill battle to keep it alive since it was so small and only maintained by five or six people at most.", "website": "https://www.children-rekindled.top/", "subreddit": "", "center": [685.5, 280.5], "path": [[688.5, 281.5], [688.5, 278.5], [683.5, 278.5], [683.5, 283.5], [687.5, 283.5], [687.5, 282.5]]}, @@ -1304,7 +1220,6 @@ {"id": "twr8c9", "submitted_by": "GoJoeyGo123", "name": "Spike Spiegel", "description": "Spike Spiegel is a character from the 1998 anime Cowboy Bebop", "website": "https://en.wikipedia.org/wiki/Spike_Spiegel", "subreddit": "/r/cowboybebop", "center": [1245.5, 1545.5], "path": [[1226.5, 1492.5], [1227.5, 1492.5], [1227.5, 1491.5], [1284.5, 1491.5], [1284.5, 1492.5], [1285.5, 1492.5], [1285.5, 1505.5], [1286.5, 1504.5], [1287.5, 1505.5], [1286.5, 1506.5], [1285.5, 1507.5], [1285.5, 1607.5], [1284.5, 1607.5], [1284.5, 1608.5], [1227.5, 1608.5], [1227.5, 1607.5], [1226.5, 1607.5], [1226.5, 1585.5], [1227.5, 1584.5], [1228.5, 1583.5], [1229.5, 1582.5], [1230.5, 1582.5], [1230.5, 1580.5], [1230.5, 1580.5], [1227.5, 1580.5], [1226.5, 1581.5], [1226.5, 1567.5], [1225.5, 1566.5], [1224.5, 1564.5], [1223.5, 1562.5], [1222.5, 1561.5], [1221.5, 1561.5], [1220.5, 1561.5], [1219.5, 1560.5], [1218.5, 1559.5], [1217.5, 1558.5], [1216.5, 1557.5], [1215.5, 1556.5], [1214.5, 1555.5], [1213.5, 1554.5], [1212.5, 1553.5], [1213.5, 1552.5], [1212.5, 1551.5], [1211.5, 1552.5], [1210.5, 1551.5], [1209.5, 1550.5], [1208.5, 1549.5], [1208.5, 1548.5], [1207.5, 1548.5], [1206.5, 1547.5], [1206.5, 1546.5], [1205.5, 1546.5], [1204.5, 1545.5], [1204.5, 1544.5], [1201.5, 1544.5], [1201.5, 1542.5], [1200.5, 1541.5], [1199.5, 1542.5], [1198.5, 1541.5], [1199.5, 1540.5], [1197.5, 1540.5], [1196.5, 1539.5], [1194.5, 1539.5], [1194.5, 1538.5], [1193.5, 1537.5], [1190.5, 1537.5], [1190.5, 1535.5], [1188.5, 1535.5], [1188.5, 1533.5], [1187.5, 1532.5], [1186.5, 1531.5], [1187.5, 1530.5], [1186.5, 1529.5], [1185.5, 1529.5], [1184.5, 1530.5], [1184.5, 1531.5], [1185.5, 1532.5], [1184.5, 1533.5], [1183.5, 1533.5], [1182.5, 1532.5], [1181.5, 1533.5], [1182.5, 1534.5], [1181.5, 1535.5], [1180.5, 1536.5], [1178.5, 1536.5], [1177.5, 1537.5], [1176.5, 1536.5], [1175.5, 1535.5], [1174.5, 1534.5], [1172.5, 1534.5], [1171.5, 1533.5], [1171.5, 1530.5], [1172.5, 1530.5], [1172.5, 1527.5], [1171.5, 1526.5], [1170.5, 1525.5], [1169.5, 1524.5], [1168.5, 1523.5], [1168.5, 1520.5], [1167.5, 1521.5], [1166.5, 1520.5], [1167.5, 1519.5], [1169.5, 1518.5], [1170.5, 1518.5], [1171.5, 1517.5], [1172.5, 1516.5], [1173.5, 1515.5], [1174.5, 1514.5], [1175.5, 1513.5], [1177.5, 1513.5], [1178.5, 1512.5], [1179.5, 1511.5], [1180.5, 1510.5], [1181.5, 1510.5], [1182.5, 1509.5], [1183.5, 1509.5], [1184.5, 1508.5], [1185.5, 1507.5], [1189.5, 1507.5], [1190.5, 1506.5], [1191.5, 1506.5], [1192.5, 1505.5], [1193.5, 1506.5], [1194.5, 1505.5], [1196.5, 1504.5], [1196.5, 1505.5], [1197.5, 1506.5], [1198.5, 1507.5], [1199.5, 1507.5], [1200.5, 1506.5], [1201.5, 1507.5], [1201.5, 1508.5], [1204.5, 1508.5], [1204.5, 1509.5], [1205.5, 1510.5], [1206.5, 1509.5], [1207.5, 1510.5], [1208.5, 1511.5], [1209.5, 1512.5], [1210.5, 1513.5], [1211.5, 1513.5], [1212.5, 1514.5], [1212.5, 1515.5], [1213.5, 1516.5], [1214.5, 1516.5], [1215.5, 1516.5], [1215.5, 1517.5], [1217.5, 1517.5], [1217.5, 1518.5], [1218.5, 1519.5], [1219.5, 1519.5], [1219.5, 1520.5], [1219.5, 1524.5], [1218.5, 1525.5], [1217.5, 1526.5], [1216.5, 1526.5], [1216.5, 1527.5], [1215.5, 1528.5], [1214.5, 1528.5], [1214.5, 1529.5], [1213.5, 1530.5], [1213.5, 1533.5], [1212.5, 1533.5], [1211.5, 1534.5], [1211.5, 1535.5], [1210.5, 1536.5], [1211.5, 1537.5], [1211.5, 1540.5], [1212.5, 1541.5], [1212.5, 1542.5], [1213.5, 1543.5], [1213.5, 1545.5], [1214.5, 1546.5], [1215.5, 1545.5], [1216.5, 1546.5], [1216.5, 1547.5], [1217.5, 1547.5], [1218.5, 1549.5], [1219.5, 1550.5], [1219.5, 1551.5], [1220.5, 1552.5], [1220.5, 1553.5], [1221.5, 1554.5], [1221.5, 1555.5], [1222.5, 1556.5], [1222.5, 1558.5], [1222.5, 1559.5], [1224.5, 1559.5], [1223.5, 1556.5], [1223.5, 1551.5], [1222.5, 1550.5], [1221.5, 1549.5], [1220.5, 1548.5], [1219.5, 1546.5], [1218.5, 1547.5], [1217.5, 1546.5], [1216.5, 1545.5], [1216.5, 1543.5], [1215.5, 1542.5], [1214.5, 1542.5], [1213.5, 1540.5], [1212.5, 1539.5], [1212.5, 1537.5], [1214.5, 1537.5], [1213.5, 1536.5], [1213.5, 1534.5], [1214.5, 1534.5], [1215.5, 1532.5], [1216.5, 1532.5], [1215.5, 1531.5], [1216.5, 1530.5], [1217.5, 1530.5], [1217.5, 1527.5], [1218.5, 1527.5], [1218.5, 1525.5], [1219.5, 1525.5], [1220.5, 1524.5], [1220.5, 1524.5], [1220.5, 1521.5], [1222.5, 1521.5], [1223.5, 1520.5], [1224.5, 1519.5], [1225.5, 1519.5], [1225.5, 1513.5], [1226.5, 1513.5]]}, {"id": "twr84w", "submitted_by": "CanIEatYourAssPlease", "name": "Mini Mando", "description": "Hidden in amongst the cell community, a mandalorian helmet was built in memorial of another piece of artwork that was destroyed by raids. The colour was changed to those of the non-binary flag in solidarity with the surrounding cells.", "website": "", "subreddit": "", "center": [1622.5, 200.5], "path": [[1618.5, 196.5], [1619.5, 196.5], [1625.5, 196.5], [1625.5, 204.5], [1618.5, 204.5]]}, {"id": "twr83d", "submitted_by": "Polandball2021", "name": "Felps", "description": "Felps is a brazilian streamer, he loves the '-' face", "website": "https://www.twitch.com/felps", "subreddit": "/r/felps", "center": [1664.5, 1928.5], "path": [[1679.5, 1918.5], [1648.5, 1918.5], [1648.5, 1918.5], [1648.5, 1918.5], [1648.5, 1938.5], [1679.5, 1938.5]]}, -{"id": "twr82d", "submitted_by": "Josdab", "name": "Mjolnir", "description": "The hammer and main weapon of Thor", "website": "", "subreddit": "/r/Marvel_Place", "center": [0.5, 0.5], "path": []}, {"id": "twr7ui", "submitted_by": "j0nchan", "name": "UBC Logo", "description": "Logo of the University of British Columbia, a public research university with campuses in Vancouver and in Kelowna, British Columbia, Canada.", "website": "https://www.ubc.ca/", "subreddit": "/r/UBC", "center": [184.5, 540.5], "path": [[175.5, 528.5], [175.5, 552.5], [193.5, 552.5], [193.5, 528.5], [175.5, 528.5]]}, {"id": "twr7u0", "submitted_by": "Melter30", "name": "German Flag", "description": "The original German Flag on r/place", "website": "", "subreddit": "", "center": [356.5, 851.5], "path": [[1.5, 828.5], [771.5, 837.5], [771.5, 865.5], [0.5, 873.5], [0.5, 828.5]]}, {"id": "twr7ta", "submitted_by": "ThatWaterSword", "name": "Suriname heart", "description": "A small heart of the Suriname flag, made by the Dutch community. nThe Netherlands has a large Surinamese population.", "website": "", "subreddit": "/r/placeNL", "center": [359.5, 35.5], "path": [[357.5, 33.5], [358.5, 33.5], [359.5, 34.5], [360.5, 33.5], [361.5, 33.5], [362.5, 34.5], [362.5, 35.5], [362.5, 36.5], [361.5, 37.5], [360.5, 38.5], [359.5, 39.5], [358.5, 38.5], [357.5, 37.5], [356.5, 36.5], [356.5, 35.5], [356.5, 34.5]]}, @@ -1317,11 +1232,10 @@ {"id": "twr6z3", "submitted_by": "WackyPinion", "name": "Kuchipatchi", "description": "A sprite of the character Kuchipatchi, from the Tamagotchi series of virtual pet toys. Besides him are a heart icon, indicating he's happy, and also a poop.", "website": "https://tamagotchi.com/", "subreddit": "/r/tamagotchi", "center": [312.5, 750.5], "path": [[302.5, 743.5], [321.5, 743.5], [321.5, 757.5], [302.5, 757.5]]}, {"id": "twr6wr", "submitted_by": "Maksiwood", "name": "The Liverbird", "description": "A mural by members of the subreddit, it shows the iconic liverbird, 6 starts for 6 champion leagues, the wall of champions, the eternal flames and YNWA.", "website": "", "subreddit": "/r/LiverpoolFC", "center": [1228.5, 537.5], "path": [[1207.5, 507.5], [1207.5, 567.5], [1249.5, 567.5], [1249.5, 562.5], [1250.5, 562.5], [1250.5, 507.5], [1207.5, 507.5], [1207.5, 507.5]]}, {"id": "twr6mr", "submitted_by": "Erol123449", "name": ":GrassAutism:", "description": "an emote from a small discord community mainly about Brawlhalla, but also just generally about games and hobbysn", "website": "https://invite.gg/shirosdojo", "subreddit": "/r/Brawlhalla", "center": [1569.5, 1295.5], "path": [[1564.5, 1292.5], [1573.5, 1292.5], [1573.5, 1297.5], [1564.5, 1297.5]]}, -{"id": "twr66e", "submitted_by": "davespriteegg", "name": "Vernba (Splatoon OC)", "description": "An inside joke among friends and fans of the Splatoon lore youtuber, Rassicas. It's the head of Rassica's Splatoon Inkling OC named Verna Rassica. when he gets drawn in a more gremlin-like way, like shown here, he's dubbed \"Vernba.\"", "website": "https://www.youtube.com/c/rassicas/", "subreddit": "", "center": [1119.5, 1621.5], "path": [[1106.5, 1622.5], [1106.5, 1622.5], [1110.5, 1618.5], [1111.5, 1616.5], [1114.5, 1613.5], [1115.5, 1613.5], [1116.5, 1612.5], [1121.5, 1612.5], [1122.5, 1613.5], [1123.5, 1613.5], [1124.5, 1614.5], [1125.5, 1615.5], [1126.5, 1616.5], [1127.5, 1617.5], [1127.5, 1619.5], [1128.5, 1619.5], [1129.5, 1620.5], [1130.5, 1620.5], [1131.5, 1621.5], [1132.5, 1622.5], [1131.5, 1623.5], [1130.5, 1624.5], [1129.5, 1624.5], [1128.5, 1625.5], [1126.5, 1625.5], [1126.5, 1626.5], [1127.5, 1627.5], [1126.5, 1628.5], [1125.5, 1629.5], [1124.5, 1630.5], [1123.5, 1630.5], [1122.5, 1630.5], [1121.5, 1630.5], [1120.5, 1629.5], [1115.5, 1629.5], [1114.5, 1630.5], [1112.5, 1630.5], [1109.5, 1627.5], [1110.5, 1626.5], [1110.5, 1625.5], [1109.5, 1625.5], [1106.5, 1622.5], [1107.5, 1621.5]]}, +{"id": "twr66e", "submitted_by": "davespriteegg", "name": "Vernba (Splatoon OC)", "description": "An inside joke among friends and fans of the Splatoon lore youtuber, Rassicas. It's the head of Rassica's Splatoon Inkling OC named Verna Rassica. when he gets drawn in a more gremlin-like way, like shown here, he's dubbed \"Vernba.\"", "website": "https://www.youtube.com/c/rassicas/", "subreddit": "", "center": [1119.5, 1621.5], "path": [[1105.5, 1631.5], [1105.5, 1621.5], [1106.5, 1621.5], [1107.5, 1621.5], [1108.5, 1620.5], [1109.5, 1619.5], [1110.5, 1618.5], [1110.5, 1611.5], [1129.5, 1611.5], [1128.5, 1612.5], [1127.5, 1613.5], [1126.5, 1615.5], [1126.5, 1616.5], [1127.5, 1617.5], [1127.5, 1618.5], [1128.5, 1619.5], [1129.5, 1620.5], [1130.5, 1620.5], [1131.5, 1621.5], [1132.5, 1622.5], [1132.5, 1624.5], [1131.5, 1625.5], [1131.5, 1631.5], [1105.5, 1631.5]]}, {"id": "twr65b", "submitted_by": "HogoX", "name": "Stu", "description": "A small town celebrity that has won hearts of eva fans and became discord mascot.", "website": "https://www.instagram.com/____stu_____/", "subreddit": "", "center": [646.5, 1398.5], "path": [[640.5, 1396.5], [640.5, 1402.5], [649.5, 1402.5], [649.5, 1398.5], [653.5, 1398.5], [653.5, 1395.5], [646.5, 1395.5], [646.5, 1396.5], [640.5, 1396.5]]}, {"id": "twr62j", "submitted_by": "FlyingKiwiNZ", "name": "Come Back Alive", "description": "Come Back Alive is a Ukrainian non-governmental organization that emerged to help the Ukrainian military during the War in Donbas on the basis of crowdfunding, and continued to help the Ukrainian military during the 2022 Russian invasion of Ukraine.", "website": "https://comebackalive.in.ua", "subreddit": "/r/PlaceUkraine", "center": [55.5, 219.5], "path": [[2.5, 215.5], [2.5, 223.5], [108.5, 223.5], [108.5, 215.5], [2.5, 215.5]]}, {"id": "twr5za", "submitted_by": "PhaseMajestic4242", "name": "Zoil", "description": "Face of a TikTok react streamer on Twitch", "website": "https://www.twitch.tv/zoil", "subreddit": "/r/Zoil", "center": [1619.5, 930.5], "path": [[1592.5, 909.5], [1608.5, 909.5], [1608.5, 905.5], [1644.5, 905.5], [1644.5, 955.5], [1603.5, 955.5], [1592.5, 945.5]]}, -{"id": "twr5wd", "submitted_by": "Fuizaidomineer", "name": "Trash Taste Podcast Chris Broad Ironmouse", "description": "Trash Taste is a weekly audio and video podcast hosted by Joey Bizinger (The Anime Man), Garnt Maneetapho (Gigguk), and Connor Colquhoun (CDawgVA) - three Tokyo-based content creators primarily focusing on anime and Japanese pop culture. The podcast generally discusses Japanese culture and life in Japan. Youtuber Chris Broad's name is shown due to his frequent guest appearences to the podcast. On the bottom, the following people are featured from left to right: intern Ashley, editor Mudan, Vtuber Ironmouse, Youtubers Sydsnap and Akidearest, wrestler Ladybeard, cosplayer Shibuya Kaho, manager Meilyne Tran, Chris Broad, Gigguk in a clown suit, The Anime Man in a banana suit, and CDawgVA in a monkey suit during their 24 hour charity stream.", "website": "https://www.youtube.com/channel/UCcmxOGYGF51T1XsqQLewGtQ", "subreddit": "/r/TrashTaste", "center": [0.5, 0.5], "path": []}, {"id": "twr5ui", "submitted_by": "j0nchan", "name": "UBC Coat of Arms", "description": "Coat of Arms of the University of British Columbia, a public research university with campuses in Vancouver and in Kelowna, British Columbia, Canada.", "website": "https://www.ubc.ca/", "subreddit": "/r/UBC", "center": [1221.5, 47.5], "path": [[1213.5, 36.5], [1213.5, 54.5], [1215.5, 56.5], [1217.5, 58.5], [1219.5, 59.5], [1224.5, 59.5], [1226.5, 57.5], [1229.5, 55.5], [1229.5, 36.5], [1213.5, 36.5]]}, {"id": "twr5r6", "submitted_by": "baking_soap", "name": "4 pixel duck", "description": "a 4 pixel mallard duck", "website": "", "subreddit": "", "center": [1359.5, 105.5], "path": [[1358.5, 106.5], [1359.5, 106.5], [1359.5, 105.5], [1360.5, 105.5]]}, {"id": "twr5eb", "submitted_by": "Sarinyann", "name": "BTS Logo", "description": "BTS Logo made by French Streamers in order to tell the BTS Group that they are not their ennemis", "website": "", "subreddit": "", "center": [1120.5, 1467.5], "path": [[1096.5, 1416.5], [1095.5, 1518.5], [1144.5, 1518.5], [1144.5, 1416.5], [1118.5, 1416.5], [1096.5, 1416.5]]}, @@ -1339,9 +1253,8 @@ {"id": "twr3x2", "submitted_by": "Linkcool200", "name": "OnlyNekos Logo", "description": "A specialized logo made specifically for r/place, representing the twitch group OnlyNekos, which includes (Going clockwise starting from the top.) Kromia, Totless, Asby, and Krisuna.", "website": "https://www.twitch.tv/team/onlynekos", "subreddit": "", "center": [1597.5, 1448.5], "path": [[1586.5, 1477.5], [1610.5, 1477.5], [1620.5, 1469.5], [1620.5, 1451.5], [1627.5, 1451.5], [1627.5, 1439.5], [1616.5, 1424.5], [1605.5, 1420.5], [1591.5, 1420.5], [1580.5, 1424.5], [1572.5, 1433.5], [1570.5, 1434.5], [1569.5, 1454.5], [1574.5, 1456.5], [1574.5, 1460.5], [1571.5, 1463.5], [1575.5, 1469.5], [1578.5, 1469.5], [1579.5, 1470.5], [1579.5, 1472.5], [1581.5, 1474.5]]}, {"id": "twr3w8", "submitted_by": "yamirzmmdx", "name": "In honour of Syd", "description": "In honour of Syd, a 16 year old fan whom got diagnosed with a brain tumor and is going into surgery on April 13th. LiverpoolFC made it for her, together with The Stanley Parable and other neighbors right next to it it got defended until the last moment. She will never walk alone, all the best to her! <3", "website": "", "subreddit": "/r/LiverpoolFC", "center": [523.5, 535.5], "path": [[520.5, 529.5], [527.5, 529.5], [527.5, 541.5], [519.5, 541.5], [519.5, 529.5], [527.5, 529.5]]}, {"id": "twr3re", "submitted_by": "Sarinyann", "name": "VShojo Girls", "description": "From left to right : ProjektMelody, Nyanners, Silvervale, IronMouse, Froot. A group of English Vtuber", "website": "https://www.vshojo.com", "subreddit": "", "center": [1451.5, 1186.5], "path": [[1415.5, 1172.5], [1414.5, 1200.5], [1488.5, 1200.5], [1489.5, 1172.5], [1487.5, 1172.5], [1415.5, 1172.5], [1414.5, 1172.5], [1414.5, 1200.5]]}, -{"id": "twr2zq", "submitted_by": "Basti1910", "name": "Benson", "description": "An Emote of Twitch Streamer Tubbo", "website": "twitch.tv/Tubbo", "subreddit": "", "center": [863.5, 1412.5], "path": [[839.5, 1385.5], [839.5, 1439.5], [887.5, 1439.5], [887.5, 1385.5]]}, +{"id": "twr2zq", "submitted_by": "Basti1910", "name": "Benson", "description": "An Emote of Twitch Streamer Tubbo", "website": "https://twitch.tv/Tubbo", "subreddit": "", "center": [863.5, 1412.5], "path": [[839.5, 1385.5], [839.5, 1439.5], [887.5, 1439.5], [887.5, 1385.5]]}, {"id": "twr2vr", "submitted_by": "ThorwaldHD", "name": "Nina", "description": "Nina a charachter from the dutch tv series called nijnte or more known as miffy", "website": "https://en.wikipedia.org/wiki/Miffy", "subreddit": "/r/PlaceNL", "center": [775.5, 24.5], "path": [[764.5, 11.5], [780.5, 11.5], [788.5, 25.5], [789.5, 35.5], [765.5, 35.5], [765.5, 35.5], [764.5, 24.5], [764.5, 35.5], [764.5, 21.5], [764.5, 16.5]]}, -{"id": "twr2s3", "submitted_by": "FireBurnsRed", "name": "Hades - Sigil of the Dead", "description": "Hades is a god-like rogue-like dungeon crawler that combines the best aspects of Supergiant's critically acclaimed titles, including the fast-paced action of Bastion, the rich atmosphere and depth of Transistor, and the character-driven storytelling of Pyre.", "website": "https://www.supergiantgames.com/games/hades/", "subreddit": "/r/HadesTheGame", "center": [0.5, 0.5], "path": []}, {"id": "twr2qu", "submitted_by": "Melter30", "name": "Mist", "description": "The Iconic Voice Line of Bernd das Brot", "website": "", "subreddit": "", "center": [229.5, 838.5], "path": [[217.5, 844.5], [217.5, 842.5], [218.5, 842.5], [218.5, 834.5], [220.5, 833.5], [239.5, 833.5], [240.5, 842.5], [240.5, 843.5], [222.5, 843.5], [222.5, 844.5], [217.5, 844.5]]}, {"id": "twr24v", "submitted_by": "mizuPepe", "name": "Kitagawa Marin", "description": "Chibi rendition of the protagonist of the anime & manga series My Dress-up Darling", "website": "https://discord.gg/vh5zRNY", "subreddit": "/r/SonoBisqueDoll", "center": [1678.5, 706.5], "path": [[1664.5, 691.5], [1665.5, 722.5], [1688.5, 722.5], [1688.5, 710.5], [1694.5, 710.5], [1695.5, 702.5], [1687.5, 694.5], [1687.5, 690.5], [1664.5, 690.5]]}, {"id": "twr1y9", "submitted_by": "FlyingKiwiNZ", "name": "The Ghost of Kyiv", "description": "The Ghost of Kyiv is the nickname given to a MiG-29 Fulcrum flying ace credited with shooting down six Russian planes over Kyiv during the Kyiv offensive.", "website": "", "subreddit": "/r/PlaceUkraine", "center": [411.5, 221.5], "path": [[381.5, 194.5], [385.5, 199.5], [387.5, 203.5], [392.5, 210.5], [395.5, 216.5], [399.5, 219.5], [398.5, 221.5], [404.5, 226.5], [404.5, 228.5], [406.5, 232.5], [408.5, 233.5], [409.5, 235.5], [409.5, 232.5], [411.5, 233.5], [411.5, 243.5], [414.5, 244.5], [421.5, 236.5], [424.5, 236.5], [427.5, 235.5], [427.5, 233.5], [429.5, 233.5], [429.5, 231.5], [431.5, 230.5], [433.5, 230.5], [433.5, 224.5], [428.5, 225.5], [428.5, 223.5], [423.5, 223.5], [425.5, 222.5], [428.5, 222.5], [428.5, 221.5], [432.5, 221.5], [431.5, 219.5], [430.5, 218.5], [405.5, 208.5], [404.5, 208.5], [403.5, 207.5], [402.5, 206.5], [401.5, 205.5], [399.5, 203.5], [397.5, 202.5], [396.5, 201.5], [393.5, 201.5], [391.5, 200.5], [390.5, 199.5], [387.5, 198.5], [386.5, 198.5], [381.5, 194.5]]}, @@ -1358,14 +1271,12 @@ {"id": "twr0r3", "submitted_by": "javahello", "name": "Flag of Palau", "description": "Made in collaboration with r/Taiwan and others.", "website": "https://www.reddit.com/r/Palau/comments/ttykuv/palauan_flag_on_rplace/", "subreddit": "/r/Palau", "center": [1207.5, 1267.5], "path": [[1203.5, 1264.5], [1203.5, 1269.5], [1213.5, 1269.5], [1208.5, 1264.5], [1203.5, 1264.5]]}, {"id": "twr0ql", "submitted_by": "Maximum-Variation106", "name": "", "description": "2 of the Legendary Vtubers", "website": "https://www.youtube.com/c/ksonONAIR, https://www.youtube.com/c/AIChannel", "subreddit": "/r/kson_ONAIR, and, /r/VirtualYoutubers", "center": [1361.5, 913.5], "path": [[1354.5, 902.5], [1354.5, 920.5], [1357.5, 925.5], [1366.5, 925.5], [1368.5, 919.5], [1369.5, 908.5], [1368.5, 902.5], [1361.5, 902.5]]}, {"id": "twr0nb", "submitted_by": "yamirzmmdx", "name": "In Klopp We Trust", "description": "In honour of one of the greatest manager and human being.nWe battled a shit streamer invading Algeria and secured victory numerous times. Fuck Peru streamer that took our orginal spot.nCORNER TAKEN QUICKLY, ORIGI!nYNWA.n", "website": "", "subreddit": "/r/LiverpoolFC", "center": [1632.5, 1565.5], "path": [[1594.5, 1539.5], [1594.5, 1579.5], [1700.5, 1579.5], [1700.5, 1570.5], [1684.5, 1570.5], [1684.5, 1573.5], [1685.5, 1574.5], [1668.5, 1573.5], [1668.5, 1557.5], [1620.5, 1557.5], [1620.5, 1539.5], [1594.5, 1539.5]]}, -{"id": "twr06j", "submitted_by": "LeeZY_Cloudy", "name": "Grundgesetzbuch", "description": "Germanys most fundemental book of law.", "website": "https://www.gesetze-im-internet.de/gg/BJNR000010949.html", "subreddit": "/r/placeDE", "center": [0.5, 0.5], "path": []}, {"id": "twqzsb", "submitted_by": "admiraal_anaal69", "name": "Stromae", "description": "the face of the belgian artist Stromae", "website": "", "subreddit": "/r/belgium", "center": [1308.5, 1793.5], "path": [[1298.5, 1813.5], [1306.5, 1819.5], [1311.5, 1812.5], [1312.5, 1811.5], [1314.5, 1806.5], [1322.5, 1805.5], [1323.5, 1796.5], [1326.5, 1793.5], [1322.5, 1790.5], [1321.5, 1783.5], [1321.5, 1778.5], [1318.5, 1777.5], [1313.5, 1775.5], [1307.5, 1773.5], [1301.5, 1772.5], [1297.5, 1776.5], [1293.5, 1785.5], [1294.5, 1793.5], [1297.5, 1797.5], [1298.5, 1801.5], [1299.5, 1813.5]]}, {"id": "twqzm5", "submitted_by": "BlazingFire007", "name": "University of Alabama", "description": "The University of Alabama. Most notably known for its football program.", "website": "https://www.ua.edu/", "subreddit": "/r/rolltide", "center": [1520.5, 1731.5], "path": [[1512.5, 1723.5], [1512.5, 1739.5], [1527.5, 1739.5], [1527.5, 1723.5], [1512.5, 1723.5]]}, {"id": "twqzhw", "submitted_by": "Veilmisk", "name": "TWICE", "description": "A female K-Pop group composed of 9 members. The colored squares on the left represent each member's assigned color and the lollipop next to the logo is a candy bong lightstick.", "website": "https://mobile.twitter.com/jypetwice?lang=en", "subreddit": "/r/twice", "center": [1566.5, 881.5], "path": [[1525.5, 870.5], [1587.5, 870.5], [1587.5, 897.5], [1558.5, 897.5], [1558.5, 876.5], [1525.5, 876.5]]}, {"id": "twqzg7", "submitted_by": "Enframed", "name": "Oliver Tree", "description": "r/OliverTree's pixel-art rendition of Oliver Tree's Alien Boy EP Coverart.", "website": "", "subreddit": "/r/olivertree", "center": [650.5, 1309.5], "path": [[645.5, 1304.5], [654.5, 1304.5], [654.5, 1313.5], [645.5, 1313.5]]}, {"id": "twqz0o", "submitted_by": "Adarain", "name": "Conlang flag", "description": "The flag for constructed languages. Constructed languages are languages created by people as an artform, as experiments to push the boundaries of what language can and cannot do, or to try to help people from different backgrounds communicate with one another. The flag depicts a stylized version of the Tower of Babel in front of a rising sun.", "website": "https://conlang.org/conlang-flag/", "subreddit": "/r/conlangs", "center": [735.5, 329.5], "path": [[732.5, 326.5], [732.5, 331.5], [738.5, 331.5], [738.5, 326.5], [732.5, 326.5]]}, {"id": "twqyg2", "submitted_by": "OKamers", "name": "Romelu Lukaku and Kevin De Bruyne", "description": "Remake of an iconic picture from the 2014 World Cup in Brazil.", "website": "https://sportmagazine.knack.be/medias/14435/7391149.jpg", "subreddit": "/r/belgium", "center": [1308.5, 1395.5], "path": [[1310.5, 1370.5], [1306.5, 1369.5], [1304.5, 1370.5], [1306.5, 1373.5], [1285.5, 1394.5], [1286.5, 1403.5], [1292.5, 1411.5], [1297.5, 1411.5], [1330.5, 1411.5], [1330.5, 1395.5], [1324.5, 1386.5], [1313.5, 1375.5], [1315.5, 1370.5], [1310.5, 1369.5]]}, -{"id": "twqy9f", "submitted_by": "Garchomprocks", "name": "Leaves From the Vine", "description": "A depiction of a scene from Avatar: The Last Airbender of Uncle Iroh mourning his son Lu Ten. This scene was also used by the show to pay tribute to Mako, the late original voice actor of Uncle Iroh.", "website": "", "subreddit": "/r/atla", "center": [1415.5, 1554.5], "path": [[1332.5, 1497.5], [1332.5, 1611.5], [1498.5, 1611.5], [1498.5, 1498.5], [1332.5, 1497.5]]}, {"id": "twqxsf", "submitted_by": "yamirzmmdx", "name": "Liverpool FC", "description": "We've conquered all of EuropenWe're never going to stopnFrom Paris down to TurkeynWe've won the fucking lotnBob Paisley and Bill ShanklynThe fields of Anfield RoadnWe are loyal supportersnAnd we come from Liverpool!nYNWA.", "website": "", "subreddit": "/r/LiverpoolFC", "center": [1229.5, 537.5], "path": [[1207.5, 508.5], [1207.5, 567.5], [1250.5, 567.5], [1250.5, 507.5], [1207.5, 508.5]]}, {"id": "twqxe8", "submitted_by": "Explodingmemes", "name": "Maryland Flag", "description": "The flag of Maryland is famous for its odd composition and colors.", "website": "", "subreddit": "/r/Maryland", "center": [267.5, 19.5], "path": [[232.5, 14.5], [248.5, 14.5], [248.5, 0.5], [296.5, 0.5], [297.5, 35.5], [232.5, 35.5], [232.5, 15.5], [232.5, 14.5]]}, {"id": "twqxc9", "name": "Tails Gets Trolled", "description": "The official logo and iconic Tails Gets Trolled face from the webcomic of the same name.", "website": "http://www.tailsgetstrolled.org", "subreddit": "/r/RealTailsGetsTrolled", "center": [1817.5, 1626.5], "path": [[1808.5, 1612.5], [1808.5, 1639.5], [1825.5, 1639.5], [1825.5, 1612.5]]}, @@ -1375,14 +1286,11 @@ {"id": "twqwya", "submitted_by": "TobbyMLP", "name": "Discord", "description": "A draconequus from My Little Pony that represents chaos and disharmony. He is fittingly right next to the chaos that is the void.", "website": "https://mlp.fandom.com/wiki/Discord", "subreddit": "/r/mylittlepony", "center": [1080.5, 1532.5], "path": [[1072.5, 1543.5], [1072.5, 1527.5], [1073.5, 1527.5], [1073.5, 1520.5], [1074.5, 1520.5], [1074.5, 1517.5], [1081.5, 1517.5], [1081.5, 1519.5], [1080.5, 1519.5], [1080.5, 1523.5], [1085.5, 1523.5], [1085.5, 1526.5], [1088.5, 1526.5], [1088.5, 1543.5], [1072.5, 1543.5]]}, {"id": "twqwbs", "submitted_by": "Explodingmemes", "name": "Waldo", "description": "You found him!", "website": "", "subreddit": "", "center": [1729.5, 287.5], "path": [[1722.5, 311.5], [1737.5, 311.5], [1738.5, 310.5], [1739.5, 309.5], [1739.5, 306.5], [1739.5, 305.5], [1734.5, 305.5], [1733.5, 304.5], [1733.5, 290.5], [1734.5, 293.5], [1735.5, 295.5], [1736.5, 297.5], [1737.5, 297.5], [1739.5, 300.5], [1741.5, 300.5], [1751.5, 310.5], [1751.5, 311.5], [1754.5, 311.5], [1754.5, 310.5], [1744.5, 300.5], [1744.5, 295.5], [1743.5, 294.5], [1742.5, 294.5], [1740.5, 292.5], [1740.5, 291.5], [1739.5, 291.5], [1735.5, 287.5], [1734.5, 285.5], [1734.5, 276.5], [1735.5, 276.5], [1736.5, 275.5], [1736.5, 272.5], [1736.5, 271.5], [1737.5, 270.5], [1737.5, 265.5], [1733.5, 265.5], [1732.5, 263.5], [1726.5, 263.5], [1724.5, 261.5], [1723.5, 261.5], [1722.5, 262.5], [1722.5, 263.5], [1721.5, 264.5], [1721.5, 267.5], [1721.5, 268.5], [1720.5, 269.5], [1720.5, 270.5], [1721.5, 271.5], [1721.5, 275.5], [1722.5, 276.5], [1722.5, 278.5], [1723.5, 279.5], [1723.5, 282.5], [1719.5, 282.5], [1718.5, 281.5], [1718.5, 278.5], [1718.5, 277.5], [1720.5, 277.5], [1720.5, 274.5], [1718.5, 273.5], [1717.5, 272.5], [1716.5, 274.5], [1715.5, 271.5], [1714.5, 273.5], [1713.5, 272.5], [1712.5, 277.5], [1713.5, 278.5], [1713.5, 284.5], [1714.5, 285.5], [1715.5, 286.5], [1719.5, 286.5], [1720.5, 287.5], [1722.5, 287.5], [1723.5, 288.5], [1723.5, 302.5], [1722.5, 303.5], [1722.5, 311.5]]}, {"id": "twqw5b", "submitted_by": "ItsVukkyHere", "name": "Vukky", "description": "The persona of a human being also called Vukky. The character is often associated with his software development group, which uses the character as their mascot.", "website": "https://sus.omg.lol", "subreddit": "/r/vukkit", "center": [600.5, 869.5], "path": [[593.5, 867.5], [591.5, 869.5], [594.5, 867.5], [595.5, 871.5], [596.5, 872.5], [603.5, 872.5], [604.5, 871.5], [605.5, 870.5], [605.5, 867.5]]}, -{"id": "twqvz1", "submitted_by": "Embarrassed_Plum_557", "name": "Most disputed corner of r/place", "description": "Corner between osuplace and superstonks, disputed from the beginning to the end", "website": "", "subreddit": "/r/osuplace", "center": [773.5, 743.5], "path": [[770.5, 756.5], [770.5, 734.5], [778.5, 735.5], [775.5, 746.5], [774.5, 750.5], [772.5, 756.5], [770.5, 756.5]]}, +{"id": "twqvz1", "submitted_by": "Embarrassed_Plum_557", "name": "Most disputed corner of r/place", "description": "Corner between r/osuplace and Superstonk, disputed from the beginning to the end", "website": "", "subreddit": "/r/osuplace", "center": [773.5, 743.5], "path": [[770.5, 756.5], [770.5, 734.5], [778.5, 735.5], [775.5, 746.5], [774.5, 750.5], [772.5, 756.5], [770.5, 756.5]]}, {"id": "twqvtx", "submitted_by": "Dragonsmissyou", "name": "UnsurpassableZ", "description": "A Poster from a Youtuber known as unsurpassableZ, he mainly does Stardew content.", "website": "https://www.youtube.com/channel/UCnBVj0rivE8iamtAzeziO5Q", "subreddit": "/r/UnsurpassableZ", "center": [1558.5, 812.5], "path": [[1525.5, 804.5], [1542.5, 804.5], [1542.5, 799.5], [1553.5, 799.5], [1554.5, 784.5], [1578.5, 785.5], [1579.5, 819.5], [1599.5, 819.5], [1599.5, 830.5], [1524.5, 829.5], [1524.5, 804.5]]}, {"id": "twqvn5", "submitted_by": "PlanetaceOfficial", "name": "Phtanum B", "description": "An attempt at creating a tribute to the Phtanum B project, created by Stevemobcannon.", "website": "", "subreddit": "", "center": [1831.5, 1282.5], "path": [[1830.5, 1280.5], [1829.5, 1280.5], [1832.5, 1280.5], [1834.5, 1282.5], [1832.5, 1284.5], [1829.5, 1284.5], [1829.5, 1280.5]]}, -{"id": "twqvds", "submitted_by": "XyCroes", "name": "In honor of Mako", "description": "A heartbreaking scene from the popular cartoon show Avatar: The Last Airbender.", "website": "", "subreddit": "/r/atla", "center": [1415.5, 1555.5], "path": [[1332.5, 1498.5], [1498.5, 1498.5], [1498.5, 1611.5], [1332.5, 1611.5]]}, {"id": "twqvb7", "submitted_by": "Explodingmemes", "name": "Composition with Large Red Plane, Yellow, Black, Gray and Blue", "description": "An abstract cubist painting by Piet Mondrian, a Dutch artist.", "website": "", "subreddit": "", "center": [1434.5, 17.5], "path": [[1421.5, 4.5], [1447.5, 4.5], [1447.5, 29.5], [1421.5, 29.5]]}, {"id": "twqvam", "submitted_by": "IAmDutch666", "name": "WW1 memorial", "description": "WW1 memorial between Belgium and Germany", "website": "", "subreddit": "", "center": [1309.5, 1158.5], "path": [[1286.5, 1138.5], [1287.5, 1178.5], [1332.5, 1178.5], [1331.5, 1138.5]]}, -{"id": "twqv16", "submitted_by": "Garchomprocks", "name": "Canadian flag", "description": "The famous r/place Canadian flag whose maple leaf Canadian redditors struggled to correctly draw.", "website": "", "subreddit": "/r/canada", "center": [210.5, 511.5], "path": [[175.5, 493.5], [175.5, 528.5], [244.5, 528.5], [244.5, 493.5], [175.5, 493.5]]}, -{"id": "twqunv", "submitted_by": "merwie001", "name": "G E K O L O N I S E E R D", "description": "A Dutch memen(Gekoloniseerd means colonized) n", "website": "", "subreddit": "/r/placenl", "center": [445.5, 24.5], "path": [[386.5, 21.5], [384.5, 21.5], [384.5, 27.5], [481.5, 27.5], [503.5, 26.5], [508.5, 27.5], [508.5, 21.5], [385.5, 21.5], [384.5, 21.5]]}, {"id": "twquj6", "submitted_by": "maxpower778", "name": "Mortadelo y Filem\u00f3n", "description": "The most famous comic characters from Spain. They were created by Francisco Ib\u00e1\u00f1ez. They are two detectives that work for an agency, and you can read their shenanigans", "website": "", "subreddit": "/r/esPlace", "center": [942.5, 296.5], "path": [[936.5, 281.5], [944.5, 281.5], [945.5, 286.5], [947.5, 286.5], [948.5, 287.5], [950.5, 287.5], [949.5, 286.5], [953.5, 284.5], [958.5, 288.5], [959.5, 291.5], [960.5, 294.5], [963.5, 296.5], [964.5, 298.5], [958.5, 306.5], [956.5, 308.5], [929.5, 308.5], [924.5, 301.5], [922.5, 296.5], [926.5, 291.5], [930.5, 293.5], [932.5, 289.5], [926.5, 286.5], [926.5, 284.5], [928.5, 280.5], [936.5, 281.5]]}, {"id": "twquhe", "submitted_by": "IAmDutch666", "name": "Atomium", "description": "The Atomium is the most famous monument in Belgium and is located in Brussels, the capital of Belgium.", "website": "https://atomium.be/", "subreddit": "/r/belgium", "center": [289.5, 814.5], "path": [[288.5, 797.5], [288.5, 804.5], [290.5, 813.5], [293.5, 804.5], [294.5, 797.5], [291.5, 797.5], [288.5, 798.5], [276.5, 815.5], [280.5, 830.5], [299.5, 829.5], [301.5, 810.5], [294.5, 797.5]]}, {"id": "twqtmr", "submitted_by": "VeryAwkwardDude", "name": "18-25 / :noel: and :hap:", "description": "Place constructed by the 18-25, A popular French forum.nThe two emoticons, :noel: (left) and :hap: (right) are popular emoticons used on the website.", "website": "https://www.jeuxvideo.com/forums/0-51-0-1-0-1-0-blabla-18-25-ans.htm", "subreddit": "", "center": [452.5, 1386.5], "path": [[436.5, 1374.5], [436.5, 1398.5], [467.5, 1399.5], [468.5, 1374.5], [436.5, 1374.5]]}, @@ -1392,7 +1300,7 @@ {"id": "twqsgq", "submitted_by": "Explodingmemes", "name": "Celeste", "description": "A section of art dedicated to the game Celeste by Maddy Thorson. It features a background in the colors of the transgender pride flag, as both the writer and main character of the game are trans.", "website": "http://www.celestegame.com/", "subreddit": "/r/CelesteGame", "center": [1030.5, 871.5], "path": [[965.5, 853.5], [965.5, 886.5], [1085.5, 886.5], [1085.5, 880.5], [1130.5, 880.5], [1130.5, 869.5], [1062.5, 870.5], [1060.5, 867.5], [1059.5, 864.5], [1057.5, 862.5], [1056.5, 861.5], [1056.5, 858.5], [1056.5, 853.5], [965.5, 853.5]]}, {"id": "twqs9s", "submitted_by": "Lolahunter67", "name": "CBT Family", "description": "The Logo of our honorable CBT Family! After many restless Nights, we can finally enjoy CBT in Peace. Thanks to everyone who helped us along the way! SJJJJFLG <3", "website": "https://www.youtube.com/watch?v=3847Xkzovt4", "subreddit": "/r/CBT", "center": [766.5, 689.5], "path": [[767.5, 696.5], [756.5, 685.5], [775.5, 685.5], [775.5, 687.5], [767.5, 696.5]]}, {"id": "twqs8f", "submitted_by": "Dinkelwecken", "name": "Orange Portal", "description": "An orange portal, a reference to the portal games. It was build by the Germans and the portal community to connect the split flags after the first canvas expansion because they didn't want to destroy the artworks in between.", "website": "https://en.wikipedia.org/wiki/Portal_(video_game)", "subreddit": "/r/placeDE, /r/Portal", "center": [765.5, 847.5], "path": [[771.5, 865.5], [759.5, 865.5], [758.5, 830.5], [772.5, 829.5]]}, -{"id": "twqrbr", "submitted_by": "VeryAwkwardDude", "name": "Giant Derpy", "description": "A Giant version of Derpy, character from the My Little Pony franchise.nShe was not constructed by the MLP community, instead being created by the Russian streamer Bratishkinoff", "website": "https://www.twitch.tv/bratishkinoff/about", "subreddit": "", "center":[927.5,1698.5],"path":[[955.5,1694.5],[955.5,1717.5],[953.5,1717.5],[949.5,1721.5],[948.5,1721.5],[947.5,1722.5],[945.5,1723.5],[944.5,1723.5],[943.5,1724.5],[932.5,1724.5],[932.5,1724.5],[930.5,1723.5],[927.5,1721.5],[927.5,1720.5],[926.5,1720.5],[925.5,1720.5],[925.5,1721.5],[922.5,1721.5],[922.5,1724.5],[905.5,1723.5],[904.5,1722.5],[904.5,1721.5],[902.5,1721.5],[902.5,1720.5],[901.5,1720.5],[901.5,1718.5],[900.5,1718.5],[900.5,1716.5],[899.5,1716.5],[899.5,1714.5],[898.5,1714.5],[898.5,1704.5],[897.5,1704.5],[897.5,1703.5],[898.5,1702.5],[899.5,1702.5],[899.5,1700.5],[900.5,1700.5],[900.5,1699.5],[901.5,1699.5],[901.5,1698.5],[902.5,1698.5],[902.5,1697.5],[902.5,1694.5],[901.5,1694.5],[901.5,1693.5],[901.5,1692.5],[900.5,1692.5],[900.5,1691.5],[899.5,1690.5],[899.5,1689.5],[899.5,1687.5],[898.5,1687.5],[898.5,1686.5],[898.5,1685.5],[897.5,1685.5],[897.5,1679.5],[899.5,1677.5],[903.5,1677.5],[905.5,1673.5],[909.5,1673.5],[911.5,1674.5],[915.5,1674.5],[915.5,1673.5],[916.5,1674.5],[918.5,1674.5],[919.5,1674.5],[919.5,1672.5],[919.5,1674.5],[920.5,1674.5],[921.5,1673.5],[922.5,1673.5],[922.5,1674.5],[923.5,1674.5],[926.5,1672.5],[931.5,1668.5],[934.5,1669.5],[935.5,1670.5],[939.5,1668.5],[940.5,1670.5],[941.5,1671.5],[945.5,1667.5],[947.5,1668.5],[947.5,1671.5],[947.5,1673.5],[948.5,1673.5],[948.5,1674.5],[947.5,1674.5],[947.5,1676.5],[947.5,1677.5],[948.5,1677.5],[948.5,1679.5],[949.5,1679.5],[950.5,1682.5],[953.5,1686.5],[954.5,1688.5],[954.5,1694.5]]}, +{"id": "twqrbr", "submitted_by": "VeryAwkwardDude", "name": "Giant Derpy", "description": "A Giant version of Derpy, character from the My Little Pony franchise.nShe was not constructed by the MLP community, instead being created by the Russian streamer Bratishkinoff", "website": "https://www.twitch.tv/bratishkinoff/about", "subreddit": "", "center": [927.5, 1698.5], "path": [[955.5, 1694.5], [955.5, 1717.5], [953.5, 1717.5], [949.5, 1721.5], [948.5, 1721.5], [947.5, 1722.5], [945.5, 1723.5], [944.5, 1723.5], [943.5, 1724.5], [932.5, 1724.5], [932.5, 1724.5], [930.5, 1723.5], [927.5, 1721.5], [927.5, 1720.5], [926.5, 1720.5], [925.5, 1720.5], [925.5, 1721.5], [922.5, 1721.5], [922.5, 1724.5], [905.5, 1723.5], [904.5, 1722.5], [904.5, 1721.5], [902.5, 1721.5], [902.5, 1720.5], [901.5, 1720.5], [901.5, 1718.5], [900.5, 1718.5], [900.5, 1716.5], [899.5, 1716.5], [899.5, 1714.5], [898.5, 1714.5], [898.5, 1704.5], [897.5, 1704.5], [897.5, 1703.5], [898.5, 1702.5], [899.5, 1702.5], [899.5, 1700.5], [900.5, 1700.5], [900.5, 1699.5], [901.5, 1699.5], [901.5, 1698.5], [902.5, 1698.5], [902.5, 1697.5], [902.5, 1694.5], [901.5, 1694.5], [901.5, 1693.5], [901.5, 1692.5], [900.5, 1692.5], [900.5, 1691.5], [899.5, 1690.5], [899.5, 1689.5], [899.5, 1687.5], [898.5, 1687.5], [898.5, 1686.5], [898.5, 1685.5], [897.5, 1685.5], [897.5, 1679.5], [899.5, 1677.5], [903.5, 1677.5], [905.5, 1673.5], [909.5, 1673.5], [911.5, 1674.5], [915.5, 1674.5], [915.5, 1673.5], [916.5, 1674.5], [918.5, 1674.5], [919.5, 1674.5], [919.5, 1672.5], [919.5, 1674.5], [920.5, 1674.5], [921.5, 1673.5], [922.5, 1673.5], [922.5, 1674.5], [923.5, 1674.5], [926.5, 1672.5], [931.5, 1668.5], [934.5, 1669.5], [935.5, 1670.5], [939.5, 1668.5], [940.5, 1670.5], [941.5, 1671.5], [945.5, 1667.5], [947.5, 1668.5], [947.5, 1671.5], [947.5, 1673.5], [948.5, 1673.5], [948.5, 1674.5], [947.5, 1674.5], [947.5, 1676.5], [947.5, 1677.5], [948.5, 1677.5], [948.5, 1679.5], [949.5, 1679.5], [950.5, 1682.5], [953.5, 1686.5], [954.5, 1688.5], [954.5, 1694.5]]}, {"id": "twqr4q", "submitted_by": "Explodingmemes", "name": "OMORI White Space", "description": "OMORI is a psychological horror indie RPG made by OMOCAT. This area is a tribute to White Space, a location in the game, commonly known as 'A place to survive, but not to live.' MEWO, OMORI, SOMETHING, HERO, MARI, Mini KEL, Mini AUBREY, HUMPHREY, and OMOLI are seen here. The stance on r/omori through place was to be as friendly as possible, so some of White Space was lended to good allies, such as WCUE, r/picturegame, and Lisa: The Painful.", "website": "https://www.omori-game.com/", "subreddit": "/r/omori", "center": [1002.5, 825.5], "path": [[909.5, 800.5], [920.5, 800.5], [920.5, 795.5], [923.5, 792.5], [924.5, 792.5], [926.5, 794.5], [927.5, 794.5], [931.5, 798.5], [932.5, 799.5], [951.5, 799.5], [952.5, 799.5], [958.5, 793.5], [960.5, 793.5], [960.5, 794.5], [961.5, 795.5], [961.5, 801.5], [963.5, 802.5], [1123.5, 802.5], [1123.5, 830.5], [1065.5, 830.5], [1060.5, 830.5], [1057.5, 837.5], [1056.5, 850.5], [1055.5, 853.5], [909.5, 853.5], [909.5, 826.5], [908.5, 825.5], [909.5, 824.5], [909.5, 800.5]]}, {"id": "twqqqg", "submitted_by": "heyhowzitgoinn", "name": "Wizard 101", "description": "The spiral logo for the game Wizard 101 (bottom), an mmorpg developed by the company Kingsisle Entertainment, and the flag logo (top) for its sister game Pirate 101.", "website": "https://www.wizard101.com", "subreddit": "/r/Wizard101", "center": [1183.5, 443.5], "path": [[1197.5, 465.5], [1183.5, 465.5], [1174.5, 465.5], [1170.5, 465.5], [1170.5, 463.5], [1170.5, 461.5], [1170.5, 459.5], [1170.5, 457.5], [1170.5, 455.5], [1170.5, 453.5], [1170.5, 452.5], [1169.5, 452.5], [1169.5, 447.5], [1169.5, 446.5], [1171.5, 443.5], [1173.5, 440.5], [1173.5, 439.5], [1173.5, 429.5], [1173.5, 426.5], [1173.5, 423.5], [1173.5, 420.5], [1173.5, 417.5], [1185.5, 418.5], [1191.5, 417.5], [1192.5, 433.5], [1192.5, 434.5], [1196.5, 434.5], [1196.5, 444.5], [1196.5, 445.5], [1197.5, 446.5]]}, {"id": "twqoqx", "submitted_by": "fruselight", "name": "Girls' Frontline", "description": "You play as a freshly hired Commander sent to a peaceful sector of 09, except it isn't peaceful and you have diet Skynet fighting you.", "website": "http://gf.sunborngame.com/", "subreddit": "/r/girlsfrontline", "center": [1601.5, 1733.5], "path": [[1576.5, 1712.5], [1576.5, 1740.5], [1582.5, 1740.5], [1582.5, 1741.5], [1584.5, 1741.5], [1585.5, 1741.5], [1585.5, 1742.5], [1586.5, 1742.5], [1586.5, 1743.5], [1587.5, 1744.5], [1587.5, 1744.5], [1588.5, 1744.5], [1588.5, 1746.5], [1588.5, 1746.5], [1589.5, 1746.5], [1589.5, 1752.5], [1588.5, 1753.5], [1588.5, 1754.5], [1588.5, 1755.5], [1587.5, 1756.5], [1587.5, 1757.5], [1587.5, 1758.5], [1587.5, 1759.5], [1588.5, 1759.5], [1588.5, 1760.5], [1611.5, 1760.5], [1611.5, 1759.5], [1611.5, 1758.5], [1612.5, 1758.5], [1613.5, 1757.5], [1614.5, 1756.5], [1615.5, 1755.5], [1616.5, 1754.5], [1616.5, 1753.5], [1617.5, 1753.5], [1617.5, 1752.5], [1618.5, 1752.5], [1618.5, 1751.5], [1619.5, 1751.5], [1619.5, 1750.5], [1620.5, 1750.5], [1620.5, 1749.5], [1621.5, 1749.5], [1621.5, 1748.5], [1622.5, 1748.5], [1622.5, 1747.5], [1623.5, 1747.5], [1624.5, 1747.5], [1624.5, 1712.5]]}, @@ -1413,13 +1321,13 @@ {"id": "twqkwe", "submitted_by": "Explodingmemes", "name": "Moist Esports", "description": "The Logo of Moist Esports, an esports org created by MoistCr1tikal, a twitch streamer and youtuber. The Indianapolis Colts originally had their logo here, but moved it after Critical placed his logo here.", "website": "", "subreddit": "/r/moistcr1tikal", "center": [1986.5, 98.5], "path": [[1973.5, 82.5], [1999.5, 82.5], [1999.5, 113.5], [1973.5, 113.5]]}, {"id": "twqktp", "submitted_by": "ItzPhoen1x", "name": "IVE", "description": "K-pop girl group IVE debuted in 2021, and just recently had their comeback", "website": "https://youtu.be/--FmExEAsM8", "subreddit": "/r/IVE", "center": [1715.5, 913.5], "path": [[1710.5, 907.5], [1720.5, 907.5], [1720.5, 920.5], [1710.5, 919.5], [1710.5, 907.5]]}, {"id": "twqkt1", "submitted_by": "Jasefi", "name": "Oslo Katedralskole", "description": "A small, Norwegian school with just over 600 students created their school emblem to flex on their fellow regional schools. Forced to relocate twice, we ended up grabbing and defending this area during the last two days.", "website": "", "subreddit": "", "center": [660.5, 1307.5], "path": [[656.5, 1303.5], [664.5, 1303.5], [660.5, 1313.5], [656.5, 1306.5], [664.5, 1307.5], [656.5, 1305.5]]}, -{"id": "twqkpr", "submitted_by": "Babyhuehnchen", "name": "Stardew Valley Mallard", "description": "The mallard duck sprite from the game stardew valley, created in a collaboration between r/duck_place, r/stardewvalley and r/ratgearmy", "website": "", "subreddit": "/r/duck_place, /r/stardewvalley, /r/ratgearmy", "center": [1700.5, 993.5], "path": [[1705.5, 983.5], [1697.5, 984.5], [1689.5, 990.5], [1691.5, 1000.5], [1698.5, 1003.5], [1707.5, 1000.5], [1711.5, 993.5]]}, +{"id": "twqkpr", "submitted_by": "Babyhuehnchen", "name": "Stardew Valley Mallard", "description": "The mallard duck sprite from the game stardew valley, created in a collaboration between r/duck_place, r/stardewvalley. After first being destroyed by xgc, he was rebuilt and placed on the sholder of ratge, an artwork created by Twitch Streamer FranqitoM", "website": "", "subreddit": "/r/duck_place, /r/stardewvalley,", "center": [1700.5, 993.5], "path": [[1703.5, 983.5], [1704.5, 983.5], [1704.5, 984.5], [1705.5, 984.5], [1705.5, 985.5], [1706.5, 985.5], [1706.5, 986.5], [1707.5, 986.5], [1707.5, 988.5], [1708.5, 988.5], [1708.5, 998.5], [1706.5, 998.5], [1706.5, 1001.5], [1696.5, 1001.5], [1696.5, 1000.5], [1695.5, 1000.5], [1694.5, 1000.5], [1694.5, 999.5], [1693.5, 999.5], [1693.5, 998.5], [1692.5, 998.5], [1692.5, 997.5], [1691.5, 997.5], [1691.5, 996.5], [1690.5, 996.5], [1690.5, 991.5], [1691.5, 991.5], [1691.5, 990.5], [1692.5, 990.5], [1692.5, 989.5], [1694.5, 989.5], [1694.5, 988.5], [1696.5, 988.5], [1696.5, 987.5], [1696.5, 986.5], [1697.5, 986.5], [1697.5, 985.5], [1698.5, 985.5], [1698.5, 984.5], [1699.5, 984.5], [1699.5, 983.5], [1702.5, 983.5]]}, {"id": "twqkk9", "submitted_by": "tiktron", "name": "r/LapfoxTrax", "description": "A subreddit dedicated to the wonderful musical talents of Emma Essex.", "website": "https://lapfoxtrax.fandom.com/wiki/Halley_Labs_Wiki", "subreddit": "/r/lapfoxtrax", "center": [793.5, 1958.5], "path": [[781.5, 1958.5], [781.5, 1964.5], [786.5, 1970.5], [801.5, 1970.5], [805.5, 1964.5], [805.5, 1958.5], [801.5, 1954.5], [801.5, 1945.5], [785.5, 1945.5], [785.5, 1954.5]]}, {"id": "twqk7t", "submitted_by": "deet0109", "name": "Flag of the SMC x WIRE_FPS Logo", "description": "The Scratch Mapping Community (SMC) agreed to let the streamer WIRE_FPS temporarily take over this area. It depicts the flag used by the SMC with part of WIRE_FPS\u2019s logo mixed in.", "website": "https://www.twitch.tv/wire_fps", "subreddit": "/r/ScratchMappers", "center": [3.5, 76.5], "path": [[0.5, 74.5], [6.5, 74.5], [6.5, 78.5], [0.5, 78.5]]}, {"id": "twqk2v", "submitted_by": "R1515LF0NTE", "name": "Pastel de Nata", "description": "Portuguese egg custard tart pastry, optionally dusted with cinnamon. Outside Portugal, they are particularly popular in other parts of Western Europe, Asia and former Portuguese colonies.", "website": "", "subreddit": "/r/portugal", "center": [909.5, 383.5], "path": [[906.5, 389.5], [901.5, 385.5], [901.5, 382.5], [902.5, 380.5], [904.5, 378.5], [906.5, 378.5], [907.5, 377.5], [913.5, 377.5], [913.5, 378.5], [915.5, 378.5], [915.5, 379.5], [917.5, 380.5], [918.5, 381.5], [918.5, 384.5], [918.5, 385.5], [916.5, 386.5], [915.5, 387.5], [914.5, 388.5], [913.5, 389.5], [912.5, 390.5], [910.5, 390.5], [907.5, 390.5], [906.5, 389.5]]}, {"id": "twqk1j", "submitted_by": "Mintybirdd", "name": "ULTRAKILL", "description": "Depiction of the V1 Logo from ULTRAKILL", "website": "https://devilmayquake.com", "subreddit": "/r/Ultrakill", "center": [1360.5, 1808.5], "path": [[1346.5, 1818.5], [1346.5, 1797.5], [1374.5, 1797.5], [1374.5, 1818.5], [1365.5, 1818.5], [1365.5, 1820.5], [1353.5, 1820.5], [1353.5, 1818.5]]}, {"id": "twqjmc", "submitted_by": "Phats06", "name": "Princess Connect! Re:Dive", "description": "Princess Connect! Re:Dive (\u30d7\u30ea\u30f3\u30bb\u30b9\u30b3\u30cd\u30af\u30c8\uff01Re:Dive) is a Japanese role-playing video game developed by Cygames. It was released in Japan on February 15, 2018 for Android and iOS, and on May 22, 2018 for Microsoft Windows via DMM Games. Mobile version would later be released in other regions. The game was announced in August 2016 as a sequel to Princess Connect!, which was released on February 18, 2015 and ended service in June 2016. An anime television series adaptation by CygamesPictures aired from April to June 2020. A second season aired from January to March 2022.", "website": "https://priconne-redive.jp/", "subreddit": "/r/Priconne", "center": [1624.5, 1799.5], "path": [[1613.5, 1805.5], [1613.5, 1802.5], [1614.5, 1802.5], [1615.5, 1801.5], [1615.5, 1800.5], [1616.5, 1800.5], [1617.5, 1799.5], [1617.5, 1794.5], [1618.5, 1793.5], [1618.5, 1792.5], [1621.5, 1789.5], [1621.5, 1787.5], [1620.5, 1786.5], [1620.5, 1785.5], [1623.5, 1782.5], [1624.5, 1782.5], [1625.5, 1781.5], [1627.5, 1781.5], [1626.5, 1781.5], [1622.5, 1785.5], [1622.5, 1786.5], [1622.5, 1787.5], [1623.5, 1788.5], [1624.5, 1787.5], [1624.5, 1786.5], [1625.5, 1787.5], [1626.5, 1787.5], [1627.5, 1786.5], [1626.5, 1785.5], [1626.5, 1784.5], [1627.5, 1784.5], [1627.5, 1786.5], [1626.5, 1787.5], [1627.5, 1789.5], [1628.5, 1790.5], [1629.5, 1789.5], [1629.5, 1792.5], [1631.5, 1794.5], [1631.5, 1795.5], [1632.5, 1796.5], [1631.5, 1797.5], [1632.5, 1798.5], [1631.5, 1799.5], [1630.5, 1800.5], [1631.5, 1801.5], [1631.5, 1804.5], [1632.5, 1804.5], [1634.5, 1806.5], [1634.5, 1807.5], [1636.5, 1809.5], [1615.5, 1809.5], [1615.5, 1807.5], [1614.5, 1806.5], [1613.5, 1805.5]]}, -{"id": "twqjdy", "submitted_by": "Explodingmemes", "name": "Magnus Carlsen", "description": "Magnus Carlsen is a Norwegian chess player, and the current FIDE World Chess Champion.", "website": "", "subreddit": "/r/Chess", "center": [234.5, 66.5], "path": [[216.5, 91.5], [219.5, 88.5], [222.5, 88.5], [223.5, 82.5], [219.5, 72.5], [218.5, 66.5], [218.5, 54.5], [225.5, 42.5], [232.5, 38.5], [236.5, 39.5], [243.5, 40.5], [243.5, 41.5], [247.5, 42.5], [251.5, 48.5], [252.5, 54.5], [252.5, 59.5], [248.5, 65.5], [247.5, 66.5], [247.5, 79.5], [248.5, 84.5], [247.5, 86.5], [250.5, 92.5], [216.5, 92.5], [216.5, 91.5]]}, +{"id": "twqjdy", "submitted_by": "Explodingmemes", "name": "Magnus Carlsen", "description": "Magnus Carlsen is a Norwegian chess player, and the reigning five-time FIDE World Chess Champion.", "website": "https://en.wikipedia.org/wiki/Magnus_Carlsen", "subreddit": "/r/Chess", "center": [234.5, 66.5], "path": [[216.5, 91.5], [219.5, 88.5], [222.5, 88.5], [223.5, 82.5], [219.5, 72.5], [218.5, 66.5], [218.5, 54.5], [225.5, 42.5], [232.5, 38.5], [236.5, 39.5], [243.5, 40.5], [243.5, 41.5], [247.5, 42.5], [251.5, 48.5], [252.5, 54.5], [252.5, 59.5], [248.5, 65.5], [247.5, 66.5], [247.5, 79.5], [248.5, 84.5], [247.5, 86.5], [250.5, 92.5], [216.5, 92.5], [216.5, 91.5]]}, {"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": "twqisu", "submitted_by": "king_john651", "name": "Former r/nba LeMao site #1", "description": "r/nba made their first attempt at contributing to the canvas halfway through day 1 covering up r/lebanon, r/dwarffortress, and others.nnWith help from the likes of r/temple, r/rimworld, r/deeprockgalactic, and other communities to repel the LeMao artwork (as well as disorganisation within the r/nba community) the parts in this section were able to expand and mostly survive the life of the canvas.", "website": "https://imgur.com/a/JwNcVX7", "subreddit": "", "center": [27.5, 462.5], "path": [[0.5, 429.5], [53.5, 429.5], [53.5, 495.5], [0.5, 495.5]]}, @@ -1430,10 +1338,10 @@ {"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]]}, {"id": "twqh82", "submitted_by": "Spiderinmyear", "name": "Blue Kirby", "description": "Kirby is protagonist of the titular Kirby series of video games.", "website": "", "subreddit": "", "center": [467.5, 1505.5], "path": [[464.5, 1496.5], [462.5, 1497.5], [460.5, 1499.5], [459.5, 1501.5], [457.5, 1503.5], [457.5, 1506.5], [458.5, 1507.5], [457.5, 1509.5], [457.5, 1512.5], [476.5, 1512.5], [476.5, 1511.5], [477.5, 1510.5], [477.5, 1506.5], [476.5, 1504.5], [476.5, 1503.5], [474.5, 1501.5], [474.5, 1500.5], [471.5, 1497.5], [469.5, 1496.5], [468.5, 1495.5], [465.5, 1495.5], [464.5, 1496.5]]}, {"id": "twqh4j", "submitted_by": "NowoTone", "name": "Augsburg", "description": "The flag of the German city of Augsburg in Bavaria. Featuring on the left a pine cone (Zirbelnuss), its coat of arms, and the famous town hall by Elias Holl, dating back to 1624 on the right.", "website": "", "subreddit": "", "center": [1319.5, 1955.5], "path": [[1304.5, 1948.5], [1304.5, 1948.5], [1304.5, 1948.5], [1304.5, 1948.5], [1304.5, 1948.5], [1334.5, 1948.5], [1334.5, 1948.5], [1334.5, 1961.5], [1304.5, 1961.5], [1304.5, 1960.5], [1304.5, 1958.5], [1304.5, 1957.5], [1304.5, 1956.5], [1304.5, 1959.5], [1304.5, 1949.5], [1304.5, 1950.5], [1304.5, 1950.5], [1304.5, 1951.5], [1304.5, 1951.5], [1304.5, 1952.5], [1304.5, 1953.5], [1304.5, 1953.5], [1304.5, 1955.5], [1304.5, 1956.5]]}, -{"id": "twqgvm", "submitted_by": "JappieNijboer", "name": "Frikandelbroodje", "description": "The Frikandelbroodje is a traditional Dutch dish, mostly known and consumed among younger students.", "website": "", "subreddit": "/r/placenl", "center": [1690.5, 21.5], "path": [[1673.5, 10.5], [1673.5, 10.5], [1673.5, 10.5], [1689.5, 10.5], [1704.5, 12.5], [1711.5, 13.5], [1714.5, 15.5], [1715.5, 18.5], [1716.5, 21.5], [1715.5, 23.5], [1714.5, 25.5], [1713.5, 27.5], [1711.5, 29.5], [1709.5, 30.5], [1707.5, 31.5], [1705.5, 32.5], [1697.5, 33.5], [1697.5, 32.5], [1689.5, 32.5], [1688.5, 31.5], [1685.5, 31.5], [1684.5, 30.5], [1681.5, 30.5], [1680.5, 29.5], [1676.5, 29.5], [1675.5, 28.5], [1666.5, 28.5], [1663.5, 26.5], [1663.5, 24.5], [1664.5, 23.5], [1663.5, 22.5], [1662.5, 21.5], [1673.5, 10.5]]}, +{"id": "twqgvm", "submitted_by": "JappieNijboer", "name": "Frikandelbroodje", "description": "a famous dutch snack, made by puff pastry, a specific meatroll called the frikandel and curry sauce. It is mostly known and consumed among younger students. 2de gratis bij Albert Heijn!", "website": "https://www.ah.nl/producten/product/wi230720/ah-frikandelbroodje", "subreddit": "/r/placenl", "center": [1690.5, 21.5], "path": [[1673.5, 10.5], [1673.5, 10.5], [1673.5, 10.5], [1689.5, 10.5], [1704.5, 12.5], [1711.5, 13.5], [1714.5, 15.5], [1715.5, 18.5], [1716.5, 21.5], [1715.5, 23.5], [1714.5, 25.5], [1713.5, 27.5], [1711.5, 29.5], [1709.5, 30.5], [1707.5, 31.5], [1705.5, 32.5], [1697.5, 33.5], [1697.5, 32.5], [1689.5, 32.5], [1688.5, 31.5], [1685.5, 31.5], [1684.5, 30.5], [1681.5, 30.5], [1680.5, 29.5], [1676.5, 29.5], [1675.5, 28.5], [1666.5, 28.5], [1663.5, 26.5], [1663.5, 24.5], [1664.5, 23.5], [1663.5, 22.5], [1662.5, 21.5], [1673.5, 10.5]]}, {"id": "twqgmf", "submitted_by": "ItsFrisbeeTho", "name": "Rijksoverheid", "description": "", "website": "https://www.rijksoverheid.nl/", "subreddit": "/r/placeNL", "center": [746.5, 12.5], "path": [[735.5, 0.5], [735.5, 23.5], [757.5, 23.5], [757.5, 0.5], [735.5, 0.5]]}, {"id": "twqglf", "submitted_by": "GiveMeSomeBEANS", "name": "Dutch museum het Rijksmuseum", "description": "popular dutch museum", "website": "https://www.rijksmuseum.nl/nl", "subreddit": "", "center": [1765.5, 17.5], "path": [[1722.5, 34.5], [1808.5, 34.5], [1808.5, 0.5], [1722.5, -0.5]]}, -{"id": "twqgh2", "submitted_by": "Klisurovi4", "name": "Bay Ganyo", "description": "A fictional character created by the Bulgarian author Aleko Konstantinov. He is a typical anti-hero, a stereotype of the nuneducated, profit-driven Bulgarian and the average Balkan person in general at the time.", "website": "", "subreddit": "/r/Bulgaria", "center": [707.5, 384.5], "path": [[702.5, 384.5], [702.5, 387.5], [705.5, 390.5], [709.5, 390.5], [712.5, 387.5], [712.5, 384.5], [711.5, 381.5], [708.5, 378.5], [706.5, 378.5], [702.5, 383.5]]}, +{"id": "twqgh2", "submitted_by": "Klisurovi4", "name": "Bay Ganyo", "description": "A fictional character created by the Bulgarian author Aleko Konstantinov. He is a typical anti-hero, a stereotype of the nuneducated, profit-driven Bulgarian and the average Balkan person in general at the time.", "website": "", "subreddit": "/r/Bulgaria", "center": [707.5, 384.5], "path": [[706.5, 377.5], [705.5, 378.5], [704.5, 379.5], [703.5, 380.5], [702.5, 381.5], [702.5, 383.5], [701.5, 384.5], [701.5, 387.5], [702.5, 388.5], [703.5, 389.5], [704.5, 390.5], [705.5, 391.5], [709.5, 391.5], [710.5, 390.5], [711.5, 389.5], [712.5, 388.5], [713.5, 387.5], [713.5, 384.5], [712.5, 383.5], [712.5, 381.5], [711.5, 380.5], [710.5, 379.5], [710.5, 379.5], [709.5, 378.5], [708.5, 377.5], [706.5, 377.5]]}, {"id": "twqgd6", "submitted_by": "bart7782", "name": "Government of the Netherlands (Rijksoverheid)", "description": "Logo of the Dutch Government", "website": "", "subreddit": "/r/placenl", "center": [747.5, 12.5], "path": [[736.5, 23.5], [736.5, 0.5], [757.5, 0.5], [757.5, 23.5], [736.5, 23.5]]}, {"id": "twqgc7", "submitted_by": "Eclipsed_Luna", "name": "Miniflags (r/placepride)", "description": "Originally part of the bar codes, the hivemind began to add more mini pride flags on top of the codes.", "website": "", "subreddit": "/r/placepride", "center": [455.5, 586.5], "path": [[465.5, 646.5], [448.5, 646.5], [448.5, 645.5], [421.5, 645.5], [421.5, 638.5], [448.5, 638.5], [448.5, 517.5], [465.5, 517.5], [465.5, 581.5], [469.5, 581.5], [469.5, 593.5], [465.5, 593.5], [465.5, 646.5]]}, {"id": "twqg0c", "submitted_by": "ziemnakiscool", "name": "Mexican flag", "description": "The mexicans build their amazing flag right here. Wow.", "website": "", "subreddit": "", "center": [670.5, 1235.5], "path": [[554.5, 1299.5], [554.5, 1290.5], [560.5, 1283.5], [561.5, 1277.5], [560.5, 1276.5], [556.5, 1275.5], [554.5, 1277.5], [553.5, 1262.5], [554.5, 1223.5], [554.5, 1173.5], [637.5, 1174.5], [642.5, 1176.5], [645.5, 1174.5], [639.5, 1173.5], [640.5, 1170.5], [644.5, 1169.5], [648.5, 1171.5], [646.5, 1168.5], [650.5, 1167.5], [647.5, 1163.5], [653.5, 1161.5], [658.5, 1165.5], [662.5, 1159.5], [654.5, 1158.5], [654.5, 1153.5], [661.5, 1153.5], [662.5, 1148.5], [663.5, 1147.5], [665.5, 1151.5], [667.5, 1154.5], [672.5, 1153.5], [673.5, 1158.5], [664.5, 1160.5], [666.5, 1164.5], [670.5, 1164.5], [669.5, 1165.5], [675.5, 1160.5], [678.5, 1163.5], [673.5, 1169.5], [673.5, 1172.5], [678.5, 1172.5], [681.5, 1172.5], [680.5, 1170.5], [681.5, 1168.5], [682.5, 1165.5], [684.5, 1163.5], [684.5, 1166.5], [683.5, 1173.5], [703.5, 1173.5], [703.5, 1172.5], [781.5, 1173.5], [784.5, 1176.5], [787.5, 1176.5], [788.5, 1179.5], [784.5, 1181.5], [785.5, 1224.5], [785.5, 1301.5]]}, @@ -1452,14 +1360,10 @@ {"id": "twqdr9", "submitted_by": "jobaxgaming", "name": "German States: Coat of Arms (5 of 16)", "description": "The artwork shows 5 of 16 German States' Coat of ArmsnnFrom left to right:nRheinland-Pfalz (Rhineland-Palatinate)nBayern (Bavaria)nBerlinnHessen (Hesse)nBremen", "website": "", "subreddit": "/r/placeDE", "center": [1364.5, 1132.5], "path": [[1333.5, 1125.5], [1333.5, 1125.5], [1389.5, 1125.5], [1393.5, 1126.5], [1393.5, 1141.5], [1384.5, 1140.5], [1382.5, 1139.5], [1372.5, 1138.5], [1357.5, 1138.5], [1334.5, 1138.5], [1334.5, 1138.5]]}, {"id": "twqdhc", "submitted_by": "Phats06", "name": "Blue Archive", "description": "Blue Archive (\u30d6\u30eb\u30fc\u30a2\u30fc\u30ab\u30a4\u30d6) is a role-playing game developed by Nexon Games (formerly NAT Games). Blue Archive takes place in the academy city of Kivotos. The player takes the role of a teacher, called Sensei, who is summoned by the president of the General Student Council, a committee managing the schools, before her disappearance. Criminal activity rises following her disappearance. Sensei has the task to resolve the issues around Kivotos and help find the missing president.", "website": "https://bluearchive.nexon.com/home", "subreddit": "/r/BlueArchive", "center": [1699.5, 1733.5], "path": [[1674.5, 1738.5], [1674.5, 1712.5], [1723.5, 1712.5], [1723.5, 1734.5], [1719.5, 1738.5], [1719.5, 1740.5], [1718.5, 1740.5], [1717.5, 1739.5], [1714.5, 1739.5], [1712.5, 1741.5], [1713.5, 1742.5], [1712.5, 1743.5], [1713.5, 1744.5], [1713.5, 1747.5], [1710.5, 1747.5], [1710.5, 1761.5], [1686.5, 1761.5], [1686.5, 1738.5], [1674.5, 1738.5]]}, {"id": "twqdff", "submitted_by": "Explodingmemes", "name": "F1 Raceway", "description": "A collaboration between Pride Road, Formula 1, and TrackMania. A formula 1 raceway featuring 3 cars: A french F1 car, a TrackMania F1 car, and an F1 car featuring the pride colors, as this raceway is on the path of pride road to the north.", "website": "", "subreddit": "", "center": [441.5, 791.5], "path": [[434.5, 757.5], [448.5, 757.5], [448.5, 825.5], [433.5, 825.5], [433.5, 757.5]]}, -{"id": "twqd6c", "submitted_by": "voskaeon", "name": "Saber (Fate Route)", "description": "Icon of one of the three routes in the Fate/Stay Night visual novel", "website": "", "subreddit": "/r/fatestaynight", "center": [17.5, 1046.5], "path": [[0.5, 1029.5], [34.5, 1029.5], [34.5, 1062.5], [0.5, 1062.5], [0.5, 1029.5]]}, {"id": "twqd55", "submitted_by": "R1515LF0NTE", "name": "Portugal Flag", "description": "Flag of Portugal with the map of Portugal", "website": "", "subreddit": "/r/portugal", "center": [1439.5, 1866.5], "path": [[1366.5, 1884.5], [1366.5, 1818.5], [1456.5, 1818.5], [1532.5, 1819.5], [1532.5, 1830.5], [1526.5, 1826.5], [1518.5, 1830.5], [1515.5, 1835.5], [1510.5, 1839.5], [1504.5, 1848.5], [1503.5, 1860.5], [1510.5, 1868.5], [1510.5, 1893.5], [1511.5, 1896.5], [1513.5, 1911.5], [1526.5, 1911.5], [1526.5, 1915.5], [1508.5, 1913.5], [1482.5, 1914.5], [1480.5, 1916.5], [1447.5, 1916.5], [1444.5, 1909.5], [1439.5, 1908.5], [1435.5, 1908.5], [1432.5, 1912.5], [1429.5, 1915.5], [1430.5, 1917.5], [1403.5, 1916.5], [1366.5, 1916.5], [1367.5, 1913.5], [1366.5, 1908.5]]}, -{"id": "twqd0a", "submitted_by": "Klisurovi4", "name": "A Pink Rose", "description": "Bulgaria is one of the biggest rose oil producers in the world and the pink rose is a symbol of the Rose Valley, famous for its rose-growing industry.", "website": "", "subreddit": "/r/Bulgaria", "center": [690.5, 383.5], "path": [[683.5, 377.5], [680.5, 381.5], [680.5, 385.5], [683.5, 390.5], [694.5, 390.5], [700.5, 383.5], [700.5, 377.5], [698.5, 377.5], [694.5, 379.5], [693.5, 377.5]]}, +{"id": "twqd0a", "submitted_by": "Klisurovi4", "name": "A Pink Rose", "description": "Bulgaria is one of the biggest rose oil producers in the world and the pink rose is a symbol of the Rose Valley, famous for its rose-growing industry.", "website": "", "subreddit": "/r/Bulgaria", "center": [690.5, 383.5], "path": [[682.5, 377.5], [681.5, 378.5], [680.5, 379.5], [680.5, 380.5], [679.5, 381.5], [679.5, 385.5], [680.5, 386.5], [681.5, 388.5], [681.5, 389.5], [682.5, 390.5], [683.5, 390.5], [684.5, 391.5], [694.5, 391.5], [695.5, 390.5], [696.5, 389.5], [697.5, 388.5], [698.5, 387.5], [698.5, 386.5], [699.5, 385.5], [700.5, 384.5], [701.5, 383.5], [701.5, 377.5], [701.5, 376.5], [698.5, 376.5], [697.5, 377.5], [694.5, 377.5], [693.5, 376.5], [683.5, 376.5]]}, {"id": "twqcyz", "submitted_by": "RUB_23", "name": "Feromonas", "description": "Feromonas was a popular portuguese youtuber who used to be the biggest youtuber from Portugal and is embedded in nostalgia for many people.nHe was built in cooperation with r/3rdLife", "website": "", "subreddit": "/r/portugal", "center": [1179.5, 318.5], "path": [[1174.5, 313.5], [1174.5, 322.5], [1183.5, 322.5], [1183.5, 313.5]]}, {"id": "twqcqm", "submitted_by": "TylerMorgan17", "name": "Twig with community Discord link (from Hilda The Series)", "description": "A small white creature - who is half deer, half fox - staring at the user, with shortened discord link for the community of the show that he is in. (https://discord.gg/hilda)", "website": "https://discord.gg/hilda", "subreddit": "/r/HildaTheSeries", "center": [1850.5, 630.5], "path": [[1830.5, 623.5], [1830.5, 637.5], [1869.5, 637.5], [1869.5, 623.5], [1830.5, 623.5]]}, -{"id": "twqcj7", "submitted_by": "aardappelpasta", "name": "Minion", "description": "A small minion to represent the minion/despicable me loving community. Special shoutout to the Bible for the alliance", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "twqce8", "submitted_by": "ziemnakiscool", "name": "Canadian flag", "description": "This flag is canada. It\u2018s maple leaf is still unrecognizable because the canadians building the place don\u2018t know how the hell the maple leave goes. It was also the Banana flag\u2026", "website": "", "subreddit": "", "center": [209.5, 508.5], "path": [[175.5, 528.5], [175.5, 516.5], [175.5, 494.5], [190.5, 493.5], [192.5, 485.5], [225.5, 485.5], [227.5, 493.5], [243.5, 494.5], [243.5, 527.5]]}, -{"id": "twqcb3", "submitted_by": "Loekyloek1", "name": "Composition with Large Red Plane, Yellow, Black, Gray, and Blue, 1921", "description": "Composition with a large red area, yellow, black, gray and blue is an abstract painting from 1921 by the Dutch painter Piet Mondrian. The painting is in the Kunstmuseum The Hague.nnThe oil on canvas painting measures 59.5 by 59.5 cm. It was bought in 1921 by Jo Steijling, a Dutch acquaintance who visited the painter in Paris. This sale gave the painter enough confidence to rent a more expensive studio in the rue du D\u00e9part.", "website": "https://www.piet-mondrian.org/composition-with-large-red-plane-yellow-black-gray-and-blue.jsp", "subreddit": "/r/PlaceNL", "center": [0.5, 0.5], "path": []}, {"id": "twqc7p", "submitted_by": "Juanco93", "name": "Don Quixote", "description": "Main character from the titular book by Miguel de Cervantes published in 1605. The novel is often labeled as the first modern novel, one of the greatest ever written, and also one of the most-translated books in the world.", "website": "http://www.donquixote.com/", "subreddit": "/r/esplace", "center": [909.5, 294.5], "path": [[903.5, 281.5], [903.5, 307.5], [915.5, 307.5], [914.5, 281.5], [903.5, 281.5]]}, {"id": "twqc4u", "submitted_by": "clee-saan", "name": "Avatar", "description": "An Avatar logo made by fan of James Cameron's sci fi movie", "website": "", "subreddit": "/r/avatar", "center": [750.5, 787.5], "path": [[750.5, 776.5], [758.5, 793.5], [741.5, 793.5]]}, {"id": "twqbxh", "submitted_by": "doverkan", "name": "Little Princess (Guardian Tales)", "description": "Small sprite of Little Princess from Guardian Tales.", "website": "", "subreddit": "/r/GuardianTales", "center": [701.5, 225.5], "path": [[701.5, 213.5], [693.5, 220.5], [693.5, 234.5], [710.5, 234.5], [710.5, 220.5], [710.5, 220.5]]}, @@ -1468,10 +1372,10 @@ {"id": "twqbda", "submitted_by": "neutrafan6", "name": "Six Impala", "description": "Six Impala is a (mostly) electronic band formed in 2017 by six different members from around the world. The band's first album, RUBBER, was released in 2019. Two subsequent albums, RUBBER ALT and WFLYTD, were released from 2019 - 2020. Although the band is pretty niche, they've gotten support from more successful artists like Anamanaguchi and Bring Me The Horizon.", "website": "https://twitter.com/siximpalasix", "subreddit": "", "center": [1793.5, 83.5], "path": [[1786.5, 68.5], [1786.5, 97.5], [1799.5, 97.5], [1799.5, 68.5], [1786.5, 68.5]]}, {"id": "twqbb6", "submitted_by": "MorrMorrr", "name": "Utsuho Reiuji", "description": "Also known as Okuu. She is the final boss in Touhou 11 Subterranean Animism.", "website": "https://en.touhouwiki.net/wiki/Utsuho_Reiuji", "subreddit": "/r/touhou", "center": [1638.5, 1534.5], "path": [[1621.5, 1517.5], [1621.5, 1550.5], [1654.5, 1550.5], [1654.5, 1517.5], [1621.5, 1517.5]]}, {"id": "twqbag", "submitted_by": "Eclipsed_Luna", "name": "Coat of arms of Montenegro", "description": "", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_Montenegro", "subreddit": "/r/montenegro", "center": [1964.5, 110.5], "path": [[1955.5, 101.5], [1973.5, 101.5], [1973.5, 119.5], [1955.5, 119.5], [1955.5, 101.5]]}, -{"id": "twqba8", "submitted_by": "erlendtl", "name": "Il Tempo Gigante", "description": "Fictional race car most known from Fl\u00e5klypa Grand Prix (The most watched Norwegian movie)", "website": "https://no.wikipedia.org/wiki/Il_Tempo_Gigante", "subreddit": "", "center": [307.5, 109.5], "path": [[333.5, 101.5], [333.5, 117.5], [280.5, 117.5], [280.5, 101.5]]}, +{"id": "twqba8", "submitted_by": "erlendtl", "name": "Il Tempo Gigante", "description": "Fictional race car most known from Fl\u00e5klypa Grand Prix (The most watched Norwegian movie).", "website": "https://no.wikipedia.org/wiki/Il_Tempo_Gigante", "subreddit": "/r/place_nordicunion", "center": [307.5, 109.5], "path": [[333.5, 101.5], [333.5, 117.5], [280.5, 117.5], [280.5, 101.5]]}, {"id": "twqb9l", "submitted_by": "cspruce89", "name": "Spike Spiegel", "description": "Protagonist of the anime Cowboy Bebop.", "website": "http://www.cowboy-bebop.net/", "subreddit": "/r/cowboybebop", "center": [1256.5, 1550.5], "path": [[1225.5, 1490.5], [1286.5, 1490.5], [1286.5, 1609.5], [1225.5, 1609.5], [1225.5, 1490.5]]}, {"id": "twqb8i", "submitted_by": "Phats06", "name": "Build The Earth", "description": "Build the Earth (BTE) is a project dedicated to creating a 1:1 scale model of Earth within the sandbox video game Minecraft. One block in Minecraft equates to roughly one meter in the real world. There are currently 7,000 builders contributing to this project.", "website": "https://buildtheearth.net/", "subreddit": "/r/BuildTheEarth", "center": [65.5, 616.5], "path": [[50.5, 619.5], [50.5, 612.5], [51.5, 611.5], [51.5, 609.5], [52.5, 608.5], [52.5, 607.5], [56.5, 603.5], [57.5, 603.5], [58.5, 602.5], [59.5, 601.5], [61.5, 601.5], [62.5, 600.5], [69.5, 600.5], [70.5, 601.5], [72.5, 601.5], [73.5, 602.5], [74.5, 602.5], [79.5, 607.5], [79.5, 608.5], [80.5, 609.5], [80.5, 612.5], [81.5, 613.5], [81.5, 619.5], [80.5, 620.5], [80.5, 621.5], [79.5, 622.5], [79.5, 624.5], [74.5, 629.5], [73.5, 629.5], [72.5, 630.5], [70.5, 630.5], [69.5, 631.5], [62.5, 631.5], [61.5, 630.5], [59.5, 630.5], [58.5, 629.5], [57.5, 629.5], [52.5, 624.5], [52.5, 623.5], [51.5, 622.5], [51.5, 620.5], [50.5, 619.5]]}, -{"id": "twqb4a", "submitted_by": "Klisurovi4", "name": "Shipka Monument", "description": "The Liberty Memorial on Shipka Peak is the symbol of modern Bulgaria and the liberation of Bulgaria", "website": "", "subreddit": "/r/Bulgaria", "center": [671.5, 384.5], "path": [[663.5, 391.5], [679.5, 391.5], [676.5, 389.5], [677.5, 377.5], [666.5, 377.5], [665.5, 388.5]]}, +{"id": "twqb4a", "submitted_by": "Klisurovi4", "name": "Shipka Monument", "description": "The Liberty Memorial on Shipka Peak is the symbol of modern Bulgaria and the liberation of Bulgaria", "website": "https://en.wikipedia.org/wiki/Shipka_Monument", "subreddit": "/r/bulgaria", "center": [671.5, 385.5], "path": [[665.5, 376.5], [665.5, 377.5], [666.5, 378.5], [666.5, 381.5], [665.5, 382.5], [665.5, 388.5], [664.5, 389.5], [663.5, 390.5], [662.5, 391.5], [662.5, 392.5], [679.5, 392.5], [680.5, 391.5], [679.5, 390.5], [678.5, 389.5], [677.5, 388.5], [677.5, 382.5], [676.5, 381.5], [676.5, 378.5], [677.5, 377.5], [677.5, 376.5], [665.5, 376.5]]}, {"id": "twqauw", "submitted_by": "rollam", "name": "Lucky Luke", "description": "Belgian cartoon, shoots faster than his shadow", "website": "", "subreddit": "", "center": [1307.5, 1030.5], "path": [[1297.5, 1037.5], [1302.5, 1039.5], [1303.5, 1051.5], [1311.5, 1052.5], [1311.5, 1042.5], [1315.5, 1039.5], [1312.5, 1028.5], [1315.5, 1022.5], [1315.5, 1012.5], [1307.5, 1010.5], [1300.5, 1012.5], [1298.5, 1015.5], [1303.5, 1017.5], [1303.5, 1021.5]]}, {"id": "twqapw", "submitted_by": "king_john651", "name": "Former site of r/virtualdarby", "description": "Towards the last hours of day 3 a fan of vTuber Virtual Darby took over this mural with an army of bots. nnThe r/dwarffortress community took to the internet too find out who and why, managing to get Virtual Darby themselves on stream to denounce the actions and ban the fan that was demanding satisfaction.nnThe red horns remain on the last dwarf as homage to her sincerity and kindness Darby gave to the community.", "website": "https://i.redd.it/50w7i5h4njr81.png", "subreddit": "/r/place/comments/tvxiis/ugoatymgf_has_single_handedly_been_running_a", "center": [23.5, 486.5], "path": [[0.5, 464.5], [46.5, 464.5], [45.5, 509.5], [0.5, 509.5]]}, {"id": "twqai8", "submitted_by": "Juanco93", "name": "Mortadelo and Filem\u00f3n", "description": "Spanish comic series drawn by Francisco Ib\u00e1\u00f1ez since 1958. It has been published in more than a dozen languages.", "website": "https://mortadelo-filemon.es/", "subreddit": "/r/esplace", "center": [943.5, 296.5], "path": [[929.5, 308.5], [924.5, 301.5], [922.5, 296.5], [927.5, 291.5], [926.5, 284.5], [928.5, 280.5], [933.5, 282.5], [944.5, 281.5], [945.5, 286.5], [955.5, 284.5], [959.5, 289.5], [965.5, 298.5], [961.5, 308.5], [929.5, 308.5]]}, @@ -1484,7 +1388,7 @@ {"id": "twq9zl", "submitted_by": "ziemnakiscool", "name": ".gg/placeDE sign", "description": "Use discord.gg/placeDE as refrence; it\u2018s the German discord server.", "website": "https://discord.gg/placeDE", "subreddit": "/r/placede", "center": [1955.5, 1134.5], "path": [[1935.5, 1140.5], [1935.5, 1128.5], [1974.5, 1128.5], [1975.5, 1133.5], [1974.5, 1135.5], [1974.5, 1134.5], [1974.5, 1136.5], [1975.5, 1136.5], [1974.5, 1137.5], [1973.5, 1140.5], [1973.5, 1141.5], [1974.5, 1140.5]]}, {"id": "twq9vm", "submitted_by": "cspruce89", "name": "Dwarf Fortress", "description": "An homage to Dwarf Fortress, a free game. The inspiration for games such as Minecraft, Rimworld, and Terraria. The most complex simulation ever created.", "website": "https://www.bay12games.com/dwarves/", "subreddit": "/r/dwarffortress", "center": [26.5, 490.5], "path": [[0.5, 464.5], [52.5, 464.5], [52.5, 515.5], [0.5, 515.5], [0.5, 465.5]]}, {"id": "twq9sr", "submitted_by": "rollam", "name": "Cara pils", "description": "Cara trut, premium pils from Belgium", "website": "", "subreddit": "", "center": [256.5, 648.5], "path": [[248.5, 662.5], [251.5, 663.5], [258.5, 663.5], [261.5, 662.5], [261.5, 648.5], [273.5, 648.5], [260.5, 638.5], [257.5, 633.5], [248.5, 633.5]]}, -{"id": "twq9sa", "submitted_by": "goCommitUnLive", "name": "Bloons Dart Monkey", "description": "Bloons TD6's Dark Monkey.", "website": "ninjakiwi.com", "subreddit": "/r/Bloons", "center": [1875.5, 1650.5], "path": [[1876.5, 1634.5], [1874.5, 1634.5], [1874.5, 1636.5], [1873.5, 1636.5], [1873.5, 1637.5], [1868.5, 1637.5], [1869.5, 1638.5], [1866.5, 1638.5], [1867.5, 1639.5], [1865.5, 1639.5], [1866.5, 1640.5], [1864.5, 1640.5], [1863.5, 1642.5], [1862.5, 1657.5], [1863.5, 1659.5], [1866.5, 1659.5], [1867.5, 1660.5], [1867.5, 1664.5], [1885.5, 1664.5], [1885.5, 1658.5], [1886.5, 1656.5], [1889.5, 1655.5], [1890.5, 1649.5], [1887.5, 1648.5], [1886.5, 1646.5], [1885.5, 1643.5], [1884.5, 1640.5], [1884.5, 1639.5], [1883.5, 1637.5], [1880.5, 1635.5], [1877.5, 1634.5], [1875.5, 1634.5]]}, +{"id": "twq9sa", "submitted_by": "goCommitUnLive", "name": "Bloons Dart Monkey", "description": "Bloons TD6's Dark Monkey.", "website": "https://ninjakiwi.com", "subreddit": "/r/Bloons", "center": [1875.5, 1650.5], "path": [[1876.5, 1634.5], [1874.5, 1634.5], [1874.5, 1636.5], [1873.5, 1636.5], [1873.5, 1637.5], [1868.5, 1637.5], [1869.5, 1638.5], [1866.5, 1638.5], [1867.5, 1639.5], [1865.5, 1639.5], [1866.5, 1640.5], [1864.5, 1640.5], [1863.5, 1642.5], [1862.5, 1657.5], [1863.5, 1659.5], [1866.5, 1659.5], [1867.5, 1660.5], [1867.5, 1664.5], [1885.5, 1664.5], [1885.5, 1658.5], [1886.5, 1656.5], [1889.5, 1655.5], [1890.5, 1649.5], [1887.5, 1648.5], [1886.5, 1646.5], [1885.5, 1643.5], [1884.5, 1640.5], [1884.5, 1639.5], [1883.5, 1637.5], [1880.5, 1635.5], [1877.5, 1634.5], [1875.5, 1634.5]]}, {"id": "twq9qn", "submitted_by": "Loekyloek1", "name": "Groesbeek Canadian War Cemetery and Memorial", "description": "Groesbeek Canadian War Cemetery and Memorial (French:Le Cimeti\u00e8re de Guerre Canadien Groesbeek, Dutch:Canadese Oorlogsbegraafplaats Groesbeek) is a Second World War Commonwealth War Graves Commission military war grave cemetery, located in the village of Groesbeek, 8 km (5.0 mi) southeast of Nijmegen in the Netherlands. Of the total 2,619 burials, the cemetery contains 2,338 Canadian soldiers. It was built to a design by Commission architect Philip Hepworth.", "website": "https://en.wikipedia.org/wiki/Groesbeek_Canadian_War_Cemetery", "subreddit": "/r/PlaceNL", "center": [521.5, 1960.5], "path": [[502.5, 1950.5], [537.5, 1950.5], [538.5, 1950.5], [538.5, 1949.5], [539.5, 1949.5], [539.5, 1951.5], [541.5, 1951.5], [539.5, 1951.5], [539.5, 1957.5], [539.5, 1958.5], [540.5, 1958.5], [540.5, 1962.5], [541.5, 1962.5], [541.5, 1965.5], [542.5, 1965.5], [542.5, 1966.5], [543.5, 1966.5], [543.5, 1968.5], [544.5, 1968.5], [544.5, 1969.5], [546.5, 1969.5], [546.5, 1958.5], [544.5, 1958.5], [544.5, 1959.5], [542.5, 1959.5], [542.5, 1960.5], [542.5, 1958.5], [543.5, 1958.5], [543.5, 1957.5], [545.5, 1957.5], [545.5, 1956.5], [546.5, 1956.5], [546.5, 1969.5], [502.5, 1969.5]]}, {"id": "twq9cj", "submitted_by": "fruselight", "name": "Blue Archive", "description": "You're a teacher and you teach students that have... guns?? Wait.. All of them have guns!?", "website": "https://bluearchive.nexon.com/home", "subreddit": "/r/BlueArchive", "center": [1698.5, 1732.5], "path": [[1674.5, 1712.5], [1674.5, 1738.5], [1675.5, 1738.5], [1677.5, 1738.5], [1679.5, 1738.5], [1682.5, 1738.5], [1684.5, 1738.5], [1685.5, 1738.5], [1686.5, 1738.5], [1686.5, 1739.5], [1686.5, 1741.5], [1686.5, 1743.5], [1686.5, 1746.5], [1686.5, 1748.5], [1686.5, 1750.5], [1686.5, 1752.5], [1686.5, 1754.5], [1686.5, 1756.5], [1686.5, 1758.5], [1686.5, 1759.5], [1686.5, 1760.5], [1686.5, 1761.5], [1710.5, 1761.5], [1710.5, 1747.5], [1712.5, 1747.5], [1712.5, 1745.5], [1712.5, 1744.5], [1711.5, 1744.5], [1711.5, 1743.5], [1711.5, 1742.5], [1711.5, 1741.5], [1711.5, 1740.5], [1712.5, 1740.5], [1712.5, 1739.5], [1713.5, 1739.5], [1714.5, 1738.5], [1715.5, 1738.5], [1716.5, 1738.5], [1717.5, 1738.5], [1718.5, 1738.5], [1718.5, 1737.5], [1719.5, 1737.5], [1719.5, 1736.5], [1720.5, 1736.5], [1720.5, 1735.5], [1721.5, 1735.5], [1721.5, 1734.5], [1722.5, 1734.5], [1723.5, 1712.5]]}, {"id": "twq9c5", "submitted_by": "buhodiurno_", "name": "MAMAMOO", "description": "Logo of the Korean girl-group MAMAMOO, composed by members Solar, Moonbyul, Wheein and Hwasa.", "website": "https://en.wikipedia.org/wiki/Mamamoo", "subreddit": "/r/mamamoo", "center": [1469.5, 874.5], "path": [[1450.5, 870.5], [1450.5, 878.5], [1487.5, 878.5], [1487.5, 870.5], [1450.5, 870.5]]}, @@ -1505,16 +1409,15 @@ {"id": "twq82t", "submitted_by": "Felfit", "name": "National Items", "description": "The Rooster of Barcelos with a background made of azulejos and a national desert called the Pastel de Nata commonly consumed alongside coffee", "website": "", "subreddit": "/r/portugal", "center": [895.5, 392.5], "path": [[923.5, 421.5], [912.5, 421.5], [912.5, 411.5], [865.5, 411.5], [865.5, 371.5], [923.5, 370.5], [923.5, 422.5]]}, {"id": "twq7xl", "submitted_by": "FairyRave", "name": "Ghostbur", "description": "A character played by Wilbur Soot on the Dream SMP. Ghostbur has a spotty memory, but he would give some blue for others to make their day a bit happier. The pixel art was created by the L'Manplace community.", "website": "https://dreamteam.fandom.com/wiki/Ghostbur", "subreddit": "/r/dreamsmp", "center": [133.5, 144.5], "path": [[129.5, 147.5], [129.5, 145.5], [130.5, 145.5], [130.5, 141.5], [131.5, 141.5], [131.5, 140.5], [135.5, 140.5], [135.5, 141.5], [136.5, 141.5], [136.5, 147.5]]}, {"id": "twq7xf", "submitted_by": "Relssifille", "name": "Kpop South Block", "description": "An area containing kpop logo designs and the Nepal area, who were allied. Unfortunately, many of the kpop designs were taken over by a streamer, and they weren't restored in time.", "website": "", "subreddit": "/r/kpop", "center": [1497.5, 989.5], "path": [[1462.5, 912.5], [1524.5, 912.5], [1525.5, 1063.5], [1451.5, 1063.5], [1451.5, 1044.5], [1476.5, 1044.5], [1476.5, 999.5], [1481.5, 998.5], [1478.5, 937.5], [1462.5, 937.5]]}, -{"id": "twq7wo", "submitted_by": "EndlessCookies", "name": "r/SuperStonk", "description": "A subreddit dedicated to the research, documentation and crowd-sourced support of the GameStop stock.", "website": "", "subreddit": "/r/Superstonk", "center": [841.5, 795.5], "path": [[773.5, 736.5], [775.5, 856.5], [906.5, 855.5], [908.5, 735.5], [774.5, 737.5]]}, {"id": "twq7rv", "submitted_by": "N8dawgggg", "name": "Tampa Bay Lightning", "description": "Professional NHL Team the Tampa Bay Lightning logo with a Stanley cup (championship trophy) and B2B for Back to Back championship wins in 2020 and 2021.", "website": "https://www.nhl.com/lightning", "subreddit": "/r/TampaBayLightning", "center": [691.5, 575.5], "path": [[678.5, 590.5], [678.5, 572.5], [684.5, 573.5], [684.5, 557.5], [701.5, 557.5], [701.5, 591.5], [678.5, 591.5]]}, -{"id": "twq7rh", "submitted_by": "erlendtl", "name": "Sverd i fjell (Swords in Rock)", "description": "Monument commemorating the 872 battle which resulted in Harald H\u00e5rfagre gathering Norway under one king", "website": "https://en.wikipedia.org/wiki/Sverd_i_fjell", "subreddit": "", "center": [350.5, 59.5], "path": [[336.5, 77.5], [339.5, 70.5], [339.5, 57.5], [336.5, 52.5], [340.5, 38.5], [345.5, 38.5], [364.5, 50.5], [365.5, 58.5], [363.5, 60.5], [363.5, 70.5], [365.5, 77.5]]}, +{"id": "twq7rh", "submitted_by": "erlendtl", "name": "Sverd i fjell (Swords in Rock)", "description": "Monument commemorating the 872 battle which resulted in Harald H\u00e5rfagre gathering Norway under one king.", "website": "https://en.wikipedia.org/wiki/Sverd_i_fjell", "subreddit": "/r/place_nordicunion", "center": [350.5, 59.5], "path": [[336.5, 77.5], [339.5, 70.5], [339.5, 57.5], [336.5, 52.5], [340.5, 38.5], [345.5, 38.5], [364.5, 50.5], [365.5, 58.5], [363.5, 60.5], [363.5, 70.5], [365.5, 77.5]]}, {"id": "twq7q2", "submitted_by": "Juanco93", "name": "Ecce Homo", "description": "Fresco painted circa 1930 by El\u00edas Garc\u00eda Mart\u00ednez. Its fame derives from a good faith attempt to restore it by untrained amateur Cecilia Gim\u00e9nez, transforming the painting and making it look like a monkey.", "website": "https://english.elpais.com/arts/2020-11-13/spains-latest-ecce-homo-how-a-botched-restoration-made-global-headlines.html?outputType=amp", "subreddit": "/r/esplace", "center": [1040.5, 296.5], "path": [[1030.5, 307.5], [1030.5, 285.5], [1051.5, 286.5], [1051.5, 307.5]]}, -{"id": "twq7mq", "submitted_by": "Klisurovi4", "name": "Map of Bulgaria", "description": "A map of Bulgaria", "website": "", "subreddit": "/r/Bulgaria", "center": [640.5, 385.5], "path": [[627.5, 377.5], [628.5, 391.5], [652.5, 391.5], [653.5, 381.5], [648.5, 377.5], [637.5, 381.5]]}, +{"id": "twq7mq", "submitted_by": "Klisurovi4", "name": "Map of Bulgaria", "description": "A map of Bulgaria", "website": "https://en.wikipedia.org/wiki/Bulgaria", "subreddit": "/r/bulgaria", "center": [640.5, 384.5], "path": [[628.5, 376.5], [627.5, 377.5], [626.5, 378.5], [626.5, 380.5], [627.5, 381.5], [628.5, 382.5], [627.5, 383.5], [627.5, 385.5], [628.5, 386.5], [629.5, 386.5], [628.5, 387.5], [627.5, 388.5], [627.5, 389.5], [628.5, 390.5], [629.5, 391.5], [630.5, 391.5], [631.5, 392.5], [635.5, 392.5], [636.5, 391.5], [637.5, 391.5], [638.5, 392.5], [645.5, 392.5], [646.5, 391.5], [647.5, 390.5], [648.5, 390.5], [649.5, 391.5], [651.5, 391.5], [652.5, 390.5], [652.5, 389.5], [651.5, 388.5], [650.5, 387.5], [650.5, 386.5], [651.5, 385.5], [651.5, 384.5], [652.5, 383.5], [653.5, 382.5], [654.5, 381.5], [653.5, 380.5], [653.5, 380.5], [652.5, 379.5], [651.5, 378.5], [650.5, 377.5], [649.5, 377.5], [648.5, 376.5], [646.5, 376.5], [645.5, 377.5], [644.5, 377.5], [643.5, 378.5], [642.5, 379.5], [641.5, 380.5], [640.5, 379.5], [639.5, 379.5], [638.5, 379.5], [637.5, 380.5], [636.5, 380.5], [636.5, 380.5], [635.5, 379.5], [630.5, 379.5], [631.5, 378.5], [630.5, 377.5], [629.5, 376.5], [628.5, 376.5], [627.5, 377.5]]}, {"id": "twq7i7", "submitted_by": "remsoffyt", "name": "Guillotine", "description": "Execution tool invented by French, used until the 70s in France. It killed Louis XVI during the French Revolution in January 1793", "website": "", "subreddit": "/r/PlaceFrance", "center": [1140.5, 813.5], "path": [[1131.5, 829.5], [1150.5, 829.5], [1147.5, 824.5], [1147.5, 800.5], [1147.5, 799.5], [1148.5, 799.5], [1148.5, 797.5], [1148.5, 796.5], [1133.5, 796.5], [1133.5, 818.5], [1131.5, 820.5], [1133.5, 822.5], [1134.5, 824.5]]}, {"id": "twq7ce", "submitted_by": "rollam", "name": "Belgian chocolate", "description": "Belgium is world famous for creating some of the most delicious chocolate, especially pralines", "website": "", "subreddit": "", "center": [286.5, 587.5], "path": [[278.5, 595.5], [278.5, 595.5], [287.5, 595.5], [295.5, 586.5], [288.5, 578.5], [287.5, 578.5], [280.5, 585.5], [279.5, 587.5]]}, {"id": "twq78v", "submitted_by": "metiletileter", "name": "Andalusian Flag", "description": "Flag of the Autonomous Community of Andalusia, located in southern Spain", "website": "", "subreddit": "/r/Andalucia", "center": [1623.5, 312.5], "path": [[1631.5, 314.5], [1631.5, 314.5], [1617.5, 314.5], [1617.5, 309.5], [1627.5, 309.5], [1627.5, 311.5], [1628.5, 312.5], [1629.5, 312.5]]}, {"id": "twq70z", "submitted_by": "supremekirb", "name": "EarthBound", "description": "The area created by the /r/EarthBound community. EarthBound, or MOTHER in Japan is a JRPG trilogy created by copywriter and celebrity Shigesato Itoi. This area includes:nnEARTHBOUND (MOTHER 2)nNessnTelephonenStarmannMr. SaturnnIron Pencil Statuenmini-PaulannMOTHER 3 (Unreleased outside of JP)nSave Frognmini-LucasnnA small artwork of Ninten from EarthBound Beginnings (MOTHER 1) can be found near the LEGO logo.", "website": "https://starmen.net", "subreddit": "/r/EarthBound", "center": [1979.5, 316.5], "path": [[1969.5, 355.5], [1976.5, 355.5], [1976.5, 349.5], [1982.5, 349.5], [1982.5, 337.5], [1999.5, 337.5], [1999.5, 287.5], [1981.5, 287.5], [1981.5, 290.5], [1976.5, 290.5], [1976.5, 291.5], [1975.5, 291.5], [1975.5, 292.5], [1974.5, 293.5], [1972.5, 297.5], [1954.5, 297.5], [1954.5, 321.5], [1967.5, 322.5], [1967.5, 332.5], [1968.5, 332.5], [1968.5, 355.5], [1969.5, 355.5]]}, -{"id": "twq6u7", "submitted_by": "Klisurovi4", "name": "Alexander Nevsky Cathedral", "description": "St. Alexander Nevsky Cathedral is one of the largest Christian church buildings in the world and a symbol of the capital city of Sofia", "website": "", "subreddit": "/r/Bulgaria", "center": [599.5, 385.5], "path": [[583.5, 391.5], [585.5, 384.5], [591.5, 377.5], [608.5, 377.5], [616.5, 388.5], [616.5, 391.5]]}, +{"id": "twq6u7", "submitted_by": "Klisurovi4", "name": "Alexander Nevsky Cathedral", "description": "St. Alexander Nevsky Cathedral is one of the largest Christian church buildings in the world and a symbol of the capital city of Sofia", "website": "", "subreddit": "/r/Bulgaria", "center": [599.5, 386.5], "path": [[582.5, 391.5], [582.5, 390.5], [582.5, 389.5], [583.5, 389.5], [583.5, 388.5], [583.5, 387.5], [584.5, 387.5], [584.5, 383.5], [586.5, 383.5], [588.5, 383.5], [588.5, 378.5], [589.5, 378.5], [590.5, 377.5], [591.5, 376.5], [592.5, 376.5], [593.5, 377.5], [594.5, 378.5], [595.5, 379.5], [595.5, 383.5], [600.5, 383.5], [600.5, 379.5], [601.5, 378.5], [602.5, 377.5], [604.5, 377.5], [605.5, 376.5], [606.5, 377.5], [608.5, 377.5], [609.5, 378.5], [610.5, 379.5], [610.5, 382.5], [611.5, 383.5], [612.5, 383.5], [613.5, 384.5], [614.5, 385.5], [614.5, 386.5], [615.5, 386.5], [616.5, 387.5], [617.5, 388.5], [617.5, 391.5], [617.5, 392.5], [582.5, 392.5]]}, {"id": "twq6ti", "submitted_by": "rollam", "name": "Belgian waffle", "description": "A delicious waffle, sometimes topped or filled with sugar crystals", "website": "", "subreddit": "", "center": [285.5, 601.5], "path": [[277.5, 595.5], [294.5, 595.5], [292.5, 607.5], [277.5, 607.5], [276.5, 606.5], [277.5, 599.5]]}, {"id": "twq6rd", "submitted_by": "LilluZhion", "name": "LOST numbers", "description": "The iconic numbers from the tv show LOST", "website": "", "subreddit": "/r/lost", "center": [1888.5, 796.5], "path": [[1867.5, 793.5], [1909.5, 793.5], [1909.5, 799.5], [1867.5, 799.5], [1867.5, 793.5], [1867.5, 793.5], [1867.5, 793.5]]}, {"id": "twq6od", "submitted_by": "FantasyFantast", "name": "GenAi", "description": "A Discord bot that randomly generates memes in chat using Markov chains", "website": "https://genai.bot/", "subreddit": "/r/genai", "center": [16.5, 708.5], "path": [[12.5, 701.5], [20.5, 701.5], [20.5, 714.5], [12.5, 714.5]]}, @@ -1531,17 +1434,16 @@ {"id": "twq5wb", "submitted_by": "zennysays", "name": "Kitboga", "description": "Twitch and Youtube Streamer, Kitboga. An improv artist who wastes scammers time, while spreading positivity wherever he goes and making the world laugh. Take chances, make mistakes and get messy. You matter.", "website": "https://www.twitch.tv/kitboga", "subreddit": "/r/Kitboga", "center": [1311.5, 1742.5], "path": [[1296.5, 1741.5], [1286.5, 1739.5], [1331.5, 1739.5], [1331.5, 1746.5], [1287.5, 1746.5], [1286.5, 1739.5], [1332.5, 1738.5], [1331.5, 1746.5], [1286.5, 1744.5], [1286.5, 1745.5], [1286.5, 1745.5], [1287.5, 1745.5]]}, {"id": "twq5vn", "submitted_by": "NinotainmentSystems", "name": "Moist Esports", "description": "Esports organization run by YouTuber Cr1TiKaL", "website": "", "subreddit": "", "center": [1986.5, 98.5], "path": [[1998.5, 112.5], [1998.5, 83.5], [1974.5, 83.5], [1974.5, 112.5]]}, {"id": "twq5n9", "submitted_by": "Real_Ralphtherap", "name": "LEMMiNO", "description": "An Educational YouTube Channel that does documentaries and list videos, who is narrated by a 20-something Swedish guy.", "website": "https://www.lemmi.no/", "subreddit": "/r/LEMMiNO", "center": [1597.5, 255.5], "path": [[1591.5, 250.5], [1602.5, 250.5], [1602.5, 260.5], [1591.5, 260.5], [1591.5, 250.5]]}, -{"id": "twq5kg", "submitted_by": "siiimulation", "name": "LMU logo", "description": "Logo of the Ludwig Maximilian University of Munich (next to the logo of our sister university TUM)", "website": "www.lmu.de/en", "subreddit": "/r/LMUMunich", "center": [1251.5, 1194.5], "path": [[1242.5, 1191.5], [1260.5, 1191.5], [1260.5, 1197.5], [1242.5, 1197.5], [1242.5, 1191.5]]}, +{"id": "twq5kg", "submitted_by": "siiimulation", "name": "LMU logo", "description": "Logo of the Ludwig Maximilian University of Munich (next to the logo of our sister university TUM)", "website": "https://www.lmu.de/en", "subreddit": "/r/LMUMunich", "center": [1251.5, 1194.5], "path": [[1242.5, 1191.5], [1260.5, 1191.5], [1260.5, 1197.5], [1242.5, 1197.5], [1242.5, 1191.5]]}, {"id": "twq5es", "submitted_by": "Juanco93", "name": "Mercadona", "description": "Spanish family-owned supermarket chain. It has 1636 stores in all the 17 autonomous communities of Spain, Ceuta, Melilla, and northen Portugal.", "website": "https://info.mercadona.es/en/who-we-are", "subreddit": "/r/esplace", "center": [1016.5, 295.5], "path": [[1014.5, 306.5], [1008.5, 302.5], [1006.5, 300.5], [1005.5, 297.5], [1006.5, 289.5], [1010.5, 285.5], [1017.5, 283.5], [1023.5, 285.5], [1027.5, 289.5], [1028.5, 297.5], [1022.5, 305.5], [1019.5, 306.5], [1014.5, 306.5]]}, {"id": "twq5ch", "submitted_by": "rollam", "name": "Grote Smurf", "description": "From the Belgian comic series The Smurfs created by Peyo", "website": "", "subreddit": "", "center": [302.5, 629.5], "path": [[313.5, 617.5], [308.5, 613.5], [298.5, 613.5], [290.5, 618.5], [289.5, 621.5], [288.5, 622.5], [288.5, 632.5], [289.5, 635.5], [291.5, 639.5], [294.5, 642.5], [295.5, 643.5], [312.5, 643.5], [319.5, 637.5], [310.5, 624.5]]}, {"id": "twq5c1", "submitted_by": "Explodingmemes", "name": "Pride road", "description": "A row of pride flags representing the LGBT community", "website": "", "subreddit": "/r/placepride", "center": [473.5, 589.5], "path": [[421.5, 450.5], [468.5, 450.5], [468.5, 610.5], [465.5, 610.5], [465.5, 646.5], [597.5, 647.5], [597.5, 681.5], [449.5, 681.5], [448.5, 644.5], [421.5, 644.5], [421.5, 450.5]]}, -{"id": "twq589", "submitted_by": "ObsceneCamel", "name": "Smol Marisad and Tomoko", "description": "Smol Marisad was establish by r/marisad as a second project on the canvas, it unfortunately had to destroy the old Rick Astley pixel art that used to cover both Tomoko and the Tani logo. Shortly after Smol Marisad started to take shape, r/watamote began drawing Tomoko, after a short period of bickering between the two groups they finally agreed to borders, and an alliance. Note that in the end both were destroyed before the archiving by the streamer Tanizen, who ordered his followers to draw a dog in their place.", "website": "", "subreddit": "/r/marisad, &, /r/watamote", "center": [1741.5, 1209.5], "path": [[1724.5, 1198.5], [1724.5, 1219.5], [1758.5, 1219.5], [1758.5, 1198.5], [1724.5, 1198.5]]}, {"id": "twq57o", "submitted_by": "esmilgram", "name": "Car", "description": "A small red car that allied with the team building the MILGRAM logo early on in its construction. When the MILGRAM logo was covered by the streamer 5up, the car was rebuilt at the new location.", "website": "", "subreddit": "", "center": [1913.5, 1245.5], "path": [[1912.5, 1244.5], [1912.5, 1246.5], [1912.5, 1245.5], [1913.5, 1245.5], [1914.5, 1245.5], [1915.5, 1245.5], [1915.5, 1246.5], [1915.5, 1245.5], [1914.5, 1245.5], [1914.5, 1244.5], [1912.5, 1244.5], [1913.5, 1244.5], [1912.5, 1244.5]]}, {"id": "twq56g", "submitted_by": "Kobalt619", "name": "Vorarlberg", "description": "Coat of Arms for Austrias Western Province.", "website": "", "subreddit": "/r/austria", "center": [1068.5, 251.5], "path": [[1062.5, 250.5], [1064.5, 252.5], [1065.5, 251.5], [1067.5, 251.5], [1069.5, 251.5], [1069.5, 253.5], [1069.5, 256.5], [1064.5, 257.5], [1063.5, 258.5], [1070.5, 257.5], [1070.5, 258.5]]}, {"id": "twq4w9", "submitted_by": "pixlplayer", "name": "Soft Taco and Friends", "description": "What started out as a mascot for the Soft Tacos discord server turned into a group of happy food friends when the Germans got involved.", "website": "", "subreddit": "/r/PlaceTaco", "center": [125.5, 1153.5], "path": [[90.5, 1171.5], [90.5, 1170.5], [89.5, 1170.5], [89.5, 1164.5], [90.5, 1164.5], [90.5, 1162.5], [91.5, 1162.5], [91.5, 1161.5], [92.5, 1161.5], [92.5, 1154.5], [91.5, 1154.5], [91.5, 1152.5], [90.5, 1152.5], [90.5, 1150.5], [91.5, 1150.5], [91.5, 1147.5], [92.5, 1147.5], [92.5, 1139.5], [91.5, 1139.5], [91.5, 1138.5], [89.5, 1138.5], [89.5, 1136.5], [88.5, 1136.5], [88.5, 1135.5], [89.5, 1135.5], [89.5, 1131.5], [90.5, 1131.5], [90.5, 1130.5], [94.5, 1130.5], [94.5, 1131.5], [99.5, 1131.5], [99.5, 1130.5], [102.5, 1130.5], [102.5, 1129.5], [103.5, 1129.5], [103.5, 1128.5], [104.5, 1128.5], [104.5, 1130.5], [110.5, 1130.5], [110.5, 1131.5], [111.5, 1131.5], [111.5, 1133.5], [112.5, 1133.5], [112.5, 1134.5], [111.5, 1134.5], [111.5, 1138.5], [115.5, 1138.5], [115.5, 1139.5], [117.5, 1139.5], [117.5, 1141.5], [118.5, 1141.5], [118.5, 1143.5], [117.5, 1143.5], [117.5, 1145.5], [116.5, 1145.5], [116.5, 1147.5], [116.5, 1148.5], [120.5, 1148.5], [120.5, 1147.5], [121.5, 1147.5], [121.5, 1145.5], [121.5, 1146.5], [121.5, 1147.5], [122.5, 1147.5], [123.5, 1147.5], [123.5, 1146.5], [125.5, 1146.5], [125.5, 1145.5], [126.5, 1145.5], [126.5, 1144.5], [128.5, 1144.5], [128.5, 1143.5], [131.5, 1143.5], [131.5, 1142.5], [132.5, 1142.5], [132.5, 1141.5], [133.5, 1141.5], [133.5, 1140.5], [134.5, 1140.5], [134.5, 1139.5], [135.5, 1139.5], [135.5, 1138.5], [137.5, 1138.5], [137.5, 1137.5], [141.5, 1137.5], [141.5, 1138.5], [142.5, 1138.5], [142.5, 1139.5], [143.5, 1139.5], [143.5, 1141.5], [145.5, 1141.5], [145.5, 1140.5], [146.5, 1140.5], [146.5, 1138.5], [148.5, 1138.5], [148.5, 1137.5], [149.5, 1137.5], [149.5, 1138.5], [150.5, 1138.5], [150.5, 1139.5], [151.5, 1139.5], [151.5, 1140.5], [152.5, 1140.5], [152.5, 1141.5], [154.5, 1141.5], [154.5, 1140.5], [155.5, 1140.5], [155.5, 1139.5], [156.5, 1139.5], [156.5, 1140.5], [157.5, 1140.5], [157.5, 1141.5], [158.5, 1141.5], [158.5, 1142.5], [161.5, 1142.5], [161.5, 1141.5], [162.5, 1141.5], [162.5, 1140.5], [163.5, 1140.5], [163.5, 1139.5], [164.5, 1139.5], [164.5, 1140.5], [165.5, 1140.5], [165.5, 1141.5], [166.5, 1141.5], [166.5, 1142.5], [167.5, 1142.5], [167.5, 1143.5], [166.5, 1143.5], [166.5, 1145.5], [165.5, 1145.5], [165.5, 1147.5], [166.5, 1147.5], [166.5, 1149.5], [167.5, 1149.5], [167.5, 1152.5], [166.5, 1152.5], [166.5, 1156.5], [165.5, 1156.5], [165.5, 1159.5], [164.5, 1159.5], [164.5, 1161.5], [163.5, 1161.5], [163.5, 1165.5], [162.5, 1165.5], [162.5, 1166.5], [161.5, 1166.5], [161.5, 1167.5], [160.5, 1168.5], [153.5, 1169.5], [153.5, 1168.5], [149.5, 1168.5], [149.5, 1167.5], [147.5, 1167.5], [146.5, 1167.5], [146.5, 1170.5], [145.5, 1170.5], [145.5, 1171.5], [128.5, 1171.5], [128.5, 1168.5], [127.5, 1168.5], [127.5, 1166.5], [126.5, 1166.5], [127.5, 1166.5], [127.5, 1162.5], [125.5, 1162.5], [126.5, 1160.5], [124.5, 1160.5], [124.5, 1161.5], [123.5, 1161.5], [123.5, 1162.5], [118.5, 1162.5], [118.5, 1163.5], [111.5, 1163.5], [111.5, 1170.5], [110.5, 1170.5], [110.5, 1171.5], [105.5, 1171.5]]}, {"id": "twq4w2", "submitted_by": "jranfran", "name": "Juja", "description": "Jujalag is a Spanish streamer", "website": "https://www.twitch.tv/jujalag", "subreddit": "/r/SorryLag", "center": [1549.5, 1022.5], "path": [[1525.5, 999.5], [1574.5, 999.5], [1573.5, 1045.5], [1525.5, 1045.5], [1525.5, 999.5]]}, {"id": "twq4vt", "submitted_by": "gavinorrwa", "name": "Cal Poly SLO", "description": "The logo of California Polytechnic State University, San Luis Obispo (Cal Poly SLO) along with the mountains surrounding the campus.", "website": "https://www.calpoly.edu/", "subreddit": "/r/CalPoly", "center": [725.5, 1846.5], "path": [[716.5, 1830.5], [733.5, 1830.5], [733.5, 1862.5], [716.5, 1862.5], [716.5, 1837.5], [716.5, 1831.5]]}, -{"id": "twq4ux", "submitted_by": "Klisurovi4", "name": "A lion", "description": "One of the national symbols of Bulgaria", "website": "", "subreddit": "/r/Bulgaria", "center": [570.5, 384.5], "path": [[561.5, 377.5], [561.5, 391.5], [579.5, 391.5], [579.5, 377.5]]}, +{"id": "twq4ux", "submitted_by": "Klisurovi4", "name": "A lion - Bulgarian national symbol", "description": "One of the national symbols of Bulgaria, part of the Coat of arms of Bulgaria", "website": "https://en.wikipedia.org/wiki/National_symbols_of_Bulgaria", "subreddit": "/r/bulgaria", "center": [571.5, 384.5], "path": [[563.5, 377.5], [562.5, 378.5], [561.5, 379.5], [561.5, 392.5], [580.5, 392.5], [580.5, 379.5], [579.5, 378.5], [579.5, 377.5], [578.5, 376.5], [563.5, 376.5], [563.5, 377.5]]}, {"id": "twq4nz", "submitted_by": "Fightrface", "name": "Flipnote Frog", "description": "What's supposed to be the Flipnote Studio frog", "website": "", "subreddit": "/r/FlipnoteStudio3D", "center": [1993.5, 875.5], "path": [[1987.5, 869.5], [1998.5, 869.5], [1998.5, 880.5], [1987.5, 880.5]]}, {"id": "twq4h9", "submitted_by": "Spiderinmyear", "name": "The Wandering Inn", "description": "A Web Serial written by Pirateaba. Pictured is a goblin, an acidfly jar and Apista the bee.", "website": "https://wanderinginn.com/", "subreddit": "/r/WanderingInn", "center": [1881.5, 378.5], "path": [[1852.5, 372.5], [1852.5, 388.5], [1876.5, 388.5], [1876.5, 382.5], [1877.5, 381.5], [1893.5, 381.5], [1895.5, 382.5], [1900.5, 382.5], [1904.5, 381.5], [1907.5, 381.5], [1917.5, 381.5], [1918.5, 381.5], [1918.5, 372.5], [1852.5, 372.5]]}, {"id": "twq4av", "submitted_by": "WabShp", "name": "\u00c9cole Polytechnique Universitaire", "description": "French engineering school", "website": "https://www.polytech-reseau.org", "subreddit": "", "center": [898.5, 1768.5], "path": [[890.5, 1758.5], [905.5, 1758.5], [905.5, 1777.5], [890.5, 1777.5]]}, @@ -1557,31 +1459,29 @@ {"id": "twq3c8", "submitted_by": "Klisurovi4", "name": "Bulgarian Alphabet", "description": "The first three letters of the Bulgarian alphabet", "website": "", "subreddit": "/r/Bulgaria", "center": [545.5, 384.5], "path": [[529.5, 389.5], [529.5, 378.5], [560.5, 378.5], [561.5, 389.5]]}, {"id": 1914, "name": "World war 1 memorial", "description": "In collaboration with r/placeDE, the Belgian Place crew created another artwork where they made a memorial for World War 1.", "website": "", "subreddit": "/r/placebe", "center": [1309.5, 1150.5], "path": [[1286.5, 1124.5], [1286.5, 1172.5], [1293.5, 1175.5], [1300.5, 1177.5], [1307.5, 1178.5], [1308.5, 1177.5], [1315.5, 1177.5], [1316.5, 1177.5], [1316.5, 1178.5], [1320.5, 1178.5], [1320.5, 1177.5], [1322.5, 1177.5], [1322.5, 1176.5], [1324.5, 1176.5], [1324.5, 1175.5], [1326.5, 1175.5], [1326.5, 1174.5], [1330.5, 1174.5], [1330.5, 1173.5], [1333.5, 1173.5], [1332.5, 1125.5]]}, {"id": "twq34c", "submitted_by": "RUB_23", "name": "The portuguese tiles", "description": "Here you can see 3 portuguese items, a Galo de Barcelos, a Pastel de Nata and a Delta Coffe with traditional portuguese tiles in the background", "website": "", "subreddit": "/r/portugal", "center": [894.5, 391.5], "path": [[865.5, 372.5], [922.5, 371.5], [922.5, 411.5], [865.5, 411.5]]}, -{"id": "twq347", "submitted_by": "erlendtl", "name": "Magnus Carlsen", "description": "Norwegian chess grandmaster and reigning five-time World Chess Champion", "website": "", "subreddit": "", "center": [236.5, 67.5], "path": [[216.5, 91.5], [218.5, 89.5], [221.5, 89.5], [223.5, 87.5], [222.5, 80.5], [218.5, 67.5], [217.5, 55.5], [224.5, 44.5], [232.5, 38.5], [243.5, 41.5], [251.5, 47.5], [252.5, 52.5], [252.5, 58.5], [251.5, 67.5], [248.5, 72.5], [247.5, 78.5], [252.5, 83.5], [260.5, 87.5], [267.5, 89.5], [268.5, 91.5]]}, {"id": "twq32o", "submitted_by": "rollam", "name": "Omleiding-deviation signs", "description": "Confusing and contradicting deviation signs are a staple of the Belgian driving experience", "website": "", "subreddit": "", "center": [1308.5, 1221.5], "path": [[1287.5, 1229.5], [1291.5, 1233.5], [1305.5, 1236.5], [1310.5, 1236.5], [1326.5, 1233.5], [1328.5, 1215.5], [1324.5, 1210.5], [1307.5, 1205.5], [1290.5, 1210.5], [1288.5, 1221.5]]}, {"id": "twq2zm", "submitted_by": "_q-p_", "name": "Nichijou", "description": "Popular slice-of-life manga/anime created by Arawi Keiichi and animated by Kyoto Animation. Depicted from left to right are three of the six main characters: Aioi Yukko, Mio Naganohara, and Mai Minakami", "website": "", "subreddit": "/r/Nichijou", "center": [1413.5, 1252.5], "path": [[1387.5, 1244.5], [1387.5, 1260.5], [1438.5, 1260.5], [1438.5, 1244.5]]}, {"id": "twq2wt", "submitted_by": "Viperense", "name": "RWBY", "description": "RWBY is an animated show produced by Rooster Teeth", "website": "https://roosterteeth.com/series/rwby", "subreddit": "/r/RWBY", "center": [474.5, 721.5], "path": [[450.5, 714.5], [450.5, 728.5], [497.5, 728.5], [497.5, 714.5], [472.5, 714.5]]}, {"id": "twq2wp", "submitted_by": "MrEduxator", "name": "Senzawa", "description": "A Vtuber who's created songs that you've most likely heard, but don't know the author too. Like that one time she rapped a furry copypasta. Oh, and let's just say she's reincarnated now as a certain... Shark.", "website": "https://www.youtube.com/c/senzawa", "subreddit": "", "center": [1856.5, 811.5], "path": [[1867.5, 793.5], [1864.5, 793.5], [1864.5, 792.5], [1846.5, 792.5], [1846.5, 794.5], [1845.5, 794.5], [1845.5, 830.5], [1867.5, 831.5], [1867.5, 793.5]]}, {"id": "twq2p1", "submitted_by": "N8dawgggg", "name": "Tampa Bay Rays", "description": "The Professional Baseball team the Rays TB logo, for Tampa Bay.", "website": "https://www.mlb.com/rays", "subreddit": "/r/tampabayrays", "center": [1767.5, 271.5], "path": [[1759.5, 279.5], [1759.5, 263.5], [1776.5, 263.5], [1776.5, 275.5], [1774.5, 275.5], [1774.5, 279.5]]}, {"id": "twq2ow", "submitted_by": "minecrafter2301", "name": "RvNxMango polar bear", "description": "rvnxPolar is a subscriber emote from the Twitch channel of german streamer and YouTube creator RvNxMango, who was granted a spot on the german flag for working with r/placeDE", "website": "https://www.twitch.tv/rvnxmango", "subreddit": "", "center": [215.5, 1144.5], "path": [[206.5, 1163.5], [200.5, 1163.5], [200.5, 1162.5], [199.5, 1162.5], [199.5, 1161.5], [198.5, 1161.5], [198.5, 1157.5], [197.5, 1157.5], [197.5, 1147.5], [196.5, 1147.5], [196.5, 1146.5], [195.5, 1146.5], [195.5, 1145.5], [194.5, 1145.5], [194.5, 1142.5], [195.5, 1142.5], [195.5, 1139.5], [196.5, 1139.5], [196.5, 1134.5], [199.5, 1134.5], [199.5, 1133.5], [200.5, 1133.5], [200.5, 1132.5], [201.5, 1132.5], [201.5, 1131.5], [203.5, 1131.5], [203.5, 1130.5], [205.5, 1130.5], [205.5, 1129.5], [208.5, 1129.5], [208.5, 1128.5], [210.5, 1128.5], [210.5, 1127.5], [213.5, 1127.5], [213.5, 1126.5], [219.5, 1126.5], [219.5, 1127.5], [224.5, 1127.5], [224.5, 1128.5], [228.5, 1128.5], [228.5, 1129.5], [230.5, 1129.5], [230.5, 1130.5], [231.5, 1130.5], [231.5, 1131.5], [232.5, 1131.5], [232.5, 1133.5], [233.5, 1133.5], [233.5, 1134.5], [234.5, 1134.5], [234.5, 1136.5], [235.5, 1136.5], [235.5, 1144.5], [234.5, 1144.5], [234.5, 1149.5], [233.5, 1149.5], [233.5, 1150.5], [233.5, 1154.5], [232.5, 1154.5], [232.5, 1155.5], [232.5, 1156.5], [231.5, 1156.5], [231.5, 1157.5], [226.5, 1157.5], [226.5, 1158.5], [225.5, 1158.5], [225.5, 1159.5], [224.5, 1159.5], [224.5, 1160.5], [223.5, 1160.5], [223.5, 1161.5], [217.5, 1161.5], [217.5, 1160.5], [216.5, 1160.5], [216.5, 1159.5], [215.5, 1159.5], [215.5, 1158.5], [214.5, 1158.5], [214.5, 1157.5], [213.5, 1157.5], [213.5, 1156.5], [213.5, 1155.5], [211.5, 1156.5], [211.5, 1157.5], [210.5, 1157.5], [210.5, 1159.5], [209.5, 1159.5], [209.5, 1160.5], [208.5, 1160.5], [208.5, 1161.5], [207.5, 1161.5], [207.5, 1161.5], [207.5, 1162.5], [206.5, 1162.5], [206.5, 1163.5]]}, -{"id": "twq2j7", "submitted_by": "Klisurovi4", "name": "Tarator", "description": "A bowl of tarator, a yoghurt based cold soup. Very popular in Bulgaria", "website": "", "subreddit": "/r/Bulgaria", "center": [520.5, 381.5], "path": [[515.5, 377.5], [513.5, 380.5], [517.5, 385.5], [523.5, 385.5], [526.5, 381.5], [526.5, 379.5], [523.5, 377.5]]}, +{"id": "twq2j7", "submitted_by": "Klisurovi4", "name": "Tarator", "description": "A bowl of tarator, a yoghurt based cold soup. Very popular in Bulgaria", "website": "", "subreddit": "/r/Bulgaria", "center": [520.5, 381.5], "path": [[515.5, 377.5], [514.5, 378.5], [513.5, 379.5], [513.5, 381.5], [515.5, 383.5], [515.5, 384.5], [516.5, 385.5], [523.5, 385.5], [524.5, 384.5], [524.5, 383.5], [525.5, 382.5], [526.5, 381.5], [526.5, 379.5], [525.5, 378.5], [524.5, 377.5], [515.5, 377.5]]}, {"id": "twq2ej", "submitted_by": "Juanco93", "name": "Sagrada Familia", "description": "This is a large unfinished minor basilica designed by Antonio Gaud\u00ed in Barcelona. Construction began on 1882, and due to numerous factors the project moved at a long pace and is currently still being built.", "website": "https://sagradafamilia.org/en/", "subreddit": "/r/esplace", "center": [1378.5, 295.5], "path": [[1367.5, 308.5], [1367.5, 281.5], [1389.5, 282.5], [1389.5, 308.5], [1367.5, 308.5]]}, {"id": "twq2dv", "submitted_by": "NattePepernoot", "name": "Toad in Mario Tube", "description": "A character from a game in a mario tube.", "website": "", "subreddit": "", "center": [1093.5, 1022.5], "path": [[1087.5, 1034.5], [1087.5, 1022.5], [1086.5, 1021.5], [1086.5, 1017.5], [1088.5, 1015.5], [1089.5, 1011.5], [1091.5, 1009.5], [1097.5, 1009.5], [1098.5, 1010.5], [1099.5, 1011.5], [1099.5, 1014.5], [1098.5, 1015.5], [1099.5, 1016.5], [1100.5, 1017.5], [1100.5, 1021.5], [1099.5, 1022.5], [1099.5, 1028.5], [1099.5, 1030.5], [1097.5, 1033.5], [1094.5, 1035.5]]}, {"id": "twq2cw", "submitted_by": "rollam", "name": "Jean-Claude Van Damme", "description": "Inspired by his famous Volvo ad doing a split between two trucks, but they have been replaced by a De Lijn and TEC bus", "website": "", "subreddit": "", "center": [1308.5, 1305.5], "path": [[1286.5, 1315.5], [1286.5, 1300.5], [1306.5, 1289.5], [1310.5, 1290.5], [1331.5, 1300.5], [1331.5, 1315.5], [1329.5, 1316.5], [1287.5, 1316.5]]}, -{"id": "twq29j", "submitted_by": "erlendtl", "name": "Kong harald", "description": "King of Norway", "website": "", "subreddit": "", "center": [319.5, 65.5], "path": [[299.5, 92.5], [305.5, 85.5], [304.5, 71.5], [299.5, 68.5], [299.5, 63.5], [303.5, 60.5], [302.5, 56.5], [300.5, 53.5], [300.5, 50.5], [303.5, 46.5], [308.5, 40.5], [312.5, 37.5], [323.5, 37.5], [331.5, 43.5], [334.5, 50.5], [336.5, 55.5], [338.5, 62.5], [338.5, 68.5], [336.5, 74.5], [336.5, 77.5], [334.5, 77.5], [333.5, 91.5]]}, {"id": "twq29h", "submitted_by": "Sarinyann", "name": "Fukano", "description": "Emote of the French Streamer Fukano", "website": "https://www.twitch.tv/fukano?lang=fr", "subreddit": "", "center": [264.5, 1619.5], "path": [[250.5, 1602.5], [250.5, 1636.5], [278.5, 1636.5], [278.5, 1602.5], [250.5, 1602.5]]}, {"id": "twq1tk", "submitted_by": "Vytome", "name": "Super Auto Pets Turtle", "description": "The game Super Auto Pets uses android emojis for its characters. The turtle is modeled after it", "website": "https://teamwoodgames.com/", "subreddit": "/r/superautopets", "center": [257.5, 978.5], "path": [[245.5, 967.5], [245.5, 989.5], [267.5, 989.5], [269.5, 975.5], [267.5, 967.5], [245.5, 967.5]]}, {"id": "twq1px", "submitted_by": "MOZPORYL", "name": "Tomb of Cyrus", "description": "The final resting place of Cyrus the Great, the founder of the ancient Achaemenid Empire.", "website": "", "subreddit": "", "center": [33.5, 328.5], "path": [[31.5, 316.5], [35.5, 316.5], [37.5, 319.5], [37.5, 326.5], [40.5, 326.5], [45.5, 335.5], [20.5, 335.5], [22.5, 332.5], [26.5, 327.5], [29.5, 326.5], [29.5, 318.5], [30.5, 317.5]]}, {"id": "twq1jo", "submitted_by": "kopie50", "name": "Belgian coat of arms", "description": "In collaboration with r/placeDE Belgium's place crew created the Belgian coat of arms where Belgian and German flags cross.", "website": "", "subreddit": "/r/placebe", "center": [1307.5, 858.5], "path": [[1282.5, 830.5], [1331.5, 830.5], [1331.5, 878.5], [1330.5, 881.5], [1329.5, 884.5], [1327.5, 886.5], [1323.5, 886.5], [1311.5, 887.5], [1308.5, 888.5], [1304.5, 889.5], [1302.5, 888.5], [1302.5, 887.5], [1290.5, 887.5], [1290.5, 886.5], [1287.5, 886.5], [1285.5, 883.5], [1284.5, 881.5], [1283.5, 880.5], [1283.5, 877.5], [1282.5, 878.5], [1282.5, 830.5]]}, {"id": "twq1hs", "submitted_by": "Pinchface05", "name": "Chloe", "description": "A drawing of Chloe, a character created by u/SrGrafo as a mascot of r/animemes, then he started drawing daily and posted his drawings of hers on r/chloe.", "website": "", "subreddit": "/r/chloe", "center": [1954.5, 254.5], "path": [[1968.5, 269.5], [1968.5, 239.5], [1940.5, 239.5], [1940.5, 269.5]]}, -{"id": "twq1fd", "submitted_by": "Klisurovi4", "name": "Bulgarian Flag", "description": "The flag of Bulgaria", "website": "", "subreddit": "/r/Bulgaria", "center": [599.5, 384.5], "path": [[481.5, 377.5], [481.5, 391.5], [717.5, 391.5], [717.5, 380.5], [712.5, 377.5]]}, +{"id": "twq1fd", "submitted_by": "Klisurovi4", "name": "Bulgarian Flag", "description": "The flag of Bulgaria is a tricolour consisting of three equal-sized horizontal bands of (from top to bottom) white, green, and red. The flag was first adopted after the 1877\u20131878 Russo-Turkish War, when Bulgaria gained de facto independence. The national flag at times was charged with the state emblem, especially during the communist era. The current flag was re-established with the 1991 Constitution of Bulgaria and was confirmed in a 1998 law. ", "website": "https://en.wikipedia.org/wiki/Flag_of_Bulgaria", "subreddit": "/r/bulgaria", "center": [599.5, 384.5], "path": [[481.5, 377.5], [481.5, 391.5], [717.5, 391.5], [717.5, 380.5], [712.5, 377.5]]}, {"id": "twq1f7", "submitted_by": "rollam", "name": "Belgian communities arms", "description": "A design mixing the Flemish, Walloon and German speaking communities that constitute Belgium", "website": "", "subreddit": "", "center": [1308.5, 1259.5], "path": [[1286.5, 1237.5], [1328.5, 1237.5], [1328.5, 1239.5], [1329.5, 1240.5], [1331.5, 1242.5], [1331.5, 1278.5], [1329.5, 1281.5], [1312.5, 1281.5], [1308.5, 1285.5], [1304.5, 1282.5], [1286.5, 1281.5]]}, {"id": "twq0xx", "submitted_by": "MOZPORYL", "name": "Azadi Tower", "description": "Azadi Tower located in the Iranian capital, Tehran, with an Iranian flag on top of it.", "website": "", "subreddit": "", "center": [15.5, 295.5], "path": [[14.5, 278.5], [14.5, 285.5], [10.5, 286.5], [8.5, 288.5], [8.5, 298.5], [0.5, 306.5], [0.5, 307.5], [10.5, 307.5], [11.5, 305.5], [12.5, 301.5], [12.5, 299.5], [15.5, 299.5], [16.5, 302.5], [16.5, 304.5], [18.5, 306.5], [18.5, 307.5], [28.5, 307.5], [20.5, 298.5], [20.5, 288.5], [17.5, 286.5], [14.5, 286.5], [14.5, 284.5], [23.5, 284.5], [24.5, 284.5], [24.5, 278.5], [14.5, 278.5]]}, {"id": "twq0r2", "submitted_by": "Vilvilea", "name": "BanG Dream!", "description": "The characters Kasumi and Arisa from the Japanese Rhythm game Bang Dream! Girls Band Party!", "website": "", "subreddit": "", "center": [343.5, 1055.5], "path": [[324.5, 1043.5], [324.5, 1068.5], [362.5, 1068.5], [361.5, 1042.5]]}, {"id": "twq0qt", "submitted_by": "Master_Natural_3234", "name": "Fate/Grand Order", "description": "Fate/Grand Order is a free-to-play Japanese mobile game, developed by Lasengle using Unity, and published by Aniplex, a subsidiary of Sony Music Entertainment Japan.", "website": "https://www.fate-go.jp", "subreddit": "/r/grandorder", "center": [1652.5, 1785.5], "path": [[1673.5, 1809.5], [1673.5, 1762.5], [1639.5, 1762.5], [1626.5, 1776.5], [1626.5, 1779.5], [1628.5, 1780.5], [1630.5, 1781.5], [1628.5, 1782.5], [1628.5, 1782.5], [1627.5, 1783.5], [1625.5, 1784.5], [1626.5, 1786.5], [1631.5, 1789.5], [1631.5, 1792.5], [1633.5, 1793.5], [1633.5, 1795.5], [1633.5, 1803.5], [1635.5, 1804.5], [1635.5, 1805.5], [1636.5, 1805.5], [1636.5, 1807.5], [1638.5, 1808.5], [1639.5, 1809.5], [1674.5, 1809.5], [1671.5, 1809.5], [1665.5, 1808.5], [1674.5, 1809.5], [1674.5, 1809.5]]}, {"id": "twq0ql", "submitted_by": "Dacio2105", "name": "Composition (Piet Mondrian)", "description": "omposition with Red Blue and Yellow is a 1929 painting[1] by Piet Mondrian. It consists of thick, black brushwork, defining the borders of coloured geometric figures.", "website": "https://en.wikipedia.org/wiki/Composition_with_Red_Blue_and_Yellow", "subreddit": "/r/placeNL", "center": [1434.5, 17.5], "path": [[1421.5, 4.5], [1447.5, 4.5], [1447.5, 29.5], [1421.5, 29.5]]}, {"id": "twq0ic", "submitted_by": "rollam", "name": "Saxophone", "description": "Invented in Belgium by Adolphe Sax in 1846", "website": "", "subreddit": "", "center": [1308.5, 1576.5], "path": [[1295.5, 1577.5], [1295.5, 1589.5], [1300.5, 1593.5], [1305.5, 1593.5], [1308.5, 1590.5], [1309.5, 1586.5], [1311.5, 1580.5], [1326.5, 1561.5], [1316.5, 1558.5], [1306.5, 1570.5]]}, -{"id": "twq0fq", "submitted_by": "Juanco93", "name": "Canarian banana", "description": "A type of banana cultivated in the Canarian Archipelago. For decades, it has been the protagonist of the industry growth on the archipelago and comprises the 60% of Europe's banana production.", "website": "https://www.foodswinesfromspain.com/spanishfoodwine/global/food/products/subproducts/PRG2017733722.html", "subreddit": "/r/esplace", "center": [1441.5, 301.5], "path": [[1447.5, 306.5], [1436.5, 306.5], [1436.5, 295.5], [1447.5, 296.5], [1447.5, 306.5]]}, +{"id": "twq0fq", "submitted_by": "Juanco93", "name": "Canarian banana", "description": "A type of banana cultivated in the Canary Islands. For decades, it has been the protagonist of the industry growth on the islands, producing 60% of Europe's banana production.", "website": "https://www.foodswinesfromspain.com/spanishfoodwine/global/food/products/subproducts/PRG2017733722.html", "subreddit": "/r/esplace", "center": [1441.5, 301.5], "path": [[1447.5, 306.5], [1436.5, 306.5], [1436.5, 295.5], [1447.5, 296.5], [1447.5, 306.5]]}, {"id": "twq03j", "submitted_by": "FairyRave", "name": "Antarctic Empire Flag", "description": "The Antarctic Empire is a faction created by Technoblade. It is the most militaristic and expansionist faction on SMPEarth. The flag was created by the L'Manplace community.", "website": "https://smpearth.fandom.com/wiki/Antarctic_Empire", "subreddit": "/r/smpearth", "center": [185.5, 1090.5], "path": [[181.5, 1085.5], [181.5, 1099.5], [181.5, 1094.5], [182.5, 1094.5], [182.5, 1093.5], [186.5, 1093.5], [186.5, 1094.5], [187.5, 1094.5], [187.5, 1099.5], [188.5, 1099.5], [188.5, 1085.5]]}, {"id": "twq03g", "submitted_by": "remsoffyt", "name": "French Flag", "description": "First french flag build by the french community.", "website": "", "subreddit": "/r/PlaceFrance", "center": [152.5, 399.5], "path": [[126.5, 496.5], [128.5, 497.5], [175.5, 496.5], [175.5, 275.5], [162.5, 278.5], [150.5, 296.5], [149.5, 326.5], [125.5, 330.5]]}, {"id": "twq01f", "submitted_by": "dungbuggy", "name": "Burssty Skin", "description": "8x8 skin of Burssty alongside a gay and trans pride flag surrounded by black borders.nBurssty is a Minecraft Youtuber.", "website": "https://youtube.com/burssty", "subreddit": "/r/burssty", "center": [1439.5, 1330.5], "path": [[1432.5, 1322.5], [1432.5, 1337.5], [1445.5, 1337.5], [1445.5, 1322.5]]}, @@ -1609,17 +1509,15 @@ {"id": "twpxl7", "submitted_by": "rollam", "name": "Royal Belgian FA", "description": "Belgian football association, nr.2 on FIFA ranking during r/place 2022", "website": "https://www.rbfa.be/en", "subreddit": "", "center": [1308.5, 1437.5], "path": [[1295.5, 1421.5], [1321.5, 1421.5], [1321.5, 1445.5], [1319.5, 1448.5], [1319.5, 1449.5], [1314.5, 1454.5], [1312.5, 1455.5], [1311.5, 1456.5], [1306.5, 1456.5], [1305.5, 1455.5], [1303.5, 1455.5], [1302.5, 1454.5], [1301.5, 1454.5], [1301.5, 1453.5], [1300.5, 1453.5], [1300.5, 1452.5], [1299.5, 1452.5], [1299.5, 1451.5], [1298.5, 1451.5], [1298.5, 1450.5], [1298.5, 1449.5], [1297.5, 1449.5], [1297.5, 1448.5], [1297.5, 1447.5], [1296.5, 1447.5], [1296.5, 1446.5], [1296.5, 1445.5], [1295.5, 1445.5]]}, {"id": "twpxc0", "submitted_by": "mariogeorge59", "name": "The Berber Flag", "description": "Amazigh, Berbers or Imazighen are an ethnic group indigenous to North Africa, specifically Morocco, Algeria, Tunisia, and Libya, and to a lesser extent Mauritania, northern Mali, and northern Niger. Smaller Berber populations are also found in Burkina Faso and Egypt's Siwa Oasis. And that's their flag.", "website": "", "subreddit": "", "center": [1593.5, 1619.5], "path": [[1571.5, 1609.5], [1614.5, 1609.5], [1614.5, 1629.5], [1571.5, 1629.5], [1571.5, 1609.5]]}, {"id": "twpx5e", "submitted_by": "Dacio2105", "name": "De Zeven Provinci\u00ebn (The Seven Provinces)", "description": "De Zeven Provinci\u00ebn was a Dutch ship of the line, originally armed with 80 guns. The name of the ship refers to the seven autonomous provinces that made up the Dutch Republic in the 17th century. The vessel was built in 1664-65 for the Admiralty of de Maze in Rotterdam by the master shipbuilder Salomon Jansz van den Tempel.", "website": "https://en.wikipedia.org/wiki/Dutch_ship_De_Zeven_Provinci\u00ebn_(1665)", "subreddit": "/r/placeNL", "center": [632.5, 1791.5], "path": [[715.5, 1732.5], [715.5, 1850.5], [715.5, 1850.5], [549.5, 1850.5], [549.5, 1732.5]]}, -{"id": "twpx4f", "submitted_by": "mrprgr", "name":"Nico Rosberg exploding meme / Ferrari F2004", "description":"A meme of Nico Rosberg, 2016 Formula 1 World Champion, in front of an explosion. This meme is commonly captioned \"Is X's career over?\" This makes fun of clickbait headlines and overreactions. Originally caught in the midst of a streamer war, this artwork was able to be finished once the dust settled and streamer Mizkif allowed the space to be shared with Reckful's memorial.\n\nThis section also honors the Ferrari F2004, Michael Schumacher's last championship-winning car and one of the most iconic F1 cars of all time. This car still holds multiple lap records that have stood for over 17 years, and racked up 15 wins in the 20 races it ran. This artwork was made in collaboration with the Italian community.","website":"https://knowyourmeme.com/memes/flaming-nico-is-his-career-over","subreddit": "/r/Formula1","center":[456.5,1749.5],"path":[[413.5,1703.5],[460.5,1703.5],[460.5,1699.5],[499.5,1699.5],[499.5,1795.5],[496.5,1795.5],[496.5,1787.5],[483.5,1787.5],[483.5,1787.5],[483.5,1789.5],[481.5,1789.5],[481.5,1797.5],[483.5,1797.5],[483.5,1799.5],[413.5,1799.5]]}, -{"id": "twpx41", "submitted_by": "OkBOOMERR08", "name": "Avatar Korra (The Legend of Korra)", "description": "Avatar Korra, from the nickelodeon cartoon: The Legend of Korra, was made by r/avatarplace and r/ATLA. It shows Avatar Korra's head and part of her neck, below her a bi-flag due to her being canonically bisexual.", "website": "The Legend Of Korra: https://avatar.fandom.com/wiki/The_Legend_of_Korra", "subreddit": "/r/avatarplace, /r/ATLA", "center": [699.5, 1112.5], "path": [[706.5, 1099.5], [706.5, 1124.5], [692.5, 1124.5], [692.5, 1099.5], [699.5, 1099.5]]}, +{"id": "twpx4f", "submitted_by": "mrprgr", "name": "Nico Rosberg exploding meme / Ferrari F2004", "description": "A meme of Nico Rosberg, 2016 Formula 1 World Champion, in front of an explosion. This meme is commonly captioned \"Is X's career over?\" This makes fun of clickbait headlines and overreactions. Originally caught in the midst of a streamer war, this artwork was able to be finished once the dust settled and streamer Mizkif allowed the space to be shared with Reckful's memorial.\n\nThis section also honors the Ferrari F2004, Michael Schumacher's last championship-winning car and one of the most iconic F1 cars of all time. This car still holds multiple lap records that have stood for over 17 years, and racked up 15 wins in the 20 races it ran. This artwork was made in collaboration with the Italian community.", "website": "https://knowyourmeme.com/memes/flaming-nico-is-his-career-over", "subreddit": "/r/Formula1", "center": [456.5, 1749.5], "path": [[413.5, 1703.5], [460.5, 1703.5], [460.5, 1699.5], [499.5, 1699.5], [499.5, 1795.5], [496.5, 1795.5], [496.5, 1787.5], [483.5, 1787.5], [483.5, 1787.5], [483.5, 1789.5], [481.5, 1789.5], [481.5, 1797.5], [483.5, 1797.5], [483.5, 1799.5], [413.5, 1799.5]]}, +{"id": "twpx41", "submitted_by": "OkBOOMERR08", "name": "Avatar Korra (The Legend of Korra)", "description": "Avatar Korra, from the nickelodeon cartoon: The Legend of Korra, was made by r/avatarplace and r/ATLA. It shows Avatar Korra's head and part of her neck, below her a bi-flag due to her being canonically bisexual.", "website": "https://The Legend Of Korra: https://avatar.fandom.com/wiki/The_Legend_of_Korra", "subreddit": "/r/avatarplace, /r/ATLA", "center": [699.5, 1112.5], "path": [[706.5, 1099.5], [706.5, 1124.5], [692.5, 1124.5], [692.5, 1099.5], [699.5, 1099.5]]}, {"id": "twpx0y", "submitted_by": "NattePepernoot", "name": "Master Chief", "description": "Its the guy from fortnite!", "website": "", "subreddit": "/r/halo", "center": [359.5, 1197.5], "path": [[343.5, 1172.5], [374.5, 1172.5], [374.5, 1221.5], [343.5, 1221.5]]}, {"id": "twpwzu", "submitted_by": "bulba_", "name": "The Owl House", "description": "The Owl House is a house from a show of the same title. In front of the house are Luz Noceda and Amity Blight with a heart above them. You can also find a lego version of Eda Clawthorne, a diamond authority symbol from Steven Universe, a car door from Infinity Train, and a bear stack from We Bare Bears.", "website": "https://theowlhouse.fandom.com", "subreddit": "/r/TheOwlHouse", "center": [464.5, 1050.5], "path": [[448.5, 1030.5], [448.5, 1070.5], [476.5, 1070.5], [476.5, 1062.5], [480.5, 1062.5], [480.5, 1030.5]]}, {"id": "twpwyv", "submitted_by": "Relssifille", "name": "The Legend Of Zelda", "description": "Pixel art of iconic characters and objects from the Nintendo video game franchise Legend Of Zelda", "website": "https://www.reddit.com/r/zelda/", "subreddit": "/r/zelda", "center": [1335.5, 1855.5], "path": [[1366.5, 1875.5], [1366.5, 1859.5], [1348.5, 1857.5], [1348.5, 1841.5], [1344.5, 1834.5], [1300.5, 1835.5], [1299.5, 1843.5], [1307.5, 1847.5], [1321.5, 1848.5], [1322.5, 1875.5]]}, -{"id": "twpwob", "submitted_by": "NattePepernoot", "name": "Apex Legends", "description": "A unbalanced battle royale game!", "website": "https://www.ea.com/en-gb/games/apex-legends", "subreddit": "/r/apexlegends", "center": [458.5, 1243.5], "path": [[501.5, 1274.5], [501.5, 1213.5], [447.5, 1213.5], [447.5, 1219.5], [408.5, 1219.5], [408.5, 1265.5], [446.5, 1265.5], [447.5, 1273.5]]}, {"id": "twpwfx", "submitted_by": "Ninaturtleee", "name": "junimos", "description": "Characters from the videogame Stardew Valley", "website": "https://stardewvalleywiki.com/Junimos", "subreddit": "/r/StardewValley", "center": [769.5, 604.5], "path": [[756.5, 601.5], [760.5, 601.5], [779.5, 601.5], [782.5, 604.5], [782.5, 606.5], [781.5, 607.5], [780.5, 608.5], [753.5, 606.5], [754.5, 604.5], [756.5, 603.5]]}, {"id": "twpwbr", "submitted_by": "MOZPORYL", "name": "Flag of Iran", "description": "A simplified, apolitical version of the flag of Iran", "website": "", "subreddit": "", "center": [48.5, 303.5], "path": [[0.5, 276.5], [110.5, 276.5], [110.5, 299.5], [109.5, 299.5], [108.5, 300.5], [108.5, 302.5], [107.5, 303.5], [105.5, 304.5], [98.5, 310.5], [90.5, 310.5], [81.5, 310.5], [78.5, 311.5], [75.5, 313.5], [75.5, 315.5], [72.5, 318.5], [72.5, 325.5], [71.5, 326.5], [68.5, 329.5], [68.5, 333.5], [68.5, 336.5], [60.5, 336.5], [49.5, 335.5], [39.5, 335.5], [17.5, 335.5], [14.5, 333.5], [9.5, 336.5], [0.5, 336.5], [0.5, 276.5]]}, -{"id": "twpwbd", "submitted_by": "FitteTryne6969", "name": "King Carl XVI Gustaf of Sweden", "description": "", "website": "", "subreddit": "", "center": [585.5, 65.5], "path": [[586.5, 42.5], [594.5, 44.5], [601.5, 51.5], [601.5, 63.5], [599.5, 67.5], [599.5, 72.5], [595.5, 77.5], [595.5, 91.5], [595.5, 91.5], [574.5, 91.5], [574.5, 80.5], [577.5, 80.5], [577.5, 76.5], [573.5, 72.5], [571.5, 67.5], [569.5, 60.5], [568.5, 53.5], [577.5, 43.5]]}, +{"id": "twpwbd", "submitted_by": "FitteTryne6969", "name": "King Carl XVI Gustaf of Sweden", "description": "", "website": "https://en.wikipedia.org/wiki/Carl_XVI_Gustaf", "subreddit": "/r/sweden", "center": [585.5, 65.5], "path": [[586.5, 42.5], [594.5, 44.5], [601.5, 51.5], [601.5, 63.5], [599.5, 67.5], [599.5, 72.5], [595.5, 77.5], [595.5, 91.5], [595.5, 91.5], [574.5, 91.5], [574.5, 80.5], [577.5, 80.5], [577.5, 76.5], [573.5, 72.5], [571.5, 67.5], [569.5, 60.5], [568.5, 53.5], [577.5, 43.5]]}, {"id": "twpw6y", "submitted_by": "ShadowFish_", "name": "Planetside 2", "description": "The logo of the MMOFPS Planetside 2.", "website": "", "subreddit": "/r/planetside", "center": [1881.5, 904.5], "path": [[1891.5, 915.5], [1891.5, 893.5], [1870.5, 893.5], [1870.5, 915.5], [1870.5, 915.5], [1870.5, 915.5], [1891.5, 915.5]]}, -{"id": "twpw1e", "submitted_by": "XplayGamesPL", "name": "The Last Airbender memorial", "description": "A scene from The Last Airbender cartoon, showcasing Uncle Iroh crying over a dead son, from the Tales of Ba Sing Se episode. Also a memorial to Mako, Iroh's voice actor who passed away during the shows production.", "website": "", "subreddit": "/r/ATLA", "center": [1415.5, 1555.5], "path": [[1332.5, 1498.5], [1332.5, 1611.5], [1498.5, 1611.5], [1498.5, 1498.5], [1418.5, 1498.5]]}, {"id": "twpw13", "submitted_by": "Xros90", "name": "San Jose State University", "description": "San Jose State University logo, made by students!", "website": "", "subreddit": "/r/SJSU", "center": [356.5, 1558.5], "path": [[344.5, 1551.5], [368.5, 1551.5], [368.5, 1564.5], [344.5, 1564.5], [344.5, 1556.5], [344.5, 1556.5], [344.5, 1556.5]]}, {"id": "twpvxt", "submitted_by": "Juanco93", "name": "Gate of Europe aka KIO Towers", "description": "These are twin office buildings near the Plaza de Castilla in Madrid. They were built from 1989 to 1996, and are the first inclined skyscrapers in the world.", "website": "https://www.designingbuildings.co.uk/wiki/Gate_of_Europe", "subreddit": "/r/esplace", "center": [1352.5, 301.5], "path": [[1339.5, 308.5], [1339.5, 294.5], [1366.5, 294.5], [1366.5, 307.5], [1339.5, 308.5]]}, {"id": "twpvr8", "submitted_by": "bulba_", "name": "Cookie Cat", "description": "A neapolitan cat shaped ice cream sandwich, that resembles a cookie cat from Steven Universe.", "website": "https://steven-universe.fandom.com", "subreddit": "/r/StevenUniverse", "center": [1516.5, 915.5], "path": [[1508.5, 911.5], [1525.5, 911.5], [1524.5, 919.5], [1508.5, 920.5]]}, @@ -1634,30 +1532,26 @@ {"id": "twpuyh", "submitted_by": "EnvironmentalAsk2095", "name": "connor6Froggy", "description": "An emote from ConnorEatsPants' twitch, based on Spike from the Mario series", "website": "", "subreddit": "/r/ConnorEatsPants", "center": [1823.5, 269.5], "path": [[1805.5, 298.5], [1816.5, 298.5], [1816.5, 297.5], [1817.5, 297.5], [1818.5, 297.5], [1818.5, 296.5], [1819.5, 296.5], [1820.5, 295.5], [1820.5, 293.5], [1821.5, 292.5], [1825.5, 292.5], [1826.5, 293.5], [1826.5, 295.5], [1827.5, 296.5], [1828.5, 297.5], [1829.5, 297.5], [1830.5, 298.5], [1840.5, 298.5], [1844.5, 297.5], [1843.5, 286.5], [1850.5, 282.5], [1850.5, 272.5], [1848.5, 267.5], [1847.5, 266.5], [1840.5, 255.5], [1837.5, 247.5], [1834.5, 243.5], [1835.5, 238.5], [1834.5, 236.5], [1831.5, 235.5], [1826.5, 231.5], [1822.5, 231.5], [1814.5, 238.5], [1813.5, 243.5], [1809.5, 250.5], [1808.5, 256.5], [1800.5, 265.5], [1795.5, 281.5], [1799.5, 285.5], [1803.5, 287.5], [1803.5, 292.5], [1803.5, 296.5], [1804.5, 297.5], [1805.5, 298.5], [1803.5, 299.5], [1805.5, 298.5]]}, {"id": "twpurr", "submitted_by": "danieru_desu", "name": "Mik-Mik packet", "description": "The packaging design of Mik-Mik Sweetened Milk powder manufactured by Jocker's Food Industry, which has been a childhood snack for Filipinos since the 90's.", "website": "", "subreddit": "/r/Philippines", "center": [432.5, 1617.5], "path": [[408.5, 1600.5], [408.5, 1633.5], [455.5, 1633.5], [455.5, 1600.5]]}, {"id": "twpuro", "submitted_by": "felipro333", "name": "Spanish Flag", "description": "Flag of Spain, created by the reddit comunity, not the dumb twitch streamers that only wanted to attack places. It includes a lot of pixel art of various pieces of culture and history of Spain", "website": "", "subreddit": "/r/esplace", "center": [1206.5, 294.5], "path": [[864.5, 280.5], [1546.5, 279.5], [1503.5, 312.5], [866.5, 307.5]]}, -{"id": "twpult", "submitted_by": "FitteTryne6969", "name": "Magnus Carlsen", "description": "Famous Norwegian Chess player.", "website": "", "subreddit": "", "center": [235.5, 66.5], "path": [[216.5, 54.5], [220.5, 49.5], [225.5, 41.5], [237.5, 39.5], [247.5, 43.5], [252.5, 54.5], [250.5, 71.5], [246.5, 71.5], [246.5, 80.5], [250.5, 83.5], [261.5, 91.5], [216.5, 91.5], [224.5, 86.5], [221.5, 80.5], [219.5, 70.5], [217.5, 62.5], [218.5, 60.5]]}, {"id": "twpua8", "submitted_by": "Juanco93", "name": "Aqueduct of Segovia", "description": "Here is one of the best-preserved elevated Roman aqueducts in the world. It was built around the second half of the 1st century A.D.", "website": "https://www.wmf.org/project/aqueduct-segovia", "subreddit": "/r/esplace", "center": [1299.5, 305.5], "path": [[1267.5, 297.5], [1267.5, 313.5], [1331.5, 313.5], [1331.5, 297.5], [1267.5, 297.5]]}, {"id": "twpu8y", "submitted_by": "bkc56", "name": "Starlight Glimmer Tribute", "description": "Represents Starlight Glimmer's equal sign cutie mark from the episode in My Little Pony Friendship is Magic where she was first introduced. The colors are from her mane/tale.", "website": "", "subreddit": "/r/mylittlepony", "center": [900.5, 1747.5], "path": [[898.5, 1746.5], [898.5, 1748.5], [901.5, 1748.5], [901.5, 1746.5]]}, {"id": "twpu8q", "submitted_by": "Redaaku", "name": "Chang Gang dragon logo", "description": "fan made recreation of a fictional gang from the NoPixel GTA RP server. nThe dragon is a reference to the gang leader Mr K(formerly Mr Chang)", "website": "", "subreddit": "/r/Chang_Gang", "center": [418.5, 1022.5], "path": [[405.5, 1000.5], [405.5, 1044.5], [430.5, 1044.5], [430.5, 1000.5]]}, {"id": "twptyz", "submitted_by": "NattePepernoot", "name": "Summit1G's Logo", "description": "Can we get 1G's in the chat?", "website": "", "subreddit": "/r/Summit1G", "center": [244.5, 258.5], "path": [[239.5, 253.5], [239.5, 262.5], [249.5, 262.5], [249.5, 253.5]]}, {"id": "twptye", "submitted_by": "red__flag_", "name": "PlaceDE Task", "description": "r/placeDE is the offical german organisation Reddit and Discord for the r/Place Project. It was started in 2017. After the Place-Events, the community and discord is a normal community with events.", "website": "https://discord.gg/placede", "subreddit": "/r/placeDE", "center": [435.5, 1986.5], "path": [[389.5, 1975.5], [390.5, 1998.5], [483.5, 1996.5], [481.5, 1974.5]]}, -{"id": "twptvv", "submitted_by": "FitteTryne6969", "name": "King Harald V of Norway", "description": "", "website": "", "subreddit": "", "center": [318.5, 65.5], "path": [[299.5, 58.5], [302.5, 47.5], [314.5, 37.5], [323.5, 37.5], [331.5, 46.5], [336.5, 58.5], [336.5, 71.5], [332.5, 81.5], [333.5, 90.5], [300.5, 91.5], [309.5, 80.5], [307.5, 75.5], [302.5, 70.5], [300.5, 67.5], [299.5, 60.5], [302.5, 57.5]]}, +{"id": "twptvv", "submitted_by": "FitteTryne6969", "name": "King Harald V of Norway", "description": "King of Norway.", "website": "https://en.wikipedia.org/wiki/Harald_V_of_Norway", "subreddit": "/r/place_nordicunion", "center": [318.5, 65.5], "path": [[299.5, 58.5], [302.5, 47.5], [314.5, 37.5], [323.5, 37.5], [331.5, 46.5], [336.5, 58.5], [336.5, 71.5], [332.5, 81.5], [333.5, 90.5], [300.5, 91.5], [309.5, 80.5], [307.5, 75.5], [302.5, 70.5], [300.5, 67.5], [299.5, 60.5], [302.5, 57.5]]}, {"id": "twpttz", "submitted_by": "SphealArt", "name": "Eurovision Song Contest", "description": "The Eurovision Song Contest is an annual song competition featuring the participation of many European countries and hosted in a different city every year. The contest was most recently won by Italy in Rotterdam 2021.", "website": "", "subreddit": "/r/eurovision", "center": [1784.5, 900.5], "path": [[1780.5, 892.5], [1778.5, 890.5], [1774.5, 890.5], [1773.5, 891.5], [1773.5, 893.5], [1772.5, 893.5], [1772.5, 900.5], [1773.5, 900.5], [1774.5, 901.5], [1775.5, 902.5], [1776.5, 903.5], [1777.5, 904.5], [1778.5, 905.5], [1779.5, 906.5], [1780.5, 906.5], [1780.5, 912.5], [1793.5, 912.5], [1793.5, 895.5], [1791.5, 895.5], [1791.5, 894.5], [1790.5, 893.5], [1789.5, 892.5], [1786.5, 889.5], [1783.5, 889.5], [1780.5, 893.5], [1780.5, 893.5], [1780.5, 893.5]]}, {"id": "twptss", "submitted_by": "IsaacFan37", "name": "Volodymyr Zelenskyy", "description": "Current President of Ukraine.", "website": "", "subreddit": "/r/Ukraine", "center": [175.5, 223.5], "path": [[157.5, 217.5], [154.5, 205.5], [163.5, 192.5], [182.5, 191.5], [191.5, 202.5], [191.5, 230.5], [187.5, 238.5], [208.5, 252.5], [164.5, 253.5], [155.5, 217.5], [155.5, 210.5]]}, -{"id": "twptij", "submitted_by": "mariogeorge59", "name": "The Tortoise Trainer Painting", "description": "The Tortoise Trainer is a painting by Osman Hamdi Bey which was crafted in 1906 and 1907", "website": "", "subreddit": "", "center": [1133.5, 185.5], "path": [[1072.5, 121.5], [1163.5, 121.5], [1163.5, 121.5], [1163.5, 130.5], [1163.5, 130.5], [1196.5, 130.5], [1196.5, 240.5], [1189.5, 240.5], [1188.5, 241.5], [1188.5, 245.5], [1188.5, 248.5], [1073.5, 248.5], [1073.5, 209.5], [1072.5, 149.5], [1072.5, 121.5]]}, {"id": "twpte2", "submitted_by": "Things_1hu", "name": "BB's April Fools Art", "description": "BB from Fate/Grand Order (originally from Fate/Extra CCC). This is her April Fool's art drawn by illustrator Riyo that has gained a lot of recognization and love from the fanbase.", "website": "", "subreddit": "/r/grandorder", "center": [178.5, 787.5], "path": [[162.5, 805.5], [160.5, 803.5], [157.5, 802.5], [155.5, 796.5], [153.5, 793.5], [154.5, 782.5], [160.5, 770.5], [168.5, 766.5], [183.5, 765.5], [192.5, 769.5], [193.5, 771.5], [196.5, 774.5], [201.5, 775.5], [201.5, 779.5], [197.5, 780.5], [197.5, 782.5], [197.5, 785.5], [202.5, 789.5], [202.5, 793.5], [199.5, 793.5], [200.5, 797.5], [202.5, 800.5], [206.5, 805.5]]}, {"id": "twpt8s", "submitted_by": "Kelk1_", "name": "Spyro", "description": "The iconic purple dragon of the video game", "website": "", "subreddit": "/r/spyro", "center": [1084.5, 1155.5], "path": [[1072.5, 1167.5], [1072.5, 1143.5], [1095.5, 1143.5], [1095.5, 1167.5]]}, {"id": "twpsit", "submitted_by": "Flamberge3000", "name": "Iris (flower)", "description": "A collaboration between r/Hololive and r/belgium. The iris is the national flower of Belgium. The VTuber agency Hololive has a talent named IRyS in the English branch.", "website": "https://www.youtube.com/channel/UC8rcEBzJSleTkf_-agPM20g", "subreddit": "/r/belgium", "center": [267.5, 706.5], "path": [[268.5, 725.5], [275.5, 720.5], [273.5, 711.5], [276.5, 704.5], [276.5, 697.5], [275.5, 690.5], [272.5, 686.5], [260.5, 693.5], [259.5, 702.5], [260.5, 719.5], [264.5, 725.5]]}, {"id": "twpshj", "submitted_by": "NattePepernoot", "name": "Sea of Thieves LOGO", "description": "A logo from a game called Sea Of Thieves", "website": "https://www.seaofthieves.com/", "subreddit": "/r/Seaofthieves", "center": [510.5, 1938.5], "path": [[501.5, 1928.5], [519.5, 1928.5], [519.5, 1948.5], [501.5, 1948.5]]}, {"id": "twps5o", "submitted_by": "Redaaku", "name": "1G Molly", "description": "here is the fan created logo of the streamer summit1G. Also includes his favorite molly", "website": "", "subreddit": "/r/Summit1G", "center": [413.5, 991.5], "path": [[396.5, 981.5], [396.5, 1001.5], [431.5, 1001.5], [430.5, 980.5]]}, -{"id": "twprzj", "submitted_by": "Xarithene", "name": "Arknights", "description": "The app icon for Arknights, a free-to-play Tower-defense gacha game by Hypergryph released in 2019.", "website": "website", "subreddit": "/r/arknights", "center": [1648.5, 1734.5], "path": [[1625.5, 1712.5], [1674.5, 1712.5], [1674.5, 1738.5], [1662.5, 1738.5], [1662.5, 1761.5], [1639.5, 1761.5], [1639.5, 1760.5], [1638.5, 1759.5], [1637.5, 1758.5], [1636.5, 1758.5], [1636.5, 1757.5], [1635.5, 1756.5], [1634.5, 1755.5], [1633.5, 1754.5], [1632.5, 1753.5], [1631.5, 1752.5], [1630.5, 1751.5], [1625.5, 1746.5], [1625.5, 1741.5]]}, +{"id": "twprzj", "submitted_by": "Xarithene", "name": "Arknights", "description": "The app icon for Arknights, a free-to-play Tower-defense gacha game by Hypergryph released in 2019.", "website": "https://website", "subreddit": "/r/arknights", "center": [1648.5, 1734.5], "path": [[1625.5, 1712.5], [1674.5, 1712.5], [1674.5, 1738.5], [1662.5, 1738.5], [1662.5, 1761.5], [1639.5, 1761.5], [1639.5, 1760.5], [1638.5, 1759.5], [1637.5, 1758.5], [1636.5, 1758.5], [1636.5, 1757.5], [1635.5, 1756.5], [1634.5, 1755.5], [1633.5, 1754.5], [1632.5, 1753.5], [1631.5, 1752.5], [1630.5, 1751.5], [1625.5, 1746.5], [1625.5, 1741.5]]}, {"id": "twpruo", "submitted_by": "Juanco93", "name": "Iberian lynx", "description": "This is a wild cat species endemic to the Iberian Peninsula, currently endangered. You can spot it both in Spain and Portugal.", "website": "https://wwf.panda.org/discover/our_focus/wildlife_practice/profiles/mammals/iberian_lynx/", "subreddit": "/r/esplace", "center": [892.5, 303.5], "path": [[888.5, 309.5], [885.5, 296.5], [895.5, 297.5], [895.5, 304.5], [901.5, 304.5], [901.5, 309.5], [888.5, 309.5]]}, {"id": "twprul", "submitted_by": "bittebittenicht", "name": "Rhythm Heaven", "description": "A rhythm game franchise by Nintendo, made in collaboration with TSUNKU\u2642 and TNX. The art features the Perfect P, the barista dog and the game\u2018s initials.", "website": "", "subreddit": "/r/rhythmheaven", "center": [1990.5, 347.5], "path": [[1999.5, 338.5], [1983.5, 338.5], [1983.5, 350.5], [1977.5, 350.5], [1977.5, 355.5], [1999.5, 355.5]]}, {"id": "twprm1", "submitted_by": "themistik", "name": "Cath\u00e9drale Notre-Dame de Paris", "description": "Last piece made by the French Reddit community. It represent Notre-Dame de Paris, a very famous cathedral located at the heart of Paris. A firefighter truck was made, reminicent of Notre-Dame burnings from 2019.", "website": "https://en.wikipedia.org/wiki/Notre-Dame_de_Paris", "subreddit": "/r/placefrance", "center": [1160.5, 1211.5], "path": [[1119.5, 1280.5], [1124.5, 1141.5], [1131.5, 1132.5], [1146.5, 1133.5], [1150.5, 1136.5], [1150.5, 1141.5], [1153.5, 1142.5], [1154.5, 1158.5], [1168.5, 1157.5], [1167.5, 1153.5], [1167.5, 1148.5], [1170.5, 1140.5], [1187.5, 1141.5], [1190.5, 1135.5], [1193.5, 1134.5], [1196.5, 1141.5], [1197.5, 1144.5], [1196.5, 1147.5], [1199.5, 1150.5], [1198.5, 1154.5], [1198.5, 1174.5], [1200.5, 1174.5], [1200.5, 1185.5], [1201.5, 1248.5], [1200.5, 1279.5], [1200.5, 1279.5]]}, -{"id": "twpqvs", "submitted_by": "OkBOOMERR08", "name": "In Honor Of Mako / The Tale Of Iroh", "description": "This pixel-art was made by the YouTuber/Streamer Ludwig (who also made other pixel-arts in r/place) and his community. It was later defended and improved by Ludwig's community and a part of the r/ATLA community by adding small details and protecting the pixel-art.nnThe Pixel-art was made after a scene of the cartoon, Avatar: The Last Airbender, episode: Tales of Ba Sing Se (The Tale of Iroh). The Episode shows Iroh's life in the city Ba Sing Se and later in the end Iroh sitting by a tree mourning the death of his late son Lu Ten who died in war and at the very end a tribute to Mako Iwamatsu who is known for voicing Iroh in A:TLA.", "website": "Tales Of Ba Sing Se: https://avatar.fandom.com/wiki/The_Tales_of_Ba_Sing_Se | Mako Iwamatsu: https://en.wikipedia.org/wiki/Mako_(actor)", "subreddit": "/r/LudwigAhgren, /r/ATLA", "center": [1415.5, 1554.5], "path": [[1332.5, 1497.5], [1332.5, 1611.5], [1498.5, 1611.5], [1498.5, 1498.5], [1333.5, 1497.5]]}, {"id": "twpqt7", "submitted_by": "TurtlesC4nFly", "name": "HCjustin, Chiblee and DumbDog", "description": "Three Twitch streamers.", "website": "", "subreddit": "", "center": [1304.5, 42.5], "path": [[1281.5, 35.5], [1328.5, 35.5], [1328.5, 38.5], [1325.5, 38.5], [1325.5, 39.5], [1324.5, 39.5], [1324.5, 40.5], [1324.5, 42.5], [1324.5, 43.5], [1325.5, 43.5], [1325.5, 44.5], [1326.5, 44.5], [1326.5, 45.5], [1327.5, 45.5], [1328.5, 45.5], [1328.5, 49.5], [1281.5, 49.5]]}, -{"id": "twpqsh", "submitted_by": "GeoJayman", "name": "Raysfire", "description": "The blue flame logo for the raysfire community.", "website": "twitch.tv/raysfire", "subreddit": "/r/raysfire", "center": [1580.5, 1671.5], "path": [[1580.5, 1663.5], [1586.5, 1663.5], [1586.5, 1676.5], [1585.5, 1677.5], [1574.5, 1677.5], [1574.5, 1670.5], [1579.5, 1663.5]]}, +{"id": "twpqsh", "submitted_by": "GeoJayman", "name": "Raysfire", "description": "The blue flame logo for the raysfire community.", "website": "https://twitch.tv/raysfire", "subreddit": "/r/raysfire", "center": [1580.5, 1671.5], "path": [[1580.5, 1663.5], [1586.5, 1663.5], [1586.5, 1676.5], [1585.5, 1677.5], [1574.5, 1677.5], [1574.5, 1670.5], [1579.5, 1663.5]]}, {"id": "twpqn2", "submitted_by": "gamrin", "name": "Grachtenpanden (Canal Houses)", "description": "A canal house (Dutch: grachtenpand) is a (usually old) house overlooking a canal. These houses are often slim, high and deep. Canal houses usually had a basement and a loft and attic where trade goods could be stored. A special beam or pulley installation would be located in the attic to hoist up valuable goods, like spices, cotton, or heavier stuff like cocoa. In recent times, the pulleys are only used (albeit rarely) for moving furniture.", "website": "https://nl.wikipedia.org/wiki/Grachtenpand", "subreddit": "/r/PlaceNL", "center": [1287.5, 25.5], "path": [[1236.5, 34.5], [1338.5, 34.5], [1338.5, 23.5], [1332.5, 23.5], [1332.5, 19.5], [1330.5, 17.5], [1330.5, 16.5], [1329.5, 15.5], [1329.5, 14.5], [1326.5, 14.5], [1326.5, 16.5], [1324.5, 16.5], [1324.5, 14.5], [1322.5, 14.5], [1321.5, 15.5], [1318.5, 15.5], [1316.5, 17.5], [1315.5, 17.5], [1315.5, 21.5], [1310.5, 21.5], [1310.5, 19.5], [1309.5, 18.5], [1307.5, 18.5], [1306.5, 19.5], [1304.5, 19.5], [1304.5, 17.5], [1303.5, 16.5], [1301.5, 16.5], [1300.5, 17.5], [1300.5, 19.5], [1295.5, 19.5], [1295.5, 18.5], [1293.5, 18.5], [1291.5, 20.5], [1289.5, 18.5], [1289.5, 17.5], [1288.5, 16.5], [1288.5, 14.5], [1283.5, 14.5], [1280.5, 11.5], [1278.5, 11.5], [1275.5, 14.5], [1274.5, 14.5], [1274.5, 16.5], [1275.5, 17.5], [1275.5, 19.5], [1273.5, 19.5], [1273.5, 17.5], [1271.5, 17.5], [1271.5, 19.5], [1269.5, 19.5], [1269.5, 18.5], [1265.5, 18.5], [1264.5, 17.5], [1263.5, 17.5], [1262.5, 18.5], [1261.5, 18.5], [1260.5, 17.5], [1259.5, 17.5], [1258.5, 16.5], [1258.5, 14.5], [1257.5, 13.5], [1253.5, 13.5], [1252.5, 14.5], [1252.5, 17.5], [1250.5, 17.5], [1250.5, 21.5], [1244.5, 21.5], [1244.5, 19.5], [1238.5, 19.5], [1238.5, 22.5], [1236.5, 22.5]]}, -{"id": "twpqik", "submitted_by": "TrashDanQuack", "name": "Starduck", "description": "A duck from the game Stardew Valley, made by r/place_ducks and r/stardewvalley", "website": "", "subreddit": "/r/stardewvalley", "center": [1700.5, 992.5], "path": [[1708.5, 1001.5], [1708.5, 1001.5], [1707.5, 984.5], [1691.5, 985.5], [1691.5, 997.5]]}, {"id": "twpqhq", "submitted_by": "NinotainmentSystems", "name": "Astolfo", "description": "Astolfo from Fate/Apocrypha with the femboy flag in the background.", "website": "", "subreddit": "/r/femboy", "center": [264.5, 952.5], "path": [[246.5, 939.5], [246.5, 965.5], [284.5, 965.5], [284.5, 957.5], [280.5, 957.5], [280.5, 939.5], [246.5, 939.5]]}, {"id": "twpqdk", "submitted_by": "timklaassen05", "name": "frikandel broodje", "description": "a Dutch delicacy most populair among teens containing a frikandel and a curry sauce", "website": "", "subreddit": "", "center": [1690.5, 21.5], "path": [[1666.5, 28.5], [1675.5, 28.5], [1680.5, 29.5], [1684.5, 30.5], [1689.5, 31.5], [1696.5, 32.5], [1704.5, 33.5], [1706.5, 32.5], [1708.5, 31.5], [1709.5, 30.5], [1711.5, 29.5], [1715.5, 22.5], [1716.5, 19.5], [1715.5, 18.5], [1715.5, 16.5], [1714.5, 15.5], [1711.5, 13.5], [1705.5, 13.5], [1697.5, 12.5], [1690.5, 11.5], [1673.5, 10.5], [1662.5, 21.5], [1664.5, 22.5], [1663.5, 24.5], [1664.5, 26.5]]}, {"id": "twpqc6", "submitted_by": "PercyPJ1", "name": "Kick open the door", "description": "Created by r/kickopenthedoor, showing the subreddit's logo. They were long term allies to r/Noita and the Central Alliance.", "website": "", "subreddit": "/r/kickopenthedoor", "center": [601.5, 928.5], "path": [[580.5, 910.5], [580.5, 946.5], [615.5, 946.5], [615.5, 945.5], [622.5, 945.5], [622.5, 910.5], [622.5, 910.5]]}, @@ -1668,9 +1562,9 @@ {"id": "twppde", "submitted_by": "SkytAsul", "name": "The Starry Night", "description": "A painting from the famous painter Van Gogh.", "website": "", "subreddit": "", "center": [1483.5, 18.5], "path": [[1450.5, 1.5], [1515.5, 1.5], [1515.5, 35.5], [1450.5, 35.5]]}, {"id": "twppaz", "submitted_by": "martindual2222", "name": "Scoti", "description": "Art made by the Scoti community. Originally made by 3 people but then expanded by more", "website": "", "subreddit": "/r/ScotiVerso", "center": [1577.5, 1086.5], "path": [[1570.5, 1081.5], [1581.5, 1081.5], [1581.5, 1084.5], [1585.5, 1084.5], [1585.5, 1089.5], [1578.5, 1089.5], [1578.5, 1091.5], [1570.5, 1091.5]]}, {"id": "twpp5k", "submitted_by": "De_Nielsch", "name": "right side dutch region", "description": "the right side of the dutch region filled with more iconic images of the netherlands", "website": "", "subreddit": "/r/placeNL", "center": [1552.5, 17.5], "path": [[1105.5, 0.5], [1999.5, 0.5], [1999.5, 35.5], [1148.5, 34.5], [1145.5, 37.5], [1133.5, 37.5], [1130.5, 39.5], [1118.5, 39.5], [1118.5, 37.5], [1115.5, 35.5], [1113.5, 35.5], [1113.5, 34.5], [1104.5, 34.5], [1104.5, 0.5], [1103.5, 0.5], [1103.5, 34.5], [1103.5, 0.5]]}, -{"id": "twpp2z", "submitted_by": "essokinesis1", "name": "Urotsuki", "description": "This is Urotsuki, protagonist of the 2channel collaborative Yume Nikki fangame, Yume 2kki", "website": "", "subreddit": "", "center": [1237.5, 120.5], "path": [[1228.5, 133.5], [1228.5, 108.5], [1247.5, 108.5], [1246.5, 133.5], [1233.5, 133.5]]}, +{"id": "twpp2z", "submitted_by": "essokinesis1", "name": "Urotsuki", "description": "Urotsuki is the protagonist of 'Yume 2kki', a collaborative Yume Nikki fan-sequel that was the first recognized fangame and is by far the most expansive one.", "website": "https://yume2kki.fandom.com/wiki/Urotsuki", "subreddit": "/r/yumenikki", "center": [1238.5, 121.5], "path": [[1231.5, 117.5], [1228.5, 117.5], [1228.5, 115.5], [1229.5, 115.5], [1229.5, 114.5], [1230.5, 114.5], [1230.5, 112.5], [1231.5, 112.5], [1231.5, 110.5], [1232.5, 110.5], [1232.5, 109.5], [1233.5, 109.5], [1233.5, 108.5], [1235.5, 108.5], [1235.5, 107.5], [1240.5, 107.5], [1240.5, 108.5], [1242.5, 108.5], [1242.5, 109.5], [1243.5, 109.5], [1243.5, 110.5], [1244.5, 110.5], [1244.5, 112.5], [1245.5, 112.5], [1245.5, 114.5], [1246.5, 114.5], [1246.5, 115.5], [1247.5, 115.5], [1247.5, 117.5], [1244.5, 117.5], [1244.5, 122.5], [1242.5, 122.5], [1242.5, 123.5], [1243.5, 123.5], [1243.5, 125.5], [1244.5, 125.5], [1244.5, 127.5], [1245.5, 127.5], [1245.5, 130.5], [1244.5, 130.5], [1244.5, 133.5], [1243.5, 133.5], [1243.5, 134.5], [1239.5, 134.5], [1239.5, 133.5], [1238.5, 133.5], [1238.5, 131.5], [1237.5, 131.5], [1237.5, 133.5], [1236.5, 133.5], [1236.5, 134.5], [1232.5, 134.5], [1232.5, 133.5], [1231.5, 133.5], [1231.5, 130.5], [1230.5, 130.5], [1230.5, 127.5], [1231.5, 127.5], [1231.5, 125.5], [1232.5, 125.5], [1232.5, 123.5], [1233.5, 123.5], [1233.5, 122.5], [1231.5, 122.5], [1231.5, 117.5]]}, {"id": "twpp0q", "submitted_by": "MrEduxator", "name": "r/placestart's VTuber Logos", "description": "An area carved up by a coalition of different Virtual YouTuber communities in collaboration with r/PlaceStart. From left to right: r/Hololive, r/Nijisanji, r/Vshojo", "website": "", "subreddit": "/r/VirtualYoutubers", "center": [1069.5, 1986.5], "path": [[1028.5, 1974.5], [1108.5, 1974.5], [1108.5, 1996.5], [1028.5, 1996.5]]}, -{"id": "twpoz1", "submitted_by": "Xarithene", "name": "Smugmiya (arknights)", "description": "The character Amiya (being smug)from the Tower defense mobile gacha game by Hypergryph releasedd in 2019.", "website": "Website", "subreddit": "/r/arknights", "center": [1149.5, 103.5], "path": [[1135.5, 87.5], [1159.5, 87.5], [1159.5, 88.5], [1163.5, 88.5], [1163.5, 119.5], [1135.5, 119.5]]}, +{"id": "twpoz1", "submitted_by": "Xarithene", "name": "Smugmiya (arknights)", "description": "The character Amiya (being smug)from the Tower defense mobile gacha game by Hypergryph releasedd in 2019.", "website": "https://Website", "subreddit": "/r/arknights", "center": [1149.5, 103.5], "path": [[1135.5, 87.5], [1159.5, 87.5], [1159.5, 88.5], [1163.5, 88.5], [1163.5, 119.5], [1135.5, 119.5]]}, {"id": "twpovl", "submitted_by": "aronrusty2005", "name": "twitch streamer kingkontent", "description": "a dutch streamer who wanted to leave his mark on r/place nand he survived altho his site got Ddossed by toxic guys from a RPG server", "website": "https://www.twitch.tv/kingkontent", "subreddit": "", "center": [396.5, 1931.5], "path": [[379.5, 1918.5], [379.5, 1918.5], [379.5, 1943.5], [413.5, 1943.5], [412.5, 1918.5]]}, {"id": "twposp", "submitted_by": "thelolo_007", "name": "One-One / Inifinity Train", "description": "One-One, is a robotic companion of Tulip in Cartoon Network's Infinity Train. Next to him is the show's logo", "website": "", "subreddit": "/r/InfinityTrain", "center": [488.5, 910.5], "path": [[480.5, 912.5], [482.5, 914.5], [486.5, 914.5], [487.5, 913.5], [488.5, 912.5], [488.5, 910.5], [489.5, 910.5], [491.5, 912.5], [493.5, 912.5], [495.5, 910.5], [496.5, 909.5], [502.5, 909.5], [502.5, 908.5], [500.5, 906.5], [498.5, 906.5], [495.5, 909.5], [489.5, 909.5], [488.5, 909.5], [488.5, 907.5], [487.5, 907.5], [486.5, 906.5], [482.5, 906.5], [480.5, 909.5], [480.5, 912.5]]}, {"id": "twpooo", "submitted_by": "bittebittenicht", "name": "RC15", "description": "Logo of RC15, an attempt to revive an old version of Robocraft from 2015, which was widely regarded as the best version by the community.", "website": "https://discord.com/rc15", "subreddit": "/r/RC15", "center": [1921.5, 254.5], "path": [[1905.5, 240.5], [1936.5, 240.5], [1935.5, 241.5], [1935.5, 242.5], [1936.5, 243.5], [1937.5, 244.5], [1938.5, 246.5], [1938.5, 264.5], [1937.5, 264.5], [1936.5, 264.5], [1936.5, 268.5], [1905.5, 268.5]]}, @@ -1683,10 +1577,10 @@ {"id": "twpoab", "submitted_by": "Michael_Le41", "name": "The Knight", "description": "An enigmatic wanderer who descends into Hallownest carrying only a broken nail to fend off foes. - Official Manual", "website": "https://discord.gg/RKWC7ZUVnz", "subreddit": "/r/hkplace", "center": [1377.5, 79.5], "path": [[1370.5, 57.5], [1364.5, 64.5], [1364.5, 69.5], [1367.5, 74.5], [1367.5, 84.5], [1369.5, 88.5], [1373.5, 90.5], [1364.5, 102.5], [1364.5, 104.5], [1374.5, 104.5], [1383.5, 104.5], [1389.5, 101.5], [1384.5, 91.5], [1388.5, 88.5], [1388.5, 75.5], [1391.5, 71.5], [1391.5, 69.5], [1390.5, 66.5], [1390.5, 61.5], [1386.5, 58.5], [1381.5, 57.5], [1369.5, 57.5]]}, {"id": "twpo81", "submitted_by": "Educational-Ad-170", "name": "2017 Touhou hijack tribute", "description": "A tribute to the 2017 Touhou hijack", "website": "https://youtu.be/N8L6-vQ_lqk", "subreddit": "/r/touhou", "center": [1654.5, 1504.5], "path": [[1621.5, 1451.5], [1620.5, 1557.5], [1687.5, 1557.5], [1688.5, 1451.5]]}, {"id": "twpo5e", "submitted_by": "Marnixz", "name": "Dutch technical universities", "description": "A collaboration between the Dutch technical universities of Eindhoven, Delft & Enschede", "website": "", "subreddit": "", "center": [1920.5, 44.5], "path": [[1895.5, 35.5], [1895.5, 53.5], [1942.5, 53.5], [1945.5, 53.5], [1946.5, 36.5]]}, -{"id": "twpo29", "submitted_by": "morganisboring", "name": "reputation - Taylor Swift album", "description": "Part of the font for Taylor Swift's 2017 album 'reputation'. Was created after the 'evermore' tribute was destroyed, originally located on the top right of what is now a crying baby. A huge thank you to the huge efforts that were put in to defend rep, especially by the Lego and PopHeads community, which resulted in it being saved in the final few minutes before r/place ended.", "website": "", "subreddit": "/r/taylorswift", "center": [831.5, 1923.5], "path": [[828.5, 1909.5], [835.5, 1914.5], [844.5, 1915.5], [845.5, 1916.5], [845.5, 1931.5], [844.5, 1932.5], [817.5, 1932.5], [816.5, 1931.5], [816.5, 1916.5], [817.5, 1915.5], [830.5, 1915.5], [831.5, 1916.5], [831.5, 1916.5], [832.5, 1915.5], [830.5, 1914.5], [827.5, 1910.5]]}, -{"id": "twpo1b", "submitted_by": "falkihr", "name": "Jeb (Kerbal Space Program)", "description": "Jebediah Kerman, the protagonist of the planetary popular Kerbal Space Program! Below Jeb, a representation of the Kerbol System. From left to right: Kerbol (Sun), Moho (Mercury), Eve (Venus), Kerbin (Earth), Duna (Mars), Jool (Jupiter), Eeloo (Pluto). Between Duna (red) and Jool (green) there's a suspicious void area\u2026 was something supposed to be there? Nah\u2026", "website": "[www.kerbalspaceprogram.com](https://www.kerbalspaceprogram.com)", "subreddit": "/r/KerbalSpaceProgram", "center": [1503.5, 410.5], "path": [[1493.5, 427.5], [1493.5, 415.5], [1495.5, 415.5], [1495.5, 397.5], [1496.5, 397.5], [1496.5, 394.5], [1497.5, 394.5], [1497.5, 393.5], [1498.5, 393.5], [1498.5, 392.5], [1500.5, 392.5], [1500.5, 391.5], [1507.5, 391.5], [1507.5, 392.5], [1509.5, 392.5], [1509.5, 393.5], [1510.5, 393.5], [1510.5, 394.5], [1511.5, 394.5], [1511.5, 397.5], [1512.5, 397.5], [1512.5, 427.5]]}, +{"id": "twpo29", "submitted_by": "morganisboring", "name": "reputation - Taylor Swift album", "description": "Part of the font for Taylor Swift's 2017 album 'reputation'. It also features a snake border in homage to the aesthetic of her 6th studio album. It was created in a short space of time after the 'evermore' tribute was destroyed. A huge thank you to the people whose incredible contributions helped to defend 'rep', especially the Lego and PopHeads community. These efforts resulted in it being saved in the final few minutes before r/place ended.", "website": "https://en.wikipedia.org/wiki/Reputation_(album)", "subreddit": "/r/TaylorSwift", "center": [831.5, 1923.5], "path": [[828.5, 1909.5], [835.5, 1914.5], [844.5, 1915.5], [845.5, 1916.5], [845.5, 1931.5], [844.5, 1932.5], [817.5, 1932.5], [816.5, 1931.5], [816.5, 1916.5], [817.5, 1915.5], [830.5, 1915.5], [831.5, 1916.5], [831.5, 1916.5], [832.5, 1915.5], [830.5, 1914.5], [827.5, 1910.5]]}, +{"id": "twpo1b", "submitted_by": "falkihr", "name": "Jeb (Kerbal Space Program)", "description": "Jebediah Kerman, the protagonist of the planetary popular Kerbal Space Program! Below Jeb, a representation of the Kerbol System. From left to right: Kerbol (Sun), Moho (Mercury), Eve (Venus), Kerbin (Earth), Duna (Mars), Jool (Jupiter), Eeloo (Pluto). Between Duna (red) and Jool (green) there's a suspicious void area\u2026 was something supposed to be there? Nah\u2026", "website": "https://www.kerbalspaceprogram.com", "subreddit": "/r/KerbalSpaceProgram", "center": [1503.5, 410.5], "path": [[1493.5, 427.5], [1493.5, 415.5], [1495.5, 415.5], [1495.5, 397.5], [1496.5, 397.5], [1496.5, 394.5], [1497.5, 394.5], [1497.5, 393.5], [1498.5, 393.5], [1498.5, 392.5], [1500.5, 392.5], [1500.5, 391.5], [1507.5, 391.5], [1507.5, 392.5], [1509.5, 392.5], [1509.5, 393.5], [1510.5, 393.5], [1510.5, 394.5], [1511.5, 394.5], [1511.5, 397.5], [1512.5, 397.5], [1512.5, 427.5]]}, {"id": "twpo0c", "submitted_by": "gamrin", "name": "Oranje Boven!", "description": "The flag and colour of the Netherlands! Oranje Boven (Orange Above) is a well known short song.", "website": "https://nl.wikipedia.org/wiki/Oranje_boven_(lied)", "subreddit": "/r/PlaceNL", "center": [1163.5, 17.5], "path": [[298.5, 34.5], [298.5, 14.5], [369.5, 14.5], [369.5, 0.5], [1999.5, 0.5], [1999.5, 34.5], [628.5, 34.5]]}, -{"id": "twpnz1", "submitted_by": "Yellow4920", "name": "Starkid", "description": "The logo of Starkid, a theatre company who puts their content on youtube for free!", "website": "www.teamstarkid.com", "subreddit": "/r/starkid", "center": [349.5, 1495.5], "path": [[347.5, 1494.5], [347.5, 1493.5], [350.5, 1499.5], [352.5, 1499.5], [352.5, 1490.5], [346.5, 1490.5], [345.5, 1490.5], [345.5, 1498.5], [353.5, 1499.5], [352.5, 1491.5]]}, +{"id": "twpnz1", "submitted_by": "Yellow4920", "name": "Starkid", "description": "The logo of Starkid, a theatre company who puts their content on youtube for free!", "website": "https://www.teamstarkid.com", "subreddit": "/r/starkid", "center": [349.5, 1495.5], "path": [[347.5, 1494.5], [347.5, 1493.5], [350.5, 1499.5], [352.5, 1499.5], [352.5, 1490.5], [346.5, 1490.5], [345.5, 1490.5], [345.5, 1498.5], [353.5, 1499.5], [352.5, 1491.5]]}, {"id": "twpnor", "submitted_by": "De_Nielsch", "name": "left side of dutch region", "description": "right half of the dutch region filled with iconic images from the netherlands", "website": "", "subreddit": "/r/placeNL", "center": [645.5, 20.5], "path": [[369.5, 0.5], [928.5, 0.5], [928.5, 69.5], [886.5, 69.5], [886.5, 34.5], [297.5, 34.5], [297.5, 14.5], [368.5, 14.5], [368.5, 0.5]]}, {"id": "twpnf6", "submitted_by": "MrEduxator", "name": "Natsuiro Matsuri", "description": "A sort of Ahegao face made by Natsuiro Matsuri of hololive's 1st Gen. An iconic meme image within the hololive community. She's God, OK?", "website": "https://www.youtube.com/channel/UCQ0UDLQCjY0rmuxCDE38FGg", "subreddit": "/r/hololive", "center": [1439.5, 1088.5], "path": [[1423.5, 1102.5], [1423.5, 1073.5], [1454.5, 1073.5], [1454.5, 1103.5], [1453.5, 1103.5], [1423.5, 1103.5]]}, {"id": "twpn9r", "submitted_by": "Jern92", "name": "Our Flag Means Death", "description": "One of the biggest hits of 2022, OFMD tells the tale of Stede Bonnet, a pampered aristocrat turned pirate, and Blackbeard, the most fearsome pirate of all time.", "website": "", "subreddit": "/r/OurFlagMeansDeath", "center": [1912.5, 905.5], "path": [[1900.5, 892.5], [1900.5, 917.5], [1923.5, 917.5], [1923.5, 892.5], [1900.5, 892.5]]}, @@ -1707,7 +1601,7 @@ {"id": "twpl8y", "submitted_by": "thresholdlimit", "name": "Minecraft Block", "description": "A grass block from Minecraft, created by random users. Initially a small space claimed by the Youtuber Hydroxyl over two days.", "website": "https://youtube.com/Hydroxyl", "subreddit": "", "center": [674.5, 790.5], "path": [[671.5, 787.5], [677.5, 787.5], [677.5, 793.5], [671.5, 793.5]]}, {"id": "twpl66", "submitted_by": "tupper", "name": "VRChat Developer", "description": "A depiction of one of the VRChat developers, Tupper.", "website": "https://vrchat.com", "subreddit": "/r/vrchat", "center": [995.5, 110.5], "path": [[990.5, 105.5], [1000.5, 105.5], [1000.5, 114.5], [990.5, 114.5]]}, {"id": "twpksr", "submitted_by": "Sp3ctraZ", "name": "Super Smash Bros Ultimate logo", "description": "The logo of the Nintendo Switch' biggest brawl game and one of the biggest crossover games ever.", "website": "https://nl.wikipedia.org/wiki/Super_Smash_Bros._Ultimate", "subreddit": "", "center": [787.5, 1986.5], "path": [[776.5, 1996.5], [776.5, 1975.5], [797.5, 1975.5], [797.5, 1996.5]]}, -{"id": "twpkn4", "submitted_by": "Sukunaa", "name": "Shouko Komi", "description": "A Pixel Art of Komi wearing a crown holding onto the OSU! Logo. Helped by (obviously) the OSU! Community.", "website": "https://www.reddit.com/r/Komi_san/", "subreddit": "/r/komi_san", "center": [724.5, 664.5], "path": [[713.5, 650.5], [725.5, 645.5], [736.5, 651.5], [736.5, 680.5], [713.5, 680.5], [713.5, 658.5]]}, +{"id": "twpkn4", "submitted_by": "ThatOneCodeDev", "name": "Shouko Komi", "description": "A pixel art of Komi wearing a crown holding onto the osu! logo. Helped by (obviously) the osu! community.", "website": "https://komisan.fandom.com/wiki/Komi_Shouko", "subreddit": "/r/Komi_San_Place", "center": [724.5, 664.5], "path": [[713.5, 650.5], [725.5, 645.5], [736.5, 651.5], [736.5, 680.5], [713.5, 680.5], [713.5, 658.5]]}, {"id": "twpk8j", "submitted_by": "atlet0_", "name": "The Magnus Archives", "description": "TMA is a horror fiction anthology podcast founded by Rusty Quill examining what lurks in the archives of the Magnus Institute, an organisation dedicated to researching the esoteric and the weird. You can listen to it for free on YT, Spotify, and more!", "website": "https://youtube.com/playlist?list=PLSbuB1AyaJk8zTF3nE2KRxuixG_A5gBKJ", "subreddit": "/r/TheMagnusArchives", "center": [1980.5, 185.5], "path": [[1960.5, 176.5], [1999.5, 176.5], [1999.5, 194.5], [1960.5, 194.5], [1960.5, 176.5]]}, {"id": "twpk1e", "submitted_by": "gamrin", "name": "Fiets in de gracht (Bike in the canal)", "description": "Welcome to the Netherlands. Getting around by bike is often the easies way of transporting yourself. This also means that getting your bike stolen is extremely common. If you've lost your bike, and it wasn't worth reselling, you can probably find it in the canal.", "website": "https://www.reddit.com/r/thenetherlands/comments/a2b698/fiets_in_de_gracht_gegooid_wat_nu/", "subreddit": "/r/PlaceNL", "center": [1596.5, 27.5], "path": [[1581.5, 34.5], [1581.5, 25.5], [1589.5, 18.5], [1593.5, 18.5], [1601.5, 18.5], [1609.5, 27.5], [1613.5, 27.5], [1613.5, 34.5]]}, {"id": "twpk18", "submitted_by": "th3_fish_", "name": "watchdominion.org", "description": "Link to a documentary about the animal exploitation industry. Created by animal rights activists.", "website": "", "subreddit": "/r/vegan_place", "center": [1829.5, 1583.5], "path": [[1786.5, 1555.5], [1875.5, 1555.5], [1875.5, 1561.5], [1872.5, 1561.5], [1873.5, 1611.5], [1786.5, 1611.5]]}, @@ -1721,7 +1615,6 @@ {"id": "twpj7v", "submitted_by": "aMemeAddict", "name": "Sacred Hearts Club", "description": "The patch logo for Foster The People's 3rd album, Sacred Hearts Club.", "website": "", "subreddit": "/r/FosterThePeople", "center": [1343.5, 1307.5], "path": [[1336.5, 1309.5], [1336.5, 1305.5], [1337.5, 1304.5], [1337.5, 1303.5], [1338.5, 1302.5], [1339.5, 1301.5], [1340.5, 1301.5], [1341.5, 1300.5], [1345.5, 1300.5], [1346.5, 1301.5], [1347.5, 1301.5], [1348.5, 1302.5], [1349.5, 1303.5], [1349.5, 1304.5], [1350.5, 1305.5], [1350.5, 1309.5], [1349.5, 1310.5], [1349.5, 1311.5], [1348.5, 1312.5], [1347.5, 1313.5], [1346.5, 1313.5], [1345.5, 1314.5], [1341.5, 1314.5], [1340.5, 1313.5], [1339.5, 1313.5], [1338.5, 1312.5], [1337.5, 1311.5], [1337.5, 1310.5], [1336.5, 1309.5]]}, {"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.nYouTube 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.nAfter 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": "twpist", "submitted_by": "RedditLightmode", "name": "Freddie Mercury", "description": "Iconic frontman and lead singer of Queen, Freddie Mercury (1946-1991)", "website": "", "subreddit": "", "center": [570.5, 490.5], "path": [[564.5, 503.5], [568.5, 503.5], [568.5, 501.5], [568.5, 500.5], [569.5, 500.5], [570.5, 500.5], [570.5, 499.5], [570.5, 498.5], [570.5, 497.5], [571.5, 497.5], [572.5, 497.5], [573.5, 497.5], [573.5, 498.5], [573.5, 499.5], [574.5, 499.5], [574.5, 500.5], [574.5, 501.5], [574.5, 502.5], [574.5, 503.5], [576.5, 504.5], [576.5, 498.5], [575.5, 498.5], [575.5, 496.5], [574.5, 495.5], [574.5, 493.5], [574.5, 492.5], [575.5, 492.5], [575.5, 491.5], [576.5, 491.5], [577.5, 491.5], [577.5, 492.5], [577.5, 493.5], [576.5, 493.5], [576.5, 494.5], [576.5, 495.5], [576.5, 496.5], [577.5, 496.5], [577.5, 495.5], [577.5, 494.5], [577.5, 494.5], [577.5, 493.5], [577.5, 493.5], [577.5, 492.5], [577.5, 491.5], [577.5, 490.5], [577.5, 489.5], [575.5, 489.5], [575.5, 488.5], [574.5, 488.5], [574.5, 480.5], [573.5, 480.5], [573.5, 479.5], [568.5, 479.5], [568.5, 480.5], [567.5, 480.5], [567.5, 484.5], [566.5, 484.5], [565.5, 484.5], [565.5, 483.5], [564.5, 483.5], [564.5, 482.5], [563.5, 482.5], [563.5, 483.5], [562.5, 483.5], [562.5, 485.5], [563.5, 485.5], [563.5, 486.5], [564.5, 486.5], [564.5, 487.5], [565.5, 487.5], [565.5, 488.5], [565.5, 489.5], [566.5, 489.5], [566.5, 493.5], [567.5, 493.5], [567.5, 494.5], [568.5, 494.5], [568.5, 495.5], [569.5, 495.5], [569.5, 496.5], [569.5, 497.5], [568.5, 497.5], [567.5, 497.5], [567.5, 498.5], [566.5, 498.5], [566.5, 499.5], [566.5, 500.5], [565.5, 500.5], [565.5, 502.5], [564.5, 502.5], [564.5, 502.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": "twpijw", "submitted_by": "GonzaloSurba", "name": "Iberian lynx", "description": "Is a wild cat species endemic to the Iberian Peninsula in southwestern Europe. It is listed as Endangered on the IUCN Red List.", "website": "", "subreddit": "", "center": [892.5, 303.5], "path": [[886.5, 296.5], [888.5, 296.5], [888.5, 296.5], [889.5, 296.5], [889.5, 297.5], [890.5, 298.5], [891.5, 298.5], [892.5, 297.5], [892.5, 296.5], [893.5, 296.5], [894.5, 296.5], [895.5, 296.5], [896.5, 297.5], [895.5, 298.5], [895.5, 299.5], [895.5, 300.5], [896.5, 301.5], [896.5, 302.5], [896.5, 303.5], [896.5, 304.5], [897.5, 305.5], [898.5, 304.5], [899.5, 303.5], [900.5, 304.5], [901.5, 305.5], [901.5, 306.5], [901.5, 307.5], [900.5, 308.5], [899.5, 308.5], [898.5, 308.5], [897.5, 308.5], [896.5, 308.5], [895.5, 308.5], [894.5, 308.5], [893.5, 309.5], [892.5, 309.5], [891.5, 308.5], [890.5, 308.5], [889.5, 309.5], [888.5, 309.5], [887.5, 309.5], [886.5, 308.5], [886.5, 307.5], [886.5, 306.5], [887.5, 305.5], [886.5, 304.5], [885.5, 303.5], [885.5, 302.5], [885.5, 301.5], [885.5, 300.5], [885.5, 299.5], [885.5, 298.5], [885.5, 297.5]]}, @@ -1730,13 +1623,12 @@ {"id": "twpige", "submitted_by": "gamrin", "name": "Willen van Oranje (Stille Willem)", "description": "William the Silent (24 April 1533 \u2013 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 (1568\u20131648) 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]]}, {"id": "twpicx", "submitted_by": "th3_fish_", "name": "QR code", "description": "QR code leading to a video about veganism", "website": "https://www.youtube.com/watch?v=C1vW9iSpLLk", "subreddit": "/r/vegan_place", "center": [1381.5, 1933.5], "path": [[1365.5, 1917.5], [1397.5, 1917.5], [1397.5, 1949.5], [1365.5, 1949.5]]}, {"id": "twpibv", "submitted_by": "imthegreenbean", "name": "/r/math", "description": "Who doesn't like math? This display contains: a level 4 Hilbert curve (originally in the top left quadrant but moved due to border dispute with the Ukraine flag); Euler's identity; gliders from Conway's Game of Life, colored to match the logo of the math YouTube channel 3Blue1Brown; an icosahedron, the largest convex Platonic solid; the Greek letter phi, representing the golden ratio and the Euler totient function; the first few digits of pi, and a ton of dope rainbows", "website": "https://www.reddit.com/r/math/comments/twi1ge/", "subreddit": "/r/math", "center": [1651.5, 310.5], "path": [[1628.5, 281.5], [1641.5, 281.5], [1641.5, 284.5], [1672.5, 284.5], [1672.5, 339.5], [1632.5, 339.5], [1632.5, 313.5], [1630.5, 311.5], [1628.5, 311.5], [1628.5, 304.5], [1631.5, 300.5], [1631.5, 297.5], [1628.5, 295.5], [1628.5, 282.5]]}, -{"id": "twpi5o", "submitted_by": "isthisdutch", "name": "Frikandelbroodje", "description": "A famous Dutch snack, made by puff pastry, a specific meatroll called the frikandel and curry sauce", "website": "https://www.ah.nl/producten/product/wi230720/ah-frikandelbroodje", "subreddit": "", "center": [1690.5, 21.5], "path": [[1673.5, 9.5], [1662.5, 21.5], [1665.5, 28.5], [1705.5, 33.5], [1719.5, 19.5], [1705.5, 11.5]]}, {"id": "twpi0p", "submitted_by": "ironbody", "name": "NTI Gymnasiet", "description": "Logo of the swedish high school NTI Gymnasiet", "website": "https://www.ntigymnasiet.se", "subreddit": "", "center": [1787.5, 568.5], "path": [[1775.5, 559.5], [1799.5, 559.5], [1799.5, 576.5], [1775.5, 576.5]]}, {"id": "twphlq", "submitted_by": "A_Fine_Potato", "name": "Rem & Ram from Re:Zero", "description": "2 characters from the anime", "website": "", "subreddit": "", "center": [1882.5, 809.5], "path": [[1867.5, 799.5], [1897.5, 800.5], [1897.5, 819.5], [1867.5, 819.5]]}, {"id": "twphia", "submitted_by": "killerciao", "name": "Borsellino and Falcone", "description": "The famous picture by Tony Gentile of Borsellino and Falcone two antimafia magistrates killed in 1992", "website": "http://www.tonygentile.it/", "subreddit": "", "center": [821.5, 230.5], "path": [[781.5, 225.5], [781.5, 243.5], [784.5, 245.5], [788.5, 247.5], [791.5, 248.5], [801.5, 248.5], [813.5, 248.5], [813.5, 249.5], [838.5, 249.5], [838.5, 248.5], [851.5, 248.5], [851.5, 247.5], [858.5, 247.5], [858.5, 247.5], [857.5, 247.5], [857.5, 246.5], [861.5, 246.5], [862.5, 245.5], [864.5, 243.5], [865.5, 243.5], [865.5, 229.5], [859.5, 229.5], [858.5, 228.5], [856.5, 227.5], [854.5, 227.5], [852.5, 225.5], [852.5, 224.5], [849.5, 224.5], [849.5, 223.5], [846.5, 222.5], [847.5, 220.5], [847.5, 218.5], [846.5, 216.5], [844.5, 214.5], [843.5, 211.5], [841.5, 210.5], [840.5, 209.5], [833.5, 209.5], [831.5, 211.5], [828.5, 212.5], [826.5, 214.5], [824.5, 215.5], [824.5, 216.5], [823.5, 214.5], [822.5, 209.5], [822.5, 208.5], [818.5, 206.5], [814.5, 203.5], [812.5, 202.5], [809.5, 203.5], [807.5, 203.5], [804.5, 204.5], [802.5, 206.5], [800.5, 206.5], [800.5, 207.5], [799.5, 208.5], [798.5, 209.5], [798.5, 212.5], [798.5, 213.5], [799.5, 216.5], [799.5, 220.5], [798.5, 221.5], [791.5, 221.5], [789.5, 222.5], [785.5, 223.5], [784.5, 224.5], [781.5, 225.5]]}, {"id": "twphfq", "submitted_by": "PoiCats", "name": "CSH", "description": "Computer Science House, or CSH, of the Rochester Institute of Technology. Getting more done after 2am than most people do all day. Establish 1976. The 'circles' above the slogan are hard disk platters, which line the walls of the dorm, each signed by the members of that year. Check out our website for more information and to see our awesome projects. We touch grass, I promise, it was scheduled for last week.", "website": "https://csh.rit.edu/", "subreddit": "", "center": [1491.5, 346.5], "path": [[1467.5, 326.5], [1467.5, 366.5], [1514.5, 366.5], [1514.5, 361.5], [1515.5, 360.5], [1516.5, 359.5], [1516.5, 326.5]]}, {"id": "twpgy8", "submitted_by": "stuipdpurpleshep", "name": "Utsuho Reiuji/Okuu", "description": "The Nuclear Birb From Touhou 11 Subterranean Animism", "website": "", "subreddit": "/r/touhou", "center": [1637.5, 1534.5], "path": [[1621.5, 1517.5], [1649.5, 1517.5], [1649.5, 1521.5], [1650.5, 1521.5], [1650.5, 1522.5], [1654.5, 1522.5], [1654.5, 1550.5], [1621.5, 1550.5]]}, -{"id": "twpgxs", "submitted_by": "ILikeLemons420", "name": "Zoil", "description": "Picture of the Twitch streamer Zoil.", "website": "www.twitch.tv/Zoil", "subreddit": "/r/Zoil", "center": [1619.5, 930.5], "path": [[1608.5, 905.5], [1644.5, 905.5], [1644.5, 949.5], [1644.5, 948.5], [1640.5, 948.5], [1639.5, 948.5], [1639.5, 949.5], [1638.5, 949.5], [1638.5, 950.5], [1637.5, 950.5], [1637.5, 954.5], [1631.5, 954.5], [1631.5, 955.5], [1603.5, 955.5], [1603.5, 953.5], [1602.5, 953.5], [1602.5, 952.5], [1600.5, 952.5], [1600.5, 951.5], [1598.5, 951.5], [1598.5, 950.5], [1597.5, 950.5], [1597.5, 949.5], [1596.5, 949.5], [1595.5, 948.5], [1594.5, 947.5], [1593.5, 946.5], [1592.5, 945.5], [1592.5, 909.5], [1608.5, 909.5], [1608.5, 905.5]]}, +{"id": "twpgxs", "submitted_by": "ILikeLemons420", "name": "Zoil", "description": "Picture of the Twitch streamer Zoil.", "website": "https://www.twitch.tv/Zoil", "subreddit": "/r/Zoil", "center": [1619.5, 930.5], "path": [[1608.5, 905.5], [1644.5, 905.5], [1644.5, 949.5], [1644.5, 948.5], [1640.5, 948.5], [1639.5, 948.5], [1639.5, 949.5], [1638.5, 949.5], [1638.5, 950.5], [1637.5, 950.5], [1637.5, 954.5], [1631.5, 954.5], [1631.5, 955.5], [1603.5, 955.5], [1603.5, 953.5], [1602.5, 953.5], [1602.5, 952.5], [1600.5, 952.5], [1600.5, 951.5], [1598.5, 951.5], [1598.5, 950.5], [1597.5, 950.5], [1597.5, 949.5], [1596.5, 949.5], [1595.5, 948.5], [1594.5, 947.5], [1593.5, 946.5], [1592.5, 945.5], [1592.5, 909.5], [1608.5, 909.5], [1608.5, 905.5]]}, {"id": "twpghp", "submitted_by": "CrazyGrape", "name": "IDKHow (Band)", "description": "I DONT KNOW HOW BUT THEY FOUND ME (often abbreviated to IDKHow, as featured on the canvas) is an indie/alternative band/duo consisting of Dallon Weekes and Ryan Seaman, formerly of fame from Panic! At The Disco and Falling in Reverse, respectively. The duo's music commonly features edgy and/or dark lyrics while maintaining an upbeat tone and retro style, though this varies quite a bit.", "website": "https://idkhow.com/", "subreddit": "/r/idkhowbuttheyfoundme", "center": [1088.5, 412.5], "path": [[1077.5, 408.5], [1099.5, 408.5], [1099.5, 415.5], [1077.5, 415.5]]}, {"id": "twpggr", "submitted_by": "gamrin", "name": "Alfred J. Kwak", "description": "Alfred J. Kwak[a] is a Dutch-Japanese animated comedy-drama television series based on a Dutch theatre show by Herman van Veen, produced by Telecable Benelux B.V. in co-production with VARA, ZDF, TVE, TV Tokyo and animation studio Visual '80, and first shown in 1989.", "website": "https://en.wikipedia.org/wiki/Alfred_J._Kwak", "subreddit": "/r/PlaceNL", "center": [735.5, 1959.5], "path": [[760.5, 1949.5], [760.5, 1970.5], [716.5, 1970.5], [716.5, 1968.5], [714.5, 1968.5], [712.5, 1966.5], [712.5, 1964.5], [711.5, 1964.5], [711.5, 1962.5], [710.5, 1962.5], [710.5, 1960.5], [709.5, 1960.5], [709.5, 1958.5], [708.5, 1958.5], [708.5, 1955.5], [709.5, 1955.5], [709.5, 1953.5], [710.5, 1953.5], [710.5, 1952.5], [713.5, 1949.5], [718.5, 1949.5], [760.5, 1949.5]]}, {"id": "twpggq", "submitted_by": "l0c4lh057", "name": "RWTH Aachen University + FH Aachen", "description": "RWTH Aachen is one of Germany's biggest universities. This design is the RWTH Logo with the H in colors of the FH Aachen, another university in Aachen. In the bottom left corner the pride flag was added in the background to show our support towards the community.", "website": "https://rwth-aachen.de/", "subreddit": "/r/rwth", "center": [1247.5, 1203.5], "path": [[1233.5, 1199.5], [1260.5, 1199.5], [1260.5, 1207.5], [1233.5, 1207.5], [1233.5, 1199.5]]}, @@ -1748,11 +1640,11 @@ {"id": "tws7qu", "submitted_by": "dab00mer9", "name": "N", "description": "N is form the series murder drones produced by Glitch Productions which is about drones that murder", "website": "", "subreddit": "/r/MurderDrones", "center": [102.5, 822.5], "path": [[109.5, 830.5], [109.5, 814.5], [95.5, 815.5], [95.5, 830.5]]}, {"id": "tws7q3", "submitted_by": "NormalW", "name": "Dropout Bear", "description": "A depiction of the Dropout Bear, the mascot used for Kanye West's first three albums.", "website": "", "subreddit": "", "center": [1755.5, 43.5], "path": [[1765.5, 51.5], [1765.5, 35.5], [1745.5, 35.5], [1745.5, 51.5], [1754.5, 51.5]]}, {"id": "tws7mh", "submitted_by": "Mo3ath502", "name": "Trash Clan's skull", "description": "This is the skull representing the Trash Clan. The trash clan are the loyal members of Snuffy's community", "website": "https://www.twitch.tv/snuffy", "subreddit": "", "center": [1971.5, 1195.5], "path": [[1943.5, 1172.5], [1999.5, 1172.5], [1999.5, 1215.5], [1999.5, 1218.5], [1943.5, 1218.5], [1943.5, 1216.5], [1943.5, 1208.5], [1943.5, 1201.5], [1943.5, 1186.5]]}, -{"id": "tws788", "submitted_by": "j4ckoxuk", "name": "The Tree People", "description": "A small Reddit chat that united for a common cause. The Tree People patch shows the story of Jack, Alice and their dog Pickles. Thank you to those communities that supported us during r/place! #SaveJ4", "website": "", "subreddit": "/r/TheTreePeople", "center": [857.5, 1258.5], "path": [[854.5, 1255.5], [860.5, 1255.5], [860.5, 1261.5], [854.5, 1261.5]]}, +{"id": "tws788", "name": "The Tree People", "description": "A small Reddit chat that united for a common cause. The Tree People patch shows the story of a tree, a man, his wife and their dog Pickles. Thank you to those communities that supported us during r/place!", "website": "", "subreddit": "/r/place_the_tree_people", "center": [857.5, 1258.5], "path": [[853.5, 1254.5], [861.5, 1254.5], [861.5, 1262.5], [853.5, 1262.5]]}, {"id": "tws77m", "submitted_by": "SH_Eastawott", "name": "Leeds United Logo", "description": "The logo for the Leeds United Football Club and unofficial symbol of the city of Leeds, UK.", "website": "https://www.leedsunited.com/", "subreddit": "/r/LeedsUnited", "center": [1752.5, 577.5], "path": [[1751.5, 597.5], [1742.5, 589.5], [1739.5, 582.5], [1737.5, 578.5], [1738.5, 569.5], [1746.5, 561.5], [1753.5, 559.5], [1760.5, 562.5], [1767.5, 570.5], [1766.5, 581.5], [1760.5, 591.5], [1753.5, 597.5]]}, {"id": "tws6gm", "submitted_by": "Grualva", "name": "Nakiri Ayame", "description": "A chibi art of Virtual Youtuber Nakiri Ayame, a kimono-clad oni who is a talent of Hololive, a Vtuber agency.", "website": "https://www.youtube.com/channel/UC7fk0CB07ly8oSl0aqKkqFg", "subreddit": "/r/NakiriAyame", "center": [1392.5, 966.5], "path": [[1389.5, 962.5], [1389.5, 963.5], [1389.5, 964.5], [1388.5, 964.5], [1388.5, 968.5], [1389.5, 968.5], [1389.5, 969.5], [1395.5, 969.5], [1395.5, 968.5], [1396.5, 968.5], [1396.5, 965.5], [1397.5, 965.5], [1396.5, 965.5], [1396.5, 964.5], [1397.5, 964.5], [1396.5, 964.5], [1396.5, 963.5], [1395.5, 963.5], [1395.5, 962.5], [1395.5, 963.5], [1389.5, 963.5], [1389.5, 962.5], [1389.5, 962.5]]}, -{"id": "tws6e3", "submitted_by": "altocumulus_", "name": "404 girl", "description": "Yotsuba Koiwai from Yotsuba&!, 4chan mascot", "website": "4chan.org", "subreddit": "", "center": [1719.5, 953.5], "path": [[1708.5, 942.5], [1708.5, 963.5], [1729.5, 963.5], [1729.5, 941.5], [1728.5, 941.5], [1727.5, 942.5], [1725.5, 942.5], [1724.5, 943.5], [1719.5, 943.5], [1718.5, 944.5], [1712.5, 944.5], [1710.5, 942.5], [1708.5, 942.5]]}, -{"id": "tws5va", "submitted_by": "SGVsbG86KQ", "name": "The Pixel Place", "description": "ThePixelPlace.Space logo (site inspired by /r/space)", "website": "https://thepixelplace.space/", "subreddit": "/r/ThePixelPlace", "center": [767.5, 568.5], "path": [[772.5, 560.5], [772.5, 575.5], [760.5, 575.5], [760.5, 571.5], [759.5, 571.5], [759.5, 569.5], [763.5, 569.5], [763.5, 560.5]]}, +{"id": "tws6e3", "submitted_by": "altocumulus_", "name": "404 girl", "description": "Yotsuba Koiwai from Yotsuba&!, 4chan mascot", "website": "https://4chan.org", "subreddit": "", "center": [1719.5, 953.5], "path": [[1708.5, 942.5], [1708.5, 963.5], [1729.5, 963.5], [1729.5, 941.5], [1728.5, 941.5], [1727.5, 942.5], [1725.5, 942.5], [1724.5, 943.5], [1719.5, 943.5], [1718.5, 944.5], [1712.5, 944.5], [1710.5, 942.5], [1708.5, 942.5]]}, +{"id": "tws5va", "submitted_by": "SGVsbG86KQ", "name": "The Pixel Place", "description": "ThePixelPlace.Space logo (site inspired by /r/place)", "website": "https://thepixelplace.space/", "subreddit": "/r/ThePixelPlace", "center": [767.5, 568.5], "path": [[772.5, 560.5], [772.5, 575.5], [760.5, 575.5], [760.5, 571.5], [759.5, 571.5], [759.5, 569.5], [763.5, 569.5], [763.5, 560.5]]}, {"id": "tws5qi", "submitted_by": "Czechbol", "name": "Brno University of Technology", "description": "A logo of a Czech University", "website": "https://www.vut.cz", "subreddit": "/r/vutbrno", "center": [358.5, 799.5], "path": [[343.5, 780.5], [373.5, 780.5], [373.5, 818.5], [343.5, 818.5], [343.5, 780.5]]}, {"id": "tws5nr", "submitted_by": "manawesome326", "name": "Ballclark", "description": "An emoji from the Discord server for the browser game Blaseball: an angry baseball (or blaseball) representing one of the game's developers.", "website": "https://discord.gg/blaseball", "subreddit": "", "center": [115.5, 679.5], "path": [[112.5, 686.5], [118.5, 686.5], [122.5, 681.5], [122.5, 676.5], [118.5, 672.5], [112.5, 672.5], [108.5, 677.5], [108.5, 679.5]]}, {"id": "tws5lm", "submitted_by": "tiaxanderson", "name": "r/PlaceNL's Windows XP Taskbar", "description": "In colaboration with r/PlaceStart and others r/PlaceNL created and maintained their taskbar section. The orange color gives the impression that it wants your attention (as if through a pop-up message that has been surpessed", "website": "", "subreddit": "/r/PlaceNL", "center": [341.5, 1986.5], "path": [[388.5, 1973.5], [388.5, 1998.5], [294.5, 1998.5], [294.5, 1973.5]]}, @@ -1761,7 +1653,7 @@ {"id": "tws5a3", "submitted_by": "Kreicliff", "name": "Article 13/17", "description": "A reminder of the demonstrations and fight against the hardly criticised article 13 (later 17), which let to a uploadfilter based copyright system in the EU.", "website": "https://en.wikipedia.org/wiki/Directive_on_Copyright_in_the_Digital_Single_Market", "subreddit": "/r/placeDE", "center": [258.5, 1138.5], "path": [[244.5, 1147.5], [271.5, 1147.5], [272.5, 1129.5], [243.5, 1130.5]]}, {"id": "tws588", "submitted_by": "_____UnKnO", "name": "CHARA", "description": "CHARA undertalenncolab with popheads", "website": "https://undertale.com/", "subreddit": "/r/Charadefensesquad", "center": [1466.5, 522.5], "path": [[1462.5, 510.5], [1471.5, 510.5], [1472.5, 529.5], [1471.5, 534.5], [1461.5, 534.5], [1460.5, 511.5]]}, {"id": "tws55y", "submitted_by": "Intelligent_Donut_95", "name": "Philadelphia 76ers", "description": "A NBA team located in Philadelphia, Pennsylvania.", "website": "", "subreddit": "/r/sixers", "center": [90.5, 593.5], "path": [[80.5, 579.5], [99.5, 579.5], [99.5, 607.5], [80.5, 607.5]]}, -{"id": "tws53k", "submitted_by": "IenjoyPineapplepizza", "name": "The Louvre", "description": "The world's most-visited museum, and a historic landmark in Paris, France. It is the home of some of the best-known works of art, including the Mona Lisa and the Venus de Milo.", "website": "", "subreddit": "", "center": [35.5, 1720.5], "path": [[2.5, 1665.5], [11.5, 1657.5], [92.5, 1730.5], [62.5, 1760.5], [0.5, 1760.5]]}, +{"id": "tws53k", "submitted_by": "IenjoyPineapplepizza", "name": "Louvre", "description": "The world's most-visited museum, and a historic landmark in Paris, France. It is the home of some of the best-known works of art, including the Mona Lisa and the Venus de Milo.", "website": "https://en.wikipedia.org/wiki/Louvre", "subreddit": "/r/placefrance", "center": [35.5, 1720.5], "path": [[2.5, 1665.5], [11.5, 1657.5], [92.5, 1730.5], [62.5, 1760.5], [0.5, 1760.5]]}, {"id": "tws51a", "submitted_by": "CelerySilent7734", "name": "Vshojo girls", "description": "Vtubers from vshojo, going from left to right the vtubers are, Projekt Melody, Nyatasha Nyanners, Silvervale, Ironmouse, Froot.", "website": "", "subreddit": "/r/VirtualYoutubers", "center": [1452.5, 1185.5], "path": [[1415.5, 1199.5], [1415.5, 1172.5], [1433.5, 1172.5], [1434.5, 1172.5], [1434.5, 1171.5], [1435.5, 1170.5], [1436.5, 1170.5], [1436.5, 1171.5], [1437.5, 1171.5], [1437.5, 1172.5], [1440.5, 1172.5], [1441.5, 1172.5], [1441.5, 1171.5], [1442.5, 1171.5], [1442.5, 1172.5], [1444.5, 1172.5], [1444.5, 1171.5], [1444.5, 1172.5], [1445.5, 1172.5], [1449.5, 1172.5], [1449.5, 1168.5], [1449.5, 1171.5], [1450.5, 1171.5], [1450.5, 1170.5], [1450.5, 1171.5], [1451.5, 1171.5], [1451.5, 1172.5], [1457.5, 1172.5], [1458.5, 1172.5], [1458.5, 1170.5], [1459.5, 1170.5], [1461.5, 1170.5], [1460.5, 1171.5], [1461.5, 1169.5], [1460.5, 1168.5], [1459.5, 1167.5], [1460.5, 1166.5], [1461.5, 1165.5], [1467.5, 1171.5], [1468.5, 1171.5], [1468.5, 1170.5], [1469.5, 1170.5], [1469.5, 1169.5], [1468.5, 1168.5], [1470.5, 1170.5], [1471.5, 1170.5], [1472.5, 1170.5], [1472.5, 1169.5], [1473.5, 1169.5], [1473.5, 1170.5], [1474.5, 1170.5], [1474.5, 1171.5], [1474.5, 1172.5], [1475.5, 1173.5], [1477.5, 1172.5], [1476.5, 1170.5], [1476.5, 1169.5], [1485.5, 1169.5], [1486.5, 1170.5], [1487.5, 1171.5], [1488.5, 1172.5], [1488.5, 1192.5], [1484.5, 1192.5], [1483.5, 1192.5], [1483.5, 1193.5], [1483.5, 1194.5], [1484.5, 1196.5], [1484.5, 1199.5], [1450.5, 1199.5]]}, {"id": "tws4w3", "submitted_by": "Bendystrawz12", "name": "Project Moon Logo", "description": "A miniature version of the logo of South Korean game studio Project Moon, creators of Library of Ruina and Lobotomy Corporation.", "website": "https://projectmoon.studio/eng/main/", "subreddit": "/r/libraryofruina", "center": [1350.5, 110.5], "path": [[1346.5, 106.5], [1354.5, 106.5], [1354.5, 112.5], [1352.5, 115.5], [1347.5, 115.5], [1345.5, 114.5]]}, {"id": "tws4tx", "submitted_by": "heyhowzitgoinn", "name": "Ben 10", "description": "Ben Tennyson's Omnitrix (green) from the tv series Ben 10, next to it is Aledo's corrupted Omnitrix (red). nIT'S HERO TIME!", "website": "", "subreddit": "/r/Ben10", "center": [1180.5, 411.5], "path": [[1192.5, 417.5], [1173.5, 417.5], [1168.5, 416.5], [1167.5, 405.5], [1192.5, 405.5]]}, @@ -1784,8 +1676,8 @@ {"id": "tws2u9", "submitted_by": "_SmallLuck_", "name": "Your Turn to Die", "description": "YTTD is a negotiation/adventure game by Nankidai about a deadly game, where the participants choose who dies.", "website": "", "subreddit": "/r/YTTD", "center": [434.5, 1866.5], "path": [[421.5, 1850.5], [448.5, 1850.5], [448.5, 1881.5], [419.5, 1881.5], [419.5, 1856.5], [421.5, 1855.5]]}, {"id": "tws2rp", "submitted_by": "Intelligent_Donut_95", "name": "Philadelphia Eagles", "description": "A NFL team located in Philadelphia, Pennsylvania.", "website": "", "subreddit": "/r/eagles", "center": [1941.5, 86.5], "path": [[1928.5, 73.5], [1954.5, 73.5], [1954.5, 99.5], [1928.5, 99.5]]}, {"id": "tws2k5", "submitted_by": "Likikoari-9788", "name": "Undertale Handplates AU", "description": "The Skeleton Family of Sans Papyrus and Gaster from the popular undertale AU 'Handplates' Created by Zarla", "website": "http://handplates.the-comic.org/", "subreddit": "/r/handplates", "center": [1855.5, 1727.5], "path": [[1843.5, 1735.5], [1863.5, 1735.5], [1862.5, 1716.5], [1854.5, 1717.5], [1854.5, 1719.5], [1852.5, 1719.5], [1851.5, 1723.5], [1851.5, 1724.5], [1850.5, 1726.5], [1846.5, 1725.5], [1846.5, 1726.5], [1846.5, 1727.5], [1845.5, 1727.5], [1845.5, 1730.5], [1845.5, 1732.5], [1844.5, 1733.5], [1844.5, 1734.5], [1843.5, 1735.5]]}, -{"id": "tws2ao", "submitted_by": "zahrla", "name": "Lofi Girl", "description": "The Lofi girl was created by Juan Pablo Machado a colombian who was a student in a french art school (\u00e9mile-cohl) in the city Lyon (in france)", "website": "https://www.youtube.com/watch?v=5qap5aO4i9A", "subreddit": "", "center": [208.5, 1672.5], "path": [[221.5, 1644.5], [219.5, 1643.5], [214.5, 1641.5], [213.5, 1641.5], [211.5, 1641.5], [208.5, 1644.5], [205.5, 1645.5], [200.5, 1647.5], [197.5, 1648.5], [196.5, 1649.5], [195.5, 1650.5], [195.5, 1652.5], [194.5, 1653.5], [193.5, 1656.5], [193.5, 1661.5], [194.5, 1662.5], [196.5, 1662.5], [198.5, 1663.5], [197.5, 1666.5], [198.5, 1666.5], [198.5, 1668.5], [196.5, 1668.5], [196.5, 1670.5], [196.5, 1671.5], [197.5, 1671.5], [197.5, 1672.5], [199.5, 1673.5], [200.5, 1674.5], [200.5, 1675.5], [196.5, 1675.5], [196.5, 1676.5], [194.5, 1676.5], [194.5, 1672.5], [193.5, 1672.5], [193.5, 1671.5], [192.5, 1671.5], [192.5, 1670.5], [191.5, 1670.5], [191.5, 1669.5], [189.5, 1669.5], [189.5, 1668.5], [182.5, 1668.5], [182.5, 1667.5], [181.5, 1667.5], [181.5, 1666.5], [179.5, 1666.5], [173.5, 1666.5], [173.5, 1667.5], [172.5, 1667.5], [172.5, 1668.5], [171.5, 1668.5], [171.5, 1671.5], [170.5, 1671.5], [170.5, 1682.5], [170.5, 1683.5], [170.5, 1684.5], [177.5, 1687.5], [181.5, 1688.5], [182.5, 1690.5], [182.5, 1692.5], [183.5, 1693.5], [183.5, 1694.5], [184.5, 1695.5], [192.5, 1695.5], [192.5, 1696.5], [234.5, 1696.5], [234.5, 1640.5], [228.5, 1640.5], [226.5, 1641.5], [222.5, 1642.5], [220.5, 1644.5], [220.5, 1644.5], [220.5, 1644.5], [220.5, 1643.5], [220.5, 1644.5], [217.5, 1643.5], [214.5, 1641.5], [220.5, 1644.5], [221.5, 1647.5], [221.5, 1644.5]]}, -{"id": "tws2an", "submitted_by": "Annoyng_dog", "name": "r/shark_park shark", "description": "a small shark made by members of r/shark_park", "website": "discord.gg/pissing", "subreddit": "/r/shark_park", "center": [249.5, 669.5], "path": [[242.5, 669.5], [242.5, 669.5], [242.5, 669.5], [242.5, 670.5], [243.5, 671.5], [244.5, 671.5], [245.5, 671.5], [246.5, 671.5], [247.5, 671.5], [248.5, 672.5], [249.5, 673.5], [249.5, 672.5], [249.5, 671.5], [251.5, 671.5], [251.5, 671.5], [252.5, 670.5], [253.5, 670.5], [254.5, 669.5], [255.5, 670.5], [256.5, 671.5], [257.5, 671.5], [256.5, 670.5], [256.5, 669.5], [255.5, 669.5], [255.5, 668.5], [255.5, 667.5], [256.5, 667.5], [256.5, 666.5], [257.5, 665.5], [256.5, 665.5], [255.5, 666.5], [254.5, 667.5], [254.5, 668.5], [253.5, 668.5], [252.5, 668.5], [251.5, 668.5], [250.5, 668.5], [250.5, 667.5], [250.5, 666.5], [250.5, 665.5], [249.5, 666.5], [248.5, 667.5], [247.5, 668.5], [246.5, 668.5], [246.5, 668.5], [244.5, 668.5], [243.5, 668.5], [242.5, 669.5]]}, +{"id": "tws2ao", "submitted_by": "zahrla", "name": "Lofi Girl", "description": "The Lofi Girl was created by Juan Pablo Machado, a Colombian who was a student in an art school (\u00c9mile Cohl) in the city of Lyon, France.", "website": "https://www.youtube.com/watch?v=5qap5aO4i9A", "subreddit": "/r/placefrance", "center": [208.5, 1672.5], "path": [[221.5, 1644.5], [219.5, 1643.5], [214.5, 1641.5], [213.5, 1641.5], [211.5, 1641.5], [208.5, 1644.5], [205.5, 1645.5], [200.5, 1647.5], [197.5, 1648.5], [196.5, 1649.5], [195.5, 1650.5], [195.5, 1652.5], [194.5, 1653.5], [193.5, 1656.5], [193.5, 1661.5], [194.5, 1662.5], [196.5, 1662.5], [198.5, 1663.5], [197.5, 1666.5], [198.5, 1666.5], [198.5, 1668.5], [196.5, 1668.5], [196.5, 1670.5], [196.5, 1671.5], [197.5, 1671.5], [197.5, 1672.5], [199.5, 1673.5], [200.5, 1674.5], [200.5, 1675.5], [196.5, 1675.5], [196.5, 1676.5], [194.5, 1676.5], [194.5, 1672.5], [193.5, 1672.5], [193.5, 1671.5], [192.5, 1671.5], [192.5, 1670.5], [191.5, 1670.5], [191.5, 1669.5], [189.5, 1669.5], [189.5, 1668.5], [182.5, 1668.5], [182.5, 1667.5], [181.5, 1667.5], [181.5, 1666.5], [179.5, 1666.5], [173.5, 1666.5], [173.5, 1667.5], [172.5, 1667.5], [172.5, 1668.5], [171.5, 1668.5], [171.5, 1671.5], [170.5, 1671.5], [170.5, 1682.5], [170.5, 1683.5], [170.5, 1684.5], [177.5, 1687.5], [181.5, 1688.5], [182.5, 1690.5], [182.5, 1692.5], [183.5, 1693.5], [183.5, 1694.5], [184.5, 1695.5], [192.5, 1695.5], [192.5, 1696.5], [234.5, 1696.5], [234.5, 1640.5], [228.5, 1640.5], [226.5, 1641.5], [222.5, 1642.5], [220.5, 1644.5], [220.5, 1644.5], [220.5, 1644.5], [220.5, 1643.5], [220.5, 1644.5], [217.5, 1643.5], [214.5, 1641.5], [220.5, 1644.5], [221.5, 1647.5], [221.5, 1644.5]]}, +{"id": "tws2an", "submitted_by": "Annoyng_dog", "name": "r/shark_park shark", "description": "a small shark made by members of r/shark_park", "website": "https://discord.gg/pissing", "subreddit": "/r/shark_park", "center": [249.5, 669.5], "path": [[242.5, 669.5], [242.5, 669.5], [242.5, 669.5], [242.5, 670.5], [243.5, 671.5], [244.5, 671.5], [245.5, 671.5], [246.5, 671.5], [247.5, 671.5], [248.5, 672.5], [249.5, 673.5], [249.5, 672.5], [249.5, 671.5], [251.5, 671.5], [251.5, 671.5], [252.5, 670.5], [253.5, 670.5], [254.5, 669.5], [255.5, 670.5], [256.5, 671.5], [257.5, 671.5], [256.5, 670.5], [256.5, 669.5], [255.5, 669.5], [255.5, 668.5], [255.5, 667.5], [256.5, 667.5], [256.5, 666.5], [257.5, 665.5], [256.5, 665.5], [255.5, 666.5], [254.5, 667.5], [254.5, 668.5], [253.5, 668.5], [252.5, 668.5], [251.5, 668.5], [250.5, 668.5], [250.5, 667.5], [250.5, 666.5], [250.5, 665.5], [249.5, 666.5], [248.5, 667.5], [247.5, 668.5], [246.5, 668.5], [246.5, 668.5], [244.5, 668.5], [243.5, 668.5], [242.5, 669.5]]}, {"id": "tws27c", "submitted_by": "CarbonIsHere", "name": "TheFantasio974 and Bob Lennon", "description": "TheFantasio974 and Bob Lennon are two of the most well know Minecraft YouTubers from France", "website": "", "subreddit": "", "center": [11.5, 1105.5], "path": [[6.5, 1096.5], [6.5, 1113.5], [15.5, 1113.5], [15.5, 1096.5], [6.5, 1096.5]]}, {"id": "tws26c", "submitted_by": "Excellent_Finger", "name": "Lamont", "description": "Streamer, cuckold and a balding loser erobb221.nIf she 15...", "website": "", "subreddit": "/r/emoney", "center": [639.5, 926.5], "path": [[622.5, 909.5], [622.5, 943.5], [655.5, 943.5], [655.5, 909.5], [622.5, 909.5]]}, {"id": "tws24f", "submitted_by": "gwenby", "name": "moonmoon", "description": "A depiction of moon2Smug, a popular emote on Twitch from the streamer moonmoon.", "website": "https://www.twitch.tv/moonmoon", "subreddit": "/r/MOONMOON_OW", "center": [1666.5, 927.5], "path": [[1646.5, 898.5], [1686.5, 898.5], [1687.5, 956.5], [1646.5, 956.5]]}, @@ -1803,7 +1695,7 @@ {"id": "twrzk2", "submitted_by": "Kosh_Ascadian", "name": "Baltic flags", "description": "The flags of the Baltic countries and their coats of Arms. Estonian flag also has the national bird added to it and a national pattern on top.", "website": "", "subreddit": "/r/balticstates", "center": [406.5, 693.5], "path": [[363.5, 645.5], [448.5, 645.5], [448.5, 740.5], [363.5, 740.5], [363.5, 653.5], [363.5, 653.5], [363.5, 649.5]]}, {"id": "twrzgy", "submitted_by": "IcedancerEmily", "name": "Georgia Bulldogs", "description": "The Georgia Bulldogs are the athletic teams representing the University of Georgia, including the 2021 college football national champion Georgia Bulldogs football team.", "website": "", "subreddit": "/r/georgiabulldogs", "center": [44.5, 458.5], "path": [[37.5, 452.5], [51.5, 452.5], [51.5, 463.5], [37.5, 463.5]]}, {"id": "twrzax", "submitted_by": "MarcelinePye", "name": "Celeste", "description": "Figures from the game Celeste with a transgender flag background and a string of various heart flags.n", "website": "", "subreddit": "/r/celestegame", "center": [1032.5, 871.5], "path": [[1129.5, 869.5], [1070.5, 869.5], [1070.5, 868.5], [1068.5, 868.5], [1065.5, 865.5], [1065.5, 862.5], [1064.5, 857.5], [1063.5, 853.5], [972.5, 854.5], [972.5, 860.5], [966.5, 860.5], [966.5, 885.5], [1084.5, 885.5], [1084.5, 879.5], [1129.5, 879.5]]}, -{"id": "twrz8x", "submitted_by": "eelsemaj99", "name": "Doctor Who Tardis and Purple Heart", "description": "A TARDIS from the TV show Doctor Who. Very quickly we allied with someone building a purple heart which was built to the top right of the TARDIS. On the final day, we allied with the Finnish community and put children's book character Hakkarainen walking into the TARDIS. To the right of the TARDIS is Tom Baker's iconic scarf", "website": "", "subreddit": "/r/DoctorWho", "center": [581.5, 270.5], "path": [[594.5, 284.5], [594.5, 252.5], [587.5, 251.5], [586.5, 255.5], [582.5, 254.5], [582.5, 255.5], [581.5, 258.5], [579.5, 258.5], [579.5, 259.5], [576.5, 259.5], [576.5, 261.5], [567.5, 261.5], [567.5, 265.5], [565.5, 265.5], [563.5, 266.5], [562.5, 269.5], [562.5, 272.5], [564.5, 274.5], [564.5, 275.5], [567.5, 275.5], [568.5, 284.5], [594.5, 284.5]]}, +{"id": "twrz8x", "submitted_by": "eelsemaj99", "name": "Doctor Who TARDIS", "description": "A TARDIS from the TV show Doctor Who. Very quickly we allied with someone building a purple heart which was built to the top right of the TARDIS. On the final day, we allied with the Finnish community and put children's book character Hakkarainen walking into the TARDIS. To the right of the TARDIS is Tom Baker's iconic scarf", "website": "https://en.wikipedia.org/wiki/TARDIS", "subreddit": "/r/DoctorWho", "center": [581.5, 270.5], "path": [[594.5, 284.5], [594.5, 252.5], [587.5, 251.5], [586.5, 255.5], [582.5, 254.5], [582.5, 255.5], [581.5, 258.5], [579.5, 258.5], [579.5, 259.5], [576.5, 259.5], [576.5, 261.5], [567.5, 261.5], [567.5, 265.5], [565.5, 265.5], [563.5, 266.5], [562.5, 269.5], [562.5, 272.5], [564.5, 274.5], [564.5, 275.5], [567.5, 275.5], [568.5, 284.5], [594.5, 284.5]]}, {"id": "twrz5s", "submitted_by": "JackThatGamerYT", "name": "Aternos Logo", "description": "Aternos Is A Free Minecraft Server Hosting Website.", "website": "https://aternos.org/", "subreddit": "/r/Aternos", "center": [1970.5, 1519.5], "path": [[1962.5, 1511.5], [1961.5, 1511.5], [1978.5, 1511.5], [1978.5, 1527.5], [1961.5, 1528.5]]}, {"id": "twrz3c", "submitted_by": "IenjoyPineapplepizza", "name": "The New Order: Last Days of Europe", "description": "The New Order: Last Days of Europe is mod for the real time strategy game Hearts of Iron IV (HOI4) presenting an alternate history Cold War between Germany, Japan and the USA, starting in 1962.", "website": "", "subreddit": "/r/TNOmod", "center": [463.5, 1948.5], "path": [[450.5, 1925.5], [475.5, 1925.5], [475.5, 1970.5], [450.5, 1970.5]]}, {"id": "twryox", "submitted_by": "dum_cat", "name": "Ralsei", "description": "This is the character Ralsei from deltarune.", "website": "", "subreddit": "/r/deltarune", "center": [1759.5, 229.5], "path": [[1747.5, 207.5], [1747.5, 249.5], [1754.5, 249.5], [1754.5, 253.5], [1768.5, 253.5], [1768.5, 250.5], [1768.5, 249.5], [1771.5, 249.5], [1771.5, 207.5], [1747.5, 207.5]]}, @@ -1811,11 +1703,10 @@ {"id": "twry93", "submitted_by": "HobbylosUwU", "name": "Kinder Surprise Egg (\u00dcei)", "description": "Kinder Surprise is a milk chocolate consisting of a chocolate egg surrounding a yellow plastic capsule with a small toy inside. Manufactured by the Italian company Ferrero since 1974, it was co-created by Michele Ferrero and William Salice, and is one of several candies sold under the Kinder brand. Kinder Surprise was originally created with children in mind, replicating an Italian Easter family tradition in which adults give children large chocolate eggs with toys inside. However, Kinder Surprise toys have become collectible for adults as well. Since 1974, 30 billion Kinder Surprise eggs have been sold worldwide.", "website": "", "subreddit": "/r/placede", "center": [1526.5, 850.5], "path": [[1527.5, 833.5], [1524.5, 833.5], [1520.5, 835.5], [1517.5, 840.5], [1513.5, 849.5], [1512.5, 856.5], [1514.5, 861.5], [1522.5, 867.5], [1530.5, 866.5], [1535.5, 860.5], [1538.5, 853.5], [1538.5, 843.5], [1535.5, 838.5], [1532.5, 834.5], [1528.5, 832.5], [1523.5, 832.5]]}, {"id": "twry25", "submitted_by": "bart7782", "name": "KLM plane", "description": "Typical Dutch airplane", "website": "https://en.wikipedia.org/wiki/KLM", "subreddit": "/r/placenl", "center": [1630.5, 16.5], "path": [[1632.5, 13.5], [1632.5, 12.5], [1634.5, 12.5], [1634.5, 11.5], [1636.5, 11.5], [1636.5, 10.5], [1639.5, 10.5], [1639.5, 9.5], [1642.5, 9.5], [1642.5, 8.5], [1645.5, 8.5], [1645.5, 7.5], [1648.5, 7.5], [1648.5, 6.5], [1654.5, 6.5], [1654.5, 7.5], [1656.5, 7.5], [1656.5, 8.5], [1657.5, 8.5], [1657.5, 12.5], [1656.5, 12.5], [1656.5, 13.5], [1655.5, 13.5], [1655.5, 14.5], [1654.5, 14.5], [1654.5, 15.5], [1653.5, 15.5], [1657.5, 15.5], [1657.5, 16.5], [1658.5, 16.5], [1658.5, 19.5], [1649.5, 19.5], [1649.5, 24.5], [1633.5, 24.5], [1633.5, 25.5], [1626.5, 25.5], [1626.5, 26.5], [1619.5, 26.5], [1619.5, 25.5], [1613.5, 25.5], [1613.5, 24.5], [1607.5, 21.5], [1602.5, 16.5], [1609.5, 6.5]]}, {"id": "twrxsz", "submitted_by": "beanrollup", "name": "Hive Minigames", "description": "The Hive is a Minecraft: Bedrock Edition featured server, in existence since 2018. Its Java edition server existed from 2013-2021. /r/place image made with help from volunteer and non-volunteer staff, as well as lovely members of the community!", "website": "https://playhive.com/", "subreddit": "/r/hivemc", "center": [482.5, 1553.5], "path": [[470.5, 1552.5], [479.5, 1552.5], [479.5, 1542.5], [485.5, 1542.5], [486.5, 1541.5], [487.5, 1540.5], [490.5, 1540.5], [490.5, 1561.5], [470.5, 1561.5]]}, -{"id": "twrxre", "submitted_by": "eXernox", "name": "Tadano Hitohito & Osana Najimi", "description": "Main and Supporting character from manga/anime series Komi-san wa, Comyushou desu.", "website": "", "subreddit": "/r/Komi_san", "center": [816.5, 1487.5], "path": [[782.5, 1499.5], [784.5, 1496.5], [787.5, 1495.5], [796.5, 1494.5], [800.5, 1493.5], [803.5, 1495.5], [806.5, 1495.5], [808.5, 1492.5], [819.5, 1493.5], [821.5, 1496.5], [823.5, 1496.5], [825.5, 1494.5], [838.5, 1493.5], [839.5, 1496.5], [841.5, 1498.5], [844.5, 1498.5], [845.5, 1496.5], [845.5, 1493.5], [842.5, 1490.5], [844.5, 1476.5], [833.5, 1475.5], [821.5, 1478.5], [820.5, 1480.5], [809.5, 1480.5], [809.5, 1483.5], [782.5, 1483.5], [782.5, 1498.5]]}, +{"id": "twrxre", "submitted_by": "ThatOneCodeDev", "name": "Tadano Hitohito & Osana Najimi", "description": "Main and Supporting character from manga/anime series Komi-san wa, Comyushou desu.", "website": "https://komisan.fandom.com/wiki/Komi-san_wa_Komyushou_Desu_Wiki", "subreddit": "/r/Komi_San_Place", "center": [816.5, 1487.5], "path": [[782.5, 1499.5], [784.5, 1496.5], [787.5, 1495.5], [796.5, 1494.5], [800.5, 1493.5], [803.5, 1495.5], [806.5, 1495.5], [808.5, 1492.5], [819.5, 1493.5], [821.5, 1496.5], [823.5, 1496.5], [825.5, 1494.5], [838.5, 1493.5], [839.5, 1496.5], [841.5, 1498.5], [844.5, 1498.5], [845.5, 1496.5], [845.5, 1493.5], [842.5, 1490.5], [844.5, 1476.5], [833.5, 1475.5], [821.5, 1478.5], [820.5, 1480.5], [809.5, 1480.5], [809.5, 1483.5], [782.5, 1483.5], [782.5, 1498.5]]}, {"id": "twrxa8", "submitted_by": "1__Raven__1", "name": "Utsuho Reiuji", "description": "A hell raven who lives beneath the ground of Gensokyo and is one of Satori Komeiji's pets. Her job is to maintain the flames of hell through the manipulation of nuclear fusion.", "website": "https://en.touhouwiki.net/wiki/Utsuho_Reiuji", "subreddit": "/r/touhou", "center": [1638.5, 1534.5], "path": [[1621.5, 1517.5], [1621.5, 1550.5], [1654.5, 1550.5], [1654.5, 1517.5]]}, {"id": "twrxa4", "submitted_by": "MajorNicki", "name": "Half-Life 21st Century Humor", "description": "Our Discord:nhttps://discord.gg/GdkNdS2KXN", "website": "", "subreddit": "", "center": [664.5, 1573.5], "path": [[674.5, 1565.5], [674.5, 1573.5], [673.5, 1573.5], [673.5, 1577.5], [672.5, 1577.5], [672.5, 1579.5], [671.5, 1579.5], [671.5, 1580.5], [670.5, 1580.5], [670.5, 1581.5], [669.5, 1581.5], [669.5, 1582.5], [667.5, 1582.5], [667.5, 1583.5], [660.5, 1583.5], [660.5, 1582.5], [658.5, 1582.5], [658.5, 1581.5], [657.5, 1581.5], [657.5, 1580.5], [656.5, 1580.5], [656.5, 1579.5], [655.5, 1579.5], [655.5, 1577.5], [654.5, 1577.5], [654.5, 1570.5], [655.5, 1570.5], [655.5, 1568.5], [656.5, 1568.5], [656.5, 1567.5], [657.5, 1567.5], [657.5, 1566.5], [658.5, 1566.5], [658.5, 1565.5], [660.5, 1565.5], [660.5, 1564.5], [674.5, 1564.5], [674.5, 1565.5]]}, -{"id": "twrx90", "submitted_by": "Yanastases", "name": "Thomas Pesquet", "description": "Le C\u00e9l\u00e8bre astronaute Fran\u00e7ais Thomas Pesquet fait une soudaine apparition dans le r/place pour d\u00e9fendre le territoire Fran\u00e7ais", "website": "", "subreddit": "", "center": [140.5, 1710.5], "path": [[128.5, 1648.5], [145.5, 1648.5], [154.5, 1652.5], [159.5, 1664.5], [160.5, 1679.5], [156.5, 1686.5], [154.5, 1693.5], [165.5, 1707.5], [166.5, 1728.5], [166.5, 1759.5], [134.5, 1760.5], [128.5, 1756.5], [119.5, 1756.5], [114.5, 1759.5], [111.5, 1760.5], [111.5, 1713.5], [111.5, 1710.5], [114.5, 1713.5], [128.5, 1705.5], [128.5, 1704.5], [128.5, 1695.5], [124.5, 1688.5], [120.5, 1678.5], [119.5, 1656.5], [127.5, 1649.5]]}, -{"id": "twrwzg", "submitted_by": "ItzDannio25", "name": "IlloJuan", "description": "Icon of the Spanish Twitch streamer named IlloJuan (also known as LMDShow and Juan Alberto) born in Fuengirola, Andalusia.nn\u00a1Alo presidentes!", "website": "twitch.tv/illojuan", "subreddit": "/r/LMDShow", "center": [1426.5, 1020.5], "path": [[1402.5, 999.5], [1402.5, 1042.5], [1432.5, 1042.5], [1435.5, 1041.5], [1436.5, 1042.5], [1450.5, 1042.5], [1450.5, 999.5], [1402.5, 999.5]]}, +{"id": "twrwzg", "submitted_by": "ItzDannio25", "name": "IlloJuan", "description": "Icon of the Spanish Twitch streamer named IlloJuan (also known as LMDShow and Juan Alberto) born in Fuengirola, Andalusia.nn\u00a1Alo presidentes!", "website": "https://twitch.tv/illojuan", "subreddit": "/r/LMDShow", "center": [1426.5, 1020.5], "path": [[1402.5, 999.5], [1402.5, 1042.5], [1432.5, 1042.5], [1435.5, 1041.5], [1436.5, 1042.5], [1450.5, 1042.5], [1450.5, 999.5], [1402.5, 999.5]]}, {"id": "twrwz5", "submitted_by": "tiaxanderson", "name": "Canadian flag and war memorial", "description": "As the Canadian's flag was constantly vandalized a small one was drawn next to the Japanese flag. r/PlaceNL moved it and added the Cross of Sacrifice from the Groesbeek Canadian War Cemetery while maintaining it for the Canadians", "website": "", "subreddit": "", "center": [523.5, 1960.5], "path": [[500.5, 1949.5], [538.5, 1948.5], [541.5, 1951.5], [547.5, 1955.5], [547.5, 1970.5], [500.5, 1970.5]]}, {"id": "twrwwo", "submitted_by": "CaffeinatedFalls", "name": "Yale University", "description": "Yale University's Y logo. Thanks to sleep-deprived Yalies and allies from neighboring colleges, the logo was always restored despite numerous annexation attempts.", "website": "https://yale.edu", "subreddit": "/r/yale", "center": [345.5, 1629.5], "path": [[339.5, 1623.5], [339.5, 1634.5], [351.5, 1634.5], [351.5, 1623.5]]}, {"id": "twrwk5", "submitted_by": "Rocked03", "name": "Avengers", "description": "The Avengers logo, from Marvel", "website": "", "subreddit": "/r/Marvel_place", "center": [968.5, 1707.5], "path": [[955.5, 1721.5], [975.5, 1721.5], [975.5, 1720.5], [975.5, 1719.5], [977.5, 1719.5], [977.5, 1718.5], [979.5, 1718.5], [979.5, 1717.5], [980.5, 1717.5], [980.5, 1716.5], [981.5, 1716.5], [981.5, 1714.5], [982.5, 1714.5], [982.5, 1701.5], [981.5, 1701.5], [981.5, 1699.5], [980.5, 1699.5], [980.5, 1698.5], [979.5, 1698.5], [979.5, 1697.5], [978.5, 1697.5], [978.5, 1695.5], [977.5, 1695.5], [977.5, 1694.5], [975.5, 1694.5], [975.5, 1688.5], [972.5, 1688.5], [972.5, 1689.5], [971.5, 1689.5], [971.5, 1690.5], [970.5, 1690.5], [970.5, 1691.5], [970.5, 1692.5], [966.5, 1692.5], [966.5, 1693.5], [963.5, 1693.5], [963.5, 1694.5], [961.5, 1694.5], [961.5, 1695.5], [959.5, 1695.5], [959.5, 1696.5], [958.5, 1696.5], [958.5, 1697.5], [957.5, 1697.5], [957.5, 1698.5], [956.5, 1698.5], [956.5, 1700.5], [955.5, 1700.5], [955.5, 1721.5]]}, @@ -1833,18 +1724,16 @@ {"id": "twruoq", "submitted_by": "IenjoyPineapplepizza", "name": "Robocraft", "description": "Robocraft is an online vehicular combat game developed and published by Freejam Games. The game allows players to build various functional vehicles with basic block-based parts, such as cubes and wheels, along with weapons for combat against other players.", "website": "", "subreddit": "/r/robocraft", "center": [1921.5, 254.5], "path": [[1905.5, 268.5], [1905.5, 240.5], [1938.5, 241.5], [1938.5, 268.5]]}, {"id": "twruha", "submitted_by": "Liixsh", "name": "The Beheaded from Dead Cells", "description": "The Beheaded, also known as The Prisoner or The Fallen One, is the protagonist of the indiegame roguelite 'Dead Cells'. A couple of other monsters and items from the game can be seen as small pixel art.", "website": "https://dead-cells.com/", "subreddit": "/r/deadcells", "center": [272.5, 1479.5], "path": [[250.5, 1444.5], [295.5, 1444.5], [295.5, 1485.5], [293.5, 1485.5], [293.5, 1515.5], [250.5, 1515.5], [250.5, 1444.5]]}, {"id": "twruey", "submitted_by": "wildhoover", "name": "Erasmusbrug, Rotterdam", "description": "Bridge over the New Maas in the centre of Rotterdam.", "website": "", "subreddit": "", "center": [1574.5, 16.5], "path": [[1566.5, 38.5], [1600.5, 0.5], [1567.5, 1.5], [1562.5, 9.5], [1557.5, 37.5], [1560.5, 38.5]]}, -{"id": "twru9g", "submitted_by": "GLUE_COLLUSION", "name": "C418", "description": "Logo for electronic musician C418, known for the Minecraft soundtrack.", "website": "c418.org", "subreddit": "/r/c418", "center": [78.5, 996.5], "path": [[64.5, 992.5], [64.5, 1000.5], [91.5, 1000.5], [91.5, 992.5]]}, +{"id": "twru9g", "submitted_by": "GLUE_COLLUSION", "name": "C418", "description": "Logo for electronic musician C418, known for the Minecraft soundtrack.", "website": "https://c418.org", "subreddit": "/r/c418", "center": [78.5, 996.5], "path": [[64.5, 992.5], [64.5, 1000.5], [91.5, 1000.5], [91.5, 992.5]]}, {"id": "twru7o", "submitted_by": "untitleXYZ", "name": "The Fairy Tail Emblem", "description": "The emblem of the Fairy Tail guild in the anime & manga series Fairy Tail.", "website": "https://fairytail.fandom.com/wiki/Main_Page", "subreddit": "/r/fairytail", "center": [1571.5, 1093.5], "path": [[1570.5, 1081.5], [1562.5, 1088.5], [1564.5, 1095.5], [1567.5, 1097.5], [1562.5, 1106.5], [1579.5, 1099.5], [1580.5, 1082.5], [1576.5, 1085.5], [1570.5, 1082.5]]}, {"id": "twru2a", "submitted_by": "ReloadedMichi", "name": "Cologne cathedral", "description": "The famous cathedral in cologne near the rhine", "website": "", "subreddit": "/r/placeDE", "center": [580.5, 1153.5], "path": [[564.5, 1173.5], [564.5, 1156.5], [565.5, 1156.5], [565.5, 1137.5], [571.5, 1124.5], [577.5, 1138.5], [577.5, 1157.5], [578.5, 1155.5], [579.5, 1153.5], [580.5, 1152.5], [582.5, 1154.5], [583.5, 1157.5], [583.5, 1138.5], [589.5, 1124.5], [595.5, 1139.5], [595.5, 1156.5], [596.5, 1156.5], [596.5, 1173.5]]}, {"id": "twru0g", "submitted_by": "Melter30", "name": "Bremer Stadtmusikanten", "description": "Those are the Protagonists of a famous german Fairytale which features (from bottom) a donkey, a Dog, a Cat and a Cock", "website": "", "subreddit": "", "center": [1542.5, 1155.5], "path": [[1533.5, 1171.5], [1533.5, 1170.5], [1534.5, 1169.5], [1535.5, 1168.5], [1535.5, 1162.5], [1534.5, 1161.5], [1531.5, 1161.5], [1530.5, 1162.5], [1528.5, 1162.5], [1527.5, 1161.5], [1527.5, 1159.5], [1528.5, 1158.5], [1528.5, 1157.5], [1528.5, 1156.5], [1529.5, 1155.5], [1529.5, 1154.5], [1529.5, 1153.5], [1530.5, 1152.5], [1531.5, 1153.5], [1532.5, 1152.5], [1532.5, 1149.5], [1533.5, 1149.5], [1536.5, 1146.5], [1536.5, 1145.5], [1537.5, 1144.5], [1539.5, 1142.5], [1538.5, 1141.5], [1538.5, 1139.5], [1537.5, 1138.5], [1538.5, 1137.5], [1539.5, 1136.5], [1541.5, 1136.5], [1541.5, 1138.5], [1542.5, 1139.5], [1543.5, 1138.5], [1544.5, 1137.5], [1546.5, 1137.5], [1546.5, 1138.5], [1547.5, 1139.5], [1547.5, 1142.5], [1546.5, 1143.5], [1546.5, 1144.5], [1547.5, 1145.5], [1548.5, 1146.5], [1548.5, 1149.5], [1549.5, 1149.5], [1550.5, 1148.5], [1551.5, 1149.5], [1551.5, 1150.5], [1549.5, 1152.5], [1549.5, 1156.5], [1550.5, 1157.5], [1551.5, 1157.5], [1556.5, 1162.5], [1556.5, 1165.5], [1556.5, 1166.5], [1555.5, 1166.5], [1555.5, 1165.5], [1554.5, 1165.5], [1553.5, 1165.5], [1553.5, 1171.5], [1548.5, 1171.5], [1548.5, 1170.5], [1549.5, 1169.5], [1549.5, 1167.5], [1548.5, 1167.5], [1548.5, 1166.5], [1547.5, 1165.5], [1539.5, 1165.5], [1539.5, 1166.5], [1538.5, 1167.5], [1538.5, 1168.5], [1537.5, 1169.5], [1537.5, 1170.5], [1536.5, 1171.5]]}, -{"id": "twrtw3", "submitted_by": "willemon22", "name": "Geoguessr Pin", "description": "The Geoguessr pin was designed by youtubers CapDog47 and Lemon Marrow on Aprl 3rd 2022. With help from WiserTixx, xlastkiwi and The OG Micheal, it managed to be secured throughout the last 2 days of r/place. Although it appears damaged on the atlas, the Geoguessr pin did manage to be rebuilt afterwards but unfortunately that is not visible here. Bellow is a link to how the logo should have looked:", "website": "https://cdn.discordapp.com/attachments/960069835843321859/960242362624409640/unknown.png", "subreddit": "/r/geoguessr", "center": [0.5, 0.5], "path": []}, {"id": "twrtqg", "submitted_by": "Tstz", "name": "r/MinecraftMemes icon", "description": "Subreddit icon for MinecraftMemes", "website": "", "subreddit": "/r/MinecraftMemes", "center": [1138.5, 1345.5], "path": [[1132.5, 1339.5], [1132.5, 1351.5], [1143.5, 1351.5], [1143.5, 1339.5]]}, {"id": "twrto4", "submitted_by": "BlupMcBubbles", "name": "Cyclists", "description": "The Netherlands might be the bicycles country, Belgium and especially Flemishes are proud of their cyclism palmares as Belgium is by far the country that won the cyclism world championship the most.", "website": "", "subreddit": "", "center": [1316.5, 1515.5], "path": [[1300.5, 1465.5], [1333.5, 1466.5], [1332.5, 1566.5], [1301.5, 1567.5]]}, {"id": "twrtn7", "submitted_by": "eXernox", "name": "LEMMiNO", "description": "Logo representing a Sweadish YouTuber/animator/musician David W\u00e5ngstedt", "website": "https://www.lemmi.no/", "subreddit": "/r/LEMMiNO", "center": [1597.5, 255.5], "path": [[1590.5, 249.5], [1603.5, 249.5], [1603.5, 261.5], [1590.5, 261.5], [1590.5, 249.5]]}, -{"id": "twrtmx", "submitted_by": "oserottoNeko", "name": "Pulsus Logo", "description": "The logo of Pulsus, an online rhythm game in which you hit incoming beats on a 3x3 tile board.", "website": "https://www.pulsus.cc", "subreddit": "/r/Pulsus", "center": [0.5, 0.5], "path": []}, -{"id": "twrtmq", "submitted_by": "CelerySilent7734", "name": "Olaaaa\uD83D\uDC4B / 猫又おかゆ (Nekomata Okayu)", "description": "猫又おかゆ (Nekomata Okayu) is a Japanese VTuber from Hololive GAMERS. Her representative emoji is an Onigiri (rice ball) since she used to live with an old lady in a rice ball store, and her fans are called the Onigirya (the Rice Balls).\n\nOlaaaa\uD83D\uDC4B is a meme created by the spanish community, which later made rounds in /r/okbuddyhololive", "website": "https://www.youtube.com/channel/UCvaTdHTWBGv3MKj3KVqJVCw", "subreddit": "/r/okbuddyhololive", "center": [1352.5, 1186.5], "path": [[1332.5, 1200.5], [1332.5, 1173.5], [1333.5, 1173.5], [1333.5, 1172.5], [1340.5, 1172.5], [1340.5, 1170.5], [1344.5, 1170.5], [1344.5, 1171.5], [1345.5, 1171.5], [1345.5, 1172.5], [1350.5, 1172.5], [1351.5, 1172.5], [1351.5, 1171.5], [1352.5, 1171.5], [1352.5, 1170.5], [1352.5, 1171.5], [1353.5, 1171.5], [1353.5, 1172.5], [1358.5, 1172.5], [1358.5, 1171.5], [1365.5, 1171.5], [1365.5, 1173.5], [1365.5, 1172.5], [1366.5, 1172.5], [1372.5, 1172.5], [1372.5, 1200.5], [1352.5, 1200.5], [1333.5, 1200.5]]}, +{"id": "twrtmq", "submitted_by": "CelerySilent7734", "name": "Olaaaa\ud83d\udc4b / \u732b\u53c8\u304a\u304b\u3086 (Nekomata Okayu)", "description": "\u732b\u53c8\u304a\u304b\u3086 (Nekomata Okayu) is a Japanese VTuber from Hololive GAMERS. Her representative emoji is an Onigiri (rice ball) since she used to live with an old lady in a rice ball store, and her fans are called the Onigirya (the Rice Balls).\n\nOlaaaa\ud83d\udc4b is a meme created by the spanish community, which later made rounds in /r/okbuddyhololive", "website": "https://www.youtube.com/channel/UCvaTdHTWBGv3MKj3KVqJVCw", "subreddit": "/r/okbuddyhololive", "center": [1352.5, 1186.5], "path": [[1332.5, 1200.5], [1332.5, 1173.5], [1333.5, 1173.5], [1333.5, 1172.5], [1340.5, 1172.5], [1340.5, 1170.5], [1344.5, 1170.5], [1344.5, 1171.5], [1345.5, 1171.5], [1345.5, 1172.5], [1350.5, 1172.5], [1351.5, 1172.5], [1351.5, 1171.5], [1352.5, 1171.5], [1352.5, 1170.5], [1352.5, 1171.5], [1353.5, 1171.5], [1353.5, 1172.5], [1358.5, 1172.5], [1358.5, 1171.5], [1365.5, 1171.5], [1365.5, 1173.5], [1365.5, 1172.5], [1366.5, 1172.5], [1372.5, 1172.5], [1372.5, 1200.5], [1352.5, 1200.5], [1333.5, 1200.5]]}, {"id": "twu3qx", "submitted_by": "liassimonmeiske", "name": "Whitepod Alliance", "description": "Alliance of seven small artworks that fought against the void together.", "website": "", "subreddit": "", "center": [1091.5, 1230.5], "path": [[1084.5, 1178.5], [1097.5, 1178.5], [1099.5, 1279.5], [1084.5, 1278.5], [1083.5, 1278.5], [1083.5, 1279.5], [1083.5, 1279.5]]}, -{"id": "twu3pr", "submitted_by": "GoJoeyGo123", "name": "iJevin", "description": "iJevin", "website": "https://www.youtube.com/channel/UCrEtZMErQXaSYy_JDGoU5Qw", "subreddit": "", "center": [865.5, 611.5], "path": [[860.5, 607.5], [869.5, 607.5], [869.5, 615.5], [860.5, 615.5]]}, +{"id": "twu3pr", "submitted_by": "GoJoeyGo123", "name": "iJevin", "description": "", "website": "https://www.youtube.com/channel/UCrEtZMErQXaSYy_JDGoU5Qw", "subreddit": "/r/hermitcraft", "center": [865.5, 611.5], "path": [[860.5, 607.5], [869.5, 607.5], [869.5, 615.5], [860.5, 615.5]]}, {"id": "twu3n6", "submitted_by": "Wheel_b0y", "name": "Aston Villa Football Club", "description": "Aston Villa Football Club is an English professional football club based in Aston, Birmingham. Founded in 1874, Aston Villa are one of the five English clubs to have won the European Cup, in 1981\u201382.", "website": "", "subreddit": "/r/avfc", "center": [631.5, 1701.5], "path": [[620.5, 1684.5], [643.5, 1685.5], [643.5, 1718.5], [619.5, 1717.5], [619.5, 1715.5]]}, {"id": "twu3mu", "submitted_by": "Pelag", "name": "fsociety (Mr. Robot)", "description": "The FSOCIETY logo, taken from the great TV show MR. ROBOT.", "website": "", "subreddit": "/r/MrRobot", "center": [208.5, 257.5], "path": [[175.5, 252.5], [175.5, 262.5], [239.5, 263.5], [239.5, 252.5], [175.5, 252.5], [175.5, 262.5]]}, {"id": "twu3ln", "submitted_by": "SlimsyMuffin", "name": "D-Cell Logo", "description": "Logo of the indie game development studio D-Cell, developers of the rhythm game UNBEATABLE. This is the final result of many attempts to get Quaver (a character from UNBEATABLE) onto r/place.", "website": "https://unbeatablegame.com/", "subreddit": "/r/unbeatable", "center": [1371.5, 1284.5], "path": [[1361.5, 1279.5], [1380.5, 1279.5], [1380.5, 1289.5], [1361.5, 1289.5]]}, @@ -1856,30 +1745,25 @@ {"id": "twu2zj", "submitted_by": "__moritz__", "name": "Satisfactory", "description": "Satisfactory is a factory building game by Coffee Stain Studios.", "website": "https://www.satisfactorygame.com/", "subreddit": "/r/SatisfactoryGame", "center": [459.5, 1836.5], "path": [[427.5, 1829.5], [490.5, 1829.5], [490.5, 1842.5], [427.5, 1842.5]]}, {"id": "twu2fs", "submitted_by": "Amelot420", "name": "Twenty One Pilots", "description": "Logo of the Band twenty one pilots. Featuring 'Ned' a character from their Music videos", "website": "https://www.twentyonepilots.com", "subreddit": "/r/twentyonepilots", "center": [307.5, 1656.5], "path": [[290.5, 1678.5], [290.5, 1635.5], [299.5, 1635.5], [301.5, 1634.5], [302.5, 1632.5], [303.5, 1631.5], [304.5, 1632.5], [304.5, 1633.5], [310.5, 1633.5], [310.5, 1632.5], [310.5, 1631.5], [311.5, 1631.5], [312.5, 1632.5], [312.5, 1633.5], [313.5, 1634.5], [314.5, 1634.5], [315.5, 1635.5], [324.5, 1635.5], [324.5, 1678.5], [307.5, 1678.5]]}, {"id": "twu2fj", "submitted_by": "DerSchnitta", "name": "Teddy Fresh", "description": "Clothing brand by Hila and Ethan Klein", "website": "https://teddyfresh.com/", "subreddit": "/r/TeddyFresh", "center": [540.5, 1452.5], "path": [[537.5, 1416.5], [543.5, 1416.5], [543.5, 1486.5], [543.5, 1487.5], [543.5, 1487.5], [537.5, 1487.5], [537.5, 1418.5], [537.5, 1416.5], [537.5, 1416.5]]}, -{"id": "twu2e0", "submitted_by": "3njooo", "name": "Ivica (rip)", "description": "roughly here is where our boy ivica used to be. then someone killed him.", "website": "", "subreddit": "/r/ivicopolis", "center": [0.5, 0.5], "path": []}, {"id": "twu2bu", "submitted_by": "Snokari", "name": "PunishingGrayRaven", "description": "Small chibi figures of 2 characters from the game Punishing Gray Raven", "website": "", "subreddit": "/r/PunishingGrayRaven", "center": [1625.5, 1761.5], "path": [[1625.5, 1747.5], [1610.5, 1761.5], [1625.5, 1774.5], [1639.5, 1761.5]]}, -{"id": "twu29f", "submitted_by": "Phephelive", "name": "Zinedine Zidane", "description": "A famous french football who evolved at Real Madrid. His eyebrows helped a lot french people to stay motivated.", "website": "", "subreddit": "", "center": [122.5, 1529.5], "path": [[79.5, 1472.5], [82.5, 1577.5], [166.5, 1593.5], [159.5, 1474.5]]}, {"id": "twu20g", "submitted_by": "impossiblybaaf", "name": "Tria.Os", "description": "TRIA.Os is a Roblox platforming game made in January 2021.n(Second Icon)", "website": "https://www.roblox.com/games/6311279644/TRIA-os-0-6-1", "subreddit": "", "center": [576.5, 1094.5], "path": [[562.5, 1082.5], [589.5, 1082.5], [589.5, 1105.5], [562.5, 1105.5]]}, {"id": "twu20b", "submitted_by": "geo_metro", "name": "LWYRUP", "description": "The vanity plate used by Saul Goodman, a sleazy yet surprisingly competent lawyer from Breaking Bad and Better Call Saul.", "website": "", "subreddit": "/r/betterCallSaul", "center": [1143.5, 958.5], "path": [[1133.5, 953.5], [1133.5, 962.5], [1153.5, 962.5], [1153.5, 953.5]]}, {"id": "twu1rn", "submitted_by": "PratzStrike", "name": "TechyCutie", "description": "Vtuber TechyCutie and her community created this little representation of herself.", "website": "https://www.twitch.tv/techycutie", "subreddit": "", "center": [714.5, 1107.5], "path": [[707.5, 1114.5], [707.5, 1099.5], [720.5, 1099.5], [720.5, 1114.5], [714.5, 1114.5], [707.5, 1114.5]]}, {"id": "twu1lo", "submitted_by": "Shanksette", "name": "Momo from Love Nikki", "description": "Love Nikki: Dress-Up Queen is the name of the Global version of \u5947\u8ff9\u6696\u6696, the 3rd installment in the Nikki mobile game series, by Chinese studio Papergames.", "website": "https://www.papegames.cn/qjnn/en/", "subreddit": "/r/LoveNikki", "center": [298.5, 1253.5], "path": [[282.5, 1240.5], [302.5, 1240.5], [315.5, 1248.5], [315.5, 1264.5], [282.5, 1264.5]]}, {"id": "twu1jf", "submitted_by": "Ok_Penalty_1912", "name": "BoJack Horseman", "description": "BoJack Horseman is an adult animated series on Netflix. Set primarily in Hollywood (renamed to Hollywoo shortly into season one), the series surrounds an anthropomorphic horse named BoJack Horseman (Arnett), the washed-up star of a 1990s sitcom who plans his return to celebrity relevance with an autobiography to be written by ghostwriter Diane Nguyen", "website": "https://en.wikipedia.org/wiki/BoJack_Horseman", "subreddit": "", "center": [1530.5, 1396.5], "path": [[1515.5, 1358.5], [1515.5, 1359.5], [1514.5, 1359.5], [1514.5, 1360.5], [1513.5, 1360.5], [1513.5, 1361.5], [1510.5, 1361.5], [1510.5, 1366.5], [1505.5, 1366.5], [1505.5, 1401.5], [1507.5, 1401.5], [1507.5, 1416.5], [1506.5, 1416.5], [1506.5, 1429.5], [1534.5, 1429.5], [1534.5, 1428.5], [1533.5, 1428.5], [1533.5, 1423.5], [1534.5, 1423.5], [1534.5, 1421.5], [1535.5, 1421.5], [1535.5, 1420.5], [1538.5, 1420.5], [1538.5, 1419.5], [1539.5, 1419.5], [1542.5, 1419.5], [1542.5, 1420.5], [1543.5, 1420.5], [1543.5, 1421.5], [1544.5, 1421.5], [1544.5, 1424.5], [1545.5, 1424.5], [1545.5, 1426.5], [1546.5, 1426.5], [1546.5, 1429.5], [1556.5, 1429.5], [1556.5, 1422.5], [1560.5, 1422.5], [1560.5, 1416.5], [1563.5, 1416.5], [1563.5, 1397.5], [1559.5, 1397.5], [1558.5, 1397.5], [1558.5, 1396.5], [1557.5, 1396.5], [1557.5, 1395.5], [1556.5, 1395.5], [1556.5, 1394.5], [1555.5, 1394.5], [1555.5, 1393.5], [1554.5, 1393.5], [1554.5, 1392.5], [1553.5, 1392.5], [1553.5, 1391.5], [1552.5, 1391.5], [1552.5, 1389.5], [1551.5, 1389.5], [1551.5, 1388.5], [1550.5, 1388.5], [1549.5, 1388.5], [1549.5, 1387.5], [1549.5, 1370.5], [1541.5, 1370.5], [1538.5, 1370.5], [1538.5, 1358.5], [1515.5, 1358.5]]}, -{"id": "twu16a", "submitted_by": "Prudent-Ad5308", "name": "Daft Punk x PNL", "description": "This art is a mix between PNL and Daft Punk, the two biggest singer duo in the France music history.nThis artwork was created by Theorus.", "website": "https://twitter.com/Theorus_/status/1258019551373078530?s=20&t=pnJVLlbcZYczhxrB9DaFlQ", "subreddit": "", "center": [207.5, 1606.5], "path": [[170.5, 1639.5], [244.5, 1640.5], [245.5, 1620.5], [242.5, 1616.5], [244.5, 1609.5], [242.5, 1593.5], [244.5, 1587.5], [241.5, 1581.5], [236.5, 1580.5], [228.5, 1571.5], [216.5, 1566.5], [197.5, 1566.5], [189.5, 1571.5], [182.5, 1573.5], [179.5, 1575.5], [176.5, 1575.5], [173.5, 1580.5], [174.5, 1582.5], [173.5, 1587.5], [171.5, 1592.5], [170.5, 1595.5], [170.5, 1611.5], [173.5, 1618.5], [170.5, 1622.5], [170.5, 1623.5], [170.5, 1637.5]]}, -{"id": "twu0fl", "submitted_by": "GoJoeyGo123", "name": "ZombieCleo", "description": "Zombie Cleo", "website": "https://www.youtube.com/channel/UCjI5qxhtyv3srhWr60HemRw", "subreddit": "", "center": [865.5, 619.5], "path": [[860.5, 615.5], [869.5, 615.5], [869.5, 623.5], [860.5, 623.5]]}, +{"id": "twu16a", "submitted_by": "Prudent-Ad5308", "name": "Daft Punk x PNL", "description": "This art is a mix between PNL's album 'Deux fr\u00e8res' and Daft Punk's masks. These two artists are the biggest singer duo in the France music history.\n\nThis artwork was created by Theorus.", "website": "https://twitter.com/Theorus_/status/1258019551373078530?s=20&t=pnJVLlbcZYczhxrB9DaFlQ", "subreddit": "/r/placefrance", "center": [207.5, 1606.5], "path": [[170.5, 1639.5], [244.5, 1640.5], [245.5, 1620.5], [242.5, 1616.5], [244.5, 1609.5], [242.5, 1593.5], [244.5, 1587.5], [241.5, 1581.5], [236.5, 1580.5], [228.5, 1571.5], [216.5, 1566.5], [197.5, 1566.5], [189.5, 1571.5], [182.5, 1573.5], [179.5, 1575.5], [176.5, 1575.5], [173.5, 1580.5], [174.5, 1582.5], [173.5, 1587.5], [171.5, 1592.5], [170.5, 1595.5], [170.5, 1611.5], [173.5, 1618.5], [170.5, 1622.5], [170.5, 1623.5], [170.5, 1637.5]]}, +{"id": "twu0fl", "submitted_by": "GoJoeyGo123", "name": "ZombieCleo", "description": "", "website": "https://www.youtube.com/channel/UCjI5qxhtyv3srhWr60HemRw", "subreddit": "/r/hermitcraft", "center": [865.5, 619.5], "path": [[860.5, 615.5], [869.5, 615.5], [869.5, 623.5], [860.5, 623.5]]}, {"id": "twu07j", "submitted_by": "Eclipsed_Luna", "name": "Agender miniflag", "description": "A mini agender pride flag.nAgender, also known as genderless, is an identity to describe someone that entirely lacks a gender or with complete genderlessness. It falls under the a non-binary umbrella in which one is not male, female, neutral, xenic, outherine, or any other gender. They may identify most strongly as just an individual, rather than as any given gender.", "website": "https://lgbta.miraheze.org/wiki/Agender", "subreddit": "/r/placepride", "center": [461.5, 637.5], "path": [[457.5, 634.5], [457.5, 640.5], [465.5, 640.5], [465.5, 634.5], [457.5, 634.5]]}, {"id": "twtzyg", "submitted_by": "shoessurent", "name": "Wakfu logo", "description": "logo of the french mmorpg Wakfu", "website": "https://www.wakfu.com/fr/prehome", "subreddit": "", "center": [1188.5, 1959.5], "path": [[1200.5, 1948.5], [1181.5, 1948.5], [1176.5, 1954.5], [1176.5, 1970.5], [1200.5, 1970.5]]}, {"id": "twtzvo", "submitted_by": "DerSchnitta", "name": "H3H3 Productions Logo", "description": "", "website": "https://www.youtube.com/user/h3h3Productions", "subreddit": "/r/h3h3productions", "center": [831.5, 565.5], "path": [[813.5, 548.5], [848.5, 548.5], [848.5, 581.5], [813.5, 581.5], [813.5, 548.5]]}, {"id": "twtzqr", "submitted_by": "PratzStrike", "name": "IronmouseNyanhug", "description": "This is pixel art of Ironmouse's emote IronmouseNyanhug, where she's hugging fellow Vshojo member Nyanners.", "website": "https://www.twitch.tv/ironmouse", "subreddit": "/r/vshojo", "center": [1427.5, 979.5], "path": [[1451.5, 959.5], [1451.5, 999.5], [1403.5, 999.5], [1403.5, 959.5], [1428.5, 959.5], [1451.5, 959.5]]}, -{"id": "twtzq4", "submitted_by": "Shushiiii", "name": "Miyu, MaiMai, & LPOTL", "description": "A joint collab of 3 communities in an effort to leave their mark in history. (Canvas currently broken, requesting fix)", "website": "https://discord.gg/bluearchive", "subreddit": "/r/BlueArchive, /r/MaiMai, /r/LPOTL", "center": [39.5, 968.5], "path": [[16.5, 945.5], [62.5, 944.5], [62.5, 992.5], [16.5, 992.5]]}, {"id": "twtzp6", "submitted_by": "greese1", "name": "Fish Cult tank 2 below", "description": "a team of people dedicated to making fish on r/place", "website": "", "subreddit": "/r/PlaceFishCult", "center": [1437.5, 954.5], "path": [[1420.5, 949.5], [1420.5, 950.5], [1421.5, 951.5], [1422.5, 952.5], [1423.5, 953.5], [1423.5, 955.5], [1422.5, 956.5], [1422.5, 957.5], [1423.5, 958.5], [1423.5, 959.5], [1451.5, 959.5], [1451.5, 949.5], [1420.5, 949.5]]}, {"id": "twtzgx", "submitted_by": "rockmeu18", "name": "Todd (Cleaning Simulator)", "description": "Todd, from the roblox game Cleaning Simulator.", "website": "https://www.roblox.com/games/818287233/Cleaning-Simulator", "subreddit": "", "center": [1302.5, 560.5], "path": [[1294.5, 567.5], [1297.5, 553.5], [1306.5, 551.5], [1308.5, 555.5], [1308.5, 565.5], [1307.5, 567.5]]}, -{"id": "twtzdb", "submitted_by": "GloryGreatestCountry", "name": "Charlie from Witch's Heart", "description": "A small pixel version of Charlie from Witch's Heart, made and maintained by a collaboration between a Danganronpa RP group (formerly r/RPDanganronpaChat), certain allies and people from a Witch's Heart server. nnr/witchsheart for the community for the game that this character is from.", "website": "", "subreddit": "/r/witchsheart", "center": [0.5, 0.5], "path": []}, -{"id": "twtzci", "submitted_by": "em_tsuj_sti", "name": "Malte", "description": "A German pixel artist on the placeDE discordnHe drawed i.a. the Brandenburg gate, the Bundestag, the Amogus column, the cologne cathedral and the redesign of the WW1 memorial", "website": "discord.gg/placeDE", "subreddit": "/r/placeDE", "center": [1898.5, 1129.5], "path": [[1871.5, 1123.5], [1871.5, 1135.5], [1924.5, 1135.5], [1924.5, 1123.5]]}, +{"id": "twtzci", "submitted_by": "em_tsuj_sti", "name": "Malte", "description": "A German pixel artist on the placeDE discordnHe drawed i.a. the Brandenburg gate, the Bundestag, the Amogus column, the cologne cathedral and the redesign of the WW1 memorial", "website": "https://discord.gg/placeDE", "subreddit": "/r/placeDE", "center": [1898.5, 1129.5], "path": [[1871.5, 1123.5], [1871.5, 1135.5], [1924.5, 1135.5], [1924.5, 1123.5]]}, {"id": "fauinf", "submitted_by": "FactoryRatte", "name": "FAU Informatik (Computer Science)", "description": "Logo of the Department for Computer Science at the Friedrich Alexander University Erlangen/N\u00fcrnberg. Built and defended in alliance with the KIT (Karlsruher Institute for Technology), which was coordinated over Discord embassies. The different backgrounds highlight the university logo followed by the INF, short for german Informatik, which means Computer Science in english.", "website": "https://cs.fau.de", "subreddit": "/r/FAU_university", "center": [757.5, 534.5], "path": [[753.5, 521.5], [753.5, 547.5], [760.5, 547.5], [760.5, 521.5]]}, -{"id": "twtykp", "submitted_by": "BruninhoBoladao8707", "name": "Brazilian Flag", "description": "The place where the Brazilian expansion started.n", "website": "", "subreddit": "/r/brasil", "center": [0.5, 0.5], "path": []}, {"id": "twtyja", "submitted_by": "Mazork", "name": "Enter The Gungeon", "description": "A dungeon crawling roguelike developed by Dodge Roll Games and published by Devolver Digital.", "website": "https://enterthegungeon.com/", "subreddit": "/r/enterthegungeon", "center": [211.5, 325.5], "path": [[203.5, 309.5], [203.5, 316.5], [169.5, 316.5], [169.5, 329.5], [201.5, 329.5], [204.5, 335.5], [203.5, 343.5], [237.5, 343.5], [237.5, 309.5], [203.5, 309.5]]}, {"id": "twtydi", "submitted_by": "Exynth1a", "name": "Millie Parfait", "description": "Made by mainly r/Philippines, this pixel art is dedicated to Filipino Vtuber, Millie Parfait, from Nijisanji EN.", "website": "https://www.youtube.com/channel/UC47rNmkDcNgbOcM-2BwzJTQ", "subreddit": "/r/Philippines, /r/Nijisanji", "center": [456.5, 1670.5], "path": [[457.5, 1666.5], [454.5, 1666.5], [453.5, 1667.5], [452.5, 1668.5], [452.5, 1671.5], [454.5, 1672.5], [455.5, 1673.5], [456.5, 1674.5], [459.5, 1674.5], [460.5, 1672.5], [460.5, 1671.5], [460.5, 1669.5], [460.5, 1668.5], [459.5, 1667.5], [454.5, 1667.5], [454.5, 1667.5], [453.5, 1667.5]]}, -{"id": "twtyda", "submitted_by": "urammar", "name": "Bratishkinoff", "description": "Fan art of the russian streamer 'Bratishkinoff'nnA tenuous alliance existed with the blue corner, however both encroached on each others territory several times. Their borders were ultimately fairly static and largely at peace.", "website": "twitch.tv/bratishkinoff", "subreddit": "", "center": [1845.5, 1934.5], "path": [[1775.5, 1868.5], [1916.5, 1868.5], [1916.5, 1999.5], [1775.5, 2000.5]]}, +{"id": "twtyda", "submitted_by": "urammar", "name": "Bratishkinoff", "description": "Fan art of the russian streamer 'Bratishkinoff'nnA tenuous alliance existed with the blue corner, however both encroached on each others territory several times. Their borders were ultimately fairly static and largely at peace.", "website": "https://twitch.tv/bratishkinoff", "subreddit": "", "center": [1845.5, 1934.5], "path": [[1775.5, 1868.5], [1916.5, 1868.5], [1916.5, 1999.5], [1775.5, 2000.5]]}, {"id": "twty95", "submitted_by": "ludicrouscacophony", "name": "Yonsei University", "description": "Yonsei University (\uc5f0\uc138\ub300\ud559\uad50) is located in Seoul, South Korea. Students coordinated through Kakaotalk and Everytime to create the logo.", "website": "https://www.yonsei.ac.kr/en_sc/index.jsp", "subreddit": "", "center": [1742.5, 1105.5], "path": [[1735.5, 1105.5], [1735.5, 1105.5], [1731.5, 1091.5], [1743.5, 1091.5], [1743.5, 1090.5], [1753.5, 1090.5], [1753.5, 1120.5], [1731.5, 1120.5], [1731.5, 1093.5]]}, {"id": "twty78", "submitted_by": "Killian_Neverstar", "name": "Quin69 (Streamer)", "description": "Twitch streamer Quin69 got his Twitch chat to create a sheep emote from his channel and a clown pepe under it. The name Cheese is from one of the streamers mods called CheesepuffTZ who passed away and was loved by the community", "website": "https://www.twitch.tv/quin69", "subreddit": "/r/quin69", "center": [435.5, 1906.5], "path": [[419.5, 1881.5], [448.5, 1881.5], [448.5, 1936.5], [432.5, 1936.5], [430.5, 1919.5], [419.5, 1919.5], [419.5, 1881.5]]}, {"id": "twty5y", "submitted_by": "-Nyctalope-", "name": "RLBot", "description": "A Rocket League mod to enable offline bots.nnRocket League is a game where you play football with cars.", "website": "https://rlbot.org/", "subreddit": "/r/RocketLeagueBots", "center": [1342.5, 508.5], "path": [[1333.5, 499.5], [1331.5, 501.5], [1331.5, 502.5], [1332.5, 503.5], [1332.5, 507.5], [1333.5, 508.5], [1333.5, 511.5], [1333.5, 511.5], [1334.5, 513.5], [1335.5, 515.5], [1339.5, 519.5], [1341.5, 520.5], [1344.5, 520.5], [1350.5, 515.5], [1351.5, 513.5], [1352.5, 511.5], [1352.5, 508.5], [1353.5, 507.5], [1353.5, 502.5], [1351.5, 500.5], [1348.5, 500.5], [1347.5, 499.5], [1333.5, 499.5], [1331.5, 501.5]]}, @@ -1889,27 +1773,24 @@ {"id": "twtxyq", "submitted_by": "EuclidateDat", "name": "Erdtree", "description": "The Erdtree from Elden Ring can be seen behind Radiance as part of the collaboration between Hollow Knight and the Elden Ring Community.", "website": "", "subreddit": "/r/Eldenring", "center": [294.5, 1392.5], "path": [[246.5, 1444.5], [341.5, 1444.5], [341.5, 1339.5], [247.5, 1339.5], [246.5, 1339.5]]}, {"id": "twtxnc", "submitted_by": "boringandunlikeable", "name": "Touhou 7 - Perfect Cherry Blossom Bosses", "description": "Art of 3 bosses from the 7th entry of the Touhou series, Touhou Perfect Cherry Blossom.nnThey are:nYoumu Konpaku - Stage 5 BossnYuyuko Saigyouji - Final Stage BossnYukari Yakumo - Phantasm Stage Boss", "website": "", "subreddit": "/r/Touhou", "center": [1742.5, 809.5], "path": [[1699.5, 790.5], [1699.5, 827.5], [1786.5, 828.5], [1785.5, 791.5]]}, {"id": "twtxky", "submitted_by": "FassyDassy", "name": "kozolec (hayrack)", "description": "KOzolec (a hayrack) is a building that is found in most of the Slovenian villages. They are mostly made out of wood and their purpose is storing and drying hay", "website": "https://www.trekearth.com/gallery/Europe/Slovenia/West/Gorenjska/Knape/photo267186.htm", "subreddit": "/r/Slovenia", "center": [226.5, 881.5], "path": [[220.5, 875.5], [234.5, 875.5], [234.5, 887.5], [220.5, 887.5], [218.5, 883.5]]}, -{"id": "twtxkj", "submitted_by": "Effective_Tangerine5", "name": "Miyu | Blue Archive", "description": "nMiyu from the Mobile Game Blue Archive, Multiple Streamersnhave raided the piece and the area in the past, in which anStreamer at the time of this photo, proceeded to invade the area at 16:44, with nthe BA Community making haste in repelling the invading forces,nthe Void intervened, covering the whole area in black, by whichntime at 16:45 it was seen that the Streamer went offline, givingnthe BA Community little time left to rebuild the piece and thenarea.nnnRaids Survived: 3nnFirst Raid: April 4, 2022 | Time: 19:47 | nnRaid Intensity: Minornnthe Community presumes that the invaders were minor bots.nnnnSecond Raid: April 4, 2022 | Time: 20:40-20 | nnRaid Intensity: Powerful nnA Streamer invaded top sidenof the Miyu Border in which the Community were struggling tonbuild it's borders back due to the sheer manpower of the invadingnforces, with rogue users directly invading Miyu in which thenCommunity in discord servers were up in arms and were doingnthe best they could, barely forming the silhouette of thencharacter, in which by this time the Raid even got more powerful,nbut later stopped, giving the Community the time to rebuild again.nnThird Raid: April 5, 2022 | Time: 16:45 - 16:50 |nnRaid Intensity: PowerfulnnA Streamer Directly invaded the areas of Miyu, stainingnthe colors of the blue and grey to a very obnoxious Orangenand White, at this time the Blue Archive Community made hastento defend as much of an area as possible, but the Streamer wasnslowly enveloping the area because of manpower, until the Voidnintervened and covered the area with black, causing nothing butnrebelling pixels to surface, to drown again.nnThis gave the Blue Archive Community the opportunity to rebuild what's left of Miyu,nwith some even giving thanks to the Void for destroying the invading forces.n", "website": "https://www.reddit.com/r/BlueArchive/", "subreddit": "/r/BlueArchive", "center": [40.5, 968.5], "path": [[22.5, 945.5], [22.5, 947.5], [22.5, 948.5], [21.5, 948.5], [21.5, 949.5], [21.5, 950.5], [21.5, 950.5], [21.5, 951.5], [20.5, 951.5], [20.5, 956.5], [21.5, 956.5], [21.5, 957.5], [22.5, 957.5], [22.5, 959.5], [22.5, 960.5], [20.5, 960.5], [20.5, 959.5], [19.5, 959.5], [19.5, 958.5], [16.5, 958.5], [17.5, 960.5], [18.5, 960.5], [18.5, 961.5], [19.5, 961.5], [19.5, 962.5], [21.5, 962.5], [21.5, 968.5], [23.5, 968.5], [23.5, 962.5], [25.5, 962.5], [25.5, 969.5], [25.5, 970.5], [24.5, 970.5], [24.5, 972.5], [23.5, 972.5], [23.5, 973.5], [21.5, 973.5], [21.5, 974.5], [18.5, 974.5], [18.5, 987.5], [27.5, 987.5], [27.5, 992.5], [60.5, 992.5], [60.5, 944.5], [22.5, 944.5]]}, +{"id": "twtxkj", "submitted_by": "Effective_Tangerine5", "name": "Miyu (Blue Archive)", "description": "Miyu from the mobile game Blue Archive. Multiple streamers have raided the piece and the area in the past. A streamer at the time of this photo proceeded to invade the area at 16:44, with the BA community making haste in repelling the invading forces. The Void intervened, covering the whole area in black. At 16:45 it was seen that the streamer went offline, giving the BA community little time left to rebuild the piece and the area.\n\nRaids survived: 3\nFirst raid: April 4, 2022\nTime: 19:47\nRaid intensity: Minor\nThe community presumes that the invaders were minor bots.\n\nSecond raid: April 4, 2022\nTime: 20:40-20\nRaid intensity: Powerful\nA streamer invaded top side of the Miyu border in which the community were struggling to build its borders back due to the sheer manpower of the invading forces, with rogue users directly invading Miyu. The community in Discord servers were up in arms and were doing the best they could, barely forming the silhouette of the character. By this time the raid even got more powerful, but later stopped, giving the community the time to rebuild again.\n\nThird raid: April 5, 2022\nTime: 16:45 - 16:50\nRaid intensity: Powerful\nA streamer directly invaded the areas of Miyu, staining the colors of the blue and grey to a very obnoxious orange and white. At this time the Blue Archive community made hastened to defend as much of an area as possible, but the streamer was slowly enveloping the area because of manpower, until the Void intervened and covered the area with black, causing nothing but rebelling pixels to surface, to drown again. This gave the Blue Archive community the opportunity to rebuild what's left of Miyu, with some even giving thanks to the Void for destroying the invading forces.", "website": "https://www.reddit.com/r/BlueArchive/", "subreddit": "/r/BlueArchive, /r/MaiMai, /r/LPOTL", "center": [39.5, 968.5], "path": [[16.5, 945.5], [62.5, 944.5], [62.5, 992.5], [16.5, 992.5]]}, {"id": "twtwzd", "submitted_by": "BiggfloetOli", "name": "Olympus has fallen", "description": "It showed the 2013 American action thriller film directed by Antoine Fuqua. Moreover, Spanish tried to keep that area, but they did not succeed...", "website": "", "subreddit": "", "center": [1830.5, 1082.5], "path": [[1829.5, 1079.5], [1791.5, 1046.5], [1791.5, 1118.5], [1868.5, 1119.5], [1868.5, 1045.5], [1790.5, 1046.5]]}, -{"id": "twtwwo", "submitted_by": "Glad-Introduction-22", "name": "Territorial.io Logo", "description": "Territorial.io, made by David Tschacher, is an online indie .Io game about conquering land and fighting other people in various gamemodes. It has a Instagram account and a Discord Server with nearly 15k people.", "website": "territorial.io", "subreddit": "/r/territorial.io", "center": [306.5, 1887.5], "path": [[301.5, 1882.5], [310.5, 1882.5], [310.5, 1891.5], [301.5, 1891.5]]}, +{"id": "twtwwo", "submitted_by": "Glad-Introduction-22", "name": "Territorial.io logo", "description": "Territorial.io, made by David Tschacher, is an online indie .io game about conquering land and fighting other people in various game modes. It has a Instagram account and a Discord server with nearly 15k people.", "website": "https://territorial.io", "subreddit": "/r/territorial_io", "center": [306.5, 1887.5], "path": [[301.5, 1882.5], [310.5, 1882.5], [310.5, 1891.5], [301.5, 1891.5]]}, {"id": "twtwq6", "submitted_by": "Deano3607", "name": "Castle Crashers", "description": "Castle Crashers is a 2D indie-game style hack-and-slash video game", "website": "https://store.steampowered.com/app/204360/Castle_Crashers/", "subreddit": "/r/castlecrashers", "center": [1900.5, 88.5], "path": [[1879.5, 73.5], [1921.5, 73.5], [1921.5, 103.5], [1879.5, 103.5], [1879.5, 73.5]]}, {"id": "twtwky", "submitted_by": "AURAequine", "name": "Tiny Non-Pony (Spike)", "description": "A tiny MLP:FiM dragon character, this one is Spike.", "website": "", "subreddit": "", "center": [914.5, 1776.5], "path": [[915.5, 1775.5], [914.5, 1775.5], [913.5, 1776.5], [914.5, 1777.5], [915.5, 1777.5]]}, {"id": "twtwc9", "submitted_by": "ItsFrisbeeTho", "name": "Noisestorm - Crab Rave", "description": "Noisestorm - Crab RavenApril 1st, 2018", "website": "https://www.youtube.com/watch?v=LDU_Txk06tM", "subreddit": "", "center": [359.5, 1907.5], "path": [[341.5, 1898.5], [341.5, 1915.5], [377.5, 1915.5], [377.5, 1898.5], [341.5, 1898.5]]}, -{"id": "twtw6o", "submitted_by": "donrip", "name": "Alliance heart: Miku x Gensin Impact", "description": "Teal colored heart with Celestial halo around it. Represents alliance between fandoms of Hatsune Miku and Gensin Impact", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twtvnc", "submitted_by": "Deano3607", "name": "Escape From Tarkov - Killa", "description": "Escape from Tarkov is a hardcore and realistic online first-person action RPG/Simulator with MMO features and a story-driven walkthrough.nThe drawing shows Killa, a boss within the game who holds out at a local shopping mall.", "website": "https://www.escapefromtarkov.com/", "subreddit": "/r/escapefromtarkov", "center": [1975.5, 464.5], "path": [[1953.5, 469.5], [1953.5, 458.5], [1956.5, 451.5], [1958.5, 447.5], [1963.5, 443.5], [1968.5, 441.5], [1981.5, 441.5], [1987.5, 443.5], [1991.5, 447.5], [1995.5, 453.5], [1997.5, 457.5], [1998.5, 461.5], [1998.5, 480.5], [1978.5, 481.5], [1977.5, 490.5], [1966.5, 490.5], [1965.5, 486.5], [1961.5, 481.5], [1957.5, 477.5], [1956.5, 474.5], [1955.5, 471.5]]}, -{"id": "twtvmw", "submitted_by": "le_fougicien", "name": "Marianne", "description": "Marianne is the personification of the French Republic and a personification of liberty, equality, fraternity and reason, as well as a portrayal of the Goddess of Liberty. Here in blue and yellow to symbolize support to Ukraine.", "website": "", "subreddit": "/r/france", "center": [149.5, 246.5], "path": [[146.5, 215.5], [160.5, 217.5], [159.5, 223.5], [160.5, 226.5], [163.5, 229.5], [163.5, 233.5], [163.5, 240.5], [169.5, 251.5], [169.5, 254.5], [172.5, 258.5], [173.5, 262.5], [171.5, 264.5], [175.5, 269.5], [175.5, 276.5], [161.5, 276.5], [160.5, 266.5], [131.5, 266.5], [129.5, 263.5], [131.5, 257.5], [128.5, 251.5], [125.5, 251.5], [125.5, 236.5], [131.5, 229.5], [132.5, 225.5], [138.5, 222.5], [142.5, 216.5], [147.5, 215.5]]}, {"id": "twtvld", "submitted_by": "SlimsyMuffin", "name": "Racket Logo", "description": "The logo for the programming language racket. A functional programming language based on lisp, originally called PLT scheme.", "website": "https://racket-lang.org/", "subreddit": "/r/racket", "center": [324.5, 1477.5], "path": [[327.5, 1463.5], [331.5, 1463.5], [338.5, 1467.5], [340.5, 1471.5], [340.5, 1477.5], [340.5, 1478.5], [342.5, 1478.5], [342.5, 1483.5], [338.5, 1483.5], [338.5, 1490.5], [315.5, 1490.5], [315.5, 1485.5], [306.5, 1485.5], [306.5, 1477.5], [308.5, 1470.5], [313.5, 1466.5], [327.5, 1463.5]]}, -{"id": "twtvik", "submitted_by": "em_tsuj_sti", "name": "Terz42", "description": "A head administrator on the placeDE Discord. He was mostly responsible for managing the placement of the various pixelarts on the German flag", "website": "discord.gg/placeDE", "subreddit": "/r/placeDE", "center": [1855.5, 1129.5], "path": [[1838.5, 1123.5], [1871.5, 1123.5], [1871.5, 1135.5], [1838.5, 1135.5]]}, +{"id": "twtvik", "submitted_by": "em_tsuj_sti", "name": "Terz42", "description": "A head administrator on the placeDE Discord. He was mostly responsible for managing the placement of the various pixelarts on the German flag", "website": "https://discord.gg/placeDE", "subreddit": "/r/placeDE", "center": [1855.5, 1129.5], "path": [[1838.5, 1123.5], [1871.5, 1123.5], [1871.5, 1135.5], [1838.5, 1135.5]]}, {"id": "twtvg0", "submitted_by": "Wishark", "name": "Ultimate Chicken Horse", "description": "Ultimate Chicken Horse is a party platformer where you and your friends build the level as you play, placing deadly traps before trying to reach the end of the level. If you can make it but your friends can't, you score points!", "website": "https://www.cleverendeavourgames.com/ultimate-chicken-horse", "subreddit": "/r/ultimatechickenhorse", "center": [314.5, 862.5], "path": [[324.5, 866.5], [303.5, 866.5], [303.5, 865.5], [302.5, 865.5], [302.5, 866.5], [300.5, 866.5], [300.5, 865.5], [298.5, 865.5], [298.5, 863.5], [299.5, 863.5], [299.5, 862.5], [300.5, 862.5], [300.5, 860.5], [301.5, 860.5], [301.5, 859.5], [304.5, 859.5], [304.5, 860.5], [306.5, 860.5], [306.5, 863.5], [305.5, 863.5], [305.5, 866.5], [313.5, 866.5], [313.5, 857.5], [324.5, 857.5]]}, {"id": "twtvc2", "submitted_by": "Ferreyd", "name": "CNES Logo", "description": "Centre National d'\u00c9tudes Spatiales (National Center for Space Studies) is the French space agency, one of main contributors for European Space Agency", "website": "https://cnes.fr/en", "subreddit": "/r/cnes", "center": [1140.5, 763.5], "path": [[1138.5, 751.5], [1137.5, 756.5], [1131.5, 761.5], [1133.5, 769.5], [1138.5, 772.5], [1144.5, 772.5], [1149.5, 767.5], [1148.5, 760.5], [1143.5, 756.5], [1141.5, 756.5], [1140.5, 751.5]]}, {"id": "twtv11", "submitted_by": "Intelligent_Ad9470", "name": "Twenty One Pilots", "description": "Twenty One Pilots logo with Ned created by the community of T\u00d8P. Ned is a fictional character created by lead singer Tyler Joseph. As stated in an interview, Ned represents Tyler's creativity.", "website": "", "subreddit": "/r/twentyonepilots", "center": [307.5, 1656.5], "path": [[290.5, 1635.5], [290.5, 1678.5], [324.5, 1678.5], [324.5, 1635.5], [315.5, 1635.5], [315.5, 1635.5], [314.5, 1635.5], [312.5, 1634.5], [311.5, 1631.5], [310.5, 1633.5], [304.5, 1633.5], [303.5, 1631.5], [302.5, 1633.5], [302.5, 1634.5], [301.5, 1634.5], [300.5, 1634.5], [300.5, 1635.5], [290.5, 1635.5]]}, {"id": "twtuvd", "submitted_by": "Pflaumenpueree", "name": "ace pride heart", "description": "An ace pride heart that was added over the Ace Attorney drawing as a pun.", "website": "", "subreddit": "/r/plAceAttorney, /r/asexuality, /r/asexual", "center": [1316.5, 85.5], "path": [[1314.5, 83.5], [1313.5, 84.5], [1313.5, 85.5], [1316.5, 88.5], [1319.5, 85.5], [1319.5, 84.5], [1318.5, 83.5], [1317.5, 83.5], [1316.5, 84.5], [1315.5, 83.5], [1314.5, 83.5]]}, {"id": "twtuv4", "submitted_by": "blueb33", "name": "Bluey", "description": "Bluey is a popular and very wholesome Australian children's show featuring a Blue Heeler family.", "website": "https://iview.abc.net.au/show/bluey/", "subreddit": "/r/bluey", "center": [562.5, 525.5], "path": [[561.5, 509.5], [556.5, 505.5], [555.5, 537.5], [550.5, 536.5], [550.5, 539.5], [569.5, 540.5], [568.5, 508.5], [565.5, 506.5], [562.5, 511.5], [557.5, 508.5], [559.5, 507.5], [557.5, 506.5]]}, {"id": "twtusp", "submitted_by": "zedetsa", "name": "Tintin's moon rocket", "description": "A rocket used by Belgium's Tintin to get to the moon. Seen in the 1953 comic 'Destination Moon'. The background is art deco and inspired by The Great Gatsby. There were plans to change it to an art nouveau background since that's more a Belgian thing, but there was not enough time.", "website": "", "subreddit": "/r/belgium", "center": [1306.5, 801.5], "path": [[1282.5, 774.5], [1332.5, 774.5], [1330.5, 828.5], [1281.5, 830.5]]}, -{"id": "twtus1", "submitted_by": "Ratio-Vast", "name": "Marianne", "description": "Marianne is a significant republican symbol for french and around the world.", "website": "https://en.wikipedia.org/wiki/Marianne", "subreddit": "/r/france", "center": [148.5, 247.5], "path": [[160.5, 275.5], [169.5, 275.5], [169.5, 276.5], [170.5, 276.5], [170.5, 278.5], [170.5, 282.5], [174.5, 273.5], [172.5, 261.5], [163.5, 244.5], [161.5, 240.5], [162.5, 236.5], [163.5, 235.5], [161.5, 233.5], [162.5, 229.5], [157.5, 223.5], [158.5, 220.5], [159.5, 220.5], [150.5, 216.5], [143.5, 218.5], [125.5, 237.5], [125.5, 252.5], [129.5, 252.5], [129.5, 264.5], [132.5, 266.5], [160.5, 267.5], [160.5, 275.5]]}, {"id": "twtule", "submitted_by": "-Katran-", "name": "Borussia Dortmund (BVB 09)", "description": "A mural for the German football club Borussia Dortmund including their badge, the DFB-Pokal they won last year, and their Captain Marco Reus. It survived thanks to our friends Liverpool FC and CraftGalaxy. Echte Liebe.", "website": "https://www.bvb.de/", "subreddit": "/r/borussiadortmund", "center": [1581.5, 1565.5], "path": [[1576.5, 1553.5], [1594.5, 1553.5], [1594.5, 1572.5], [1582.5, 1572.5], [1581.5, 1572.5], [1581.5, 1578.5], [1570.5, 1578.5], [1570.5, 1572.5], [1565.5, 1572.5], [1565.5, 1571.5], [1567.5, 1571.5], [1567.5, 1560.5], [1576.5, 1560.5], [1576.5, 1553.5]]}, {"id": "twtued", "submitted_by": "Oponik", "name": "JavaScript logo", "description": "May it be back end or front end, It's still cringe", "website": "", "subreddit": "/r/javascript", "center": [306.5, 713.5], "path": [[302.5, 709.5], [310.5, 709.5], [310.5, 717.5], [302.5, 717.5], [302.5, 709.5]]}, -{"id": "twtub0", "submitted_by": "GoJoeyGo123", "name": "https://www.youtube.com/c/XisumavoidMC", "description": "Xisumavoid", "website": "https://www.youtube.com/c/XisumavoidMC", "subreddit": "", "center": [892.5, 603.5], "path": [[887.5, 599.5], [896.5, 599.5], [896.5, 607.5], [887.5, 607.5]]}, +{"id": "twtub0", "submitted_by": "GoJoeyGo123", "name": "Xisumavoid", "description": "The current admin of Hermitcraft and one of the few remaining original members. He doesn't restart the episode numbers of his Hermitcraft series each season and has over 1000 episodes.", "website": "https://www.youtube.com/c/XisumavoidMC", "subreddit": "/r/hermitcraft", "center": [892.5, 603.5], "path": [[887.5, 599.5], [896.5, 599.5], [896.5, 607.5], [887.5, 607.5]]}, {"id": "twttso", "submitted_by": "CreativeNameIKnow", "name": "999 Nonary Watch", "description": "Features the watch worn by the protagonist of the first game in the Zero Escape series, '9 Hours, 9 Persons, 9 Doors'. It is usually shortened to '999', hence the 3 nines to the right. It is also underrated as HECK so you better check it out.", "website": "https://store.steampowered.com/app/477740/Zero_Escape_The_Nonary_Games/", "subreddit": "/r/ZeroEscape", "center": [7.5, 986.5], "path": [[0.5, 973.5], [16.5, 973.5], [15.5, 994.5], [0.5, 1003.5]]}, {"id": "twttel", "submitted_by": "-Nyctalope-", "name": "One punch man", "description": "Saitama from the anime One punch man", "website": "", "subreddit": "/r/OnePunchMan", "center": [1976.5, 1565.5], "path": [[1964.5, 1549.5], [1964.5, 1562.5], [1965.5, 1566.5], [1965.5, 1571.5], [1964.5, 1582.5], [1986.5, 1582.5], [1986.5, 1579.5], [1983.5, 1575.5], [1983.5, 1570.5], [1988.5, 1564.5], [1998.5, 1564.5], [1998.5, 1557.5], [1983.5, 1557.5], [1983.5, 1553.5], [1977.5, 1549.5], [1964.5, 1549.5]]}, {"id": "twtt3g", "submitted_by": "TyphlosionGOD", "name": "Sound Voltex", "description": "A rhythm game by Konami where players have to control six buttons and two knobs", "website": "https://p.eagate.573.jp/game/sdvx", "subreddit": "", "center": [1236.5, 63.5], "path": [[1215.5, 58.5], [1215.5, 68.5], [1258.5, 68.5], [1256.5, 66.5], [1256.5, 65.5], [1255.5, 64.5], [1255.5, 60.5], [1254.5, 60.5], [1253.5, 59.5], [1248.5, 55.5], [1244.5, 59.5], [1243.5, 59.5], [1242.5, 60.5], [1234.5, 60.5], [1230.5, 57.5], [1229.5, 57.5], [1224.5, 60.5], [1218.5, 60.5], [1215.5, 58.5], [1215.5, 58.5]]}, @@ -1919,15 +1800,13 @@ {"id": "twtsl3", "submitted_by": "Pflaumenpueree", "name": "bi pride heart", "description": "A bi pride heart that was added under Phoenix Wright and Miles Edgeworth.", "website": "", "subreddit": "/r/bisexuality, /r/bisexual", "center": [1316.5, 101.5], "path": [[1315.5, 99.5], [1314.5, 99.5], [1313.5, 100.5], [1313.5, 101.5], [1316.5, 104.5], [1319.5, 101.5], [1319.5, 100.5], [1318.5, 99.5], [1317.5, 99.5], [1316.5, 100.5], [1315.5, 99.5], [1314.5, 99.5], [1313.5, 100.5]]}, {"id": "twtshq", "submitted_by": "TrinityShade", "name": "Aurobia Flower", "description": "A flower built by the small community of Aurobia", "website": "https://discord.gg/bKKrUQmbBh", "subreddit": "/r/aurobia", "center": [0.5, 0.5], "path": [[1216.5, 568.5], [1220.5, 568.5], [1216.5, 572.5], [1220.5, 572.5]]}, {"id": "twtsgi", "submitted_by": "Big-Parking485", "name": "Arc de triomphe", "description": "French famous arch. Collaboration between r/placefrance and r/fuckcars", "website": "", "subreddit": "/r/placefrance, /r/fuckcars", "center": [1127.5, 718.5], "path": [[1138.5, 711.5], [1137.5, 724.5], [1128.5, 733.5], [1123.5, 733.5], [1114.5, 721.5], [1113.5, 715.5], [1118.5, 715.5], [1117.5, 709.5], [1131.5, 702.5], [1134.5, 704.5], [1135.5, 709.5], [1137.5, 711.5]]}, -{"id": "twtsb3", "submitted_by": "-beam", "name": "First Belgian flag", "description": "The first Belgian flag on r/place. The Belgian comunnity made an alliance with the Hololive community and allowed them to fill a part of their flag with art. This alliance continued on the second Belgian flag.", "website": "", "subreddit": "/r/belgium", "center": [287.5, 663.5], "path": [[270.5, 566.5], [329.5, 569.5], [329.5, 614.5], [321.5, 613.5], [321.5, 644.5], [300.5, 645.5], [303.5, 739.5], [303.5, 827.5], [260.5, 826.5], [259.5, 810.5], [273.5, 810.5], [275.5, 804.5], [283.5, 801.5], [281.5, 783.5], [279.5, 775.5], [275.5, 768.5], [280.5, 762.5], [281.5, 774.5], [293.5, 773.5], [298.5, 763.5], [300.5, 752.5], [301.5, 713.5], [288.5, 718.5], [281.5, 723.5], [271.5, 723.5], [263.5, 725.5], [263.5, 696.5], [270.5, 680.5], [258.5, 675.5], [258.5, 666.5], [248.5, 665.5], [248.5, 631.5], [258.5, 630.5], [257.5, 584.5], [266.5, 575.5], [271.5, 566.5]]}, {"id": "twts9o", "submitted_by": "Smithers888", "name": "Strip Poker Night at the Inventory", "description": "A browser-based strip poker game against various fictional characters from a wide range of franchises.", "website": "https://spnati.net/", "subreddit": "/r/spnati", "center": [986.5, 1752.5], "path": [[974.5, 1743.5], [974.5, 1761.5], [998.5, 1761.5], [998.5, 1743.5]]}, {"id": "twts6g", "submitted_by": "Glitchious404", "name": "BASIL", "description": "BASIL is a major supporting character in OMORI.", "website": "https://www.omori-game.com/en", "subreddit": "/r/OMORI", "center": [880.5, 272.5], "path": [[889.5, 281.5], [871.5, 281.5], [871.5, 275.5], [870.5, 274.5], [869.5, 273.5], [868.5, 272.5], [867.5, 271.5], [866.5, 270.5], [867.5, 269.5], [867.5, 268.5], [868.5, 267.5], [869.5, 266.5], [870.5, 265.5], [871.5, 264.5], [873.5, 264.5], [874.5, 263.5], [876.5, 263.5], [877.5, 262.5], [884.5, 262.5], [885.5, 263.5], [887.5, 263.5], [888.5, 264.5], [889.5, 264.5], [890.5, 265.5], [891.5, 266.5], [892.5, 267.5], [893.5, 268.5], [893.5, 269.5], [892.5, 270.5], [892.5, 273.5], [891.5, 274.5], [890.5, 275.5], [890.5, 281.5]]}, {"id": "twts4t", "submitted_by": "donrip", "name": "White-Red-Whie flag of Belarus", "description": "White-Red-White flag of Belarus. Introduced in 1918. Officially used from 1991 till 1995. After that is used as a Symbol of Belarusian resistance. Got second live with Belarusian revolution in 2020", "website": "", "subreddit": "/r/belarus", "center": [1947.5, 164.5], "path": [[1955.5, 151.5], [1947.5, 157.5], [1942.5, 164.5], [1940.5, 172.5], [1940.5, 174.5], [1948.5, 173.5], [1948.5, 160.5], [1954.5, 160.5], [1954.5, 151.5]]}, {"id": "twtrjr", "submitted_by": "Ok_Penalty_1912", "name": "Erdbeermarmeladenbrot mit Honig", "description": "Tom and the Slice of Bread with Strawberry Jam and Honey (German title;Tom und das Erdbeermarmeladebrot mit Honig) is a German animated television series for children ages 3\u20138 years, created by Andreas Hykade. It centers around Tom making his favorite dish, the Slice of Bread with Strawberry Jam and Honey.", "website": "https://en.wikipedia.org/wiki/Tom_und_das_Erdbeermarmeladebrot_mit_Honig", "subreddit": "/r/placede", "center": [1349.5, 858.5], "path": [[1339.5, 855.5], [1339.5, 863.5], [1340.5, 863.5], [1340.5, 864.5], [1341.5, 864.5], [1341.5, 865.5], [1343.5, 865.5], [1344.5, 865.5], [1344.5, 866.5], [1353.5, 866.5], [1353.5, 865.5], [1354.5, 865.5], [1354.5, 864.5], [1358.5, 864.5], [1358.5, 863.5], [1359.5, 863.5], [1359.5, 859.5], [1358.5, 859.5], [1358.5, 854.5], [1357.5, 854.5], [1357.5, 853.5], [1356.5, 853.5], [1356.5, 852.5], [1354.5, 852.5], [1354.5, 851.5], [1353.5, 851.5], [1353.5, 850.5], [1352.5, 850.5], [1352.5, 850.5], [1352.5, 849.5], [1351.5, 849.5], [1350.5, 849.5], [1350.5, 848.5], [1348.5, 848.5], [1348.5, 849.5], [1346.5, 849.5], [1346.5, 850.5], [1345.5, 850.5], [1345.5, 851.5], [1344.5, 851.5], [1344.5, 852.5], [1343.5, 852.5], [1343.5, 853.5], [1342.5, 852.5], [1343.5, 853.5], [1341.5, 853.5], [1341.5, 854.5], [1341.5, 855.5], [1340.5, 854.5], [1340.5, 855.5], [1339.5, 855.5]]}, {"id": "twtrjn", "submitted_by": "jpepo", "name": "Volt Europa", "description": "Volt is a pro-European and European federalist political movement that also serves as the pan-European structure for subsidiary parties in several EU member states.", "website": "https://www.volteuropa.org/", "subreddit": "/r/VoltEuropa", "center": [1416.5, 1346.5], "path": [[1396.5, 1338.5], [1396.5, 1353.5], [1436.5, 1353.5], [1436.5, 1338.5], [1396.5, 1338.5]]}, {"id": "twtriv", "submitted_by": "Pflaumenpueree", "name": "small bi pride flag", "description": "A small bi pride flag that was added under Maya Few from Ace Attorney", "website": "", "subreddit": "/r/bisexuality, /r/bisexual", "center": [1415.5, 111.5], "path": [[1413.5, 110.5], [1413.5, 112.5], [1416.5, 112.5], [1416.5, 110.5], [1413.5, 110.5], [1413.5, 112.5]]}, -{"id": "twtri9", "submitted_by": "em_tsuj_sti", "name": "USS Ente", "description": "A space duck (Ente), similar in size to the USS Enterprisen. Created by Coldmirror a german radio and tv moderator and parody producer and dubber on Youtube.", "website": "www.youtube.com/user/coldmirror", "subreddit": "/r/Coldmirror", "center": [369.5, 1133.5], "path": [[359.5, 1142.5], [376.5, 1142.5], [380.5, 1138.5], [380.5, 1133.5], [381.5, 1129.5], [379.5, 1124.5], [373.5, 1121.5], [366.5, 1122.5], [365.5, 1124.5], [365.5, 1131.5], [359.5, 1131.5], [358.5, 1130.5], [354.5, 1130.5], [354.5, 1132.5], [355.5, 1133.5]]}, -{"id": "twtrfh", "submitted_by": "Prudent-Ad5308", "name": "Jinx", "description": "Jinx from Arcane holding a smoke in the episode 6 of the first season.nJinx is designed by Fortiche Studio, a french animation studio. Jinx is also a symbol of the KCORP supporters who's an esport team from the french streamer Kamet0", "website": "", "subreddit": "", "center": [41.5, 1573.5], "path": [[55.5, 1690.5], [60.5, 1668.5], [56.5, 1667.5], [54.5, 1661.5], [42.5, 1642.5], [42.5, 1585.5], [40.5, 1557.5], [48.5, 1568.5], [48.5, 1550.5], [43.5, 1547.5], [48.5, 1536.5], [43.5, 1530.5], [57.5, 1509.5], [66.5, 1508.5], [75.5, 1503.5], [82.5, 1505.5], [82.5, 1470.5], [44.5, 1473.5], [34.5, 1482.5], [33.5, 1487.5], [30.5, 1491.5], [29.5, 1496.5], [30.5, 1504.5], [33.5, 1507.5], [32.5, 1515.5], [30.5, 1518.5], [31.5, 1522.5], [31.5, 1530.5], [33.5, 1535.5], [35.5, 1544.5], [32.5, 1544.5], [28.5, 1546.5], [20.5, 1550.5], [20.5, 1565.5], [31.5, 1570.5], [32.5, 1600.5], [21.5, 1596.5], [15.5, 1601.5], [13.5, 1605.5], [13.5, 1618.5], [15.5, 1621.5], [17.5, 1621.5], [19.5, 1622.5], [16.5, 1616.5], [21.5, 1627.5], [13.5, 1632.5], [13.5, 1641.5], [8.5, 1656.5], [3.5, 1656.5], [13.5, 1660.5], [19.5, 1662.5], [22.5, 1665.5], [54.5, 1692.5]]}, +{"id": "twtri9", "submitted_by": "em_tsuj_sti", "name": "USS Ente", "description": "A space duck (Ente), similar in size to the USS Enterprisen. Created by Coldmirror a german radio and tv moderator and parody producer and dubber on Youtube.", "website": "https://www.youtube.com/user/coldmirror", "subreddit": "/r/Coldmirror", "center": [369.5, 1133.5], "path": [[359.5, 1142.5], [376.5, 1142.5], [380.5, 1138.5], [380.5, 1133.5], [381.5, 1129.5], [379.5, 1124.5], [373.5, 1121.5], [366.5, 1122.5], [365.5, 1124.5], [365.5, 1131.5], [359.5, 1131.5], [358.5, 1130.5], [354.5, 1130.5], [354.5, 1132.5], [355.5, 1133.5]]}, {"id": "twtre7", "submitted_by": "Ionie88", "name": "Doom Eternal logo", "description": "A logo of the first-person shooter Doom Eternal by Id Software.", "website": "https://bethesda.net/en/game/doom", "subreddit": "/r/doom", "center": [1180.5, 117.5], "path": [[1164.5, 104.5], [1164.5, 130.5], [1196.5, 130.5], [1196.5, 104.5]]}, {"id": "twtrbx", "submitted_by": "CanIHaveAJoe_YT", "name": "SpiderHeck logo", "description": "SpiderHeck is an indie physics-based brawler multiplayer game where you play as a spider using futuristic weaponry.", "website": "https://www.spiderheck.com", "subreddit": "/r/SpiderHeck", "center": [548.5, 1571.5], "path": [[535.5, 1538.5], [531.5, 1538.5], [531.5, 1534.5], [535.5, 1534.5], [535.5, 1548.5], [537.5, 1548.5], [537.5, 1538.5]]}, {"id": "twtr4n", "submitted_by": "Deano3607", "name": "Cool S", "description": "A typical doodle of the letter S popular in school.", "website": "", "subreddit": "/r/cools", "center": [252.5, 909.5], "path": [[216.5, 889.5], [262.5, 889.5], [262.5, 896.5], [268.5, 901.5], [274.5, 896.5], [279.5, 901.5], [286.5, 896.5], [292.5, 902.5], [292.5, 907.5], [294.5, 912.5], [294.5, 915.5], [296.5, 917.5], [297.5, 925.5], [216.5, 925.5], [216.5, 889.5]]}, @@ -1943,18 +1822,16 @@ {"id": "twtq7y", "submitted_by": "PM_ME_YOUR_TREE_PICS", "name": "Bonito Generation", "description": "The cover of the album Bonito Generation by kero kero bonito", "website": "", "subreddit": "/r/kkb", "center": [971.5, 437.5], "path": [[965.5, 431.5], [976.5, 431.5], [976.5, 442.5], [965.5, 442.5]]}, {"id": "twtq76", "submitted_by": "bordaa", "name": "Holo (Spice & Wolf)", "description": "The character Holo from Spice & Wolf.", "website": "https://spiceandwolf.fandom.com/wiki/Holo", "subreddit": "/r/SpiceandWolf", "center": [234.5, 1248.5], "path": [[231.5, 1242.5], [231.5, 1254.5], [237.5, 1254.5], [237.5, 1242.5], [237.5, 1242.5]]}, {"id": "twtpzv", "submitted_by": "Ollyssss", "name": "Dynamix", "description": "A mural for Dynamix, a mobile rhythm game. nnWas allied with their neighbours to the right, Alone Cord, who provided anti griefing in return for Dynamix's support in the fight against the Belgians.", "website": "https://dynamixc4cat.fandom.com/wiki/Main_Page", "subreddit": "", "center": [1260.5, 1882.5], "path": [[1267.5, 1888.5], [1267.5, 1888.5], [1253.5, 1888.5], [1253.5, 1875.5], [1267.5, 1875.5], [1267.5, 1888.5]]}, -{"id": "twtpt0", "submitted_by": "Rovsnegl", "name": "Holger Danske", "description": "Hogler Danske is a danish Folk hero that sits in the cellar of Kronborg (A danish castle in Helsing\u00f8r) where he is said to be sleeping until Denmark comes into great peril where he will then rise and save Denmark", "website": "https://en.wikipedia.org/wiki/Ogier_the_Dane", "subreddit": "/r/Denmark", "center": [357.5, 152.5], "path": [[344.5, 142.5], [344.5, 167.5], [368.5, 167.5], [368.5, 154.5], [370.5, 152.5], [370.5, 144.5], [366.5, 139.5], [363.5, 139.5], [360.5, 132.5], [354.5, 132.5], [352.5, 138.5], [344.5, 142.5]]}, -{"id": "twtpi9", "submitted_by": "GoJoeyGo123", "name": "Mumbo Jumbo", "description": "Mumbo Jumbo", "website": "https://www.youtube.com/c/MumboJumboOfficial", "subreddit": "", "center": [883.5, 595.5], "path": [[878.5, 591.5], [887.5, 591.5], [887.5, 599.5], [878.5, 599.5]]}, -{"id": "twtpdx", "submitted_by": "secretspine", "name": "Daft Punk", "description": "Portrait of the french band Daft Punk", "website": "", "subreddit": "", "center": [207.5, 1606.5], "path": [[170.5, 1640.5], [245.5, 1640.5], [243.5, 1586.5], [241.5, 1583.5], [231.5, 1575.5], [227.5, 1572.5], [222.5, 1569.5], [219.5, 1568.5], [213.5, 1567.5], [206.5, 1566.5], [199.5, 1566.5], [195.5, 1567.5], [189.5, 1571.5], [177.5, 1576.5], [175.5, 1579.5], [174.5, 1587.5], [172.5, 1591.5], [171.5, 1592.5], [170.5, 1594.5], [170.5, 1639.5]]}, +{"id": "twtpt0", "submitted_by": "Rovsnegl", "name": "Holger Danske", "description": "Hogler Danske is a Danish folk hero that sits in the cellar of Kronborg (A danish castle in Helsing\u00f8r), where he is said to be sleeping until Denmark comes into great peril. He will then rise and save Denmark.", "website": "https://en.wikipedia.org/wiki/Ogier_the_Dane", "subreddit": "/r/Denmark", "center": [357.5, 152.5], "path": [[344.5, 142.5], [344.5, 167.5], [368.5, 167.5], [368.5, 154.5], [370.5, 152.5], [370.5, 144.5], [366.5, 139.5], [363.5, 139.5], [360.5, 132.5], [354.5, 132.5], [352.5, 138.5], [344.5, 142.5]]}, +{"id": "twtpi9", "submitted_by": "GoJoeyGo123", "name": "Mumbo Jumbo", "description": "", "website": "https://www.youtube.com/c/MumboJumboOfficial", "subreddit": "/r/hermitcraft", "center": [883.5, 595.5], "path": [[878.5, 591.5], [887.5, 591.5], [887.5, 599.5], [878.5, 599.5]]}, {"id": "twtpdm", "submitted_by": "Bisonratte", "name": "Fish Cult original fish", "description": "The first fish of the tank. One of the first minute submissions to r/place after u/Burning_Sulphur announced that he will draw a fish. This led to the founding of the Fish Cult", "website": "https://www.reddit.com/r/place/comments/ttq74f/im_going_to_make_a_fish/", "subreddit": "/r/PlaceFishCult", "center": [475.5, 899.5], "path": [[473.5, 898.5], [473.5, 900.5], [476.5, 900.5], [476.5, 898.5], [473.5, 898.5]]}, {"id": "twtp8q", "submitted_by": "-beam", "name": "Second (and longest) Belgian flag", "description": "The second Belgian flag became extremely long, which was not the intention of the discord of r/placebe. The community tried to stop the expansion, but the hivemind (and probably some bots) kept mercilessly continuing downwards, steamrolling artworks out of their way. In exchange, the Belgian discord community offered to help smaller communities who got destroyed by them to rebuild their art on top of the Belgian flag.", "website": "", "subreddit": "/r/belgium", "center": [1310.5, 1286.5], "path": [[1333.5, 925.5], [1333.5, 774.5], [1282.5, 774.5], [1282.5, 912.5], [1285.5, 915.5], [1286.5, 928.5], [1288.5, 1817.5], [1333.5, 1818.5], [1333.5, 920.5]]}, {"id": "twtp7x", "submitted_by": "Bernard903", "name": "Aniki", "description": "A tribute to Billy Herrington also known as Aniki, was an American model that has sadly passed away in 2018.nn\u2642 GachiGASM \u2642", "website": "https://en.wikipedia.org/wiki/Billy_Herrington", "subreddit": "", "center": [694.5, 1004.5], "path": [[667.5, 957.5], [718.5, 957.5], [720.5, 957.5], [720.5, 1050.5], [667.5, 1050.5], [667.5, 957.5]]}, {"id": "twtp6s", "submitted_by": "Deano3607", "name": "Formula 1 - Haas F1 Team", "description": "Haas Racing Team", "website": "", "subreddit": "", "center": [476.5, 810.5], "path": [[467.5, 796.5], [485.5, 796.5], [485.5, 824.5], [467.5, 824.5]]}, {"id": "twtp4t", "submitted_by": "Natou844", "name": "EPITECH logo", "description": "Epitech is a french technology school.", "website": "", "subreddit": "/r/Epitech", "center": [1738.5, 1592.5], "path": [[1701.5, 1583.5], [1701.5, 1601.5], [1775.5, 1600.5], [1775.5, 1583.5], [1775.5, 1583.5], [1701.5, 1583.5]]}, {"id": "twtp45", "submitted_by": "Piktum", "name": "Final Fantasy XIV", "description": "Logo and some creatures from the critically acclaimed MMORPG with an expanded free trial which you can play through the entirety of A Realm Reborn and the award winning Heavensward expansion up to level 60 for free with no restrictions on playtime.", "website": "https://na.finalfantasyxiv.com/lodestone/", "subreddit": "/r/ffxiv", "center": [1270.5, 526.5], "path": [[1251.5, 507.5], [1251.5, 566.5], [1274.5, 566.5], [1274.5, 557.5], [1288.5, 543.5], [1290.5, 543.5], [1290.5, 533.5], [1296.5, 533.5], [1296.5, 519.5], [1290.5, 519.5], [1290.5, 511.5], [1287.5, 511.5], [1287.5, 487.5], [1259.5, 487.5], [1259.5, 507.5], [1251.5, 507.5]]}, -{"id": "twtp3w", "submitted_by": "Space_Thomalice", "name": "CNES", "description": "This is the logo from CNES, the French space agency.", "website": "cnes.fr", "subreddit": "", "center": [1140.5, 763.5], "path": [[1140.5, 750.5], [1138.5, 750.5], [1138.5, 756.5], [1136.5, 758.5], [1132.5, 762.5], [1133.5, 768.5], [1137.5, 771.5], [1144.5, 772.5], [1149.5, 766.5], [1148.5, 760.5], [1143.5, 757.5], [1141.5, 757.5]]}, +{"id": "twtp3w", "submitted_by": "Space_Thomalice", "name": "CNES", "description": "This is the logo from CNES, the French space agency.", "website": "https://cnes.fr", "subreddit": "", "center": [1140.5, 763.5], "path": [[1140.5, 750.5], [1138.5, 750.5], [1138.5, 756.5], [1136.5, 758.5], [1132.5, 762.5], [1133.5, 768.5], [1137.5, 771.5], [1144.5, 772.5], [1149.5, 766.5], [1148.5, 760.5], [1143.5, 757.5], [1141.5, 757.5]]}, {"id": "twtp3f", "submitted_by": "Minerscool", "name": "Root's cat", "description": "Root is a very cool board game, and this cat here is one of the pieces.", "website": "https://ledergames.com/products/root-a-game-of-woodland-might-and-right", "subreddit": "", "center": [8.5, 610.5], "path": [[0.5, 602.5], [3.5, 599.5], [8.5, 604.5], [13.5, 599.5], [17.5, 605.5], [17.5, 615.5], [10.5, 615.5], [10.5, 621.5], [0.5, 621.5], [0.5, 602.5]]}, -{"id": "twtoxq", "submitted_by": "BruninhoBoladao8707", "name": "Machado de Assis", "description": "Joaquim Maria Machado de Assis is considered to be Brazil's greatest writer.", "website": "https://machado.mec.gov.br", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twtoqz", "submitted_by": "armaanbatman", "name": "NoPixel 3.0", "description": "NoPixel is a GTA Roleplay Server, and is the most popular GTA Roleplay server currently in the World.", "website": "https://www.nopixel.net", "subreddit": "/r/nopixel", "center": [1047.5, 893.5], "path": [[1021.5, 898.5], [1021.5, 887.5], [1072.5, 887.5], [1072.5, 898.5], [1042.5, 898.5], [1035.5, 898.5], [1035.5, 898.5], [1021.5, 898.5]]}, {"id": "twtoou", "submitted_by": "ressereus", "name": "Elden Ring Logo", "description": "Logo of the latest FromSoftware Game, Elden Ring", "website": "", "subreddit": "", "center": [197.5, 418.5], "path": [[176.5, 386.5], [213.5, 386.5], [213.5, 394.5], [218.5, 394.5], [218.5, 449.5], [176.5, 449.5]]}, {"id": "twtoni", "submitted_by": "JohannesPohl", "name": "Team Throwback", "description": "A Geometry Dash collab server turned hangout server. Also home to a small osu! section", "website": "https://discord.gg/t85yJZ4jrG", "subreddit": "", "center": [751.5, 673.5], "path": [[747.5, 669.5], [754.5, 669.5], [754.5, 677.5], [747.5, 677.5], [747.5, 669.5]]}, @@ -1970,7 +1847,7 @@ {"id": "twtnld", "submitted_by": "Vinlan", "name": "The Son of Man - Rene Magritte", "description": "Painting by the Belgian surrealist painter Ren\u00e9 Magritte", "website": "https://en.wikipedia.org/wiki/The_Son_of_Man", "subreddit": "", "center": [320.5, 578.5], "path": [[311.5, 569.5], [328.5, 569.5], [328.5, 586.5], [311.5, 586.5], [311.5, 569.5]]}, {"id": "twtnkd", "submitted_by": "Pflaumenpueree", "name": "the Batman logo", "description": "the logo used by the DS superhero Batman.", "website": "https://www.dccomics.com/characters/batman", "subreddit": "/r/Batman", "center": [693.5, 1308.5], "path": [[686.5, 1302.5], [686.5, 1315.5], [700.5, 1315.5], [700.5, 1302.5], [694.5, 1302.5], [693.5, 1301.5], [692.5, 1302.5], [686.5, 1302.5]]}, {"id": "twtndq", "submitted_by": "p1terdeN", "name": "Okabe Rintarou", "description": "An art of Okabe Rintarou from an anime called Steins;Gate with chibi Mayuri and Kurisu to the right", "website": "", "subreddit": "/r/steinsgate", "center": [516.5, 1902.5], "path": [[496.5, 1880.5], [536.5, 1880.5], [536.5, 1926.5], [496.5, 1923.5], [496.5, 1896.5], [496.5, 1880.5]]}, -{"id": "twtndh", "submitted_by": "Memory_System", "name": "L'manburg Flag", "description": "A flag dedicated to remembering the country of L'manburg (formed by Wilbur Soot) from the Minecraft server known as the Dream SMP.", "website": "Discord.gg/25j3Cxnvjt", "subreddit": "/r/lmanburgplace", "center": [120.5, 155.5], "path": [[106.5, 147.5], [134.5, 145.5], [133.5, 165.5], [109.5, 165.5], [106.5, 167.5]]}, +{"id": "twtndh", "submitted_by": "Memory_System", "name": "L'manburg Flag", "description": "A flag dedicated to remembering the country of L'manburg (formed by Wilbur Soot) from the Minecraft server known as the Dream SMP.", "website": "https://Discord.gg/25j3Cxnvjt", "subreddit": "/r/lmanburgplace", "center": [120.5, 155.5], "path": [[106.5, 147.5], [134.5, 145.5], [133.5, 165.5], [109.5, 165.5], [106.5, 167.5]]}, {"id": "twtnc8", "submitted_by": "Deano3607", "name": "Formula 1 - Mercedes", "description": "Mercedes Racing Team", "website": "", "subreddit": "", "center": [457.5, 782.5], "path": [[448.5, 769.5], [467.5, 769.5], [466.5, 795.5], [448.5, 795.5]]}, {"id": "twtn9g", "submitted_by": "Blu_Skyu", "name": "Bill Cipher", "description": "Evil illuminati triangle from Gravity Falls cartoon.", "website": "", "subreddit": "", "center": [1030.5, 1949.5], "path": [[1013.5, 1958.5], [1013.5, 1955.5], [1028.5, 1933.5], [1026.5, 1933.5], [1026.5, 1931.5], [1027.5, 1930.5], [1028.5, 1930.5], [1028.5, 1927.5], [1029.5, 1926.5], [1031.5, 1926.5], [1032.5, 1927.5], [1032.5, 1930.5], [1033.5, 1930.5], [1034.5, 1931.5], [1034.5, 1936.5], [1046.5, 1954.5], [1046.5, 1959.5], [1045.5, 1960.5], [1037.5, 1960.5], [1038.5, 1962.5], [1037.5, 1963.5], [1033.5, 1963.5], [1033.5, 1960.5], [1027.5, 1960.5], [1027.5, 1962.5], [1025.5, 1963.5], [1022.5, 1963.5], [1023.5, 1961.5], [1023.5, 1960.5], [1015.5, 1960.5]]}, {"id": "twtn9b", "submitted_by": "iErik4", "name": "Ori and the Blind Forest", "description": "A beautiful side-scrolling Metroidvania developed in 2015 by Moon Studios. The art for the game is intended to appear painted or hand-drawn, leading to a distinct visual style.", "website": "", "subreddit": "/r/OriandtheBlindForest", "center": [1012.5, 530.5], "path": [[960.5, 510.5], [960.5, 541.5], [979.5, 541.5], [979.5, 551.5], [1060.5, 551.5], [1060.5, 510.5]]}, @@ -1979,10 +1856,9 @@ {"id": "twtn6h", "submitted_by": "NailoOfNalor", "name": "Ubuntu", "description": "Ubuntu is a Linux distribution based on Debian and composed mostly of free and open-source software", "website": "", "subreddit": "/r/Ubuntu", "center": [65.5, 695.5], "path": [[61.5, 691.5], [59.5, 695.5], [65.5, 701.5], [69.5, 700.5], [69.5, 689.5], [62.5, 690.5]]}, {"id": "twtmwp", "submitted_by": "Agsteroid", "name": "Fallen Star", "description": "Fallen Star pixel art from terraria", "website": "", "subreddit": "", "center": [507.5, 1789.5], "path": [[502.5, 1792.5], [502.5, 1793.5], [504.5, 1793.5], [505.5, 1792.5], [506.5, 1792.5], [507.5, 1791.5], [508.5, 1792.5], [509.5, 1792.5], [510.5, 1793.5], [512.5, 1793.5], [512.5, 1792.5], [509.5, 1789.5], [512.5, 1787.5], [510.5, 1787.5], [507.5, 1783.5], [504.5, 1787.5], [502.5, 1787.5], [504.5, 1789.5], [503.5, 1791.5]]}, {"id": "twtmva", "submitted_by": "PiotrObst", "name": "WEiTI", "description": "A group of 81 students from Faculty of Electronics and Information Technology (in Polish WEiTI) at the Warsaw University of Technology in Poland decided to create this.nnWe started by placing the pixels manually, then developed a simple bot and over time made a central server for a botnet made up of tens of bots all coordinating their actions with a central server.", "website": "https://www.elka.pw.edu.pl", "subreddit": "", "center": [673.5, 290.5], "path": [[658.5, 284.5], [688.5, 284.5], [688.5, 296.5], [658.5, 296.5]]}, -{"id": "twtmt2", "submitted_by": "jpepo", "name": "Flag of Albania", "description": "", "website": "https://en.wikipedia.org/wiki/Flag_of_Albania", "subreddit": "", "center": [345.5, 275.5], "path": [[335.5, 253.5], [335.5, 297.5], [355.5, 297.5], [355.5, 253.5], [335.5, 253.5]]}, +{"id": "twtmt2", "submitted_by": "jpepo", "name": "Flag of Albania", "description": "", "website": "https://en.wikipedia.org/wiki/Flag_of_Albania", "subreddit": "/r/albania", "center": [345.5, 275.5], "path": [[335.5, 253.5], [335.5, 297.5], [355.5, 297.5], [355.5, 253.5], [335.5, 253.5]]}, {"id": "twtmsr", "submitted_by": "synnth", "name": "Flag of the Dominican Republic", "description": "Created by the members of the /r/Dominican community, complete with embossed geographic border and a chibi-style green plantain.", "website": "", "subreddit": "/r/Dominican", "center": [49.5, 83.5], "path": [[85.5, 93.5], [85.5, 73.5], [12.5, 73.5], [12.5, 93.5], [85.5, 93.5]]}, {"id": "twtmsl", "submitted_by": "bayerslyf", "name": "Wheatley", "description": "A character from the game Portal 2. Made with contribution from the portal 2 speed running discord.", "website": "https://discord.gg/p2sr", "subreddit": "", "center": [841.5, 622.5], "path": [[831.5, 610.5], [851.5, 609.5], [852.5, 634.5], [829.5, 635.5]]}, -{"id": "twtmqe", "submitted_by": "Deano3607", "name": "Formula 1", "description": "The highest class of international racing.", "website": "https://www.formula1.com/", "subreddit": "/r/formula1", "center": [509.5, 797.5], "path": [[448.5, 769.5], [570.5, 769.5], [570.5, 825.5], [448.5, 825.5]]}, {"id": "twtmmm", "submitted_by": "DG_TBHItzDG", "name": "Kaonashi - Spirited Away", "description": "Kaonashi from the Studio Ghibli anime Spirited Away.", "website": "https://en.wikipedia.org/wiki/Spirited_Away", "subreddit": "", "center": [1419.5, 267.5], "path": [[1432.5, 278.5], [1431.5, 277.5], [1430.5, 276.5], [1429.5, 275.5], [1429.5, 273.5], [1428.5, 273.5], [1428.5, 270.5], [1428.5, 268.5], [1427.5, 267.5], [1426.5, 266.5], [1426.5, 256.5], [1425.5, 255.5], [1424.5, 254.5], [1423.5, 253.5], [1422.5, 252.5], [1422.5, 250.5], [1416.5, 250.5], [1416.5, 251.5], [1415.5, 252.5], [1414.5, 253.5], [1413.5, 254.5], [1412.5, 255.5], [1411.5, 257.5], [1411.5, 264.5], [1411.5, 269.5], [1410.5, 270.5], [1409.5, 271.5], [1409.5, 274.5], [1408.5, 275.5], [1407.5, 276.5], [1406.5, 277.5], [1405.5, 278.5], [1405.5, 279.5], [1432.5, 279.5]]}, {"id": "twtm4y", "submitted_by": "Grace4555", "name": "Obey Me! One Master To Rule Them All", "description": "Obey me is a dating simulation app developed for android and iOS. The main character is transported to Devildom by a summoning ritual to attend Devildom Academy as a exchange student for one year. The main character will be greeted by seven gorgeous men that are avatars of the deadly sins.", "website": "https://shallwedate.jp/obeyme/en/", "subreddit": "/r/obeyme", "center": [1358.5, 394.5], "path": [[1375.5, 405.5], [1376.5, 396.5], [1376.5, 380.5], [1344.5, 382.5], [1345.5, 403.5], [1346.5, 403.5], [1345.5, 405.5], [1375.5, 405.5], [1345.5, 397.5], [1336.5, 398.5], [1337.5, 407.5], [1345.5, 407.5], [1346.5, 399.5], [1376.5, 406.5]]}, {"id": "twtm2k", "submitted_by": "pticle94", "name": "Popcorn", "description": "Popcorn is a show on Twitch organised by the French stream PA Domingo", "website": "https://boutiquepopcorn.fr/", "subreddit": "", "center": [680.5, 1502.5], "path": [[661.5, 1521.5], [699.5, 1521.5], [699.5, 1481.5], [689.5, 1481.5], [684.5, 1486.5], [680.5, 1482.5], [662.5, 1483.5], [661.5, 1521.5]]}, @@ -1991,20 +1867,19 @@ {"id": "twtlm3", "submitted_by": "Fredpoilu", "name": "Robbaz", "description": "That Swedish streamer who sounds like Kermit", "website": "https://www.twitch.tv/robbaz", "subreddit": "/r/Robbaz", "center": [385.5, 1190.5], "path": [[374.5, 1172.5], [374.5, 1208.5], [397.5, 1207.5], [397.5, 1172.5], [374.5, 1172.5]]}, {"id": "twtlk1", "submitted_by": "Minerscool", "name": "Cacabox's logo", "description": "The logo of a small french community of streamers", "website": "https://twitter.com/cacaboxtv", "subreddit": "", "center": [271.5, 1875.5], "path": [[260.5, 1860.5], [281.5, 1860.5], [281.5, 1876.5], [283.5, 1876.5], [283.5, 1889.5], [260.5, 1889.5], [260.5, 1861.5]]}, {"id": "twtlf9", "submitted_by": "kuroneko_zero", "name": "BoJack Horseman", "description": "BoJack Horseman is an American adult animated comedy-drama streaming television series created by Raphael Bob-Waksberg.", "website": "", "subreddit": "", "center": [1531.5, 1397.5], "path": [[1505.5, 1366.5], [1507.5, 1429.5], [1556.5, 1429.5], [1556.5, 1422.5], [1561.5, 1422.5], [1561.5, 1416.5], [1563.5, 1416.5], [1562.5, 1398.5], [1554.5, 1392.5], [1548.5, 1385.5], [1548.5, 1376.5], [1547.5, 1371.5], [1538.5, 1369.5], [1537.5, 1359.5], [1515.5, 1358.5], [1513.5, 1362.5], [1510.5, 1362.5], [1510.5, 1366.5], [1505.5, 1366.5]]}, -{"id": "twtlce", "submitted_by": "jpepo", "name": "Flag of Kosovo", "description": "", "website": "https://en.wikipedia.org/wiki/Flag_of_Kosovo", "subreddit": "", "center": [326.5, 290.5], "path": [[317.5, 283.5], [317.5, 297.5], [334.5, 297.5], [334.5, 283.5], [317.5, 283.5]]}, +{"id": "twtlce", "submitted_by": "jpepo", "name": "Flag of Kosovo", "description": "Flag of Kosovo which was heavily attacked during the whole time it was up, mostly by the Serbian community. The attacks included multiple failed false-flag attacks against r/cricket, r/berkeley and r/IndiaPlace, in an attempt to break their alliance and put them against each-other. The flag managed to survive till the very end.", "website": "https://en.wikipedia.org/wiki/Flag_of_Kosovo", "subreddit": "/r/kosovo", "center": [326.5, 290.5], "path": [[317.5, 283.5], [317.5, 297.5], [334.5, 297.5], [334.5, 283.5], [317.5, 283.5]]}, {"id": "twtlav", "submitted_by": "Deano3607", "name": "The Queen's Guard", "description": "A soldier responsible for guarding the royal residences in the United Kingdom.", "website": "", "subreddit": "", "center": [579.5, 541.5], "path": [[574.5, 541.5], [573.5, 532.5], [575.5, 529.5], [580.5, 529.5], [583.5, 532.5], [583.5, 536.5], [583.5, 544.5], [591.5, 551.5], [575.5, 551.5], [575.5, 541.5]]}, {"id": "twtl02", "submitted_by": "Smithers888", "name": "Perry the Platypus", "description": "From the animated series Phineas and Ferb.", "website": "", "subreddit": "", "center": [989.5, 1885.5], "path": [[985.5, 1889.5], [994.5, 1889.5], [1001.5, 1884.5], [994.5, 1882.5], [984.5, 1880.5], [982.5, 1880.5], [980.5, 1886.5]]}, {"id": "twtkt3", "submitted_by": "geo_metro", "name": "University of Central Florida", "description": "A tile made by UCF students. Contains the university's abbrevation, its logo, and a sword.", "website": "", "subreddit": "/r/ucf", "center": [40.5, 596.5], "path": [[20.5, 591.5], [17.5, 600.5], [20.5, 604.5], [54.5, 604.5], [64.5, 593.5], [64.5, 589.5], [20.5, 589.5]]}, -{"id": "twtks0", "submitted_by": "AstronomerDan", "name": "Autechre", "description": "Autechre is an English electronic music duo that creates music in the IDM genre.", "website": "", "subreddit": "/r/autechre", "center": [0.5, 0.5], "path": []}, {"id": "twtkrr", "submitted_by": "kwak1_", "name": "Salt shaker", "description": "A salt shaker for the Belgian fries. Added by Twitch streamer Fildrong with permission from the Belgian r/place community.", "website": "https://www.twitch.tv/fildrong", "subreddit": "", "center": [279.5, 573.5], "path": [[271.5, 574.5], [276.5, 575.5], [278.5, 574.5], [283.5, 579.5], [287.5, 575.5], [282.5, 570.5], [281.5, 570.5], [279.5, 568.5], [275.5, 569.5], [273.5, 570.5], [271.5, 574.5]]}, {"id": "twtkqn", "submitted_by": "cyrano91", "name": "p'tite baleine", "description": "A Small whale, symbol of the french twitch caster u/LittleBigWhale aka Trivia", "website": "https://www.twitch.tv/littlebigwhale?lang=fr", "subreddit": "", "center": [1650.5, 41.5], "path": [[1639.5, 35.5], [1640.5, 47.5], [1661.5, 47.5], [1661.5, 35.5], [1639.5, 35.5]]}, {"id": "twtkmz", "submitted_by": "Bisonratte", "name": "Fish Cult Squid and Snail", "description": "A small fish and Snail in the Baltic Sea, made by the Fish Cult, a small group of people drawing small fish on r/place, with the permission of the baltic union", "website": "", "subreddit": "/r/PlaceFishCult", "center": [1904.5, 168.5], "path": [[1899.5, 165.5], [1899.5, 166.5], [1900.5, 167.5], [1899.5, 168.5], [1899.5, 169.5], [1899.5, 170.5], [1900.5, 171.5], [1909.5, 171.5], [1909.5, 166.5], [1903.5, 166.5], [1903.5, 165.5], [1902.5, 164.5], [1901.5, 163.5], [1900.5, 164.5], [1899.5, 165.5]]}, -{"id": "twtkki", "submitted_by": "DucAlphaHorus", "name": "Ireland", "description": "Ireland is an island in the North Atlantic Ocean, in north-western Europe. It is separated from Great Britain to its east by the North Channel, the Irish Sea, and St George's Channel. Ireland is the second-largest island of the British Isles, the third-largest in Europe, and the twentieth-largest on Earth.nAt first at war with the French flag above, peace was finally declared. An agreement with r/AnarchyChess was also made to merge the board with the flag.", "website": "", "subreddit": "/r/PlaceIreland", "center": [149.5, 633.5], "path": [[125.5, 497.5], [175.5, 497.5], [173.5, 727.5], [168.5, 732.5], [167.5, 738.5], [169.5, 745.5], [165.5, 754.5], [165.5, 756.5], [164.5, 758.5], [166.5, 762.5], [164.5, 766.5], [159.5, 771.5], [155.5, 776.5], [153.5, 782.5], [143.5, 781.5], [142.5, 780.5], [125.5, 780.5], [125.5, 497.5]]}, +{"id": "twtkki", "submitted_by": "DucAlphaHorus", "name": "Flag of Ireland", "description": "Ireland is an island in the north Atlantic Ocean, in north-western Europe. It is separated from Great Britain to its east by the North Channel, the Irish Sea, and St George's Channel. Ireland is the second-largest island of the British Isles, the third-largest in Europe, and the twentieth-largest on Earth.\nAt first at war with the French flag above, peace was finally declared. An agreement with r/AnarchyChess was also made to merge the board with the flag.", "website": "https://en.wikipedia.org/wiki/Ireland", "subreddit": "/r/PlaceIreland", "center": [149.5, 633.5], "path": [[125.5, 497.5], [175.5, 497.5], [173.5, 727.5], [168.5, 732.5], [167.5, 738.5], [169.5, 745.5], [165.5, 754.5], [165.5, 756.5], [164.5, 758.5], [166.5, 762.5], [164.5, 766.5], [159.5, 771.5], [155.5, 776.5], [153.5, 782.5], [143.5, 781.5], [142.5, 780.5], [125.5, 780.5], [125.5, 497.5]]}, {"id": "twtki0", "submitted_by": "MyriadF5ElderGod", "name": "One piece - Devil fruit", "description": "Three devil fruit from the one piece anime:n- Gomu Gomu no Min- Ope Ope no MIn- Mera Mera no Mi", "website": "", "subreddit": "/r/onepiece", "center": [354.5, 604.5], "path": [[331.5, 596.5], [377.5, 596.5], [377.5, 612.5], [331.5, 612.5]]}, {"id": "twtkgy", "submitted_by": "Misicks0349", "name": "Dagoth Ur", "description": "A small depiction of the villan of The Elder Scrolls III: Morrowind", "website": "", "subreddit": "/r/Morrowind", "center": [1475.5, 1740.5], "path": [[1465.5, 1726.5], [1485.5, 1726.5], [1485.5, 1755.5], [1469.5, 1754.5], [1469.5, 1749.5], [1465.5, 1749.5], [1465.5, 1726.5]]}, {"id": "twtkff", "submitted_by": "wildhoover", "name": "Capibara", "description": "Basically a giant guinea pig.", "website": "https://www.youtube.com/watch?v=3ajPsmbcba8", "subreddit": "", "center": [386.5, 1309.5], "path": [[394.5, 1322.5], [397.5, 1313.5], [400.5, 1312.5], [399.5, 1304.5], [392.5, 1299.5], [385.5, 1299.5], [384.5, 1295.5], [380.5, 1295.5], [379.5, 1297.5], [375.5, 1298.5], [370.5, 1304.5], [374.5, 1309.5], [376.5, 1309.5], [377.5, 1314.5], [376.5, 1321.5], [382.5, 1322.5], [384.5, 1317.5], [390.5, 1317.5], [387.5, 1321.5]]}, {"id": "twtkar", "submitted_by": "GoJoeyGo123", "name": "Asexual pride Flag", "description": "", "website": "", "subreddit": "/r/Asexual", "center": [1695.5, 630.5], "path": [[1722.5, 624.5], [1666.5, 624.5], [1666.5, 625.5], [1653.5, 625.5], [1653.5, 633.5], [1654.5, 633.5], [1655.5, 632.5], [1656.5, 632.5], [1657.5, 633.5], [1658.5, 632.5], [1660.5, 632.5], [1660.5, 633.5], [1661.5, 634.5], [1661.5, 636.5], [1737.5, 636.5], [1737.5, 627.5], [1722.5, 627.5]]}, -{"id": "twtkac", "submitted_by": "SlimsyMuffin", "name": "megan9958's flower", "description": "a mysterious flower (originally created by u/megan9985) that appeared when the D-Cell group were building one of their earlier iterations of quaver (a character from the game they were representing). However, because it coincidentaly fit well into the art they were doing, they decided to keep it and carry it through every new attempt that they made.", "website": "", "subreddit": "", "center": [1365.5, 1281.5], "path": [[1364.5, 1281.5], [1365.5, 1280.5], [1366.5, 1281.5], [1365.5, 1282.5]]}, +{"id": "twtkac", "submitted_by": "SlimsyMuffin", "name": "megan9958's flower", "description": "a mysterious flower (originally created by u/megan9958) that appeared when the D-Cell group were building one of their earlier iterations of quaver (a character from the game they were representing). However, because it coincidentaly fit well into the art they were doing, they decided to keep it and carry it through every new attempt that they made.", "website": "", "subreddit": "", "center": [1365.5, 1281.5], "path": [[1364.5, 1281.5], [1365.5, 1280.5], [1366.5, 1281.5], [1365.5, 1282.5]]}, {"id": "twtk6b", "submitted_by": "Educational-Ad-170", "name": "Konpaku Youmu", "description": "Swords woman from touhou 7 perfect cherry blossom she serves yuyuko", "website": "https://youtu.be/HX1XWwq5Pjg", "subreddit": "/r/touhou", "center": [1714.5, 806.5], "path": [[1699.5, 790.5], [1700.5, 822.5], [1728.5, 822.5], [1728.5, 790.5]]}, {"id": "twtk1q", "submitted_by": "JimboTheAardvark", "name": "Turma da M\u00f4nica (Monica and Friends)", "description": "Characters from the popular children's comic book Turma da M\u00f4nica. From left to right: Chico Bento, Casc\u00e3o, M\u00f4nica, Cebolinha, and Magali.nnnn n", "website": "https://www.turmadamonica.com.br", "subreddit": "", "center": [1174.5, 608.5], "path": [[1145.5, 615.5], [1146.5, 611.5], [1143.5, 610.5], [1145.5, 609.5], [1145.5, 606.5], [1144.5, 603.5], [1143.5, 600.5], [1146.5, 599.5], [1203.5, 600.5], [1203.5, 606.5], [1212.5, 607.5], [1211.5, 611.5], [1200.5, 612.5], [1201.5, 614.5], [1200.5, 615.5], [1202.5, 616.5], [1146.5, 618.5], [1146.5, 617.5]]}, {"id": "twtjuz", "submitted_by": "DG_TBHItzDG", "name": "Feddy", "description": "A meme of Freddy Fazbear from the Five Nights at Freddys game series", "website": "https://en.wikipedia.org/wiki/Five_Nights_at_Freddy%27s", "subreddit": "/r/fivenightsatfreddys", "center": [1853.5, 335.5], "path": [[1866.5, 299.5], [1839.5, 299.5], [1839.5, 370.5], [1852.5, 370.5], [1852.5, 371.5], [1866.5, 371.5], [1866.5, 299.5]]}, @@ -2017,45 +1892,42 @@ {"id": "twtje0", "submitted_by": "IncestSimulator2016", "name": "Girls' Frontline logo Mini 416", "description": "Girls' Frontline is a turn based mobile strategy game developed by China-based studio MICA Team, wherein players control androids known in universe as 'T-Dolls' who all carry versions of real life firearms. The logo is the acronym of the game with a silhouette of the game's protagonist, M4A1. To the lower right of the logo is a pixelated version of one of the game's main characters HK416, a member of Squad 404.", "website": "", "subreddit": "/r/girlsfrontline", "center": [1778.5, 728.5], "path": [[1776.5, 706.5], [1779.5, 710.5], [1790.5, 728.5], [1790.5, 746.5], [1781.5, 745.5], [1775.5, 744.5], [1766.5, 735.5], [1766.5, 726.5], [1770.5, 720.5], [1768.5, 707.5]]}, {"id": "twtj1d", "submitted_by": "Pflaumenpueree", "name": "Phoenix Wright's magatama", "description": "A magatama that belongs to Phoenix Wright, given to him by Maya Fey (who is pictured above) in the video game Ace Attorney", "website": "https://www.ace-attorney.com/", "subreddit": "/r/AceAttorney, /r/plAceAttorney", "center": [1419.5, 109.5], "path": [[1418.5, 112.5], [1419.5, 112.5], [1421.5, 110.5], [1421.5, 108.5], [1420.5, 107.5], [1418.5, 107.5], [1417.5, 108.5], [1417.5, 109.5], [1419.5, 111.5], [1419.5, 111.5], [1419.5, 112.5], [1418.5, 112.5], [1419.5, 112.5], [1419.5, 111.5], [1419.5, 109.5]]}, {"id": "twtj15", "submitted_by": "TheNarcolepticOne", "name": "Hetalia Veneziano Italy", "description": "Italy (Main Character) from the Japanese Anime, Hetalia World Stars, which is a show about personified nations.", "website": "https://discord.gg/hetalia", "subreddit": "/r/Hetalia", "center": [295.5, 1896.5], "path": [[290.5, 1890.5], [300.5, 1890.5], [300.5, 1901.5], [300.5, 1902.5], [290.5, 1902.5], [290.5, 1890.5]]}, -{"id": "twtj09", "submitted_by": "rikupone", "name": "ABU Husky", "description": "One of the mascots for an adult diaper company, Adult Baby Universe, found on one of their products, PeekABU.", "website": "abuniverse.com", "subreddit": "", "center": [46.5, 1006.5], "path": [[35.5, 999.5], [35.5, 1013.5], [56.5, 1013.5], [56.5, 999.5]]}, +{"id": "twtj09", "submitted_by": "rikupone", "name": "ABU Husky", "description": "One of the mascots for an adult diaper company, Adult Baby Universe, found on one of their products, PeekABU.", "website": "https://abuniverse.com", "subreddit": "", "center": [46.5, 1006.5], "path": [[35.5, 999.5], [35.5, 1013.5], [56.5, 1013.5], [56.5, 999.5]]}, {"id": "twtiz1", "submitted_by": "salovana", "name": "Medicine Wheel", "description": "Made by the people over at r/IndianCountry.", "website": "", "subreddit": "/r/IndianCountry", "center": [1462.5, 332.5], "path": [[1457.5, 327.5], [1466.5, 327.5], [1466.5, 336.5], [1457.5, 336.5], [1457.5, 336.5], [1457.5, 327.5]]}, {"id": "twtin9", "submitted_by": "Scaraga", "name": "Zia", "description": "Main character from a french student game, Hoverball Strikers.", "website": "", "subreddit": "", "center": [1954.5, 405.5], "path": [[1951.5, 401.5], [1957.5, 401.5], [1957.5, 409.5], [1951.5, 409.5], [1951.5, 401.5]]}, {"id": "twtikg", "submitted_by": "BlupMcBubbles", "name": "Belgian specialties", "description": "How can anyone talk about Belgium without talking about Belgian fries (the original and sole real fries, Frenchies won't take it away from us), Brussels and Li\u00e8ge waffels or the renowned Belgian dark chocolate? These specialities are unquestionably Belgian's favourite food and yours to be if you ever pay Belgium a visit.n", "website": "", "subreddit": "", "center": [281.5, 589.5], "path": [[291.5, 608.5], [277.5, 608.5], [275.5, 606.5], [275.5, 601.5], [273.5, 601.5], [265.5, 585.5], [268.5, 576.5], [272.5, 571.5], [278.5, 568.5], [281.5, 568.5], [296.5, 585.5], [295.5, 606.5]]}, {"id": "twti6l", "submitted_by": "Zoyos", "name": "Oyasumi", "description": "Oyasumi Punpun (\u304a\u3084\u3059\u307f\u30d7\u30f3\u30d7\u30f3) is a Japanese manga series written and illustrated by Inio Asano.", "website": "https://punpun.fandom.com/wiki/Oyasumi_Punpun_Wiki", "subreddit": "/r/OyasumiPunpun", "center": [1936.5, 296.5], "path": [[1919.5, 270.5], [1919.5, 322.5], [1953.5, 322.5], [1953.5, 270.5]]}, {"id": "twti3y", "submitted_by": "zephyr12345", "name": "Rei Chiquita", "description": "Rei from Neon Genesis Evangelion in plush form. Her usual Burger King crown has been replaced with a Drehmal crown.", "website": "", "subreddit": "/r/ReiAyanami", "center": [484.5, 1454.5], "path": [[472.5, 1444.5], [497.5, 1444.5], [497.5, 1445.5], [499.5, 1445.5], [499.5, 1447.5], [500.5, 1447.5], [500.5, 1457.5], [499.5, 1457.5], [499.5, 1458.5], [498.5, 1458.5], [498.5, 1459.5], [497.5, 1459.5], [497.5, 1460.5], [497.5, 1461.5], [496.5, 1461.5], [496.5, 1462.5], [495.5, 1462.5], [495.5, 1463.5], [494.5, 1463.5], [494.5, 1464.5], [493.5, 1464.5], [493.5, 1465.5], [472.5, 1465.5], [472.5, 1464.5], [470.5, 1464.5], [470.5, 1462.5], [469.5, 1462.5], [469.5, 1459.5], [468.5, 1459.5], [468.5, 1458.5], [467.5, 1458.5], [467.5, 1454.5], [468.5, 1454.5], [468.5, 1453.5], [469.5, 1453.5], [469.5, 1452.5], [470.5, 1452.5], [470.5, 1450.5], [471.5, 1450.5], [471.5, 1448.5], [472.5, 1448.5], [472.5, 1444.5]]}, -{"id": "twti0u", "submitted_by": "FUEL_SSBM", "name": "Senko Rice Cooker", "description": "The tail of Senko from the anime 'The Helpful Fox Senko-san' in a rice cooker. A reference to the opening of said anime where it is depicted in such a manner in multiple scenes.", "website": "https://youtu.be/vvC7KJS_t1Q", "subreddit": "/r/ChurchOfSenko", "center": [620.5, 628.5], "path": [[600.5, 610.5], [600.5, 648.5], [639.5, 648.5], [639.5, 610.5], [638.5, 610.5], [638.5, 608.5], [637.5, 608.5], [637.5, 607.5], [636.5, 607.5], [636.5, 606.5], [635.5, 606.5], [635.5, 605.5], [634.5, 605.5], [634.5, 606.5], [633.5, 606.5], [633.5, 607.5], [631.5, 607.5], [631.5, 606.5], [630.5, 606.5], [630.5, 605.5], [629.5, 605.5], [629.5, 606.5], [628.5, 606.5], [628.5, 607.5], [627.5, 607.5], [627.5, 608.5], [626.5, 608.5], [626.5, 610.5], [600.5, 610.5]]}, +{"id": "twti0u", "submitted_by": "FUEL_SSBM", "name": "Senko Rice Cooker", "description": "The tail of Senko from the anime 'The Helpful Fox Senko-san' in a rice cooker. A reference to the opening of said anime where it is depicted in such a manner in multiple scenes.", "website": "https://youtu.be/vvC7KJS_t1Q", "subreddit": "/r/SewayakiKitsune", "center": [620.5, 628.5], "path": [[600.5, 610.5], [600.5, 648.5], [639.5, 648.5], [639.5, 610.5], [638.5, 610.5], [638.5, 608.5], [637.5, 608.5], [637.5, 607.5], [636.5, 607.5], [636.5, 606.5], [635.5, 606.5], [635.5, 605.5], [634.5, 605.5], [634.5, 606.5], [633.5, 606.5], [633.5, 607.5], [631.5, 607.5], [631.5, 606.5], [630.5, 606.5], [630.5, 605.5], [629.5, 605.5], [629.5, 606.5], [628.5, 606.5], [628.5, 607.5], [627.5, 607.5], [627.5, 608.5], [626.5, 608.5], [626.5, 610.5], [600.5, 610.5]]}, {"id": "twthxz", "submitted_by": "gigamicro", "name": "Egg", "description": "'Egg' is a term for being in denial/unaware of one's own gender or sexuality", "website": "", "subreddit": "/r/egg_irl", "center": [507.5, 446.5], "path": [[502.5, 433.5], [499.5, 436.5], [499.5, 438.5], [498.5, 439.5], [498.5, 443.5], [499.5, 444.5], [499.5, 446.5], [500.5, 447.5], [500.5, 451.5], [501.5, 452.5], [501.5, 454.5], [502.5, 455.5], [502.5, 456.5], [504.5, 458.5], [505.5, 458.5], [506.5, 459.5], [510.5, 459.5], [511.5, 458.5], [512.5, 458.5], [514.5, 456.5], [514.5, 455.5], [515.5, 454.5], [515.5, 452.5], [516.5, 451.5], [516.5, 449.5], [514.5, 447.5], [514.5, 443.5], [513.5, 442.5], [513.5, 441.5], [512.5, 440.5], [514.5, 438.5], [514.5, 437.5], [513.5, 436.5], [513.5, 435.5], [512.5, 434.5], [510.5, 434.5]]}, {"id": "twthwz", "submitted_by": "Mevarit", "name": "bonjwa", "description": "The cursed attempt to create bonjwaO, an emote from the twitch streamer Matteo within the taskbar style.", "website": "https://www.twitch.tv/bonjwa", "subreddit": "/r/bonjwade", "center": [1640.5, 1987.5], "path": [[1601.5, 1999.5], [1601.5, 1974.5], [1617.5, 1974.5], [1620.5, 1976.5], [1624.5, 1974.5], [1642.5, 1974.5], [1642.5, 1975.5], [1643.5, 1975.5], [1643.5, 1976.5], [1644.5, 1976.5], [1644.5, 1977.5], [1647.5, 1977.5], [1647.5, 1978.5], [1657.5, 1978.5], [1657.5, 1977.5], [1661.5, 1977.5], [1664.5, 1977.5], [1664.5, 1982.5], [1666.5, 1982.5], [1666.5, 1981.5], [1669.5, 1981.5], [1669.5, 1982.5], [1671.5, 1982.5], [1671.5, 1977.5], [1673.5, 1977.5], [1673.5, 1975.5], [1675.5, 1975.5], [1675.5, 1985.5], [1672.5, 1987.5], [1672.5, 1989.5], [1674.5, 1990.5], [1678.5, 1990.5], [1680.5, 1988.5], [1680.5, 1987.5], [1677.5, 1985.5], [1677.5, 1974.5], [1679.5, 1974.5], [1679.5, 1977.5], [1682.5, 1977.5], [1682.5, 1978.5], [1683.5, 1978.5], [1683.5, 1999.5], [1601.5, 1999.5]]}, -{"id": "twthsq", "submitted_by": "rikupone", "name": "Constantiam", "description": "The logo and motto of a Minecraft anarchy server called Constantiam.", "website": "https://constantiam.net", "subreddit": "/r/constantiam", "center": [52.5, 1026.5], "path": [[34.5, 1014.5], [34.5, 1036.5], [55.5, 1036.5], [55.5, 1032.5], [88.5, 1032.5], [88.5, 1027.5], [57.5, 1027.5], [56.5, 1014.5]]}, +{"id": "twthsq", "submitted_by": "rikupone", "name": "Constantiam", "description": "The logo and motto of a Minecraft anarchy server called Constantiam.\n\n(information below added by Constantiam team members after initial submission)\n\nSee X1800 Y42 for an extended historical reference\n\nSecond location captured after this whole region was blue-wiped by somebody. We just needed a place that'd be large enough for the whole domain \u00af\\_(\u30c4)_/\u00af", "website": "https://constantiam.net", "subreddit": "/r/constantiam", "center": [52.5, 1026.5], "path": [[35.5, 1019.5], [35.5, 1013.5], [57.5, 1013.5], [57.5, 1027.5], [88.5, 1027.5], [88.5, 1032.5], [55.5, 1032.5], [55.5, 1037.5], [41.5, 1037.5], [41.5, 1034.5], [35.5, 1034.5], [35.5, 1032.5], [34.5, 1032.5], [34.5, 1019.5]]}, {"id": "twthnn", "submitted_by": "Smivyhidev", "name": "Headcrab", "description": "A parasitic alien organism from the Half Life game series.", "website": "https://www.half-life.com", "subreddit": "/r/HalfLife", "center": [1550.5, 92.5], "path": [[1545.5, 86.5], [1545.5, 85.5], [1552.5, 85.5], [1552.5, 86.5], [1555.5, 86.5], [1555.5, 87.5], [1556.5, 87.5], [1556.5, 89.5], [1557.5, 89.5], [1557.5, 91.5], [1558.5, 91.5], [1559.5, 91.5], [1559.5, 93.5], [1560.5, 93.5], [1560.5, 98.5], [1557.5, 98.5], [1557.5, 97.5], [1556.5, 97.5], [1556.5, 95.5], [1555.5, 95.5], [1555.5, 94.5], [1554.5, 95.5], [1552.5, 95.5], [1552.5, 98.5], [1549.5, 98.5], [1549.5, 97.5], [1546.5, 97.5], [1546.5, 94.5], [1545.5, 94.5], [1545.5, 95.5], [1544.5, 95.5], [1545.5, 96.5], [1545.5, 97.5], [1544.5, 97.5], [1540.5, 97.5], [1540.5, 94.5], [1540.5, 93.5], [1541.5, 93.5], [1541.5, 91.5], [1542.5, 91.5], [1542.5, 88.5], [1543.5, 88.5], [1543.5, 87.5], [1544.5, 87.5], [1544.5, 86.5]]}, -{"id": "twthmv", "submitted_by": "MiguJib", "name": "Oyasumi Punpun", "description": "The protagonis of the manga Oyasumi Punpun", "website": "", "subreddit": "", "center": [1937.5, 298.5], "path": [[1919.5, 321.5], [1953.5, 321.5], [1953.5, 271.5], [1934.5, 271.5], [1929.5, 282.5], [1920.5, 282.5]]}, {"id": "twthls", "submitted_by": "Mr_KingConn", "name": "Just a small turtle", "description": "I wanted to make a small turtle somewhere, so I did. -Connor (u/MrKingConn)", "website": "", "subreddit": "", "center": [949.5, 682.5], "path": [[947.5, 683.5], [947.5, 681.5], [950.5, 681.5], [950.5, 683.5], [947.5, 683.5]]}, {"id": "twthg8", "submitted_by": "DG_TBHItzDG", "name": "Bill Cipher", "description": "Bill Cipher from Gravity Falls.", "website": "https://gravityfalls.fandom.com/wiki/Bill_Cipher", "subreddit": "/r/gravityfalls", "center": [1030.5, 1949.5], "path": [[1031.5, 1925.5], [1027.5, 1925.5], [1025.5, 1930.5], [1024.5, 1933.5], [1022.5, 1938.5], [1018.5, 1944.5], [1014.5, 1949.5], [1011.5, 1955.5], [1014.5, 1963.5], [1029.5, 1964.5], [1040.5, 1964.5], [1047.5, 1962.5], [1047.5, 1950.5], [1043.5, 1948.5], [1041.5, 1944.5], [1038.5, 1939.5], [1035.5, 1934.5], [1035.5, 1929.5], [1033.5, 1925.5]]}, -{"id": "twth60", "submitted_by": "MarauLePequenaud", "name": "Thomas Pesquet", "description": "Thomas Pesquet is a French European Space Agency astronaut. He was selected by ESA as a candidate in 2009 and successfully completed two 6-months missions in space aboard ISS in 2017 and 2021.", "website": "https://en.wikipedia.org/wiki/Thomas_Pesquet", "subreddit": "", "center": [140.5, 1709.5], "path": [[112.5, 1714.5], [129.5, 1704.5], [128.5, 1696.5], [126.5, 1692.5], [125.5, 1688.5], [122.5, 1685.5], [119.5, 1679.5], [119.5, 1675.5], [119.5, 1657.5], [127.5, 1648.5], [145.5, 1647.5], [155.5, 1652.5], [158.5, 1657.5], [160.5, 1673.5], [161.5, 1675.5], [160.5, 1679.5], [158.5, 1683.5], [155.5, 1683.5], [155.5, 1694.5], [156.5, 1696.5], [163.5, 1706.5], [166.5, 1706.5], [167.5, 1759.5], [112.5, 1760.5], [112.5, 1714.5]]}, +{"id": "twth60", "submitted_by": "MarauLePequenaud", "name": "Thomas Pesquet", "description": "Thomas Pesquet is a French European Space Agency astronaut. He was selected by ESA as a candidate in 2009 and successfully completed two 6-months missions in space aboard the International Space Station in 2017 and 2021.", "website": "https://en.wikipedia.org/wiki/Thomas_Pesquet", "subreddit": "/r/placefrance", "center": [140.5, 1709.5], "path": [[112.5, 1714.5], [129.5, 1704.5], [128.5, 1696.5], [126.5, 1692.5], [125.5, 1688.5], [122.5, 1685.5], [119.5, 1679.5], [119.5, 1675.5], [119.5, 1657.5], [127.5, 1648.5], [145.5, 1647.5], [155.5, 1652.5], [158.5, 1657.5], [160.5, 1673.5], [161.5, 1675.5], [160.5, 1679.5], [158.5, 1683.5], [155.5, 1683.5], [155.5, 1694.5], [156.5, 1696.5], [163.5, 1706.5], [166.5, 1706.5], [167.5, 1759.5], [112.5, 1760.5], [112.5, 1714.5]]}, {"id": "twth4a", "submitted_by": "Renarii", "name": "Uma Musume: Pretty Derby", "description": "A gacha game about training horse girl idols to participate in hoarse races.", "website": "https://umamusume.jp/", "subreddit": "/r/UmaMusume", "center": [1723.5, 1760.5], "path": [[1710.5, 1747.5], [1736.5, 1747.5], [1736.5, 1773.5], [1710.5, 1773.5], [1710.5, 1747.5]]}, {"id": "twth2c", "submitted_by": "Auegro", "name": "Flag of Senegal", "description": "", "website": "", "subreddit": "/r/senegal", "center": [208.5, 1255.5], "path": [[190.5, 1246.5], [190.5, 1264.5], [226.5, 1265.5], [225.5, 1246.5], [190.5, 1246.5], [191.5, 1247.5], [191.5, 1247.5]]}, {"id": "twtgzo", "submitted_by": "AstronomerDan", "name": "Mira Calix Memorial", "description": "Mira Calix is a south-African musician who creates electronic and classical music, she has recently died on March 28, 2022. Her death has not been disclosedn", "website": "", "subreddit": "", "center": [1295.5, 491.5], "path": [[1288.5, 488.5], [1288.5, 495.5], [1302.5, 495.5], [1303.5, 488.5], [1303.5, 488.5]]}, {"id": "twtgw5", "submitted_by": "Hefty-Celebration797", "name": "STI2D", "description": "Mammif\u00e8re (primate) \u00e0 face nue, au cerveau d\u00e9velopp\u00e9, aux membres pr\u00e9hensiles \u00e0 cinq doigts. Destin\u00e9 a devenir des GEII", "website": "", "subreddit": "/r/STI2D_", "center": [264.5, 1659.5], "path": [[250.5, 1638.5], [278.5, 1638.5], [278.5, 1680.5], [250.5, 1680.5]]}, -{"id": "twtgtg", "submitted_by": "Kinocokoutei", "name": "Yuru Camp\u25b3 (anime)", "description": "Yuru Camp (aka Laid-Back Camp/\u3086\u308b\u30ad\u30e3\u30f3\u25b3) is an anime about teenage girls that take camping trips in the Japanese countryside. They enjoy delicious meals and beautiful sceneries together.", "website": "https://anilist.co/anime/98444/Yuru-Camp/", "subreddit": "/r/yurucamp", "center": [1350.5, 1965.5], "path": [[1328.5, 1971.5], [1334.5, 1958.5], [1361.5, 1958.5], [1365.5, 1963.5], [1371.5, 1963.5], [1371.5, 1971.5]]}, +{"id": "twtgtg", "submitted_by": "Kinocokoutei", "name": "Yuru Camp\u25b3 (anime)", "description": "Yuru Camp (aka Laid-Back Camp/\u3086\u308b\u30ad\u30e3\u30f3\u25b3) is an anime about teenage girls that take camping trips in the Japanese countryside. They enjoy delicious meals and beautiful sceneries together.", "website": "https://anilist.co/anime/98444/Yuru-Camp/", "subreddit": "/r/yurucamp", "center": [1350.5, 1965.5], "path": [[1328.5, 1971.5], [1334.5, 1958.5], [1361.5, 1958.5], [1365.5, 1963.5], [1375.5, 1963.5], [1375.5, 1971.5]]}, {"id": "twtgsq", "submitted_by": "TheSameRareGuy", "name": "Hoshimachi Suisei", "description": "A pixel art of Hoshimachi Suisei, a member of Hololive (Gen 0)", "website": "https://hololive.hololivepro.com/en/talents/hoshimachi-suisei/", "subreddit": "/r/Hololive", "center": [1479.5, 1101.5], "path": [[1494.5, 1075.5], [1488.5, 1075.5], [1487.5, 1077.5], [1478.5, 1077.5], [1477.5, 1078.5], [1476.5, 1078.5], [1475.5, 1079.5], [1474.5, 1082.5], [1474.5, 1084.5], [1472.5, 1084.5], [1470.5, 1085.5], [1466.5, 1088.5], [1465.5, 1091.5], [1463.5, 1091.5], [1462.5, 1092.5], [1467.5, 1094.5], [1468.5, 1096.5], [1468.5, 1100.5], [1468.5, 1103.5], [1464.5, 1103.5], [1462.5, 1103.5], [1456.5, 1104.5], [1452.5, 1107.5], [1452.5, 1120.5], [1500.5, 1120.5], [1499.5, 1115.5], [1498.5, 1113.5], [1493.5, 1113.5], [1493.5, 1106.5], [1501.5, 1106.5], [1500.5, 1096.5], [1496.5, 1091.5], [1496.5, 1085.5], [1499.5, 1082.5]]}, -{"id": "twtgq8", "submitted_by": "g432kjzhg52176tdasuj", "name": "Game Theory", "description": "A logo of the Youtube Channel Game Theory, including the colors of related channels Film Theory, Food Theory (and Theory Theory, an inside joke). The channels are created by Matthew Patrick, a.k.a. MatPat", "website": "https://www.youtube.com/channel/UCo_IB5145EVNcf8hw1Kku7w", "subreddit": "/r/GameTheorists", "center": [883.5, 1808.5], "path": [[874.5, 1799.5], [891.5, 1799.5], [891.5, 1816.5], [874.5, 1799.5]]}, +{"id": "twtgq8", "submitted_by": "g432kjzhg52176tdasuj", "name": "Game Theory", "description": "A logo of the Youtube Channel Game Theory, including the colors of related channels Film Theory, Food Theory (and Theory Theory, an inside joke). The channels are created by Matthew Patrick, a.k.a. MatPat", "website": "https://www.youtube.com/channel/UCo_IB5145EVNcf8hw1Kku7w", "subreddit": "/r/GameTheorists", "center": [883.5, 1808.5], "path": [[874.5, 1799.5], [891.5, 1799.5], [891.5, 1816.5], [874.5, 1816.5], [874.5, 1799.5]]}, {"id": "twtgq7", "submitted_by": "Defu5er", "name": "The flag of BIH", "description": "The flag of BIH including the Stari Most, Bosanski Ljiljan, Vu\u010dko and a memorial for the victim of the Srebrenica genocide.", "website": "", "subreddit": "/r/bih", "center": [348.5, 760.5], "path": [[363.5, 732.5], [352.5, 732.5], [352.5, 743.5], [321.5, 743.5], [321.5, 780.5], [373.5, 780.5], [373.5, 740.5], [363.5, 740.5], [363.5, 732.5]]}, -{"id": "twtgnj", "submitted_by": "Ollabear", "name": "Moon man", "description": "A man on the moon, drinking a Heineken beer. Collab between r/superstonk and r/placenl", "website": "", "subreddit": "", "center": [1991.5, 17.5], "path": [[1983.5, 6.5], [1997.5, 6.5], [1999.5, 28.5], [1985.5, 27.5], [1983.5, 6.5]]}, +{"id": "twtgnj", "submitted_by": "Ollabear", "name": "Moon man", "description": "A man on the moon, drinking a Heineken beer. Collab between r/Superstonk and r/PlaceNL", "website": "", "subreddit": "/r/Superstonk, /r/PlaceNL", "center": [1991.5, 17.5], "path": [[1983.5, 6.5], [1997.5, 6.5], [1999.5, 28.5], [1985.5, 27.5], [1983.5, 6.5]]}, {"id": "twtgek", "submitted_by": "Bisonratte", "name": "Fish Cult Crab Tank", "description": "A group of people trying to build little fish on r/place", "website": "", "subreddit": "/r/PlaceFishCult", "center": [1436.5, 954.5], "path": [[1419.5, 949.5], [1419.5, 951.5], [1420.5, 951.5], [1420.5, 952.5], [1421.5, 952.5], [1421.5, 953.5], [1422.5, 953.5], [1422.5, 955.5], [1421.5, 955.5], [1421.5, 958.5], [1422.5, 958.5], [1422.5, 959.5], [1451.5, 959.5], [1451.5, 949.5], [1419.5, 949.5]]}, {"id": "twtgat", "submitted_by": "CalmCollectedOmega", "name": "Psy Fly", "description": "A tier 4 passive item that was added in The Binding of Isaac from the Repentance DLC.", "website": "", "subreddit": "", "center": [771.5, 1961.5], "path": [[763.5, 1958.5], [763.5, 1958.5], [762.5, 1959.5], [762.5, 1962.5], [763.5, 1963.5], [765.5, 1963.5], [765.5, 1964.5], [766.5, 1965.5], [766.5, 1966.5], [767.5, 1967.5], [768.5, 1967.5], [769.5, 1968.5], [772.5, 1968.5], [773.5, 1967.5], [774.5, 1967.5], [775.5, 1966.5], [775.5, 1965.5], [776.5, 1964.5], [777.5, 1964.5], [778.5, 1963.5], [779.5, 1963.5], [780.5, 1962.5], [780.5, 1959.5], [779.5, 1958.5], [778.5, 1957.5], [775.5, 1957.5], [774.5, 1958.5], [773.5, 1957.5], [773.5, 1956.5], [772.5, 1955.5], [771.5, 1954.5], [771.5, 1953.5], [771.5, 1952.5], [772.5, 1951.5], [772.5, 1950.5], [771.5, 1949.5], [772.5, 1950.5], [772.5, 1951.5], [771.5, 1952.5], [770.5, 1953.5], [770.5, 1954.5], [769.5, 1954.5], [769.5, 1955.5], [770.5, 1955.5], [770.5, 1956.5], [769.5, 1957.5], [768.5, 1958.5], [767.5, 1958.5], [766.5, 1958.5], [766.5, 1957.5], [765.5, 1957.5], [764.5, 1957.5], [764.5, 1957.5], [763.5, 1958.5]]}, {"id": "twtg7l", "submitted_by": "RaceGhost47", "name": "Alex Yiik", "description": "Alex Yiik from the postmodern rpg YIIK, built by viewers at twitch.tv/Altrive", "website": "https://www.twitch.tv/altrive", "subreddit": "/r/Altrive", "center": [51.5, 1109.5], "path": [[41.5, 1096.5], [60.5, 1096.5], [60.5, 1121.5], [41.5, 1121.5]]}, {"id": "twtg72", "submitted_by": "_Kaiji__", "name": "Dankpod", "description": "Australian YouTuber covering iPods, headphones & other things things related to Audio", "website": "", "subreddit": "/r/dankpods", "center": [1426.5, 835.5], "path": [[1406.5, 840.5], [1406.5, 839.5], [1404.5, 838.5], [1403.5, 833.5], [1408.5, 831.5], [1448.5, 831.5], [1450.5, 832.5], [1450.5, 834.5], [1445.5, 840.5], [1406.5, 840.5]]}, {"id": "twtg2q", "submitted_by": "_SoySauce", "name": "Genos", "description": "Genos, an S-rank hero and cyborg as well as a student of Saitama (right). From the anime One Punch Man.", "website": "", "subreddit": "/r/OnePunchMan_place", "center": [1942.5, 1566.5], "path": [[1923.5, 1562.5], [1938.5, 1556.5], [1940.5, 1556.5], [1945.5, 1559.5], [1951.5, 1559.5], [1954.5, 1556.5], [1959.5, 1562.5], [1959.5, 1567.5], [1963.5, 1567.5], [1964.5, 1568.5], [1964.5, 1570.5], [1963.5, 1574.5], [1922.5, 1574.5], [1922.5, 1562.5]]}, -{"id": "twtftt", "submitted_by": "Destructo_NOR", "name": "The S\u00e1mi people", "description": "The S\u00e1mi people are a Finno-Ugric-speaking people inhabiting the region of S\u00e1pmi (formerly known as Lapland), which today encompasses large northern parts of Norway, Sweden, Finland, and of the Murmansk Oblast, Russia", "website": "https://en.wikipedia.org/wiki/S%C3%A1mi_people", "subreddit": "", "center": [500.5, 64.5], "path": [[474.5, 35.5], [473.5, 92.5], [527.5, 93.5], [527.5, 38.5], [525.5, 35.5], [501.5, 35.5], [501.5, 33.5], [500.5, 32.5], [500.5, 31.5], [498.5, 31.5], [497.5, 32.5], [496.5, 32.5], [495.5, 32.5], [493.5, 31.5], [492.5, 31.5], [491.5, 32.5], [490.5, 33.5], [490.5, 35.5], [478.5, 35.5], [473.5, 35.5]]}, -{"id": "twtfpm", "submitted_by": "rikupone", "name": "Aar's Blue Cat", "description": "The blue cat character of a content creator called Aar. Organised and defended by his Discord server.", "website": "aarmastah.xyz", "subreddit": "/r/aarmastah", "center": [61.5, 996.5], "path": [[57.5, 999.5], [64.5, 999.5], [64.5, 992.5], [63.5, 992.5], [63.5, 993.5], [57.5, 993.5]]}, +{"id": "twtftt", "submitted_by": "Destructo_NOR", "name": "The S\u00e1mi people", "description": "The S\u00e1mi people are a Finno-Ugric-speaking people inhabiting the region of S\u00e1pmi (formerly known as Lapland), which today encompasses large northern parts of Norway, Sweden, Finland, and of the Murmansk Oblast, Russia.", "website": "https://en.wikipedia.org/wiki/S%C3%A1mi_people", "subreddit": "/r/place_nordicunion", "center": [500.5, 64.5], "path": [[474.5, 35.5], [473.5, 92.5], [527.5, 93.5], [527.5, 38.5], [525.5, 35.5], [501.5, 35.5], [501.5, 33.5], [500.5, 32.5], [500.5, 31.5], [498.5, 31.5], [497.5, 32.5], [496.5, 32.5], [495.5, 32.5], [493.5, 31.5], [492.5, 31.5], [491.5, 32.5], [490.5, 33.5], [490.5, 35.5], [478.5, 35.5], [473.5, 35.5]]}, +{"id": "twtfpm", "submitted_by": "rikupone", "name": "Aar's Blue Cat", "description": "The blue cat character of a content creator called Aar. Organised and defended by his Discord server.", "website": "https://aarmastah.xyz", "subreddit": "/r/aarmastah", "center": [61.5, 996.5], "path": [[57.5, 999.5], [64.5, 999.5], [64.5, 992.5], [63.5, 992.5], [63.5, 993.5], [57.5, 993.5]]}, {"id": "twtfmn", "submitted_by": "Smithers888", "name": "Tiny TARDIS", "description": "A very small picture of the TARDIS from British TV sci-fi Doctor Who.", "website": "", "subreddit": "/r/tinytardis", "center": [1612.5, 254.5], "path": [[1611.5, 248.5], [1609.5, 250.5], [1609.5, 260.5], [1615.5, 260.5], [1615.5, 250.5], [1613.5, 248.5], [1611.5, 248.5]]}, {"id": "twtfa1", "submitted_by": "Fsdmnt", "name": "Tribute to Zafinho", "description": "A tribute to the late French twitter influencer @Zafinho. Contribution made by his friend Pierre Lapin and its viewers.", "website": "https://twitter.com/Zafinho", "subreddit": "", "center": [932.5, 1501.5], "path": [[916.5, 1495.5], [916.5, 1495.5], [945.5, 1495.5], [946.5, 1495.5], [947.5, 1495.5], [947.5, 1506.5], [916.5, 1506.5], [916.5, 1505.5], [916.5, 1503.5]]}, {"id": "twtf9j", "submitted_by": "Calsymen", "name": "Amogus", "description": "Amogusn", "website": "", "subreddit": "", "center": [1798.5, 790.5], "path": [[1802.5, 798.5], [1802.5, 793.5], [1805.5, 793.5], [1805.5, 786.5], [1803.5, 786.5], [1802.5, 784.5], [1800.5, 782.5], [1795.5, 782.5], [1792.5, 783.5], [1790.5, 787.5], [1792.5, 789.5], [1792.5, 798.5]]}, {"id": "twtf87", "submitted_by": "Zwamdurkel", "name": "Kotori (Takanashi Kiara's Mascot)", "description": "This small bird is a mascot for Hololive English VTuber Takanashi Kiara", "website": "https://www.youtube.com/channel/UCHsx4Hqa-1ORjQTh9TYDhww", "subreddit": "/r/Hololive", "center": [1398.5, 942.5], "path": [[1393.5, 948.5], [1393.5, 936.5], [1403.5, 936.5], [1403.5, 948.5]]}, -{"id": "twtf76", "submitted_by": "MiguJib", "name": "Kosovo", "description": "The flag of Kosovo", "website": "", "subreddit": "", "center": [326.5, 290.5], "path": [[317.5, 283.5], [317.5, 297.5], [334.5, 297.5], [334.5, 283.5], [334.5, 283.5]]}, -{"id": "twtf6j", "submitted_by": "Pflaumenpueree", "name": "Phoenix Wright and Miles Edgeworth", "description": "Two characters from the video game series Ace Attorney, surrounded by an ace heart for the pun, and a few others", "website": "https://www.ace-attorney.com/", "subreddit": "/r/AceAttorney, /r/plAceAttorney", "center": [0.5, 0.5], "path": []}, +{"id": "twtf76", "submitted_by": "MiguJib", "name": "Kosovo", "description": "The flag of Kosovo", "website": "", "subreddit": "/r/kosovo", "center": [326.5, 290.5], "path": [[317.5, 283.5], [317.5, 297.5], [334.5, 297.5], [334.5, 283.5], [334.5, 283.5]]}, {"id": "twtf05", "submitted_by": "gigamicro", "name": "Estradiol Tablet", "description": "A popular method of MTF hormone therapy (dissolve under tongue for best results)", "website": "", "subreddit": "", "center": [524.5, 447.5], "path": [[517.5, 446.5], [519.5, 444.5], [520.5, 444.5], [521.5, 443.5], [526.5, 443.5], [527.5, 444.5], [528.5, 444.5], [530.5, 446.5], [530.5, 447.5], [528.5, 449.5], [527.5, 449.5], [526.5, 450.5], [521.5, 450.5], [520.5, 449.5], [519.5, 449.5], [517.5, 447.5]]}, -{"id": "twteze", "submitted_by": "Cerolean", "name": "The Squeer", "description": "The quadrilaterae family contains over 3,000 species within the Mammalia order. New species are discovered every other week. Common traits include having a square/cube-ish body structure, being extremely timid, and ravenous ramenvores. These creatures tend to occupy a small area of land on the West Coast of North America. The most abundant of them is the illusive Squeers. The bumbling buffoons subsist almost entirely on ramen and can be often seen huddling together in small sunlight patches. nThe great migration occurs yearly during June when Squeezes of Squeers can be seen skittering across streets and over buildings.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twtez1", "submitted_by": "BorendeBuurman", "name": "a row of pokeballs", "description": "a row of different pokeballs and a shiny voltorb", "website": "https://www.pokemon.com/us/", "subreddit": "/r/pokemon", "center": [1013.5, 708.5], "path": [[906.5, 714.5], [906.5, 702.5], [1123.5, 702.5], [1123.5, 705.5], [1118.5, 708.5], [1117.5, 714.5]]}, {"id": "twteuv", "submitted_by": "adr676", "name": "Snakeroom", "description": "The logo and website of the Snakeroom group, a group dedicated to solving and discussing Reddit's yearly April Fools events and official Reddit-run ARGs \u2014 both before and while they happen.", "website": "https://snakeroom.org", "subreddit": "/r/snakeroomalliance", "center": [1784.5, 1192.5], "path": [[1764.5, 1208.5], [1764.5, 1191.5], [1772.5, 1191.5], [1772.5, 1189.5], [1771.5, 1188.5], [1771.5, 1184.5], [1773.5, 1182.5], [1774.5, 1182.5], [1775.5, 1181.5], [1775.5, 1179.5], [1776.5, 1178.5], [1777.5, 1177.5], [1778.5, 1176.5], [1779.5, 1175.5], [1796.5, 1175.5], [1797.5, 1176.5], [1798.5, 1176.5], [1803.5, 1181.5], [1803.5, 1182.5], [1804.5, 1183.5], [1804.5, 1190.5], [1803.5, 1191.5], [1803.5, 1192.5], [1800.5, 1195.5], [1799.5, 1197.5], [1798.5, 1198.5], [1797.5, 1199.5], [1796.5, 1201.5], [1796.5, 1202.5], [1795.5, 1203.5], [1795.5, 1208.5]]}, {"id": "twteuc", "submitted_by": "SnowConure", "name": "Rapid Rabid", "description": "Rapid Rabid is a friend group from sweden who hangout in discord shitposting memes about Gebbos, the character on the canvas.", "website": "", "subreddit": "", "center": [709.5, 1682.5], "path": [[701.5, 1688.5], [701.5, 1675.5], [715.5, 1675.5], [715.5, 1681.5], [716.5, 1682.5], [717.5, 1683.5], [718.5, 1684.5], [718.5, 1688.5]]}, @@ -2064,15 +1936,14 @@ {"id": "twtedw", "submitted_by": "litterally_who6354", "name": "Manchester United", "description": "Popular Football/Soccer team", "website": "", "subreddit": "/r/manchester", "center": [1640.5, 663.5], "path": [[1620.5, 637.5], [1654.5, 637.5], [1654.5, 638.5], [1655.5, 638.5], [1655.5, 639.5], [1656.5, 639.5], [1656.5, 640.5], [1658.5, 640.5], [1658.5, 639.5], [1659.5, 639.5], [1659.5, 638.5], [1660.5, 638.5], [1660.5, 637.5], [1660.5, 689.5], [1620.5, 688.5]]}, {"id": "twte9r", "submitted_by": "srmark", "name": "Hungarian flag and artwork", "description": "The second flag built by the hungarian community on the canvas", "website": "", "subreddit": "/r/hungary", "center": [1334.5, 265.5], "path": [[1171.5, 251.5], [1171.5, 279.5], [1496.5, 278.5], [1496.5, 250.5]]}, {"id": "twte6v", "submitted_by": "-beam", "name": "Art Deco pattern", "description": "A tribute to art deco architectue in Belgium", "website": "", "subreddit": "/r/belgium", "center": [1307.5, 801.5], "path": [[1281.5, 773.5], [1333.5, 773.5], [1332.5, 829.5], [1332.5, 829.5], [1282.5, 829.5], [1282.5, 775.5]]}, -{"id": "twte63", "submitted_by": "SlamaFR", "name": "Liberty Leading the People", "description": "A famous painting made by Eug\u00e8ne Delacroix commemorating the July Revolution of 1830", "website": "", "subreddit": "", "center": [207.5, 1725.5], "path": [[167.5, 1696.5], [167.5, 1755.5], [248.5, 1753.5], [247.5, 1696.5]]}, {"id": "twte5n", "submitted_by": "TroFacing", "name": "Escape From Tarkov", "description": "Escape from Tarkov is a hardcore and realistic online first-person action RPG/Simulator with MMO features.nThe picture is of the helmet of the ingame boss Killa.", "website": "https://www.escapefromtarkov.com/", "subreddit": "/r/EscapefromTarkov", "center": [1976.5, 464.5], "path": [[1966.5, 490.5], [1966.5, 488.5], [1965.5, 487.5], [1965.5, 486.5], [1964.5, 485.5], [1964.5, 484.5], [1956.5, 476.5], [1956.5, 474.5], [1955.5, 473.5], [1955.5, 471.5], [1954.5, 470.5], [1953.5, 469.5], [1953.5, 458.5], [1954.5, 457.5], [1954.5, 456.5], [1955.5, 455.5], [1955.5, 454.5], [1956.5, 453.5], [1956.5, 451.5], [1957.5, 450.5], [1957.5, 448.5], [1961.5, 444.5], [1962.5, 444.5], [1962.5, 443.5], [1965.5, 443.5], [1966.5, 442.5], [1968.5, 442.5], [1968.5, 441.5], [1981.5, 441.5], [1982.5, 442.5], [1984.5, 442.5], [1985.5, 443.5], [1987.5, 443.5], [1991.5, 447.5], [1991.5, 448.5], [1992.5, 448.5], [1994.5, 450.5], [1994.5, 452.5], [1995.5, 453.5], [1996.5, 453.5], [1996.5, 456.5], [1997.5, 457.5], [1998.5, 458.5], [1998.5, 481.5], [1977.5, 481.5], [1977.5, 490.5], [1966.5, 490.5]]}, {"id": "twte4k", "submitted_by": "litterally_who6354", "name": "Paimon", "description": "Mascot character of Genshin Impact. The blue stars are called Primogems and are the premium currency of the game", "website": "", "subreddit": "/r/Genshin_Impact", "center": [1854.5, 743.5], "path": [[1834.5, 741.5], [1838.5, 738.5], [1837.5, 736.5], [1836.5, 735.5], [1837.5, 734.5], [1838.5, 734.5], [1838.5, 730.5], [1838.5, 729.5], [1837.5, 729.5], [1837.5, 727.5], [1836.5, 727.5], [1837.5, 726.5], [1872.5, 726.5], [1872.5, 760.5], [1872.5, 759.5], [1871.5, 759.5], [1869.5, 759.5], [1868.5, 759.5], [1868.5, 760.5], [1868.5, 759.5], [1865.5, 759.5], [1860.5, 759.5], [1859.5, 761.5], [1850.5, 761.5], [1849.5, 761.5], [1849.5, 762.5], [1849.5, 761.5], [1849.5, 759.5], [1843.5, 759.5], [1843.5, 760.5], [1841.5, 760.5], [1841.5, 759.5], [1837.5, 759.5], [1839.5, 756.5], [1839.5, 755.5], [1834.5, 749.5], [1836.5, 746.5], [1837.5, 744.5]]}, {"id": "twte2s", "submitted_by": "Mevarit", "name": "Peepo the dog", "description": "Dog of the streamer Leon from the collective bonjwa. Peepo is a very good boy and likes to sniff Mike.", "website": "https://www.twitch.tv/bonjwa", "subreddit": "/r/bonjwade", "center": [1530.5, 1261.5], "path": [[1517.5, 1250.5], [1542.5, 1250.5], [1542.5, 1273.5], [1522.5, 1273.5], [1522.5, 1271.5], [1519.5, 1271.5], [1519.5, 1257.5], [1517.5, 1257.5], [1517.5, 1250.5]]}, {"id": "twte0y", "submitted_by": "Blizhazard", "name": "Chibi Holostars", "description": "Chibi figures of 3 members of holostars which is a male branch of hololive. From top to bottom: Hanasaki Miyabi, Astel Leda and Kageyama Shien.", "website": "https://holostars.hololivepro.com/en/", "subreddit": "/r/holostars", "center": [1397.5, 915.5], "path": [[1395.5, 903.5], [1401.5, 903.5], [1402.5, 904.5], [1402.5, 926.5], [1394.5, 926.5], [1393.5, 924.5], [1392.5, 924.5], [1392.5, 911.5], [1393.5, 904.5], [1393.5, 904.5]]}, {"id": "twtdul", "submitted_by": "litterally_who6354", "name": "Quackity", "description": "Toontown avatar of Minecraft YouTuber and streamer Quackity. Built by /r/Quackity, /r/ToonTown, Quacktwt, and Patitotwt", "website": "https://youtube.fandom.com/wiki/Quackity", "subreddit": "/r/quackity", "center": [819.5, 1263.5], "path": [[786.5, 1225.5], [786.5, 1300.5], [852.5, 1300.5], [852.5, 1225.5]]}, -{"id": "twtdk5", "submitted_by": "ptitcoeeurrr", "name": "HHUT", "description": "HHUT, AKA Hip-Hop Ultimate Team. The small French community found their little heaven to place the logo. nnHip-Hop Ultimate Team is for all people who like rap and hip-hop. They are making real cards playable based on artists (Drake, Kanye West, Eminem...).", "website": "hhut.fr", "subreddit": "", "center": [1127.5, 1872.5], "path": [[1120.5, 1881.5], [1135.5, 1882.5], [1135.5, 1863.5], [1120.5, 1863.5], [1119.5, 1863.5], [1120.5, 1864.5], [1120.5, 1864.5], [1119.5, 1875.5], [1120.5, 1880.5]]}, +{"id": "twtdk5", "submitted_by": "ptitcoeeurrr", "name": "HHUT", "description": "HHUT, AKA Hip-Hop Ultimate Team. The small French community found their little heaven to place the logo. nnHip-Hop Ultimate Team is for all people who like rap and hip-hop. They are making real cards playable based on artists (Drake, Kanye West, Eminem...).", "website": "https://hhut.fr", "subreddit": "", "center": [1127.5, 1872.5], "path": [[1120.5, 1881.5], [1135.5, 1882.5], [1135.5, 1863.5], [1120.5, 1863.5], [1119.5, 1863.5], [1120.5, 1864.5], [1120.5, 1864.5], [1119.5, 1875.5], [1120.5, 1880.5]]}, {"id": "twtdfv", "submitted_by": "JimboTheAardvark", "name": "Brazil", "description": "A panel featuring the Brazilian flag and several natural and cultural features of the country.", "website": "", "subreddit": "/r/brasil", "center": [1099.5, 593.5], "path": [[911.5, 568.5], [909.5, 619.5], [1288.5, 617.5], [1290.5, 567.5], [1287.5, 567.5]]}, -{"id": "twtdep", "submitted_by": "litterally_who6354", "name": "Kasane Teto", "description": "Popular Utau character/voice, a voice synthesizer program made to make music", "website": "", "subreddit": "", "center": [1816.5, 651.5], "path": [[1806.5, 638.5], [1806.5, 642.5], [1805.5, 642.5], [1805.5, 646.5], [1805.5, 647.5], [1806.5, 647.5], [1806.5, 648.5], [1808.5, 648.5], [1808.5, 656.5], [1807.5, 656.5], [1807.5, 664.5], [1825.5, 664.5], [1825.5, 638.5]]}, +{"id": "twtdep", "submitted_by": "litterally_who6354", "name": "Kasane Teto", "description": "Kasane Teto is a character and voicebank for the singing synthesizer program UTAU, often used in music. Coincidentally, like r/place, Teto was originally an April Fool's joke.", "website": "", "subreddit": "/r/utau", "center": [1816.5, 651.5], "path": [[1806.5, 638.5], [1806.5, 642.5], [1805.5, 642.5], [1805.5, 646.5], [1805.5, 647.5], [1806.5, 647.5], [1806.5, 648.5], [1808.5, 648.5], [1808.5, 656.5], [1807.5, 656.5], [1807.5, 664.5], [1825.5, 664.5], [1825.5, 638.5]]}, {"id": "twtde8", "submitted_by": "DrakeScoTT123", "name": "Fattypillow", "description": "Popular czech youtuber and streamer!n", "website": "", "subreddit": "/r/Fattypillow", "center": [1568.5, 1241.5], "path": [[1536.5, 1233.5], [1599.5, 1233.5], [1599.5, 1249.5], [1536.5, 1249.5], [1536.5, 1249.5], [1536.5, 1233.5]]}, {"id": "twtday", "submitted_by": "Dry-Acanthopterygii9", "name": "Mizutsune", "description": "A monster from Monster Hunter game series, loved by its community. His pink color palette and his ability to create bubbles make him so unique", "website": "", "subreddit": "/r/MonsterHunter", "center": [1891.5, 1581.5], "path": [[1908.5, 1562.5], [1908.5, 1600.5], [1874.5, 1600.5], [1875.5, 1562.5]]}, {"id": "twtd6i", "submitted_by": "FlonflonMusique", "name": "Star Academy (reste du logo)", "description": "Les restes du logo Star Academy (rip petitanj) cr\u00e9\u00e9 le 04/04/2022 par les doux dingues sur la cha\u00eene Flonflon_musique", "website": "https://twitch.tv/flonflon_musique", "subreddit": "", "center": [1047.5, 1320.5], "path": [[1040.5, 1315.5], [1038.5, 1331.5], [1053.5, 1332.5], [1055.5, 1302.5]]}, @@ -2081,11 +1952,11 @@ {"id": "twtd3k", "submitted_by": "fortis_99", "name": "Girls Frontline", "description": "Logo of Girls Frontline, a tactical gacha game. Featuring anime android girls representing firearms.", "website": "https://gf.sunborngame.com/", "subreddit": "/r/GirlsFrontline", "center": [1778.5, 729.5], "path": [[1765.5, 725.5], [1769.5, 725.5], [1771.5, 722.5], [1768.5, 720.5], [1768.5, 717.5], [1769.5, 717.5], [1769.5, 715.5], [1768.5, 715.5], [1768.5, 711.5], [1769.5, 711.5], [1770.5, 710.5], [1771.5, 710.5], [1772.5, 707.5], [1772.5, 708.5], [1775.5, 705.5], [1776.5, 705.5], [1780.5, 709.5], [1780.5, 711.5], [1779.5, 711.5], [1779.5, 713.5], [1781.5, 716.5], [1783.5, 717.5], [1784.5, 720.5], [1785.5, 723.5], [1787.5, 726.5], [1790.5, 725.5], [1790.5, 737.5], [1790.5, 742.5], [1790.5, 747.5], [1788.5, 747.5], [1787.5, 748.5], [1783.5, 747.5], [1783.5, 747.5], [1782.5, 746.5], [1780.5, 745.5], [1776.5, 745.5], [1774.5, 744.5], [1772.5, 743.5], [1771.5, 740.5], [1770.5, 739.5], [1771.5, 738.5], [1770.5, 738.5], [1772.5, 737.5], [1765.5, 737.5], [1765.5, 737.5]]}, {"id": "twtd3c", "submitted_by": "litterally_who6354", "name": "Perfect Cherry Blossom", "description": "3 characters from the touhou series, specifically from the 7th game, Perfect Cherry BlossomnFrom left to Right we have nYoumu Konpaku, Yuyuko Saigyouji and nYukari Yakumo", "website": "", "subreddit": "/r/touhou", "center": [1743.5, 809.5], "path": [[1701.5, 791.5], [1701.5, 828.5], [1785.5, 830.5], [1785.5, 790.5], [1748.5, 790.5], [1748.5, 789.5], [1727.5, 789.5], [1727.5, 790.5], [1701.5, 790.5]]}, {"id": "twtd2d", "submitted_by": "Turboboobs3000", "name": "TWRP", "description": "TWRP is a groovy band check this out", "website": "https://www.youtube.com/watch?v=AmRAl1k9DFA&list=PL4yDUqY9uMwiRXSzsZiwFLWJ6dS5f_Hya", "subreddit": "", "center": [1046.5, 1767.5], "path": [[1041.5, 1754.5], [1041.5, 1753.5], [1052.5, 1753.5], [1055.5, 1755.5], [1059.5, 1760.5], [1061.5, 1765.5], [1061.5, 1772.5], [1059.5, 1776.5], [1057.5, 1778.5], [1051.5, 1779.5], [1037.5, 1779.5], [1034.5, 1776.5], [1032.5, 1771.5], [1033.5, 1761.5], [1037.5, 1756.5], [1039.5, 1754.5], [1041.5, 1753.5], [1043.5, 1753.5]]}, -{"id": "twtcu7", "submitted_by": "MinorMynah", "name": "The Kenyan flag", "description": "The Kenyan flag - with its signature shield", "website": "", "subreddit": "", "center": [788.5, 999.5], "path": [[781.5, 982.5], [795.5, 982.5], [795.5, 1016.5], [781.5, 1016.5]]}, +{"id": "twtcu7", "submitted_by": "MinorMynah", "name": "The Kenyan flag", "description": "The Kenyan flag - with its signature shield", "website": "", "subreddit": "/r/kenya", "center": [788.5, 999.5], "path": [[781.5, 982.5], [795.5, 982.5], [795.5, 1016.5], [781.5, 1016.5]]}, {"id": "twtct2", "submitted_by": "Citipati_", "name": "Mizutsune", "description": "Mizutsune is a popular monster from the game Monster hunter", "website": "", "subreddit": "/r/MonsterHunter", "center": [1891.5, 1581.5], "path": [[1874.5, 1599.5], [1874.5, 1563.5], [1907.5, 1563.5], [1907.5, 1599.5]]}, {"id": "twtcrq", "submitted_by": "Fishes_Glubs & GamerKingFaiz", "name": "University of California", "description": "University of California - logos are of each individual campus. From left to right, top to bottom: Berkeley, Irvine, San Diego, Santa Cruz, Merced, Santa Barbara, Riverside, Los Angeles, Davis", "website": "https://www.universityofcalifornia.edu/", "subreddit": "/r/UofCalifornia", "center": [1893.5, 346.5], "path": [[1868.5, 321.5], [1917.5, 321.5], [1917.5, 371.5], [1868.5, 371.5]]}, {"id": "twtcpa", "submitted_by": "Wistian_", "name": "TRIA", "description": "A ROBLOX-based group most notable for the game TRIA.os.", "website": "", "subreddit": "", "center": [575.5, 1093.5], "path": [[563.5, 1082.5], [589.5, 1082.5], [589.5, 1089.5], [587.5, 1105.5], [562.5, 1105.5], [562.5, 1084.5], [563.5, 1082.5]]}, -{"id": "twtcn7", "submitted_by": "-criticalFUSION-", "name": "Tetris Perfect Clear Opening", "description": "One of the most common ways to use the first bag of pieces the player receives in a round of competitive Tetris, mostly for its ability to regularly produce a Perfect Clear.", "website": "", "subreddit": "/r/Tetris", "center": [1506.5, 1748.5], "path": [[1486.5, 1739.5], [1486.5, 1757.5], [1527.5, 1757.5], [1526.5, 1739.5]]}, +{"id": "twtcn7", "submitted_by": "chocomint1", "name": "Tetris - PCO", "description": "A recreation of the Tetris Perfect Clear Opener, created by the Placetris community in conjunction with the Gacha Alliance. \nThe PCO is a popular opener with a 84.64% chance to achieve a perfect clear (if the I piece is kept on hold), and is often used in competitive matches due to its ease of setup, speed, and options to continue into other setups (e.g. 5-4 stacking) if the perfect clear fails. \nThis build features 4x4 tetrominoes.", "website": "https://discord.gg/SUdBteaCqd", "subreddit": "/r/Tetris", "center": [1506.5, 1748.5], "path": [[1486.5, 1739.5], [1486.5, 1757.5], [1527.5, 1757.5], [1526.5, 1739.5]]}, {"id": "twtclw", "submitted_by": "Troloze", "name": "Machado de Assis", "description": "One of the most influencial brazilian writter of all time, born in 1839, responsible for various titles as Dom Casmurro, Mem\u00f3rias P\u00f3stumas de Br\u00e1s Cubas, and many more.", "website": "https://en.wikipedia.org/wiki/Machado_de_Assis", "subreddit": "", "center": [919.5, 605.5], "path": [[914.5, 616.5], [914.5, 612.5], [913.5, 609.5], [911.5, 608.5], [910.5, 607.5], [910.5, 596.5], [912.5, 595.5], [914.5, 594.5], [922.5, 593.5], [924.5, 594.5], [925.5, 595.5], [926.5, 596.5], [927.5, 599.5], [926.5, 599.5], [926.5, 600.5], [927.5, 602.5], [927.5, 607.5], [927.5, 610.5], [927.5, 613.5], [925.5, 617.5], [922.5, 618.5], [919.5, 619.5], [915.5, 619.5], [914.5, 617.5]]}, {"id": "twtcdt", "submitted_by": "litterally_who6354", "name": "Steins;Gate cast", "description": "This pixel art represents Okabe Rintaro with his two assistants: Kurisu Makise (girl with red hair) and Mayuri Shiina (girl with the hat) from the visual novel Steins;Gate", "website": "", "subreddit": "/r/steinsgate", "center": [516.5, 1903.5], "path": [[495.5, 1880.5], [495.5, 1908.5], [497.5, 1908.5], [499.5, 1909.5], [500.5, 1911.5], [500.5, 1913.5], [496.5, 1920.5], [496.5, 1923.5], [499.5, 1923.5], [501.5, 1926.5], [536.5, 1927.5], [536.5, 1880.5], [512.5, 1880.5]]}, {"id": "twtc4w", "submitted_by": "poptartcrap", "name": "r/trees", "description": "A leaf created and kept by the community", "website": "", "subreddit": "/r/trees", "center": [735.5, 414.5], "path": [[719.5, 399.5], [719.5, 428.5], [751.5, 428.5], [751.5, 399.5]]}, @@ -2100,16 +1971,14 @@ {"id": "twtar6", "submitted_by": "Calsymen", "name": "Aston Villa Logo", "description": "Aston Villa Football culb is one of the oldest english club currently in the premier league", "website": "", "subreddit": "/r/AVFC", "center": [631.5, 1700.5], "path": [[642.5, 1716.5], [620.5, 1716.5], [620.5, 1684.5], [642.5, 1685.5]]}, {"id": "twtaas", "submitted_by": "Chef_Senpai", "name": "Kamisato Ayaka (\u795e\u91cc\u7dbe\u83ef)", "description": "She is the oldest daughter of the Kamisato Clan and sister of Kamisato Ayato", "website": "", "subreddit": "/r/AyakaMains", "center": [1138.5, 1555.5], "path": [[1155.5, 1523.5], [1117.5, 1523.5], [1116.5, 1573.5], [1124.5, 1573.5], [1128.5, 1566.5], [1133.5, 1567.5], [1136.5, 1573.5], [1133.5, 1576.5], [1137.5, 1580.5], [1130.5, 1594.5], [1138.5, 1601.5], [1141.5, 1597.5], [1140.5, 1595.5], [1155.5, 1595.5], [1155.5, 1523.5]]}, {"id": "twtaar", "submitted_by": "Quadjunge", "name": "Peepo", "description": "Emote from a popular german Twitch channel. It shows the streamers dog, called peepo.nn", "website": "https://www.twitch.tv/bonjwa", "subreddit": "", "center": [1530.5, 1261.5], "path": [[1518.5, 1250.5], [1518.5, 1271.5], [1522.5, 1271.5], [1522.5, 1273.5], [1542.5, 1273.5], [1542.5, 1250.5], [1518.5, 1250.5]]}, -{"id": "twta73", "submitted_by": "BlupMcBubbles", "name": "The son of Man", "description": "One of the famous painting of Ren\u00e9 Magritte, a Belgian surrealist painter.", "website": "", "subreddit": "", "center": [320.5, 578.5], "path": [[311.5, 570.5], [328.5, 570.5], [328.5, 586.5], [311.5, 586.5]]}, {"id": "twta68", "submitted_by": "MinorMynah", "name": "Flag of Mauritius", "description": "", "website": "", "subreddit": "", "center": [723.5, 1070.5], "path": [[721.5, 1069.5], [722.5, 1069.5], [723.5, 1069.5], [724.5, 1069.5], [725.5, 1069.5], [726.5, 1069.5], [726.5, 1070.5], [721.5, 1070.5], [721.5, 1071.5], [721.5, 1071.5], [722.5, 1071.5], [722.5, 1071.5], [725.5, 1071.5], [726.5, 1072.5], [721.5, 1072.5]]}, {"id": "twta3t", "submitted_by": "em_tsuj_sti", "name": "Berlin Victory Column with Amogus", "description": "A column in berlin erected in 1864 to commemorate the Prussian victory in the Second Schleswig WarnIts top which normally depicts the goddess of victory was replaced by an Amogus statue by the germans themselves because they feared someone would do it either way", "website": "https://en.wikipedia.org/wiki/Berlin_Victory_Column", "subreddit": "/r/placeDE", "center": [1797.5, 835.5], "path": [[1817.5, 869.5], [1780.5, 869.5], [1780.5, 862.5], [1786.5, 862.5], [1786.5, 850.5], [1791.5, 850.5], [1793.5, 845.5], [1793.5, 804.5], [1791.5, 803.5], [1792.5, 782.5], [1801.5, 782.5], [1803.5, 786.5], [1805.5, 786.5], [1805.5, 793.5], [1802.5, 793.5], [1803.5, 799.5], [1801.5, 805.5], [1801.5, 845.5], [1803.5, 849.5], [1810.5, 850.5], [1809.5, 862.5]]}, {"id": "twta2u", "submitted_by": "DiamondAirWind", "name": "Super Animal Royale", "description": "A Battle Royale game with cute animals as avatars!", "website": "https://animalroyale.fandom.com/wiki/Super_Animal_Royale_Wiki", "subreddit": "/r/animalroyale", "center": [1375.5, 728.5], "path": [[1364.5, 711.5], [1386.5, 711.5], [1387.5, 746.5], [1364.5, 745.5], [1364.5, 743.5]]}, -{"id": "twt9yw", "submitted_by": "MarauLePequenaud", "name": "Nepal (french rapper)", "description": "French rapper who sadly passed away in 2019. The community decided to commemorate him for his contribution to french rap music.", "website": "https://fr.wikipedia.org/wiki/N%C3%A9pal_(rappeur)", "subreddit": "", "center": [228.5, 1536.5], "path": [[203.5, 1565.5], [211.5, 1534.5], [217.5, 1510.5], [213.5, 1502.5], [213.5, 1493.5], [212.5, 1493.5], [212.5, 1492.5], [213.5, 1486.5], [217.5, 1483.5], [219.5, 1483.5], [225.5, 1483.5], [230.5, 1488.5], [235.5, 1502.5], [234.5, 1505.5], [241.5, 1512.5], [245.5, 1520.5], [247.5, 1540.5], [247.5, 1577.5], [242.5, 1581.5], [236.5, 1580.5], [225.5, 1570.5], [219.5, 1568.5], [211.5, 1566.5], [203.5, 1566.5], [203.5, 1565.5]]}, +{"id": "twt9yw", "submitted_by": "MarauLePequenaud", "name": "N\u00e9pal", "description": "N\u00e9pal was a French rapper and beatmaker. He was also known as KLM and Grandmaster Splinter. N\u00e9pal attached great importance to remaining anonymous, covering his face with a hood or a mask. N\u00e9pal died on 9 November 2019. The announcement came after 11 days on social networks on 20 November 2019, including the posthumous release of his album Adios Bahamas that he had just completed recording. The circumstances of his death are unknown.", "website": "https://en.wikipedia.org/wiki/N%C3%A9pal_(rapper)", "subreddit": "/r/placefrance", "center": [228.5, 1536.5], "path": [[203.5, 1565.5], [211.5, 1534.5], [217.5, 1510.5], [213.5, 1502.5], [213.5, 1493.5], [212.5, 1493.5], [212.5, 1492.5], [213.5, 1486.5], [217.5, 1483.5], [219.5, 1483.5], [225.5, 1483.5], [230.5, 1488.5], [235.5, 1502.5], [234.5, 1505.5], [241.5, 1512.5], [245.5, 1520.5], [247.5, 1540.5], [247.5, 1577.5], [242.5, 1581.5], [236.5, 1580.5], [225.5, 1570.5], [219.5, 1568.5], [211.5, 1566.5], [203.5, 1566.5], [203.5, 1565.5]]}, {"id": "twt9xv", "submitted_by": "GladOSkar", "name": "The Expanse", "description": "Hard Sci-Fi Book and TV Series about interplanetary life and politics", "website": "", "subreddit": "/r/theexpanse", "center": [1803.5, 159.5], "path": [[1800.5, 155.5], [1800.5, 142.5], [1819.5, 142.5], [1819.5, 148.5], [1832.5, 148.5], [1832.5, 154.5], [1820.5, 154.5], [1820.5, 171.5], [1777.5, 171.5], [1777.5, 155.5]]}, {"id": "twt9ky", "submitted_by": "--Xer0--", "name": "Ralsei", "description": "Ralsei is a popular character from the game Deltarune, which was developed by Undertale creator toby fox.", "website": "https://deltarune.com/", "subreddit": "/r/deltarune", "center": [692.5, 795.5], "path": [[685.5, 779.5], [688.5, 780.5], [689.5, 780.5], [689.5, 776.5], [693.5, 776.5], [693.5, 781.5], [696.5, 781.5], [696.5, 780.5], [700.5, 780.5], [700.5, 783.5], [702.5, 785.5], [705.5, 786.5], [705.5, 798.5], [705.5, 800.5], [707.5, 803.5], [706.5, 804.5], [705.5, 805.5], [702.5, 808.5], [694.5, 809.5], [694.5, 813.5], [692.5, 816.5], [685.5, 816.5], [685.5, 812.5], [686.5, 812.5], [686.5, 811.5], [688.5, 811.5], [688.5, 809.5], [684.5, 809.5], [684.5, 808.5], [682.5, 808.5], [682.5, 804.5], [683.5, 804.5], [683.5, 802.5], [682.5, 802.5], [682.5, 801.5], [679.5, 801.5], [679.5, 794.5], [678.5, 793.5], [678.5, 787.5], [678.5, 785.5], [677.5, 784.5], [677.5, 780.5], [678.5, 780.5], [679.5, 780.5], [680.5, 782.5], [681.5, 782.5], [684.5, 779.5], [688.5, 779.5], [688.5, 780.5]]}, {"id": "twt94s", "submitted_by": "Wodgam", "name": "Mothalisa", "description": "One of the things made by r/Skyplace This one is the character Mothalisa", "website": "https://discord.gg/EVZaHb4HsW", "subreddit": "/r/Skyplace", "center": [1652.5, 1069.5], "path": [[1658.5, 1073.5], [1647.5, 1073.5], [1648.5, 1072.5], [1648.5, 1071.5], [1651.5, 1068.5], [1648.5, 1065.5], [1649.5, 1064.5], [1650.5, 1064.5], [1651.5, 1063.5], [1652.5, 1063.5], [1654.5, 1063.5], [1656.5, 1065.5], [1656.5, 1067.5], [1655.5, 1068.5], [1655.5, 1069.5], [1656.5, 1070.5], [1657.5, 1071.5], [1657.5, 1072.5], [1658.5, 1073.5]]}, {"id": "twt8ut", "submitted_by": "hypatiaplus", "name": "underscores", "description": "Devon Karpf (Also known as underscores) is an EDM / Hyperpop producer, born in California and based in New York.", "website": "https://twitter.com/underscoresplus", "subreddit": "", "center": [480.5, 734.5], "path": [[463.5, 729.5], [497.5, 729.5], [497.5, 729.5], [497.5, 738.5], [463.5, 738.5], [463.5, 729.5]]}, -{"id": "twt8ra", "submitted_by": "EqualAttitude7104", "name": "The Son of Man - Ren\u00e9 Magritte", "description": "Painting from a famous painter in Belgium", "website": "https://en.wikipedia.org/wiki/The_Son_of_Man", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twt8q8", "submitted_by": "WilliamHutchins", "name": "Lightning McQueen", "description": "Art of the main character from the Disney Pixar Cars Franchise, Lightning McQueen!", "website": "", "subreddit": "", "center": [1686.5, 535.5], "path": [[1679.5, 539.5], [1683.5, 539.5], [1683.5, 540.5], [1686.5, 540.5], [1686.5, 541.5], [1692.5, 541.5], [1693.5, 541.5], [1693.5, 540.5], [1693.5, 540.5], [1694.5, 540.5], [1695.5, 540.5], [1695.5, 539.5], [1695.5, 538.5], [1695.5, 537.5], [1695.5, 536.5], [1695.5, 535.5], [1694.5, 535.5], [1694.5, 534.5], [1693.5, 534.5], [1693.5, 533.5], [1692.5, 533.5], [1692.5, 532.5], [1691.5, 532.5], [1690.5, 532.5], [1690.5, 531.5], [1689.5, 531.5], [1689.5, 530.5], [1688.5, 530.5], [1687.5, 530.5], [1686.5, 530.5], [1685.5, 530.5], [1683.5, 530.5], [1682.5, 530.5], [1681.5, 530.5], [1680.5, 530.5], [1679.5, 530.5], [1678.5, 530.5], [1678.5, 534.5], [1678.5, 537.5], [1678.5, 539.5], [1679.5, 539.5]]}, {"id": "twt8pb", "submitted_by": "SadChiruno", "name": "ALO", "description": "An inside joke from the Marisad Discord Server that originated from a video that has been spammed by members. It is included here because members thought it\u2019ll be funny", "website": "", "subreddit": "/r/Marisad", "center": [1789.5, 881.5], "path": [[1788.5, 875.5], [1788.5, 875.5], [1787.5, 875.5], [1787.5, 875.5], [1790.5, 875.5], [1790.5, 886.5], [1787.5, 886.5]]}, {"id": "twt8h7", "submitted_by": "DonCrogod", "name": "GIS", "description": "The GIS (Geb\u00fchren Info Service) is an Austrian agency responsible for collecting television and radio license fees. Widely loathed in Austria due to its often underhanded tactics and dubious legality, the placement of the logo is more ironic than not.", "website": "", "subreddit": "/r/austria", "center": [872.5, 253.5], "path": [[865.5, 249.5], [879.5, 249.5], [879.5, 257.5], [865.5, 257.5]]}, @@ -2121,18 +1990,15 @@ {"id": "twt7em", "submitted_by": "Ciiryion", "name": "C++", "description": "The C++ programming language", "website": "https://www.cplusplus.com/", "subreddit": "/r/cpp", "center": [919.5, 1967.5], "path": [[913.5, 1963.5], [913.5, 1970.5], [925.5, 1970.5], [925.5, 1963.5]]}, {"id": "twt7db", "submitted_by": "Calsymen", "name": "Logos from Ponce, Rivenzi and Ultia", "description": "The logos from 3 french streamers : Ponce (the flower), Ultia (the rat) and Rivenzi (the brain)", "website": "", "subreddit": "", "center": [279.5, 1534.5], "path": [[262.5, 1517.5], [262.5, 1517.5], [260.5, 1552.5], [298.5, 1550.5], [297.5, 1516.5], [275.5, 1516.5], [279.5, 1517.5], [279.5, 1517.5], [266.5, 1516.5], [265.5, 1516.5], [262.5, 1517.5]]}, {"id": "twt7bq", "submitted_by": "dragonlordcat", "name": "Croatian checkerboard", "description": "Third instance of the Croatian expansion with the subreddit name and symbols of Croatia", "website": "", "subreddit": "/r/Croatia", "center": [364.5, 1095.5], "path": [[325.5, 1071.5], [403.5, 1071.5], [403.5, 1118.5], [325.5, 1118.5]]}, -{"id": "twt7b5", "submitted_by": "KrumpleTrash", "name": "Ranboo Head", "description": "Ranboo is a variety streamer who is most known for his lore in the Dream smp. The boobers stay strong!", "website": "twitch.tv/ranboolive", "subreddit": "/r/ranboo", "center": [169.5, 895.5], "path": [[165.5, 891.5], [165.5, 898.5], [172.5, 898.5], [172.5, 891.5], [165.5, 891.5]]}, +{"id": "twt7b5", "submitted_by": "KrumpleTrash", "name": "Ranboo Head", "description": "Ranboo is a variety streamer who is most known for his lore in the Dream smp. The boobers stay strong!", "website": "https://twitch.tv/ranboolive", "subreddit": "/r/ranboo", "center": [169.5, 895.5], "path": [[165.5, 891.5], [165.5, 898.5], [172.5, 898.5], [172.5, 891.5], [165.5, 891.5]]}, {"id": "twt7aw", "submitted_by": "invisible_cat0091", "name": "Ralsei", "description": "From the indie game made by Toby Fox, Deltarune.", "website": "https://deltarune.com/", "subreddit": "/r/Deltarune", "center": [1759.5, 230.5], "path": [[1747.5, 248.5], [1747.5, 207.5], [1772.5, 207.5], [1772.5, 249.5], [1767.5, 249.5], [1767.5, 254.5], [1753.5, 254.5], [1752.5, 251.5], [1747.5, 250.5]]}, {"id": "twt76b", "submitted_by": "ChefSemiColon", "name": "Dana Zane", "description": "Everyone's favourite boss Dana from the game VA-11 Hall-A. Hide your chicken wings.", "website": "https://waifubartending.com/", "subreddit": "/r/waifubartending", "center": [1774.5, 760.5], "path": [[1761.5, 745.5], [1790.5, 745.5], [1790.5, 761.5], [1783.5, 768.5], [1781.5, 778.5], [1765.5, 778.5], [1761.5, 772.5], [1761.5, 745.5]]}, {"id": "twt6ta", "submitted_by": "MartyStarkiller", "name": "Pico-8 logo", "description": "Pico-8 is a virtual fantasy console developed by Lexaloffle Games, designed to simulate the limitations of old consoles and 8-bit computers from the 80s. This icon was made by the Celeste discord server since the game started as a game jam game for the Pico-8 in 2015. Celeste Classic is included as an easter egg inside the 2018 Celeste release, and a sequel to Celeste Classic (Celeste Classic 2) was released in 2021. It is also known for people pushing the boundaries of its capabilities, such as the 2021 3D modeling tool picoCAD and a port of Doom called Poom. As of right now a successor to Pico-8, the Picotron is in development and it is said to have more features and fewer limitations.", "website": "https://www.lexaloffle.com/pico-8.php", "subreddit": "/r/pico8", "center": [968.5, 856.5], "path": [[966.5, 854.5], [971.5, 854.5], [971.5, 858.5], [969.5, 858.5], [969.5, 859.5], [966.5, 859.5]]}, {"id": "twt6st", "submitted_by": "Pile00", "name": "Sly Cooper", "description": "a portrait of Sly Cooper, the main character of the serie of video games of the same name", "website": "", "subreddit": "/r/SlyCooper", "center": [14.5, 365.5], "path": [[11.5, 369.5], [11.5, 367.5], [10.5, 367.5], [10.5, 366.5], [9.5, 366.5], [9.5, 363.5], [10.5, 363.5], [10.5, 362.5], [11.5, 362.5], [11.5, 361.5], [12.5, 361.5], [12.5, 360.5], [16.5, 360.5], [16.5, 361.5], [18.5, 361.5], [19.5, 362.5], [18.5, 363.5], [19.5, 364.5], [19.5, 365.5], [18.5, 367.5], [18.5, 369.5], [17.5, 368.5], [16.5, 369.5], [12.5, 369.5]]}, {"id": "twt6py", "submitted_by": "PaulartAnime", "name": "ESEO Angers FR", "description": "Ecole Superieur d'Electronique de l'Ouestn", "website": "https://eseo.fr/", "subreddit": "", "center": [1407.5, 389.5], "path": [[1418.5, 378.5], [1396.5, 378.5], [1396.5, 400.5], [1418.5, 400.5], [1418.5, 397.5], [1421.5, 397.5], [1421.5, 391.5], [1418.5, 390.5], [1417.5, 378.5]]}, -{"id": "twt6jm", "submitted_by": "NeoGaller", "name": "Mac Miller", "description": "Honoring the late Mac Miller, a rapper from Pittsburgh.(1992-2018)", "website": "", "subreddit": "/r/MacMiller", "center": [0.5, 0.5], "path": []}, -{"id": "twt6dz", "submitted_by": "ZaTTTel", "name": "H3H3 Productions", "description": "A youtube channel that used to make comedy/commentary videos by Ethan and Hila Klein. They now host the H3 Podcast.", "website": "", "subreddit": "/r/h3h3productions", "center": [0.5, 0.5], "path": []}, {"id": "twt6af", "submitted_by": "asder517", "name": "Coat of arms of all the states of Austria", "description": "From the left: Burgenland, Lower Austria, Vienna, Styria, Salzburg, Upper Austria, Carinthia, Tyrol, Vorarlberg.", "website": "", "subreddit": "/r/austria", "center": [1034.5, 253.5], "path": [[998.5, 249.5], [1070.5, 249.5], [1070.5, 255.5], [1067.5, 258.5], [1065.5, 258.5], [1062.5, 255.5], [1059.5, 258.5], [1057.5, 258.5], [1054.5, 255.5], [1051.5, 258.5], [1049.5, 258.5], [1046.5, 255.5], [1043.5, 258.5], [1041.5, 258.5], [1038.5, 255.5], [1035.5, 258.5], [1033.5, 258.5], [1030.5, 255.5], [1027.5, 258.5], [1025.5, 258.5], [1022.5, 255.5], [1019.5, 258.5], [1017.5, 258.5], [1014.5, 255.5], [1011.5, 258.5], [1009.5, 258.5], [1006.5, 255.5], [1003.5, 258.5], [1001.5, 258.5], [998.5, 255.5], [998.5, 249.5]]}, {"id": "twt65q", "submitted_by": "Blu_Skyu", "name": "Downpour Slugcats", "description": "Art depicting the five new player characters in the upcoming DLC of the indie videogame Rain World.nIn order, they are the Spearmaster, the Saint, the Rivulet, the Gourmand, and the Artificer.", "website": "", "subreddit": "", "center": [1062.5, 560.5], "path": [[1060.5, 566.5], [1060.5, 552.5], [1017.5, 552.5], [1017.5, 562.5], [1010.5, 567.5], [1129.5, 567.5], [1126.5, 564.5], [1126.5, 552.5], [1110.5, 552.5], [1109.5, 556.5], [1108.5, 562.5], [1104.5, 565.5], [1103.5, 567.5]]}, {"id": "twt618", "submitted_by": "-criticalFUSION-", "name": "Project SEKAI: COLORFUL STAGE! ft. Hatsune Miku", "description": "An idol gacha/rhythm game developed by CraftEgg in collaboration with SEGA, prominently featuring Hatsune Miku and other vocaloids alongside the game's idols.", "website": "", "subreddit": "/r/ProjectSekai", "center": [1550.5, 1735.5], "path": [[1527.5, 1712.5], [1527.5, 1761.5], [1566.5, 1761.5], [1566.5, 1747.5], [1576.5, 1740.5], [1576.5, 1712.5]]}, -{"id": "twt60y", "submitted_by": "benman19", "name": "Gabumon", "description": "One of the main Digimon featured in the first season of the anime.", "website": "", "subreddit": "/r/digimon", "center": [0.5, 0.5], "path": []}, {"id": "twt5wk", "submitted_by": "AwayNefariousness442", "name": "France vs Spain", "description": "Spanish people and Deepwoken taking over a French flag created by Twitch streamer JOYCA.nnBefore being bombarded with flags this area was originally controlled by the Drawception community in a displacement attempt by the Deepwoken community.", "website": "", "subreddit": "", "center": [387.5, 1345.5], "path": [[375.5, 1339.5], [399.5, 1339.5], [399.5, 1350.5], [375.5, 1350.5], [375.5, 1339.5]]}, {"id": "twt5sp", "submitted_by": "N8dawgggg", "name": "Clint Stevens", "description": "Pixel art of youtuber and streamer Clint Stevens", "website": "", "subreddit": "/r/ClintStevens", "center": [1787.5, 263.5], "path": [[1776.5, 275.5], [1795.5, 275.5], [1795.5, 272.5], [1796.5, 271.5], [1797.5, 269.5], [1798.5, 267.5], [1798.5, 258.5], [1804.5, 253.5], [1804.5, 252.5], [1776.5, 252.5], [1776.5, 275.5]]}, {"id": "twt5qm", "submitted_by": "drc7777777", "name": "Yotsuba", "description": "Cute 4chan girl. We drew a hell of a lot more than this by the end, this site is using an old image.", "website": "", "subreddit": "", "center": [1919.5, 550.5], "path": [[1900.5, 539.5], [1899.5, 562.5], [1939.5, 561.5], [1940.5, 540.5]]}, @@ -2144,13 +2010,9 @@ {"id": "twt57g", "submitted_by": "Doctor_Leidenfrost", "name": "JetPunk", "description": "A popular quiz website.", "website": "https://jetpunk.com", "subreddit": "/r/JetPunk", "center": [766.5, 274.5], "path": [[780.5, 270.5], [753.5, 270.5], [752.5, 271.5], [751.5, 272.5], [752.5, 273.5], [753.5, 274.5], [753.5, 275.5], [752.5, 276.5], [753.5, 277.5], [754.5, 278.5], [755.5, 279.5], [780.5, 279.5]]}, {"id": "twt53l", "submitted_by": "JosDW", "name": "Risitas", "description": "El Risitas, a Spanish comedian known for his laugh, which even went viral a few years ago.", "website": "https://www.youtube.com/watch?v=cDphUib5iG4", "subreddit": "/r/esPlace", "center": [1252.5, 295.5], "path": [[1240.5, 282.5], [1240.5, 307.5], [1264.5, 307.5], [1264.5, 282.5]]}, {"id": "twt52l", "submitted_by": "XalosDarlan", "name": "Inkunzi", "description": "Inkunzi logo/icon, an Nation RP where you roleplay as nations in an fantasy world", "website": "", "subreddit": "/r/Inkunzi", "center": [1780.5, 412.5], "path": [[1769.5, 409.5], [1788.5, 409.5], [1789.5, 410.5], [1790.5, 411.5], [1790.5, 412.5], [1791.5, 413.5], [1794.5, 414.5], [1793.5, 414.5], [1792.5, 414.5], [1769.5, 414.5]]}, -{"id": "twt526", "submitted_by": "_Macouta_", "name": "PNL Daft Punk", "description": "composition of the PNL, french rappers, album cover 'Deux fr\u00e8res' with Daft Punk masks", "website": "", "subreddit": "", "center": [207.5, 1605.5], "path": [[236.5, 1578.5], [226.5, 1570.5], [213.5, 1564.5], [196.5, 1565.5], [185.5, 1573.5], [174.5, 1579.5], [170.5, 1598.5], [170.5, 1610.5], [172.5, 1615.5], [170.5, 1628.5], [169.5, 1639.5], [192.5, 1640.5], [229.5, 1640.5], [245.5, 1639.5], [245.5, 1617.5], [242.5, 1615.5], [243.5, 1586.5], [240.5, 1580.5]]}, -{"id": "twt50e", "submitted_by": "remsoffyt", "name": "Mariane", "description": "Human symbol of France.", "website": "", "subreddit": "/r/PlaceFrance", "center": [149.5, 246.5], "path": [[132.5, 266.5], [131.5, 266.5], [160.5, 266.5], [160.5, 275.5], [168.5, 276.5], [170.5, 276.5], [170.5, 282.5], [174.5, 277.5], [174.5, 269.5], [171.5, 259.5], [167.5, 254.5], [163.5, 246.5], [163.5, 240.5], [162.5, 232.5], [162.5, 227.5], [159.5, 225.5], [158.5, 222.5], [159.5, 220.5], [158.5, 218.5], [154.5, 217.5], [150.5, 216.5], [146.5, 217.5], [141.5, 218.5], [137.5, 222.5], [131.5, 228.5], [127.5, 234.5], [125.5, 239.5], [125.5, 247.5], [125.5, 252.5], [130.5, 251.5], [130.5, 253.5], [131.5, 265.5]]}, {"id": "twt4wm", "submitted_by": "Rickmaster2002", "name": "Timor was here", "description": "Timor was the jokingly given name to a small portuguese flag that was covered.", "website": "", "subreddit": "/r/portugal", "center": [414.5, 1505.5], "path": [[404.5, 1499.5], [424.5, 1499.5], [423.5, 1511.5], [404.5, 1511.5], [404.5, 1499.5]]}, -{"id": "twt4qa", "submitted_by": "DaMonstahhh", "name": "Shape of Belgium", "description": "The shape of Belgium", "website": "", "subreddit": "", "center": [280.5, 676.5], "path": [[271.5, 674.5], [268.5, 670.5], [276.5, 667.5], [278.5, 666.5], [281.5, 665.5], [284.5, 664.5], [285.5, 665.5], [286.5, 666.5], [289.5, 667.5], [290.5, 668.5], [291.5, 669.5], [291.5, 674.5], [292.5, 674.5], [294.5, 675.5], [295.5, 677.5], [297.5, 679.5], [297.5, 680.5], [296.5, 682.5], [295.5, 683.5], [293.5, 684.5], [292.5, 684.5], [292.5, 688.5], [293.5, 688.5], [293.5, 691.5], [292.5, 691.5], [292.5, 692.5], [290.5, 692.5], [290.5, 693.5], [289.5, 691.5], [288.5, 691.5], [288.5, 690.5], [286.5, 690.5], [285.5, 689.5], [284.5, 688.5], [284.5, 685.5], [279.5, 685.5], [279.5, 688.5], [278.5, 687.5], [277.5, 686.5], [277.5, 683.5], [276.5, 683.5], [275.5, 682.5], [274.5, 681.5], [273.5, 680.5], [272.5, 679.5], [270.5, 679.5], [269.5, 678.5], [268.5, 677.5], [267.5, 676.5], [266.5, 675.5], [264.5, 675.5], [263.5, 674.5], [262.5, 673.5], [262.5, 671.5], [261.5, 671.5], [262.5, 670.5], [262.5, 669.5], [264.5, 668.5], [265.5, 667.5], [266.5, 666.5], [270.5, 666.5], [271.5, 667.5], [272.5, 668.5], [273.5, 668.5], [278.5, 673.5]]}, -{"id": "twt4pe", "submitted_by": "Shushiiii", "name": "Arona & Shiroko", "description": "Two characters from the mobile game Blue Archive, made by the Blue Archive Community.", "website": "discord.gg/BlueArchive", "subreddit": "/r/BlueArchive", "center": [1635.5, 464.5], "path": [[1622.5, 442.5], [1649.5, 443.5], [1649.5, 485.5], [1622.5, 485.5]]}, +{"id": "twt4pe", "submitted_by": "Shushiiii", "name": "Arona & Shiroko", "description": "Two characters from the mobile game Blue Archive, made by the Blue Archive Community.", "website": "https://discord.gg/BlueArchive", "subreddit": "/r/BlueArchive", "center": [1635.5, 464.5], "path": [[1622.5, 442.5], [1649.5, 443.5], [1649.5, 485.5], [1622.5, 485.5]]}, {"id": "twt4p9", "submitted_by": "Sockona", "name": "42 Network", "description": "42 is a famous and quite deemed school network, scattered around the world !", "website": "https://42.fr/", "subreddit": "", "center": [1477.5, 230.5], "path": [[1459.5, 224.5], [1468.5, 215.5], [1483.5, 215.5], [1483.5, 221.5], [1497.5, 221.5], [1497.5, 242.5], [1458.5, 243.5]]}, -{"id": "twt4oo", "submitted_by": "AKettleOFish", "name": "Dross", "description": "Dross, seen in the series Cradle by author Will Wight.", "website": "https://www.willwight.com/", "subreddit": "/r/Iteration110Cradle", "center": [0.5, 0.5], "path": []}, {"id": "twt4na", "submitted_by": "ImDella98", "name": "Michelangelo's David", "description": "David is a masterpiece of Renaissance sculpture, created in marble between 1501 and 1504 by the Italian artist Michelangelo.", "website": "", "subreddit": "/r/placeitaly", "center": [806.5, 343.5], "path": [[787.5, 377.5], [820.5, 377.5], [829.5, 313.5], [788.5, 310.5]]}, {"id": "twt4jw", "submitted_by": "em_tsuj_sti", "name": "Ludwig van Beethoven", "description": "A famous German composer and pianist. Commonly know for his 5th Symphony.", "website": "https://en.wikipedia.org/wiki/Ludwig_van_Beethoven", "subreddit": "/r/de", "center": [1927.5, 848.5], "path": [[1929.5, 867.5], [1936.5, 861.5], [1943.5, 860.5], [1947.5, 857.5], [1942.5, 848.5], [1942.5, 842.5], [1939.5, 839.5], [1939.5, 836.5], [1934.5, 831.5], [1919.5, 830.5], [1916.5, 833.5], [1914.5, 837.5], [1913.5, 842.5], [1909.5, 846.5], [1908.5, 851.5], [1916.5, 857.5], [1924.5, 867.5], [1927.5, 867.5]]}, {"id": "twt4b3", "submitted_by": "5herine", "name": "Rest in Peace Zaf", "description": "French streamer Pierre Lapin and his community wanted to pay homage to Pierre's friend and French Twitter Legend Zafinho who passed away in 2017.", "website": "https://twitter.com/pierrelapin/status/1511019730638979079?s=20&t=K-cMCRtyEaMF1qAQqmg2Xg", "subreddit": "", "center": [933.5, 1497.5], "path": [[923.5, 1487.5], [923.5, 1494.5], [915.5, 1494.5], [915.5, 1506.5], [950.5, 1506.5], [948.5, 1488.5], [924.5, 1487.5]]}, @@ -2160,11 +2022,9 @@ {"id": "twt3y1", "submitted_by": "secretspine", "name": "French politics war", "description": "War between the supporters of french presidency candidates Eric Zemmour and Jean_Luc M\u00e9lanchon", "website": "", "subreddit": "", "center": [1677.5, 743.5], "path": [[1666.5, 723.5], [1693.5, 723.5], [1693.5, 725.5], [1690.5, 732.5], [1688.5, 739.5], [1688.5, 758.5], [1690.5, 765.5], [1666.5, 765.5], [1665.5, 723.5]]}, {"id": "twt3pb", "submitted_by": "DonCrogod", "name": "Austria", "description": "The flag of Austria.", "website": "", "subreddit": "/r/Austria", "center": [1016.5, 265.5], "path": [[865.5, 249.5], [865.5, 280.5], [1171.5, 279.5], [1171.5, 250.5]]}, {"id": "twt3le", "submitted_by": "Krapfal", "name": "Austrian Flag", "description": "Austrias Flag", "website": "", "subreddit": "/r/austria", "center": [1015.5, 265.5], "path": [[868.5, 249.5], [865.5, 249.5], [865.5, 281.5], [1171.5, 279.5], [1171.5, 250.5], [950.5, 249.5], [869.5, 249.5], [868.5, 249.5]]}, -{"id": "twt37u", "submitted_by": "IVgormino", "name": "Red Labs keycard", "description": "A red keycard from the game Escape From Tarkov", "website": "escapefromtarkov.com", "subreddit": "/r/escapefromtarkov", "center": [1313.5, 1908.5], "path": [[1301.5, 1900.5], [1301.5, 1915.5], [1325.5, 1915.5], [1325.5, 1901.5]]}, -{"id": "twt2wg", "submitted_by": "snowyquill", "name": "Kero Kero Bonito (Bonito Generation)", "description": "Album cover of 'Bonito Generation' released in 2016 by British indie pop band Kero Kero Bonito.", "website": "", "subreddit": "/r/kkb", "center": [0.5, 0.5], "path": []}, +{"id": "twt37u", "submitted_by": "IVgormino", "name": "Red Labs keycard", "description": "A red keycard from the game Escape From Tarkov", "website": "https://escapefromtarkov.com", "subreddit": "/r/escapefromtarkov", "center": [1313.5, 1908.5], "path": [[1301.5, 1900.5], [1301.5, 1915.5], [1325.5, 1915.5], [1325.5, 1901.5]]}, {"id": "twt2oh", "submitted_by": "CeBonVieuxZdoud", "name": "Eseo Logo", "description": "The logo of ESEO, an engineering school based in Angers, Dijon and Paris", "website": "https://eseo.fr/", "subreddit": "", "center": [1407.5, 388.5], "path": [[1417.5, 378.5], [1395.5, 378.5], [1396.5, 399.5], [1417.5, 398.5], [1417.5, 378.5], [1395.5, 378.5], [1396.5, 399.5], [1417.5, 399.5], [1420.5, 395.5], [1417.5, 379.5]]}, -{"id": "twt2l2", "submitted_by": "Pacopoulet", "name": "French art using templates only", "description": "A majority of the biggest french streamers led by Kamet0 have used templates to made this and spanish streamers using bots just to destroy it, we still looking for their own art on the canvas.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "twt29j", "submitted_by": "Blu_Skyu", "name": "Toki Pona + Worm combo symbol", "description": "A combination of the Worm scarab and the toki pona smile symbols.", "website": "", "subreddit": "", "center": [1686.5, 219.5], "path": [[1681.5, 214.5], [1681.5, 223.5], [1687.5, 228.5], [1689.5, 228.5], [1689.5, 227.5], [1691.5, 227.5], [1691.5, 223.5], [1690.5, 223.5], [1690.5, 212.5], [1681.5, 212.5]]}, +{"id": "twt29j", "submitted_by": "Blu_Skyu", "name": "Toki Pona + Worm combo symbol", "description": "A combination of the Worm scarab and the Toki Pona smile symbols.", "website": "", "subreddit": "/r/Parahumans, /r/tokipona", "center": [1686.5, 219.5], "path": [[1681.5, 214.5], [1681.5, 223.5], [1687.5, 228.5], [1689.5, 228.5], [1689.5, 227.5], [1691.5, 227.5], [1691.5, 223.5], [1690.5, 223.5], [1690.5, 212.5], [1681.5, 212.5]]}, {"id": "twt24p", "submitted_by": "KatMistberg", "name": "4Virtual SanMou \u4e09\u6bdb\u6bdb\u6bdb", "description": "SanMou is a Taiwanese VTuber and part of the VTuber group 4Virtual. The dolphin represents SanMou, and the penguin represents Jimu, his ex-girlfriend.", "website": "https://www.youtube.com/c/4V3Mou", "subreddit": "", "center": [1564.5, 606.5], "path": [[1549.5, 599.5], [1549.5, 613.5], [1579.5, 613.5], [1579.5, 599.5]]}, {"id": "twt1hx", "submitted_by": "ja2ontodd", "name": "Noita", "description": "half of the noita space, with the game's first letter, and one of the enemies, Stevari, as well as some hamis", "website": "https://noitagame.com/", "subreddit": "/r/noita", "center": [604.5, 1068.5], "path": [[591.5, 1013.5], [597.5, 1013.5], [597.5, 1061.5], [623.5, 1062.5], [623.5, 1092.5], [591.5, 1093.5], [591.5, 1013.5], [591.5, 1013.5], [593.5, 1013.5]]}, {"id": "twt1g6", "submitted_by": "XcapeEST", "name": "Czech heart", "description": "A heart made by r/tf2 to celebrate the alliance with r/czech", "website": "", "subreddit": "/r/czhech", "center": [1595.5, 1978.5], "path": [[1595.5, 1981.5], [1595.5, 1981.5], [1595.5, 1981.5], [1592.5, 1978.5], [1592.5, 1977.5], [1593.5, 1976.5], [1594.5, 1976.5], [1595.5, 1977.5], [1596.5, 1976.5], [1597.5, 1976.5], [1598.5, 1977.5], [1598.5, 1978.5]]}, @@ -2173,26 +2033,22 @@ {"id": "twt0zu", "submitted_by": "NikIsImba", "name": "Clown69 Sheep", "description": "A sheep commenly used by the streamer Quin69. Its traits represnt his clownish behaviour and his tendancy to cry about everything.", "website": "https://www.twitch.tv/quin69", "subreddit": "/r/quin69", "center": [434.5, 1896.5], "path": [[420.5, 1881.5], [448.5, 1881.5], [448.5, 1911.5], [420.5, 1911.5], [420.5, 1905.5]]}, {"id": "twt0yw", "submitted_by": "procontroller", "name": "AUBREY", "description": "AUBREY is one of the deuteragonists in OMORI. This site originally held KEL, but was relocated.", "website": "", "subreddit": "/r/omori", "center": [1428.5, 809.5], "path": [[1424.5, 823.5], [1424.5, 819.5], [1422.5, 819.5], [1421.5, 819.5], [1421.5, 810.5], [1420.5, 809.5], [1419.5, 809.5], [1419.5, 809.5], [1419.5, 806.5], [1419.5, 805.5], [1420.5, 805.5], [1420.5, 801.5], [1421.5, 800.5], [1421.5, 799.5], [1422.5, 798.5], [1424.5, 797.5], [1425.5, 796.5], [1429.5, 796.5], [1430.5, 795.5], [1431.5, 796.5], [1432.5, 797.5], [1433.5, 797.5], [1435.5, 797.5], [1436.5, 798.5], [1436.5, 800.5], [1437.5, 805.5], [1438.5, 808.5], [1437.5, 809.5], [1436.5, 810.5], [1436.5, 818.5], [1433.5, 819.5], [1433.5, 823.5], [1430.5, 823.5], [1430.5, 821.5], [1427.5, 821.5]]}, {"id": "twt0yo", "submitted_by": "GladOSkar", "name": "German Oak", "description": "Collaboration between r/placetrees and r/placeDE to build the german national tree. Initiated by u/GladOSkar. Went through many modifications", "website": "", "subreddit": "/r/placetrees", "center": [1254.5, 849.5], "path": [[1247.5, 868.5], [1247.5, 868.5], [1249.5, 864.5], [1249.5, 859.5], [1247.5, 858.5], [1247.5, 860.5], [1248.5, 860.5], [1248.5, 864.5], [1244.5, 864.5], [1244.5, 860.5], [1245.5, 860.5], [1245.5, 858.5], [1240.5, 856.5], [1237.5, 852.5], [1235.5, 848.5], [1236.5, 844.5], [1239.5, 842.5], [1238.5, 841.5], [1240.5, 839.5], [1241.5, 840.5], [1247.5, 835.5], [1250.5, 835.5], [1253.5, 832.5], [1256.5, 832.5], [1258.5, 834.5], [1264.5, 837.5], [1267.5, 840.5], [1273.5, 844.5], [1273.5, 847.5], [1270.5, 852.5], [1270.5, 854.5], [1267.5, 857.5], [1264.5, 858.5], [1261.5, 859.5], [1259.5, 859.5], [1258.5, 859.5], [1258.5, 863.5], [1260.5, 867.5], [1262.5, 868.5], [1244.5, 868.5]]}, -{"id": "twt0sr", "submitted_by": "H3x0n", "name": "alt:V Multiplayer for GTA V", "description": "A free alternative multiplayer client for GTA:V.", "website": "altv.mp", "subreddit": "/r/altv", "center": [519.5, 1406.5], "path": [[469.5, 1395.5], [576.5, 1395.5], [576.5, 1407.5], [543.5, 1409.5], [544.5, 1415.5], [531.5, 1415.5], [531.5, 1419.5], [531.5, 1424.5], [498.5, 1424.5], [498.5, 1416.5], [476.5, 1415.5], [476.5, 1410.5], [473.5, 1409.5], [472.5, 1403.5], [469.5, 1399.5], [468.5, 1395.5]]}, +{"id": "twt0sr", "submitted_by": "H3x0n", "name": "alt:V Multiplayer for GTA V", "description": "A free alternative multiplayer client for GTA:V.", "website": "https://altv.mp", "subreddit": "/r/altv", "center": [519.5, 1406.5], "path": [[469.5, 1395.5], [576.5, 1395.5], [576.5, 1407.5], [543.5, 1409.5], [544.5, 1415.5], [531.5, 1415.5], [531.5, 1419.5], [531.5, 1424.5], [498.5, 1424.5], [498.5, 1416.5], [476.5, 1415.5], [476.5, 1410.5], [473.5, 1409.5], [472.5, 1403.5], [469.5, 1399.5], [468.5, 1395.5]]}, {"id": "twt0qe", "submitted_by": "VinsElBins", "name": "Team Vanadium", "description": "A group of French Friends and former CS:GO team that battle over a small area on the last day to be part the history of Reddit for the next 5 years", "website": "", "subreddit": "", "center": [1473.5, 800.5], "path": [[1460.5, 796.5], [1460.5, 804.5], [1486.5, 804.5], [1486.5, 796.5]]}, {"id": "twt0nv", "submitted_by": "dutchnuggett", "name": "bidoof", "description": "by some known as a god, bidoof is truly one of the greatest pokemon to ever have been created", "website": "", "subreddit": "", "center": [569.5, 1480.5], "path": [[550.5, 1471.5], [554.5, 1467.5], [558.5, 1471.5], [569.5, 1465.5], [580.5, 1459.5], [588.5, 1464.5], [590.5, 1475.5], [587.5, 1480.5], [587.5, 1488.5], [585.5, 1493.5], [580.5, 1494.5], [577.5, 1491.5], [573.5, 1497.5], [573.5, 1500.5], [566.5, 1500.5], [564.5, 1496.5], [559.5, 1496.5], [559.5, 1500.5], [552.5, 1499.5], [554.5, 1494.5], [547.5, 1488.5], [547.5, 1480.5], [552.5, 1475.5]]}, {"id": "twt0mw", "submitted_by": "OmgIRawr", "name": "ironmouseNyanhug", "description": "Recreation of vtuber ironmouse twitch emote hugging fellow vtuber nyanners", "website": "https://twitch.tv/ironmouse", "subreddit": "/r/ironmouse", "center": [1427.5, 979.5], "path": [[1403.5, 959.5], [1451.5, 959.5], [1451.5, 998.5], [1403.5, 998.5], [1403.5, 959.5]]}, {"id": "twt0l3", "submitted_by": "Baconing_Narwhal", "name": "Overwatch League logo", "description": "Logo of the Overwatch League (OWL), a professional esports league for the video game Overwatch. Created by /r/competitiveoverwatch, the de facto official subreddit for the Overwatch competitive scene.", "website": "https://overwatchleague.com/en-us/", "subreddit": "/r/competitiveoverwatch", "center": [1810.5, 135.5], "path": [[1803.5, 131.5], [1817.5, 131.5], [1817.5, 139.5], [1803.5, 139.5], [1803.5, 131.5]]}, {"id": "twt0a9", "submitted_by": "AboveColin", "name": "Defqon.1 Logo", "description": "Defqon.1 Weekend Festival is an annual music festival held in the Netherlands. nMade by r/Hardstyle", "website": "", "subreddit": "/r/Hardstyle", "center": [1016.5, 1640.5], "path": [[1025.5, 1644.5], [1017.5, 1621.5], [1009.5, 1633.5], [1008.5, 1653.5], [1025.5, 1652.5], [1025.5, 1642.5], [1025.5, 1644.5]]}, -{"id": "twt04d", "submitted_by": "Loulouloups", "name": "42 school", "description": "42 school is the best coding school of the world !", "website": "https://42.fr/en/homepage/", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twt00k", "submitted_by": "T0lgi02", "name": "Cookie\u2606", "description": "Cookie\u2606, DIYUSI, bitnameRU on BB, 1919, broken heart, \u3044\u3044\u3088(\u6765\u3044\u3088)", "website": "https://discord.gg/creatura", "subreddit": "", "center": [770.5, 1690.5], "path": [[752.5, 1670.5], [752.5, 1682.5], [749.5, 1685.5], [749.5, 1693.5], [751.5, 1694.5], [756.5, 1695.5], [760.5, 1703.5], [760.5, 1712.5], [787.5, 1712.5], [787.5, 1677.5], [781.5, 1670.5], [752.5, 1670.5]]}, -{"id": "twszcj", "submitted_by": "Khumster", "name": "Arcane Jinx", "description": "Jinx flair scene from Arcane. Many communities helped to keep the great Jinx alive during the war against spanish and US.", "website": "", "subreddit": "", "center": [45.5, 1564.5], "path": [[43.5, 1473.5], [32.5, 1481.5], [29.5, 1490.5], [28.5, 1496.5], [28.5, 1502.5], [30.5, 1507.5], [31.5, 1508.5], [29.5, 1526.5], [29.5, 1532.5], [31.5, 1535.5], [34.5, 1537.5], [31.5, 1541.5], [27.5, 1544.5], [21.5, 1547.5], [19.5, 1556.5], [19.5, 1562.5], [19.5, 1567.5], [24.5, 1567.5], [26.5, 1561.5], [28.5, 1568.5], [30.5, 1577.5], [32.5, 1597.5], [23.5, 1595.5], [18.5, 1596.5], [13.5, 1601.5], [12.5, 1608.5], [12.5, 1620.5], [19.5, 1624.5], [18.5, 1626.5], [15.5, 1629.5], [13.5, 1631.5], [13.5, 1637.5], [8.5, 1651.5], [7.5, 1655.5], [3.5, 1656.5], [3.5, 1663.5], [9.5, 1659.5], [14.5, 1663.5], [17.5, 1662.5], [24.5, 1668.5], [26.5, 1669.5], [31.5, 1675.5], [52.5, 1689.5], [54.5, 1685.5], [55.5, 1679.5], [57.5, 1678.5], [59.5, 1678.5], [59.5, 1673.5], [59.5, 1670.5], [61.5, 1667.5], [64.5, 1661.5], [58.5, 1666.5], [56.5, 1665.5], [53.5, 1659.5], [47.5, 1654.5], [42.5, 1642.5], [41.5, 1638.5], [44.5, 1630.5], [41.5, 1626.5], [42.5, 1611.5], [42.5, 1601.5], [42.5, 1585.5], [38.5, 1578.5], [39.5, 1566.5], [41.5, 1560.5], [50.5, 1567.5], [51.5, 1560.5], [47.5, 1548.5], [43.5, 1546.5], [48.5, 1536.5], [45.5, 1530.5], [55.5, 1511.5], [60.5, 1508.5], [67.5, 1508.5], [70.5, 1509.5], [76.5, 1504.5], [82.5, 1504.5], [90.5, 1504.5], [97.5, 1496.5], [100.5, 1483.5], [107.5, 1477.5], [113.5, 1472.5], [116.5, 1470.5], [91.5, 1470.5], [65.5, 1470.5], [46.5, 1473.5], [42.5, 1473.5]]}, -{"id": "twszc0", "submitted_by": "IVgormino", "name": "Bamse", "description": "Bamse - A swedish cartoon character who teaches children about the virtues of being kind", "website": "", "subreddit": "", "center": [870.5, 78.5], "path": [[877.5, 69.5], [869.5, 69.5], [861.5, 69.5], [860.5, 87.5], [880.5, 87.5], [880.5, 70.5]]}, -{"id": "twszbr", "submitted_by": "GTYannou", "name": "N\u00e9pal", "description": "N\u00e9pal was a was a French rapper and beatmaker. He was also known as KLM and GrandMaster Splinter. N\u00e9pal attached great importance to remain anonymous, covering his face with a hood or a mask.nN\u00e9pal died on 9 November 2019. The announcement came after 11 days on social networks on 20 November 2019 including the posthumous release of his album Adios Bahamas that he had just completed recording. The circumstances of his death are unknown.", "website": "https://444nuits.com/", "subreddit": "/r/placefrance", "center": [219.5, 1527.5], "path": [[245.5, 1482.5], [181.5, 1484.5], [198.5, 1569.5], [247.5, 1584.5], [247.5, 1520.5], [246.5, 1486.5]]}, +{"id": "twszc0", "submitted_by": "IVgormino", "name": "Bamse", "description": "A Swedish cartoon character who teaches children about the virtues of being kind.", "website": "https://en.wikipedia.org/wiki/Bamse", "subreddit": "/r/sweden", "center": [870.5, 78.5], "path": [[877.5, 69.5], [869.5, 69.5], [861.5, 69.5], [860.5, 87.5], [880.5, 87.5], [880.5, 70.5]]}, {"id": "twsyqr", "submitted_by": "jett87", "name": "Filippino Jeepney", "description": "The most popular means of public transportation ubiquitous in the Philippines, which have become a widespread symbol of Philippine culture and art.", "website": "", "subreddit": "", "center": [420.5, 1653.5], "path": [[387.5, 1671.5], [391.5, 1671.5], [389.5, 1671.5], [393.5, 1671.5], [394.5, 1670.5], [395.5, 1669.5], [395.5, 1662.5], [396.5, 1663.5], [397.5, 1663.5], [397.5, 1664.5], [397.5, 1669.5], [432.5, 1669.5], [433.5, 1669.5], [434.5, 1671.5], [441.5, 1671.5], [443.5, 1669.5], [443.5, 1664.5], [451.5, 1664.5], [451.5, 1666.5], [457.5, 1666.5], [457.5, 1661.5], [452.5, 1661.5], [452.5, 1655.5], [453.5, 1654.5], [453.5, 1652.5], [452.5, 1652.5], [452.5, 1642.5], [454.5, 1642.5], [454.5, 1639.5], [449.5, 1634.5], [402.5, 1634.5], [400.5, 1635.5], [398.5, 1638.5], [397.5, 1641.5], [398.5, 1642.5], [400.5, 1643.5], [400.5, 1648.5], [399.5, 1650.5], [398.5, 1651.5], [383.5, 1651.5], [383.5, 1658.5], [379.5, 1661.5], [379.5, 1664.5], [381.5, 1666.5], [382.5, 1666.5], [382.5, 1665.5], [384.5, 1665.5], [384.5, 1669.5], [386.5, 1671.5], [388.5, 1671.5]]}, {"id": "twsyqg", "submitted_by": "JDCLO", "name": "Hyunjin from Loona", "description": "The second member of Loona. #stanloona", "website": "https://www.youtube.com/channel/UCOJplhB0wGQWv9OuRmMT-4g", "subreddit": "/r/LOONA", "center": [1315.5, 598.5], "path": [[1300.5, 582.5], [1329.5, 582.5], [1329.5, 614.5], [1300.5, 614.5], [1300.5, 614.5], [1300.5, 614.5], [1300.5, 614.5], [1300.5, 614.5]]}, -{"id": "twsy2c", "submitted_by": "IronRaichu", "name": "CAPTAINSPARKLEZ", "description": "Famous Minecraft Twitch Streamer & Youtuber", "website": "Watch CaptainSparklez with me on Twitch! https://www.twitch.tv/captainsparklez?sr=a", "subreddit": "/r/CaptainSparklez", "center": [867.5, 1910.5], "path": [[858.5, 1902.5], [858.5, 1902.5], [857.5, 1902.5], [859.5, 1902.5], [858.5, 1901.5], [858.5, 1917.5], [876.5, 1918.5], [875.5, 1901.5]]}, +{"id": "twsy2c", "submitted_by": "IronRaichu", "name": "CAPTAINSPARKLEZ", "description": "Famous Minecraft Twitch Streamer & Youtuber", "website": "https://Watch CaptainSparklez with me on Twitch! https://www.twitch.tv/captainsparklez?sr=a", "subreddit": "/r/CaptainSparklez", "center": [867.5, 1910.5], "path": [[858.5, 1902.5], [858.5, 1902.5], [857.5, 1902.5], [859.5, 1902.5], [858.5, 1901.5], [858.5, 1917.5], [876.5, 1918.5], [875.5, 1901.5]]}, {"id": "twsxwu", "submitted_by": "MartyStarkiller", "name": "Pizza (from Chicory: A Colorful Tale)", "description": "Pizza is a character from Chicory: A Colorful Tale, released in 2021 and developed by Finji. This was added to the Celeste community square in alliance with the Chicory community because Lena Raine composed the soundtrack for both Celeste and Chicory.", "website": "https://chicorygame.com/", "subreddit": "/r/chicory", "center": [973.5, 863.5], "path": [[966.5, 864.5], [967.5, 864.5], [967.5, 863.5], [969.5, 863.5], [969.5, 861.5], [970.5, 861.5], [970.5, 859.5], [971.5, 859.5], [972.5, 859.5], [972.5, 858.5], [974.5, 858.5], [974.5, 857.5], [974.5, 858.5], [975.5, 858.5], [975.5, 859.5], [977.5, 859.5], [977.5, 862.5], [978.5, 862.5], [978.5, 863.5], [979.5, 863.5], [980.5, 863.5], [980.5, 865.5], [979.5, 865.5], [979.5, 866.5], [978.5, 866.5], [978.5, 867.5], [978.5, 866.5], [976.5, 866.5], [976.5, 867.5], [968.5, 867.5], [968.5, 866.5], [967.5, 866.5], [966.5, 866.5]]}, {"id": "twsxsq", "submitted_by": "Professional-Ice-845", "name": "HTL St.P\u00f6lten", "description": "The main logo of an Austrian school and the logos of the two classes that made it.", "website": "https://www.htlstp.ac.at", "subreddit": "/r/place_htlstp", "center": [385.5, 1596.5], "path": [[372.5, 1593.5], [398.5, 1593.5], [398.5, 1599.5], [372.5, 1599.5], [372.5, 1593.5], [398.5, 1593.5], [398.5, 1593.5]]}, {"id": "twsxmp", "submitted_by": "El_Geygey", "name": "Mongolian flag over a yurt", "description": "The idea of a Mongolian flag came from the community behind the neighbouring pinpoint symbol. The spot was then taken care of by the r/mongolia subreddit. Following a misunderstood, the Mongolian YouTuber CTS tried to conquer the right of the drawing but admitted his mistake and backed off", "website": "", "subreddit": "/r/mongolia", "center": [101.5, 479.5], "path": [[93.5, 466.5], [93.5, 491.5], [109.5, 491.5], [109.5, 466.5], [93.5, 466.5]]}, {"id": "twsxjo", "submitted_by": "rafter_", "name": "No Need Orga", "description": "No Need Orga is a German League of Legends team.", "website": "https://lol.fandom.com/wiki/No_Need_Orga", "subreddit": "", "center": [650.5, 1985.5], "path": [[624.5, 1975.5], [624.5, 1995.5], [677.5, 1995.5], [677.5, 1976.5]]}, -{"id": "twsxds", "submitted_by": "suiramdev", "name": "PNL x Daft Punk", "description": "The French streamers decided to represent a duo of rappers of which France is proud, with the mask of daft punks, also symbols of France.", "website": "https://youtu.be/BtyHYIpykN0", "subreddit": "", "center": [207.5, 1605.5], "path": [[170.5, 1639.5], [170.5, 1590.5], [174.5, 1577.5], [195.5, 1567.5], [214.5, 1565.5], [229.5, 1572.5], [241.5, 1583.5], [243.5, 1599.5], [243.5, 1612.5], [242.5, 1616.5], [245.5, 1623.5], [244.5, 1640.5]]}, -{"id": "twsx7i", "submitted_by": "IVgormino", "name": "Bolimbompa Draken", "description": "Bolibompa Draken is a swedish childrens cartoon character", "website": "", "subreddit": "", "center": [849.5, 79.5], "path": [[843.5, 68.5], [838.5, 88.5], [861.5, 88.5], [855.5, 69.5], [855.5, 68.5]]}, +{"id": "twsx7i", "submitted_by": "IVgormino", "name": "Bolibompa Draken", "description": "Bolibompa Draken is a Swedish children's cartoon character.", "website": "https://en.wikipedia.org/wiki/Bolibompa", "subreddit": "/r/sweden", "center": [849.5, 79.5], "path": [[843.5, 68.5], [838.5, 88.5], [861.5, 88.5], [855.5, 69.5], [855.5, 68.5]]}, {"id": "twsx1j", "submitted_by": "ReverseDmitry", "name": "Half of Italy heart", "description": "The remains of an Italy/Poland heart.", "website": "", "subreddit": "", "center": [778.5, 221.5], "path": [[780.5, 218.5], [777.5, 218.5], [776.5, 220.5], [776.5, 221.5], [780.5, 225.5], [780.5, 218.5]]}, {"id": "twswyt", "submitted_by": "DonCrogod", "name": "\u00d6BB Railjet", "description": "A high-speed rail service operated by Austrian Federal Railways (\u00d6BB).", "website": "", "subreddit": "", "center": [1143.5, 275.5], "path": [[1134.5, 271.5], [1153.5, 271.5], [1153.5, 279.5], [1134.5, 280.5]]}, {"id": "twswth", "submitted_by": "28PercentCharged", "name": "Nuclear Throne Fish", "description": "The character Fish, from the game Nuclear Throne, allied with Enter the Gungeon", "website": "", "subreddit": "/r/nuclearthrone", "center": [198.5, 335.5], "path": [[194.5, 341.5], [193.5, 329.5], [199.5, 329.5], [203.5, 335.5], [203.5, 336.5], [200.5, 341.5]]}, @@ -2214,13 +2070,11 @@ {"id": "twsvc8", "submitted_by": "GladOSkar", "name": "Calvin and Hobbes", "description": "Pupular daily American Comic Strip", "website": "", "subreddit": "", "center": [1119.5, 915.5], "path": [[1111.5, 920.5], [1099.5, 919.5], [1099.5, 916.5], [1104.5, 912.5], [1109.5, 916.5], [1112.5, 911.5], [1121.5, 904.5], [1126.5, 904.5], [1127.5, 910.5], [1132.5, 910.5], [1133.5, 911.5], [1133.5, 920.5], [1131.5, 923.5], [1125.5, 922.5], [1123.5, 920.5], [1125.5, 916.5], [1120.5, 914.5], [1118.5, 917.5], [1120.5, 920.5], [1118.5, 923.5], [1110.5, 920.5]]}, {"id": "twsv6y", "submitted_by": "RegularPrompt4923", "name": "https://Echodolls.com", "description": "A collaborative effort by members of the Nth Dimensional Borders worldbuilding community, fans of the Echodolls, and those involved with David Bowie symbol just above- to immortalize the Echodolls, a fictional band taking place in the Nth Dimensional Borders world. Echodolls is created and played by Sam Hayzen, a leading pioneer into skipjacking music.", "website": "https://Echodolls.com", "subreddit": "/r/echodolls", "center": [876.5, 1276.5], "path": [[853.5, 1273.5], [898.5, 1273.5], [898.5, 1279.5], [853.5, 1279.5], [853.5, 1273.5]]}, {"id": "twsunl", "submitted_by": "Virryi", "name": "Yukari, Yuyuko, Youmu", "description": "A small piece of pixel art, one of many depicting Touhou characters, specifically Yukari Yakumo, Yuyuko Saigyouji and Youmu Konpaku.", "website": "", "subreddit": "/r/touhou", "center": [1742.5, 809.5], "path": [[1699.5, 790.5], [1699.5, 828.5], [1785.5, 829.5], [1785.5, 790.5], [1700.5, 790.5]]}, -{"id": "twsudw", "submitted_by": "neolegeek", "name": "Marianne", "description": "Marianne has been the national personification of the French Republic since the French Revolution, as a personification of liberty, equality, fraternity", "website": "https://en.wikipedia.org/wiki/Marianne", "subreddit": "", "center": [148.5, 244.5], "path": [[126.5, 235.5], [142.5, 217.5], [159.5, 217.5], [172.5, 270.5], [158.5, 267.5], [133.5, 267.5]]}, {"id": "twsubo", "submitted_by": "ItsFrisbeeTho", "name": "Pusheen (the) Cat", "description": "Cat eating the dutch flag", "website": "", "subreddit": "/r/placenl", "center": [559.5, 1961.5], "path": [[551.5, 1967.5], [552.5, 1967.5], [553.5, 1968.5], [554.5, 1968.5], [555.5, 1967.5], [556.5, 1967.5], [557.5, 1967.5], [558.5, 1968.5], [559.5, 1968.5], [560.5, 1967.5], [561.5, 1967.5], [562.5, 1967.5], [563.5, 1968.5], [564.5, 1968.5], [567.5, 1968.5], [568.5, 1967.5], [569.5, 1966.5], [569.5, 1960.5], [568.5, 1959.5], [568.5, 1958.5], [567.5, 1957.5], [566.5, 1956.5], [565.5, 1956.5], [564.5, 1955.5], [560.5, 1955.5], [559.5, 1954.5], [558.5, 1953.5], [557.5, 1954.5], [556.5, 1955.5], [555.5, 1955.5], [554.5, 1955.5], [553.5, 1954.5], [552.5, 1953.5], [551.5, 1954.5], [551.5, 1955.5], [550.5, 1956.5], [550.5, 1957.5], [549.5, 1957.5], [548.5, 1957.5], [548.5, 1959.5], [549.5, 1959.5], [549.5, 1964.5], [550.5, 1965.5], [550.5, 1966.5], [551.5, 1967.5], [552.5, 1967.5]]}, {"id": "twsu7h", "submitted_by": "burninbr", "name": "Arara Azul", "description": "A hyacinth macaw, typical bird from Brazil", "website": "", "subreddit": "/r/brasil", "center": [919.5, 575.5], "path": [[911.5, 582.5], [911.5, 581.5], [912.5, 581.5], [912.5, 580.5], [913.5, 580.5], [913.5, 579.5], [914.5, 579.5], [914.5, 576.5], [915.5, 576.5], [915.5, 575.5], [916.5, 575.5], [916.5, 574.5], [917.5, 574.5], [917.5, 573.5], [917.5, 572.5], [918.5, 572.5], [918.5, 568.5], [919.5, 568.5], [919.5, 567.5], [924.5, 567.5], [924.5, 568.5], [926.5, 568.5], [926.5, 570.5], [927.5, 570.5], [927.5, 572.5], [926.5, 572.5], [925.5, 573.5], [924.5, 574.5], [924.5, 578.5], [923.5, 579.5], [922.5, 580.5], [921.5, 581.5], [920.5, 582.5], [916.5, 582.5], [915.5, 583.5], [914.5, 584.5], [913.5, 584.5], [911.5, 584.5], [911.5, 583.5]]}, {"id": "twsu4c", "submitted_by": "Mythagical", "name": "Golden Egg", "description": "A golden egg from Salmon Run! A game mode in Splatoon 2", "website": "", "subreddit": "", "center": [1119.5, 1891.5], "path": [[1110.5, 1882.5], [1110.5, 1899.5], [1127.5, 1900.5], [1127.5, 1882.5]]}, {"id": "twsu49", "submitted_by": "ColSoosel", "name": "Noita", "description": "Little Artwork inspired by the game Noita, developed by Nolla Games in Helsinki, Finland.", "website": "https://noitagame.com/", "subreddit": "/r/noita", "center": [608.5, 1078.5], "path": [[592.5, 1062.5], [592.5, 1094.5], [623.5, 1094.5], [623.5, 1062.5], [592.5, 1062.5]]}, {"id": "twsu1s", "submitted_by": "nuoony", "name": "Kurzgesagt Duck", "description": "A mascot of the German YouTube channel 'Kurzgesagt - In a Nutshell'", "website": "https://kurzgesagt.org", "subreddit": "", "center": [671.5, 858.5], "path": [[672.5, 850.5], [670.5, 850.5], [669.5, 851.5], [668.5, 852.5], [667.5, 852.5], [667.5, 853.5], [668.5, 854.5], [667.5, 855.5], [667.5, 858.5], [666.5, 859.5], [666.5, 860.5], [665.5, 861.5], [665.5, 864.5], [667.5, 864.5], [668.5, 863.5], [669.5, 864.5], [676.5, 864.5], [678.5, 862.5], [679.5, 862.5], [679.5, 859.5], [678.5, 858.5], [677.5, 858.5], [676.5, 857.5], [673.5, 857.5], [673.5, 855.5], [674.5, 854.5], [674.5, 852.5], [673.5, 851.5], [672.5, 850.5]]}, -{"id": "twstvx", "submitted_by": "dutchnuggett", "name": "nijntje", "description": "A famous kidshow about a rabbit written by Dick Bruna in 1955 still watched by kids today. in english the show is better known as miffy.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twstl9", "submitted_by": "MBog22", "name": "Tomb Raider, Lara Croft", "description": "Tomb Raider has had many games starting from the series' debut in 1996, spanning multiple continuities, with several iterations of the titular character, Lara Croft.nLara Croft earned the title of Tomb Raider but it was her intelligent, strong, fearless, and independent personality that took the world by storm and cemented her as a true pop icon.", "website": "https://tombraider.square-enix-games.com/en-us", "subreddit": "/r/tombraider", "center": [1864.5, 1547.5], "path": [[1875.5, 1554.5], [1875.5, 1538.5], [1852.5, 1538.5], [1852.5, 1555.5], [1875.5, 1555.5]]}, {"id": "twstfl", "submitted_by": "yaycupcake", "name": "Cherry Bullet logo", "description": "Logo of Kpop girl group Cherry Bullet", "website": "https://www.fncent.com/CherryBullet/", "subreddit": "/r/CherryBullet", "center": [1712.5, 875.5], "path": [[1706.5, 869.5], [1706.5, 880.5], [1718.5, 880.5], [1718.5, 870.5], [1718.5, 869.5]]}, {"id": "twste9", "submitted_by": "GoJoeyGo123", "name": "Raspberry Pi OS", "description": "Raspberry Pi OS (formerly Raspbian) is a Debian-based operating system for the Raspberry Pi computer.", "website": "https://www.raspberrypi.org/", "subreddit": "/r/raspberry_pi", "center": [68.5, 713.5], "path": [[67.5, 710.5], [68.5, 711.5], [69.5, 710.5], [68.5, 711.5], [69.5, 712.5], [69.5, 714.5], [68.5, 715.5], [67.5, 714.5], [67.5, 712.5], [68.5, 711.5], [67.5, 710.5], [67.5, 710.5]]}, @@ -2240,10 +2094,9 @@ {"id": "twsrp6", "submitted_by": "TomMacarol", "name": "Slovenian flag", "description": "From left to rightnA hayrack, an olm, the crest, lake island Bled and Bojan the bear", "website": "", "subreddit": "/r/Slovenia", "center": [289.5, 880.5], "path": [[214.5, 870.5], [253.5, 870.5], [254.5, 874.5], [259.5, 878.5], [265.5, 881.5], [275.5, 884.5], [288.5, 880.5], [297.5, 874.5], [297.5, 870.5], [359.5, 870.5], [359.5, 885.5], [357.5, 884.5], [354.5, 886.5], [355.5, 888.5], [216.5, 888.5]]}, {"id": "twsrof", "submitted_by": "DOOMdesign", "name": "Franzbr\u00f6tchen", "description": "Franzbr\u00f6tchen, a sweet baked good, well known and loved especially in Hamburg, Germany. Brought to r/place by the Bl\u00f6dentreff community!", "website": "https://twitch.tv/doomdesign", "subreddit": "", "center": [897.5, 1370.5], "path": [[891.5, 1365.5], [903.5, 1365.5], [903.5, 1374.5], [891.5, 1374.5], [891.5, 1368.5]]}, {"id": "twsre4", "submitted_by": "Snapix35", "name": "Breton Flag", "description": "The official flag of the region of brittany, france", "website": "", "subreddit": "/r/Bretagne", "center": [1100.5, 1118.5], "path": [[1116.5, 1114.5], [1083.5, 1114.5], [1083.5, 1121.5], [1116.5, 1121.5], [1116.5, 1114.5]]}, -{"id": "twsrdk", "submitted_by": "gwenby", "name": "StarCraft 2", "description": "The logo for the influential game Starcraft 2, a RTS style game that heavily influenced the eSports scene that we see today. It is placed near the TotalBiscuit tribute as an homage as TotalBiscuit casted many tournaments throughout his career.", "website": "https://starcraft2.com/en-us/", "subreddit": "/r/starcraft2", "center": [919.5, 1257.5], "path": [[904.5, 1271.5], [933.5, 1271.5], [933.5, 1243.5], [904.5, 1243.5]]}, +{"id": "twsrdk", "submitted_by": "gwenby", "name": "StarCraft 2", "description": "The logo for the RTS game Starcraft 2, which heavily influenced today's eSports scene. It is placed near the TotalBiscuit tribute as an homage; TotalBiscuit casted many tournaments throughout his career.\n\nThere is a Carbot Zergling munching on the top right, and it also features a suspicious marine (bottom left) and a pylon powering a cannon (bottom right). The logo pixel art was made by Twitter @AliceAlacroix.", "website": "https://starcraft2.com/", "subreddit": "/r/starcraft", "center": [919.5, 1257.5], "path": [[904.5, 1271.5], [933.5, 1271.5], [933.5, 1243.5], [904.5, 1243.5]]}, {"id": "twsrbm", "submitted_by": "Virryi", "name": "feddy", "description": "A popular meme within the Five Nights at Freddy's fandom. Represents Freddy, the titular character, in a poorly drawn work. Above him is a clock reading 6 AM, another reference to the FNaF series where the night ends at 6 am.", "website": "", "subreddit": "/r/fivenightsatfreddys", "center": [1853.5, 335.5], "path": [[1839.5, 299.5], [1839.5, 370.5], [1853.5, 370.5], [1853.5, 371.5], [1866.5, 371.5], [1866.5, 299.5], [1865.5, 299.5]]}, -{"id": "twsqyn", "submitted_by": "TBGEntertainment", "name": "No Need Orga", "description": "A german E-Sport Team called No Need Orga. Project was initalized by the Twitch streamer Agurin", "website": "twitch.tv/agurin", "subreddit": "", "center": [650.5, 1985.5], "path": [[622.5, 1974.5], [622.5, 1996.5], [679.5, 1995.5], [679.5, 1974.5], [679.5, 1974.5], [679.5, 1974.5], [679.5, 1974.5], [679.5, 1974.5]]}, -{"id": "twsqtj", "submitted_by": "kensabrush", "name": "Uma Musume Pretty Derby", "description": "Uma Musume is an anime gacha game about racing horse girls. Icon made apart of the Gacha Alliance.", "website": "", "subreddit": "/r/UmaMusume", "center": [0.5, 0.5], "path": []}, +{"id": "twsqyn", "submitted_by": "TBGEntertainment", "name": "No Need Orga", "description": "A german E-Sport Team called No Need Orga. Project was initalized by the Twitch streamer Agurin", "website": "https://twitch.tv/agurin", "subreddit": "", "center": [650.5, 1985.5], "path": [[622.5, 1974.5], [622.5, 1996.5], [679.5, 1995.5], [679.5, 1974.5], [679.5, 1974.5], [679.5, 1974.5], [679.5, 1974.5], [679.5, 1974.5]]}, {"id": "twsqpp", "submitted_by": "MartyStarkiller", "name": "Madeline (aka Vadeline)", "description": "Madeline is the protagonist of the 2018 videogame Celeste, developed by Maddy Makes Games, later turned into Extremely OK Games. In the official discord server of said game, this specific drawing was called \u201cVadeline\u201d (Madeline close to the Void) and it was unknown who began work on this, since the server had already worked on drawing Madeline before.", "website": "http://www.celestegame.com/", "subreddit": "/r/celestegame", "center": [894.5, 1433.5], "path": [[889.5, 1425.5], [900.5, 1425.5], [900.5, 1438.5], [899.5, 1438.5], [899.5, 1440.5], [899.5, 1441.5], [889.5, 1441.5]]}, {"id": "twsqh5", "submitted_by": "Minion_P", "name": "Abu logo", "description": "Abu is an adult diaper brand.", "website": "", "subreddit": "", "center": [46.5, 1006.5], "path": [[35.5, 999.5], [35.5, 1013.5], [56.5, 1013.5], [56.5, 999.5]]}, {"id": "twsqgr", "submitted_by": "Alderiuz", "name": "feddy", "description": "A popular meme amongst the 'Five Night's at Freddy's' community, a horror game depicting Chuck-E-Cheese esque animatronics that try to hunt you down.", "website": "", "subreddit": "/r/fivenightsatfreddys", "center": [1853.5, 335.5], "path": [[1839.5, 370.5], [1839.5, 299.5], [1866.5, 299.5], [1866.5, 371.5], [1852.5, 371.5], [1852.5, 370.5]]}, @@ -2251,7 +2104,6 @@ {"id": "twspz7", "submitted_by": "Accomplished_Arm_227", "name": "JPEGMAFIA playstation logo", "description": "icon use by rapper JPEGMAFIA", "website": "https://www.youtube.com/c/JPEGMAFIA", "subreddit": "/r/jpegmafia", "center": [1889.5, 776.5], "path": [[1874.5, 760.5], [1904.5, 760.5], [1903.5, 792.5], [1874.5, 792.5], [1874.5, 781.5]]}, {"id": "twsptk", "submitted_by": "neolegeek", "name": "Epitech", "description": "Epitech is a private institution of higher education in computer science", "website": "https://www.epitech.eu/", "subreddit": "", "center": [1737.5, 1590.5], "path": [[1702.5, 1583.5], [1770.5, 1582.5], [1772.5, 1598.5], [1704.5, 1598.5]]}, {"id": "twspsn", "submitted_by": "PanzerCo", "name": "Baba Is You", "description": "The 'Baba' character from Noita developer Arvi Teikari's game 'Baba Is You'.nnBaba Is You is a puzzle game where the rules you have to follow are present as physical objects in the game world. By manipulating the rules, you can change how the game works, repurpose things you find in the levels and cause surprising interactions!", "website": "https://hempuli.com/baba/", "subreddit": "/r/babaisyou", "center": [568.5, 931.5], "path": [[563.5, 934.5], [563.5, 930.5], [566.5, 927.5], [566.5, 929.5], [567.5, 929.5], [568.5, 928.5], [569.5, 928.5], [569.5, 929.5], [571.5, 929.5], [572.5, 930.5], [572.5, 933.5], [571.5, 934.5], [571.5, 935.5], [570.5, 934.5], [570.5, 933.5], [566.5, 931.5], [564.5, 933.5], [564.5, 934.5]]}, -{"id": "twsplv", "submitted_by": "jepsonjaguar", "name": "Ravens Logo", "description": "Logo for the NFL Team, located in Baltimore, Maryland", "website": "", "subreddit": "", "center": [1821.5, 717.5], "path": [[1801.5, 723.5], [1799.5, 721.5], [1799.5, 710.5], [1797.5, 718.5], [1800.5, 716.5], [1829.5, 710.5], [1826.5, 724.5], [1797.5, 715.5], [1797.5, 718.5], [1838.5, 721.5], [1789.5, 718.5], [1805.5, 717.5], [1792.5, 717.5], [1789.5, 713.5], [1795.5, 712.5], [1808.5, 713.5], [1809.5, 712.5], [1812.5, 712.5], [1811.5, 708.5], [1821.5, 709.5], [1814.5, 709.5], [1812.5, 705.5], [1803.5, 710.5], [1796.5, 713.5], [1788.5, 707.5], [1777.5, 710.5], [1783.5, 712.5], [1790.5, 719.5], [1802.5, 711.5], [1797.5, 708.5], [1793.5, 708.5], [1801.5, 707.5], [1817.5, 709.5], [1821.5, 708.5], [1826.5, 708.5]]}, {"id": "twsphs", "submitted_by": "Majishan123", "name": "Borussia Dortmund artwork", "description": "An artwork built by Borussia Dortmund fans with the aid of allied Liverpool after being destroyed multiple times by various different people, they helped create the YNWA and helped defend Algeria from a Moroccan streamer.", "website": "", "subreddit": "/r/borussiadortmund", "center": [1580.5, 1565.5], "path": [[1594.5, 1552.5], [1594.5, 1552.5], [1566.5, 1552.5], [1566.5, 1570.5], [1565.5, 1570.5], [1564.5, 1570.5], [1564.5, 1573.5], [1569.5, 1573.5], [1569.5, 1579.5], [1594.5, 1579.5], [1594.5, 1552.5]]}, {"id": "twspfr", "submitted_by": "Sagnem", "name": "RAoT", "description": "RAoT is a multiplayer, pvp-focused take on Attack on Titan.", "website": "https://gamejolt.com/games/raot/613147", "subreddit": "", "center": [163.5, 151.5], "path": [[155.5, 139.5], [170.5, 139.5], [170.5, 163.5], [156.5, 163.5], [156.5, 155.5], [157.5, 155.5], [157.5, 153.5], [158.5, 153.5], [158.5, 151.5], [157.5, 151.5], [157.5, 150.5], [156.5, 150.5], [156.5, 149.5], [156.5, 149.5], [155.5, 149.5], [155.5, 148.5], [154.5, 148.5], [154.5, 139.5]]}, {"id": "twspfe", "submitted_by": "starsightjayden", "name": "Uruha Rushia", "description": "Member of Hololive's 3rd Gen who was sadly recently terminated. We will miss her.", "website": "", "subreddit": "/r/Hololive", "center": [1411.5, 1077.5], "path": [[1399.5, 1066.5], [1395.5, 1087.5], [1423.5, 1090.5], [1427.5, 1066.5], [1427.5, 1066.5], [1427.5, 1066.5], [1427.5, 1066.5], [1427.5, 1067.5], [1427.5, 1066.5]]}, @@ -2259,7 +2111,7 @@ {"id": "twspb4", "submitted_by": "Rickmaster2002", "name": "D. Afonso Henriques Statue", "description": "D. Afonso Henriques was the first king of portugal, so after the first expansion the portuguese community decided to build this statue inspired by the one in Guimar\u00e3es, Portugal near the Castle.", "website": "", "subreddit": "/r/portugal", "center": [1009.5, 339.5], "path": [[1005.5, 312.5], [1012.5, 312.5], [1012.5, 321.5], [1016.5, 323.5], [1017.5, 320.5], [1018.5, 315.5], [1019.5, 312.5], [1021.5, 314.5], [1020.5, 323.5], [1020.5, 330.5], [1020.5, 337.5], [1021.5, 359.5], [997.5, 360.5], [998.5, 343.5], [999.5, 340.5], [996.5, 332.5], [998.5, 329.5], [1001.5, 321.5], [1004.5, 321.5], [1006.5, 320.5], [1004.5, 316.5], [1005.5, 312.5]]}, {"id": "twsp87", "submitted_by": "Gideon770", "name": "Die Drei ???", "description": "A very popular german book series about 3 young detectives that solve crimes together. Ironically the books mainly take place in California. The series was founded in the USA but continued in Germany.", "website": "https://dreifragezeichen.de/", "subreddit": "/r/de", "center": [454.5, 836.5], "path": [[433.5, 829.5], [433.5, 842.5], [474.5, 842.5], [474.5, 829.5], [433.5, 829.5]]}, {"id": "twsp68", "submitted_by": "Dinkelwecken", "name": "Terz and Malte", "description": "An inscription honoring two of the most influential members of the german discord. https://discord.gg/placede", "website": "https://discord.gg/placede", "subreddit": "/r/placeDE", "center": [1883.5, 1130.5], "path": [[1839.5, 1140.5], [1836.5, 1121.5], [1932.5, 1122.5], [1929.5, 1139.5]]}, -{"id": "twsp4w", "submitted_by": "djulioo", "name": "Dimitar Berbatov", "description": "Dimitar Ivanov Berbatov (Bulgarian: \u0414\u0438\u043c\u0438\u0442\u044a\u0440 \u0418\u0432\u0430\u043d\u043e\u0432 \u0411\u0435\u0440\u0431\u0430\u0442\u043e\u0432; born 30 January 1981) is a Bulgarian former professional footballer, who also played for Manchester United for the period 2008\u20132012.", "website": "https://en.wikipedia.org/wiki/Dimitar_Berbatov", "subreddit": "/r/bulgaria,/r/reddevils", "center": [1641.5, 700.5], "path": [[1634.5, 690.5], [1635.5, 711.5], [1647.5, 711.5], [1648.5, 690.5]]}, +{"id": "twsp4w", "submitted_by": "djulioo", "name": "Dimitar Berbatov", "description": "Dimitar Ivanov Berbatov (Bulgarian: \u0414\u0438\u043c\u0438\u0442\u044a\u0440 \u0418\u0432\u0430\u043d\u043e\u0432 \u0411\u0435\u0440\u0431\u0430\u0442\u043e\u0432; born 30 January 1981) is a Bulgarian former professional footballer, who also played for Manchester United for the period 2008\u20132012.", "website": "https://en.wikipedia.org/wiki/Dimitar_Berbatov", "subreddit": "/r/bulgaria,/r/reddevils", "center": [1641.5, 700.5], "path": [[1637.5, 690.5], [1635.5, 691.5], [1635.5, 692.5], [1634.5, 693.5], [1634.5, 699.5], [1635.5, 700.5], [1636.5, 701.5], [1637.5, 702.5], [1637.5, 710.5], [1636.5, 711.5], [1633.5, 711.5], [1639.5, 711.5], [1639.5, 712.5], [1640.5, 711.5], [1641.5, 711.5], [1641.5, 712.5], [1642.5, 711.5], [1647.5, 711.5], [1645.5, 711.5], [1644.5, 710.5], [1644.5, 702.5], [1645.5, 701.5], [1646.5, 700.5], [1647.5, 699.5], [1647.5, 693.5], [1646.5, 692.5], [1646.5, 691.5], [1645.5, 690.5], [1644.5, 690.5], [1644.5, 691.5], [1643.5, 692.5], [1638.5, 692.5], [1637.5, 691.5], [1637.5, 691.5], [1637.5, 690.5]]}, {"id": "twsp0m", "submitted_by": "RattusNorvegicus11", "name": "Scotland Tile No.2", "description": "The second tile created by r/scotland. This tile has a strip of tartan, a dram of whisky, a bottle of Buckfast Tonic Wine, a can of Tennent's Lager and a can of Irn Bru. There is also a Lemming who has found his way onto the can of Irn Bru. Lemmings was created by Scottish based company DMA Games, who later became Rockstar North", "website": "", "subreddit": "/r/scotland", "center": [1540.5, 182.5], "path": [[1557.5, 192.5], [1523.5, 192.5], [1523.5, 171.5], [1557.5, 171.5]]}, {"id": "twsozt", "submitted_by": "FlatEartherForLife", "name": "Lisa: The Painful", "description": "Lisa: The Painful RPG is a post-apocalyptic role-playing video game developed and published by American indie studio Dingaling Productions. I shares heavy inspiration from the Mother video game series along with Omori.n", "website": "http://www.lisatherpg.com/", "subreddit": "/r/lisathepainfulrpg", "center": [1084.5, 814.5], "path": [[1075.5, 802.5], [1087.5, 802.5], [1087.5, 803.5], [1087.5, 804.5], [1088.5, 804.5], [1088.5, 812.5], [1087.5, 812.5], [1087.5, 813.5], [1087.5, 814.5], [1088.5, 814.5], [1088.5, 815.5], [1089.5, 815.5], [1089.5, 825.5], [1088.5, 825.5], [1088.5, 826.5], [1087.5, 826.5], [1086.5, 826.5], [1085.5, 827.5], [1085.5, 828.5], [1084.5, 828.5], [1084.5, 829.5], [1083.5, 829.5], [1082.5, 828.5], [1082.5, 827.5], [1081.5, 827.5], [1080.5, 827.5], [1079.5, 827.5], [1079.5, 828.5], [1078.5, 828.5], [1078.5, 829.5], [1077.5, 829.5], [1077.5, 828.5], [1076.5, 828.5], [1076.5, 826.5], [1073.5, 826.5], [1073.5, 825.5], [1072.5, 825.5], [1072.5, 815.5], [1073.5, 815.5], [1073.5, 811.5], [1074.5, 811.5], [1074.5, 809.5], [1073.5, 810.5], [1073.5, 807.5], [1074.5, 806.5], [1074.5, 804.5], [1075.5, 803.5], [1075.5, 802.5], [1086.5, 802.5], [1087.5, 804.5], [1088.5, 804.5], [1088.5, 811.5], [1088.5, 811.5], [1088.5, 803.5], [1087.5, 803.5], [1087.5, 802.5], [1096.5, 803.5], [1095.5, 826.5], [1087.5, 827.5], [1084.5, 812.5]]}, {"id": "twsozr", "submitted_by": "Yamigosaya", "name": "Oregairu SNAFU", "description": "\u3084\u306f\u308a\u4ffa\u306e\u9752\u6625\u30e9\u30d6\u30b3\u30e1\u306f\u9593\u9055\u3063\u3066\u3044\u308b or My teen romantic comedy is wrong as expected SNAFU is a lightnovel written by Watari Wataru, which then got adapted to a 3 season Anime by Studio Deen and Studio FEEL.", "website": "", "subreddit": "/r/oregairuSNAFU", "center": [384.5, 1634.5], "path": [[396.5, 1642.5], [396.5, 1636.5], [397.5, 1634.5], [396.5, 1632.5], [395.5, 1631.5], [394.5, 1630.5], [393.5, 1629.5], [392.5, 1629.5], [392.5, 1628.5], [389.5, 1628.5], [388.5, 1627.5], [379.5, 1627.5], [378.5, 1628.5], [375.5, 1628.5], [375.5, 1629.5], [373.5, 1629.5], [373.5, 1630.5], [372.5, 1630.5], [372.5, 1631.5], [371.5, 1631.5], [371.5, 1632.5], [370.5, 1632.5], [370.5, 1636.5], [371.5, 1636.5], [372.5, 1637.5], [373.5, 1638.5], [374.5, 1639.5], [375.5, 1639.5], [375.5, 1640.5], [378.5, 1640.5], [378.5, 1641.5], [390.5, 1641.5], [390.5, 1640.5], [391.5, 1641.5], [392.5, 1642.5], [393.5, 1643.5], [394.5, 1643.5], [395.5, 1643.5], [396.5, 1642.5]]}, @@ -2279,11 +2131,10 @@ {"id": "twsmfi", "submitted_by": "waxdt", "name": "Frag-o-Matic LAN-Party", "description": "Frag-o-Matic is one of the largest LAN-Parties in the Benelux. It is held twice per year in Wieze, Belgium.", "website": "https://www.fom.be/", "subreddit": "", "center": [1261.5, 1710.5], "path": [[1235.5, 1697.5], [1286.5, 1697.5], [1286.5, 1723.5], [1235.5, 1723.5]]}, {"id": "twsmee", "submitted_by": "stephansbrick", "name": "Kill La Kill", "description": "A mini poster of the Studio Trigger anime, Kill La Kill, showing the main character Ryuko and her Scissor Blade.", "website": "", "subreddit": "/r/KillLaKill", "center": [1728.5, 443.5], "path": [[1714.5, 426.5], [1741.5, 426.5], [1741.5, 459.5], [1714.5, 459.5]]}, {"id": "twsmdd", "submitted_by": "Sefemix", "name": "Selis13", "description": "The contribution of Selis13 comunnity", "website": "https://www.twitch.tv/selis13", "subreddit": "/r/ElChatEse", "center": [1562.5, 421.5], "path": [[1554.5, 414.5], [1567.5, 413.5], [1554.5, 414.5], [1554.5, 427.5], [1554.5, 428.5], [1569.5, 428.5], [1569.5, 413.5], [1554.5, 413.5]]}, -{"id": "twsmc0", "submitted_by": "RandomGuyWeirdo", "name": "Panama Artwork", "description": "Representation of Panama created by r/panama users. A ship that represents the Panama Canal and next to it, a golden frog (an amphibian in danger of extinction located in El Valle de Antón, province of Coclé). Below is the flag of Panama.", "website": "", "subreddit": "/r/panama", "center": [1221.5, 1929.5], "path": [[1200.5, 1903.5], [1243.5, 1904.5], [1242.5, 1954.5], [1200.5, 1954.5]]}, +{"id": "twsmc0", "submitted_by": "RandomGuyWeirdo", "name": "Panama Artwork", "description": "Representation of Panama created by r/panama users. A ship that represents the Panama Canal and next to it, a golden frog (an amphibian in danger of extinction located in El Valle de Ant\u00f3n, province of Cocl\u00e9). Below is the flag of Panama.", "website": "", "subreddit": "/r/panama", "center": [1221.5, 1929.5], "path": [[1200.5, 1903.5], [1243.5, 1904.5], [1242.5, 1954.5], [1200.5, 1954.5]]}, {"id": "twsm1s", "submitted_by": "HazardousUser", "name": "Modern Windmils", "description": "There are loads of these across the country", "website": "", "subreddit": "", "center": [685.5, 1959.5], "path": [[661.5, 1970.5], [661.5, 1948.5], [709.5, 1948.5], [709.5, 1970.5]]}, {"id": "twsm1i", "submitted_by": "veronie_", "name": "Stroopwafel", "description": "A round dutch cookie made out of two waffles with syrup inbetween them.", "website": "", "subreddit": "", "center": [644.5, 1959.5], "path": [[632.5, 1968.5], [632.5, 1968.5], [631.5, 1968.5], [631.5, 1967.5], [630.5, 1967.5], [629.5, 1967.5], [629.5, 1965.5], [628.5, 1965.5], [628.5, 1963.5], [627.5, 1963.5], [627.5, 1958.5], [628.5, 1958.5], [628.5, 1955.5], [629.5, 1955.5], [633.5, 1951.5], [633.5, 1950.5], [636.5, 1950.5], [636.5, 1949.5], [639.5, 1949.5], [639.5, 1948.5], [649.5, 1948.5], [649.5, 1949.5], [652.5, 1949.5], [652.5, 1950.5], [654.5, 1950.5], [654.5, 1951.5], [655.5, 1951.5], [656.5, 1951.5], [656.5, 1952.5], [657.5, 1952.5], [657.5, 1953.5], [658.5, 1953.5], [658.5, 1954.5], [659.5, 1954.5], [659.5, 1957.5], [660.5, 1957.5], [660.5, 1963.5], [659.5, 1963.5], [659.5, 1964.5], [659.5, 1965.5], [658.5, 1965.5], [658.5, 1966.5], [657.5, 1966.5], [657.5, 1967.5], [656.5, 1967.5], [656.5, 1968.5], [655.5, 1968.5], [655.5, 1969.5], [652.5, 1969.5], [652.5, 1968.5], [649.5, 1968.5], [649.5, 1967.5], [644.5, 1967.5], [644.5, 1966.5], [643.5, 1966.5], [643.5, 1965.5], [642.5, 1965.5], [642.5, 1966.5], [639.5, 1966.5], [639.5, 1967.5], [637.5, 1967.5], [637.5, 1968.5], [635.5, 1968.5], [635.5, 1969.5], [632.5, 1969.5], [632.5, 1968.5]]}, {"id": "twsm00", "submitted_by": "invisible_cat0091", "name": "Elemental on Discord", "description": "EoD Everywhere is a community-based alchemy game inspired by Elemental 3, Little Alchemy, and Doodle God created in a Discord bot. Players start with 4 elements: Air, Earth, Fire, and Water. The ability to combine these and make new ones is what makes the game special. It is completely based on the community!", "website": "https://discord.gg/jHeqgdM", "subreddit": "/r/ElementalOnDiscord", "center": [1790.5, 946.5], "path": [[1789.5, 952.5], [1785.5, 949.5], [1785.5, 943.5], [1788.5, 941.5], [1794.5, 941.5], [1796.5, 944.5], [1796.5, 948.5], [1793.5, 952.5]]}, -{"id": "twsloo", "submitted_by": "HazardousUser", "name": "Apex Legends", "description": "Apex Legends the game", "website": "https://nl.wikipedia.org/wiki/Apex_Legends", "subreddit": "/r/apexlegends", "center": [475.5, 1244.5], "path": [[501.5, 1274.5], [448.5, 1274.5], [448.5, 1213.5], [501.5, 1213.5]]}, {"id": "twslmt", "submitted_by": "RattusNorvegicus11", "name": "Pan-Celtic Flag", "description": "A flag representing the six nations/regions considered the heartlands of modern Celts according to the Celtic League and Celtic Congress. The flags, clockwise starting from the top left, represent Brittany, Isle of Mann, Scotland, Wales, Cornwall and Ireland", "website": "https://en.wikipedia.org/wiki/Pan-Celticism", "subreddit": "", "center": [149.5, 722.5], "path": [[134.5, 731.5], [164.5, 731.5], [164.5, 713.5], [134.5, 713.5]]}, {"id": "twslcb", "submitted_by": "RandomGuyWeirdo", "name": "Rec Room", "description": "The logo of Rec room, a massively multiplayer mobile game.", "website": "", "subreddit": "", "center": [383.5, 1054.5], "path": [[363.5, 1040.5], [403.5, 1040.5], [403.5, 1068.5], [363.5, 1067.5]]}, {"id": "twslbp", "submitted_by": "ReverseDmitry", "name": "Italy/Russian protesters heart", "description": "A heart with the flag of Italy and the flag used by the Russian protesters against the war in Ukraine, which was partly merged with the coat of arms of Luxenbourg.", "website": "", "subreddit": "/r/liberta", "center": [781.5, 266.5], "path": [[781.5, 270.5], [785.5, 266.5], [785.5, 264.5], [784.5, 263.5], [783.5, 263.5], [782.5, 264.5], [781.5, 265.5], [780.5, 264.5], [779.5, 263.5], [778.5, 263.5], [777.5, 264.5], [777.5, 266.5], [781.5, 270.5]]}, @@ -2295,9 +2146,7 @@ {"id": "twskq4", "submitted_by": "Majishan123", "name": "Liverpool FC's second banner", "description": "An artwork for Liverpool Football Club. Includes a Champions League Trophy with a 6 to show the club's accomplashments in the tournemnt, manager and legend Jurgen Klopp, homegrown talent Trent Alexander-Arnold #66, and finally Divock Origi a club hero, because 'football without Origi is nothing", "website": "", "subreddit": "/r/LiverpoolFC", "center": [1682.5, 1585.5], "path": [[1594.5, 1539.5], [1594.5, 1539.5], [1594.5, 1539.5], [1620.5, 1539.5], [1620.5, 1557.5], [1594.5, 1579.5], [1700.5, 1579.5], [1700.5, 1570.5], [1684.5, 1570.5], [1684.5, 1573.5], [1668.5, 1573.5], [1668.5, 1557.5], [1620.5, 1558.5], [1594.5, 1579.5], [1594.5, 1579.5], [1594.5, 1579.5], [1594.5, 1572.5], [1594.5, 1539.5]]}, {"id": "twskd8", "submitted_by": "BorendeBuurman", "name": "Bloodborne", "description": "A game by fromsoftware in the soulsborne line. At the moment its a playstation only game", "website": "https://www.fromsoftware.jp/ww/", "subreddit": "/r/bloodborne", "center": [940.5, 1461.5], "path": [[921.5, 1434.5], [921.5, 1488.5], [960.5, 1488.5], [960.5, 1435.5]]}, {"id": "twsjym", "submitted_by": "HazardousUser", "name": "Nu.nl", "description": "A Dutch News Source that Put The Nightwatch and the whole project", "website": "https://www.nu.nl/tech/6193250/10000-nederlanders-bouwen-en-beschermen-de-nachtwacht-op-forum-reddit.html", "subreddit": "", "center": [614.5, 1958.5], "path": [[601.5, 1968.5], [601.5, 1948.5], [626.5, 1948.5], [627.5, 1968.5]]}, -{"id": "twsjy1", "submitted_by": "LeeZY_Cloudy", "name": "Zugspitze", "description": "The Zugspitze nnat 2,962 m (9,718 ft) above sea level, is the highest peak in Germany.", "website": "https://en.wikipedia.org/wiki/Zugspitze", "subreddit": "/r/germany", "center": [0.5, 0.5], "path": []}, {"id": "twsjpx", "submitted_by": "G66GNeco", "name": "Celeste Characters", "description": "A section filled with various characters from the 2D Jump'n'Run Celeste, to the backdrop of a trans flag.", "website": "http://www.celestegame.com/", "subreddit": "/r/celesteplace", "center": [1018.5, 871.5], "path": [[965.5, 854.5], [1056.5, 853.5], [1056.5, 861.5], [1062.5, 870.5], [1078.5, 870.5], [1084.5, 886.5], [965.5, 886.5]]}, -{"id": "twsjp5", "submitted_by": "JL2500", "name": "MBTA Green Line train", "description": "A train used as part of the Massachusetts Bay Transportation Authority's Boston-area trolley/subway system.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twsjlm", "submitted_by": "invisible_cat0091", "name": "GOD DAMN IT KRIS WHERE THE HELL ARE WE", "description": "A meme featuring Kris and Susie from the game Deltarune.", "website": "https://deltarune.com/", "subreddit": "/r/Deltarune", "center": [1811.5, 1708.5], "path": [[1803.5, 1727.5], [1796.5, 1722.5], [1787.5, 1726.5], [1783.5, 1722.5], [1789.5, 1717.5], [1779.5, 1706.5], [1786.5, 1701.5], [1785.5, 1697.5], [1804.5, 1688.5], [1817.5, 1688.5], [1814.5, 1692.5], [1820.5, 1694.5], [1815.5, 1698.5], [1818.5, 1701.5], [1818.5, 1704.5], [1810.5, 1706.5], [1820.5, 1707.5], [1820.5, 1698.5], [1825.5, 1693.5], [1834.5, 1693.5], [1838.5, 1700.5], [1838.5, 1708.5], [1835.5, 1708.5], [1837.5, 1712.5], [1838.5, 1720.5], [1835.5, 1723.5], [1835.5, 1729.5], [1823.5, 1728.5], [1825.5, 1721.5], [1820.5, 1719.5], [1821.5, 1715.5], [1820.5, 1713.5], [1812.5, 1714.5], [1817.5, 1719.5], [1803.5, 1727.5]]}, {"id": "twsjha", "submitted_by": "starsightjayden", "name": "Friday Night Funkin'", "description": "A rhythm game on Newgrounds by Ninjamuffin99, PhantomArcade, Kawai Sprite, and evilsk8r. (It also has a ton of mods of various topics)", "website": "", "subreddit": "/r/FridayNightFunkin", "center": [956.5, 1924.5], "path": [[931.5, 1899.5], [931.5, 1899.5], [931.5, 1948.5], [980.5, 1948.5], [980.5, 1899.5], [980.5, 1899.5]]}, {"id": "twsjdf", "submitted_by": "Item-carpinus", "name": "Hurdy Gurdy", "description": "The hurdy gurdy is a string instrument that originated in the Middle Ages. The sound is produced by a rosined wheel rubbing against the strings; the wheel is controlled by a crank. The hurdy gurdy has 3 types of strings: chanters \u2013 the melody strings that are shortened mechanically via keys to change the pitch, drones - strings that produce a continuous bass tone, and trompettes \u2013 higher-pitched drone strings that are also used for rhythmic accentuation. Hurdy gurdies usually have two octaves and are fully chromatic. If you want to learn more about the instrument, join us on our Subreddit or the Hurdy Gurdy Community on Facebook.", "website": "https://www.facebook.com/groups/2038441566425103/", "subreddit": "/r/HurdyGurdy", "center": [601.5, 1557.5], "path": [[592.5, 1545.5], [613.5, 1545.5], [612.5, 1552.5], [604.5, 1551.5], [607.5, 1567.5], [603.5, 1574.5], [597.5, 1574.5], [596.5, 1571.5], [594.5, 1568.5], [596.5, 1560.5], [598.5, 1551.5], [592.5, 1551.5]]}, @@ -2315,21 +2164,20 @@ {"id": "twsgt2", "submitted_by": "Public-Arrival-7728", "name": "UnsurpassableZ", "description": "A collection of references from Unsurpassable Z youtube videos.", "website": "https://www.youtube.com/channel/UCnBVj0rivE8iamtAzeziO5Q", "subreddit": "/r/unsurpassablez", "center": [1558.5, 812.5], "path": [[1524.5, 829.5], [1524.5, 805.5], [1524.5, 804.5], [1542.5, 804.5], [1542.5, 799.5], [1553.5, 799.5], [1553.5, 788.5], [1553.5, 784.5], [1578.5, 784.5], [1578.5, 819.5], [1599.5, 819.5], [1599.5, 829.5]]}, {"id": "twsgs2", "submitted_by": "Various_Profit1097", "name": "Touhou Lost Word (Gatcha Alliance)", "description": "An older version of Touhou Lost Word\u2019s app icon in which it\u2019s supposed to be Scarlet Marisa.", "website": "", "subreddit": "/r/TouhouLostWord", "center": [1635.5, 1701.5], "path": [[1625.5, 1690.5], [1647.5, 1691.5], [1645.5, 1711.5], [1625.5, 1711.5]]}, {"id": "twsgpu", "submitted_by": "RoMich13", "name": "Olympique de Marseille Flag 1", "description": "Flag from a famous french soccer team.nLead by the BiloCorp Discord", "website": "https://www.om.fr/fr", "subreddit": "", "center": [1793.5, 622.5], "path": [[1786.5, 607.5], [1799.5, 607.5], [1799.5, 636.5], [1786.5, 636.5], [1786.5, 633.5], [1786.5, 607.5]]}, -{"id": "twsgim", "submitted_by": "Uncle_Slippy_Fist", "name": "Quin69", "description": "A memorial for CheesepuffTZ, moderator for Quin69. He sadly passed recently. Stronge", "website": "twitch.tv/quin69", "subreddit": "/r/quin69", "center": [432.5, 1900.5], "path": [[426.5, 1888.5], [420.5, 1885.5], [420.5, 1919.5], [447.5, 1919.5], [448.5, 1881.5], [419.5, 1881.5], [419.5, 1919.5], [434.5, 1894.5], [438.5, 1892.5]]}, +{"id": "twsgim", "submitted_by": "Uncle_Slippy_Fist", "name": "Quin69", "description": "A memorial for CheesepuffTZ, moderator for Quin69. He sadly passed recently. Stronge", "website": "https://twitch.tv/quin69", "subreddit": "/r/quin69", "center": [432.5, 1900.5], "path": [[426.5, 1888.5], [420.5, 1885.5], [420.5, 1919.5], [447.5, 1919.5], [448.5, 1881.5], [419.5, 1881.5], [419.5, 1919.5], [434.5, 1894.5], [438.5, 1892.5]]}, {"id": "twsggs", "submitted_by": "remsoffyt", "name": "Eiffel tower", "description": "Symbol of Paris, capital of France", "website": "", "subreddit": "/r/PlaceFrance", "center": [151.5, 454.5], "path": [[125.5, 492.5], [126.5, 496.5], [133.5, 495.5], [140.5, 488.5], [145.5, 485.5], [157.5, 485.5], [165.5, 496.5], [174.5, 498.5], [176.5, 485.5], [170.5, 481.5], [169.5, 475.5], [169.5, 473.5], [164.5, 472.5], [159.5, 455.5], [158.5, 452.5], [161.5, 451.5], [162.5, 447.5], [157.5, 448.5], [156.5, 433.5], [154.5, 422.5], [153.5, 414.5], [154.5, 403.5], [153.5, 396.5], [153.5, 389.5], [153.5, 383.5], [155.5, 382.5], [154.5, 378.5], [151.5, 375.5], [153.5, 369.5], [152.5, 367.5], [151.5, 363.5], [155.5, 363.5], [158.5, 361.5], [157.5, 358.5], [152.5, 358.5], [150.5, 357.5], [150.5, 365.5], [149.5, 373.5], [146.5, 379.5], [145.5, 382.5], [148.5, 384.5], [148.5, 396.5], [148.5, 413.5], [146.5, 423.5], [145.5, 432.5], [144.5, 443.5], [142.5, 448.5], [140.5, 448.5], [140.5, 451.5], [142.5, 454.5], [140.5, 463.5], [132.5, 482.5]]}, {"id": "twsfxi", "submitted_by": "doctor_disco221", "name": "Mostar Old Bridge", "description": "Bridge that is a symbol of Herzegovina, a southern part of Bosnia and Herzegovina. Built in 16th century, proudly stood for 437 years until it was destroyed in November of 1993, during the war. nnThe bridge was rebuilt in 2004 and is currently protected by UNESCO.", "website": "", "subreddit": "/r/bih", "center": [334.5, 773.5], "path": [[321.5, 763.5], [323.5, 764.5], [324.5, 768.5], [326.5, 768.5], [331.5, 765.5], [334.5, 764.5], [342.5, 768.5], [343.5, 765.5], [344.5, 765.5], [347.5, 767.5], [347.5, 780.5], [321.5, 780.5], [321.5, 763.5]]}, -{"id": "twsfqz", "submitted_by": "TheCataliasTNT2k", "name": "Grundgesetz", "description": "German constitution", "website": "https://www.bundestag.de/gg", "subreddit": "/r/placeDE", "center": [0.5, 0.5], "path": []}, {"id": "twsfeq", "submitted_by": "Stride_44", "name": "Widejoy Player Card", "description": "A meme originating from a bug in the popular shooting game VALORANT, by Riot Games. This bug affected a cosmetic card which turned the character 'Killjoy' into an ultra-wide version. The bug was fixed but Riot released a 'Widejoy Mode' announcement trailer on April 1st, 2022 as a joke.", "website": "https://playvalorant.com", "subreddit": "/r/VALORANT", "center": [170.5, 817.5], "path": [[110.5, 805.5], [229.5, 805.5], [229.5, 829.5], [110.5, 829.5]]}, {"id": "twsfdn", "submitted_by": "Inposa-D", "name": "Samus Aran and the Baby", "description": "", "website": "", "subreddit": "/r/metroid", "center": [1898.5, 517.5], "path": [[1887.5, 502.5], [1890.5, 502.5], [1895.5, 498.5], [1901.5, 502.5], [1906.5, 505.5], [1910.5, 502.5], [1915.5, 502.5], [1919.5, 507.5], [1918.5, 512.5], [1909.5, 513.5], [1906.5, 514.5], [1906.5, 521.5], [1903.5, 523.5], [1901.5, 524.5], [1902.5, 534.5], [1904.5, 538.5], [1886.5, 538.5], [1888.5, 533.5], [1888.5, 525.5], [1884.5, 524.5], [1885.5, 514.5], [1885.5, 506.5], [1884.5, 504.5], [1886.5, 502.5]]}, {"id": "twsfax", "submitted_by": "creepeurman", "name": "Tellurion", "description": "A french discord community", "website": "https://discord.gg/7f8VZxE", "subreddit": "", "center": [886.5, 1007.5], "path": [[871.5, 999.5], [871.5, 1012.5], [874.5, 1012.5], [874.5, 1015.5], [885.5, 1015.5], [885.5, 1012.5], [889.5, 1012.5], [889.5, 1015.5], [901.5, 1015.5], [901.5, 999.5]]}, {"id": "twsf5k", "submitted_by": "Hey_Bals", "name": "Turma da m\u00f4nica", "description": "Depiction of the famous comic book in Brazil Turma da M\u00f4nica.", "website": "", "subreddit": "/r/brasil", "center": [1175.5, 608.5], "path": [[1146.5, 596.5], [1141.5, 602.5], [1143.5, 619.5], [1207.5, 618.5], [1214.5, 609.5], [1206.5, 598.5]]}, -{"id": "twsezx", "submitted_by": "Nyxaeroz", "name": "Cookie Clicker Cookie", "description": "Cookie from the popular idle game Cookie Clicker", "website": "https://orteil.dashnet.org/cookieclicker/", "subreddit": "/r/CookieClicker", "center": [1577.5, 187.5], "path": [[1576.5, 177.5], [1576.5, 178.5], [1573.5, 178.5], [1573.5, 179.5], [1571.5, 179.5], [1571.5, 180.5], [1570.5, 180.5], [1569.5, 181.5], [1568.5, 185.5], [1567.5, 186.5], [1567.5, 188.5], [1568.5, 188.5], [1568.5, 191.5], [1569.5, 191.5], [1569.5, 193.5], [1571.5, 195.5], [1585.5, 195.5], [1585.5, 191.5], [1586.5, 191.5], [1586.5, 188.5], [1587.5, 188.5], [1587.5, 186.5], [1586.5, 186.5], [1586.5, 183.5], [1585.5, 183.5], [1585.5, 181.5], [1581.5, 178.5], [1579.5, 177.5], [1579.5, 177.5], [1577.5, 177.5], [1579.5, 177.5], [1579.5, 177.5]]}, +{"id": "twsezx", "submitted_by": "Nyxaeroz", "name": "Cookie Clicker", "description": "A cookie with a cursor in reference to the popular idle game Cookie Clicker, made by the r/incremental_games and r/CookieClicker subreddits. Around 30 minutes before the end of r/place, a collaborative effort was organized with r/RandomActsOfTf2 to draw a ribbon wrapping the cookie, which represents an item in Team Fortress 2 given to players who participate in the group.", "website": "https://orteil.dashnet.org/cookieclicker/", "subreddit": "/r/CookieClicker, /r/incremental_games, /r/RandomActsOfTf2", "center": [1577.5, 187.5], "path": [[1576.5, 176.5], [1578.5, 176.5], [1579.5, 177.5], [1581.5, 177.5], [1582.5, 178.5], [1583.5, 178.5], [1586.5, 181.5], [1586.5, 182.5], [1587.5, 183.5], [1587.5, 185.5], [1588.5, 186.5], [1588.5, 188.5], [1587.5, 189.5], [1587.5, 191.5], [1586.5, 192.5], [1586.5, 195.5], [1585.5, 196.5], [1571.5, 196.5], [1568.5, 193.5], [1568.5, 192.5], [1567.5, 191.5], [1567.5, 189.5], [1566.5, 188.5], [1566.5, 186.5], [1567.5, 185.5], [1567.5, 183.5], [1568.5, 182.5], [1568.5, 181.5], [1571.5, 178.5], [1572.5, 178.5], [1573.5, 177.5], [1575.5, 177.5]]}, {"id": "twseir", "submitted_by": "NeverBeOutOfCake", "name": "Oxford and Cambridge crests", "description": "The crests of the Universities of Oxford and Cambridge, sitting aside each other in an irreproducible moment of armistice.", "website": "", "subreddit": "", "center": [513.5, 1481.5], "path": [[492.5, 1468.5], [535.5, 1468.5], [535.5, 1487.5], [534.5, 1487.5], [534.5, 1488.5], [533.5, 1489.5], [532.5, 1490.5], [531.5, 1491.5], [530.5, 1491.5], [527.5, 1493.5], [519.5, 1493.5], [519.5, 1497.5], [519.5, 1494.5], [515.5, 1497.5], [512.5, 1497.5], [511.5, 1496.5], [509.5, 1495.5], [509.5, 1493.5], [508.5, 1494.5], [500.5, 1494.5], [500.5, 1493.5], [495.5, 1490.5], [492.5, 1486.5]]}, {"id": "twsei6", "submitted_by": "Erfly", "name": "Fiend", "description": "A small depiction of Fiend from the Binding of Isaac MOD: Fiend Folio.", "website": "https://fiendfol.io/", "subreddit": "/r/themoddingofisaac", "center": [99.5, 334.5], "path": [[93.5, 327.5], [93.5, 340.5], [104.5, 340.5], [104.5, 327.5]]}, {"id": "twseb7", "submitted_by": "heyhowzitgoinn", "name": "Wally / Waldo", "description": "You found him!", "website": "", "subreddit": "", "center": [1729.5, 287.5], "path": [[1738.5, 310.5], [1721.5, 311.5], [1721.5, 306.5], [1722.5, 306.5], [1722.5, 303.5], [1723.5, 303.5], [1723.5, 288.5], [1722.5, 288.5], [1722.5, 287.5], [1719.5, 287.5], [1719.5, 286.5], [1714.5, 286.5], [1714.5, 285.5], [1713.5, 285.5], [1713.5, 278.5], [1712.5, 278.5], [1712.5, 272.5], [1714.5, 272.5], [1714.5, 271.5], [1716.5, 271.5], [1716.5, 272.5], [1717.5, 272.5], [1718.5, 272.5], [1718.5, 273.5], [1720.5, 273.5], [1720.5, 277.5], [1718.5, 277.5], [1718.5, 281.5], [1719.5, 282.5], [1722.5, 282.5], [1722.5, 276.5], [1721.5, 276.5], [1721.5, 272.5], [1719.5, 272.5], [1719.5, 268.5], [1720.5, 268.5], [1720.5, 266.5], [1721.5, 266.5], [1721.5, 264.5], [1722.5, 264.5], [1722.5, 262.5], [1723.5, 262.5], [1723.5, 260.5], [1724.5, 260.5], [1725.5, 260.5], [1725.5, 261.5], [1726.5, 262.5], [1727.5, 262.5], [1727.5, 263.5], [1732.5, 263.5], [1732.5, 264.5], [1733.5, 264.5], [1733.5, 265.5], [1737.5, 265.5], [1737.5, 271.5], [1736.5, 271.5], [1736.5, 275.5], [1735.5, 276.5], [1734.5, 276.5], [1734.5, 285.5], [1738.5, 290.5], [1739.5, 291.5], [1740.5, 291.5], [1740.5, 292.5], [1741.5, 293.5], [1741.5, 294.5], [1743.5, 294.5], [1743.5, 295.5], [1744.5, 295.5], [1744.5, 300.5], [1754.5, 310.5], [1754.5, 311.5], [1752.5, 311.5], [1741.5, 300.5]]}, {"id": "twse0h", "submitted_by": "chrisay_newfarm", "name": "The Kid", "description": "The face of the main protagonist of I Wanna Be The Guy and its many spinoff fangames. The background depicts a cherry/apple tree.", "website": "https://cwpat.me/fangames-intro/", "subreddit": "", "center": [1887.5, 58.5], "path": [[1894.5, 53.5], [1879.5, 53.5], [1879.5, 63.5], [1894.5, 63.5], [1894.5, 53.5]]}, {"id": "twsdsn", "submitted_by": "LolZoeMain", "name": "Chrono Trigger", "description": "The character Chrono from Chrono Trigger a JRPG game developed and published by Square for the SNES", "website": "", "subreddit": "/r/chronotrigger", "center": [440.5, 1953.5], "path": [[430.5, 1937.5], [449.5, 1937.5], [449.5, 1970.5], [431.5, 1970.5]]}, -{"id": "twsdkj", "submitted_by": "Skieblu", "name": "Alfonse", "description": "Alfonse is one of the main characters from the mobile gacha game, Fire Emblem Heroes. Fire Emblem Heroes is a tactical role-playing game published by Nintendo in 2017.", "website": "https://fire-emblem-heroes.com", "subreddit": "/r/Fireemblemheroes", "center": [1577.5, 1751.5], "path": [[1588.5, 1761.5], [1566.5, 1761.5], [1566.5, 1746.5], [1567.5, 1746.5], [1567.5, 1745.5], [1569.5, 1745.5], [1569.5, 1743.5], [1575.5, 1740.5], [1582.5, 1740.5], [1582.5, 1741.5], [1584.5, 1741.5], [1589.5, 1747.5], [1589.5, 1752.5], [1588.5, 1753.5], [1587.5, 1756.5], [1587.5, 1759.5], [1588.5, 1760.5]]}, +{"id": "twsdkj", "submitted_by": "Skieblu", "name": "Alfonse", "description": "Alfonse is one of the main characters from the mobile gacha game, Fire Emblem Heroes. Fire Emblem Heroes is a tactical role-playing game published by Nintendo in 2017, and is one of Nintendo's highest grossing mobile games to date. This pixel art was made possible by exiaax and r/fireemblem in collaboration with the Gacha Alliance.", "website": "https://fire-emblem-heroes.com", "subreddit": "/r/Fireemblemheroes", "center": [1577.5, 1751.5], "path": [[1588.5, 1761.5], [1566.5, 1761.5], [1566.5, 1746.5], [1567.5, 1746.5], [1567.5, 1745.5], [1569.5, 1745.5], [1569.5, 1743.5], [1575.5, 1740.5], [1582.5, 1740.5], [1582.5, 1741.5], [1584.5, 1741.5], [1589.5, 1747.5], [1589.5, 1752.5], [1588.5, 1753.5], [1587.5, 1756.5], [1587.5, 1759.5], [1588.5, 1760.5]]}, {"id": "twsdj0", "submitted_by": "Infernio", "name": "The Sword of Protection (Season 5)", "description": "The signature weapon of Adora aka She-Ra, protagonist of the 2018 Netflix series She-Ra and the Princesses of Power. This is the thinner design used in season 5 of the series. Built and maintained in collaboration with /r/TheOwlHouse and friends.", "website": "https://www.netflix.com/title/80179762", "subreddit": "/r/PrincessesOfPower", "center": [527.5, 957.5], "path": [[512.5, 956.5], [516.5, 956.5], [518.5, 954.5], [521.5, 954.5], [521.5, 955.5], [540.5, 955.5], [542.5, 957.5], [540.5, 959.5], [521.5, 959.5], [520.5, 960.5], [518.5, 960.5], [516.5, 958.5], [512.5, 958.5]]}, {"id": "twsdf1", "submitted_by": "Hey_Bals", "name": "Capybara", "description": "A cute capybara standing on top of Senna's iconic helmet.", "website": "", "subreddit": "/r/brasil", "center": [934.5, 603.5], "path": [[938.5, 609.5], [944.5, 604.5], [938.5, 597.5], [927.5, 597.5], [927.5, 608.5]]}, {"id": "twsd9a", "submitted_by": "doctor_disco221", "name": "Vucko", "description": "Vucko - the mascot of 1984 Winter Olympics held in Sarajevo, Bosnia and Herzegovina", "website": "https://olympics.com/en/olympic-games/sarajevo-1984", "subreddit": "/r/bih", "center": [356.5, 756.5], "path": [[343.5, 757.5], [343.5, 752.5], [344.5, 752.5], [344.5, 751.5], [346.5, 751.5], [347.5, 753.5], [348.5, 752.5], [348.5, 750.5], [349.5, 749.5], [349.5, 746.5], [350.5, 746.5], [351.5, 745.5], [351.5, 746.5], [352.5, 747.5], [353.5, 750.5], [356.5, 750.5], [357.5, 749.5], [358.5, 747.5], [359.5, 746.5], [360.5, 746.5], [360.5, 750.5], [366.5, 755.5], [364.5, 757.5], [361.5, 757.5], [365.5, 758.5], [366.5, 762.5], [366.5, 767.5], [362.5, 766.5], [361.5, 762.5], [360.5, 762.5], [360.5, 764.5], [354.5, 763.5], [354.5, 757.5], [348.5, 757.5], [348.5, 759.5], [346.5, 759.5], [346.5, 757.5], [345.5, 759.5], [344.5, 758.5], [343.5, 756.5], [343.5, 756.5]]}, @@ -2343,15 +2191,13 @@ {"id": "twscjm", "submitted_by": "aarontbarratt", "name": "Discworld", "description": "Dedication to Sir Terry Pratchett, creator of the much loved discworld series", "website": "https://www.terrypratchettbooks.com/", "subreddit": "/r/discworld", "center": [1879.5, 881.5], "path": [[1870.5, 870.5], [1887.5, 870.5], [1887.5, 892.5], [1870.5, 892.5]]}, {"id": "twscjl", "submitted_by": "Odd-Scientist7021", "name": "Band-Maid", "description": "Band-Maid is a Japanese rock band formed in 2013", "website": "https://bandmaid.tokyo", "subreddit": "/r/BandMaid", "center": [1147.5, 496.5], "path": [[1133.5, 481.5], [1132.5, 502.5], [1126.5, 503.5], [1126.5, 508.5], [1172.5, 509.5], [1171.5, 504.5], [1167.5, 504.5], [1165.5, 480.5], [1161.5, 480.5], [1162.5, 504.5], [1153.5, 503.5], [1153.5, 483.5], [1147.5, 481.5], [1142.5, 480.5]]}, {"id": "twscfh", "submitted_by": "Hey_Bals", "name": "Machado de Assis", "description": "Pixel art of Machado de Assis, Brazil's greatest writer.", "website": "", "subreddit": "/r/brasil", "center": [917.5, 606.5], "path": [[918.5, 593.5], [907.5, 593.5], [907.5, 619.5], [927.5, 619.5], [926.5, 594.5]]}, -{"id": "twscbq", "submitted_by": "jklJetZz", "name": "Hrry Bleb Emotes", "description": "A group of emotes from the twitch streamer Harry/Barry (Part of the Yogscast network)", "website": "https://gunt.tv/", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twscbm", "submitted_by": "bever91", "name": "Jupiler logo", "description": "The logo of the Belgian beer Jupiler", "website": "https://jupiler.be/nl", "subreddit": "/r/belgium", "center": [1308.5, 1345.5], "path": [[1306.5, 1363.5], [1310.5, 1363.5], [1323.5, 1349.5], [1323.5, 1335.5], [1307.5, 1329.5], [1307.5, 1326.5], [1307.5, 1324.5], [1315.5, 1322.5], [1311.5, 1321.5], [1309.5, 1322.5], [1307.5, 1322.5], [1306.5, 1324.5], [1305.5, 1327.5], [1304.5, 1332.5], [1303.5, 1333.5], [1303.5, 1332.5], [1302.5, 1334.5], [1298.5, 1334.5], [1294.5, 1335.5], [1294.5, 1349.5], [1294.5, 1350.5], [1295.5, 1352.5], [1298.5, 1356.5], [1297.5, 1360.5], [1299.5, 1360.5], [1300.5, 1358.5], [1301.5, 1359.5], [1306.5, 1362.5], [1310.5, 1363.5], [1306.5, 1363.5], [1306.5, 1362.5], [1307.5, 1363.5], [1308.5, 1363.5], [1310.5, 1363.5], [1300.5, 1358.5], [1299.5, 1360.5], [1297.5, 1360.5], [1297.5, 1357.5], [1298.5, 1356.5]]}, -{"id": "twsca8", "submitted_by": "DrFrankTilde", "name": "Chrono from Chrono Trigger", "description": "Sprite artwork of the main character, Crono, from the acclaimed Role-Playing-Game Chrono Trigger released on the Super Nintendo in 1995.", "website": "https://chronotrigger.square-enix-games.com/en-GB", "subreddit": "/r/chronotrigger", "center": [0.5, 0.5], "path": []}, {"id": "twsbzr", "submitted_by": "Moxinilian", "name": "Chess board of the chess club", "description": "Chess board of the chess club of ENS Rennes", "website": "https://www.ens-rennes.fr", "subreddit": "", "center": [297.5, 1590.5], "path": [[294.5, 1585.5], [300.5, 1585.5], [300.5, 1594.5], [294.5, 1594.5]]}, {"id": "twsbxy", "submitted_by": "Infernio", "name": "Catradora", "description": "Catradora is the ship name for Catra (left) and Adora (right) from the 2018 Netflix series She-Ra and the Princesses of Power. They are shown here in their season 1 designs, with Adora in She-Ra form. The background is a lesbian pride flag.", "website": "", "subreddit": "/r/catradora", "center": [1584.5, 424.5], "path": [[1570.5, 421.5], [1597.5, 421.5], [1597.5, 427.5], [1570.5, 427.5]]}, {"id": "twsbxs", "submitted_by": "Nikkilak", "name": "Militank", "description": "This lactating Pokemon was created by the streamer Ravs and his community in collaboration with the Belgium community.", "website": "https://www.twitch.tv/ravs_", "subreddit": "/r/Yogscast", "center": [1320.5, 1759.5], "path": [[1316.5, 1747.5], [1308.5, 1749.5], [1308.5, 1770.5], [1331.5, 1772.5], [1331.5, 1748.5]]}, {"id": "twsbwj", "submitted_by": "alphafromomega", "name": "Bleb Emote Quad", "description": "4 emotes from Youtuber and Twitch Streamer Hrry.", "website": "", "subreddit": "/r/hrry", "center": [395.5, 566.5], "path": [[379.5, 550.5], [411.5, 550.5], [411.5, 582.5], [379.5, 582.5]]}, {"id": "twsbt2", "submitted_by": "BlupMcBubbles", "name": "Lucky Luke", "description": "Lucky Luke, the man who shoots faster than his shadow, a famous Belgian bande dessin\u00e9e character created by Morris. Lucky Luke is always chasing the brothers Dalton among other adventures in the MidWest, with his faithful steed Jolly Jumper.", "website": "", "subreddit": "", "center": [1310.5, 1025.5], "path": [[1297.5, 1013.5], [1308.5, 1008.5], [1316.5, 1013.5], [1320.5, 1002.5], [1326.5, 1001.5], [1330.5, 1004.5], [1330.5, 1008.5], [1318.5, 1023.5], [1309.5, 1023.5], [1313.5, 1027.5], [1317.5, 1041.5], [1312.5, 1042.5], [1313.5, 1053.5], [1303.5, 1053.5], [1302.5, 1038.5], [1296.5, 1038.5]]}, -{"id": "twsbqf", "submitted_by": "SavagePhoenix9", "name": "Marvel place", "description": "a section full of logos of popular marvel teams, and superheroes", "website": "marvel.com", "subreddit": "/r/Marvel_Place", "center": [981.5, 1703.5], "path": [[954.5, 1688.5], [954.5, 1723.5], [986.5, 1723.5], [986.5, 1720.5], [986.5, 1719.5], [1007.5, 1719.5], [1007.5, 1703.5], [1007.5, 1703.5], [1008.5, 1702.5], [1008.5, 1699.5], [1007.5, 1696.5], [1006.5, 1683.5], [1007.5, 1685.5], [995.5, 1685.5], [993.5, 1673.5], [989.5, 1674.5], [989.5, 1683.5], [984.5, 1681.5], [979.5, 1684.5], [981.5, 1688.5], [954.5, 1688.5]]}, +{"id": "twsbqf", "submitted_by": "SavagePhoenix9", "name": "Marvel place", "description": "a section full of logos of popular marvel teams, and superheroes", "website": "https://marvel.com", "subreddit": "/r/Marvel_Place", "center": [981.5, 1703.5], "path": [[954.5, 1688.5], [954.5, 1723.5], [986.5, 1723.5], [986.5, 1720.5], [986.5, 1719.5], [1007.5, 1719.5], [1007.5, 1703.5], [1007.5, 1703.5], [1008.5, 1702.5], [1008.5, 1699.5], [1007.5, 1696.5], [1006.5, 1683.5], [1007.5, 1685.5], [995.5, 1685.5], [993.5, 1673.5], [989.5, 1674.5], [989.5, 1683.5], [984.5, 1681.5], [979.5, 1684.5], [981.5, 1688.5], [954.5, 1688.5]]}, {"id": "twsbq3", "submitted_by": "Etern1tyDark", "name": "Little D", "description": "The mascot and initial character from the mobile rhythm game Dynamix.", "website": "https://dynamixc4cat.fandom.com/wiki/Main_Page", "subreddit": "/r/DynamixApp", "center": [1260.5, 1882.5], "path": [[1254.5, 1876.5], [1253.5, 1887.5], [1266.5, 1887.5], [1266.5, 1877.5]]}, {"id": "twsb2h", "submitted_by": "aarontbarratt", "name": "MF DOOM", "description": "Legenary underground rapper. Your favourite rappers favourite rapper", "website": "https://www.youtube.com/watch?v=zQ0yXh_ADlQ&list=PL9dk_xtWpAkKs1-EKcvq-nKwdaaS-3czd", "subreddit": "/r/mfdoom", "center": [1597.5, 894.5], "path": [[1589.5, 880.5], [1589.5, 880.5], [1605.5, 880.5], [1606.5, 907.5], [1588.5, 907.5], [1589.5, 880.5]]}, {"id": "twsazy", "submitted_by": "SnooHabits8177", "name": "lil guy", "description": "look at the little guy", "website": "", "subreddit": "", "center": [306.5, 720.5], "path": [[303.5, 721.5], [303.5, 718.5], [309.5, 718.5], [309.5, 721.5]]}, @@ -2360,7 +2206,7 @@ {"id": "twsact", "submitted_by": "Daenyth", "name": "dusolulu", "description": "A conpidgin inspired by Viossa", "website": "", "subreddit": "/r/dusolulu", "center": [765.5, 293.5], "path": [[761.5, 289.5], [768.5, 289.5], [768.5, 297.5], [761.5, 297.5]]}, {"id": "twsa89", "submitted_by": "SlothBM", "name": "Fleur", "description": "The logo of a French streamer (Ponce)", "website": "https://www.twitch.tv/ponce", "subreddit": "", "center": [1950.5, 18.5], "path": [[1946.5, 1.5], [1959.5, 1.5], [1961.5, 34.5], [1940.5, 34.5], [1941.5, 1.5], [1940.5, 1.5]]}, {"id": "tws9x5", "submitted_by": "MIKMAKLive", "name": "LFI VS Z", "description": "This griefed version was the logo of French Left political party France Insoumise, before being vandalized by Far-Right Fascist party of Reconquete! (Zemmour).", "website": "", "subreddit": "", "center": [1679.5, 744.5], "path": [[1665.5, 723.5], [1666.5, 765.5], [1690.5, 766.5], [1694.5, 723.5], [1665.5, 723.5]]}, -{"id": "tws9m2", "submitted_by": "KraideZ", "name": "Monkeytype.com", "description": "Monkeytype.com is a typing website with a modern interface that lets you practice typing indvidual words or quotes.nIt's mainly used by touchtypists to practice speed.", "website": "www.monkeytype.com", "subreddit": "/r/monkeytype", "center": [620.5, 1321.5], "path": [[596.5, 1301.5], [596.5, 1330.5], [590.5, 1331.5], [589.5, 1339.5], [652.5, 1339.5], [649.5, 1331.5], [642.5, 1330.5], [644.5, 1301.5], [596.5, 1301.5]]}, +{"id": "tws9m2", "submitted_by": "KraideZ", "name": "Monkeytype.com", "description": "Monkeytype.com is a typing website with a modern interface that lets you practice typing indvidual words or quotes.nIt's mainly used by touchtypists to practice speed.", "website": "https://www.monkeytype.com", "subreddit": "/r/monkeytype", "center": [620.5, 1321.5], "path": [[596.5, 1301.5], [596.5, 1330.5], [590.5, 1331.5], [589.5, 1339.5], [652.5, 1339.5], [649.5, 1331.5], [642.5, 1330.5], [644.5, 1301.5], [596.5, 1301.5]]}, {"id": "tws9j0", "submitted_by": "Vanguard-Raven", "name": "Dragalia Lost app icon", "description": "The app icon for the Dragalia Lost mobile game. Published by Nintendo and developed by Cygames. Released on 27th September 2018. nnThe game's end of service has been announced to be some time after July 2022, after the main campaign has concluded. We will miss you, Euden and friends.", "website": "https://dragalialost.wiki/w/Dragalia_Lost_Wiki", "subreddit": "/r/DragaliaLost", "center": [1450.5, 1716.5], "path": [[1440.5, 1706.5], [1459.5, 1706.5], [1460.5, 1725.5], [1440.5, 1725.5], [1440.5, 1706.5]]}, {"id": "tws9i1", "submitted_by": "AvatarDeino", "name": "Tiny Tardis and Tiny Bill Cipher", "description": "A group of people (r/TinyTardis) gained permission from the My Little Pony faction (r/mylittlepony) to create a small version of the TARDIS, a time machine from the British sci-fi show 'Doctor Who' next to one of their spots. One other user from r/gravityfalls gained permission to place a small version of the character 'Bill Cipher' next to the TARDIS.", "website": "", "subreddit": "/r/TinyTardis", "center": [1610.5, 254.5], "path": [[1616.5, 247.5], [1604.5, 247.5], [1604.5, 261.5], [1615.5, 260.5], [1616.5, 260.5]]}, {"id": "tws8l3", "submitted_by": "Turbulent_Chapter363", "name": "The Belgian Flag", "description": "The third largest flag made by a small country of just 11 million people. Community engagement is beautiful.", "website": "", "subreddit": "", "center": [1309.5, 1285.5], "path": [[1282.5, 773.5], [1333.5, 773.5], [1332.5, 1820.5], [1287.5, 1818.5], [1286.5, 1267.5]]}, @@ -2377,29 +2223,28 @@ {"id": "twuqxa", "submitted_by": "xRGTMX", "name": "Dance Dance Revolution", "description": "Rhythm game series by KONAMI since 1998. Spawned clones and simulators such as Pump It Up, StepMania, In The Groove, StepManiaX, Friday Night Funkin, and more.", "website": "https://p.eagate.573.jp/game/ddr/", "subreddit": "/r/DanceDanceRevolution", "center": [776.5, 696.5], "path": [[776.5, 688.5], [768.5, 696.5], [776.5, 704.5], [784.5, 696.5]]}, {"id": "twuqvr", "submitted_by": "Captain_Meow_Piano", "name": "Comet and Golden Axe", "description": "Comet and golden axe are both representation of Hoshimachi Suisei, a Japanese VTuber under the 0th generation of Hololive.nComet is an official representation of her as Suisei in Japanese means comet.nGolden axe originates from a meme that she acted as a psychopath while killing her fellow Hololive members by a golden axe in the game Project Winter, hence also granted a nickname, Suicopath.nBe careful as the golden axe can be right behind you anytime!", "website": "", "subreddit": "/r/HoshimachiSuisei", "center": [1337.5, 911.5], "path": [[1342.5, 903.5], [1334.5, 907.5], [1334.5, 921.5], [1340.5, 915.5], [1338.5, 913.5], [1338.5, 909.5], [1343.5, 904.5], [1343.5, 903.5]]}, {"id": "twuqvi", "submitted_by": "Feking98", "name": "Watamelon", "description": "The pun meme version of Hololive Vtuber Tsunomaki Watame where her entire sheep body is inside a watamelon. She is a crafty sheep", "website": "", "subreddit": "/r/hololive", "center": [1407.5, 1108.5], "path": [[1400.5, 1095.5], [1401.5, 1095.5], [1411.5, 1099.5], [1416.5, 1101.5], [1416.5, 1120.5], [1399.5, 1120.5], [1399.5, 1117.5], [1397.5, 1115.5], [1401.5, 1113.5], [1401.5, 1111.5], [1397.5, 1108.5], [1397.5, 1105.5], [1398.5, 1104.5], [1398.5, 1101.5], [1397.5, 1099.5], [1397.5, 1095.5]]}, -{"id": "twuqf8", "submitted_by": "zzzz1w1w", "name": ".tv/drakeoffc Avatar", "description": "An art of the avatar of a Russian streamer drakeoffc along with some other minor Russian local memes.", "website": "twitch.tv/drakeoffc", "subreddit": "", "center": [1946.5, 642.5], "path": [[1892.5, 590.5], [2000.5, 589.5], [1999.5, 694.5], [1893.5, 695.5]]}, +{"id": "twuqf8", "submitted_by": "zzzz1w1w", "name": ".tv/drakeoffc Avatar", "description": "An art of the avatar of a Russian streamer drakeoffc along with some other minor Russian local memes.", "website": "https://twitch.tv/drakeoffc", "subreddit": "", "center": [1946.5, 642.5], "path": [[1892.5, 590.5], [2000.5, 589.5], [1999.5, 694.5], [1893.5, 695.5]]}, {"id": "twuq8g", "submitted_by": "Cordon-Bleu", "name": "Sanae Kochiya", "description": "A character from the video game franchise Touhou Project. Sanae is working at Moriya Shrine as a human but also a descendant of the goddess Suwako Moriya", "website": "", "subreddit": "/r/Touhou", "center": [1581.5, 1504.5], "path": [[1577.5, 1498.5], [1574.5, 1495.5], [1570.5, 1495.5], [1570.5, 1518.5], [1593.5, 1518.5], [1593.5, 1490.5], [1570.5, 1490.5], [1570.5, 1496.5]]}, {"id": "twuq23", "submitted_by": "furreypandey", "name": "Watamelon", "description": "Meme of Hololive Japan 4th Generation, Tsunomaki Watame.", "website": "https://www.youtube.com/channel/UCqm3BQLlJfvkTsX_hvm0UmA", "subreddit": "/r/hololive", "center": [1407.5, 1110.5], "path": [[1398.5, 1095.5], [1416.5, 1103.5], [1416.5, 1106.5], [1418.5, 1108.5], [1418.5, 1113.5], [1419.5, 1115.5], [1419.5, 1120.5], [1398.5, 1120.5]]}, -{"id": "twupzc", "submitted_by": "Lemonwires", "name": "Our World Of Pixels", "description": "A link to the game \u201cOur World of Pixels\u201d in which people can essentially draw pixels with multiple tools with other people.n", "website": "owop.me", "subreddit": "/r/ourworldofpixels", "center": [664.5, 1380.5], "path": [[646.5, 1375.5], [682.5, 1376.5], [683.5, 1384.5], [646.5, 1384.5]]}, +{"id": "twupzc", "submitted_by": "Lemonwires", "name": "Our World Of Pixels", "description": "A link to the game \u201cOur World of Pixels\u201d in which people can essentially draw pixels with multiple tools with other people.n", "website": "https://owop.me", "subreddit": "/r/ourworldofpixels", "center": [664.5, 1380.5], "path": [[646.5, 1375.5], [682.5, 1376.5], [683.5, 1384.5], [646.5, 1384.5]]}, {"id": "twupuc", "submitted_by": "hdckighfkvhvgmk", "name": "the H cult", "description": "A few notable members from a private discord server called 'H cult'. There were more members present right before the canvas got wiped.", "website": "", "subreddit": "", "center": [539.5, 1816.5], "path": [[537.5, 1822.5], [537.5, 1828.5], [526.5, 1828.5], [526.5, 1822.5], [537.5, 1822.5], [538.5, 1821.5], [538.5, 1809.5], [543.5, 1809.5], [543.5, 1804.5], [549.5, 1804.5], [549.5, 1816.5], [538.5, 1816.5]]}, {"id": "twupp0", "submitted_by": "turbocharged_autist", "name": "EL PLAN (ALO)", "description": "A tribute to the spanish F1 driver Fernando (El Nano) Alonso", "website": "https://www.youtube.com/watch?v=oq9HlVE86OA", "subreddit": "", "center": [1612.5, 294.5], "path": [[1596.5, 280.5], [1627.5, 281.5], [1627.5, 307.5], [1597.5, 307.5]]}, {"id": "twupht", "submitted_by": "GiervantzRadomia", "name": "Disturbance", "description": "Mascot of Thrive, a Open-source game about the evolution of life", "website": "https://revolutionarygamesstudio.com/", "subreddit": "/r/thrive", "center": [161.5, 1098.5], "path": [[167.5, 1092.5], [167.5, 1103.5], [155.5, 1103.5], [155.5, 1092.5], [161.5, 1094.5]]}, {"id": "twupey", "submitted_by": "TheOkada", "name": "Arbonaida", "description": "Flag of Andalusia", "website": "", "subreddit": "", "center": [1394.5, 1017.5], "path": [[1402.5, 999.5], [1378.5, 999.5], [1381.5, 1004.5], [1386.5, 1008.5], [1385.5, 1018.5], [1385.5, 1020.5], [1388.5, 1020.5], [1388.5, 1024.5], [1391.5, 1027.5], [1391.5, 1042.5], [1401.5, 1042.5], [1402.5, 999.5]]}, {"id": "twup9k", "submitted_by": "Wootsicle", "name": "Disc Golf", "description": "A relaxing or frustrating sport where you chuck plastic discs at metal chains.", "website": "https://www.pdga.com/", "subreddit": "/r/discgolf", "center": [1234.5, 917.5], "path": [[1211.5, 908.5], [1211.5, 926.5], [1256.5, 926.5], [1256.5, 908.5]]}, {"id": "twup10", "submitted_by": "HammerHeado", "name": "ZUTOMAYO", "description": "Zutto Mayonaka de Iinoni, stylized as ZUTOMAYO, is a Japanese rock group that debuted in 2018.", "website": "https://zutomayo.net/", "subreddit": "/r/ZUTOMAYO", "center": [1156.5, 1698.5], "path": [[1148.5, 1690.5], [1163.5, 1690.5], [1163.5, 1705.5], [1148.5, 1705.5]]}, -{"id": "twuoys", "submitted_by": "Legitimate_Band3149", "name": "Staryuuki", "description": "La mejor streamer hispanohablante y l\u00edder de la Bunny army", "website": "www.twitch.tv/staryuuki", "subreddit": "/r/staryuuki", "center": [1100.5, 1355.5], "path": [[1115.5, 1340.5], [1115.5, 1340.5], [1115.5, 1340.5], [1115.5, 1340.5], [1115.5, 1340.5], [1115.5, 1370.5], [1115.5, 1370.5], [1084.5, 1370.5], [1084.5, 1370.5], [1084.5, 1340.5], [1084.5, 1340.5]]}, +{"id": "twuoys", "submitted_by": "Legitimate_Band3149", "name": "Staryuuki", "description": "La mejor streamer hispanohablante y l\u00edder de la Bunny army", "website": "https://www.twitch.tv/staryuuki", "subreddit": "/r/staryuuki", "center": [1100.5, 1355.5], "path": [[1115.5, 1340.5], [1115.5, 1340.5], [1115.5, 1340.5], [1115.5, 1340.5], [1115.5, 1340.5], [1115.5, 1370.5], [1115.5, 1370.5], [1084.5, 1370.5], [1084.5, 1370.5], [1084.5, 1340.5], [1084.5, 1340.5]]}, {"id": "twuosu", "submitted_by": "BlackBrown123", "name": "Chiblee MSN Girl", "description": "Art depicting the popular Polar Express streamer 'Chiblee'", "website": "http://www.twitch.tv/chiblee", "subreddit": "/r/chibleetwitch", "center": [1753.5, 1405.5], "path": [[1740.5, 1423.5], [1765.5, 1423.5], [1765.5, 1386.5], [1740.5, 1386.5]]}, {"id": "twuoo3", "submitted_by": "PratzStrike", "name": "Castle Crashers", "description": "Various color palettes of the otherwise identical playable knights in the video game Castle Crashers.", "website": "https://www.castlecrashers.com/", "subreddit": "/r/castlecrashers", "center": [1899.5, 87.5], "path": [[1921.5, 73.5], [1921.5, 100.5], [1898.5, 100.5], [1897.5, 103.5], [1879.5, 103.5], [1879.5, 73.5], [1921.5, 73.5]]}, -{"id": "twuofb", "submitted_by": "OctolingGrimm", "name": "Non-binary Blahaj with the Trans flag", "description": "Blahaj, an Ikea plushie that is an icon within the trans community, in the colors of the non-binary pride flag, and holding a Transgender pride flag.", "website": "", "subreddit": "/r/transplace", "center": [0.5, 0.5], "path": []}, {"id": "twuoah", "submitted_by": "Pinsterr", "name": "Shiny Swablu Plush", "description": "It's a secret base plush of a shiny swablu!", "website": "", "subreddit": "/r/pokemon", "center": [98.5, 756.5], "path": [[91.5, 749.5], [105.5, 749.5], [105.5, 763.5], [91.5, 763.5], [91.5, 749.5]]}, {"id": "twuo5b", "submitted_by": "ForystChris", "name": "Detroit Lions", "description": "A professional American football team based in Detroit. The Lions compete in the National Football League (NFL) as a member of the National Football Conference (NFC) North Division.", "website": "https://www.detroitlions.com/", "subreddit": "/r/DetroitLions", "center": [1189.5, 96.5], "path": [[1164.5, 88.5], [1164.5, 103.5], [1214.5, 103.5], [1214.5, 88.5], [1165.5, 88.5]]}, {"id": "twuo1r", "submitted_by": "Nargle_____", "name": "Lighthouse Place", "description": "Just a small lighthouse about 50 of us banded together to make.", "website": "https://discord.gg/kbQQqKz2", "subreddit": "/r/place", "center": [1676.5, 1980.5], "path": [[1672.5, 1989.5], [1673.5, 1989.5], [1674.5, 1990.5], [1678.5, 1990.5], [1680.5, 1988.5], [1680.5, 1987.5], [1679.5, 1986.5], [1678.5, 1986.5], [1677.5, 1985.5], [1677.5, 1975.5], [1678.5, 1974.5], [1678.5, 1970.5], [1678.5, 1968.5], [1677.5, 1967.5], [1675.5, 1967.5], [1674.5, 1968.5], [1674.5, 1972.5], [1675.5, 1973.5], [1674.5, 1974.5], [1675.5, 1975.5], [1675.5, 1985.5], [1674.5, 1986.5], [1673.5, 1986.5], [1672.5, 1987.5], [1672.5, 1989.5], [1673.5, 1990.5]]}, {"id": "twuo1j", "submitted_by": "Significant_Wall9756", "name": "Menorah", "description": "A temple menorah, one of the most important symbols of Judaism, created in cooperation with Israel.", "website": "https://en.wikipedia.org/wiki/Temple_menorah", "subreddit": "/r/placeDE", "center": [1780.5, 1134.5], "path": [[1767.5, 1122.5], [1794.5, 1122.5], [1794.5, 1127.5], [1791.5, 1134.5], [1787.5, 1140.5], [1782.5, 1141.5], [1787.5, 1149.5], [1787.5, 1153.5], [1778.5, 1154.5], [1773.5, 1152.5], [1779.5, 1141.5], [1774.5, 1141.5], [1768.5, 1133.5]]}, -{"id": "twuo0p", "submitted_by": "gritteee", "name": "Tubbo Offline", "description": "A shared space for streamer Tubbo's offline chats on his main (chat_) and alt (jammers) channels.", "website": "twitch.tv/tubbo", "subreddit": "/r/tubbo_", "center": [1720.5, 162.5], "path": [[1698.5, 152.5], [1698.5, 170.5], [1724.5, 170.5], [1724.5, 174.5], [1745.5, 174.5], [1745.5, 160.5], [1730.5, 160.5], [1730.5, 151.5], [1698.5, 151.5], [1698.5, 152.5]]}, +{"id": "twuo0p", "submitted_by": "gritteee", "name": "Tubbo Offline", "description": "A shared space for streamer Tubbo's offline chats on his main (chat_) and alt (jammers) channels.", "website": "https://twitch.tv/tubbo", "subreddit": "/r/tubbo_", "center": [1720.5, 162.5], "path": [[1698.5, 152.5], [1698.5, 170.5], [1724.5, 170.5], [1724.5, 174.5], [1745.5, 174.5], [1745.5, 160.5], [1730.5, 160.5], [1730.5, 151.5], [1698.5, 151.5], [1698.5, 152.5]]}, {"id": "twuo07", "submitted_by": "mynamewastaken-_-", "name": "Nova Scotia", "description": "This is the flag of Nova Scotia, one of Canada's provinces. It has the tagline of: Canada's ocean playground", "website": "https://www.novascotia.com", "subreddit": "/r/NovaScotia", "center": [236.5, 477.5], "path": [[228.5, 472.5], [244.5, 472.5], [244.5, 482.5], [228.5, 482.5]]}, {"id": "twunz1", "submitted_by": "DestructiveUnit", "name": "Give Me Your Shoulders - half\u2022alive", "description": "Album art of Give Me Your Shoulders by alt-rock band half\u2022alive", "website": "", "subreddit": "/r/half_alive", "center": [1110.5, 459.5], "path": [[1103.5, 453.5], [1116.5, 453.5], [1116.5, 464.5], [1103.5, 464.5], [1103.5, 453.5]]}, {"id": "twunsc", "submitted_by": "DestructiveUnit", "name": "half\u2022alive", "description": "A tribute to the alt-rock band half\u2022alive", "website": "", "subreddit": "/r/half_alive", "center": [1070.5, 414.5], "path": [[1062.5, 407.5], [1077.5, 407.5], [1077.5, 421.5], [1062.5, 421.5], [1062.5, 407.5]]}, -{"id": "twunmj", "submitted_by": "KraideZ", "name": "Karhu", "description": "The old logo of a Finnish beer brand Karhu. Karhu directly translates to Bear in English.nAlcohol is a big part of the Finnish culture and Karhu is one of the best known alcohol/beer brands in Finland.", "website": "https://www.karhu.fi/", "subreddit": "", "center": [550.5, 219.5], "path": [[564.5, 203.5], [564.5, 218.5], [565.5, 230.5], [560.5, 234.5], [540.5, 235.5], [537.5, 233.5], [537.5, 203.5], [540.5, 202.5], [544.5, 205.5], [557.5, 205.5], [563.5, 202.5]]}, +{"id": "twunmj", "submitted_by": "KraideZ", "name": "Karhu", "description": "The old logo of a Finnish beer brand Karhu. Karhu directly translates to 'bear' in English.\n\nAlcohol is a big part of the Finnish culture, and Karhu is one of the best known alcohol/beer brands in Finland.", "website": "https://www.karhu.fi/", "subreddit": "/r/Suomi", "center": [550.5, 219.5], "path": [[564.5, 203.5], [564.5, 218.5], [565.5, 230.5], [560.5, 234.5], [540.5, 235.5], [537.5, 233.5], [537.5, 203.5], [540.5, 202.5], [544.5, 205.5], [557.5, 205.5], [563.5, 202.5]]}, {"id": "twunm3", "submitted_by": "Skrynbox", "name": "Cacabox's banners", "description": "Banner made by the Cacabox, a french group of streamers and youtubersn", "website": "https://twitter.com/cacaboxtv", "subreddit": "", "center": [1416.5, 1270.5], "path": [[1387.5, 1261.5], [1387.5, 1261.5], [1387.5, 1279.5], [1445.5, 1279.5], [1445.5, 1261.5]]}, {"id": "twunc3", "submitted_by": "ziemnakiscool", "name": "Rainbow road", "description": "This is rainbow road. It hosts as background for many drawings such as Luigi and Mario.", "website": "", "subreddit": "/r/ainbowroad", "center": [1602.5, 280.5], "path": [[1515.5, 375.5], [1515.5, 376.5], [1526.5, 376.5], [1526.5, 354.5], [1551.5, 352.5], [1553.5, 336.5], [1570.5, 336.5], [1572.5, 320.5], [1574.5, 319.5], [1574.5, 298.5], [1582.5, 299.5], [1583.5, 308.5], [1595.5, 307.5], [1595.5, 281.5], [1638.5, 279.5], [1683.5, 279.5], [1684.5, 260.5], [1689.5, 257.5], [1689.5, 228.5], [1679.5, 227.5], [1679.5, 222.5], [1676.5, 219.5], [1677.5, 213.5], [1647.5, 213.5], [1642.5, 215.5], [1637.5, 213.5], [1632.5, 215.5], [1630.5, 216.5], [1628.5, 219.5], [1630.5, 225.5], [1629.5, 229.5], [1627.5, 228.5], [1626.5, 224.5], [1617.5, 229.5], [1615.5, 237.5], [1614.5, 240.5], [1615.5, 247.5], [1616.5, 248.5], [1611.5, 249.5], [1608.5, 249.5], [1608.5, 253.5], [1604.5, 254.5], [1604.5, 258.5], [1603.5, 261.5], [1607.5, 262.5], [1606.5, 268.5], [1598.5, 268.5], [1597.5, 273.5], [1554.5, 275.5], [1548.5, 280.5], [1543.5, 282.5], [1534.5, 288.5], [1529.5, 294.5], [1529.5, 297.5], [1533.5, 302.5], [1530.5, 306.5], [1526.5, 310.5], [1518.5, 317.5], [1512.5, 323.5], [1509.5, 324.5], [1505.5, 325.5], [1515.5, 326.5]]}, {"id": "twunbl", "submitted_by": "Feking98", "name": "UberSheep", "description": "An image of Hololive JP VTuber Tsunomaki Watame wearing a Watermelon helmet and riding a moped to deliver food. Likely the dish Jingisukan.", "website": "", "subreddit": "/r/hololive", "center": [1308.5, 1093.5], "path": [[1299.5, 1124.5], [1320.5, 1124.5], [1322.5, 1122.5], [1322.5, 1120.5], [1329.5, 1113.5], [1328.5, 1112.5], [1327.5, 1113.5], [1326.5, 1113.5], [1325.5, 1114.5], [1324.5, 1115.5], [1323.5, 1115.5], [1322.5, 1116.5], [1321.5, 1116.5], [1320.5, 1117.5], [1318.5, 1117.5], [1317.5, 1118.5], [1316.5, 1118.5], [1316.5, 1116.5], [1317.5, 1115.5], [1318.5, 1115.5], [1319.5, 1114.5], [1319.5, 1102.5], [1320.5, 1101.5], [1320.5, 1097.5], [1321.5, 1096.5], [1321.5, 1094.5], [1320.5, 1093.5], [1322.5, 1093.5], [1324.5, 1091.5], [1325.5, 1091.5], [1326.5, 1090.5], [1327.5, 1089.5], [1327.5, 1088.5], [1325.5, 1086.5], [1321.5, 1086.5], [1322.5, 1086.5], [1323.5, 1085.5], [1325.5, 1083.5], [1323.5, 1081.5], [1321.5, 1081.5], [1322.5, 1080.5], [1322.5, 1077.5], [1321.5, 1076.5], [1321.5, 1068.5], [1320.5, 1067.5], [1320.5, 1066.5], [1319.5, 1065.5], [1318.5, 1064.5], [1317.5, 1064.5], [1316.5, 1063.5], [1315.5, 1063.5], [1314.5, 1062.5], [1302.5, 1062.5], [1301.5, 1063.5], [1300.5, 1063.5], [1299.5, 1064.5], [1298.5, 1065.5], [1297.5, 1066.5], [1296.5, 1068.5], [1295.5, 1069.5], [1295.5, 1076.5], [1294.5, 1077.5], [1294.5, 1080.5], [1295.5, 1081.5], [1293.5, 1081.5], [1292.5, 1082.5], [1291.5, 1083.5], [1292.5, 1084.5], [1294.5, 1086.5], [1295.5, 1086.5], [1291.5, 1086.5], [1289.5, 1088.5], [1289.5, 1089.5], [1291.5, 1091.5], [1292.5, 1091.5], [1294.5, 1093.5], [1297.5, 1093.5], [1296.5, 1093.5], [1296.5, 1102.5], [1297.5, 1102.5], [1297.5, 1114.5], [1298.5, 1115.5], [1299.5, 1115.5], [1300.5, 1116.5], [1300.5, 1118.5], [1299.5, 1117.5], [1295.5, 1117.5], [1290.5, 1113.5], [1289.5, 1114.5], [1289.5, 1115.5], [1290.5, 1116.5], [1290.5, 1118.5], [1291.5, 1118.5], [1291.5, 1119.5], [1292.5, 1120.5], [1293.5, 1120.5], [1294.5, 1121.5], [1295.5, 1121.5], [1296.5, 1123.5], [1298.5, 1123.5]]}, @@ -2417,14 +2262,13 @@ {"id": "twulpl", "submitted_by": "lakota101", "name": "Porter Robinson Kaomoji and Potaro", "description": "A mascot for Porter Robinson's secret sky festival as well as his Kaomoji", "website": "https://porterrobinson.com/", "subreddit": "/r/porterrobinson", "center": [510.5, 731.5], "path": [[498.5, 717.5], [498.5, 745.5], [522.5, 745.5], [522.5, 717.5], [522.5, 717.5]]}, {"id": "twulls", "submitted_by": "fawcan", "name": "Robot25lol's Lighthouse", "description": "Lighthouse made by Robot25lol, it was destroyed by the Twitch streamer NymN but later re-built.", "website": "", "subreddit": "", "center": [1676.5, 1980.5], "path": [[1676.5, 1990.5], [1678.5, 1990.5], [1679.5, 1989.5], [1680.5, 1988.5], [1680.5, 1987.5], [1679.5, 1986.5], [1677.5, 1985.5], [1677.5, 1975.5], [1678.5, 1974.5], [1678.5, 1968.5], [1677.5, 1967.5], [1675.5, 1967.5], [1674.5, 1968.5], [1674.5, 1974.5], [1675.5, 1975.5], [1675.5, 1985.5], [1674.5, 1986.5], [1673.5, 1986.5], [1672.5, 1987.5], [1672.5, 1989.5], [1674.5, 1990.5], [1676.5, 1990.5], [1675.5, 1990.5]]}, {"id": "twulgt", "submitted_by": "dball2021", "name": "University of Glasgow", "description": "Coat of arms of the University of Glasgow before getting completely consumed by the void", "website": "", "subreddit": "", "center": [1091.5, 1270.5], "path": [[1083.5, 1260.5], [1099.5, 1260.5], [1099.5, 1279.5], [1083.5, 1279.5], [1083.5, 1260.5]]}, -{"id": "twulbd", "submitted_by": "mynamewastaken-_-", "name": "Dal-SMU Union (DSMU)", "description": "Represents 2 Nova Scotian university's, Dalhousie University(DAL) and Saint Mary's university(SMU), dal.ca and smu.can", "website": "dal.ca", "subreddit": "/r/dalhousie", "center": [528.5, 1943.5], "path": [[521.5, 1938.5], [521.5, 1948.5], [534.5, 1948.5], [534.5, 1938.5]]}, +{"id": "twulbd", "submitted_by": "mynamewastaken-_-", "name": "Dal-SMU Union (DSMU)", "description": "Represents 2 Nova Scotian university's, Dalhousie University(DAL) and Saint Mary's university(SMU), dal.ca and smu.can", "website": "https://dal.ca", "subreddit": "/r/dalhousie", "center": [528.5, 1943.5], "path": [[521.5, 1938.5], [521.5, 1948.5], [534.5, 1948.5], [534.5, 1938.5]]}, {"id": "twulaq", "submitted_by": "HelloMegat_000", "name": "Megat_000", "description": "Megat_000 is a musician, focused mainty on EDM", "website": "https://sites.google.com/view/megmusic/official-website", "subreddit": "/r/LaCasaDeMegat_000", "center": [1118.5, 1217.5], "path": [[1119.5, 1215.5], [1117.5, 1215.5], [1117.5, 1216.5], [1116.5, 1216.5], [1116.5, 1218.5], [1117.5, 1218.5], [1118.5, 1218.5], [1118.5, 1219.5], [1119.5, 1219.5]]}, {"id": "twukq8", "submitted_by": "Skrynbox", "name": "Deadmau5", "description": "Deadmau5 logo in his minecraft skin's style.nThe word neat. is a reference to joke that deadmau5 made", "website": "https://deadmau5.com/", "subreddit": "/r/deadmau5", "center": [864.5, 720.5], "path": [[875.5, 710.5], [875.5, 710.5], [858.5, 710.5], [857.5, 710.5], [857.5, 710.5], [857.5, 720.5], [857.5, 720.5], [854.5, 720.5], [854.5, 720.5], [851.5, 729.5], [851.5, 729.5], [870.5, 729.5], [870.5, 729.5], [870.5, 723.5], [871.5, 720.5], [872.5, 717.5], [873.5, 717.5], [875.5, 717.5]]}, {"id": "twukq2", "submitted_by": "PratzStrike", "name": "Gomez from Fez", "description": "The playable character from the popular game Fez, Gomez is a 2 dimensional character who, upon putting on the titular fez, realizes he can move in three dimensions now.", "website": "https://en.wikipedia.org/wiki/Fez_(video_game)", "subreddit": "/r/Fez", "center": [260.5, 1916.5], "path": [[269.5, 1905.5], [269.5, 1926.5], [250.5, 1926.5], [250.5, 1905.5], [269.5, 1905.5]]}, {"id": "twukpb", "submitted_by": "RevTheMeerkat", "name": "RevMeerkat Community", "description": "RevMeerkat's twitch community", "website": "https://www.twitch.tv/revmeerkat", "subreddit": "/r/RevMeerkat", "center": [1548.5, 794.5], "path": [[1543.5, 789.5], [1552.5, 789.5], [1552.5, 798.5], [1543.5, 798.5]]}, -{"id": "twukc5", "submitted_by": "maedvillainy", "name": "ZycroniumGD", "description": "Logo of geometry dash twitter meme account", "website": "twitter.com/croniumgd", "subreddit": "", "center": [914.5, 1216.5], "path": [[918.5, 1201.5], [926.5, 1205.5], [925.5, 1214.5], [926.5, 1225.5], [922.5, 1230.5], [905.5, 1230.5], [900.5, 1213.5], [907.5, 1202.5]]}, +{"id": "twukc5", "submitted_by": "maedvillainy", "name": "ZycroniumGD", "description": "Logo of geometry dash twitter meme account", "website": "https://twitter.com/croniumgd", "subreddit": "", "center": [914.5, 1216.5], "path": [[918.5, 1201.5], [926.5, 1205.5], [925.5, 1214.5], [926.5, 1225.5], [922.5, 1230.5], [905.5, 1230.5], [900.5, 1213.5], [907.5, 1202.5]]}, {"id": "twuk31", "submitted_by": "Pikagiuppy", "name": "Killer Queen Bites The Dust", "description": "Made by the jojo community, has been at war with phish even after the alliance.", "website": "", "subreddit": "", "center": [101.5, 914.5], "path": [[79.5, 901.5], [78.5, 924.5], [83.5, 929.5], [89.5, 926.5], [90.5, 923.5], [99.5, 923.5], [100.5, 922.5], [104.5, 922.5], [105.5, 922.5], [105.5, 923.5], [105.5, 922.5], [123.5, 922.5], [123.5, 921.5], [129.5, 921.5], [129.5, 920.5], [130.5, 920.5], [130.5, 919.5], [131.5, 919.5], [131.5, 918.5], [132.5, 918.5], [132.5, 917.5], [134.5, 917.5], [134.5, 916.5], [135.5, 916.5], [135.5, 915.5], [134.5, 915.5], [134.5, 914.5], [133.5, 914.5], [133.5, 914.5], [133.5, 913.5], [132.5, 913.5], [131.5, 913.5], [131.5, 912.5], [129.5, 912.5], [129.5, 911.5], [123.5, 911.5], [123.5, 911.5], [123.5, 910.5], [122.5, 910.5], [122.5, 909.5], [117.5, 909.5], [116.5, 909.5], [116.5, 908.5], [113.5, 908.5], [113.5, 907.5], [111.5, 907.5], [112.5, 906.5], [108.5, 906.5], [108.5, 905.5], [107.5, 905.5], [107.5, 904.5], [103.5, 904.5], [102.5, 903.5], [95.5, 903.5], [93.5, 903.5], [93.5, 904.5], [92.5, 905.5], [90.5, 905.5], [90.5, 906.5], [89.5, 907.5], [88.5, 906.5], [87.5, 907.5], [87.5, 904.5], [86.5, 905.5], [86.5, 901.5], [79.5, 901.5]]}, -{"id": "twuk0b", "submitted_by": "respektive", "name": "Jenny", "description": "Jenny Wakeman from 'My Life as a Teenage Robot' holding tetris blocks.", "website": "https://teenagerobot.fandom.com/wiki/Jenny_Wakeman_(XJ-9)", "subreddit": "/r/MyLifeAsATeenageRobot", "center": [1503.5, 1722.5], "path": [[1490.5, 1708.5], [1509.5, 1708.5], [1509.5, 1709.5], [1512.5, 1709.5], [1512.5, 1710.5], [1514.5, 1710.5], [1514.5, 1712.5], [1515.5, 1712.5], [1516.5, 1713.5], [1517.5, 1715.5], [1518.5, 1722.5], [1518.5, 1723.5], [1512.5, 1723.5], [1512.5, 1739.5], [1497.5, 1739.5], [1497.5, 1727.5], [1489.5, 1727.5], [1489.5, 1718.5], [1490.5, 1718.5]]}, {"id": "twuk0a", "submitted_by": "CydersZenith", "name": "Synthion Portrait", "description": "An image of electronic musician/VTuber Synthion created by her fans.", "website": "https://synthion.space", "subreddit": "", "center": [880.5, 1764.5], "path": [[888.5, 1772.5], [888.5, 1756.5], [872.5, 1756.5], [872.5, 1772.5]]}, {"id": "twujpv", "submitted_by": "Yoshi_662", "name": "Devil Dagger", "description": "Main Icon and weapon from the game Devil Daggers made by Sorath", "website": "https://store.steampowered.com/app/422970/Devil_Daggers/", "subreddit": "/r/DevilDaggers", "center": [1401.5, 84.5], "path": [[1401.5, 76.5], [1399.5, 76.5], [1397.5, 78.5], [1398.5, 93.5], [1405.5, 92.5], [1405.5, 78.5], [1402.5, 76.5], [1402.5, 76.5]]}, {"id": "twujb0", "submitted_by": "ziemnakiscool", "name": "Mexico-Colombian Alliance", "description": "How nice two nations became friends!", "website": "", "subreddit": "", "center": [554.5, 1281.5], "path": [[553.5, 1289.5], [547.5, 1282.5], [547.5, 1276.5], [550.5, 1275.5], [551.5, 1277.5], [552.5, 1276.5], [554.5, 1276.5], [556.5, 1276.5], [556.5, 1275.5], [558.5, 1275.5], [559.5, 1276.5], [560.5, 1277.5], [560.5, 1281.5], [560.5, 1283.5], [557.5, 1287.5]]}, @@ -2444,10 +2288,10 @@ {"id": "twui0r", "submitted_by": "DestructiveUnit", "name": "iDKHOW", "description": "A tribute to the alt-rock band I DONT KNOW HOW BUT THEY FOUND ME", "website": "https://www.idkhow.com", "subreddit": "/r/idkhowbuttheyfoundme", "center": [1089.5, 412.5], "path": [[1077.5, 408.5], [1100.5, 408.5], [1100.5, 415.5], [1077.5, 415.5], [1077.5, 408.5]]}, {"id": "twuhyr", "submitted_by": "danizany", "name": "Rei Plush", "description": "Rei plush is a meme among Evangelion community.", "website": "", "subreddit": "", "center": [484.5, 1454.5], "path": [[473.5, 1444.5], [496.5, 1444.5], [497.5, 1445.5], [499.5, 1445.5], [499.5, 1447.5], [500.5, 1447.5], [500.5, 1456.5], [500.5, 1457.5], [499.5, 1457.5], [499.5, 1458.5], [497.5, 1458.5], [497.5, 1459.5], [492.5, 1464.5], [472.5, 1465.5], [472.5, 1464.5], [471.5, 1464.5], [470.5, 1461.5], [469.5, 1461.5], [469.5, 1458.5], [467.5, 1458.5], [467.5, 1454.5], [468.5, 1454.5]]}, {"id": "twuhvh", "submitted_by": "adr676", "name": "Fez", "description": "A mural featuring Gomez, the main character of Fez.", "website": "", "subreddit": "/r/fez", "center": [260.5, 1916.5], "path": [[251.5, 1925.5], [268.5, 1925.5], [268.5, 1906.5], [251.5, 1906.5]]}, -{"id": "twuhu6", "submitted_by": "next_best_guy", "name": "Zin\u00e9dine Zidane", "description": "The face of the legendary French football player Zin\u00e9dine Zidane. nA controversy arose shortly after it was added to the French flag because of non-French users misidentifying him as Russian president Vladimir Putin.nn", "website": "https://en.wikipedia.org/wiki/Zinedine_Zidane", "subreddit": "", "center": [125.5, 1546.5], "path": [[97.5, 1479.5], [109.5, 1472.5], [135.5, 1471.5], [152.5, 1474.5], [160.5, 1481.5], [164.5, 1500.5], [164.5, 1518.5], [166.5, 1535.5], [167.5, 1554.5], [161.5, 1572.5], [157.5, 1593.5], [164.5, 1618.5], [154.5, 1632.5], [129.5, 1632.5], [106.5, 1634.5], [86.5, 1611.5], [83.5, 1553.5], [83.5, 1529.5], [83.5, 1496.5], [108.5, 1470.5], [114.5, 1471.5], [147.5, 1469.5], [166.5, 1500.5]]}, +{"id": "twuhu6", "submitted_by": "next_best_guy", "name": "Zin\u00e9dine Zidane", "description": "The face of the legendary French football player Zin\u00e9dine Zidane.\n\nA controversy arose shortly after it was added to the French flag because of non-French users misidentifying him as Russian president Vladimir Putin.", "website": "https://en.wikipedia.org/wiki/Zinedine_Zidane", "subreddit": "/r/placefrance", "center": [125.5, 1546.5], "path": [[97.5, 1479.5], [109.5, 1472.5], [135.5, 1471.5], [152.5, 1474.5], [160.5, 1481.5], [164.5, 1500.5], [164.5, 1518.5], [166.5, 1535.5], [167.5, 1554.5], [161.5, 1572.5], [157.5, 1593.5], [164.5, 1618.5], [154.5, 1632.5], [129.5, 1632.5], [106.5, 1634.5], [86.5, 1611.5], [83.5, 1553.5], [83.5, 1529.5], [83.5, 1496.5], [108.5, 1470.5], [114.5, 1471.5], [147.5, 1469.5], [166.5, 1500.5]]}, {"id": "twuhc1", "submitted_by": "AtomAnt3991", "name": "Dante, Cam\u00f5es, Cervantes", "description": "The Holy Trinity of Latin Writers represended in the borded of their respective countrysnDante - La Divina CommedianCam\u00f5es - Os LusiadasnCervantes - Dom Quixote", "website": "", "subreddit": "", "center": [865.5, 340.5], "path": [[856.5, 368.5], [852.5, 371.5], [848.5, 371.5], [842.5, 366.5], [842.5, 357.5], [846.5, 353.5], [849.5, 353.5], [849.5, 352.5], [845.5, 351.5], [843.5, 348.5], [842.5, 342.5], [847.5, 338.5], [846.5, 333.5], [848.5, 325.5], [852.5, 325.5], [850.5, 320.5], [852.5, 313.5], [851.5, 309.5], [850.5, 306.5], [857.5, 298.5], [862.5, 297.5], [869.5, 305.5], [868.5, 311.5], [869.5, 321.5], [875.5, 321.5], [878.5, 327.5], [876.5, 331.5], [881.5, 341.5], [888.5, 340.5], [892.5, 345.5], [891.5, 348.5], [896.5, 354.5], [900.5, 353.5], [901.5, 361.5], [859.5, 361.5]]}, {"id": "twuh5r", "submitted_by": "Mwow33", "name": "Basque Ikurri\u00f1a", "description": "Basque symbol and official flag of the Basque Country.", "website": "", "subreddit": "", "center": [697.5, 321.5], "path": [[690.5, 318.5], [690.5, 324.5], [703.5, 324.5], [703.5, 318.5], [697.5, 318.5], [703.5, 318.5]]}, -{"id": "twuh0w", "submitted_by": "A5Ty", "name": "Smol Poland", "description": "A small polish flag made whit help of the r/arknights community and u/A5Ty and u/_JustinTheGreat_", "website": "", "subreddit": "", "center": [956.5, 118.5], "path": [[949.5, 115.5], [949.5, 120.5], [962.5, 120.5], [962.5, 115.5], [949.5, 115.5]]}, +{"id": "twuh0w", "submitted_by": "chocomint1", "name": "Smol Poland", "description": "A small Polish flag was built within the first 2-3 hours of r/place. After being built over by VRChat, however, the flag was relocated just below its original position. Starting with only a 4x2 area, the flag was able to expand east after re-allocation of land from the Arknights group. Although the flag was on the receiving end of a coordinated attack near the end, the founders, with assistance from the Arknights group, was able to hold off.", "website": "", "subreddit": "", "center": [956.5, 118.5], "path": [[949.5, 115.5], [949.5, 120.5], [962.5, 120.5], [962.5, 115.5], [949.5, 115.5]]}, {"id": "twugx8", "submitted_by": "ziemnakiscool", "name": "The Colombian Flag", "description": "They made their flag here. How nice!", "website": "", "subreddit": "", "center": [278.5, 1304.5], "path": [[588.5, 1338.5], [590.5, 1302.5], [554.5, 1299.5], [554.5, 1302.5], [551.5, 1302.5], [551.5, 1297.5], [552.5, 1296.5], [554.5, 1288.5], [548.5, 1283.5], [549.5, 1277.5], [552.5, 1275.5], [553.5, 1266.5], [502.5, 1266.5], [501.5, 1274.5], [448.5, 1272.5], [448.5, 1266.5], [373.5, 1266.5], [374.5, 1263.5], [367.5, 1257.5], [362.5, 1255.5], [352.5, 1260.5], [351.5, 1264.5], [0.5, 1266.5], [0.5, 1343.5], [0.5, 1345.5], [246.5, 1344.5], [246.5, 1339.5]]}, {"id": "twugwl", "submitted_by": "Ecstatic_Ad5248", "name": "ISEN", "description": "the logo of a Clown school (Engineer) made by the students", "website": "https://www.isen.fr/", "subreddit": "/r/Antiwork", "center": [1867.5, 46.5], "path": [[1859.5, 44.5], [1875.5, 44.5], [1875.5, 48.5], [1859.5, 48.5]]}, {"id": "twugv5", "submitted_by": "Skrynbox", "name": "Cacabox logo", "description": "Logo of the cacaboxnA French group of streamers and youtubers", "website": "https://www.youtube.com/channel/UC6izVPg2AiK83K-rqS6AgmA", "subreddit": "", "center": [271.5, 1875.5], "path": [[260.5, 1860.5], [260.5, 1860.5], [260.5, 1889.5], [260.5, 1889.5], [283.5, 1889.5], [283.5, 1889.5], [283.5, 1876.5], [283.5, 1876.5], [281.5, 1876.5], [281.5, 1876.5], [281.5, 1860.5]]}, @@ -2455,7 +2299,7 @@ {"id": "twugr3", "submitted_by": "Dry-Acanthopterygii9", "name": "CAROLA", "description": "THE ONLY GALICIAN VIKING IN THE WORLD. NOTHING MORE TO SAY. Well he is also a Spanish variety streamer", "website": "https://www.twitch.tv/carola", "subreddit": "/r/Carola", "center": [208.5, 983.5], "path": [[221.5, 965.5], [221.5, 1000.5], [190.5, 1000.5], [190.5, 995.5], [195.5, 995.5], [195.5, 965.5]]}, {"id": "twugme", "submitted_by": "Amelot420", "name": "Fall Out Boy", "description": "Fall Out Boy is an American rock band", "website": "https://falloutboy.com", "subreddit": "/r/FallOutBoy", "center": [1172.5, 1707.5], "path": [[1167.5, 1703.5], [1176.5, 1703.5], [1177.5, 1705.5], [1178.5, 1707.5], [1178.5, 1710.5], [1166.5, 1710.5], [1166.5, 1707.5], [1167.5, 1705.5]]}, {"id": "twuge0", "submitted_by": "HerrCrazi", "name": "No Step On Snek - Gasden Flag", "description": "'No step on snek' is an internet meme based on the Gadsden Flag is an iconic historical American flag.", "website": "", "subreddit": "/r/placesnek", "center": [1486.5, 514.5], "path": [[1473.5, 501.5], [1499.5, 501.5], [1499.5, 527.5], [1473.5, 527.5], [1473.5, 527.5]]}, -{"id": "twugae", "submitted_by": "pizzaboy7269", "name": "Marth and Eirika", "description": "Marth from Fire Emblem: Shadow Dragon and the Blade of Light and Eirika from Fire Emblem: The Sacred Stones.", "website": "https://en.wikipedia.org/wiki/Fire_Emblem", "subreddit": "/r/Fireemblem", "center": [494.5, 698.5], "path": [[473.5, 713.5], [514.5, 713.5], [514.5, 682.5], [473.5, 682.5]]}, +{"id": "twugae", "submitted_by": "pizzaboy7269", "name": "Fire Emblem", "description": "Fire Emblem is a tactical role-playing game franchise published by Nintendo. Shown here are Marth from Fire Emblem: Shadow Dragon and the Blade of Light, Eirika from Fire Emblem: The Sacred Stones, and Feh from Fire Emblem Heroes.", "website": "https://en.wikipedia.org/wiki/Fire_Emblem", "subreddit": "/r/Fireemblem", "center": [494.5, 698.5], "path": [[473.5, 713.5], [514.5, 713.5], [514.5, 682.5], [473.5, 682.5]]}, {"id": "twug7b", "submitted_by": "kwak1_", "name": "Belgian Flag", "description": "The first flag created by the Belgian r/place community. Often confused with the German flag. The total area of both Belgian flags is approximately 66 thousand pixels, which makes Belgium the country with the third biggest combined flag area.", "website": "", "subreddit": "/r/belgium", "center": [284.5, 684.5], "path": [[302.5, 830.5], [302.5, 702.5], [301.5, 702.5], [301.5, 645.5], [323.5, 645.5], [323.5, 614.5], [329.5, 614.5], [329.5, 569.5], [257.5, 569.5], [257.5, 629.5], [248.5, 629.5], [248.5, 664.5], [259.5, 664.5], [259.5, 830.5]]}, {"id": "twug6y", "submitted_by": "UlysseOnFire", "name": "Stadium de Toulouse", "description": "Space dedicated to the glory of the largest French football club, the Toulouse Football Club.nIt shows the name of the club, its creation date, the names of its two best players (King Rhys Healey and sniper Branco Van Den Boomen) and a yellow and red Occitan cross, symbol of the region. nMostre present", "website": "https://toulousefc.com", "subreddit": "/r/toulousefc", "center": [960.5, 1823.5], "path": [[940.5, 1816.5], [974.5, 1816.5], [974.5, 1812.5], [975.5, 1812.5], [975.5, 1813.5], [975.5, 1814.5], [976.5, 1814.5], [976.5, 1815.5], [978.5, 1815.5], [978.5, 1816.5], [978.5, 1817.5], [979.5, 1817.5], [979.5, 1818.5], [979.5, 1819.5], [980.5, 1819.5], [981.5, 1819.5], [981.5, 1820.5], [981.5, 1825.5], [982.5, 1825.5], [982.5, 1827.5], [984.5, 1827.5], [984.5, 1829.5], [934.5, 1829.5], [934.5, 1828.5], [939.5, 1828.5], [938.5, 1827.5], [939.5, 1827.5], [939.5, 1826.5], [940.5, 1826.5], [940.5, 1825.5], [941.5, 1825.5], [941.5, 1821.5], [939.5, 1821.5], [939.5, 1816.5], [940.5, 1816.5]]}, {"id": "twufqm", "submitted_by": "adr676", "name": "Inkling Squid", "description": "The Squid Form of the main race you play as in Splatoon, the Inklings.", "website": "", "subreddit": "/r/splatoon", "center": [280.5, 1914.5], "path": [[269.5, 1926.5], [291.5, 1926.5], [291.5, 1902.5], [269.5, 1902.5]]}, @@ -2469,9 +2313,8 @@ {"id": "twuddv", "submitted_by": "hiroshi_001", "name": "Uruha Rushia", "description": "A former talent for Hololive's 3rd generation (FANTASY) who debuted on July 18, 2019 and remained active until her termination on February 24, 2022. In tribute to her legacy, she is placed here as commemoration, remember she is not pettan as she is boing boing.", "website": "https://www.youtube.com/channel/UCl_gCybOJRIgOXw6Qb4qJzQ", "subreddit": "/r/Hololive", "center": [1411.5, 1077.5], "path": [[1425.5, 1066.5], [1401.5, 1066.5], [1400.5, 1067.5], [1399.5, 1068.5], [1399.5, 1070.5], [1400.5, 1071.5], [1399.5, 1072.5], [1398.5, 1073.5], [1401.5, 1074.5], [1400.5, 1075.5], [1399.5, 1078.5], [1400.5, 1079.5], [1401.5, 1080.5], [1400.5, 1081.5], [1399.5, 1083.5], [1397.5, 1085.5], [1397.5, 1087.5], [1400.5, 1088.5], [1405.5, 1088.5], [1405.5, 1089.5], [1416.5, 1089.5], [1417.5, 1089.5], [1417.5, 1090.5], [1422.5, 1090.5], [1422.5, 1095.5], [1422.5, 1083.5], [1422.5, 1072.5], [1426.5, 1072.5], [1425.5, 1071.5], [1426.5, 1069.5], [1426.5, 1067.5], [1425.5, 1067.5]]}, {"id": "twud69", "submitted_by": "razberiis", "name": "Evo SMP", "description": "A broken nether portal design associated with the Minecraft Evolution SMP, a finished youtube series featuring many popular creators.", "website": "https://evolution-smp.fandom.com/wiki/Evolution_SMP_Wiki", "subreddit": "/r/mcevo", "center": [862.5, 583.5], "path": [[859.5, 587.5], [864.5, 587.5], [864.5, 579.5], [859.5, 579.5]]}, {"id": "twud5d", "submitted_by": "PratzStrike", "name": "Ezekiel_III", "description": "Zeke, as he's known to his fans, is a well known Twitch streamer and stage host, and one of the hosts of the Dropped Frames Podcast.", "website": "https://www.twitch.tv/ezekiel_iii", "subreddit": "/r/zekeonia", "center": [1080.5, 1920.5], "path": [[1089.5, 1930.5], [1089.5, 1909.5], [1070.5, 1909.5], [1070.5, 1930.5], [1089.5, 1930.5]]}, -{"id": "twud4o", "submitted_by": "IrdniX", "name": "S\u00e1mi Flag", "description": "The S\u00e1mi flag is the flag of S\u00e1pmi and the S\u00e1mi (Saami) people, one of the indigenous people groups of the Nordic countries and the Kola Peninsula of the Russian Federation.", "website": "https://en.wikipedia.org/wiki/S%C3%A1mi_flag", "subreddit": "/r/Sapmi", "center": [0.5, 0.5], "path": []}, {"id": "twud3w", "submitted_by": "Pleube64ivy", "name": "Corpse Husband", "description": "Mural of Corpse Husband, a youtuber, streamer and musician. Artwork is based off the animation of Corpse in his song Agoraphobic.", "website": "https://youtu.be/ra-XCs6LHAM", "subreddit": "/r/CorpseHusband", "center": [1258.5, 1037.5], "path": [[1284.5, 1067.5], [1283.5, 1068.5], [1232.5, 1068.5], [1233.5, 1006.5], [1280.5, 1005.5], [1284.5, 1006.5], [1283.5, 1007.5], [1284.5, 1063.5], [1284.5, 1066.5], [1283.5, 1068.5]]}, -{"id": "twucmk", "submitted_by": "CptViking07", "name": "Skis and skipoles", "description": "Skis are particulary iconic for northeners and especially Norwegians. It is said that all norwegians are born with skis on their feet.", "website": "", "subreddit": "", "center": [423.5, 57.5], "path": [[447.5, 46.5], [423.5, 72.5], [401.5, 64.5], [419.5, 46.5], [447.5, 46.5]]}, +{"id": "twucmk", "submitted_by": "CptViking07", "name": "Skis and ski poles", "description": "Skis are particulary iconic for northeners and especially Norwegians. It is said that all Norwegians are born with skis on their feet.", "website": "https://en.wikipedia.org/wiki/Ski", "subreddit": "/r/place_nordicunion", "center": [423.5, 57.5], "path": [[447.5, 46.5], [423.5, 72.5], [401.5, 64.5], [419.5, 46.5], [447.5, 46.5]]}, {"id": "twucgo", "submitted_by": "BusyElephant", "name": "r/nba", "description": "dedicated to the subreddit of the national basketball association. the character in the middle is a reference to the NBA logo, the 75 on the top right part is a reference to the 75th anniversary of the NBA in 2022 and the little jersey with number 24 on the bottom right of the picture is the jersey of Kobe Bryant, a very famous Lakers player deceased in 2020.", "website": "", "subreddit": "/r/nba", "center": [763.5, 1497.5], "path": [[745.5, 1483.5], [781.5, 1483.5], [781.5, 1511.5], [745.5, 1511.5]]}, {"id": "twuc8a", "submitted_by": "Medical_Holiday9110", "name": "Brazilian / Irish flag", "description": "A collaboration made between r/ireland and r/brasil, merging their flags together and solidifying the union in the canvas", "website": "", "subreddit": "/r/brasil", "center": [1451.5, 1786.5], "path": [[1401.5, 1755.5], [1401.5, 1817.5], [1502.5, 1817.5], [1502.5, 1771.5], [1500.5, 1769.5], [1500.5, 1757.5], [1487.5, 1757.5], [1487.5, 1755.5], [1401.5, 1755.5]]}, {"id": "twuc67", "submitted_by": "Nervous_Author7051", "name": "Epitech", "description": "A french IT school logo", "website": "https://epitech.eu", "subreddit": "", "center": [1738.5, 1592.5], "path": [[1701.5, 1584.5], [1701.5, 1584.5], [1701.5, 1584.5], [1701.5, 1600.5], [1775.5, 1600.5], [1775.5, 1583.5], [1701.5, 1583.5]]}, @@ -2479,7 +2322,6 @@ {"id": "twubv4", "submitted_by": "Orumtbh", "name": "Xiao's Nuo Mask", "description": "The mask belonging to the Vigilant Yaksha, Xiao the Conqueror of Demons, a character from Genshin Impact.", "website": "https://discord.com/invite/xiao", "subreddit": "/r/XiaoMains", "center": [1836.5, 1632.5], "path": [[1828.5, 1615.5], [1827.5, 1616.5], [1827.5, 1625.5], [1828.5, 1626.5], [1828.5, 1631.5], [1827.5, 1632.5], [1827.5, 1636.5], [1828.5, 1637.5], [1828.5, 1640.5], [1829.5, 1641.5], [1829.5, 1642.5], [1828.5, 1643.5], [1828.5, 1645.5], [1830.5, 1645.5], [1831.5, 1644.5], [1832.5, 1644.5], [1835.5, 1647.5], [1837.5, 1647.5], [1840.5, 1644.5], [1841.5, 1644.5], [1842.5, 1645.5], [1844.5, 1645.5], [1845.5, 1644.5], [1843.5, 1642.5], [1843.5, 1641.5], [1844.5, 1640.5], [1844.5, 1637.5], [1845.5, 1636.5], [1845.5, 1632.5], [1844.5, 1631.5], [1844.5, 1626.5], [1845.5, 1625.5], [1845.5, 1616.5], [1844.5, 1615.5], [1842.5, 1617.5], [1842.5, 1618.5], [1841.5, 1619.5], [1841.5, 1621.5], [1840.5, 1622.5], [1840.5, 1623.5], [1839.5, 1624.5], [1837.5, 1622.5], [1836.5, 1623.5], [1835.5, 1622.5], [1833.5, 1624.5], [1832.5, 1623.5], [1832.5, 1622.5], [1831.5, 1621.5], [1831.5, 1619.5], [1830.5, 1618.5], [1830.5, 1617.5], [1829.5, 1616.5]]}, {"id": "twubgp", "submitted_by": "Ipemf", "name": "La Mano", "description": "The logo of La Mano, the famous (fictional) gang of Los Santos, created by Miguel Rodriguez, the GTA RP character of the streamer Alexclick.nMa ville, mes r\u00e8gles", "website": "https://www.twitch.tv/alexclick", "subreddit": "", "center": [1317.5, 1932.5], "path": [[1300.5, 1916.5], [1300.5, 1948.5], [1333.5, 1948.5], [1333.5, 1916.5]]}, {"id": "twuber", "submitted_by": "VakoG98", "name": "Shark3ozero banner and logo", "description": "Logo and phrase of lefty political streamer Shark3ozero.", "website": "https://www.sharky.cc", "subreddit": "", "center": [730.5, 244.5], "path": [[709.5, 238.5], [709.5, 250.5], [751.5, 249.5], [751.5, 238.5]]}, -{"id": "twuba4", "submitted_by": "danizany", "name": "OYASUMI PUNPUN", "description": "Punpun from japanese manga series written and illustrated by Inio Asano.", "website": "", "subreddit": "", "center": [1936.5, 296.5], "path": [[1919.5, 270.5], [1953.5, 270.5], [1952.5, 322.5], [1919.5, 321.5]]}, {"id": "twub6g", "submitted_by": "Filmgeek-fr", "name": "Vitality", "description": "The Vitality Bee Logo", "website": "https://vitality.gg/", "subreddit": "", "center": [316.5, 1601.5], "path": [[309.5, 1608.5], [309.5, 1595.5], [316.5, 1595.5], [316.5, 1594.5], [320.5, 1594.5], [320.5, 1595.5], [322.5, 1595.5], [322.5, 1596.5], [323.5, 1596.5], [323.5, 1608.5]]}, {"id": "twub44", "submitted_by": "sittingonmyfloor", "name": "FL Studio logo", "description": "Unfinished version of the Digital Audio Workstation software FL Studio. Due to pressure from the flag above and zzz_software advert inserted by bots, the icon could not be finished in time.", "website": "https://www.image-line.com/fl-studio/", "subreddit": "/r/flstudio", "center": [1508.5, 1989.5], "path": [[1515.5, 1986.5], [1510.5, 1994.5], [1506.5, 1993.5], [1504.5, 1991.5], [1503.5, 1986.5]]}, {"id": "twub17", "submitted_by": "dannyhpy", "name": "La Mano", "description": "An icon representing the community of a French streamer called AlexClick. This icon is named \u00ab La Mano \u00bb.", "website": "https://www.twitch.tv/alexclick", "subreddit": "", "center": [0.5, 0.5], "path": [[1301.5, 1917.5], [1332.5, 1917.5], [1332.5, 1948.5], [1301.5, 1948.5], [1301.5, 1948.5]]}, @@ -2501,7 +2343,6 @@ {"id": "twu980", "submitted_by": "Dare_Tano", "name": "Rochester Institute of Technology", "description": "The abbreviation of the Rochester Institute of Technology (RIT) As well as a tiger, the symbol for the university's sports teams. RIT is a technology institute in the suburbs of Rochester, New York.", "website": "", "subreddit": "/r/rit", "center": [322.5, 538.5], "path": [[314.5, 528.5], [329.5, 528.5], [329.5, 547.5], [314.5, 547.5]]}, {"id": "twu94y", "submitted_by": "will01mack", "name": "Rainbow Road", "description": "", "website": "", "subreddit": "/r/ainbowroad", "center": [1556.5, 308.5], "path": [[1545.5, 279.5], [1525.5, 293.5], [1532.5, 303.5], [1511.5, 323.5], [1504.5, 324.5], [1516.5, 326.5], [1516.5, 353.5], [1526.5, 360.5], [1526.5, 352.5], [1551.5, 352.5], [1551.5, 334.5], [1571.5, 336.5], [1570.5, 319.5], [1575.5, 318.5], [1574.5, 297.5], [1581.5, 297.5], [1582.5, 307.5], [1595.5, 308.5], [1595.5, 279.5], [1632.5, 280.5], [1615.5, 267.5], [1597.5, 268.5], [1598.5, 275.5], [1551.5, 274.5], [1552.5, 281.5], [1545.5, 280.5]]}, {"id": "twu94a", "submitted_by": "B0rbor4d", "name": "RvNxMango", "description": "RvNxMango aka Lukas, one of the rare Twitch.tv representatives from the German Community supporting /r/placeDE", "website": "https://twitch.tv/rvnxmango", "subreddit": "/r/rvnxmango", "center": [749.5, 650.5], "path": [[737.5, 648.5], [760.5, 648.5], [760.5, 652.5], [737.5, 652.5]]}, -{"id": "twu90b", "submitted_by": "Splatpope", "name": "The Son of Man", "description": "Painting by famous Belgian painter Ren\u00e9 Magritte", "website": "", "subreddit": "", "center": [320.5, 578.5], "path": [[311.5, 569.5], [311.5, 580.5], [311.5, 586.5], [328.5, 586.5], [328.5, 569.5], [311.5, 569.5], [311.5, 569.5]]}, {"id": "twu909", "submitted_by": "FlyLikeATachyon", "name": "BMO from Adventure Time", "description": "The lovable little robot from the Cartoon Network show Adventure Time", "website": "", "subreddit": "/r/Adventure, Time", "center": [172.5, 63.5], "path": [[167.5, 56.5], [177.5, 56.5], [178.5, 70.5], [166.5, 69.5], [166.5, 56.5]]}, {"id": "twu8rw", "submitted_by": "Momijisu", "name": "The Expanse", "description": "A selection of murals by The Expanse community.nnWithin the mural are the OPA (Outer Planets Alliance) faction logo, and a defaced MCR (Martian Congretional Republic) flag, this flag is defaced showing the shattered moon Deimos, as depicted by the character Amos.", "website": "https://en.wikipedia.org/wiki/The_Expanse_(novel_series)", "subreddit": "/r/theexpanse", "center": [1803.5, 159.5], "path": [[1777.5, 155.5], [1800.5, 155.5], [1800.5, 142.5], [1819.5, 142.5], [1819.5, 148.5], [1832.5, 148.5], [1832.5, 154.5], [1820.5, 154.5], [1820.5, 171.5], [1777.5, 171.5], [1777.5, 155.5]]}, {"id": "twu8nm", "submitted_by": "Medical_Holiday9110", "name": "Brazilian flag 1", "description": "Brazilian flag containing a blue arara, Machado de Assis, Ayrton Senna's helmet, a capybara, a yellow Ype, a toucan, the World Cup trophy, 14 Bis, the first motorized plane ever, Christ the Redeemer with a cangaceiro hat, a coxinha, the Igua\u00e7u Waterfalls, Monte P\u00e3o de A\u00e7\u00facar, flip flops, Maracan\u00e3 Stadium, caramel pooch dog, a guara wolf, Monica's Gang characters, Lacerda lift, 51 Cacha\u00e7a, MASP, a capoeirista in the Abaporu's background, famous painting by Tarsila do Amaral", "website": "", "subreddit": "/r/brasil", "center": [1102.5, 594.5], "path": [[911.5, 567.5], [1289.5, 568.5], [1290.5, 620.5], [910.5, 619.5], [911.5, 591.5], [931.5, 593.5], [933.5, 589.5], [933.5, 584.5], [911.5, 584.5], [911.5, 567.5], [911.5, 567.5]]}, @@ -2513,7 +2354,6 @@ {"id": "twu879", "submitted_by": "Shanksette", "name": "u/VeryVixen's flower", "description": "Originally a 4x5 drawing of a flower, it then got moved up and left by the Love Nikki and ToolBand communities, who both helped protecting it. Towards the end, it benefitted from a deal with the Sonic community to share the background without erasing eachother.", "website": "https://www.reddit.com/r/place/comments/tvnycw/finished_my_flower/", "subreddit": "/r/place", "center": [296.5, 1235.5], "path": [[296.5, 1233.5], [297.5, 1234.5], [297.5, 1238.5], [296.5, 1238.5], [296.5, 1235.5], [295.5, 1234.5]]}, {"id": "twu848", "submitted_by": "SamiSha_", "name": "Heroes of the Storm", "description": "The icon of the Multiplier Online Battle Arena by Blizzard Entertainment", "website": "https://heroesofthestorm.com/en-us/", "subreddit": "/r/heroesofthestorm", "center": [352.5, 1875.5], "path": [[340.5, 1869.5], [351.5, 1863.5], [363.5, 1868.5], [363.5, 1881.5], [352.5, 1886.5], [341.5, 1881.5]]}, {"id": "twu7wt", "submitted_by": "m0etez", "name": "Tunisia", "description": "Tunisian flag with symbolics", "website": "", "subreddit": "/r/Tunisia", "center": [1903.5, 815.5], "path": [[1898.5, 800.5], [1898.5, 820.5], [1867.5, 821.5], [1867.5, 828.5], [1920.5, 828.5], [1919.5, 792.5], [1913.5, 793.5], [1908.5, 795.5], [1908.5, 798.5], [1908.5, 799.5], [1898.5, 799.5], [1898.5, 800.5]]}, -{"id": "twu7va", "submitted_by": "danizany", "name": "Logo of turkish twitch streamer pqueen", "description": "Logo and emote of turkish twitch streamer pqueen", "website": "https://www.twitch.tv/pqueen", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twu7sh", "submitted_by": "Defyd12", "name": "Spyken Lund", "description": "A Swedish gymnasium (Upper secondary / high school) in Lund.", "website": "https://lund.se/gymnasiewebbar/spyken", "subreddit": "/r/Spyken", "center": [1108.5, 469.5], "path": [[1101.5, 465.5], [1115.5, 465.5], [1115.5, 473.5], [1101.5, 473.5]]}, {"id": "sklao246-r-onepiece-r-france", "name": "One piece x France collab", "description": "Collaboration between r/onepiece and r/placefrance to pull out this masterpiece on the last day.", "website": "", "subreddit": "/r/onepiece", "center": [123.5, 1409.5], "path": [[3.5, 1349.5], [3.5, 1468.5], [246.5, 1468.5], [246.5, 1448.5], [242.5, 1448.5], [242.5, 1349.5], [3.5, 1349.5]]}, {"id": "twu7ge", "submitted_by": "GrizzledSteel", "name": "Tanashar's Worm", "description": "A cute worm designed by tanashar, a mod of the streamer hrry who works for Yogscast", "website": "", "subreddit": "/r/yogscast", "center": [1559.5, 1795.5], "path": [[1553.5, 1790.5], [1564.5, 1790.5], [1564.5, 1799.5], [1553.5, 1799.5]]}, @@ -2538,17 +2378,15 @@ {"id": "twu555", "submitted_by": "AtomAnt3991", "name": "Porto Wine", "description": "Glorious wine from the north region of Portugal", "website": "", "subreddit": "/r/Portugal", "center": [1029.5, 348.5], "path": [[1021.5, 360.5], [1021.5, 336.5], [1028.5, 326.5], [1033.5, 343.5], [1034.5, 352.5], [1041.5, 352.5], [1041.5, 360.5]]}, {"id": "twu4yt", "submitted_by": "Lada_Safety_Car", "name": "r/WEC", "description": "The official subreddit for the FIA World Endurance Championship, and the ACO's 24 Hours of Le Mans. This is a multi-class racing series, featuring Prototype and Grand Touring sportscars. Each race is 6-8 hours long, requiring 2-3 drivers for each car. The season culminates with a 24 hour round-the-clock race at the famous Circuit de la Sarthe, in Le Mans, France.", "website": "", "subreddit": "/r/WEC", "center": [1374.5, 1274.5], "path": [[1361.5, 1278.5], [1384.5, 1278.5], [1384.5, 1275.5], [1385.5, 1275.5], [1385.5, 1272.5], [1386.5, 1272.5], [1386.5, 1270.5], [1363.5, 1270.5], [1363.5, 1273.5], [1362.5, 1273.5], [1362.5, 1276.5], [1361.5, 1276.5]]}, {"id": "twu4t3", "submitted_by": "VaniSanz", "name": "Andalusian Flag", "description": "Autonomous community of Spain. Bedge is doing siesta.", "website": "", "subreddit": "/r/Andalucia", "center": [1367.5, 1021.5], "path": [[1332.5, 999.5], [1332.5, 1042.5], [1402.5, 1043.5], [1402.5, 999.5], [1332.5, 999.5]]}, -{"id": "twu4ic", "submitted_by": "urammar", "name": "Meteor", "description": "The approximate path of a large 'meteor' raid by steamer xQcnnThe raid drew a moving stream of pixels supposed to represent a meteor striking a targeted 'my little pony' artworknnThis destroyed numerous artworks, which streamer Ludwig directed his fans to help repair", "website": "https://youtu.be/ER_96aEjAjM", "subreddit": "", "center": [1499.5, 123.5], "path": [[1324.5, 0.5], [1589.5, 250.5], [1609.5, 262.5], [1624.5, 260.5], [1635.5, 251.5], [1640.5, 239.5], [1644.5, 223.5], [1642.5, 210.5], [1402.5, -6.5]]}, -{"id": "twrmlb", "name": "Suisex", "description": "\"Suisex\" is a meme from the r/okbuddyhololive community. The term comes from highly enthusiastic Hoshiyomi, fanname for 星街すいせい (Hoshimachi Suisei), a VTuber from Hololive. Next to it is \"Koron\", a minimized version of 戌神ころね (Inugami Korone), who is another Vtuber from Hololive.", "website": "https://discord.gg/holotards", "subreddit": "/r/okbuddyhololive", "center": [ 239.5, 720.5 ], "path": [ [ 218.5, 715.5 ], [ 218.5, 725.5 ], [ 260.5, 725.5 ], [ 260.5, 715.5 ] ] }, -{"id": "twl492", "name": "FlareWheeze", "description": "An emote from the Hololive Fan Discord Server, featuring 不知火フレア (Shiranui Flare), member of the 3rd generation Hololive's JP branch, well known for her wheezing laugh, wheezing and headpatting yagoo.\n\nThe hearts around her represent her and her gen mates (VTubers who debuted with her):\nShiranui Flare (Orange heart)\nUsada Pekora (Blue heart with rabbit ears)\nShirogane Noel (Silver heart)\nHoushou Marine (Red heart)\nUruha Rushia (Green heart)\n\nArt source: https://twitter.com/Kiel_adair/status/1448446466935037952", "website": "https://discord.gg/holofans", "subreddit": "/r/hololive", "center": [ 1384.5, 886.5 ], "path": [ [ 1366.5, 870.5 ], [ 1402.5, 870.5 ], [ 1402.5, 901.5 ], [ 1395.5, 901.5 ], [ 1393.5, 899.5 ], [ 1388.5, 899.5 ], [ 1388.5, 901.5 ], [ 1376.5, 901.5 ], [ 1376.5, 904.5 ], [ 1377.5, 904.5 ], [ 1377.5, 905.5 ], [ 1378.5, 905.5 ], [ 1378.5, 908.5 ], [ 1377.5, 908.5 ], [ 1377.5, 909.5 ], [ 1376.5, 909.5 ], [ 1376.5, 908.5 ], [ 1372.5, 908.5 ], [ 1372.5, 904.5 ], [ 1371.5, 904.5 ], [ 1370.5, 893.5 ], [ 1366.5, 895.5 ] ] }, +{"id": "twrmlb", "name": "Suisex", "description": "\"Suisex\" is a meme from the r/okbuddyhololive community. The term comes from highly enthusiastic Hoshiyomi, fanname for \u661f\u8857\u3059\u3044\u305b\u3044 (Hoshimachi Suisei), a VTuber from Hololive. Next to it is \"Koron\", a minimized version of \u620c\u795e\u3053\u308d\u306d (Inugami Korone), who is another Vtuber from Hololive.", "website": "https://discord.gg/holotards", "subreddit": "/r/okbuddyhololive", "center": [239.5, 720.5], "path": [[218.5, 715.5], [218.5, 725.5], [260.5, 725.5], [260.5, 715.5]]}, +{"id": "twl492", "name": "FlareWheeze", "description": "An emote from the Hololive Fan Discord Server, featuring \u4e0d\u77e5\u706b\u30d5\u30ec\u30a2 (Shiranui Flare), member of the 3rd generation Hololive's JP branch, well known for her wheezing laugh, wheezing and headpatting yagoo.\n\nThe hearts around her represent her and her gen mates (VTubers who debuted with her):\nShiranui Flare (Orange heart)\nUsada Pekora (Blue heart with rabbit ears)\nShirogane Noel (Silver heart)\nHoushou Marine (Red heart)\nUruha Rushia (Green heart)\n\nArt source: https://twitter.com/Kiel_adair/status/1448446466935037952", "website": "https://discord.gg/holofans", "subreddit": "/r/hololive", "center": [1384.5, 886.5], "path": [[1366.5, 870.5], [1402.5, 870.5], [1402.5, 901.5], [1395.5, 901.5], [1393.5, 899.5], [1388.5, 899.5], [1388.5, 901.5], [1376.5, 901.5], [1376.5, 904.5], [1377.5, 904.5], [1377.5, 905.5], [1378.5, 905.5], [1378.5, 908.5], [1377.5, 908.5], [1377.5, 909.5], [1376.5, 909.5], [1376.5, 908.5], [1372.5, 908.5], [1372.5, 904.5], [1371.5, 904.5], [1370.5, 893.5], [1366.5, 895.5]]}, {"id": "twu45o", "submitted_by": "Dabage", "name": "Umamusume: Pretty Derby", "description": "The Umamusume Pretty Derby app logo. A gacha game developed by Cygames.", "website": "https://discord.gg/umamusume", "subreddit": "/r/UmaMusume", "center": [1723.5, 1760.5], "path": [[1710.5, 1747.5], [1710.5, 1773.5], [1736.5, 1773.5], [1736.5, 1747.5], [1736.5, 1747.5], [1710.5, 1747.5]]}, {"id": "twwjcz", "submitted_by": "Dinosawer", "name": "Amber's Second Bow", "description": "A red bow as a small reference to the bow the character Amber from the game Genshin Impact normally wears on her head (rebuilt by the Belgian community after their flag expansion bulldozed a previous instance)", "website": "", "subreddit": "/r/ambermains", "center": [1321.5, 1733.5], "path": [[1318.5, 1737.5], [1312.5, 1733.5], [1313.5, 1727.5], [1318.5, 1727.5], [1322.5, 1732.5], [1328.5, 1729.5], [1331.5, 1729.5], [1330.5, 1734.5], [1329.5, 1736.5], [1324.5, 1738.5]]}, {"id": "twwj7z", "submitted_by": "loucarinol5124", "name": "Gumball and Darwin", "description": "The two main characters of The amazing world of Gumball", "website": "", "subreddit": "", "center": [1477.5, 190.5], "path": [[1462.5, 177.5], [1474.5, 177.5], [1476.5, 181.5], [1482.5, 179.5], [1494.5, 180.5], [1494.5, 200.5], [1462.5, 201.5]]}, {"id": "twwj6t", "submitted_by": "freshclover", "name": "Every Child Matters Movement", "description": "Phrase/movement used to spread awareness and action of the mass graves of Indigenous children recently discovered in Canada", "website": "https://www.rcrg.org/every-child-matters", "subreddit": "/r/canada", "center": [210.5, 538.5], "path": [[194.5, 529.5], [225.5, 529.5], [225.5, 547.5], [194.5, 547.5]]}, {"id": "twwj2t", "submitted_by": "CrescentAndIo", "name": "TWICE lovely", "description": "Lovelys are small colorful sprites used to represent the members of TWICE.", "website": "", "subreddit": "/r/twice", "center": [1711.5, 1106.5], "path": [[1694.5, 1096.5], [1694.5, 1121.5], [1721.5, 1121.5], [1719.5, 1118.5], [1719.5, 1114.5], [1721.5, 1113.5], [1721.5, 1110.5], [1722.5, 1109.5], [1730.5, 1109.5], [1730.5, 1091.5], [1708.5, 1091.5], [1708.5, 1094.5], [1694.5, 1095.5]]}, {"id": "twwj0h", "submitted_by": "halcyondays-", "name": "Irm\u00e3o do Jorel", "description": "Irm\u00e3o do Jorel (Jorel's Brother) is the main character of the Brazilian animated TV series of the same name. The series debuted on September, 2014.", "website": "", "subreddit": "", "center": [1417.5, 1767.5], "path": [[1414.5, 1779.5], [1422.5, 1779.5], [1420.5, 1776.5], [1422.5, 1775.5], [1420.5, 1772.5], [1424.5, 1771.5], [1426.5, 1766.5], [1425.5, 1762.5], [1422.5, 1758.5], [1413.5, 1757.5], [1409.5, 1763.5], [1408.5, 1768.5], [1411.5, 1771.5], [1414.5, 1773.5], [1412.5, 1774.5], [1414.5, 1777.5], [1413.5, 1778.5]]}, -{"id": "twwiz1", "submitted_by": "5h4d", "name": "49ers logo", "description": "Logo of the 49ers NFL team.nnThe five yellow rectangles at the bottom represent the five superbowl rings.nnReceived quite a lot of attacks, mainly from Seahawks fans.", "website": "https://en.wikipedia.org/wiki/San_Francisco_49ers", "subreddit": "/r/49ers", "center": [0.5, 0.5], "path": []}, -{"id": "twwiwr", "submitted_by": "danielo132q", "name": "Tetris tki opener", "description": "A very popular opener in the game tetris which starts by doing a t-spin double in the first two rows", "website": "Tetr.io", "subreddit": "/r/tetris", "center": [954.5, 109.5], "path": [[978.5, 104.5], [979.5, 105.5], [979.5, 112.5], [953.5, 111.5], [952.5, 115.5], [932.5, 115.5], [932.5, 106.5]]}, +{"id": "twwiwr", "submitted_by": "chocomint1", "name": "Tetris - TKI-3", "description": "A recreation of the Tetris TKI-3 Opener, created by the Placetris community in conjunction with the Gacha Alliance. \nThe TKI-3 is a very popular opener due to its ease of use, flexibility, and wide range of follow-up options. Created by the DS player TKI, the TKI-3 opener allows for a T-Spin Double (TSD) to be sent in the first bag of pieces. Many variations of the TKI-3 are favored by different players, each with their own follow-up routes. This build in particular features the Flat Top variation, which is commonly used to continue into LST stacking. \nThis build features 2x2 tetrominoes.", "website": "https://discord.gg/SUdBteaCqd", "subreddit": "/r/tetris", "center": [954.5, 109.5], "path": [[978.5, 104.5], [979.5, 105.5], [979.5, 112.5], [953.5, 111.5], [952.5, 115.5], [932.5, 115.5], [932.5, 106.5]]}, {"id": "twwiw8", "submitted_by": "Ivsucram", "name": "Monica's Gang", "description": "Monica's Gang (Turma da M\u00f4nica) is the most popular comic book in Brazil. It started aiming towards kids in the 50s, but today they offer content for all ages.nnMonica's gang is available in more than 40 countries and 14 languages.nnThe series creator, Mauricio de Souza, had a great friendship with the japanese artist Osamu Tezuka, creator of the Astro Boy's series.", "website": "https://en.wikipedia.org/wiki/Monica%27s_Gang", "subreddit": "/r/brasil", "center": [1173.5, 608.5], "path": [[1142.5, 600.5], [1143.5, 617.5], [1201.5, 617.5], [1202.5, 611.5], [1211.5, 611.5], [1213.5, 608.5], [1202.5, 608.5], [1198.5, 599.5], [1144.5, 599.5]]}, {"id": "twwivn", "submitted_by": "Tar0oo", "name": "Arkadia Logo", "description": "the logotype of one of the most famosu spanish series with streamers created by Nexuzz", "website": "", "subreddit": "", "center": [1855.5, 1200.5], "path": [[1828.5, 1174.5], [1883.5, 1172.5], [1883.5, 1227.5], [1827.5, 1227.5]]}, {"id": "twwisb", "submitted_by": "AnImEpRo3609", "name": "Kizuna AI", "description": "A pioneer in the VTuber field", "website": "https://www.youtube.com/c/AIChannel", "subreddit": "/r/KizunaAI", "center": [1361.5, 909.5], "path": [[1355.5, 902.5], [1356.5, 916.5], [1366.5, 916.5], [1366.5, 902.5], [1361.5, 902.5]]}, @@ -2568,7 +2406,7 @@ {"id": "twwh21", "submitted_by": "College_advice12", "name": "The Maple Tree", "description": "One of the largest, and only surviving, expansion of the trees. Made in conjunction with the Quebec flag.", "website": "", "subreddit": "/r/placetrees", "center": [1019.5, 976.5], "path": [[1009.5, 1011.5], [1005.5, 975.5], [1004.5, 950.5], [1013.5, 924.5], [1026.5, 924.5], [1035.5, 963.5], [1035.5, 977.5], [1027.5, 996.5], [1028.5, 1014.5], [1027.5, 1028.5], [1022.5, 1030.5], [1022.5, 1050.5], [1017.5, 1053.5], [1016.5, 1015.5]]}, {"id": "twwgxo", "submitted_by": "Dinosawer", "name": "Amber's Bow", "description": "A red bow as a small reference to the bow the character Amber from the game Genshin Impact normally wears on her head", "website": "", "subreddit": "/r/ambermains", "center": [1133.5, 1603.5], "path": [[1123.5, 1596.5], [1132.5, 1596.5], [1136.5, 1600.5], [1139.5, 1600.5], [1145.5, 1601.5], [1145.5, 1609.5], [1123.5, 1609.5]]}, {"id": "twwgxh", "submitted_by": "Linkcool200", "name": "(Covered) The Skull&Candy Logo", "description": "This location originally held the logo for the Skull&Candy comics, created by Twitch Streamer Totless (Skull) and artist PsychoSkull (Candy).", "website": "https://tapas.io/series/Skull--Candy/info", "subreddit": "/r/SkullnCandy", "center": [1599.5, 408.5], "path": [[1569.5, 412.5], [1569.5, 420.5], [1615.5, 420.5], [1615.5, 412.5], [1615.5, 392.5], [1593.5, 392.5], [1593.5, 412.5]]}, -{"id": "twwgx2", "submitted_by": "OiledGladiator", "name": "Quebec", "description": "The flag of the province of Quebec. The section contains a multiple cultural and regional references.", "website": "", "subreddit": "r/quebec", "center": [1000.5, 995.5], "path": [[902.5, 923.5], [902.5, 1074.5], [1016.5, 1073.5], [1083.5, 1073.5], [1083.5, 962.5], [1132.5, 962.5], [1133.5, 924.5]]}, +{"id": "twwgx2", "submitted_by": "OiledGladiator", "name": "Quebec", "description": "The flag of the province of Quebec. The section contains a multiple cultural and regional references.", "website": "", "subreddit": "/r/quebec", "center": [1000.5, 995.5], "path": [[902.5, 923.5], [902.5, 1074.5], [1016.5, 1073.5], [1083.5, 1073.5], [1083.5, 962.5], [1132.5, 962.5], [1133.5, 924.5]]}, {"id": "twwgww", "submitted_by": "PenguinPelt", "name": "The Battle Cats", "description": "The app icon of the game The Battle Cats", "website": "", "subreddit": "/r/battlecats", "center": [1735.5, 556.5], "path": [[1724.5, 568.5], [1725.5, 567.5], [1725.5, 563.5], [1726.5, 562.5], [1726.5, 561.5], [1725.5, 560.5], [1726.5, 559.5], [1726.5, 554.5], [1725.5, 553.5], [1726.5, 552.5], [1726.5, 550.5], [1725.5, 548.5], [1725.5, 546.5], [1746.5, 546.5], [1747.5, 547.5], [1747.5, 559.5], [1737.5, 568.5], [1725.5, 568.5]]}, {"id": "twwgpj", "submitted_by": "I_dont_have_a_nick", "name": "An\u0131tkabir", "description": "The monument and graveyard of Mustafa Kemal Atat\u00fcrk, located in Ankara.", "website": "", "subreddit": "/r/turkey", "center": [388.5, 440.5], "path": [[368.5, 430.5], [368.5, 445.5], [367.5, 446.5], [366.5, 447.5], [365.5, 448.5], [364.5, 449.5], [411.5, 449.5], [410.5, 448.5], [409.5, 447.5], [408.5, 446.5], [407.5, 445.5], [407.5, 430.5], [368.5, 430.5]]}, {"id": "twwgmb", "submitted_by": "EtherealProphet", "name": "Secret Sleepover Society", "description": "A stream hosted by Jacob Andrews and Julia Lepetit of Drawfee, whose logo can be seen to the immediate left.", "website": "https://www.youtube.com/channel/UCFi1o_TEVQIPzzZi7JZ63PQ", "subreddit": "/r/SecretSleepover", "center": [1578.5, 328.5], "path": [[1572.5, 336.5], [1572.5, 320.5], [1583.5, 320.5], [1583.5, 336.5]]}, @@ -2597,7 +2435,6 @@ {"id": "twwevo", "submitted_by": "Reme77", "name": "Kurukuru (Eve)", "description": "Japanese singer Eve's mascot - Kurukuru Eve is often showed as him", "website": "", "subreddit": "/r/E_ve", "center": [1145.5, 1684.5], "path": [[1139.5, 1679.5], [1139.5, 1685.5], [1142.5, 1689.5], [1148.5, 1689.5], [1150.5, 1688.5], [1151.5, 1686.5], [1151.5, 1679.5]]}, {"id": "twwepo", "submitted_by": "JabberM", "name": "Saka on a Unicorn", "description": "England and Arsenal player Bukayo Saka on an inflatable unicorn, a picture that went viral on the internet during Euro 2020.", "website": "", "subreddit": "", "center": [1536.5, 1462.5], "path": [[1499.5, 1498.5], [1499.5, 1456.5], [1508.5, 1456.5], [1508.5, 1429.5], [1533.5, 1429.5], [1533.5, 1419.5], [1546.5, 1419.5], [1545.5, 1428.5], [1546.5, 1429.5], [1568.5, 1429.5], [1568.5, 1431.5], [1569.5, 1432.5], [1569.5, 1454.5], [1574.5, 1456.5], [1573.5, 1460.5], [1571.5, 1463.5], [1573.5, 1467.5], [1577.5, 1469.5], [1581.5, 1473.5], [1585.5, 1477.5], [1585.5, 1478.5], [1569.5, 1478.5], [1569.5, 1488.5], [1567.5, 1488.5], [1567.5, 1486.5], [1565.5, 1484.5], [1563.5, 1487.5], [1561.5, 1484.5], [1558.5, 1486.5], [1556.5, 1484.5], [1554.5, 1487.5], [1554.5, 1491.5], [1551.5, 1489.5], [1550.5, 1489.5], [1547.5, 1492.5], [1547.5, 1493.5], [1554.5, 1498.5], [1499.5, 1498.5]]}, {"id": "twweon", "submitted_by": "OrangeSheepYT", "name": "Baylor University flag", "description": "The BU flag, featuring Joy and Lady, made in collaboration with the Anime Alliance. Baylor University is a private research university in Waco, Texas. Sic 'em, Bears!", "website": "https://www.baylor.edu/", "subreddit": "/r/baylor", "center": [1717.5, 1193.5], "path": [[1710.5, 1186.5], [1710.5, 1200.5], [1724.5, 1200.5], [1724.5, 1186.5]]}, -{"id": "twwely", "submitted_by": "Hstrike", "name": "En passant", "description": "En passant, a chess move involving the capture of a pawn by another pawn, is a popular meme on the subreddit due to its uniqueness. It is usually associated with the phrase 'holy hell', a catchphrase adopted by the subreddit after a user discovered the en passant move and expressed his surprise in an online chess game.", "website": "", "subreddit": "/r/AnarchyChess", "center": [148.5, 647.5], "path": [[134.5, 659.5], [161.5, 659.5], [159.5, 636.5], [133.5, 632.5], [134.5, 642.5], [135.5, 659.5], [161.5, 659.5], [159.5, 635.5], [142.5, 628.5], [158.5, 628.5], [157.5, 633.5], [142.5, 631.5], [141.5, 628.5], [140.5, 631.5], [143.5, 659.5]]}, {"id": "twwekf", "submitted_by": "Initial-Box-3708", "name": "Wubby Microwave", "description": "An emote from twitch streamer PaymoneyWubby. This model has an approximate wattage of 2.7K", "website": "", "subreddit": "/r/paymoneywubby", "center": [450.5, 1519.5], "path": [[442.5, 1514.5], [457.5, 1514.5], [457.5, 1523.5], [442.5, 1523.5], [442.5, 1514.5]]}, {"id": "twwehr", "submitted_by": "RedRiolite", "name": "Maple", "description": "A small pixelart of Maple, one of @JenukiDa's characters (handle on Twitter) !", "website": "https://twitter.com/JenukiDa", "subreddit": "", "center": [153.5, 282.5], "path": [[147.5, 284.5], [148.5, 275.5], [159.5, 276.5], [158.5, 280.5], [160.5, 283.5], [160.5, 285.5], [156.5, 291.5], [153.5, 291.5], [147.5, 284.5]]}, {"id": "twweec", "submitted_by": "cool-guy1234567", "name": "Creeper", "description": "A reference to the game 'Minecraft'", "website": "", "subreddit": "/r/minecraft", "center": [1930.5, 374.5], "path": [[1919.5, 365.5], [1919.5, 390.5], [1927.5, 389.5], [1927.5, 378.5], [1944.5, 378.5], [1943.5, 364.5]]}, @@ -2613,10 +2450,9 @@ {"id": "twwdjt", "submitted_by": "yoladol", "name": "Blue Arara (Arara Azul)", "description": "Also known as Blu from Rio, it's a bird commonly found in the interior regions of the country. It has a very beautiful and vibrant blue plumage with some yellow marks.", "website": "", "subreddit": "", "center": [920.5, 576.5], "path": [[921.5, 567.5], [919.5, 569.5], [919.5, 572.5], [918.5, 575.5], [915.5, 577.5], [915.5, 579.5], [911.5, 583.5], [914.5, 583.5], [920.5, 581.5], [923.5, 578.5], [925.5, 569.5]]}, {"id": "twwdi1", "submitted_by": "4sealsinatrenchcoat", "name": "UConn - Jonathan the Husky", "description": "The University of Connecticut (UConn) is a research university in Storrs, Connecticut. Pictured in r/place is their mascot, Jonathan the Husky.", "website": "https://uconn.edu/", "subreddit": "/r/UCONN", "center": [1930.5, 905.5], "path": [[1940.5, 892.5], [1940.5, 917.5], [1919.5, 917.5], [1919.5, 892.5]]}, {"id": "twwdg7", "submitted_by": "Thousand_Eyes", "name": "Shibby Says", "description": "a hypno kink server of a very prominant hypnotist", "website": "", "subreddit": "/r/ShibbySays", "center": [1228.5, 476.5], "path": [[1199.5, 447.5], [1257.5, 447.5], [1259.5, 506.5], [1198.5, 505.5]]}, -{"id": "twwdfo", "submitted_by": "Anxious-Research4021", "name": "lturepublic", "description": "beer glass made by lturepublic and his community", "website": "https://www.twitch.tv/lturepublic", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twwd04", "submitted_by": "Ivsucram", "name": "Cacha\u00e7a 51", "description": "Cacha\u00e7a 51 is a famous (and strong) alcoholic liquor in Brazil. It is used in the famous Caipirinha drink.", "website": "https://pt.wikipedia.org/wiki/Caninha_51", "subreddit": "/r/brasil", "center": [1224.5, 599.5], "path": [[1223.5, 567.5], [1226.5, 568.5], [1227.5, 571.5], [1227.5, 579.5], [1229.5, 581.5], [1231.5, 582.5], [1232.5, 585.5], [1232.5, 621.5], [1230.5, 623.5], [1217.5, 623.5], [1215.5, 621.5], [1215.5, 604.5], [1215.5, 584.5], [1220.5, 580.5], [1220.5, 573.5], [1221.5, 567.5]]}, {"id": "twwcof", "submitted_by": "saturnoxii", "name": "Knekro", "description": "Spanish streamer Knekro represented by kneClown, a popular emote in the channel.", "website": "https://www.twitch.tv/knekro", "subreddit": "", "center": [1350.5, 1932.5], "path": [[1334.5, 1947.5], [1334.5, 1917.5], [1365.5, 1916.5], [1365.5, 1948.5], [1334.5, 1948.5]]}, -{"id": "twwcf1", "submitted_by": "Sipior04", "name": "Sora", "description": "The Kigdom Hearts series protagonist, wielding the one and only (actually no) KeybladenAlso a crown logo representing him in the series, a hearts and a paopu fruit, star-shaped", "website": "www.kingdomhearts.com", "subreddit": "", "center": [1264.5, 686.5], "path": [[1241.5, 673.5], [1287.5, 673.5], [1287.5, 699.5], [1241.5, 699.5], [1241.5, 673.5]]}, +{"id": "twwcf1", "submitted_by": "Sipior04", "name": "Sora", "description": "The Kigdom Hearts series protagonist, wielding the one and only (actually no) KeybladenAlso a crown logo representing him in the series, a hearts and a paopu fruit, star-shaped", "website": "https://www.kingdomhearts.com", "subreddit": "", "center": [1264.5, 686.5], "path": [[1241.5, 673.5], [1287.5, 673.5], [1287.5, 699.5], [1241.5, 699.5], [1241.5, 673.5]]}, {"id": "twwcdv", "submitted_by": "3meraldK", "name": "Cebula Polskiego Mappingu", "description": "Representation of the Polish mapping community.", "website": "", "subreddit": "", "center": [1163.5, 1295.5], "path": [[1148.5, 1286.5], [1166.5, 1286.5], [1166.5, 1287.5], [1179.5, 1287.5], [1179.5, 1300.5], [1163.5, 1300.5], [1163.5, 1312.5], [1153.5, 1305.5], [1153.5, 1298.5], [1148.5, 1298.5], [1148.5, 1286.5]]}, {"id": "twwcd6", "submitted_by": "imledp", "name": "Solaire of Astora", "description": "A popular character from Dark Souls, Solaire is a Warrior of Sunlight known for his bright personality and his signature pose - Praise the Sun.", "website": "https://www.bandainamcoent.com/agecheck?redirect_uri=%2Fgames%2Fdark-souls-remastered", "subreddit": "/r/darksouls", "center": [877.5, 1321.5], "path": [[853.5, 1280.5], [900.5, 1280.5], [900.5, 1363.5], [854.5, 1362.5], [855.5, 1319.5]]}, {"id": "twwcan", "submitted_by": "Oxynep", "name": "CPE Lyon", "description": "Vive les IRC", "website": "https://www.cpe.fr/", "subreddit": "", "center": [779.5, 1747.5], "path": [[753.5, 1741.5], [801.5, 1741.5], [801.5, 1748.5], [796.5, 1748.5], [796.5, 1755.5], [772.5, 1755.5], [772.5, 1748.5], [753.5, 1748.5], [753.5, 1741.5]]}, @@ -2629,16 +2465,16 @@ {"id": "twwb8e", "submitted_by": "ArsDeficiendi", "name": "Solarpunk", "description": "Logo of the r/Solarpunk subreddit", "website": "https://www.reddit.com/r/solarpunk", "subreddit": "/r/solarpunk", "center": [1114.5, 794.5], "path": [[1121.5, 800.5], [1121.5, 786.5], [1106.5, 786.5], [1106.5, 801.5], [1121.5, 801.5], [1121.5, 799.5]]}, {"id": "twwav3", "submitted_by": "Entrerriano", "name": "Mappy", "description": "The Icon of the Imaginary Maps subreddit and discord server, originally taken from a squashed image of the Dora the Explorer's Map 3D Model", "website": "", "subreddit": "/r/imaginarymaps", "center": [1507.5, 1594.5], "path": [[1499.5, 1586.5], [1517.5, 1586.5], [1517.5, 1596.5], [1515.5, 1596.5], [1511.5, 1599.5], [1509.5, 1601.5], [1509.5, 1604.5], [1499.5, 1604.5], [1499.5, 1586.5]]}, {"id": "twwamb", "submitted_by": "comady25", "name": "Omniversal", "description": "Discord community mainly centered around EDM", "website": "https://discord.com/invite/omniversal", "subreddit": "", "center": [857.5, 1744.5], "path": [[846.5, 1737.5], [867.5, 1737.5], [867.5, 1751.5], [846.5, 1751.5], [846.5, 1737.5]]}, -{"id": "twwalf", "submitted_by": "RRLATXEL", "name": "Pregario", "description": "An emote From twitch streamer moonmoon. This emote is very controversal on twitch.", "website": "Moon's Sub Discord", "subreddit": "", "center": [1619.5, 1956.5], "path": [[1616.5, 1958.5], [1614.5, 1959.5], [1605.5, 1972.5], [1602.5, 1958.5], [1603.5, 1953.5], [1608.5, 1947.5], [1608.5, 1937.5], [1615.5, 1931.5], [1623.5, 1934.5], [1629.5, 1939.5], [1627.5, 1947.5], [1626.5, 1953.5], [1630.5, 1957.5], [1640.5, 1965.5], [1635.5, 1972.5], [1633.5, 1975.5], [1627.5, 1976.5], [1613.5, 1972.5], [1606.5, 1973.5], [1605.5, 1972.5]]}, +{"id": "twwalf", "submitted_by": "RRLATXEL", "name": "Pregario", "description": "An emote From twitch streamer moonmoon. This emote is very controversal on twitch.", "website": "https://Moon's Sub Discord", "subreddit": "", "center": [1619.5, 1956.5], "path": [[1616.5, 1958.5], [1614.5, 1959.5], [1605.5, 1972.5], [1602.5, 1958.5], [1603.5, 1953.5], [1608.5, 1947.5], [1608.5, 1937.5], [1615.5, 1931.5], [1623.5, 1934.5], [1629.5, 1939.5], [1627.5, 1947.5], [1626.5, 1953.5], [1630.5, 1957.5], [1640.5, 1965.5], [1635.5, 1972.5], [1633.5, 1975.5], [1627.5, 1976.5], [1613.5, 1972.5], [1606.5, 1973.5], [1605.5, 1972.5]]}, {"id": "twwaj8", "submitted_by": "Sub2Kfbun", "name": "Kiwi on a Pink background", "description": "Kiwi Fruit overlayed on a pink background previously worked on by r/Sunohara with the help of Orange group", "website": "", "subreddit": "", "center": [1958.5, 765.5], "path": [[1954.5, 761.5], [1954.5, 768.5], [1961.5, 768.5], [1961.5, 761.5], [1954.5, 761.5]]}, {"id": "twwag0", "submitted_by": "DomenicWaterdash", "name": "Tiny Penguins 1/3", "description": "2 small penguins in a row originally built by r/pingd (as well as 7 others in different locations), and later decorated and defended by the flags they are in (Indonesia and Ireland).", "website": "", "subreddit": "/r/pingd", "center": [143.5, 798.5], "path": [[130.5, 804.5], [130.5, 791.5], [155.5, 791.5], [155.5, 804.5], [130.5, 804.5]]}, {"id": "twwa36", "submitted_by": "hypnoosen", "name": "Hooky!", "description": "This is the mascot for the r/HypnoHookup Discord server, a catgirl called Hooky. She is a well-known character who is extremely sassy and playful, which reflects the culture of the subreddit server. Art organised by Grand General Hoosen for the Imperial 69th Hooky Regiment.", "website": "", "subreddit": "/r/HypnoHookup", "center": [996.5, 452.5], "path": [[990.5, 440.5], [1001.5, 440.5], [1001.5, 464.5], [990.5, 464.5]]}, {"id": "tww9xp", "submitted_by": "AmberNex", "name": "Potion bottle with genderfluid inside", "description": "A minecraft potion bottle with the genderfluid pride colors inside", "website": "", "subreddit": "", "center": [750.5, 468.5], "path": [[748.5, 473.5], [752.5, 473.5], [752.5, 472.5], [753.5, 472.5], [753.5, 471.5], [754.5, 471.5], [754.5, 468.5], [753.5, 467.5], [752.5, 466.5], [751.5, 466.5], [751.5, 463.5], [752.5, 463.5], [752.5, 462.5], [751.5, 461.5], [749.5, 461.5], [749.5, 462.5], [748.5, 462.5], [748.5, 463.5], [749.5, 463.5], [749.5, 466.5], [748.5, 466.5], [748.5, 467.5], [747.5, 467.5], [747.5, 468.5], [746.5, 468.5], [746.5, 471.5], [747.5, 471.5], [748.5, 472.5], [747.5, 472.5], [748.5, 472.5]]}, {"id": "tww9xd", "submitted_by": "dhnam_LegenDUST", "name": "Kemono Friends", "description": "A logo of Japanese multimedia franchise Kemono Friends, which features animal girls, and character Serval, who is the mascot of the franchise.", "website": "https://kemono-friends.jp/", "subreddit": "/r/KemonoFriends", "center": [1790.5, 696.5], "path": [[1784.5, 687.5], [1784.5, 705.5], [1795.5, 705.5], [1795.5, 687.5]]}, -{"id": "tww9wh", "submitted_by": "Midnight_Myth", "name": "Kindred Fates", "description": "Kindred Fates is an Open World - Monster Battle - RPG, developed by Skymill Studios.", "website": "https://www.skymillstudios.com", "subreddit": "/r/KindredFates", "center": [34.5, 1065.5], "path": [[0.5, 1062.5], [55.5, 1062.5], [55.5, 1054.5], [62.5, 1054.5], [62.5, 1069.5], [0.5, 1069.5]]}, +{"id": "tww9wh", "submitted_by": "Midnight_Myth", "name": "Kindred Fates", "description": "Kindred Fates is an open world monster tamer RPG with action combat, developed by Skymill Studios.", "website": "https://www.skymillstudios.com", "subreddit": "/r/KindredFates", "center": [34.5, 1065.5], "path": [[0.5, 1062.5], [55.5, 1062.5], [55.5, 1054.5], [62.5, 1054.5], [62.5, 1069.5], [0.5, 1069.5]]}, {"id": "tww9vx", "submitted_by": "yoladol", "name": "Ayrton Senna's helmet", "description": "Former F1 pilot Ayrton Senna's helmet, who died in San Marino in 1994. An icon in brazilian motor culture and presumably one of the best F1 pilots of all time", "website": "", "subreddit": "", "center": [933.5, 614.5], "path": [[927.5, 618.5], [927.5, 608.5], [937.5, 609.5], [941.5, 614.5], [942.5, 616.5], [940.5, 618.5]]}, {"id": "tww9u5", "submitted_by": "Difficult_Sink7607", "name": "Mindustry Mono", "description": "a basic unit from a factory based game called Mindustry", "website": "https://store.steampowered.com/app/1127400/Mindustry/", "subreddit": "/r/Mindustry", "center": [1035.5, 455.5], "path": [[1033.5, 445.5], [1027.5, 450.5], [1027.5, 452.5], [1029.5, 454.5], [1029.5, 455.5], [1027.5, 458.5], [1027.5, 459.5], [1031.5, 463.5], [1032.5, 463.5], [1033.5, 462.5], [1034.5, 462.5], [1035.5, 463.5], [1036.5, 463.5], [1037.5, 462.5], [1038.5, 462.5], [1039.5, 463.5], [1040.5, 463.5], [1041.5, 462.5], [1042.5, 461.5], [1043.5, 460.5], [1044.5, 459.5], [1044.5, 458.5], [1041.5, 455.5], [1043.5, 452.5], [1043.5, 450.5], [1039.5, 446.5], [1038.5, 446.5], [1037.5, 447.5], [1037.5, 449.5], [1036.5, 450.5], [1035.5, 450.5], [1034.5, 449.5], [1034.5, 447.5], [1033.5, 446.5], [1032.5, 446.5]]}, -{"id": "tww9rq", "submitted_by": "OrangeSheepYT", "name": "Volleyball", "description": "A volleyball made by the Haikyuu community, one of the founding fathers of the Anime Alliance. Haikyuu is a manga series made by Haruichi Furudate.", "website": "", "subreddit": "/r/haikyuu", "center": [1693.5, 1195.5], "path": [[1688.5, 1190.5], [1688.5, 1200.5], [1698.5, 1200.5], [1698.5, 1190.5]]}, +{"id": "tww9rq", "submitted_by": "OrangeSheepYT", "name": "Volleyball", "description": "What's a volleyball, you ask? A volleyball is a ball used to play indoor volleyball, beach volleyball, or other less common variations of the sport. And volleyball (the sport) is the featured sport in Haikyuu. \nHaikyuu is a sport's manga series written and illustrated by Haruichi Furudate. \nThis ball was made by the Haikyuu Place Discord server and the Anime Alliance. \nHaikyuu: https://discord.gg/ESptdkjCF4 \nAnime Alliance: https://discord.gg/9U6pHMbHS4", "website": "https://discord.gg/ESptdkjCF4", "subreddit": "/r/haikyuu", "center": [1693.5, 1195.5], "path": [[1688.5, 1190.5], [1688.5, 1200.5], [1698.5, 1200.5], [1698.5, 1190.5]]}, {"id": "tww9rd", "submitted_by": "Superchupu", "name": "Duckplant", "description": "When the H was getting built, a group of people asked them to not destroy the eggplant, so they became allies and were defended mutually. Later another group of people made a duck and allied with them which converted the whole thing to the Duckplant.", "website": "", "subreddit": "", "center": [1600.5, 1369.5], "path": [[1603.5, 1366.5], [1602.5, 1366.5], [1601.5, 1366.5], [1601.5, 1367.5], [1600.5, 1367.5], [1600.5, 1368.5], [1600.5, 1369.5], [1599.5, 1369.5], [1598.5, 1369.5], [1598.5, 1370.5], [1597.5, 1370.5], [1596.5, 1370.5], [1595.5, 1370.5], [1595.5, 1369.5], [1595.5, 1371.5], [1596.5, 1371.5], [1596.5, 1372.5], [1597.5, 1372.5], [1598.5, 1372.5], [1599.5, 1372.5], [1600.5, 1372.5], [1601.5, 1372.5], [1601.5, 1371.5], [1602.5, 1371.5], [1602.5, 1370.5], [1602.5, 1369.5], [1603.5, 1369.5], [1604.5, 1369.5], [1604.5, 1368.5], [1604.5, 1367.5]]}, {"id": "tww9e7", "submitted_by": "Spy-On-This-Bitch", "name": "Funhaus Logo", "description": "The logo of the YouTube channel Funhaus.", "website": "https://www.youtube.com/channel/UCboMX_UNgaPBsUOIgasn3-Q", "subreddit": "/r/funhaus", "center": [1743.5, 928.5], "path": [[1742.5, 922.5], [1748.5, 922.5], [1748.5, 932.5], [1746.5, 934.5], [1739.5, 934.5], [1737.5, 930.5], [1737.5, 925.5], [1738.5, 923.5]]}, {"id": "tww92b", "submitted_by": "daKoabi", "name": "Rocket League Logo", "description": "miniature version of the rocket league logo", "website": "", "subreddit": "/r/RocketLeague", "center": [1489.5, 1261.5], "path": [[1480.5, 1251.5], [1478.5, 1253.5], [1477.5, 1254.5], [1477.5, 1256.5], [1478.5, 1256.5], [1478.5, 1261.5], [1479.5, 1261.5], [1479.5, 1266.5], [1481.5, 1268.5], [1481.5, 1269.5], [1485.5, 1273.5], [1487.5, 1273.5], [1487.5, 1274.5], [1492.5, 1274.5], [1492.5, 1273.5], [1494.5, 1273.5], [1494.5, 1272.5], [1495.5, 1272.5], [1498.5, 1268.5], [1498.5, 1267.5], [1499.5, 1267.5], [1499.5, 1265.5], [1500.5, 1265.5], [1500.5, 1261.5], [1501.5, 1261.5], [1501.5, 1254.5], [1499.5, 1252.5], [1495.5, 1252.5], [1495.5, 1251.5]]}, @@ -2647,10 +2483,9 @@ {"id": "tww8nk", "submitted_by": "AmberNex", "name": "Testosterone liquid bottle", "description": "A popular method of FTM hormone therapy", "website": "", "subreddit": "", "center": [524.5, 437.5], "path": [[521.5, 440.5], [522.5, 440.5], [522.5, 441.5], [526.5, 441.5], [526.5, 440.5], [527.5, 440.5], [527.5, 435.5], [526.5, 435.5], [526.5, 434.5], [525.5, 434.5], [525.5, 433.5], [525.5, 432.5], [526.5, 432.5], [525.5, 432.5], [525.5, 431.5], [523.5, 431.5], [523.5, 432.5], [522.5, 432.5], [523.5, 432.5], [523.5, 433.5], [523.5, 434.5], [522.5, 434.5], [522.5, 435.5], [521.5, 435.5], [521.5, 440.5]]}, {"id": "tww8m8", "submitted_by": "fawcan", "name": "Yabbe & NymN's cats", "description": "Small drawings of the streamer Yabbe and NymN's cats, in order Minus, Apollo & Miss", "website": "https://www.twitch.tv/yabbe", "subreddit": "", "center": [680.5, 941.5], "path": [[671.5, 942.5], [671.5, 940.5], [672.5, 941.5], [673.5, 941.5], [674.5, 940.5], [674.5, 941.5], [675.5, 942.5], [676.5, 941.5], [675.5, 942.5], [678.5, 942.5], [678.5, 940.5], [679.5, 941.5], [680.5, 941.5], [681.5, 940.5], [681.5, 941.5], [682.5, 942.5], [683.5, 941.5], [682.5, 942.5], [685.5, 942.5], [685.5, 940.5], [686.5, 941.5], [687.5, 941.5], [688.5, 940.5], [688.5, 941.5], [689.5, 942.5], [690.5, 941.5], [689.5, 942.5], [671.5, 942.5]]}, {"id": "tww8bi", "submitted_by": "casper667", "name": "Owl #1", "description": "An owl with a heart, made by boomkin WoW players and other owl enthusiasts.", "website": "", "subreddit": "", "center": [1206.5, 902.5], "path": [[1210.5, 908.5], [1210.5, 895.5], [1204.5, 895.5], [1201.5, 898.5], [1201.5, 908.5]]}, -{"id": "tww80p", "submitted_by": "OrangeSheepYT", "name": "Izuku Midoriya", "description": "The man who will soon become the greatest Hero of all time. Main protagonist of Kohei Horikoshi's manga series My Hero Academia.", "website": "", "subreddit": "/r/BokuNoHeroAcademia", "center": [1685.5, 1186.5], "path": [[1676.5, 1172.5], [1676.5, 1200.5], [1693.5, 1200.5], [1693.5, 1172.5]]}, +{"id": "tww80p", "submitted_by": "OrangeSheepYT", "name": "Izuku Midoriya", "description": "\"It's not all black-and-white. Most things in this world are in shades of gray. A blend of fear and anger. Which is why... I've gotta extend a helping hand.\" \nThe man who will soon become the greatest Hero of all time. Main protagonist of Kohei Horikoshi's manga series My Hero Academia. \nThis sprite was made by the MHA Place Discord server and the Anime Alliance. \nMHA: https://discord.gg/GsWeNk2aa2 \nAnime Alliance: https://discord.gg/9U6pHMbHS4", "website": "https://discord.gg/GsWeNk2aa2", "subreddit": "/r/BNHAPlace", "center": [1685.5, 1186.5], "path": [[1676.5, 1172.5], [1676.5, 1200.5], [1693.5, 1200.5], [1693.5, 1172.5]]}, {"id": "tww7vr", "submitted_by": "jpepo", "name": "Wither Skeleton Skull", "description": "Wither Skeleton Skulls are very rare mob drops by Wither Skeletons in the game Minecraft.", "website": "", "subreddit": "", "center": [1799.5, 1382.5], "path": [[1795.5, 1378.5], [1795.5, 1385.5], [1802.5, 1385.5], [1802.5, 1378.5], [1795.5, 1378.5]]}, {"id": "tww7ss", "submitted_by": "Pimsaddict", "name": "Pim's (french biscuit)", "description": "Biscuit made by a french discord: Shopless, Tmkb, Ingenieux, Elliotcrabe, ImNotDjango, Docyolo, Malo", "website": "", "subreddit": "/r/ThePims", "center": [529.5, 1786.5], "path": [[527.5, 1784.5], [530.5, 1784.5], [531.5, 1785.5], [531.5, 1788.5], [530.5, 1789.5], [528.5, 1789.5], [526.5, 1787.5], [526.5, 1785.5]]}, -{"id": "tww7lz", "submitted_by": "mohouyizme", "name": "1337", "description": "1337 is a future-proof computer science training to educate the next generation of software engineers.", "website": "https://1337.ma", "subreddit": "", "center": [1641.5, 774.5], "path": [[1626.5, 767.5], [1656.5, 767.5], [1656.5, 781.5], [1626.5, 781.5], [1626.5, 767.5], [1627.5, 767.5], [1627.5, 767.5]]}, {"id": "tww7h0", "submitted_by": "sen314159265", "name": "University of Toronto", "description": "#1 University in Canada", "website": "https://www.utoronto.ca/", "subreddit": "/r/UofT", "center": [1272.5, 45.5], "path": [[1264.5, 36.5], [1280.5, 36.5], [1280.5, 51.5], [1272.5, 58.5], [1264.5, 51.5], [1264.5, 36.5]]}, {"id": "tww7fz", "submitted_by": "BugSpirited5581", "name": "Kson ONAIR", "description": "Hi I\u2019m Kson from GA,Atl USA. Sometimes on cam, sometimes a VTuber. Love learning Japanese and playing games. Don't mind me, just doing stuff I love everyday!", "website": "https://www.youtube.com/c/ksonONAIr/about", "subreddit": "/r/kson_ONAIR", "center": [1363.5, 917.5], "path": [[1354.5, 914.5], [1354.5, 925.5], [1369.5, 925.5], [1368.5, 915.5], [1369.5, 901.5], [1365.5, 901.5], [1364.5, 915.5], [1359.5, 915.5], [1359.5, 914.5], [1356.5, 914.5]]}, {"id": "tww7ea", "submitted_by": "reflei", "name": "Punishing: Gray Raven", "description": "A 3D sci-fi action hack-and-slash gacha game that let's you command waifus and husbandos with people malding, crying, and raging. A standard mantra required to enter Babylonia. n", "website": "https://pgr.kurogame.net/", "subreddit": "/r/PunishingGrayRaven", "center": [1625.5, 1761.5], "path": [[1625.5, 1747.5], [1610.5, 1761.5], [1625.5, 1775.5], [1640.5, 1761.5]]}, @@ -2659,7 +2494,7 @@ {"id": "tww7a5", "submitted_by": "OzoneGrif", "name": "Bubsy", "description": "Bubsy is a series of platforming video games created by Michael Berlyn and developed and published by Accolade. The games star an anthropomorphic bobcat named Bubsy.", "website": "", "subreddit": "", "center": [1719.5, 558.5], "path": [[1714.5, 550.5], [1714.5, 552.5], [1715.5, 553.5], [1714.5, 554.5], [1714.5, 559.5], [1715.5, 560.5], [1714.5, 562.5], [1717.5, 563.5], [1715.5, 567.5], [1724.5, 567.5], [1722.5, 565.5], [1722.5, 563.5], [1724.5, 563.5], [1725.5, 562.5], [1725.5, 561.5], [1724.5, 560.5], [1725.5, 559.5], [1724.5, 558.5], [1725.5, 556.5], [1725.5, 554.5], [1724.5, 553.5], [1725.5, 552.5], [1725.5, 550.5], [1724.5, 549.5], [1723.5, 550.5], [1723.5, 551.5], [1722.5, 552.5], [1721.5, 552.5], [1719.5, 551.5], [1718.5, 552.5], [1718.5, 551.5], [1716.5, 552.5], [1716.5, 551.5], [1716.5, 550.5], [1715.5, 549.5]]}, {"id": "tww77d", "submitted_by": "DrOetam", "name": "Newfoundland Flag", "description": "The unofficial yet totally powerful flag of Newfoundland and Labrador, a Canadian province.", "website": "https://en.wikipedia.org/wiki/Newfoundland_Tricolour", "subreddit": "/r/newfoundland", "center": [1386.5, 596.5], "path": [[1379.5, 592.5], [1379.5, 599.5], [1393.5, 599.5], [1393.5, 592.5], [1379.5, 592.5]]}, {"id": "tww72q", "submitted_by": "H3ryin", "name": "pepeDS", "description": "A single frame of a twitch emote pepeDS", "website": "https://betterttv.com/emotes/5b444de56b9160327d12534a", "subreddit": "", "center": [709.5, 1721.5], "path": [[703.5, 1721.5], [703.5, 1723.5], [704.5, 1724.5], [711.5, 1724.5], [712.5, 1723.5], [713.5, 1722.5], [714.5, 1721.5], [715.5, 1720.5], [713.5, 1722.5], [712.5, 1722.5], [712.5, 1721.5], [713.5, 1720.5], [713.5, 1719.5], [712.5, 1718.5], [711.5, 1718.5], [710.5, 1719.5], [709.5, 1718.5], [708.5, 1718.5], [707.5, 1719.5], [706.5, 1720.5], [706.5, 1721.5], [705.5, 1722.5], [705.5, 1723.5], [704.5, 1724.5], [703.5, 1723.5], [703.5, 1721.5]]}, -{"id": "tww71t", "submitted_by": "Lezimbo", "name": "3 chouals", "description": "3 little Flat Eric, character made by Mr Oizo (Quentin Dupieux) and used by choualbox as their mascot.", "website": "choualbox.com", "subreddit": "", "center": [719.5, 1768.5], "path": [[716.5, 1785.5], [722.5, 1785.5], [722.5, 1751.5], [716.5, 1751.5], [716.5, 1785.5]]}, +{"id": "tww71t", "submitted_by": "Lezimbo", "name": "3 chouals", "description": "3 little Flat Eric, character made by Mr Oizo (Quentin Dupieux) and used by choualbox as their mascot.", "website": "https://choualbox.com", "subreddit": "", "center": [719.5, 1768.5], "path": [[716.5, 1785.5], [722.5, 1785.5], [722.5, 1751.5], [716.5, 1751.5], [716.5, 1785.5]]}, {"id": "tww701", "submitted_by": "Rickmaster2002", "name": "Z\u00e9 Povinho", "description": "Z\u00e9 Povinho is the cartoon character of a Portuguese everyman created in 1875 by Rafael Bordalo Pinheiro. He became first a symbol of the Portuguese working-class people, and eventually into the unofficial personification of Portugal.", "website": "", "subreddit": "/r/portugal", "center": [954.5, 324.5], "path": [[947.5, 308.5], [961.5, 308.5], [960.5, 310.5], [959.5, 318.5], [963.5, 313.5], [964.5, 312.5], [965.5, 314.5], [966.5, 318.5], [966.5, 336.5], [945.5, 337.5], [943.5, 330.5], [943.5, 327.5], [942.5, 325.5], [938.5, 323.5], [938.5, 322.5], [941.5, 322.5], [942.5, 321.5], [943.5, 320.5], [944.5, 319.5], [950.5, 318.5], [947.5, 316.5], [947.5, 311.5], [946.5, 310.5], [947.5, 308.5]]}, {"id": "tww6wl", "submitted_by": "fluxwerk", "name": "Tiny Slovakia", "description": "Tiny map of Slovakia including miniature flag.", "website": "", "subreddit": "/r/Slovakia", "center": [1336.5, 240.5], "path": [[1324.5, 240.5], [1331.5, 234.5], [1344.5, 235.5], [1350.5, 239.5], [1347.5, 245.5], [1342.5, 242.5], [1336.5, 243.5], [1330.5, 246.5], [1324.5, 244.5]]}, {"id": "tww6jo", "submitted_by": "OrangeSheepYT", "name": "Dragon Ball", "description": "A Dragon Ball with seven stars. The Dragon Ball is the titular artifact from Akira Toriyama's manga series Dragon Ball.", "website": "", "subreddit": "/r/dbz", "center": [1676.5, 1195.5], "path": [[1681.5, 1200.5], [1681.5, 1190.5], [1671.5, 1190.5], [1671.5, 1200.5]]}, @@ -2668,25 +2503,24 @@ {"id": "tww6h2", "submitted_by": "_Kaiji__", "name": "Italian Frecciarossa", "description": "This is an Italian Frecciarossa high speed train coming out of a tunnel in the Alps.nThis is a route frequently used by these Trains to link Italy & Germany.nThis is a collaboration with r/placeDE", "website": "https://www.trenitalia.com/en/frecce/frecciarossa_1000.html", "subreddit": "", "center": [1973.5, 1157.5], "path": [[1925.5, 1171.5], [1925.5, 1170.5], [1924.5, 1170.5], [1922.5, 1170.5], [1922.5, 1168.5], [1923.5, 1167.5], [1924.5, 1166.5], [1925.5, 1166.5], [1926.5, 1165.5], [1927.5, 1165.5], [1929.5, 1164.5], [1929.5, 1164.5], [1930.5, 1163.5], [1932.5, 1163.5], [1932.5, 1162.5], [1934.5, 1161.5], [1935.5, 1161.5], [1936.5, 1160.5], [1937.5, 1160.5], [1938.5, 1159.5], [1939.5, 1159.5], [1940.5, 1158.5], [1941.5, 1158.5], [1942.5, 1157.5], [1944.5, 1157.5], [1945.5, 1156.5], [1968.5, 1156.5], [1968.5, 1155.5], [1969.5, 1154.5], [1969.5, 1152.5], [1970.5, 1152.5], [1970.5, 1150.5], [1969.5, 1150.5], [1969.5, 1148.5], [1970.5, 1147.5], [1970.5, 1146.5], [1971.5, 1146.5], [1972.5, 1146.5], [1972.5, 1143.5], [1973.5, 1143.5], [1973.5, 1142.5], [1974.5, 1141.5], [1975.5, 1140.5], [1976.5, 1140.5], [1976.5, 1138.5], [1977.5, 1137.5], [1978.5, 1136.5], [1979.5, 1135.5], [1979.5, 1134.5], [1980.5, 1135.5], [1983.5, 1138.5], [1984.5, 1137.5], [1985.5, 1136.5], [1986.5, 1135.5], [1987.5, 1133.5], [1988.5, 1132.5], [1989.5, 1131.5], [1990.5, 1130.5], [1991.5, 1129.5], [1992.5, 1128.5], [1993.5, 1127.5], [1994.5, 1126.5], [1995.5, 1125.5], [1995.5, 1126.5], [1996.5, 1128.5], [1997.5, 1128.5], [1997.5, 1129.5], [1998.5, 1130.5], [1999.5, 1131.5], [1999.5, 1171.5]]}, {"id": "tww6h1", "submitted_by": "Lexa555", "name": "Slovakia flag", "description": "Slovakia flag made by the community of r/slovakia.nWith pixelarts from Slovakia culture.", "website": "", "subreddit": "/r/slovakia", "center": [1390.5, 205.5], "path": [[1325.5, 161.5], [1454.5, 160.5], [1455.5, 238.5], [1455.5, 248.5], [1324.5, 249.5]]}, {"id": "tww65v", "submitted_by": "calvinballing", "name": "Effective Altruism", "description": "Effective Altruism is a social movement and philosophy focused on maximizing the good you can do in your career, projects, and other life decisions.", "website": "https://www.effectivealtruism.org/", "subreddit": "/r/EffectiveAltruism", "center": [956.5, 1770.5], "path": [[977.5, 1777.5], [937.5, 1777.5], [937.5, 1761.5], [944.5, 1761.5], [947.5, 1764.5], [977.5, 1764.5], [977.5, 1777.5], [977.5, 1777.5], [977.5, 1777.5]]}, -{"id": "tww65f", "submitted_by": "mrbootybreath", "name": "Flag of Iceland", "description": "The flag of Iceland, including drawings of a snowflake, a puffin and the largest church in Iceland, Hallgr\u00edmskirkja.", "website": "", "subreddit": "/r/Iceland", "center": [500.5, 119.5], "path": [[476.5, 102.5], [525.5, 103.5], [525.5, 136.5], [476.5, 136.5], [476.5, 102.5]]}, +{"id": "tww65f", "submitted_by": "mrbootybreath", "name": "Flag of Iceland", "description": "The flag of Iceland, including drawings of a snowflake, a puffin and the largest church in Iceland, Hallgr\u00edmskirkja.", "website": "https://en.wikipedia.org/wiki/Iceland", "subreddit": "/r/Iceland", "center": [500.5, 119.5], "path": [[476.5, 102.5], [525.5, 103.5], [525.5, 136.5], [476.5, 136.5], [476.5, 102.5]]}, {"id": "tww659", "submitted_by": "B0rbor4d", "name": "Mahlunas Jet Flame", "description": "...inspired from her lately droped merch and protected by /r/placeDE in recognition for her support during the Event.ncheck her out and leave a follow:ntwitch.tv/mahluna", "website": "https://mahluna.store/", "subreddit": "/r/mahluna", "center": [1499.5, 1182.5], "path": [[1489.5, 1172.5], [1508.5, 1172.5], [1508.5, 1191.5], [1489.5, 1191.5], [1489.5, 1172.5]]}, {"id": "tww62z", "submitted_by": "daKoabi", "name": "Kenny", "description": "Kenny from the popular show South Park. Apparently the antivoid killed him.", "website": "", "subreddit": "", "center": [498.5, 1518.5], "path": [[494.5, 1494.5], [494.5, 1495.5], [489.5, 1495.5], [488.5, 1496.5], [488.5, 1497.5], [484.5, 1497.5], [484.5, 1500.5], [481.5, 1500.5], [481.5, 1501.5], [477.5, 1505.5], [477.5, 1510.5], [476.5, 1511.5], [476.5, 1524.5], [477.5, 1524.5], [477.5, 1526.5], [478.5, 1526.5], [478.5, 1530.5], [487.5, 1539.5], [489.5, 1539.5], [491.5, 1541.5], [491.5, 1542.5], [510.5, 1542.5], [510.5, 1541.5], [516.5, 1536.5], [517.5, 1536.5], [518.5, 1535.5], [520.5, 1533.5], [522.5, 1531.5], [522.5, 1525.5], [519.5, 1525.5], [518.5, 1524.5], [513.5, 1524.5], [513.5, 1520.5], [511.5, 1518.5], [511.5, 1516.5], [512.5, 1515.5], [513.5, 1514.5], [513.5, 1510.5], [514.5, 1509.5], [515.5, 1509.5], [516.5, 1508.5], [517.5, 1507.5], [518.5, 1507.5], [518.5, 1508.5], [517.5, 1509.5], [517.5, 1510.5], [517.5, 1511.5], [520.5, 1511.5], [522.5, 1510.5], [521.5, 1509.5], [521.5, 1506.5], [520.5, 1506.5], [519.5, 1505.5], [519.5, 1504.5], [517.5, 1502.5], [517.5, 1501.5], [516.5, 1501.5], [516.5, 1500.5], [514.5, 1498.5], [513.5, 1497.5], [512.5, 1497.5], [511.5, 1496.5], [510.5, 1496.5], [509.5, 1495.5], [508.5, 1494.5]]}, {"id": "tww5yg", "submitted_by": "HashBR", "name": "Irm\u00e3o do Jorel (Jorel's Brother)", "description": "Irm\u00e3o do Jorel is a Brazilian animated cartoon series.", "website": "https://www.cartoonnetwork.com.br/show/irmao-do-jorel", "subreddit": "/r/Brasil", "center": [1417.5, 1769.5], "path": [[1409.5, 1758.5], [1409.5, 1779.5], [1425.5, 1779.5], [1425.5, 1758.5], [1409.5, 1758.5], [1409.5, 1758.5], [1409.5, 1758.5]]}, {"id": "tww5y8", "submitted_by": "cefaluu", "name": "Dune", "description": "Dune is a science fiction book written by Frank Herbert. This logo is inspired by Denis Villeneuve's 2021 movie adaptation. Our Fremen warriors fought to protect it from becoming DUNG. We have made strong alliances with our neighbors such as Metal Gear Solid, The Magnus Archives and Juice Wrld. We have also partnered with the Science Fiction Fantasy Alliance.n", "website": "", "subreddit": "/r/Dune", "center": [1982.5, 169.5], "path": [[1965.5, 163.5], [1965.5, 174.5], [1999.5, 174.5], [1999.5, 163.5]]}, {"id": "tww5wv", "submitted_by": "GoJoeyGo123", "name": "Fedora", "description": "Fedora is a Linux distribution developed by the Fedora Project which is sponsored primarily by Red Hat", "website": "https://getfedora.org/", "subreddit": "/r/Fedora", "center": [37.5, 685.5], "path": [[33.5, 689.5], [33.5, 683.5], [34.5, 683.5], [34.5, 682.5], [35.5, 681.5], [39.5, 681.5], [41.5, 683.5], [41.5, 687.5], [40.5, 688.5], [39.5, 689.5]]}, {"id": "tww5so", "submitted_by": "AwayNefariousness442", "name": "Block, Parry, Dodge", "description": "Weapon abilities in Deepwoken.nnWe Block, Parry, DODGE.", "website": "", "subreddit": "", "center": [377.5, 1354.5], "path": [[343.5, 1351.5], [410.5, 1351.5], [410.5, 1357.5], [343.5, 1357.5], [343.5, 1351.5]]}, -{"id": "tww5os", "submitted_by": "YTCheryX", "name": "Discord Bots Hangout (Destroyed)", "description": "A small group of discord bots.", "website": "https://discord.com", "subreddit": "", "center": [250.5, 116.5], "path": [[235.5, 125.5], [235.5, 110.5], [239.5, 105.5], [252.5, 105.5], [256.5, 108.5], [256.5, 113.5], [267.5, 113.5], [267.5, 125.5], [235.5, 125.5]]}, {"id": "tww5e1", "submitted_by": "Sufficient_Jelly_331", "name": "RinHeart", "description": "An Emote used by a Vtuber called Rin.", "website": "https://www.twitch.tv/rinkya", "subreddit": "", "center": [1069.5, 1687.5], "path": [[1059.5, 1679.5], [1078.5, 1680.5], [1078.5, 1696.5], [1060.5, 1695.5]]}, {"id": "tww57m", "submitted_by": "Monchete99", "name": "Sprite of Noire (Nowa)", "description": "A sprite of Noire (Nowaru in Japanese, Nowa for short), from the console war based videogame JRPG series Hyperdimension Neptunia. She is the representation of the Sony Playstation home console lineup (i swear this is true), referenced through her appearance in both forms, her processor units, and some of her dialogue. She doesn't have many friends", "website": "", "subreddit": "/r/gamindustri", "center": [74.5, 1014.5], "path": [[57.5, 1001.5], [57.5, 1026.5], [91.5, 1026.5], [90.5, 1001.5], [57.5, 1001.5]]}, -{"id": "tww57j", "submitted_by": "PMLCG_Filou", "name": "EISTI Pau", "description": "A french engineer school located in the city of PaunThe actual name is CY-Tech", "website": "https://cytech.cyu.fr/", "subreddit": "", "center": [1747.5, 1606.5], "path": [[1733.5, 1600.5], [1761.5, 1600.5], [1761.5, 1611.5], [1733.5, 1611.5]]}, +{"id": "tww57j", "submitted_by": "PMLCG_Filou", "name": "EISTI Pau", "description": "EISTI is the former name of CY Tech, an IT France-based engineering school. Pau, a small city located in South-Western France, is the location of one of its campuses.", "website": "https://cytech.cyu.fr/", "subreddit": "", "center": [1747.5, 1606.5], "path": [[1733.5, 1600.5], [1761.5, 1600.5], [1761.5, 1611.5], [1733.5, 1611.5]]}, {"id": "tww53e", "submitted_by": "Migikata36", "name": "Lovejoy / Wilbur Soot", "description": "Artwork made by fans of British indie rock band Lovejoy, formed in 2021 by streamer Wilbur Soot. The artwork features the Anvil Cat featured on the \u2018Are You Alright?\u2019 EP, as well as a seagull (nicknamed Peebee) which is on the cover of their second EP, \u2018Pebble Brain\u2019. The dog wearing a hat in the bottom left is from the artwork to their single \u2018Knee Deep at ATP\u2019, a cover of a Los Campesinos! song of the same name.nAdditionally, on the bottom right of the artwork is a recreation of the cover of Wilbur Soot\u2019s 2020 EP \u2018Your City Gave Me Asthma\u2019.", "website": "https://twitter.com/lvjyonline", "subreddit": "/r/lovejoyband", "center": [1297.5, 361.5], "path": [[1280.5, 344.5], [1279.5, 344.5], [1279.5, 377.5], [1314.5, 377.5], [1314.5, 344.5]]}, -{"id": "tww52x", "submitted_by": "UfXpri", "name": "untitled goose game", "description": "Untitled Goose Game is a 2019 puzzle stealth game developed by House House and published by Panic.", "website": "https://goose.game/", "subreddit": "/r/untitledgoosegame", "center": [69.5, 1044.5], "path": [[56.5, 1033.5], [56.5, 1054.5], [62.5, 1054.5], [62.5, 1060.5], [70.5, 1060.5], [72.5, 1055.5], [75.5, 1055.5], [79.5, 1053.5], [79.5, 1042.5], [84.5, 1042.5], [84.5, 1033.5]]}, +{"id": "tww52x", "submitted_by": "UfXpri", "name": "Untitled Goose Game", "description": "Untitled Goose Game is a 2019 puzzle stealth game developed by House House and published by Panic. Honk!", "website": "https://goose.game/", "subreddit": "/r/untitledgoosegame", "center": [69.5, 1044.5], "path": [[55.5, 1032.5], [84.5, 1032.5], [84.5, 1042.5], [79.5, 1042.5], [79.5, 1052.5], [76.5, 1052.5], [76.5, 1053.5], [75.5, 1053.5], [75.5, 1054.5], [71.5, 1054.5], [71.5, 1057.5], [67.5, 1057.5], [67.5, 1058.5], [61.5, 1058.5], [61.5, 1057.5], [60.5, 1057.5], [60.5, 1053.5], [61.5, 1053.5], [61.5, 1052.5], [60.5, 1051.5], [55.5, 1051.5], [55.5, 1032.5]]}, {"id": "tww4yz", "submitted_by": "neves_96_twitch", "name": "Larry the duck", "description": "This trend was started by jo4na and her followers. Larry is a plush duck of jo4na and now is immortalized on place", "website": "https://www.twitch.tv/jo4na", "subreddit": "/r/portugal", "center": [1177.5, 332.5], "path": [[1172.5, 328.5], [1172.5, 336.5], [1183.5, 336.5], [1182.5, 328.5]]}, {"id": "tww4x0", "submitted_by": "fawcan", "name": "Life", "description": "A Peepo looking at the sunset while thinking about life.nMade by Twitch streamer NymN community", "website": "https://twitch.tv/nymn", "subreddit": "/r/RedditAndChill", "center": [1701.5, 1084.5], "path": [[1694.5, 1093.5], [1707.5, 1093.5], [1707.5, 1075.5], [1694.5, 1075.5], [1694.5, 1093.5]]}, {"id": "tww4w3", "submitted_by": "TrulyGolden", "name": "Texas", "description": "Flag of the US state of Texas, featuring a depiction of the Alamo.", "website": "", "subreddit": "/r/texas", "center": [75.5, 264.5], "path": [[104.5, 253.5], [46.5, 252.5], [47.5, 275.5], [104.5, 275.5]]}, {"id": "tww4tu", "submitted_by": "H3ryin", "name": "Ugandan flag", "description": "Ugandan flag, likely drawn by forsen's community since it's a known meme from back when he watched 'Who killed Captain Alex' with his chat.", "website": "", "subreddit": "/r/forsen", "center": [730.5, 897.5], "path": [[706.5, 890.5], [761.5, 890.5], [760.5, 891.5], [759.5, 892.5], [758.5, 893.5], [758.5, 902.5], [759.5, 903.5], [760.5, 904.5], [757.5, 904.5], [756.5, 903.5], [755.5, 902.5], [755.5, 894.5], [748.5, 894.5], [748.5, 900.5], [747.5, 901.5], [746.5, 902.5], [746.5, 903.5], [747.5, 904.5], [706.5, 904.5], [706.5, 890.5]]}, -{"id": "tww4st", "submitted_by": "Opfklopf", "name": "Starcraft 2", "description": "The logo of the video game Starcraft 2 by Blizzard Entertainment.", "website": "https://starcraft2.com/de-de/", "subreddit": "/r/starcraft2", "center": [861.5, 1933.5], "path": [[865.5, 1918.5], [875.5, 1919.5], [875.5, 1947.5], [847.5, 1947.5], [847.5, 1919.5], [856.5, 1918.5]]}, -{"id": "tww4qp", "submitted_by": "Phephelive", "name": "Mega Charizard X", "description": "A mega evolution of the famous Pok\u00e9mon Charizard from Pokemon X game who happen in Kalos, a region inspired by France. He spits fire to ignite the flame of the Tomb of the Unknown Soldier, which is a commemoration under the Arc de Triomphe in memory of all the soldiers who fell for France.", "website": "", "subreddit": "", "center": [76.5, 1917.5], "path": [[57.5, 1857.5], [119.5, 1920.5], [84.5, 1957.5], [46.5, 1955.5]]}, +{"id": "tww4st", "submitted_by": "Opfklopf", "name": "Starcraft 2", "description": "The second Starcraft 2 logo (an RTS game by Blizzard Entertainment) on the place canvas. This one was not drawn by Starcraft fans, but rather by the Dutch after they took pity on some artworks that they drew over with their Seven Provinces painting.", "website": "https://starcraft2.com/", "subreddit": "/r/starcraft", "center": [861.5, 1933.5], "path": [[865.5, 1918.5], [875.5, 1919.5], [875.5, 1947.5], [847.5, 1947.5], [847.5, 1919.5], [856.5, 1918.5]]}, +{"id": "tww4qp", "submitted_by": "Phephelive", "name": "Mega Charizard X", "description": "A mega evolution of the Pok\u00e9mon Charizard from the Pok\u00e9mon X/Y games, which happen in Kalos, a region inspired by France. It spits fire to ignite the flame of the Tomb of the Unknown Soldier, which is a commemoration under the Arc de Triomphe in memory of all the soldiers who fell for France.", "website": "https://bulbapedia.bulbagarden.net/wiki/Charizard_(Pok%C3%A9mon)", "subreddit": "/r/placefrance", "center": [76.5, 1917.5], "path": [[57.5, 1857.5], [119.5, 1920.5], [84.5, 1957.5], [46.5, 1955.5]]}, {"id": "tww4jp", "submitted_by": "rhphoenix5", "name": "Toronto Blue Jays / Simon Fraser University", "description": "The Toronto Blue Jays logo mixed with the Simon Fraser University Logo was a collaboration between r/Simonfraser and r/TorontoBlueJays. There is also a raccoon in the top left.", "website": "", "subreddit": "/r/simonfraser, /r/torontobluejays", "center": [889.5, 502.5], "path": [[875.5, 487.5], [904.5, 487.5], [904.5, 519.5], [882.5, 519.5], [881.5, 513.5], [878.5, 508.5], [874.5, 505.5], [867.5, 504.5], [867.5, 497.5], [874.5, 494.5], [874.5, 487.5], [875.5, 487.5]]}, {"id": "tww4g2", "submitted_by": "machadoaboutanything", "name": "New England Patriots", "description": "The logo of the New England Patriots, a football team.", "website": "", "subreddit": "/r/Patriots", "center": [1654.5, 610.5], "path": [[1630.5, 599.5], [1678.5, 599.5], [1678.5, 620.5], [1630.5, 620.5]]}, {"id": "tww4dv", "submitted_by": "Initial-Box-3708", "name": "Wubbies Eyes", "description": "Wubbies designers had to undertake multiple iterations of this image, finding that the size constraints of the space made it difficult to maintain realism with a single pixel grossly exaggerating the size of his eyes", "website": "", "subreddit": "/r/paymoneywubby", "center": [0.5, 0.5], "path": [[400.5, 1491.5], [401.5, 1491.5], [402.5, 1491.5]]}, @@ -2697,14 +2531,13 @@ {"id": "tww3s6", "submitted_by": "litterally_who6354", "name": "Sora", "description": "Protagonist of the Kingdom Hearts series", "website": "", "subreddit": "/r/KingdomHearts", "center": [1264.5, 686.5], "path": [[1242.5, 699.5], [1242.5, 674.5], [1286.5, 674.5], [1286.5, 689.5], [1285.5, 689.5], [1285.5, 690.5], [1284.5, 690.5], [1284.5, 693.5], [1285.5, 693.5], [1285.5, 694.5], [1286.5, 694.5], [1286.5, 699.5]]}, {"id": "tww3r5", "submitted_by": "Sipior04", "name": "Leaning Tower of Pisa", "description": "A famous tower in Pisa, Italy, that is not really straight", "website": "https://en.wikipedia.org/wiki/Leaning_Tower_of_Pisa", "subreddit": "", "center": [870.5, 1048.5], "path": [[857.5, 1072.5], [856.5, 1059.5], [860.5, 1035.5], [865.5, 1022.5], [873.5, 1022.5], [874.5, 1019.5], [875.5, 1022.5], [877.5, 1022.5], [883.5, 1025.5], [883.5, 1036.5], [882.5, 1043.5], [880.5, 1049.5], [880.5, 1054.5], [880.5, 1060.5], [878.5, 1063.5], [881.5, 1063.5], [879.5, 1069.5], [880.5, 1072.5], [857.5, 1072.5]]}, {"id": "tww3q7", "submitted_by": "BotchaMan", "name": "322", "description": "A popular meme in Dota 2 community originated after the infamous bet made by a former Rox.KIS player Solo against his own team, in a result of which the team lost and Solo won 322 dollars.", "website": "", "subreddit": "/r/dota2", "center": [13.5, 140.5], "path": [[0.5, 137.5], [26.5, 137.5], [27.5, 142.5], [0.5, 142.5], [0.5, 137.5]]}, -{"id": "tww3oo", "submitted_by": "Otherwise_Put1", "name": "Minecraft Bee", "description": "A pixelart of Minecraft's Bee made and maintained by a lone redditor (u/Bloemist)", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tww3c1", "submitted_by": "its_raining_peachies", "name": "Sougo's mask", "description": "a tiny version of Okita Sougo's sleep mask from Gintama", "website": "", "subreddit": "", "center": [1468.5, 807.5], "path": [[1460.5, 804.5], [1475.5, 804.5], [1475.5, 809.5], [1460.5, 809.5]]}, {"id": "tww3ae", "submitted_by": "ElmoEatsK1ds", "name": "Aruba", "description": "The flag and shape of Aruba. A Caribbean island part of the kingdom of the Netherlands.", "website": "", "subreddit": "/r/Aruba", "center": [834.5, 13.5], "path": [[825.5, 11.5], [831.5, 17.5], [832.5, 17.5], [833.5, 18.5], [834.5, 18.5], [836.5, 20.5], [837.5, 20.5], [838.5, 21.5], [839.5, 21.5], [840.5, 22.5], [841.5, 23.5], [843.5, 23.5], [844.5, 22.5], [843.5, 21.5], [843.5, 18.5], [842.5, 17.5], [842.5, 16.5], [836.5, 10.5], [835.5, 10.5], [827.5, 2.5], [826.5, 3.5], [826.5, 4.5], [827.5, 5.5], [827.5, 7.5], [826.5, 8.5], [826.5, 10.5]]}, {"id": "tww2tu", "submitted_by": "KassXWolfXTigerXFox", "name": "Jolyne's Butterfly Tattoo", "description": "A blue and green Butterfly motif, seen as a tattoo on the arm of Jolyne Cujoh, protagonist of the manga and anime JoJo's Bizarre Adventure, Part 6: Stone Ocean.", "website": "", "subreddit": "", "center": [115.5, 903.5], "path": [[118.5, 907.5], [117.5, 907.5], [117.5, 906.5], [116.5, 906.5], [116.5, 905.5], [115.5, 905.5], [114.5, 905.5], [114.5, 906.5], [113.5, 906.5], [113.5, 907.5], [112.5, 907.5], [112.5, 906.5], [111.5, 906.5], [111.5, 904.5], [112.5, 904.5], [112.5, 903.5], [112.5, 902.5], [111.5, 902.5], [111.5, 900.5], [112.5, 900.5], [112.5, 899.5], [113.5, 899.5], [113.5, 900.5], [115.5, 900.5], [115.5, 899.5], [115.5, 900.5], [116.5, 900.5], [117.5, 900.5], [117.5, 899.5], [118.5, 899.5], [118.5, 900.5], [119.5, 900.5], [119.5, 902.5], [118.5, 902.5], [118.5, 903.5], [118.5, 904.5], [119.5, 904.5], [119.5, 905.5], [119.5, 906.5], [118.5, 906.5]]}, -{"id": "tww2sy", "submitted_by": "Legitimate_Band3149", "name": "Staryuuki", "description": "La mejor streamer hispanohablante y l\u00edder de la Bunny army", "website": "Https://www.twitch.tv/staryuuki", "subreddit": "", "center": [1100.5, 1355.5], "path": [[1114.5, 1370.5], [1114.5, 1341.5], [1114.5, 1340.5], [1116.5, 1340.5], [1116.5, 1371.5], [1083.5, 1370.5], [1083.5, 1341.5], [1083.5, 1339.5], [1113.5, 1339.5], [1114.5, 1339.5]]}, +{"id": "tww2sy", "submitted_by": "Legitimate_Band3149", "name": "Staryuuki", "description": "La mejor streamer hispanohablante y l\u00edder de la Bunny army", "website": "https://Https://www.twitch.tv/staryuuki", "subreddit": "", "center": [1100.5, 1355.5], "path": [[1114.5, 1370.5], [1114.5, 1341.5], [1114.5, 1340.5], [1116.5, 1340.5], [1116.5, 1371.5], [1083.5, 1370.5], [1083.5, 1341.5], [1083.5, 1339.5], [1113.5, 1339.5], [1114.5, 1339.5]]}, {"id": "tww2rc", "submitted_by": "Empty_Engie", "name": "Shibby Says Spiral", "description": "A spiral representing popular hypnokink streamer and content creator, Shibby.", "website": "", "subreddit": "/r/shibbysays", "center": [1229.5, 476.5], "path": [[1200.5, 507.5], [1200.5, 444.5], [1258.5, 446.5], [1258.5, 507.5]]}, {"id": "tww2oc", "submitted_by": "scorpion24100", "name": "Hollow Knight Grub", "description": "Grubs are a collectible In Hollow Knight they can be found trapped in glass jars throughout Hallownest.", "website": "", "subreddit": "/r/HollowKnight", "center": [233.5, 407.5], "path": [[227.5, 401.5], [231.5, 397.5], [234.5, 397.5], [237.5, 400.5], [237.5, 403.5], [235.5, 405.5], [236.5, 406.5], [236.5, 407.5], [235.5, 408.5], [236.5, 409.5], [238.5, 411.5], [239.5, 410.5], [240.5, 410.5], [240.5, 412.5], [238.5, 414.5], [237.5, 415.5], [236.5, 415.5], [235.5, 416.5], [234.5, 416.5], [232.5, 414.5], [231.5, 415.5], [230.5, 415.5], [229.5, 414.5], [230.5, 413.5], [229.5, 412.5], [228.5, 411.5], [227.5, 411.5], [226.5, 410.5], [227.5, 409.5], [227.5, 408.5], [228.5, 407.5], [227.5, 406.5], [228.5, 405.5], [229.5, 404.5], [227.5, 402.5]]}, -{"id": "tww2gi", "submitted_by": "OrangeSheepYT", "name": "Naruto Uzumaki", "description": "The 7th Hokage of Konohagakure. Main protagonist of Masashi Kishimoto's manga series Naruto.", "website": "", "subreddit": "/r/Naruto", "center": [1667.5, 1186.5], "path": [[1659.5, 1172.5], [1659.5, 1200.5], [1675.5, 1200.5], [1675.5, 1172.5]]}, +{"id": "tww2gi", "submitted_by": "OrangeSheepYT", "name": "Naruto Uzumaki", "description": "\"Believe it!\" \nThe jinchuriki of Kurama, the Nine-Tailed Fox and the Seventh Hokage of Konohagakure. Naruto is the main protagonist of Naruto, a manga series written and illustrated by Masashi Kishimoto. \nThis sprite was made by the Naruto Place Discord Server and the Anime Alliance. \nNaruto: https://discord.gg/AyZYzd8Er7 \nAnime Alliance: https://discord.gg/9U6pHMbHS4", "website": "https://discord.gg/AyZYzd8Er7", "subreddit": "", "center": [1667.5, 1186.5], "path": [[1659.5, 1172.5], [1659.5, 1200.5], [1675.5, 1200.5], [1675.5, 1172.5]]}, {"id": "tww2e1", "submitted_by": "machadoaboutanything", "name": "Sans and Papyrus", "description": "Sans and Papyrus, the Skeleton brothers from Undertale.", "website": "", "subreddit": "", "center": [1844.5, 1709.5], "path": [[1836.5, 1686.5], [1851.5, 1686.5], [1852.5, 1732.5], [1836.5, 1732.5]]}, {"id": "tww2ch", "submitted_by": "I_dont_have_a_nick", "name": "Tank Man", "description": "A reference to an unidentified Chinese man who stood in front of a column of tanks leaving Tiananmen Square in Beijing on June 5, 1989.", "website": "", "subreddit": "", "center": [883.5, 148.5], "path": [[874.5, 130.5], [874.5, 165.5], [892.5, 165.5], [892.5, 130.5], [874.5, 130.5]]}, {"id": "tww2aw", "submitted_by": "cleximissyou", "name": "Mokoko Seed", "description": "A small hidden Mokoko Seed among the Flowers.nnIt comes from the game Lost Ark which recently had its western release.nnLike in the game the Mokoko Seed is very hidden among the vegetation.", "website": "https://lostark.fandom.com/wiki/Mokoko_Seeds", "subreddit": "/r/lostarkgame", "center": [1903.5, 863.5], "path": [[1897.5, 869.5], [1897.5, 865.5], [1901.5, 863.5], [1899.5, 861.5], [1902.5, 857.5], [1905.5, 859.5], [1909.5, 857.5], [1910.5, 860.5], [1903.5, 868.5], [1899.5, 868.5]]}, @@ -2727,27 +2560,24 @@ {"id": "tww11v", "submitted_by": "MysteriousK69420", "name": "The r/Gintama art", "description": "This is the art we made for the Gintama subreddit. It includes 3 of the main characters, 1 side-character, 3 mascots.", "website": "https://reddit.com/r/Gintama", "subreddit": "/r/Gintama", "center": [1179.5, 1797.5], "path": [[1164.5, 1776.5], [1164.5, 1802.5], [1167.5, 1814.5], [1197.5, 1815.5], [1197.5, 1793.5], [1187.5, 1791.5], [1182.5, 1793.5], [1181.5, 1796.5], [1181.5, 1796.5], [1179.5, 1797.5], [1169.5, 1797.5], [1179.5, 1797.5], [1183.5, 1792.5], [1187.5, 1791.5], [1184.5, 1780.5], [1184.5, 1775.5], [1181.5, 1776.5], [1179.5, 1777.5], [1174.5, 1777.5], [1173.5, 1777.5], [1169.5, 1776.5], [1165.5, 1777.5], [1168.5, 1778.5], [1164.5, 1776.5]]}, {"id": "tww11e", "submitted_by": "TrulyGolden", "name": "Florida State University", "description": "Logo of the Florida State 'Seminoles' a University located in Tallahassee, Florida, USA.", "website": "", "subreddit": "/r/fsu", "center": [338.5, 1658.5], "path": [[325.5, 1648.5], [352.5, 1649.5], [352.5, 1667.5], [325.5, 1667.5]]}, {"id": "tww11c", "submitted_by": "yourelivingalie", "name": "FSU Logo", "description": "A logo for Florida State University located in Tallahassee, Florida.", "website": "https://fsu.edu", "subreddit": "/r/fsusports", "center": [338.5, 1658.5], "path": [[325.5, 1648.5], [325.5, 1667.5], [351.5, 1667.5], [351.5, 1648.5]]}, -{"id": "tww0yz", "submitted_by": "basicwarning333", "name": "Life", "description": "A 7tv emote, named Life, made with help of nymn and fablouspotato69.", "website": "twitch.tv/nymn", "subreddit": "/r/redditandchill", "center": [0.5, 0.5], "path": []}, {"id": "tww0vd", "submitted_by": "Sipior04", "name": "Vitruvian Man", "description": "Famous drawing and anatomy work by Leonardo da Vinci", "website": "https://en.wikipedia.org/wiki/Vitruvian_Man", "subreddit": "", "center": [831.5, 1047.5], "path": [[805.5, 1072.5], [805.5, 1044.5], [800.5, 1041.5], [799.5, 1034.5], [812.5, 1025.5], [827.5, 1021.5], [839.5, 1021.5], [852.5, 1024.5], [861.5, 1030.5], [860.5, 1035.5], [860.5, 1040.5], [859.5, 1047.5], [858.5, 1053.5], [856.5, 1060.5], [857.5, 1072.5], [805.5, 1072.5]]}, {"id": "tww0l0", "submitted_by": "casper667", "name": "Owl #2", "description": "An owl made by a group of World of Warcraft players who play boomkin (an owlbeast) plus some owl enthusiasts we picked up along the way", "website": "", "subreddit": "", "center": [515.5, 1873.5], "path": [[521.5, 1879.5], [521.5, 1867.5], [509.5, 1867.5], [509.5, 1879.5]]}, {"id": "tww0kr", "submitted_by": "scorpion24100", "name": "Smol Knight", "description": "a smol depiction of the Protagonist from Hollow Knight, Isn't he cute??", "website": "", "subreddit": "/r/HollowKnight", "center": [235.5, 382.5], "path": [[232.5, 385.5], [232.5, 383.5], [231.5, 382.5], [231.5, 380.5], [232.5, 382.5], [233.5, 378.5], [234.5, 377.5], [235.5, 378.5], [234.5, 379.5], [234.5, 380.5], [236.5, 380.5], [237.5, 379.5], [236.5, 378.5], [237.5, 378.5], [238.5, 379.5], [238.5, 381.5], [237.5, 382.5], [238.5, 383.5], [238.5, 385.5], [232.5, 385.5], [232.5, 383.5], [232.5, 383.5]]}, -{"id": "tww0kl", "submitted_by": "OrangeSheepYT", "name": "AniList logo", "description": "The AniList logo, made in collaboration with the Anime Alliance.", "website": "https://anilist.co/", "subreddit": "/r/anilist", "center": [1646.5, 1188.5], "path": [[1633.5, 1200.5], [1633.5, 1175.5], [1659.5, 1175.5], [1660.5, 1200.5], [1649.5, 1200.5]]}, +{"id": "tww0kl", "submitted_by": "matchai", "name": "AniList", "description": "A modern social cataloguing site for tracking anime and manga", "website": "https://anilist.co/", "center": [1646.5, 1190.5], "path": [[1634.5, 1200.5], [1634.5, 1193.5], [1640.5, 1177.5], [1645.5, 1177.5], [1646.5, 1178.5], [1647.5, 1177.5], [1650.5, 1177.5], [1652.5, 1179.5], [1652.5, 1190.5], [1657.5, 1190.5], [1659.5, 1192.5], [1659.5, 1200.5]]}, {"id": "tww0gk", "submitted_by": "Hero_Cerebrum", "name": "Build The Earth: Hugging blob", "description": "A common emote used in the Build The Earth communities.nBuild the Earth (BTE) is a project dedicated to creating a 1:1 scale model of Earth within the sandbox video game Minecraft. One block in Minecraft equates to roughly one meter in the real world. There are currently 7,000 builders contributing to this project.", "website": "https://buildtheearth.net", "subreddit": "/r/BuildTheEarth", "center": [1378.5, 754.5], "path": [[1391.5, 750.5], [1386.5, 744.5], [1365.5, 744.5], [1365.5, 757.5], [1366.5, 758.5], [1366.5, 765.5], [1387.5, 765.5], [1391.5, 760.5], [1391.5, 750.5]]}, -{"id": "tww0dl", "submitted_by": "The_Forgotten_King", "name": "6A6K.us", "description": "6A6K.us, an anarchy minecraft server founded in 2017 with a custom world.", "website": "6A6K.us", "subreddit": "/r/6A6K", "center": [1012.5, 1782.5], "path": [[1004.5, 1774.5], [1004.5, 1790.5], [1019.5, 1790.5], [1019.5, 1774.5]]}, +{"id": "tww0dl", "submitted_by": "The_Forgotten_King", "name": "6A6K.us", "description": "6A6K.us, an anarchy minecraft server founded in 2017 with a custom world.", "website": "https://6A6K.us", "subreddit": "/r/6A6K", "center": [1012.5, 1782.5], "path": [[1004.5, 1774.5], [1004.5, 1790.5], [1019.5, 1790.5], [1019.5, 1774.5]]}, {"id": "tww0bp", "submitted_by": "Falxo7326", "name": "FALCO", "description": "A Falco wrote this. It is cool and great.", "website": "", "subreddit": "u/Falxo7326", "center": [1009.5, 429.5], "path": [[1003.5, 428.5], [1003.5, 430.5], [1014.5, 430.5], [1014.5, 428.5]]}, -{"id": "tww0a7", "submitted_by": "I_dont_have_a_nick", "name": "Por\u00e7ay's Turkish Tea", "description": "A drawing of a standart and traditional Turkish Tea Glass. Made by r/burdurland as a tribute to Turkish Youtuber Por\u00e7ay, who has a similar name.", "website": "", "subreddit": "/r/burdurland", "center": [1049.5, 143.5], "path": [[1026.5, 121.5], [1026.5, 165.5], [1071.5, 165.5], [1071.5, 121.5], [1026.5, 121.5]]}, {"id": "tww06y", "submitted_by": "KassXWolfXTigerXFox", "name": "A Steel Ball", "description": "One of Gyro Zepelli's Steel Balls from the manga JoJo's Bizarre Adventure, Part 7: Steel Ball Run", "website": "", "subreddit": "", "center": [104.5, 901.5], "path": [[106.5, 898.5], [102.5, 898.5], [102.5, 899.5], [101.5, 899.5], [101.5, 900.5], [100.5, 900.5], [100.5, 902.5], [101.5, 902.5], [102.5, 902.5], [103.5, 903.5], [103.5, 904.5], [105.5, 904.5], [107.5, 902.5], [107.5, 899.5], [106.5, 899.5], [106.5, 898.5]]}, {"id": "tww03x", "submitted_by": "xxria", "name": "Project Sekai", "description": "The five Hatsune Miku mascots of the rhythm game Project Sekai: Colorful Stage!", "website": "", "subreddit": "/r/ProjectSekai", "center": [1122.5, 889.5], "path": [[1085.5, 880.5], [1160.5, 880.5], [1159.5, 897.5], [1085.5, 899.5]]}, {"id": "tww037", "submitted_by": "askminjae", "name": "BTE blob", "description": "A blob emoji from Build The Earth project", "website": "https://buildtheearth.net", "subreddit": "/r/BuildTheEarth", "center": [1378.5, 755.5], "path": [[1370.5, 765.5], [1366.5, 761.5], [1366.5, 758.5], [1365.5, 757.5], [1365.5, 754.5], [1366.5, 754.5], [1366.5, 749.5], [1370.5, 745.5], [1373.5, 745.5], [1374.5, 744.5], [1384.5, 744.5], [1385.5, 745.5], [1386.5, 745.5], [1389.5, 748.5], [1389.5, 749.5], [1391.5, 751.5], [1391.5, 761.5], [1389.5, 763.5], [1388.5, 763.5], [1387.5, 764.5], [1386.5, 765.5], [1370.5, 765.5]]}, -{"id": "twvzz4", "submitted_by": "machadoaboutanything", "name": "Boston Bruins", "description": "The logo of the Boston Bruins, an ice hockey team.", "website": "", "subreddit": "", "center": [469.5, 1897.5], "path": [[449.5, 1869.5], [489.5, 1869.5], [490.5, 1924.5], [449.5, 1924.5]]}, {"id": "twvzt3", "submitted_by": "IgorCykel", "name": "Ugandan flag and Pastor LUL", "description": "Ugandan flag and Pastor LUL representing the proud nation of Uganda", "website": "https://i.imgur.com/RxbVYe7.jpg", "subreddit": "", "center": [751.5, 898.5], "path": [[705.5, 889.5], [705.5, 905.5], [820.5, 905.5], [820.5, 899.5], [771.5, 899.5], [771.5, 889.5]]}, {"id": "twvzsx", "submitted_by": "jpepo", "name": "Flag of Jamaica", "description": "", "website": "https://en.wikipedia.org/wiki/Flag_of_Jamaica", "subreddit": "", "center": [1384.5, 1180.5], "path": [[1373.5, 1173.5], [1373.5, 1186.5], [1394.5, 1186.5], [1394.5, 1173.5], [1373.5, 1173.5]]}, {"id": "twvzrs", "submitted_by": "Vyse__", "name": "Mona Lisa", "description": "The beginning of the Mona Lisa a famous painting that is fullfilled by doodle, the face is here", "website": "", "subreddit": "", "center": [1533.5, 1328.5], "path": [[1517.5, 1296.5], [1550.5, 1296.5], [1550.5, 1362.5], [1516.5, 1357.5]]}, -{"id": "twvzfs", "submitted_by": "MidnightSpeeder", "name": "Jelle\u2019s Marble Runs", "description": "Logo of popular marble racing channel by Jelle Bakker created by the Marblebase.", "website": "https://youtube.com/c/JellesMarbleRuns", "subreddit": "/r/JellesMarbleRuns", "center": [1951.5, 186.5], "path": [[1945.5, 177.5], [1956.5, 177.5], [1956.5, 194.5], [1945.5, 194.5]]}, +{"id": "twvzfs", "submitted_by": "neurospex", "name": "The Marblebase", "description": "The unofficial discord server for all things Jelle! Jelle's Marble Runs is a YouTube channel based in the Netherlands, founded by Jelle Bakker. It is based around marbles, marble runs and marble races. Content on the channel includes spoofing the Olympic Games, Formula One, and other sporting events.", "website": "https://discord.gg/marbles", "subreddit": "/r/JellesMarbleRuns", "center": [1951.5, 186.5], "path": [[1942.5, 176.5], [1959.5, 176.5], [1959.5, 195.5], [1942.5, 195.5], [1942.5, 176.5], [1942.5, 176.5], [1942.5, 176.5]]}, {"id": "twvzfq", "submitted_by": "curly90478", "name": "Lucky Beast", "description": "A Lucky Beast from Kemono Friends", "website": "", "subreddit": "/r/kemonofriends", "center": [1693.5, 1543.5], "path": [[1699.5, 1553.5], [1699.5, 1536.5], [1698.5, 1534.5], [1687.5, 1534.5], [1687.5, 1552.5], [1693.5, 1553.5]]}, {"id": "twvzaw", "submitted_by": "Aeltuar", "name": "r/turtle_army2 frieze", "description": "", "website": "", "subreddit": "/r/turtle_army2", "center": [941.5, 901.5], "path": [[821.5, 896.5], [821.5, 906.5], [1071.5, 906.5], [1071.5, 898.5], [821.5, 896.5]]}, {"id": "twvz75", "submitted_by": "Monchete99", "name": "Jack Frost", "description": "A sprite of Jack Frost, one of the most well-known demons in the monster-based RPG franchise Shin Megami Tensei developed by Atlus (who uses him as mascot). He says Hee-hoo a lot.", "website": "", "subreddit": "/r/Atlus", "center": [1476.5, 296.5], "path": [[1461.5, 283.5], [1462.5, 284.5], [1465.5, 281.5], [1467.5, 282.5], [1468.5, 283.5], [1469.5, 284.5], [1469.5, 285.5], [1473.5, 284.5], [1474.5, 285.5], [1474.5, 283.5], [1475.5, 283.5], [1477.5, 281.5], [1478.5, 281.5], [1481.5, 284.5], [1482.5, 283.5], [1483.5, 284.5], [1482.5, 285.5], [1481.5, 286.5], [1478.5, 286.5], [1478.5, 285.5], [1477.5, 287.5], [1487.5, 287.5], [1488.5, 290.5], [1486.5, 292.5], [1479.5, 292.5], [1479.5, 293.5], [1476.5, 295.5], [1485.5, 295.5], [1486.5, 297.5], [1486.5, 300.5], [1476.5, 300.5], [1476.5, 301.5], [1477.5, 302.5], [1493.5, 303.5], [1494.5, 304.5], [1494.5, 308.5], [1468.5, 308.5], [1468.5, 305.5], [1466.5, 303.5], [1464.5, 303.5], [1464.5, 301.5], [1467.5, 301.5], [1467.5, 300.5], [1465.5, 298.5], [1465.5, 296.5], [1467.5, 295.5], [1465.5, 294.5], [1464.5, 293.5], [1465.5, 292.5], [1465.5, 290.5], [1466.5, 289.5], [1466.5, 287.5], [1465.5, 286.5], [1465.5, 285.5], [1463.5, 286.5], [1461.5, 286.5]]}, -{"id": "twvz56", "submitted_by": "OrangeSheepYT", "name": "Monkey D. Luffy", "description": "The man who will become the Pirate King. Main character of Eiichiro Oda's manga series One Piece.", "website": "", "subreddit": "/r/OnePiece", "center": [1625.5, 1186.5], "path": [[1616.5, 1172.5], [1616.5, 1200.5], [1633.5, 1200.5], [1633.5, 1172.5]]}, +{"id": "twvz56", "submitted_by": "OrangeSheepYT", "name": "Monkey D. Luffy", "description": "\"I Don\u2019t Wanna Conquer Anything. It's Just That The Person With The Most Freedom On The Sea Is The Pirate King.\" \nMonkey D. Luffy, the man who will become the Pirate King. He is the main protagonist of One Piece, a manga series written and illustrated by Eiichiro Oda. This sprite was made by the One Piece community and the Anime Alliance. \nOne Piece: https://discord.gg/QFNC6PxBtE \nAnime Alliance: https://discord.gg/9U6pHMbHS4", "website": "https://discord.gg/QFNC6PxBtE", "subreddit": "/r/OnePiece", "center": [1625.5, 1186.5], "path": [[1616.5, 1172.5], [1616.5, 1200.5], [1633.5, 1200.5], [1633.5, 1172.5]]}, {"id": "twvz0w", "submitted_by": "frenchtgirl", "name": "Rainworld green lizard", "description": "A green lizard from the game Rainworld by the studio Videocult. On the bottom there is also a karma flower.", "website": "", "subreddit": "", "center": [314.5, 1459.5], "path": [[295.5, 1444.5], [295.5, 1484.5], [306.5, 1484.5], [306.5, 1474.5], [306.5, 1472.5], [314.5, 1465.5], [319.5, 1465.5], [326.5, 1463.5], [333.5, 1463.5], [340.5, 1469.5], [340.5, 1445.5]]}, {"id": 227, "name": "Lunaria Ayaren (Twitch)", "description": "Paw logo symbolizing the Chilean Vtuber/streamer Lunaria Ayaren, also known as Auntie Patas.", "website": "https://www.twitch.tv/lunaria", "subreddit": "", "center": [1737.5, 1979.5], "path": [[1736.5, 1974.5], [1739.5, 1974.5], [1740.5, 1975.5], [1740.5, 1976.5], [1742.5, 1976.5], [1742.5, 1980.5], [1741.5, 1980.5], [1741.5, 1982.5], [1740.5, 1983.5], [1739.5, 1983.5], [1738.5, 1982.5], [1737.5, 1982.5], [1736.5, 1983.5], [1735.5, 1983.5], [1734.5, 1982.5], [1734.5, 1981.5], [1733.5, 1980.5], [1733.5, 1976.5], [1735.5, 1976.5], [1736.5, 1974.5]]}, {"id": "twvys1", "submitted_by": "Sonianjeriku", "name": "Haruka Karibou", "description": "A indie Vtuber", "website": "", "subreddit": "/r/VirtualYoutubers", "center": [652.5, 1084.5], "path": [[667.5, 1069.5], [637.5, 1069.5], [638.5, 1098.5], [667.5, 1099.5]]}, @@ -2758,7 +2588,7 @@ {"id": "twvyci", "submitted_by": "Claret17", "name": "Streamer Awards", "description": "Trophy from The Streamer Awards organised and hosted by Twitch streamer QTCinderella alongside Maya", "website": "https://twitch.tv/qtcinderella", "subreddit": "", "center": [635.5, 1110.5], "path": [[624.5, 1121.5], [624.5, 1099.5], [645.5, 1099.5], [645.5, 1121.5]]}, {"id": "twvybo", "submitted_by": "fluxwerk", "name": "Matko a Kubko", "description": "Matko a Kubko (Mathew and Jacob) are cartoon characters from popular Slovak kids series Pasli ovce valasi (1972).", "website": "https://sk.wikipedia.org/wiki/P%C3%A1sli_ovce_valasi", "subreddit": "/r/Slovakia", "center": [1342.5, 173.5], "path": [[1333.5, 163.5], [1327.5, 166.5], [1327.5, 175.5], [1333.5, 181.5], [1333.5, 188.5], [1346.5, 188.5], [1347.5, 182.5], [1356.5, 182.5], [1352.5, 174.5], [1360.5, 169.5], [1360.5, 162.5]]}, {"id": "twvya7", "submitted_by": "Feking98", "name": "SSRB", "description": "Mascot representation of the fans of Hololive VTubers Shishiro Botan. Cute, squishy and perfect for throwing at a group of enemy. Poi~", "website": "https://www.youtube.com/channel/UCUKD-uaobj9jiqB-VXt71mA", "subreddit": "/r/hololive", "center": [1450.5, 838.5], "path": [[1403.5, 936.5], [1419.5, 936.5], [1419.5, 948.5], [1416.5, 951.5], [1403.5, 951.5], [1403.5, 983.5], [1396.5, 982.5], [1391.5, 982.5], [1387.5, 983.5], [1387.5, 990.5], [1390.5, 995.5], [1398.5, 995.5], [1401.5, 991.5], [1401.5, 983.5], [1403.5, 983.5]]}, -{"id": "twvy2t", "submitted_by": "mronbekend", "name": "Ugandan flag", "description": "Made by the Forsen Twitch community. The inspiration for the Ugandan flag originates from the movies made by the Ugandan film studio, Wakaliwood.", "website": "twitch.tv/forsen", "subreddit": "/r/forsen", "center": [749.5, 898.5], "path": [[705.5, 889.5], [771.5, 889.5], [771.5, 899.5], [820.5, 899.5], [820.5, 905.5], [769.5, 905.5], [769.5, 902.5], [770.5, 902.5], [770.5, 893.5], [769.5, 893.5], [769.5, 890.5], [768.5, 890.5], [768.5, 889.5], [761.5, 889.5], [761.5, 890.5], [760.5, 890.5], [760.5, 891.5], [759.5, 891.5], [759.5, 892.5], [758.5, 892.5], [758.5, 903.5], [759.5, 903.5], [759.5, 904.5], [760.5, 904.5], [760.5, 905.5], [705.5, 905.5]]}, +{"id": "twvy2t", "submitted_by": "mronbekend", "name": "Ugandan flag", "description": "Made by the Forsen Twitch community. The inspiration for the Ugandan flag originates from the movies made by the Ugandan film studio, Wakaliwood.", "website": "https://twitch.tv/forsen", "subreddit": "/r/forsen", "center": [749.5, 898.5], "path": [[705.5, 889.5], [771.5, 889.5], [771.5, 899.5], [820.5, 899.5], [820.5, 905.5], [769.5, 905.5], [769.5, 902.5], [770.5, 902.5], [770.5, 893.5], [769.5, 893.5], [769.5, 890.5], [768.5, 890.5], [768.5, 889.5], [761.5, 889.5], [761.5, 890.5], [760.5, 890.5], [760.5, 891.5], [759.5, 891.5], [759.5, 892.5], [758.5, 892.5], [758.5, 903.5], [759.5, 903.5], [759.5, 904.5], [760.5, 904.5], [760.5, 905.5], [705.5, 905.5]]}, {"id": "twvy1v", "submitted_by": "xxria", "name": "Bingus", "description": "Hairless sphynx cat featured in a viral video of him being pet by his owner", "website": "", "subreddit": "", "center": [1204.5, 1050.5], "path": [[1196.5, 1039.5], [1192.5, 1038.5], [1195.5, 1043.5], [1196.5, 1052.5], [1195.5, 1054.5], [1194.5, 1062.5], [1212.5, 1061.5], [1212.5, 1053.5], [1214.5, 1047.5], [1214.5, 1042.5], [1214.5, 1037.5], [1210.5, 1039.5], [1203.5, 1038.5], [1198.5, 1040.5]]}, {"id": "twvxwa", "submitted_by": "Zendany", "name": "Floch Forster", "description": "Godch", "website": "", "subreddit": "", "center": [731.5, 1885.5], "path": [[717.5, 1863.5], [746.5, 1863.5], [746.5, 1907.5], [717.5, 1908.5], [717.5, 1908.5], [716.5, 1908.5]]}, {"id": "twvxrc", "submitted_by": "Vaderchad", "name": "Kansas City Chiefs", "description": "Professional American Football team based in Kansas City, Missouri.", "website": "", "subreddit": "", "center": [1974.5, 430.5], "path": [[1949.5, 423.5], [1999.5, 422.5], [1999.5, 438.5], [1949.5, 438.5], [1949.5, 431.5]]}, @@ -2773,7 +2603,6 @@ {"id": "twvwwb", "submitted_by": "Dry-Acanthopterygii9", "name": "Egoland Poster", "description": "Egoland is a hispanic Twitch series wich takes place in the game Rust. There was 2 editions, first aired in 2021, and the second was in early 2022. Both feautured almost 100 different streamers from Spain and Latam, wich have to fight in groups to survive Alexby11 is its main creator, and community hopes the return of the series and its controversies in 2023", "website": "", "subreddit": "", "center": [1941.5, 1412.5], "path": [[1908.5, 1395.5], [1908.5, 1429.5], [1974.5, 1429.5], [1974.5, 1395.5], [1943.5, 1395.5], [1924.5, 1395.5], [1909.5, 1395.5]]}, {"id": "twvwu2", "submitted_by": "DualPlay-Mapping", "name": "Cebulak", "description": "Cebulacy is a polish mapping group of cebulaks.", "website": "https://discord.gg/sShSAU9DJf", "subreddit": "", "center": [1163.5, 1295.5], "path": [[1149.5, 1287.5], [1165.5, 1287.5], [1165.5, 1288.5], [1178.5, 1288.5], [1178.5, 1299.5], [1162.5, 1299.5], [1162.5, 1309.5], [1161.5, 1308.5], [1160.5, 1307.5], [1157.5, 1307.5], [1156.5, 1306.5], [1155.5, 1305.5], [1154.5, 1304.5], [1154.5, 1297.5], [1149.5, 1297.5], [1149.5, 1287.5]]}, {"id": "twvwtr", "submitted_by": "Sonianjeriku", "name": "Zentreya", "description": "A dragon vtuber from Vshojo in banana suit.", "website": "", "subreddit": "/r/Zentreya", "center": [732.5, 1086.5], "path": [[744.5, 1074.5], [744.5, 1074.5], [720.5, 1073.5], [720.5, 1098.5], [744.5, 1098.5]]}, -{"id": "twvwqf", "submitted_by": "anythinga", "name": "Foxhole startbar icon", "description": "This is the icon of the massively multiplayer online war game Foxhole", "website": "", "subreddit": "/r/foxholegame", "center": [0.5, 0.5], "path": []}, {"id": "twvwoz", "submitted_by": "Hopeful-Start-5216", "name": "Also a tribute", "description": "This art is also a tribute to IronMouse, she helped the Hololive and the vtuber community mutiple times against streamers attacks.", "website": "", "subreddit": "", "center": [1427.5, 979.5], "path": [[1403.5, 959.5], [1451.5, 959.5], [1451.5, 962.5], [1452.5, 963.5], [1452.5, 965.5], [1451.5, 966.5], [1451.5, 999.5], [1405.5, 999.5], [1405.5, 996.5], [1403.5, 996.5], [1403.5, 959.5]]}, {"id": "twvwor", "submitted_by": "ExDe707", "name": "r/redstone", "description": "A subreddit dedicated around popular game Minecraft's Redstone mechanic, featuring small and large contraptions", "website": "", "subreddit": "/r/redstone", "center": [1556.5, 1657.5], "path": [[1533.5, 1646.5], [1533.5, 1667.5], [1579.5, 1667.5], [1579.5, 1646.5], [1533.5, 1646.5]]}, {"id": "twvwmp", "submitted_by": "Difficult_Score8122", "name": "DemiVeemon", "description": "DemiVeemon is a baby dragon Digimon and the partner of Davis in Digimon Adventure 02", "website": "", "subreddit": "/r/digimon", "center": [518.5, 1516.5], "path": [[527.5, 1508.5], [526.5, 1519.5], [521.5, 1525.5], [512.5, 1525.5], [511.5, 1507.5], [518.5, 1507.5], [526.5, 1509.5], [526.5, 1509.5], [526.5, 1509.5]]}, @@ -2784,40 +2613,38 @@ {"id": "twvwdo", "submitted_by": "cyrilioush", "name": "RTS / Radio T\u00e9l\u00e9vision Suisse", "description": "RTS is the national swiss TV in the french talking part of Switzerland.", "website": "https://www.rts.ch/", "subreddit": "", "center": [1182.5, 873.5], "path": [[1175.5, 870.5], [1188.5, 870.5], [1188.5, 876.5], [1175.5, 876.5], [1175.5, 870.5]]}, {"id": "twvw5s", "submitted_by": "thelolo_007", "name": "Welcome to Night Vale", "description": "Welcome to Night Vale is a podcast presented as a radio show for the fictional town of Night Vale, reporting on the strange events that occur within it.", "website": "", "subreddit": "/r/nightvale", "center": [1785.5, 421.5], "path": [[1776.5, 433.5], [1783.5, 433.5], [1783.5, 432.5], [1804.5, 432.5], [1804.5, 422.5], [1801.5, 422.5], [1798.5, 419.5], [1798.5, 414.5], [1796.5, 414.5], [1794.5, 413.5], [1792.5, 413.5], [1791.5, 412.5], [1789.5, 408.5], [1768.5, 408.5], [1768.5, 420.5], [1772.5, 420.5], [1772.5, 421.5], [1770.5, 421.5], [1771.5, 424.5], [1773.5, 424.5], [1776.5, 427.5]]}, {"id": "twvw0w", "submitted_by": "demure_limes", "name": "Lilith", "description": "Demon world's charismatic and wise queen. A character from the game Guardian Tales.", "website": "https://guardiantales.com/", "subreddit": "/r/GuardianTales", "center": [1750.5, 1735.5], "path": [[1724.5, 1733.5], [1724.5, 1713.5], [1724.5, 1713.5], [1771.5, 1713.5], [1771.5, 1760.5], [1737.5, 1760.5], [1737.5, 1747.5], [1736.5, 1747.5], [1736.5, 1746.5], [1735.5, 1746.5], [1735.5, 1740.5], [1735.5, 1739.5], [1734.5, 1739.5], [1734.5, 1736.5], [1734.5, 1735.5], [1733.5, 1735.5], [1733.5, 1734.5], [1732.5, 1734.5], [1731.5, 1734.5], [1731.5, 1733.5], [1724.5, 1733.5]]}, -{"id": "twvw0h", "submitted_by": "Pahiz", "name": "David Pastr\u0148\u00e1k (88)", "description": "A bowl of pasta symbolizing the player (88) David Pastr\u0148\u00e1k from Boston Bruins.", "website": "", "subreddit": "", "center": [485.5, 1920.5], "path": [[481.5, 1916.5], [489.5, 1916.5], [489.5, 1924.5], [481.5, 1924.5]]}, +{"id": "twvw0h", "submitted_by": "Pahiz", "name": "David Pastr\u0148\u00e1k (88)", "description": "A bowl of pasta symbolizing the player (88) David Pastr\u0148\u00e1k from Boston Bruins.", "website": "https://en.wikipedia.org/wiki/David_Pastr%C5%88%C3%A1k", "subreddit": "/r/BostonBruins", "center": [485.5, 1920.5], "path": [[481.5, 1916.5], [489.5, 1916.5], [489.5, 1924.5], [481.5, 1924.5]]}, {"id": "twvvzu", "submitted_by": "denis4242", "name": "Tucano", "description": "Os tucanos s\u00e3o aves que correspondem \u00e0 fam\u00edlia Ramphastidae, vivem nas florestas tropicais da Am\u00e9rica Central e Am\u00e9rica do Sul.", "website": "https://pt.wikipedia.org/wiki/Tucano", "subreddit": "", "center": [1011.5, 609.5], "path": [[1015.5, 619.5], [1017.5, 617.5], [1019.5, 612.5], [1018.5, 601.5], [1001.5, 601.5], [998.5, 604.5], [998.5, 607.5], [1009.5, 607.5], [1010.5, 613.5], [1005.5, 616.5], [1006.5, 619.5], [1011.5, 619.5], [1015.5, 619.5], [1015.5, 619.5]]}, -{"id": "twvvxn", "submitted_by": "TumoricER", "name": "MisterJagger's Green Pixel", "description": "During his stream in April 4th, Mister Jagger (JaggerPrincesa), a Spanish streamer with a chaotic nature, asked his audience to keep the pixel at 1148,1162 green until the end of r/place. That was his only request and legacy for the event, fitting his chaotic content.", "website": "https://www.twitch.tv/jaggerprincesa", "subreddit": "", "center": [0.5, 0.5], "path": [[1148.5, 1160.5], [1148.5, 1162.5], [1148.5, 1160.5]]}, +{"id": "twvvxn", "submitted_by": "TumoricER", "name": "MisterJagger's Green Pixel", "description": "During his stream in April 4th, Mister Jagger (JaggerPrincesa), a Spanish streamer with a chaotic nature, asked his audience to keep the pixel at 1148,1162 green until the end of r/place. That was his only request and legacy for the event, fitting his chaotic content.", "website": "https://www.twitch.tv/jaggerprincesa", "subreddit": "", "center": [1148.5, 1162.5], "path": [[1147.5, 1161.5], [1147.5, 1163.5], [1149.5, 1163.5], [1149.5, 1161.5]]}, {"id": "twvvua", "submitted_by": "222alon", "name": "Mega Man", "description": "Mega Man, known as Rockman (Japanese: \u30ed\u30c3\u30af\u30de\u30f3, Hepburn: Rokkuman) in Japan, is the title character and the protagonist of the Mega Man series by Capcom. He was created by Akira Kitamura for the first Mega Man game released in 1987, with artist Keiji Inafune providing detailed character artwork based on Kitamura's pixel art design.", "website": "", "subreddit": "/r/Megaman", "center": [1528.5, 459.5], "path": [[1517.5, 448.5], [1517.5, 472.5], [1534.5, 448.5], [1534.5, 448.5], [1517.5, 448.5], [1517.5, 472.5], [1535.5, 472.5], [1536.5, 461.5], [1561.5, 459.5], [1560.5, 456.5], [1534.5, 455.5], [1535.5, 449.5], [1535.5, 448.5], [1534.5, 447.5], [1533.5, 447.5], [1533.5, 447.5]]}, {"id": "twvvpu", "submitted_by": "Topsanopsa", "name": "The Quintessential Quintuplets", "description": "Small pixel arts of Ichika, Nino, Miku, Yotsuba and Itsuki on the right and on the left is Miku\u00b4s unofficial logo with Nino peeking from behind.", "website": "https://myanimelist.net/anime/38101/5-toubun_no_Hanayome", "subreddit": "/r/5ToubunNoHanayome", "center": [23.5, 1002.5], "path": [[2.5, 1012.5], [2.5, 1001.5], [5.5, 1001.5], [14.5, 994.5], [32.5, 994.5], [32.5, 993.5], [48.5, 993.5], [48.5, 992.5], [50.5, 992.5], [50.5, 993.5], [53.5, 993.5], [54.5, 993.5], [54.5, 992.5], [54.5, 993.5], [56.5, 993.5], [56.5, 998.5], [32.5, 998.5], [32.5, 1012.5], [11.5, 1012.5]]}, {"id": "twvvjw", "submitted_by": "B1LLZFAN", "name": "r/716place", "description": "A zone dedicated to Buffalo New York. r/buffalobills decided to not work with us so we made our own area", "website": "", "subreddit": "/r/716place", "center": [1351.5, 557.5], "path": [[1322.5, 569.5], [1389.5, 569.5], [1389.5, 561.5], [1382.5, 561.5], [1365.5, 543.5], [1322.5, 543.5], [1322.5, 569.5]]}, {"id": "twvvcc", "submitted_by": "machadoaboutanything", "name": "Plankton and Mr. Krabs", "description": "The characters Plankton and Mr. Krabs from the Nickelodeon show Spongebob Squarepants. Also depicted is the Krabby Patty secret formula and a Krabby Patty.", "website": "", "subreddit": "", "center": [1563.5, 1356.5], "path": [[1573.5, 1340.5], [1574.5, 1371.5], [1553.5, 1371.5], [1553.5, 1340.5]]}, {"id": "twvvbk", "submitted_by": "TheOnlyUmbrilla", "name": "SSRB's", "description": "The exploding little bomb-cat mascots of Shishiro Botan of hololive 5th Gen. Be careful about a chain explosion. Poi!", "website": "https://www.youtube.com/channel/UCUKD-uaobj9jiqB-VXt71mA", "subreddit": "/r/holoilve", "center": [1773.5, -14.5], "path": [[1403.5, 950.5], [1403.5, 937.5], [1419.5, 937.5], [1418.5, 948.5], [1416.5, 951.5], [1404.5, 951.5], [1400.5, 983.5], [1396.5, 979.5], [1390.5, 979.5], [1387.5, 983.5], [1387.5, 992.5], [1390.5, 996.5], [1397.5, 996.5], [1401.5, 992.5], [1401.5, 983.5], [1401.5, 981.5]]}, -{"id": "twvv7o", "submitted_by": "Damn_Dynamo", "name": "En svensk tiger", "description": "A symbol from ww2, encouraging secrecy and preventing espionage", "website": "https://www.beredskapsmuseet.com/en-svensk-tiger", "subreddit": "/r/sweden", "center": [639.5, 80.5], "path": [[616.5, 71.5], [616.5, 72.5], [617.5, 72.5], [617.5, 73.5], [617.5, 74.5], [616.5, 74.5], [616.5, 75.5], [615.5, 75.5], [615.5, 78.5], [616.5, 78.5], [616.5, 79.5], [617.5, 79.5], [617.5, 80.5], [616.5, 81.5], [617.5, 82.5], [620.5, 83.5], [623.5, 84.5], [626.5, 83.5], [626.5, 84.5], [625.5, 85.5], [624.5, 86.5], [623.5, 86.5], [622.5, 87.5], [621.5, 87.5], [620.5, 87.5], [619.5, 88.5], [618.5, 88.5], [617.5, 89.5], [616.5, 90.5], [616.5, 91.5], [622.5, 91.5], [623.5, 90.5], [624.5, 89.5], [625.5, 89.5], [626.5, 88.5], [627.5, 87.5], [628.5, 87.5], [629.5, 86.5], [630.5, 85.5], [631.5, 84.5], [632.5, 84.5], [633.5, 84.5], [633.5, 85.5], [634.5, 86.5], [635.5, 87.5], [635.5, 89.5], [634.5, 90.5], [634.5, 91.5], [639.5, 91.5], [639.5, 86.5], [638.5, 85.5], [637.5, 84.5], [637.5, 83.5], [647.5, 83.5], [647.5, 87.5], [646.5, 87.5], [645.5, 88.5], [643.5, 88.5], [643.5, 89.5], [642.5, 89.5], [642.5, 91.5], [647.5, 91.5], [649.5, 90.5], [650.5, 89.5], [650.5, 88.5], [651.5, 87.5], [652.5, 86.5], [652.5, 84.5], [654.5, 84.5], [655.5, 85.5], [656.5, 86.5], [656.5, 88.5], [655.5, 89.5], [654.5, 90.5], [655.5, 91.5], [659.5, 91.5], [660.5, 90.5], [661.5, 89.5], [661.5, 88.5], [660.5, 87.5], [660.5, 85.5], [659.5, 84.5], [659.5, 83.5], [658.5, 82.5], [658.5, 81.5], [659.5, 80.5], [660.5, 81.5], [661.5, 82.5], [662.5, 83.5], [663.5, 84.5], [664.5, 85.5], [665.5, 86.5], [669.5, 86.5], [670.5, 85.5], [668.5, 83.5], [667.5, 84.5], [666.5, 84.5], [665.5, 83.5], [664.5, 82.5], [663.5, 81.5], [662.5, 80.5], [661.5, 79.5], [661.5, 76.5], [660.5, 75.5], [660.5, 74.5], [659.5, 73.5], [658.5, 72.5], [628.5, 72.5], [628.5, 71.5], [627.5, 70.5], [625.5, 70.5], [624.5, 71.5], [620.5, 71.5], [619.5, 70.5], [617.5, 70.5]]}, +{"id": "twvv7o", "submitted_by": "Damn_Dynamo", "name": "En svensk tiger", "description": "A symbol from World War II, encouraging secrecy and preventing espionage.", "website": "https://www.beredskapsmuseet.com/en-svensk-tiger", "subreddit": "/r/sweden", "center": [639.5, 80.5], "path": [[616.5, 71.5], [616.5, 72.5], [617.5, 72.5], [617.5, 73.5], [617.5, 74.5], [616.5, 74.5], [616.5, 75.5], [615.5, 75.5], [615.5, 78.5], [616.5, 78.5], [616.5, 79.5], [617.5, 79.5], [617.5, 80.5], [616.5, 81.5], [617.5, 82.5], [620.5, 83.5], [623.5, 84.5], [626.5, 83.5], [626.5, 84.5], [625.5, 85.5], [624.5, 86.5], [623.5, 86.5], [622.5, 87.5], [621.5, 87.5], [620.5, 87.5], [619.5, 88.5], [618.5, 88.5], [617.5, 89.5], [616.5, 90.5], [616.5, 91.5], [622.5, 91.5], [623.5, 90.5], [624.5, 89.5], [625.5, 89.5], [626.5, 88.5], [627.5, 87.5], [628.5, 87.5], [629.5, 86.5], [630.5, 85.5], [631.5, 84.5], [632.5, 84.5], [633.5, 84.5], [633.5, 85.5], [634.5, 86.5], [635.5, 87.5], [635.5, 89.5], [634.5, 90.5], [634.5, 91.5], [639.5, 91.5], [639.5, 86.5], [638.5, 85.5], [637.5, 84.5], [637.5, 83.5], [647.5, 83.5], [647.5, 87.5], [646.5, 87.5], [645.5, 88.5], [643.5, 88.5], [643.5, 89.5], [642.5, 89.5], [642.5, 91.5], [647.5, 91.5], [649.5, 90.5], [650.5, 89.5], [650.5, 88.5], [651.5, 87.5], [652.5, 86.5], [652.5, 84.5], [654.5, 84.5], [655.5, 85.5], [656.5, 86.5], [656.5, 88.5], [655.5, 89.5], [654.5, 90.5], [655.5, 91.5], [659.5, 91.5], [660.5, 90.5], [661.5, 89.5], [661.5, 88.5], [660.5, 87.5], [660.5, 85.5], [659.5, 84.5], [659.5, 83.5], [658.5, 82.5], [658.5, 81.5], [659.5, 80.5], [660.5, 81.5], [661.5, 82.5], [662.5, 83.5], [663.5, 84.5], [664.5, 85.5], [665.5, 86.5], [669.5, 86.5], [670.5, 85.5], [668.5, 83.5], [667.5, 84.5], [666.5, 84.5], [665.5, 83.5], [664.5, 82.5], [663.5, 81.5], [662.5, 80.5], [661.5, 79.5], [661.5, 76.5], [660.5, 75.5], [660.5, 74.5], [659.5, 73.5], [658.5, 72.5], [628.5, 72.5], [628.5, 71.5], [627.5, 70.5], [625.5, 70.5], [624.5, 71.5], [620.5, 71.5], [619.5, 70.5], [617.5, 70.5]]}, {"id": "twvv4a", "submitted_by": "jpepo", "name": "Flag of Iraq", "description": "", "website": "https://en.wikipedia.org/wiki/Flag_of_Iraq", "subreddit": "", "center": [560.5, 1353.5], "path": [[530.5, 1340.5], [530.5, 1366.5], [589.5, 1366.5], [589.5, 1340.5], [530.5, 1340.5]]}, {"id": "twvv0y", "submitted_by": "Karmingruen", "name": "Among Us Morning Lobby", "description": "Selection of players from the Twitch Among Us Morning Lobby/Crewfu. From left to right: Wolfabelle, Dakotaz, itsHafu, SteveSuptic, DumbDog, 5uppp", "website": "", "subreddit": "", "center": [1820.5, 1374.5], "path": [[1835.5, 1379.5], [1803.5, 1379.5], [1803.5, 1369.5], [1836.5, 1369.5], [1836.5, 1379.5]]}, -{"id": "twvuzw", "submitted_by": "GreatWizard88", "name": "Nuclear plant", "description": "Nuclear power is the largest source of electricity in France.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "twvuzn", "submitted_by": "Pahiz", "name": "Brad Marchand (63) Rat", "description": "A rat symbolizing the Boston Bruins player (63) Brad Marchand, often referred to as the 'rat' for his antics on ice", "website": "", "subreddit": "", "center": [455.5, 1920.5], "path": [[449.5, 1915.5], [460.5, 1915.5], [460.5, 1924.5], [449.5, 1924.5]]}, +{"id": "twvuzn", "submitted_by": "Pahiz", "name": "Brad Marchand (63) Rat", "description": "A rat symbolizing the Boston Bruins player (63) Brad Marchand, often referred to as the 'rat' for his antics on ice.", "website": "https://en.wikipedia.org/wiki/Brad_Marchand", "subreddit": "/r/BostonBruins", "center": [455.5, 1920.5], "path": [[449.5, 1915.5], [460.5, 1915.5], [460.5, 1924.5], [449.5, 1924.5]]}, {"id": "twvuzm", "submitted_by": "soopimus_", "name": "Steven Suptic (COTC Rat)", "description": "Steven Suptic is a full time variety Twitch streamer. He was known for playing Among Us in the morning lobbies every day, which is where he got the name, rat, from. He also had a bit for every new player in the lobby to learn about his COTC (a rare disease that affects less than 5% of the population) just to end by telling them it's corn on the cob. He also releases music as a hobby under the name 'SUGR?' which we attempted to write under the portrait.", "website": "https://www.twitch.tv/stevesuptic", "subreddit": "/r/stevensuptic", "center": [1275.5, 1355.5], "path": [[1265.5, 1343.5], [1265.5, 1366.5], [1286.5, 1366.5], [1286.5, 1343.5]]}, -{"id": "twvuxg", "submitted_by": "xLittleRobby", "name": "Birb", "description": "The Birb is a twitch emote of the german streamer Jan alias RvNxSoul.", "website": "twitch.tv/rvnxsoul", "subreddit": "/r/rvnxsoul", "center": [740.5, 650.5], "path": [[742.5, 648.5], [739.5, 648.5], [738.5, 649.5], [737.5, 649.5], [737.5, 649.5], [737.5, 648.5], [737.5, 651.5], [738.5, 653.5], [741.5, 652.5], [743.5, 653.5], [743.5, 653.5], [743.5, 649.5], [743.5, 649.5], [743.5, 648.5], [744.5, 652.5]]}, +{"id": "twvuxg", "submitted_by": "xLittleRobby", "name": "Birb", "description": "The Birb is a twitch emote of the german streamer Jan alias RvNxSoul.", "website": "https://twitch.tv/rvnxsoul", "subreddit": "/r/rvnxsoul", "center": [740.5, 650.5], "path": [[742.5, 648.5], [739.5, 648.5], [738.5, 649.5], [737.5, 649.5], [737.5, 649.5], [737.5, 648.5], [737.5, 651.5], [738.5, 653.5], [741.5, 652.5], [743.5, 653.5], [743.5, 653.5], [743.5, 649.5], [743.5, 649.5], [743.5, 648.5], [744.5, 652.5]]}, {"id": "twvurs", "submitted_by": "Alarming_Set2416", "name": "Boulevard of broken memes", "description": "The discord logo for the server Boulevard of broken memes, contributed by most of it's members", "website": "", "subreddit": "", "center": [50.5, 1261.5], "path": [[46.5, 1256.5], [54.5, 1256.5], [54.5, 1265.5], [46.5, 1265.5]]}, {"id": "twvur2", "submitted_by": "daKoabi", "name": "Kenny", "description": "This is Kenny from South Park. Luckily he has not been killed yet.", "website": "", "subreddit": "", "center": [491.5, 1683.5], "path": [[490.5, 1676.5], [490.5, 1681.5], [481.5, 1681.5], [481.5, 1688.5], [499.5, 1688.5], [499.5, 1675.5], [490.5, 1675.5], [490.5, 1676.5], [491.5, 1676.5], [490.5, 1675.5], [491.5, 1676.5]]}, {"id": "twvunw", "submitted_by": "fluxwerk", "name": "Dedusko Vecernicek", "description": "Dedusko Vecernicek (Grandpa Little bedtime story) is a character from Slovak television that announces bedtime cartoons.", "website": "https://en.wikipedia.org/wiki/Ve%C4%8Dern%C3%AD%C4%8Dek", "subreddit": "/r/Slovakia", "center": [1409.5, 199.5], "path": [[1403.5, 177.5], [1394.5, 186.5], [1396.5, 201.5], [1389.5, 209.5], [1398.5, 216.5], [1427.5, 217.5], [1422.5, 209.5], [1427.5, 194.5], [1422.5, 191.5], [1415.5, 179.5], [1408.5, 177.5], [1406.5, 177.5], [1406.5, 177.5]]}, {"id": "twvum8", "submitted_by": "samgg007", "name": "Chibi Inui Toko (\u620c\u4ea5\u3068\u3053)", "description": "A female Japanese Virtual YouTuber affiliated with NIJISANJI", "website": "https://www.youtube.com/channel/UCXRlIK3Cw_TJIQC5kSJJQMg", "subreddit": "/r/Nijisanji", "center": [1461.5, 1097.5], "path": [[1456.5, 1092.5], [1466.5, 1092.5], [1466.5, 1102.5], [1455.5, 1103.5]]}, {"id": "twvue0", "submitted_by": "dulcignote", "name": "Turkish tea", "description": "Turkish tea served in the traditional way", "website": "", "subreddit": "/r/turkey", "center": [1049.5, 143.5], "path": [[1026.5, 121.5], [1071.5, 121.5], [1071.5, 165.5], [1026.5, 165.5]]}, -{"id": "twvtyh", "submitted_by": "Pahiz", "name": "Boston Bruins", "description": "Logo of the Boston based 'Boston Bruins' NHL hockey team", "website": "https://www.nhl.com/bruins", "subreddit": "/r/BostonBruins", "center": [470.5, 1896.5], "path": [[449.5, 1868.5], [490.5, 1868.5], [490.5, 1924.5], [449.5, 1924.5]]}, +{"id": "twvtyh", "submitted_by": "Pahiz", "name": "Boston Bruins", "description": "Logo of the Boston-based 'Boston Bruins' NHL hockey team.", "website": "https://www.nhl.com/bruins", "subreddit": "/r/BostonBruins", "center": [470.5, 1896.5], "path": [[449.5, 1868.5], [490.5, 1868.5], [490.5, 1924.5], [449.5, 1924.5]]}, {"id": "twvtyg", "submitted_by": "SporekidX", "name": "La bande \u00e0 Picsou", "description": "A french group of friends represented by a purple dice.", "website": "", "subreddit": "", "center": [677.5, 795.5], "path": [[676.5, 794.5], [678.5, 794.5], [678.5, 796.5], [676.5, 796.5], [676.5, 794.5]]}, {"id": "twvtiw", "submitted_by": "8Lith8", "name": "Ugandan Flag and Pastor Lul", "description": "The Ugandan flag with Pastor Lul on it, Pastor Lul was an Ugandan part of Talking Bibles.nIf Forsen reads this chat von.", "website": "", "subreddit": "/r/forsen", "center": [750.5, 898.5], "path": [[706.5, 890.5], [706.5, 904.5], [819.5, 904.5], [819.5, 899.5], [771.5, 899.5], [771.5, 889.5]]}, -{"id": "twvthf", "submitted_by": "machadoaboutanything", "name": "1337", "description": "The number 1337, which is the word Leet in Leet.", "website": "", "subreddit": "", "center": [1641.5, 774.5], "path": [[1626.5, 767.5], [1656.5, 767.5], [1656.5, 781.5], [1626.5, 781.5]]}, {"id": "twvtgb", "submitted_by": "SparkleWave", "name": "PEACE (BARI\u015e) SIGN", "description": "[BARI\u015e] means [PEACE] in Turkish. This was the background for Bar\u0131\u015f Man\u00e7o, made by the same Turkish people, later got more art inside as time went on, and the creations came together and lived in peace.", "website": "https://www.reddit.com/r/Turkey/", "subreddit": "/r/Turkey", "center": [812.5, 1808.5], "path": [[762.5, 1863.5], [762.5, 1875.5], [755.5, 1872.5], [754.5, 1870.5], [751.5, 1866.5], [750.5, 1863.5], [735.5, 1845.5], [734.5, 1830.5], [745.5, 1827.5], [772.5, 1812.5], [787.5, 1799.5], [788.5, 1757.5], [763.5, 1756.5], [763.5, 1767.5], [760.5, 1765.5], [753.5, 1772.5], [748.5, 1768.5], [747.5, 1762.5], [770.5, 1750.5], [785.5, 1748.5], [786.5, 1750.5], [773.5, 1750.5], [771.5, 1752.5], [772.5, 1756.5], [794.5, 1756.5], [795.5, 1756.5], [795.5, 1749.5], [820.5, 1749.5], [830.5, 1757.5], [830.5, 1761.5], [841.5, 1761.5], [848.5, 1766.5], [855.5, 1776.5], [862.5, 1787.5], [869.5, 1807.5], [867.5, 1820.5], [868.5, 1831.5], [860.5, 1849.5], [842.5, 1871.5], [837.5, 1874.5], [834.5, 1848.5], [823.5, 1836.5], [805.5, 1829.5], [791.5, 1830.5], [776.5, 1832.5], [766.5, 1847.5]]}, {"id": "twvtf9", "submitted_by": "Carks32", "name": "Venezuela flag", "description": "Venezuelan flag with typical venezuelan food, the national tree and the Salto Angel, on the of 7 wonders of the world", "website": "", "subreddit": "/r/vzla", "center": [1242.5, 789.5], "path": [[1201.5, 775.5], [1281.5, 774.5], [1281.5, 805.5], [1202.5, 804.5], [1201.5, 791.5], [1201.5, 775.5]]}, {"id": "twvtcn", "submitted_by": "UfXpri", "name": "codemiko", "description": "a virtual streamer how uses 3d avatar with tracking device. she is technician", "website": "https://www.twitch.tv/codemiko", "subreddit": "/r/CodeMiko", "center": [397.5, 1439.5], "path": [[370.5, 1418.5], [370.5, 1459.5], [424.5, 1459.5], [424.5, 1419.5]]}, {"id": "twvta9", "submitted_by": "chixki_", "name": "Greggs", "description": "A British fast food bakery shop. Best known for its Sausage Rolls. Many Brits consider this an essential part of the nation.", "website": "https://www.greggs.co.uk/", "subreddit": "/r/greggs", "center": [727.5, 479.5], "path": [[701.5, 476.5], [701.5, 482.5], [753.5, 482.5], [753.5, 476.5], [721.5, 476.5]]}, {"id": "twvt8j", "submitted_by": "chrisdawhiteboi", "name": "Flag of Trinidad and Tobago", "description": "The national flag of the twin island Republic of Trinidad and Tobago in the Caribbean.", "website": "https://en.wikipedia.org/wiki/Trinidad_and_Tobago", "subreddit": "/r/TrinidadandTobago", "center": [1384.5, 1194.5], "path": [[1373.5, 1188.5], [1394.5, 1188.5], [1394.5, 1199.5], [1373.5, 1199.5]]}, -{"id": "twvt8g", "submitted_by": "frenchtgirl", "name": "Hayase Nagatoro", "description": "The main characters from the romantic comedy manga/anime series Don't Toy With Me, Miss Nagatoro, created by 774 (Nanashi). The story centers around Nagatoro, a slightly sadistic girl, teasing her extremely shy senpai.", "website": "https://www.crunchyroll.com/dont-toy-with-me-miss-nagatoro/episode-1-senpai-is-a-bit-senpai-dont-you-ever-get-angry-811065", "subreddit": "/r/nagatoro", "center":[861.5, 1543.5], "path":[[843.5, 1520.5], [843.5, 1564.5], [880.5, 1564.5], [879.5, 1520.5], [857.5, 1522.5]]}, +{"id": "twvt8g", "submitted_by": "frenchtgirl", "name": "Hayase Nagatoro", "description": "The main characters from the romantic comedy manga/anime series Don't Toy With Me, Miss Nagatoro, created by 774 (Nanashi). The story centers around Nagatoro, a slightly sadistic girl, teasing her extremely shy senpai.", "website": "https://www.crunchyroll.com/dont-toy-with-me-miss-nagatoro/episode-1-senpai-is-a-bit-senpai-dont-you-ever-get-angry-811065", "subreddit": "/r/nagatoro", "center": [861.5, 1543.5], "path": [[843.5, 1520.5], [843.5, 1564.5], [880.5, 1564.5], [879.5, 1520.5], [857.5, 1522.5]]}, {"id": "twvt57", "submitted_by": "W-O-R-T-H-L-E-S-S", "name": "Bigtoe", "description": "Original character in the My Little Pony Universe", "website": "", "subreddit": "", "center": [33.5, 1099.5], "path": [[24.5, 1093.5], [24.5, 1104.5], [34.5, 1104.5], [34.5, 1107.5], [41.5, 1107.5], [41.5, 1092.5], [34.5, 1092.5], [33.5, 1093.5]]}, -{"id": "twvt2n", "submitted_by": "Despacitugo", "name": "Terezi Pyrope", "description": "A popular character from the webcomic Homestuck and the phrase 'BL1ND JUST1C3', one of her soundtracks.", "website": "homestuck.com", "subreddit": "/r/homestuck", "center": [77.5, 1109.5], "path": [[62.5, 1097.5], [91.5, 1097.5], [91.5, 1120.5], [62.5, 1120.5], [62.5, 1097.5]]}, +{"id": "twvt2n", "submitted_by": "Despacitugo", "name": "Terezi Pyrope", "description": "A popular character from the webcomic Homestuck and the phrase 'BL1ND JUST1C3', one of her soundtracks.", "website": "https://homestuck.com", "subreddit": "/r/homestuck", "center": [77.5, 1109.5], "path": [[62.5, 1097.5], [91.5, 1097.5], [91.5, 1120.5], [62.5, 1120.5], [62.5, 1097.5]]}, {"id": "twvt11", "submitted_by": "AskovTheOne", "name": "Romania Flag", "description": "Was a Romania Flag coexisted with various arts from different communites on it. The flag was acttacked and replaced by a Polish flag at least twice, while nthey sucessfully rebuilt it for a time,ultimately it didnt survived.", "website": "", "subreddit": "/r/Romania", "center": [732.5, 179.5], "path": [[825.5, 138.5], [634.5, 139.5], [634.5, 201.5], [678.5, 202.5], [680.5, 200.5], [681.5, 193.5], [693.5, 194.5], [701.5, 203.5], [703.5, 214.5], [710.5, 221.5], [710.5, 239.5], [782.5, 238.5], [781.5, 196.5], [825.5, 198.5], [825.5, 138.5]]}, -{"id": "twvt0g", "submitted_by": "ForsenPlace", "name": "Peppah", "description": "Yorkshire Terrier pet of the streamer Forsen and his partner and ex-streamer Nani.\n\nAlso known as bibi this adorable dog frequently appeared on stream becoming part of numerous memes due to her apparent similarity with a rat.\n\nPeppah and Nani suddenly disappeared under unclear circumstances in early April 2020.\n\n2 years later Forsen's community homages their furry friend with an adapted version of Forsen's stream intro rendition of Peppah, originally drawn by Nani.", "website": "https://www.instagram.com/commonpepper", "subreddit": "/r/forsen", "center": [726.5,949.5], "path": [[719.5,944.5], [732.5,944.5], [732.5,954.5], [719.5,954.5]]}, +{"id": "twvt0g", "submitted_by": "ForsenPlace", "name": "Peppah", "description": "Yorkshire Terrier pet of the streamer Forsen and his partner and ex-streamer Nani.\n\nAlso known as bibi this adorable dog frequently appeared on stream becoming part of numerous memes due to her apparent similarity with a rat.\n\nPeppah and Nani suddenly disappeared under unclear circumstances in early April 2020.\n\n2 years later Forsen's community homages their furry friend with an adapted version of Forsen's stream intro rendition of Peppah, originally drawn by Nani.", "website": "https://www.instagram.com/commonpepper", "subreddit": "/r/forsen", "center": [726.5, 949.5], "path": [[719.5, 944.5], [732.5, 944.5], [732.5, 954.5], [719.5, 954.5]]}, {"id": "twvt0e", "submitted_by": "FifthDragon", "name": "Cow and Baby Duck", "description": "Part of the Web Serials Alliance's mural, which was originally located slightly south of here. After being nuked by XQC, randos attempted to help us preserve our duck (originally located here). Failing that, they recreated this baby duck on their own. We rebuilt our mural around this gift from the randos.nnThe cow was included as a friend to the duck after many requests from one person to include it. We originally thought this person was a representative of r/cows, but it turns out they were just representing themself. What's more is they weren't a fan of cows in general, just the one cow in particular that this is based on.", "website": "https://discord.gg/Z7M6QFzPG5", "subreddit": "/r/readwebserials", "center": [1765.5, 1323.5], "path": [[1759.5, 1328.5], [1759.5, 1325.5], [1762.5, 1325.5], [1762.5, 1320.5], [1766.5, 1317.5], [1766.5, 1316.5], [1768.5, 1316.5], [1767.5, 1320.5], [1769.5, 1324.5], [1768.5, 1325.5], [1768.5, 1328.5]]}, {"id": "twvsx6", "submitted_by": "haje1234567890", "name": "Flaggy flag and hello internet flag combined", "description": "A combination of The rebellious Flaggy flag and the official flag of the hello internet podcast", "website": "http://www.hellointernet.fm/", "subreddit": "/r/HelloInternet", "center": [69.5, 818.5], "path": [[58.5, 809.5], [80.5, 809.5], [80.5, 826.5], [58.5, 826.5], [58.5, 809.5]]}, {"id": "twvswl", "submitted_by": "TumoricER", "name": "r/politicalcompassmemes", "description": "Subreddit dedicated to making memes about stereotypes related to the Political Compass quadrants. Formed a short-lived alliance with r/utahjazz and was attacked by an Argentinian streamer. Had the Weezer logo on a quadrant for a short time, but due to controversy with their top posts the fansub for the band decided to remove themselves from it.", "website": "https://www.politicalcompass.org", "subreddit": "/r/PoliticalCompassMemes", "center": [392.5, 628.5], "path": [[363.5, 613.5], [379.5, 613.5], [379.5, 609.5], [420.5, 609.5], [421.5, 645.5], [361.5, 646.5], [362.5, 613.5]]}, @@ -2829,22 +2656,19 @@ {"id": "twvs6r", "submitted_by": "BlackBrown123", "name": "Aiba", "description": "The icon from the video game 'AI the Somnium Files'", "website": "", "subreddit": "/r/aithesomniumfiles", "center": [1252.5, 664.5], "path": [[1260.5, 673.5], [1260.5, 660.5], [1260.5, 655.5], [1243.5, 655.5], [1243.5, 672.5]]}, {"id": "twvs4l", "submitted_by": "shellos-hat", "name": "Furman", "description": "A satirical character created to poke fun at aspects of the furry community (people with interest in anthropomorphic animal characters). After quite a struggle, he was sadly only complete for a few moments before being consumed.", "website": "", "subreddit": "/r/sexedintoafurman, and, /r/furmanlore", "center": [1110.5, 1266.5], "path": [[1100.5, 1262.5], [1100.5, 1269.5], [1119.5, 1269.5], [1119.5, 1262.5]]}, {"id": "twvs27", "submitted_by": "machadoaboutanything", "name": "Gumball and Darwin Watterson", "description": "Gumball and Darwin Watterson, the two main characters of the Cartoon Network Show The Amazing World of Gumball.", "website": "", "subreddit": "", "center": [1478.5, 189.5], "path": [[1462.5, 177.5], [1494.5, 177.5], [1494.5, 201.5], [1462.5, 201.5]]}, -{"id": "twvrya", "submitted_by": "MisterMatt13", "name": "Le Mongus", "description": "Un mongus made in france fait par deux franchouillards en pleine guerre.", "website": "", "subreddit": "", "center": [108.5, 1756.5], "path": [[106.5, 1754.5], [107.5, 1758.5], [109.5, 1758.5], [109.5, 1754.5], [106.5, 1754.5]]}, {"id": "twvrsl", "submitted_by": "LilCannibal", "name": "Croissant", "description": "Everyone know what is a croissant, if you don't know search it on google or check the link below", "website": "https://en.wikipedia.org/wiki/Croissant", "subreddit": "", "center": [124.5, 1777.5], "path": [[98.5, 1772.5], [115.5, 1756.5], [130.5, 1757.5], [147.5, 1768.5], [152.5, 1782.5], [148.5, 1795.5], [140.5, 1799.5], [133.5, 1795.5], [132.5, 1791.5], [137.5, 1791.5], [139.5, 1789.5], [137.5, 1784.5], [133.5, 1779.5], [121.5, 1781.5], [112.5, 1785.5], [118.5, 1793.5], [114.5, 1796.5], [103.5, 1796.5], [97.5, 1788.5]]}, -{"id": "twvrqn", "submitted_by": "Max_FI", "name": "Lennu", "description": "Lennu was the dog of the current Finnish president Sauli Niinist\u00f6.", "website": "", "subreddit": "", "center": [512.5, 280.5], "path": [[507.5, 270.5], [502.5, 270.5], [500.5, 267.5], [499.5, 270.5], [501.5, 274.5], [500.5, 279.5], [500.5, 284.5], [502.5, 288.5], [505.5, 290.5], [506.5, 291.5], [509.5, 292.5], [511.5, 293.5], [515.5, 292.5], [518.5, 291.5], [521.5, 290.5], [522.5, 288.5], [523.5, 286.5], [523.5, 274.5], [524.5, 273.5], [525.5, 267.5], [522.5, 271.5], [503.5, 271.5]]}, -{"id": "twvrqc", "submitted_by": "CostinTea", "name": "Amongi-Powered Turkish Tea", "description": "Turkish tea formed by Among Us figures.", "website": "", "subreddit": "", "center": [1048.5, 142.5], "path": [[1025.5, 165.5], [1025.5, 120.5], [1072.5, 120.5], [1072.5, 164.5]]}, +{"id": "twvrqn", "submitted_by": "Max_FI", "name": "Lennu", "description": "Lennu was the dog of the current Finnish president Sauli Niinist\u00f6.", "website": "https://en.wikipedia.org/wiki/Sauli_Niinist%C3%B6", "subreddit": "/r/Suomi", "center": [512.5, 280.5], "path": [[507.5, 270.5], [502.5, 270.5], [500.5, 267.5], [499.5, 270.5], [501.5, 274.5], [500.5, 279.5], [500.5, 284.5], [502.5, 288.5], [505.5, 290.5], [506.5, 291.5], [509.5, 292.5], [511.5, 293.5], [515.5, 292.5], [518.5, 291.5], [521.5, 290.5], [522.5, 288.5], [523.5, 286.5], [523.5, 274.5], [524.5, 273.5], [525.5, 267.5], [522.5, 271.5], [503.5, 271.5]]}, {"id": "twvrqb", "submitted_by": "DrOetam", "name": "SAPARi Cat", "description": "A Japanese online 3D Virtual World Chatroom made by Sony from the late 90's that's been given a second life due to just the raw appeal of it. And this cat.", "website": "https://discord.gg/T4AFYrVW", "subreddit": "/r/sapari", "center": [1370.5, 588.5], "path": [[1362.5, 577.5], [1362.5, 598.5], [1378.5, 598.5], [1378.5, 577.5], [1362.5, 577.5]]}, -{"id": "twvrq2", "submitted_by": "Dwel111", "name": "Dancing L", "description": ":z_L:", "website": "NA", "subreddit": "NA", "center": [656.5, 1111.5], "path": [[646.5, 1100.5], [646.5, 1122.5], [665.5, 1122.5], [665.5, 1100.5], [646.5, 1100.5]]}, +{"id": "twvrq2", "submitted_by": "Dwel111", "name": "Dancing L", "description": ":z_L:", "website": "https://NA", "subreddit": "NA", "center": [656.5, 1111.5], "path": [[646.5, 1100.5], [646.5, 1122.5], [665.5, 1122.5], [665.5, 1100.5], [646.5, 1100.5]]}, {"id": "twvrpl", "submitted_by": "Frederic94500", "name": "Arch OS", "description": "Arch OS", "website": "https://archlinux.org/", "subreddit": "/r/archlinux", "center": [45.5, 695.5], "path": [[40.5, 698.5], [44.5, 689.5], [45.5, 689.5], [49.5, 698.5], [40.5, 698.5]]}, {"id": "twvrp8", "submitted_by": "REEEEnegade", "name": "Senyera i Gos", "description": "Independence flag of Catalonia and a cute catalan dog.", "website": "", "subreddit": "/r/catalunya", "center": [1721.5, 1658.5], "path": [[1732.5, 1601.5], [1715.5, 1601.5], [1715.5, 1711.5], [1733.5, 1711.5], [1733.5, 1700.5], [1718.5, 1700.5], [1718.5, 1611.5], [1732.5, 1611.5]]}, {"id": "twvrnd", "submitted_by": "minion0470", "name": "Minecraft Redstone", "description": "An area made by r/Redstone of multiple Minecraft redstone items.", "website": "", "subreddit": "/r/redstone", "center": [1556.5, 1657.5], "path": [[1534.5, 1647.5], [1578.5, 1647.5], [1579.5, 1664.5], [1578.5, 1665.5], [1577.5, 1667.5], [1551.5, 1667.5], [1551.5, 1664.5], [1549.5, 1664.5], [1549.5, 1665.5], [1548.5, 1665.5], [1548.5, 1666.5], [1547.5, 1666.5], [1547.5, 1667.5], [1534.5, 1667.5]]}, -{"id": "twvrkj", "submitted_by": "scorpion24100 / ThePizzaMuncher", "name": "The Hollow Knight / Elden Ring Indie Bench", "description": "A collaborative effort headed by members of the r/HollowKnight and r/Eldenring communities, featuring characters from and references to many different franchises. Originally started by r/HKPlace and intended to feature the Knight from Hollow Knight sitting on a bench (an important gameplay mechanic reminiscent of Dark Soul’s bonfires), the project quickly expanded in scope and came to be a huge collaboration between multiple games and franchises (most of which are indie) after r/Eldenring, a close ally from the Hornet Project neighbouring their first work on the northwest quadrant of the canvas, added Ranni the Witch (an important character from the game Elden Ring) to the bench.\n\nFranchises featured in the bench area include: Hollow Knight; Elden Ring; Ace Attorney; Baba is you; Rain world; Metroid; Papers, Please; Tunic; Pokémon; Project Moon; A Hat in Time; VVVVVV; Bloodborne; Dead Cells; Mystery Dungeon; Ori; Hyper Light Drifter; Rusty Lake; Downwell; Enter the gungeon; Yuru camp; Devil daggers; A short hike; Celeste; Cavestory and more.\nOther logos include that of Issaquah Highschool and a band called GhostBC.", "website": "", "subreddit": "/r/HKPlace", "center": [1365.5, 88.5], "path": [[ 1297.5, 49.5 ], [ 1297.5, 75.5 ], [ 1296.5, 75.5 ], [ 1295.5, 75.5 ], [ 1295.5, 83.5 ], [ 1300.5, 83.5 ], [ 1300.5, 103.5 ], [ 1313.5, 103.5 ], [ 1313.5, 104.5 ], [ 1314.5, 104.5 ], [ 1314.5, 105.5 ], [ 1318.5, 105.5 ], [ 1318.5, 104.5 ], [ 1319.5, 104.5 ], [ 1319.5, 103.5 ], [ 1328.5, 103.5 ], [ 1328.5, 104.5 ], [ 1338.5, 104.5 ], [ 1338.5, 106.5 ], [ 1344.5, 106.5 ], [ 1344.5, 116.5 ], [ 1345.5, 116.5 ], [1345.5, 117.5], [1348.5, 117.5], [1348.5, 120.5], [1349.5, 120.5 ], [1349.5, 140.5], [1369.5, 140.5], [1369.5, 139.5], [1370.5, 139.5], [1370.5, 138.5], [1410.5, 138.5], [1410.5, 117.5], [1411.5, 117.5], [1411.5, 115.5], [1412.5, 114.5], [1420.5, 114.5], [1420.5, 113.5], [1421.5, 113.5], [1421.5, 112.5], [1422.5, 112.5], [1422.5, 111.5], [1423.5, 111.5], [1423.5, 107.5], [1422.5, 107.5], [1422.5, 106.5], [1421.5, 106.5], [1421.5, 105.5], [1420.5, 105.5], [1420.5, 102.5], [1421.5, 102.5], [1421.5, 50.5], [1297.5, 49.5]]}, +{"id": "twvrkj", "submitted_by": "scorpion24100 / ThePizzaMuncher", "name": "The Hollow Knight / Elden Ring Indie Bench", "description": "A collaborative effort headed by members of the r/HollowKnight and r/Eldenring communities, featuring characters from and references to many different franchises. Originally started by r/HKPlace and intended to feature the Knight from Hollow Knight sitting on a bench (an important gameplay mechanic reminiscent of Dark Soul\u2019s bonfires), the project quickly expanded in scope and came to be a huge collaboration between multiple games and franchises (most of which are indie) after r/Eldenring, a close ally from the Hornet Project neighbouring their first work on the northwest quadrant of the canvas, added Ranni the Witch (an important character from the game Elden Ring) to the bench.\n\nFranchises featured in the bench area include: Hollow Knight; Elden Ring; Ace Attorney; Baba is you; Rain world; Metroid; Papers, Please; Tunic; Pok\u00e9mon; Project Moon; A Hat in Time; VVVVVV; Bloodborne; Dead Cells; Mystery Dungeon; Ori; Hyper Light Drifter; Rusty Lake; Downwell; Enter the gungeon; Yuru camp; Devil daggers; A short hike; Celeste; Cavestory and more.\nOther logos include that of Issaquah Highschool and a band called GhostBC.", "website": "", "subreddit": "/r/HKPlace", "center": [1365.5, 88.5], "path": [[1297.5, 49.5], [1297.5, 75.5], [1296.5, 75.5], [1295.5, 75.5], [1295.5, 83.5], [1300.5, 83.5], [1300.5, 103.5], [1313.5, 103.5], [1313.5, 104.5], [1314.5, 104.5], [1314.5, 105.5], [1318.5, 105.5], [1318.5, 104.5], [1319.5, 104.5], [1319.5, 103.5], [1328.5, 103.5], [1328.5, 104.5], [1338.5, 104.5], [1338.5, 106.5], [1344.5, 106.5], [1344.5, 116.5], [1345.5, 116.5], [1345.5, 117.5], [1348.5, 117.5], [1348.5, 120.5], [1349.5, 120.5], [1349.5, 140.5], [1369.5, 140.5], [1369.5, 139.5], [1370.5, 139.5], [1370.5, 138.5], [1410.5, 138.5], [1410.5, 117.5], [1411.5, 117.5], [1411.5, 115.5], [1412.5, 114.5], [1420.5, 114.5], [1420.5, 113.5], [1421.5, 113.5], [1421.5, 112.5], [1422.5, 112.5], [1422.5, 111.5], [1423.5, 111.5], [1423.5, 107.5], [1422.5, 107.5], [1422.5, 106.5], [1421.5, 106.5], [1421.5, 105.5], [1420.5, 105.5], [1420.5, 102.5], [1421.5, 102.5], [1421.5, 50.5], [1297.5, 49.5]]}, {"id": "twvrk2", "submitted_by": "Medical_Holiday9110", "name": "Bolivian flag", "description": "Bolivian flag with its national historical and important features", "website": "", "subreddit": "/r/bolivia", "center": [1468.5, 1217.5], "path": [[1338.5, 1200.5], [1338.5, 1234.5], [1599.5, 1233.5], [1599.5, 1200.5]]}, {"id": "twvrg9", "submitted_by": "Tschoepp", "name": "Rvnx Soul Birb", "description": "The twitch subscriber badge and an emote of twitch.tv/rvnxSoul", "website": "", "subreddit": "", "center": [740.5, 650.5], "path": [[737.5, 648.5], [737.5, 652.5], [743.5, 652.5], [743.5, 648.5], [743.5, 648.5], [737.5, 648.5]]}, {"id": "twvr8o", "submitted_by": "Weirdestbug", "name": "Twitch Streamer Buddha's Icon", "description": "This Oni-mask is for the popular GTA Roleplay Nopixel streamer Buddha", "website": "https://www.twitch.tv/buddha", "subreddit": "", "center": [1397.5, 695.5], "path": [[1408.5, 680.5], [1406.5, 676.5], [1397.5, 675.5], [1387.5, 677.5], [1386.5, 680.5], [1378.5, 673.5], [1379.5, 680.5], [1382.5, 686.5], [1382.5, 697.5], [1381.5, 702.5], [1384.5, 707.5], [1381.5, 710.5], [1386.5, 711.5], [1391.5, 719.5], [1403.5, 719.5], [1409.5, 711.5], [1414.5, 709.5], [1410.5, 707.5], [1412.5, 699.5], [1412.5, 688.5], [1412.5, 684.5], [1415.5, 681.5], [1415.5, 673.5], [1409.5, 680.5]]}, -{"id": "twvr55", "submitted_by": "jepsonjaguar", "name": "Troll Face", "description": "Troll face logo created by the Troll discord. Was planned to be much bigger and was in the works in the early stage of r/place but was griefed and reduced to a smaller size.", "website": "discord.gg/troll", "subreddit": "", "center": [861.5, 537.5], "path": [[849.5, 522.5], [851.5, 552.5], [873.5, 551.5], [873.5, 522.5]]}, +{"id": "twvr55", "submitted_by": "jepsonjaguar", "name": "Troll Face", "description": "Troll face logo created by the Troll discord. Was planned to be much bigger and was in the works in the early stage of r/place but was griefed and reduced to a smaller size.", "website": "https://discord.gg/troll", "subreddit": "", "center": [861.5, 537.5], "path": [[849.5, 522.5], [851.5, 552.5], [873.5, 551.5], [873.5, 522.5]]}, {"id": "twvr1r", "submitted_by": "joelros2003", "name": "Catalonian independence flag", "description": "Flag fpr the Catalan independence movement", "website": "", "subreddit": "", "center": [1719.5, 1650.5], "path": [[1714.5, 1711.5], [1721.5, 1711.5], [1721.5, 1709.5], [1722.5, 1708.5], [1722.5, 1705.5], [1721.5, 1704.5], [1721.5, 1701.5], [1722.5, 1701.5], [1723.5, 1702.5], [1724.5, 1701.5], [1729.5, 1701.5], [1729.5, 1699.5], [1719.5, 1699.5], [1719.5, 1612.5], [1732.5, 1612.5], [1732.5, 1601.5], [1715.5, 1601.5], [1714.5, 1711.5]]}, -{"id": "twvr0j", "submitted_by": "AndotEgg", "name": "Remains of first Project Moon logo", "description": "The location of the first logo of Project Moon before it was overwritten, remnants of it can be seen", "website": "https://twitter.com/ProjMoonStudio", "subreddit": "/r/Project_Moon", "center": [0.5, 0.5], "path": []}, {"id": "twvr00", "submitted_by": "TrulyGolden", "name": "Washington Commanders", "description": "American football team Washington Commanders with disapproval of team owner, Dan Snyder.", "website": "", "subreddit": "/r/commanders", "center": [1464.5, 1320.5], "path": [[1482.5, 1302.5], [1446.5, 1303.5], [1446.5, 1337.5], [1482.5, 1337.5], [1482.5, 1337.5]]}, {"id": "twvqzn", "submitted_by": "Paperiz", "name": "IgorCykel", "description": "Normal squidward avatar (Usually handsome squidward) of IgorCykel a famous streamsniper from Forsens community. The orange background represents his famous encounter at a rooftop bar during sunset.", "website": "https://www.twitch.tv/igorcykel", "subreddit": "", "center": [1699.5, 1053.5], "path": [[1690.5, 1044.5], [1690.5, 1061.5], [1708.5, 1061.5], [1708.5, 1044.5]]}, {"id": "twvqxf", "submitted_by": "frenchtgirl", "name": "Tiananmen square", "description": "A depiction of the famous photography that symbolized the Tiananmen protest and massacre", "website": "https://en.wikipedia.org/wiki/1989_Tiananmen_Square_protests_and_massacre", "subreddit": "", "center": [883.5, 148.5], "path": [[874.5, 130.5], [874.5, 165.5], [892.5, 165.5], [892.5, 130.5]]}, @@ -2856,13 +2680,12 @@ {"id": "twvqf7", "submitted_by": "AwayNefariousness442", "name": "big blue monkey", "description": "Primadon, one of the bosses in Deepwoken, is a giant blue ape with some characteristics of marine life like frogs and fish.nHe originates from the ocean.", "website": "", "subreddit": "", "center": [355.5, 1375.5], "path": [[344.5, 1388.5], [363.5, 1388.5], [364.5, 1387.5], [366.5, 1387.5], [367.5, 1386.5], [368.5, 1385.5], [368.5, 1379.5], [367.5, 1379.5], [367.5, 1367.5], [366.5, 1366.5], [366.5, 1365.5], [365.5, 1364.5], [365.5, 1363.5], [364.5, 1362.5], [363.5, 1361.5], [362.5, 1360.5], [359.5, 1360.5], [359.5, 1359.5], [358.5, 1358.5], [357.5, 1358.5], [357.5, 1357.5], [352.5, 1357.5], [352.5, 1360.5], [351.5, 1360.5], [351.5, 1361.5], [350.5, 1361.5], [349.5, 1362.5], [348.5, 1362.5], [347.5, 1363.5], [346.5, 1364.5], [345.5, 1365.5], [345.5, 1366.5], [344.5, 1367.5], [344.5, 1372.5], [343.5, 1373.5], [343.5, 1380.5], [342.5, 1380.5], [342.5, 1381.5], [341.5, 1382.5], [341.5, 1383.5], [341.5, 1385.5], [342.5, 1385.5], [342.5, 1386.5], [343.5, 1387.5], [345.5, 1388.5], [344.5, 1388.5]]}, {"id": "twvq8o", "submitted_by": "WaterBoiledPizza", "name": "Life", "description": "A Twitch emote of a peepo looking a sunset by the sea. Made by FabulousPotato69", "website": "https://7tv.app/emotes/61ebede31a1b2a6e7324d897", "subreddit": "", "center": [1701.5, 1084.5], "path": [[1694.5, 1075.5], [1707.5, 1075.5], [1707.5, 1093.5], [1694.5, 1093.5]]}, {"id": "twvq6p", "submitted_by": "Medical_Holiday9110", "name": "Fortnite logo", "description": "It was often shot by Counter-Strike shooter. You may know why :)", "website": "", "subreddit": "/r/fortnite", "center": [51.5, 102.5], "path": [[44.5, 93.5], [45.5, 110.5], [58.5, 110.5], [58.5, 94.5]]}, -{"id": "twvq5c", "submitted_by": "Serahill", "name": "The coat of arms of Finland", "description": "", "website": "", "subreddit": "/r/place_nordicunion", "center": [616.5, 183.5], "path": [[584.5, 235.5], [587.5, 235.5], [587.5, 233.5], [593.5, 233.5], [593.5, 202.5], [567.5, 202.5], [567.5, 228.5], [569.5, 228.5], [569.5, 233.5], [574.5, 233.5], [574.5, 234.5], [576.5, 234.5], [576.5, 235.5], [583.5, 235.5]]}, +{"id": "twvq5c", "submitted_by": "Serahill", "name": "Coat of arms of Finland", "description": "", "website": "https://en.wikipedia.org/wiki/Finland", "subreddit": "/r/Suomi", "center": [616.5, 183.5], "path": [[584.5, 235.5], [587.5, 235.5], [587.5, 233.5], [593.5, 233.5], [593.5, 202.5], [567.5, 202.5], [567.5, 228.5], [569.5, 228.5], [569.5, 233.5], [574.5, 233.5], [574.5, 234.5], [576.5, 234.5], [576.5, 235.5], [583.5, 235.5]]}, {"id": "twvq1v", "submitted_by": "Astrolys", "name": "Miraculous Ladybug and Chat Noir's logo", "description": "An hommage to french TV series Miraculous Ladybug.", "website": "", "subreddit": "/r/miraculousladybug", "center": [1992.5, 1573.5], "path": [[1988.5, 1564.5], [1995.5, 1564.5], [1999.5, 1570.5], [1999.5, 1577.5], [1994.5, 1581.5], [1990.5, 1581.5], [1984.5, 1576.5], [1984.5, 1571.5], [1990.5, 1564.5], [1988.5, 1564.5]]}, {"id": "twvq1e", "submitted_by": "DuckyBertDuck", "name": "Patrick Star", "description": "Patrick Star is a fictional character in the American animated television series SpongeBob SquarePants.nnHe survived along with the moonlord due to the efforts of the terraria and sodapoppin communities.", "website": "", "subreddit": "", "center": [1727.5, 403.5], "path": [[1721.5, 407.5], [1733.5, 407.5], [1733.5, 402.5], [1730.5, 402.5], [1730.5, 398.5], [1727.5, 394.5], [1724.5, 400.5], [1724.5, 402.5], [1721.5, 402.5]]}, {"id": "twvpwj", "submitted_by": "Keigun_Spark", "name": "The Stanley Parable: Ultra Deluxe", "description": "A marketing initiative of the re-imagining of 'The Stanley Parable' called 'The Stanley Parable: Ultra Deluxe' available on PS5, PS4, Xbox Series X/S, Xbox One, Nintendo Switch and Steam, and releasing on April 27th. Art created by the crowsx3 community and allies near by who helped defend until the very last moment. Eight.", "website": "https://stanleyparable.com/", "subreddit": "/r/stanleyparable", "center": [541.5, 523.5], "path": [[527.5, 505.5], [554.5, 505.5], [555.5, 541.5], [527.5, 541.5]]}, -{"id": "twvpjj", "submitted_by": "Max_FI", "name": "Urho Kekkonen", "description": "Urho Kekkonen was the 8th president of Finland. He was the longest-serving president in the country's history.", "website": "", "subreddit": "", "center": [511.5, 250.5], "path": [[511.5, 231.5], [505.5, 231.5], [502.5, 234.5], [502.5, 238.5], [504.5, 239.5], [501.5, 243.5], [498.5, 246.5], [498.5, 252.5], [500.5, 253.5], [500.5, 261.5], [503.5, 264.5], [507.5, 267.5], [510.5, 268.5], [513.5, 268.5], [518.5, 266.5], [521.5, 263.5], [522.5, 260.5], [524.5, 257.5], [524.5, 253.5], [524.5, 248.5], [522.5, 244.5], [520.5, 241.5], [519.5, 238.5], [520.5, 234.5], [516.5, 231.5]]}, -{"id": "twvpjg", "submitted_by": "TODO_getLife", "name": "Okayeg", "description": "A twitch emote created by twitch streamer NymN's community", "website": "twitch.tv/nymn", "subreddit": "/r/redditandchill", "center": [681.5, 915.5], "path": [[655.5, 890.5], [705.5, 890.5], [706.5, 942.5], [664.5, 942.5], [664.5, 933.5], [655.5, 933.5], [654.5, 890.5], [655.5, 890.5], [654.5, 890.5]]}, -{"id": "twvpje", "submitted_by": "No_Sheepherder1258", "name": "Boston Bruins", "description": "Hockey Team of Boston", "website": "", "subreddit": "", "center": [470.5, 1896.5], "path": [[449.5, 1869.5], [490.5, 1869.5], [490.5, 1923.5], [449.5, 1923.5]]}, +{"id": "twvpjj", "submitted_by": "Max_FI", "name": "Urho Kekkonen", "description": "Urho Kekkonen was the 8th president of Finland. He was the longest-serving president in the country's history.", "website": "https://en.wikipedia.org/wiki/Urho_Kekkonen", "subreddit": "/r/Suomi", "center": [511.5, 250.5], "path": [[511.5, 231.5], [505.5, 231.5], [502.5, 234.5], [502.5, 238.5], [504.5, 239.5], [501.5, 243.5], [498.5, 246.5], [498.5, 252.5], [500.5, 253.5], [500.5, 261.5], [503.5, 264.5], [507.5, 267.5], [510.5, 268.5], [513.5, 268.5], [518.5, 266.5], [521.5, 263.5], [522.5, 260.5], [524.5, 257.5], [524.5, 253.5], [524.5, 248.5], [522.5, 244.5], [520.5, 241.5], [519.5, 238.5], [520.5, 234.5], [516.5, 231.5]]}, +{"id": "twvpjg", "submitted_by": "TODO_getLife", "name": "Okayeg", "description": "A twitch emote created by twitch streamer NymN's community", "website": "https://twitch.tv/nymn", "subreddit": "/r/redditandchill", "center": [681.5, 915.5], "path": [[655.5, 890.5], [705.5, 890.5], [706.5, 942.5], [664.5, 942.5], [664.5, 933.5], [655.5, 933.5], [654.5, 890.5], [655.5, 890.5], [654.5, 890.5]]}, {"id": "twvpfn", "submitted_by": "Frederic94500", "name": "Steam Deck", "description": "Steam Deck logo using Arch distro", "website": "https://www.steamdeck.com/", "subreddit": "/r/SteamDeck", "center": [25.5, 699.5], "path": [[22.5, 694.5], [28.5, 694.5], [28.5, 703.5], [22.5, 703.5], [22.5, 694.5]]}, {"id": "twvpen", "submitted_by": "BoxDimension", "name": "French Alesa", "description": "The mascot of Michaelmcchill on the French flag. Michaelmcchill is a Twitch streamer and member of the Dream SMP.", "website": "", "subreddit": "/r/Michaelmcchill", "center": [1194.5, 750.5], "path": [[1190.5, 744.5], [1198.5, 744.5], [1198.5, 755.5], [1190.5, 755.5]]}, {"id": "twvpdo", "submitted_by": "joelros2003", "name": "Rock bottom", "description": "An item from the game series The Binding of Isaac", "website": "", "subreddit": "/r/bindingofisaac", "center": [514.5, 1773.5], "path": [[502.5, 1781.5], [502.5, 1764.5], [507.5, 1764.5], [517.5, 1762.5], [522.5, 1766.5], [527.5, 1775.5], [528.5, 1781.5]]}, @@ -2872,7 +2695,7 @@ {"id": "twvp6l", "submitted_by": "Vapku", "name": "JEX", "description": "Jex is common slang of auburn highschool. You might use it to describe someone who peaked immortal on valorant.", "website": "", "subreddit": "", "center": [925.5, 1345.5], "path": [[920.5, 1348.5], [920.5, 1343.5], [920.5, 1342.5], [930.5, 1342.5], [930.5, 1347.5], [930.5, 1348.5], [930.5, 1349.5]]}, {"id": "twvp5z", "submitted_by": "HKO2006", "name": "Tank Man", "description": "An unidentified Chinese man who stood in front of a column of tanks during the aftermath of the 1989 Tiananmen Square protests and massacre.", "website": "https://en.wikipedia.org/wiki/Tank_Man", "subreddit": "", "center": [883.5, 146.5], "path": [[880.5, 139.5], [881.5, 137.5], [880.5, 136.5], [874.5, 130.5], [892.5, 130.5], [892.5, 165.5], [874.5, 165.5], [874.5, 130.5], [892.5, 130.5]]}, {"id": "twvp34", "submitted_by": "BouchonEnPlastique", "name": "Pikmin", "description": "Pikmin is a video game series created by Nintendo. Here, you can see pikmins and 2 ennemies (Bulborb and Breadbug)", "website": "", "subreddit": "/r/pikmin", "center": [1596.5, 608.5], "path": [[1579.5, 599.5], [1620.5, 600.5], [1620.5, 609.5], [1603.5, 609.5], [1603.5, 618.5], [1603.5, 619.5], [1590.5, 619.5], [1586.5, 619.5], [1586.5, 617.5], [1577.5, 617.5], [1577.5, 613.5], [1579.5, 613.5], [1579.5, 599.5]]}, -{"id": "twvoxr", "submitted_by": "livesremaining0", "name": "Toki Pona - Parahumans alliance", "description": "After building their neighboring respective first sites, toki pona and parahumans created an alliance and build this second place to represent it. nToki pona is an artistic constructed language made to be very simple to learn. It contains less than 140 words but it is fully expressive https://en.wikipedia.org/wiki/Toki_Ponan/r/Parahumans is a Subreddit for the works of webfiction author Wildbow, including the popular 2011-2013 superhero webnovel Worm.nnOn the top left corner one can see a mix between the toki pona logo and the parahumans logo", "website": "https://en.wikipedia.org/wiki/Toki_Pona", "subreddit": "/r/Parahumans/, &, /r/tokipona", "center": [1708.5, 229.5], "path": [[1731.5, 213.5], [1680.5, 212.5], [1681.5, 228.5], [1690.5, 229.5], [1690.5, 247.5], [1690.5, 248.5], [1725.5, 248.5], [1731.5, 248.5], [1731.5, 213.5]]}, +{"id": "twvoxr", "submitted_by": "livesremaining0", "name": "Toki Pona - Parahumans alliance", "description": "After forming an alliance on the pre-expansion canvas, Toki Pona and Parahumans decided to build a joint site on the second canvas.\nToki Pona is a minimalist constructed language, containing about 120 words. r/Parahumans is a subreddit for the works of web fiction author Wildbow.", "website": "", "subreddit": "/r/Parahumans/, /r/tokipona", "center": [1708.5, 229.5], "path": [[1731.5, 213.5], [1680.5, 212.5], [1681.5, 228.5], [1690.5, 229.5], [1690.5, 247.5], [1690.5, 248.5], [1725.5, 248.5], [1731.5, 248.5], [1731.5, 213.5]]}, {"id": "twvof4", "submitted_by": "TheOkada", "name": "OG'S Brand", "description": "Clothing brand of the Andalusian streamer IlloJuan. Socks at only 25 bucks.", "website": "https://www.ogsbrand.com/es/", "subreddit": "", "center": [1426.5, 1054.5], "path": [[1403.5, 1042.5], [1403.5, 1066.5], [1450.5, 1065.5], [1450.5, 1042.5], [1404.5, 1042.5]]}, {"id": "twvodt", "submitted_by": "thelolo_007", "name": "Stan's Fez (Gravity Falls)", "description": "Grunkle Stan's characteristic fez from Disney's Gravity Falls.", "website": "", "subreddit": "/r/GravityFalls", "center": [1423.5, 930.5], "path": [[1420.5, 932.5], [1421.5, 932.5], [1421.5, 931.5], [1425.5, 931.5], [1425.5, 932.5], [1426.5, 932.5], [1426.5, 930.5], [1425.5, 929.5], [1425.5, 928.5], [1421.5, 928.5], [1421.5, 929.5], [1420.5, 930.5], [1420.5, 932.5]]}, {"id": "twvobf", "submitted_by": "SailorElei", "name": "Sailor Scouts", "description": "Diana, Luna, Artemis, Sailor Mars, Sailor Mercury, Sailor Jupiter, Sailor Venus", "website": "https://www.reddit.com/r/sailormoon/comments/twkcvr/our_final_rplace_sailor_moon_artwork_moments/", "subreddit": "/r/sailormoon", "center": [385.5, 1017.5], "path": [[368.5, 992.5], [392.5, 991.5], [393.5, 1002.5], [404.5, 1002.5], [404.5, 1039.5], [368.5, 1039.5], [368.5, 989.5], [368.5, 990.5]]}, @@ -2890,10 +2713,9 @@ {"id": "twvmky", "submitted_by": "milton1833", "name": "Twice lovely", "description": "Lovelys are small colorful sprites used to represent the members of TWICE, a South Korean girl group which consists of 9 members", "website": "https://twice.jype.com/", "subreddit": "/r/twice", "center": [1711.5, 1105.5], "path": [[1693.5, 1094.5], [1708.5, 1094.5], [1708.5, 1091.5], [1730.5, 1091.5], [1730.5, 1110.5], [1722.5, 1110.5], [1721.5, 1110.5], [1721.5, 1113.5], [1720.5, 1114.5], [1720.5, 1119.5], [1721.5, 1120.5], [1693.5, 1120.5], [1693.5, 1094.5]]}, {"id": "twvmki", "submitted_by": "chixki_", "name": "Kirby Holding Lesbian Warp Star", "description": "Because Kirby is awesome and cool and based and knows what's cool.", "website": "", "subreddit": "", "center": [698.5, 454.5], "path": [[705.5, 444.5], [704.5, 444.5], [697.5, 442.5], [693.5, 443.5], [691.5, 445.5], [690.5, 448.5], [688.5, 449.5], [689.5, 453.5], [691.5, 456.5], [691.5, 460.5], [690.5, 462.5], [689.5, 466.5], [691.5, 466.5], [696.5, 463.5], [699.5, 464.5], [703.5, 466.5], [704.5, 457.5], [712.5, 456.5], [709.5, 453.5], [706.5, 451.5], [706.5, 445.5]]}, {"id": "twvmf2", "submitted_by": "Fasim", "name": "Legioner", "description": "Legioner with 220 on their helmet. 220 represents a Russian Streamer/Youtuber Wycc220.", "website": "", "subreddit": "/r/LEGVOL", "center": [1014.5, 1763.5], "path": [[1007.5, 1771.5], [1015.5, 1772.5], [1019.5, 1773.5], [1023.5, 1773.5], [1023.5, 1771.5], [1023.5, 1768.5], [1023.5, 1763.5], [1024.5, 1763.5], [1025.5, 1761.5], [1025.5, 1758.5], [1024.5, 1756.5], [1024.5, 1754.5], [1021.5, 1756.5], [1018.5, 1755.5], [1009.5, 1755.5], [1007.5, 1755.5], [1004.5, 1759.5], [1004.5, 1769.5], [1007.5, 1772.5]]}, -{"id": "twvme9", "submitted_by": "Spencev", "name": "Boston Bruins", "description": "The logo for the Boston Bruins National Hockey League Team", "website": "", "subreddit": "/r/BostonBruins", "center": [469.5, 1896.5], "path": [[449.5, 1868.5], [449.5, 1924.5], [491.5, 1924.5], [489.5, 1869.5]]}, {"id": "twvmdy", "submitted_by": "thelolo_007", "name": "Hooty 2", "description": "Hooty is a worm-like owl demon from Disney's 'The Owl House'. This second Hooty was drawn upon the canvas' expansion, once being longer than the original, this is what remains of him.", "website": "", "subreddit": "/r/TheOwlHouse", "center": [1428.5, 941.5], "path": [[1420.5, 949.5], [1433.5, 949.5], [1433.5, 943.5], [1443.5, 943.5], [1443.5, 940.5], [1442.5, 940.5], [1442.5, 939.5], [1441.5, 939.5], [1441.5, 938.5], [1436.5, 938.5], [1436.5, 940.5], [1434.5, 940.5], [1434.5, 941.5], [1433.5, 941.5], [1433.5, 940.5], [1431.5, 940.5], [1431.5, 942.5], [1431.5, 941.5], [1427.5, 941.5], [1427.5, 942.5], [1426.5, 942.5], [1426.5, 930.5], [1425.5, 929.5], [1425.5, 928.5], [1421.5, 928.5], [1421.5, 929.5], [1420.5, 930.5]]}, {"id": "twvma7", "submitted_by": "Inposa-D", "name": "Sora", "description": "Main protagonist of the Kingdom Hearts series, this sprite come from the GBA episode, Kingdom Hearts Chain of Memories.", "website": "", "subreddit": "/r/KingdomHearts", "center": [1264.5, 686.5], "path": [[1241.5, 673.5], [1287.5, 673.5], [1287.5, 699.5], [1241.5, 699.5], [1241.5, 673.5]]}, -{"id": "twvm6m", "submitted_by": "Max_FI", "name": "Sauli Niinist\u00f6", "description": "Sauli Niinist\u00f6 is the 12th and current President of Finland.", "website": "", "subreddit": "", "center": [513.5, 200.5], "path": [[516.5, 178.5], [510.5, 178.5], [503.5, 180.5], [497.5, 185.5], [497.5, 194.5], [499.5, 200.5], [500.5, 211.5], [502.5, 217.5], [505.5, 222.5], [512.5, 225.5], [519.5, 222.5], [523.5, 220.5], [527.5, 212.5], [527.5, 188.5], [521.5, 180.5], [516.5, 179.5]]}, +{"id": "twvm6m", "submitted_by": "Max_FI", "name": "Sauli Niinist\u00f6", "description": "Sauli Niinist\u00f6 is the 12th and current president of Finland.", "website": "https://en.wikipedia.org/wiki/Sauli_Niinist%C3%B6", "subreddit": "/r/Suomi", "center": [513.5, 200.5], "path": [[516.5, 178.5], [510.5, 178.5], [503.5, 180.5], [497.5, 185.5], [497.5, 194.5], [499.5, 200.5], [500.5, 211.5], [502.5, 217.5], [505.5, 222.5], [512.5, 225.5], [519.5, 222.5], [523.5, 220.5], [527.5, 212.5], [527.5, 188.5], [521.5, 180.5], [516.5, 179.5]]}, {"id": "twvlwg", "submitted_by": "Desperate_Ad_6927", "name": "Id\u00e9fix", "description": "Id\u00e9fix is the dog from the Ast\u00e9rix and Ob\u00e9lix comics. He is Ob\u00e9lix's pet and is against the uprooting of trees, gestures that make him cry, get mad or even faint.", "website": "", "subreddit": "", "center": [390.5, 802.5], "path": [[379.5, 788.5], [379.5, 788.5], [376.5, 792.5], [376.5, 797.5], [379.5, 799.5], [381.5, 796.5], [382.5, 800.5], [383.5, 810.5], [385.5, 817.5], [392.5, 817.5], [398.5, 808.5], [393.5, 803.5], [394.5, 796.5], [394.5, 792.5], [396.5, 792.5], [397.5, 793.5], [397.5, 795.5], [397.5, 796.5], [398.5, 797.5], [399.5, 798.5], [400.5, 798.5], [401.5, 797.5], [401.5, 796.5], [402.5, 796.5], [402.5, 795.5], [402.5, 794.5], [402.5, 793.5], [402.5, 792.5], [401.5, 791.5], [400.5, 790.5], [399.5, 789.5], [397.5, 788.5], [394.5, 788.5], [396.5, 788.5], [393.5, 789.5], [392.5, 791.5], [391.5, 791.5], [390.5, 792.5], [390.5, 792.5], [389.5, 792.5], [389.5, 794.5], [388.5, 793.5], [388.5, 794.5], [387.5, 794.5], [386.5, 794.5], [385.5, 794.5], [384.5, 793.5], [384.5, 792.5], [383.5, 791.5], [384.5, 811.5]]}, {"id": "twvlsh", "submitted_by": "Eisscherge", "name": "Shibbysays Spiral", "description": "Spiral from the community of r/shibbysays", "website": "https://shibbydex.com/", "subreddit": "/r/shibbysays", "center": [1228.5, 476.5], "path": [[1258.5, 506.5], [1198.5, 506.5], [1198.5, 446.5], [1258.5, 446.5], [1258.5, 506.5]]}, {"id": "twvlsc", "submitted_by": "5thProvidence", "name": "K9/11", "description": "A raid by the Daliban (dgg), against Hasan's artwork.", "website": "", "subreddit": "/r/destiny", "center": [1718.5, 523.5], "path": [[1691.5, 503.5], [1693.5, 535.5], [1694.5, 536.5], [1694.5, 539.5], [1693.5, 540.5], [1694.5, 545.5], [1744.5, 545.5], [1744.5, 503.5], [1742.5, 501.5], [1707.5, 501.5], [1691.5, 503.5]]}, @@ -2907,18 +2729,14 @@ {"id": "twvl3j", "submitted_by": "MidnightFractal", "name": "Wacom", "description": "A small drawing of CoolcidProds(@CoolcidProd) character Wacom.", "website": "https://youtube.com/c/CoolcidProd", "subreddit": "", "center": [503.5, 1116.5], "path": [[498.5, 1110.5], [508.5, 1110.5], [508.5, 1110.5], [508.5, 1121.5], [508.5, 1121.5], [498.5, 1121.5]]}, {"id": "twvl2y", "submitted_by": "zenoob", "name": "Koronesuki", "description": "Representation of Hololive Vtuber Inugami Korone's fans and viewers.", "website": "", "subreddit": "/r/Hololive", "center": [1379.5, 968.5], "path": [[1374.5, 966.5], [1374.5, 968.5], [1379.5, 972.5], [1379.5, 975.5], [1381.5, 974.5], [1381.5, 972.5], [1383.5, 972.5], [1384.5, 971.5], [1381.5, 970.5], [1379.5, 969.5], [1380.5, 967.5], [1385.5, 966.5], [1381.5, 962.5]]}, {"id": "twvl2w", "submitted_by": "Ycelyn_Waggins", "name": "Scottish Saltire Heart", "description": "A small scottish heart showing solidarity with Ukraine. It was moved up in the final hours to accomodate the plane.", "website": "", "subreddit": "/r/scotland", "center": [255.5, 174.5], "path": [[253.5, 172.5], [254.5, 172.5], [255.5, 173.5], [256.5, 172.5], [257.5, 172.5], [258.5, 173.5], [258.5, 174.5], [257.5, 175.5], [256.5, 176.5], [255.5, 176.5], [254.5, 176.5], [253.5, 175.5], [252.5, 174.5], [252.5, 173.5], [253.5, 172.5], [254.5, 172.5]]}, -{"id": "twvl07", "submitted_by": "Styyx2K", "name": "Turkish tea", "description": "A filled Turkish tea cup, with a few Among Us characters.", "website": "", "subreddit": "", "center": [1049.5, 143.5], "path": [[1025.5, 120.5], [1025.5, 165.5], [1072.5, 166.5], [1072.5, 120.5], [1025.5, 120.5]]}, {"id": "twvkxq", "submitted_by": "C0rrelationCausation", "name": "New Mexico Flag", "description": "This is a depiction of the flag of the US state of New Mexico. The red Zia symbol is a symbol of the Zia pueblo. The red and green chile are an homage to the state question and answer. (Red or Green? Christmas.) The chile is native to New Mexico and is commonly referred to as Hatch green chile or New Mexico chile. Both red and green chile are a major and unique part of New Mexican cuisine distinguishing it from other Mexican and southwest US cuisines.", "website": "", "subreddit": "/r/NewMexico", "center": [1445.5, 887.5], "path": [[1449.5, 869.5], [1437.5, 870.5], [1437.5, 877.5], [1438.5, 882.5], [1439.5, 891.5], [1439.5, 898.5], [1440.5, 903.5], [1444.5, 905.5], [1449.5, 905.5], [1453.5, 903.5], [1453.5, 896.5], [1453.5, 888.5], [1452.5, 881.5], [1450.5, 878.5], [1449.5, 870.5], [1450.5, 875.5], [1450.5, 870.5]]}, {"id": "twvkui", "submitted_by": "WADR42", "name": "Dungeons and Daddies", "description": "A DnD podcast about four dads lost in the forgotten realms on a quest to rescue their sons. Starring Freddie Wong, Matt Arnold, Will Campos, Beth May, and Anthony Burch as your Daddy Master.", "website": "https://www.dungeonsanddaddies.com/", "subreddit": "/r/DungeonsAndDaddies", "center": [502.5, 1546.5], "path": [[490.5, 1542.5], [514.5, 1542.5], [514.5, 1549.5], [490.5, 1549.5]]}, -{"id": "twvks0", "submitted_by": "DMgaming100", "name": "Compliance Logo", "description": "Compliance is a Minecraft texturepack available in 32x and 64x resolutions, aiming to provide higher-resolution textures while staying true to the vanilla Minecraft textures", "website": "https://compliancepack.net/", "subreddit": "/r/compliancepack", "center": [1428.5, 119.5], "path": [[1420.5, 124.5], [1426.5, 128.5], [1429.5, 128.5], [1436.5, 124.5], [1435.5, 113.5], [1427.5, 109.5], [1427.5, 109.5], [1420.5, 114.5]]}, -{"id": "twvker", "submitted_by": "Fars3757", "name": "No Shepard without Vakarian", "description": "Helmeted Commander Shepard and Garrus Vakarian from the game Mass Effect.", "website": "", "subreddit": "/r/Mass, Effect", "center": [0.5, 0.5], "path": []}, +{"id": "twvks0", "submitted_by": "DMgaming100", "name": "Compliance Logo", "description": "Compliance is a Minecraft texturepack available in 32x and 64x resolutions, aiming to provide higher-resolution textures while staying true to the vanilla Minecraft textures", "website": "https://compliancepack.net/", "subreddit": "/r/compliancepack", "center": [1428.5, 119.5], "path": [[1426.5, 128.5], [1429.5, 128.5], [1429.5, 127.5], [1431.5, 127.5], [1431.5, 126.5], [1433.5, 126.5], [1433.5, 125.5], [1435.5, 125.5], [1435.5, 124.5], [1436.5, 124.5], [1436.5, 113.5], [1435.5, 113.5], [1435.5, 112.5], [1433.5, 112.5], [1433.5, 111.5], [1431.5, 111.5], [1431.5, 110.5], [1429.5, 110.5], [1429.5, 109.5], [1426.5, 109.5], [1426.5, 110.5], [1424.5, 110.5], [1424.5, 111.5], [1422.5, 111.5], [1422.5, 112.5], [1420.5, 112.5], [1420.5, 113.5], [1419.5, 113.5], [1419.5, 124.5], [1420.5, 124.5], [1420.5, 125.5], [1422.5, 125.5], [1422.5, 126.5], [1424.5, 126.5], [1424.5, 127.5], [1426.5, 127.5]]}, {"id": "twvk4u", "submitted_by": "jpepo", "name": "Flag of Croatia", "description": "", "website": "https://en.wikipedia.org/wiki/Flag_of_Croatia", "subreddit": "", "center": [98.5, 732.5], "path": [[72.5, 716.5], [72.5, 748.5], [124.5, 748.5], [124.5, 716.5], [72.5, 716.5]]}, {"id": "twvk34", "submitted_by": "prehistoric_monster", "name": "former place of little black jack", "description": "a lost little rendition of the main character of fallout equestria project horizons, the first spin off from fallout equestia", "website": "", "subreddit": "/r/falloutequestria", "center": [1985.5, 398.5], "path": [[1986.5, 397.5], [1986.5, 397.5], [1984.5, 397.5], [1983.5, 398.5], [1982.5, 399.5], [1988.5, 399.5], [1986.5, 397.5], [1986.5, 397.5]]}, -{"id": "twvk1t", "submitted_by": "xRGTMX", "name": "Untitled Goose Game", "description": "2019 puzzle stealth game by House House. Honk!", "website": "https://goose.game/", "subreddit": "/r/untitledgoosegame", "center": [69.5, 1043.5], "path": [[56.5, 1033.5], [56.5, 1047.5], [57.5, 1048.5], [58.5, 1048.5], [58.5, 1049.5], [59.5, 1050.5], [61.5, 1050.5], [61.5, 1051.5], [62.5, 1051.5], [62.5, 1055.5], [61.5, 1056.5], [62.5, 1057.5], [66.5, 1057.5], [66.5, 1056.5], [70.5, 1056.5], [71.5, 1055.5], [72.5, 1054.5], [75.5, 1054.5], [77.5, 1052.5], [78.5, 1052.5], [78.5, 1041.5], [84.5, 1041.5], [84.5, 1033.5]]}, {"id": "twvk0l", "submitted_by": "Myamurr", "name": "Orks/Orkz", "description": "Stylized symbol representing the Ork race, an alien species from the Warhammer 40,000 franchise. Big, green, and possessing parodied cockney accents, these creature live to have fun by fighting whether through melee or firepower, or as they like to call it: stabby and shooty. They can will almost anything into reality if they all believe hard enough (e.g. vehicles painted red go faster, bombs painted yellow explode larger). Most known on the internet for the phrases WAAAGH! and DAKKA DAKKA DAKKA!", "website": "https://wh40k.lexicanum.com/wiki/Ork", "subreddit": "/r/orks", "center": [978.5, 393.5], "path": [[967.5, 378.5], [967.5, 408.5], [988.5, 408.5], [988.5, 378.5], [967.5, 378.5]]}, {"id": "twvjti", "submitted_by": "PratzStrike", "name": "Enterprise from Azur Lane", "description": "Pixel art of USS Enterprise, from the Yostar/Manjuu mobile gacha game Azur Lane.", "website": "https://azurlane.yo-star.com/", "subreddit": "/r/AzureLane", "center": [1674.5, 1750.5], "path": [[1686.5, 1738.5], [1686.5, 1761.5], [1662.5, 1761.5], [1662.5, 1738.5], [1686.5, 1738.5]]}, {"id": "twvjt7", "submitted_by": "PC_Man18", "name": "Texas Tech University Double T", "description": "This is the logo for Texas Tech University.", "website": "https://ttu.edu", "subreddit": "/r/texastech", "center": [896.5, 1393.5], "path": [[888.5, 1385.5], [904.5, 1385.5], [904.5, 1400.5], [888.5, 1400.5]]}, -{"id": "twvjsj", "submitted_by": "SparkleWave", "name": "TURKISH BLACK TEA", "description": "Turkish tea served in the traditional way, in a tulip-shaped glass called ince belli [literally (slim-waisted)], which allows the tea to be enjoyed hot as well as showing its crimson color. Traditionally, tea is served with small cubes of beet sugar. It is almost NEVER taken with milk or lemon. Offering tea to guests is part of Turkish hospitality.", "website": "https://en.wikipedia.org/wiki/Tea_in_Turkey", "subreddit": "/r/Turkey", "center": [1049.5, 143.5], "path": [[1025.5, 120.5], [1072.5, 120.5], [1072.5, 166.5], [1025.5, 166.5]]}, {"id": "twvjrl", "submitted_by": "zenoob", "name": "Takodachi", "description": "Mascot and representation of Hololive EN Vtuber Ninomae Ina'nis' fans and viewers.", "website": "", "subreddit": "/r/Hololive", "center": [1411.5, 943.5], "path": [[1404.5, 937.5], [1404.5, 950.5], [1416.5, 950.5], [1416.5, 948.5], [1418.5, 948.5], [1418.5, 937.5]]}, {"id": "twvjqg", "submitted_by": "Numerous_Set2910", "name": "Hetic", "description": "School of Web in France", "website": "https://www.hetic.net/", "subreddit": "", "center": [1485.5, 58.5], "path": [[1479.5, 52.5], [1491.5, 52.5], [1491.5, 64.5], [1479.5, 64.5], [1479.5, 52.5]]}, {"id": "twvjky", "submitted_by": "micsova", "name": "Creeper, Aw Man", "description": "A reference to Revenge by CaptainSparklez and TryHardNinja, a parody of the song DJ Got Us Fallin' In Love by Usher", "website": "https://www.youtube.com/watch?v=cPJUBQd-PNM", "subreddit": "", "center": [1929.5, 374.5], "path": [[1918.5, 364.5], [1918.5, 390.5], [1927.5, 390.5], [1927.5, 378.5], [1944.5, 378.5], [1944.5, 364.5], [1918.5, 364.5]]}, @@ -2932,12 +2750,10 @@ {"id": "twvir6", "submitted_by": "Styyx2K", "name": "Fil Necati", "description": "Necati, an elephant in the Turkish animated television series called Kral \u015eakir.", "website": "", "subreddit": "", "center": [1641.5, 364.5], "path": [[1627.5, 340.5], [1665.5, 340.5], [1665.5, 346.5], [1665.5, 347.5], [1665.5, 348.5], [1671.5, 347.5], [1671.5, 360.5], [1665.5, 360.5], [1659.5, 365.5], [1656.5, 365.5], [1656.5, 374.5], [1656.5, 376.5], [1654.5, 376.5], [1651.5, 376.5], [1650.5, 380.5], [1650.5, 396.5], [1626.5, 396.5], [1625.5, 396.5], [1625.5, 365.5], [1623.5, 365.5], [1621.5, 364.5], [1621.5, 362.5], [1620.5, 359.5], [1619.5, 359.5], [1614.5, 359.5], [1614.5, 357.5], [1612.5, 356.5], [1611.5, 354.5], [1611.5, 352.5], [1613.5, 350.5], [1616.5, 350.5], [1618.5, 347.5], [1626.5, 340.5]]}, {"id": "twvios", "submitted_by": "Fredpoilu", "name": "Solaire of Astora", "description": "Solaire of Astora from Dark SoulsnPRAISE THE SUN", "website": "", "subreddit": "/r/darksouls", "center": [877.5, 1321.5], "path": [[853.5, 1279.5], [901.5, 1279.5], [901.5, 1363.5], [853.5, 1364.5], [853.5, 1279.5]]}, {"id": "twvins", "submitted_by": "Fasim", "name": "Legion outpost", "description": "Outpost with two Legion warriors and a qadi.", "website": "", "subreddit": "/r/LEGVOL", "center": [740.5, 310.5], "path": [[720.5, 296.5], [762.5, 297.5], [765.5, 318.5], [762.5, 318.5], [763.5, 324.5], [721.5, 324.5], [720.5, 315.5], [712.5, 315.5], [719.5, 303.5], [719.5, 302.5]]}, -{"id": "twvimc", "submitted_by": "Akyn_CZE", "name": "RimWorld logo", "description": "Game about managing your own colony on brutal hostile world.", "website": "", "subreddit": "/r/RimWorld", "center": [897.5, 1962.5], "path": [[910.5, 1971.5], [910.5, 1970.5], [911.5, 1970.5], [911.5, 1968.5], [911.5, 1967.5], [912.5, 1967.5], [912.5, 1964.5], [911.5, 1964.5], [911.5, 1961.5], [910.5, 1961.5], [910.5, 1959.5], [909.5, 1959.5], [909.5, 1958.5], [908.5, 1958.5], [908.5, 1957.5], [907.5, 1957.5], [907.5, 1956.5], [906.5, 1956.5], [906.5, 1955.5], [905.5, 1955.5], [905.5, 1955.5], [905.5, 1954.5], [904.5, 1954.5], [904.5, 1953.5], [903.5, 1953.5], [903.5, 1952.5], [902.5, 1952.5], [901.5, 1952.5], [901.5, 1951.5], [899.5, 1951.5], [899.5, 1950.5], [895.5, 1950.5], [895.5, 1951.5], [892.5, 1951.5], [892.5, 1952.5], [890.5, 1952.5], [890.5, 1953.5], [889.5, 1953.5], [889.5, 1954.5], [889.5, 1954.5], [888.5, 1954.5], [888.5, 1955.5], [887.5, 1955.5], [887.5, 1956.5], [887.5, 1956.5], [886.5, 1956.5], [886.5, 1957.5], [885.5, 1957.5], [885.5, 1958.5], [884.5, 1958.5], [884.5, 1959.5], [884.5, 1960.5], [883.5, 1960.5], [883.5, 1962.5], [883.5, 1967.5], [884.5, 1967.5], [884.5, 1968.5], [884.5, 1969.5], [884.5, 1970.5], [885.5, 1970.5], [885.5, 1971.5], [894.5, 1971.5], [902.5, 1971.5], [910.5, 1971.5]]}, {"id": "twvijy", "submitted_by": "LolZoeMain", "name": "Shroombo", "description": "Shroombo is a character from the gacha game World Flipper. He's a playable mushroom character.", "website": "", "subreddit": "/r/worldflipper", "center": [1880.5, 110.5], "path": [[1873.5, 103.5], [1886.5, 103.5], [1886.5, 118.5], [1874.5, 117.5], [1873.5, 117.5]]}, {"id": "twvij2", "submitted_by": "Quaintlongjay", "name": "Piplup", "description": "Piplup (#393) made by the people at pokemon on r/place", "website": "", "subreddit": "", "center": [678.5, 810.5], "path": [[672.5, 802.5], [685.5, 802.5], [685.5, 818.5], [671.5, 818.5], [671.5, 802.5], [671.5, 802.5]]}, {"id": "twvihm", "submitted_by": "Leviko112", "name": "Unicum", "description": "Hungarian national liqueur, made by Zwack", "website": "https://en.wikipedia.org/wiki/Unicum", "subreddit": "/r/hungary", "center": [1231.5, 269.5], "path": [[1233.5, 255.5], [1228.5, 255.5], [1229.5, 262.5], [1223.5, 268.5], [1223.5, 275.5], [1228.5, 279.5], [1237.5, 278.5], [1239.5, 275.5], [1240.5, 268.5], [1234.5, 262.5], [1234.5, 255.5]]}, -{"id": "twvifg", "submitted_by": "Fars3757", "name": "Normandy SR2", "description": "The Alliance version of the Normandy SR2 from the game Mass Effect", "website": "", "subreddit": "/r/Mass, Effect", "center": [0.5, 0.5], "path": []}, -{"id": "twvi9u", "submitted_by": "AlexG4mepl4Y", "name": "Bamse og Kylling", "description": "A popular kids television show in Denmark about a bear and a chicken. The chimney on Bamses house always tips over, which is quite funny.", "website": "https://da.wikipedia.org/wiki/Bamse_(b%C3%B8rne-tv)", "subreddit": "/r/denmark", "center": [413.5, 148.5], "path": [[393.5, 160.5], [393.5, 158.5], [392.5, 155.5], [392.5, 151.5], [394.5, 148.5], [394.5, 141.5], [391.5, 138.5], [400.5, 138.5], [409.5, 139.5], [422.5, 140.5], [431.5, 139.5], [435.5, 142.5], [435.5, 148.5], [437.5, 150.5], [440.5, 149.5], [436.5, 155.5], [398.5, 156.5], [396.5, 159.5]]}, +{"id": "twvi9u", "submitted_by": "AlexG4mepl4Y", "name": "Bamse og Kylling", "description": "A popular kids' television show in Denmark about a bear and a chicken. The chimney on Bamse's house always tips over, which is quite funny.", "website": "https://da.wikipedia.org/wiki/Bamse_(b%C3%B8rne-tv)", "subreddit": "/r/denmark", "center": [413.5, 148.5], "path": [[393.5, 160.5], [393.5, 158.5], [392.5, 155.5], [392.5, 151.5], [394.5, 148.5], [394.5, 141.5], [391.5, 138.5], [400.5, 138.5], [409.5, 139.5], [422.5, 140.5], [431.5, 139.5], [435.5, 142.5], [435.5, 148.5], [437.5, 150.5], [440.5, 149.5], [436.5, 155.5], [398.5, 156.5], [396.5, 159.5]]}, {"id": "twvi5v", "submitted_by": "hi_im_mayaa", "name": "Ally Hall Logo", "description": "A pride ally version of the Tally Hall logo, an American alternative rock band", "website": "", "subreddit": "/r/transplace", "center": [721.5, 1984.5], "path": [[708.5, 1973.5], [733.5, 1973.5], [733.5, 1996.5], [708.5, 1995.5]]}, {"id": "twvi5n", "submitted_by": "foips", "name": "Yogscast TTT", "description": "Characters from the Yogscast GMod TTT videos", "website": "https://www.twitch.tv/yogscast", "subreddit": "/r/yogscast", "center": [1528.5, 1788.5], "path": [[1553.5, 1776.5], [1503.5, 1776.5], [1503.5, 1799.5], [1553.5, 1799.5]]}, {"id": "twvi3k", "submitted_by": "Pecors", "name": "Grand Rapids City Logo", "description": "The City of Grand Rapids logo showing La Grande Vitesse also known as the Calder, along with the Grand River.", "website": "", "subreddit": "/r/grandrapids", "center": [1454.5, 939.5], "path": [[1460.5, 934.5], [1460.5, 943.5], [1446.5, 943.5], [1446.5, 940.5], [1448.5, 940.5], [1448.5, 939.5], [1449.5, 939.5], [1450.5, 938.5], [1450.5, 934.5]]}, @@ -2947,12 +2763,11 @@ {"id": "twvhvj", "submitted_by": "jpepo", "name": "Downwell", "description": "Downwell is a curious game about a young person venturing down a well in search of untold treasures with only his Gunboots to protect him.", "website": "https://downwellgame.com/", "subreddit": "/r/Downwell", "center": [1343.5, 55.5], "path": [[1342.5, 50.5], [1346.5, 50.5], [1346.5, 53.5], [1350.5, 53.5], [1350.5, 56.5], [1347.5, 56.5], [1347.5, 60.5], [1345.5, 60.5], [1345.5, 61.5], [1340.5, 61.5], [1340.5, 55.5], [1339.5, 55.5], [1339.5, 54.5], [1335.5, 54.5], [1335.5, 51.5], [1341.5, 51.5], [1341.5, 50.5], [1342.5, 50.5]]}, {"id": "twvhpi", "submitted_by": "fruselight", "name": "Azur Lane", "description": "Azur Lane is a shoot-em-up lite game with Gacha elements featuring WW2 warships personified as anime girls.", "website": "https://azurlane.yo-star.com/", "subreddit": "/r/azurelane", "center": [1674.5, 1749.5], "path": [[1662.5, 1738.5], [1662.5, 1751.5], [1663.5, 1751.5], [1663.5, 1752.5], [1663.5, 1753.5], [1663.5, 1754.5], [1664.5, 1754.5], [1664.5, 1756.5], [1664.5, 1757.5], [1665.5, 1757.5], [1665.5, 1758.5], [1666.5, 1758.5], [1666.5, 1759.5], [1666.5, 1760.5], [1666.5, 1761.5], [1686.5, 1761.5], [1686.5, 1738.5]]}, {"id": "twvhnl", "submitted_by": "micsova", "name": "Drawfee", "description": "An art and improv comedy channel on youtube and twitch", "website": "https://www.youtube.com/drawfee", "subreddit": "/r/drawfee", "center": [1564.5, 328.5], "path": [[1559.5, 321.5], [1557.5, 324.5], [1557.5, 333.5], [1559.5, 335.5], [1569.5, 335.5], [1571.5, 333.5], [1571.5, 323.5], [1569.5, 321.5], [1559.5, 321.5]]}, -{"id": "twvhm1", "submitted_by": "Blacklink2001", "name": "E.S.V. Demos", "description": "Dutch student association based in Eindhoven.", "website": "demos.nl", "subreddit": "", "center": [1905.5, 57.5], "path": [[1895.5, 55.5], [1915.5, 55.5], [1915.5, 59.5], [1895.5, 59.5], [1895.5, 55.5]]}, +{"id": "twvhm1", "submitted_by": "Blacklink2001", "name": "E.S.V. Demos", "description": "Dutch student association based in Eindhoven.", "website": "https://demos.nl", "subreddit": "", "center": [1905.5, 57.5], "path": [[1895.5, 55.5], [1915.5, 55.5], [1915.5, 59.5], [1895.5, 59.5], [1895.5, 55.5]]}, {"id": "twvhja", "submitted_by": "zenoob", "name": "Sora", "description": "Sora, main character from the game franchise Kingdom Hearts wielding his weapon, the Keyblade", "website": "https://en.wikipedia.org/wiki/Kingdom_Hearts", "subreddit": "", "center": [1267.5, 689.5], "path": [[1246.5, 692.5], [1257.5, 699.5], [1280.5, 699.5], [1276.5, 690.5], [1277.5, 687.5], [1278.5, 682.5], [1281.5, 680.5], [1278.5, 678.5], [1281.5, 676.5], [1277.5, 676.5], [1277.5, 674.5], [1273.5, 676.5], [1272.5, 678.5], [1271.5, 676.5], [1269.5, 676.5], [1267.5, 678.5], [1261.5, 682.5], [1261.5, 683.5], [1262.5, 684.5], [1264.5, 686.5], [1263.5, 688.5], [1261.5, 690.5], [1260.5, 692.5], [1261.5, 694.5], [1261.5, 695.5], [1259.5, 695.5], [1257.5, 695.5], [1256.5, 690.5], [1255.5, 689.5], [1254.5, 689.5], [1253.5, 688.5], [1252.5, 688.5], [1252.5, 688.5], [1251.5, 686.5], [1248.5, 689.5]]}, {"id": "twvhiv", "submitted_by": "greese1", "name": "BIG FISH!", "description": "Just a big fish", "website": "https://www.reddit.com/r/PlaceFishCult/comments/twi7o3/i_not_only_made_a_fish_but_a_whole_fishmaking/", "subreddit": "/r/PlaceFishCult", "center": [456.5, 899.5], "path": [[453.5, 896.5], [450.5, 896.5], [450.5, 899.5], [453.5, 899.5], [454.5, 900.5], [454.5, 903.5], [457.5, 903.5], [457.5, 900.5], [458.5, 899.5], [461.5, 899.5], [462.5, 900.5], [462.5, 903.5], [465.5, 903.5], [465.5, 900.5], [462.5, 900.5], [461.5, 899.5], [461.5, 896.5], [462.5, 895.5], [462.5, 892.5], [465.5, 892.5], [465.5, 895.5], [462.5, 895.5], [458.5, 896.5], [457.5, 895.5], [457.5, 892.5], [454.5, 892.5], [454.5, 895.5], [453.5, 896.5]]}, {"id": "twvhbj", "submitted_by": "Fredpoilu", "name": "Giant Dad", "description": "Giant Dad from Dark SoulsnLEGEND NEVER DIES", "website": "", "subreddit": "/r/darksoulsmemes", "center": [927.5, 1393.5], "path": [[905.5, 1365.5], [949.5, 1365.5], [949.5, 1421.5], [906.5, 1420.5], [905.5, 1365.5]]}, {"id": "twvh1d", "submitted_by": "jepsonjaguar", "name": "Patriots NFL Team Flag", "description": "Flag for the 6x superbowl champions The Patriots.", "website": "", "subreddit": "/r/patriots", "center": [1655.5, 610.5], "path": [[1631.5, 600.5], [1631.5, 619.5], [1678.5, 619.5], [1678.5, 600.5]]}, -{"id": "twvgy9", "submitted_by": "ArakosSylzia", "name": "Boston Bruins", "description": "Logo of the NHL team of Boston.", "website": "https://www.nhl.com/bruins", "subreddit": "", "center": [470.5, 1896.5], "path": [[449.5, 1868.5], [449.5, 1923.5], [490.5, 1924.5], [490.5, 1868.5]]}, {"id": "twvgwf", "submitted_by": "Aloices", "name": "SCP-113", "description": "A piece of red jasper from the SCP Foundation universe (logo visible above). When touched, it switches any physical characteristics associated with gender and biological sex of the being touching it.", "website": "https://scp-wiki.wikidot.com/scp-113", "subreddit": "/r/scp", "center": [629.5, 437.5], "path": [[624.5, 431.5], [624.5, 440.5], [625.5, 440.5], [625.5, 441.5], [626.5, 441.5], [626.5, 442.5], [627.5, 442.5], [628.5, 442.5], [627.5, 443.5], [628.5, 443.5], [628.5, 444.5], [629.5, 444.5], [634.5, 444.5], [634.5, 441.5], [633.5, 440.5], [632.5, 431.5]]}, {"id": "twvgr7", "submitted_by": "minecrafter2301", "name": "Floch Forster", "description": "Floch Forster is a character of the well known anime and manga series Attack on Titan", "website": "https://static.wikia.nocookie.net/shingekinokyojin/images/d/d0/Floch_silences_Hange.png/revision/latest?cb=20181209222034", "subreddit": "", "center": [732.5, 1885.5], "path": [[716.5, 1862.5], [716.5, 1908.5], [747.5, 1908.5], [747.5, 1862.5], [716.5, 1862.5]]}, {"id": "twvgqr", "submitted_by": "Phephelive", "name": "Bukayo Saka's Unicorn", "description": "An english football player from Arsenal and his unicorn. Became a meme for Euro 2020.", "website": "", "subreddit": "", "center": [1533.5, 1460.5], "path": [[1506.5, 1423.5], [1559.5, 1421.5], [1555.5, 1428.5], [1549.5, 1435.5], [1550.5, 1445.5], [1569.5, 1444.5], [1575.5, 1457.5], [1583.5, 1477.5], [1552.5, 1484.5], [1518.5, 1500.5], [1497.5, 1499.5]]}, @@ -2964,7 +2779,7 @@ {"id": "twvfp5", "submitted_by": "Fars3757", "name": "N7 Armor Stripe", "description": "Iconic stripe from Commander Shepard's armor in the game Mass Effect", "website": "", "subreddit": "/r/Mass, Effect", "center": [798.5, 1000.5], "path": [[796.5, 981.5], [800.5, 981.5], [801.5, 1018.5], [796.5, 1018.5]]}, {"id": "twvfhw", "submitted_by": "Bleizarmor", "name": "Gwenn-ha-du", "description": "The Breton flag representing Brittany (Breizh)", "website": "", "subreddit": "", "center": [1778.5, 1571.5], "path": [[1770.5, 1565.5], [1786.5, 1565.5], [1786.5, 1576.5], [1770.5, 1576.5], [1770.5, 1576.5], [1770.5, 1576.5], [1770.5, 1576.5], [1770.5, 1576.5]]}, {"id": "twvfdz", "submitted_by": "bexxyboo", "name": "Diamond Hands", "description": "The logo of wall street bets, the diamond hands image represents holding onto your stocks no matter the drop until they go to the moon, and beyond that too.", "website": "", "subreddit": "/r/wallstreetbets", "center": [703.5, 1367.5], "path": [[719.5, 1413.5], [696.5, 1413.5], [696.5, 1408.5], [693.5, 1405.5], [693.5, 1401.5], [686.5, 1395.5], [679.5, 1395.5], [679.5, 1385.5], [683.5, 1385.5], [683.5, 1375.5], [654.5, 1372.5], [647.5, 1368.5], [646.5, 1367.5], [646.5, 1366.5], [648.5, 1366.5], [651.5, 1368.5], [657.5, 1368.5], [657.5, 1365.5], [658.5, 1362.5], [658.5, 1359.5], [655.5, 1355.5], [660.5, 1362.5], [668.5, 1361.5], [670.5, 1364.5], [676.5, 1365.5], [676.5, 1359.5], [675.5, 1359.5], [675.5, 1355.5], [675.5, 1345.5], [675.5, 1344.5], [673.5, 1344.5], [673.5, 1342.5], [683.5, 1330.5], [694.5, 1324.5], [709.5, 1324.5], [720.5, 1331.5], [719.5, 1332.5], [719.5, 1337.5], [721.5, 1337.5], [721.5, 1348.5], [724.5, 1348.5], [726.5, 1352.5], [725.5, 1358.5], [721.5, 1362.5], [721.5, 1367.5], [717.5, 1371.5], [740.5, 1371.5], [741.5, 1367.5], [742.5, 1360.5], [744.5, 1358.5], [755.5, 1358.5], [757.5, 1361.5], [759.5, 1367.5], [752.5, 1375.5], [748.5, 1375.5], [748.5, 1380.5], [741.5, 1381.5], [734.5, 1383.5], [718.5, 1384.5], [718.5, 1391.5], [718.5, 1413.5], [718.5, 1413.5], [719.5, 1413.5]]}, -{"id": "twvfdx", "submitted_by": "Despacitugo", "name": "Pantskat", "description": "A meme in the Homestuck community where the character Karkat Vantas is depicted as an head wearing very large pants.", "website": "homestuck.com", "subreddit": "/r/homestuck", "center": [181.5, 132.5], "path": [[174.5, 125.5], [187.5, 125.5], [187.5, 139.5], [174.5, 139.5], [174.5, 125.5]]}, +{"id": "twvfdx", "submitted_by": "Despacitugo", "name": "Pantskat", "description": "A meme in the Homestuck community where the character Karkat Vantas is depicted as an head wearing very large pants.", "website": "https://homestuck.com", "subreddit": "/r/homestuck", "center": [181.5, 132.5], "path": [[174.5, 125.5], [187.5, 125.5], [187.5, 139.5], [174.5, 139.5], [174.5, 125.5]]}, {"id": "twvfb5", "submitted_by": "this_is_so_coral", "name": "Gintama", "description": "Manga and Anime Series by Hideaki Sorachi. The image shows various characters from the show(dog=Sadaharu, Glasses=Shinpachi, Duck=Elizabeth,two Justaways, Orange Hair=Kagura, Gray Hair=Gintoki, Black Hair=Zura)", "website": "https://myanimelist.net/anime/918/Gintama", "subreddit": "/r/Gintama", "center": [1181.5, 1798.5], "path": [[1167.5, 1815.5], [1192.5, 1815.5], [1192.5, 1813.5], [1196.5, 1813.5], [1196.5, 1812.5], [1197.5, 1811.5], [1198.5, 1810.5], [1198.5, 1803.5], [1198.5, 1802.5], [1197.5, 1802.5], [1197.5, 1793.5], [1193.5, 1793.5], [1191.5, 1791.5], [1188.5, 1791.5], [1187.5, 1792.5], [1182.5, 1792.5], [1185.5, 1792.5], [1185.5, 1791.5], [1186.5, 1790.5], [1186.5, 1786.5], [1184.5, 1786.5], [1184.5, 1775.5], [1181.5, 1775.5], [1179.5, 1777.5], [1175.5, 1777.5], [1173.5, 1775.5], [1168.5, 1775.5], [1168.5, 1786.5], [1163.5, 1790.5], [1163.5, 1792.5], [1166.5, 1795.5], [1170.5, 1795.5], [1170.5, 1791.5], [1171.5, 1789.5], [1172.5, 1789.5], [1172.5, 1792.5], [1174.5, 1791.5], [1174.5, 1789.5], [1177.5, 1789.5], [1177.5, 1791.5], [1179.5, 1791.5], [1179.5, 1789.5], [1180.5, 1789.5], [1180.5, 1792.5], [1181.5, 1792.5], [1181.5, 1795.5], [1181.5, 1800.5], [1176.5, 1800.5], [1176.5, 1796.5], [1173.5, 1796.5], [1172.5, 1796.5], [1172.5, 1801.5], [1170.5, 1800.5], [1167.5, 1803.5], [1167.5, 1815.5]]}, {"id": "twvf2a", "submitted_by": "Sub2Kfbun", "name": "r/harrystyles", "description": "comemorating You Are Home by Harry Styles", "website": "", "subreddit": "/r/harrystyles", "center": [1958.5, 756.5], "path": [[1954.5, 753.5], [1961.5, 753.5], [1961.5, 759.5], [1954.5, 759.5], [1954.5, 753.5]]}, {"id": "twvezp", "submitted_by": "TheOkada", "name": "Streamers war", "description": "A piece of the Spanish and French streamer war. This was a skirmish commanded by Lieutenant General Juan Alberto.", "website": "", "subreddit": "", "center": [496.5, 1350.5], "path": [[489.5, 1360.5], [489.5, 1339.5], [503.5, 1339.5], [503.5, 1360.5], [489.5, 1360.5], [489.5, 1339.5]]}, @@ -2973,7 +2788,7 @@ {"id": "twve70", "submitted_by": "LolZoeMain", "name": "Light | World Flipper", "description": "Light, a character from a gacha game known as World Flipper. Light is the champion of Excelion who was transformed into a rabbit by the Demon Lord. They were 2 copies of Light before one of them was taken out by a random void attack but the original version of the 2 Light still remained.", "website": "", "subreddit": "/r/worldflipper", "center": [1848.5, 109.5], "path": [[1844.5, 102.5], [1853.5, 102.5], [1852.5, 117.5], [1844.5, 116.5]]}, {"id": "twve01", "submitted_by": "IsSpaceXHiringYet", "name": "Treehouse from Adventure Time", "description": "The top right corner of the Treehouse from Adventure Time.", "website": "", "subreddit": "/r/AdventureTime", "center": [1495.5, 1632.5], "path": [[1506.5, 1614.5], [1495.5, 1614.5], [1495.5, 1622.5], [1482.5, 1622.5], [1482.5, 1646.5], [1484.5, 1646.5], [1484.5, 1647.5], [1506.5, 1647.5], [1506.5, 1614.5]]}, {"id": "twvdtv", "submitted_by": "Aricou", "name": "Mia and Lupi", "description": "Those are Mia and Lupi, the protagonists of a brazilian indie game called Paranormal Order: Enigma of Fear, created by Rafael Lange in collaboration with Dumativa.", "website": "https://www.catarse.me/ordem", "subreddit": "", "center": [1087.5, 536.5], "path": [[1076.5, 507.5], [1076.5, 507.5], [1077.5, 504.5], [1081.5, 501.5], [1084.5, 498.5], [1089.5, 501.5], [1092.5, 503.5], [1102.5, 508.5], [1104.5, 511.5], [1104.5, 522.5], [1100.5, 528.5], [1100.5, 537.5], [1102.5, 540.5], [1102.5, 542.5], [1101.5, 544.5], [1099.5, 545.5], [1099.5, 546.5], [1100.5, 546.5], [1101.5, 546.5], [1101.5, 552.5], [1100.5, 553.5], [1099.5, 556.5], [1099.5, 561.5], [1100.5, 563.5], [1101.5, 564.5], [1101.5, 565.5], [1101.5, 566.5], [1093.5, 566.5], [1093.5, 567.5], [1069.5, 567.5], [1069.5, 561.5], [1066.5, 561.5], [1065.5, 560.5], [1063.5, 559.5], [1062.5, 558.5], [1061.5, 558.5], [1060.5, 557.5], [1060.5, 554.5], [1061.5, 553.5], [1064.5, 552.5], [1065.5, 553.5], [1069.5, 553.5], [1072.5, 552.5], [1073.5, 549.5], [1075.5, 548.5], [1077.5, 547.5], [1078.5, 546.5], [1079.5, 546.5], [1079.5, 542.5], [1080.5, 541.5], [1080.5, 532.5], [1079.5, 529.5], [1079.5, 527.5], [1078.5, 526.5], [1077.5, 525.5], [1077.5, 521.5], [1078.5, 521.5], [1080.5, 520.5], [1080.5, 519.5], [1077.5, 518.5], [1076.5, 516.5], [1075.5, 510.5], [1076.5, 508.5]]}, -{"id": "twvdtt", "submitted_by": "minion0470", "name": "ZedaphPlays", "description": "Minecraft Youtuber", "website": "https://www.youtube.com/c/ZedaphPlays/", "subreddit": "", "center": [856.5, 627.5], "path": [[852.5, 624.5], [859.5, 624.5], [859.5, 630.5], [852.5, 630.5]]}, +{"id": "twvdtt", "submitted_by": "minion0470", "name": "ZedaphPlays", "description": "Minecraft YouTuber.", "website": "https://www.youtube.com/c/ZedaphPlays/", "subreddit": "/r/hermitcraft", "center": [856.5, 627.5], "path": [[852.5, 624.5], [859.5, 624.5], [859.5, 630.5], [852.5, 630.5]]}, {"id": "twvdo8", "submitted_by": "nitaronc", "name": "DDNet", "description": "DDraceNetwork (DDNet) is an actively maintained version of DDRace, a Teeworlds modification with a unique cooperative gameplay.", "website": "https://ddnet.tw/", "subreddit": "/r/ddnet", "center": [614.5, 1534.5], "path": [[592.5, 1524.5], [636.5, 1524.5], [636.5, 1544.5], [592.5, 1544.5], [592.5, 1524.5]]}, {"id": "twvdmf", "submitted_by": "Carbnchaos", "name": "JRWI Logo", "description": "JRWI (Just roll with it) Is a D&D podcast Hosted by Slimecicle,Bizly,Condifiction and Grizzly", "website": "", "subreddit": "/r/jrwishow", "center": [681.5, 1467.5], "path": [[662.5, 1459.5], [662.5, 1479.5], [668.5, 1479.5], [668.5, 1482.5], [678.5, 1482.5], [679.5, 1481.5], [680.5, 1481.5], [684.5, 1485.5], [690.5, 1479.5], [698.5, 1479.5], [698.5, 1461.5], [699.5, 1460.5], [699.5, 1452.5], [691.5, 1452.5], [684.5, 1445.5], [670.5, 1459.5], [662.5, 1459.5]]}, {"id": "twvdll", "submitted_by": "ziemnakiscool", "name": "The FNaF Images", "description": "Left there is Freddy Fazbear, in the right painting, there is ( Starting from top left, clockwise ) Possibly Mangle, Springtrap/Springbonnie/Spring bonnie suit, Purple guy/William Afton, Scott Cawthon ( F.N.a.F. Creater ) with his GG Games logo, and text which says \u201eLE NE\u201c.", "website": "", "subreddit": "", "center": [1875.5, 312.5], "path": [[1840.5, 372.5], [1839.5, 370.5], [1839.5, 298.5], [1865.5, 298.5], [1868.5, 269.5], [1920.5, 271.5], [1917.5, 319.5], [1866.5, 321.5], [1866.5, 368.5], [1867.5, 372.5]]}, @@ -2982,45 +2797,41 @@ {"id": "twvd2j", "submitted_by": "greese1", "name": "lucy \u2764", "description": "Keverely's fish lucy", "website": "", "subreddit": "/r/PlaceFishCult", "center": [485.5, 893.5], "path": [[484.5, 892.5], [486.5, 892.5], [486.5, 894.5], [484.5, 894.5]]}, {"id": "twvcyo", "submitted_by": "ShadowArchivist", "name": "Early Gang Mug", "description": "Mug of coffee with a hardcore heart for Twitch streamer Philza. Made by his offline chat Early Gang", "website": "https://www.twitch.tv/philza", "subreddit": "", "center": [765.5, 1373.5], "path": [[759.5, 1368.5], [763.5, 1364.5], [771.5, 1364.5], [773.5, 1366.5], [773.5, 1381.5], [772.5, 1382.5], [761.5, 1382.5], [760.5, 1381.5], [757.5, 1379.5], [755.5, 1377.5], [755.5, 1372.5], [759.5, 1369.5], [760.5, 1368.5], [760.5, 1368.5]]}, {"id": "twvcwz", "submitted_by": "sam_w_00", "name": "Messi's shirt number", "description": "A combination of Lionel Messi's iconic Barcelona and Argentina colours with his number 10 - created as a tribute by /r/barca", "website": "", "subreddit": "/r/barca", "center": [453.5, 940.5], "path": [[448.5, 936.5], [448.5, 944.5], [457.5, 944.5], [457.5, 936.5]]}, -{"id": "twvcnn", "submitted_by": "minion0470", "name": "GoodTimesWithScar", "description": "Minecraft Youtuber", "website": "https://www.youtube.com/c/GoodTimesWithScar", "subreddit": "", "center": [892.5, 619.5], "path": [[888.5, 616.5], [888.5, 616.5], [895.5, 616.5], [895.5, 622.5], [888.5, 622.5]]}, +{"id": "twvcnn", "submitted_by": "minion0470", "name": "GoodTimesWithScar", "description": "Minecraft YouTuber.", "website": "https://www.youtube.com/c/GoodTimesWithScar", "subreddit": "/r/hermitcraft", "center": [892.5, 619.5], "path": [[888.5, 616.5], [888.5, 616.5], [895.5, 616.5], [895.5, 622.5], [888.5, 622.5]]}, {"id": "twvcnc", "submitted_by": "zenoob", "name": "Amelia Watson", "description": "Hololive EN 1st gen member Amelia Watson... With a moustache!", "website": "", "subreddit": "/r/Hololive", "center": [1339.5, 938.5], "path": [[1337.5, 929.5], [1335.5, 933.5], [1335.5, 944.5], [1337.5, 947.5], [1341.5, 947.5], [1343.5, 943.5], [1345.5, 935.5], [1341.5, 929.5]]}, -{"id": "twvcmr", "submitted_by": "Akyn_CZE", "name": "Ori", "description": "Main character from game Ori and the blind forest.", "website": "", "subreddit": "/r/OriAndTheBlindForest", "center": [1394.5, 110.5], "path": [[1378.5, 113.5], [1378.5, 111.5], [1379.5, 111.5], [1379.5, 105.5], [1378.5, 105.5], [1378.5, 104.5], [1381.5, 104.5], [1382.5, 106.5], [1383.5, 104.5], [1384.5, 104.5], [1386.5, 103.5], [1387.5, 102.5], [1389.5, 102.5], [1389.5, 103.5], [1390.5, 103.5], [1391.5, 103.5], [1391.5, 102.5], [1392.5, 102.5], [1392.5, 101.5], [1394.5, 101.5], [1394.5, 102.5], [1395.5, 102.5], [1394.5, 103.5], [1393.5, 103.5], [1393.5, 106.5], [1394.5, 106.5], [1395.5, 106.5], [1395.5, 105.5], [1396.5, 105.5], [1396.5, 103.5], [1397.5, 103.5], [1397.5, 100.5], [1398.5, 100.5], [1398.5, 99.5], [1399.5, 98.5], [1399.5, 104.5], [1398.5, 104.5], [1398.5, 106.5], [1406.5, 106.5], [1406.5, 107.5], [1407.5, 107.5], [1407.5, 108.5], [1408.5, 108.5], [1408.5, 109.5], [1409.5, 109.5], [1409.5, 110.5], [1410.5, 110.5], [1410.5, 111.5], [1410.5, 112.5], [1411.5, 112.5], [1411.5, 114.5], [1410.5, 114.5], [1410.5, 115.5], [1410.5, 116.5], [1409.5, 116.5], [1409.5, 117.5], [1408.5, 117.5], [1408.5, 118.5], [1407.5, 118.5], [1406.5, 118.5], [1406.5, 119.5], [1405.5, 119.5], [1403.5, 119.5], [1403.5, 118.5], [1400.5, 118.5], [1400.5, 117.5], [1399.5, 117.5], [1400.5, 116.5], [1401.5, 115.5], [1400.5, 114.5], [1397.5, 114.5], [1397.5, 115.5], [1396.5, 115.5], [1396.5, 116.5], [1394.5, 116.5], [1394.5, 115.5], [1390.5, 115.5], [1390.5, 116.5], [1388.5, 116.5], [1388.5, 115.5], [1387.5, 115.5], [1387.5, 113.5], [1386.5, 113.5], [1386.5, 112.5], [1385.5, 112.5], [1384.5, 112.5], [1384.5, 113.5], [1384.5, 114.5], [1385.5, 114.5], [1385.5, 115.5], [1384.5, 115.5], [1384.5, 116.5], [1383.5, 116.5], [1382.5, 116.5], [1382.5, 115.5], [1382.5, 115.5], [1380.5, 115.5], [1380.5, 114.5], [1379.5, 114.5]]}, {"id": "twvclu", "submitted_by": "Quaintlongjay", "name": "Thai Flag", "description": "Flag of Thailand with an elephant and map.", "website": "", "subreddit": "/r/thailand", "center": [1481.5, 750.5], "path": [[1444.5, 740.5], [1514.5, 740.5], [1514.5, 746.5], [1506.5, 746.5], [1507.5, 763.5], [1462.5, 763.5], [1462.5, 751.5], [1449.5, 751.5], [1448.5, 751.5], [1448.5, 746.5], [1445.5, 746.5]]}, -{"id": "twvcjo", "submitted_by": "KennyAus", "name": "Rimworld Logo", "description": "A sci fi colony sim driven by an intelligent AI storyteller.nnRimWorld follows three survivors from a crashed space liner as they build a colony on a frontier world at the rim of known space. Inspired by the space western vibe of Firefly, the deep simulation of Dwarf Fortress, and the epic scale of Dune and Warhammer 40,000.", "website": "https://rimworldgame.com/", "subreddit": "/r/RimWorld", "center": [897.5, 1964.5], "path": [[894.5, 1950.5], [884.5, 1957.5], [883.5, 1962.5], [883.5, 1967.5], [890.5, 1976.5], [905.5, 1976.5], [911.5, 1968.5], [910.5, 1958.5], [900.5, 1950.5], [894.5, 1950.5]]}, +{"id": "twvcjo", "submitted_by": "KennyAus", "name": "Rimworld Logo", "description": "A sci fi colony sim driven by an intelligent AI storyteller.nnRimWorld follows three survivors from a crashed space liner as they build a colony on a frontier world at the rim of known space. Inspired by the space western vibe of Firefly, the deep simulation of Dwarf Fortress, and the epic scale of Dune and Warhammer 40,000.", "website": "https://rimworldgame.com/", "subreddit": "/r/RimWorld", "center": [897.5, 1965.5], "path": [[900.5, 1950.5], [894.5, 1950.5], [893.5, 1951.5], [891.5, 1951.5], [890.5, 1952.5], [889.5, 1952.5], [884.5, 1957.5], [884.5, 1958.5], [883.5, 1959.5], [883.5, 1961.5], [882.5, 1961.5], [882.5, 1968.5], [883.5, 1968.5], [883.5, 1971.5], [884.5, 1971.5], [884.5, 1973.5], [885.5, 1973.5], [885.5, 1974.5], [886.5, 1974.5], [886.5, 1975.5], [887.5,1975.5], [887.5, 1976.5], [888.5, 1976.5], [889.5, 1976.5], [892.5, 1979.5], [895.5, 1979.5], [895.5, 1980.5], [899.5, 1980.5], [900.5, 1979.5], [900.5, 1978.5], [905.5, 1977.5], [905.5, 1976.5], [907.5, 1976.5], [907.5, 1975.5], [908.5, 1975.5], [909.5, 1974.5], [911.5, 1973.5], [911.5, 1968.5], [912.5, 1968.5], [912.5, 1963.5], [911.5, 1962.5], [911.5, 1960.5], [910.5, 1960.5], [910.5, 1958.5], [909.5, 1958.5], [909.5, 1957.5], [904.5, 1952.5], [903.5, 1952.5], [902.5, 1951.5], [900.5, 1951.5]]}, {"id": "twvcew", "submitted_by": "Max_FI", "name": "Trinidad and Tobago", "description": "The flag of Trinidad and Tobago, an island nation in the Caribbean", "website": "", "subreddit": "", "center": [1384.5, 1194.5], "path": [[1373.5, 1188.5], [1394.5, 1188.5], [1394.5, 1199.5], [1373.5, 1199.5]]}, {"id": "twvcdb", "submitted_by": "salovana", "name": "Jack Frost", "description": "The mascot of the company, Atlus. This was a collaboration between the Persona communities and the Megaten communities. This is a rare occurance as these two communities do not usually get along.", "website": "https://megamitensei.fandom.com/wiki/Jack_Frost", "subreddit": "/r/atlus", "center": [1472.5, 292.5], "path": [[1460.5, 281.5], [1484.5, 281.5], [1484.5, 286.5], [1479.5, 286.5], [1479.5, 294.5], [1477.5, 295.5], [1479.5, 297.5], [1478.5, 300.5], [1477.5, 302.5], [1478.5, 305.5], [1466.5, 306.5], [1466.5, 301.5], [1465.5, 299.5], [1465.5, 296.5], [1464.5, 293.5], [1465.5, 291.5], [1465.5, 288.5], [1465.5, 287.5], [1460.5, 286.5]]}, -{"id": "twvc96", "submitted_by": "Mairali", "name": "Faculty of Informatics (OVGU)", "description": "A small group of students from the faculty of informatics (computer science) at Otto von Guericke University in Magdeburg (Germany) came together to pixel the faculty's logo.", "website": "https://www.fin.ovgu.de/", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twvc8s", "submitted_by": "DubbaThony", "name": "Right to repair", "description": "Right to repair is a movement that focuses on stopping companies from going out of their way to prevent independent people (like me or you) from fixing and servicing their products. Movement pushes to restore access to parts, schematics and tools (including software) available for all sorts of devices, just like it was years ago.", "website": "", "subreddit": "/r/righttorepair", "center": [1921.5, 237.5], "path": [[1902.5, 234.5], [1902.5, 239.5], [1940.5, 239.5], [1940.5, 234.5]]}, {"id": "twvc8f", "submitted_by": "P0demos", "name": "Knekro (Goz Variety)", "description": "Image of the 3\u00b0 in the world. Also know as Kuenkro, the gachapon master. The peepoclown community made this piece of art in just 5h.EZ Clap.", "website": "https://www.twitch.tv/knekro", "subreddit": "", "center": [1349.5, 1932.5], "path": [[1334.5, 1916.5], [1365.5, 1916.5], [1364.5, 1948.5], [1334.5, 1948.5]]}, {"id": "twvc4k", "submitted_by": "BrilliantArt9925", "name": "118", "description": "The 118 subreddit logo", "website": "", "subreddit": "/r/118", "center": [1014.5, 1915.5], "path": [[1009.5, 1912.5], [1019.5, 1912.5], [1019.5, 1918.5], [1009.5, 1918.5]]}, {"id": "twvbwg", "submitted_by": "WarRica", "name": "N7 Logo", "description": "N7 is a vocational code in the Systems Alliance military.", "website": "https://masseffect.fandom.com/wiki/N7", "subreddit": "/r/masseffect", "center": [821.5, 991.5], "path": [[802.5, 984.5], [841.5, 984.5], [841.5, 997.5], [801.5, 997.5], [801.5, 984.5]]}, {"id": "twvbuq", "submitted_by": "Max_FI", "name": "Jamaica", "description": "Flag of Jamaica, an island nation in the Caribbean", "website": "", "subreddit": "", "center": [1384.5, 1180.5], "path": [[1373.5, 1173.5], [1373.5, 1186.5], [1394.5, 1186.5], [1394.5, 1173.5]]}, -{"id": "twvbue", "submitted_by": "NieczorTM", "name": "Volvo", "description": "Swedish car manufacturer", "website": "", "subreddit": "", "center": [660.5, 110.5], "path": [[633.5, 102.5], [632.5, 105.5], [630.5, 108.5], [630.5, 112.5], [631.5, 115.5], [632.5, 117.5], [635.5, 118.5], [638.5, 120.5], [641.5, 120.5], [644.5, 118.5], [649.5, 118.5], [652.5, 120.5], [655.5, 120.5], [657.5, 118.5], [660.5, 118.5], [660.5, 120.5], [666.5, 120.5], [668.5, 118.5], [673.5, 118.5], [674.5, 120.5], [680.5, 119.5], [681.5, 117.5], [684.5, 117.5], [685.5, 115.5], [686.5, 114.5], [686.5, 113.5], [685.5, 112.5], [685.5, 111.5], [685.5, 110.5], [685.5, 109.5], [684.5, 108.5], [681.5, 108.5], [681.5, 106.5], [702.5, 106.5], [702.5, 102.5], [666.5, 101.5], [635.5, 101.5], [633.5, 102.5]]}, +{"id": "twvbue", "submitted_by": "NieczorTM", "name": "Volvo", "description": "Swedish car manufacturer.", "website": "http://volvo.com/", "subreddit": "/r/sweden", "center": [660.5, 110.5], "path": [[633.5, 102.5], [632.5, 105.5], [630.5, 108.5], [630.5, 112.5], [631.5, 115.5], [632.5, 117.5], [635.5, 118.5], [638.5, 120.5], [641.5, 120.5], [644.5, 118.5], [649.5, 118.5], [652.5, 120.5], [655.5, 120.5], [657.5, 118.5], [660.5, 118.5], [660.5, 120.5], [666.5, 120.5], [668.5, 118.5], [673.5, 118.5], [674.5, 120.5], [680.5, 119.5], [681.5, 117.5], [684.5, 117.5], [685.5, 115.5], [686.5, 114.5], [686.5, 113.5], [685.5, 112.5], [685.5, 111.5], [685.5, 110.5], [685.5, 109.5], [684.5, 108.5], [681.5, 108.5], [681.5, 106.5], [702.5, 106.5], [702.5, 102.5], [666.5, 101.5], [635.5, 101.5], [633.5, 102.5]]}, {"id": "twvbs0", "submitted_by": "FinnTheHunter", "name": "Captain Falcon (F-Zero)", "description": "Captain Falcon from the F-Zero videogame series, more known from his appearance at Super Smash Bros.", "website": "", "subreddit": "/r/Fzero", "center": [1520.5, 366.5], "path": [[1514.5, 374.5], [1525.5, 374.5], [1525.5, 358.5], [1514.5, 358.5], [1514.5, 374.5]]}, {"id": "twvbpd", "submitted_by": "1638515002", "name": "Nine Inch Nails", "description": "An American industrial rock with Trent Reznor", "website": "https://www.nin.com/", "subreddit": "/r/nin", "center": [109.5, 499.5], "path": [[93.5, 492.5], [124.5, 492.5], [124.5, 505.5], [93.5, 505.5]]}, {"id": "twvbng", "submitted_by": "sam_w_00", "name": "Exotic D12 Engram", "description": "Critical Role and Destiny 2 found common ground in this dodecahedron representing both an exotic engram and a d12. Yes there is also a broom. Don't question it.", "website": "", "subreddit": "/r/criticalrole, /r/destiny2", "center": [495.5, 952.5], "path": [[482.5, 960.5], [507.5, 960.5], [507.5, 942.5], [482.5, 942.5], [482.5, 936.5], [487.5, 936.5], [487.5, 941.5], [482.5, 942.5]]}, {"id": "twvbh9", "submitted_by": "sealmealdeal", "name": "Teardrop, Bracelety, and Ice cube", "description": "along with Lollipop, Bell, Marker, Pin, Pen, and Saw are part of a drawing made by the bfdi community, it was erased by the spanish flag on the 3rd day.", "website": "", "subreddit": "/r/BattleForDreamIsland", "center": [1612.5, 294.5], "path": [[1595.5, 280.5], [1595.5, 280.5], [1595.5, 280.5], [1595.5, 280.5], [1628.5, 280.5], [1628.5, 308.5], [1595.5, 308.5]]}, -{"id": "twvbfk", "submitted_by": "minion0470", "name": "docm77", "description": "Minecraft Youtuber", "website": "https://www.youtube.com/c/docm77", "subreddit": "", "center": [874.5, 619.5], "path": [[870.5, 616.5], [877.5, 616.5], [877.5, 622.5], [870.5, 622.5]]}, +{"id": "twvbfk", "submitted_by": "minion0470", "name": "docm77", "description": "Minecraft YouTuber", "website": "https://www.youtube.com/c/docm77", "subreddit": "/r/hermitcraft", "center": [874.5, 619.5], "path": [[870.5, 616.5], [877.5, 616.5], [877.5, 622.5], [870.5, 622.5]]}, {"id": "twvbfc", "submitted_by": "Kosh_Ascadian", "name": "Baltic states", "description": "A map of the three Baltic states: Estonia, Latvia, and Lithuania. The golden line signifies the historic Baltic Way from 1989. When 2 million people joined hands in protest from Tallinn to Vilnius. They formed a human chain to signify our Baltic solidarity and wish for Independence from the Soviet occupation. Golden stars are the Capitols.", "website": "https://en.wikipedia.org/wiki/Baltic_Way", "subreddit": "/r/BalticStates", "center": [1924.5, 136.5], "path": [[1922.5, 102.5], [1924.5, 103.5], [1925.5, 103.5], [1928.5, 99.5], [1949.5, 99.5], [1955.5, 102.5], [1953.5, 104.5], [1953.5, 111.5], [1954.5, 111.5], [1953.5, 116.5], [1951.5, 120.5], [1951.5, 132.5], [1954.5, 132.5], [1954.5, 151.5], [1944.5, 161.5], [1938.5, 167.5], [1938.5, 170.5], [1935.5, 170.5], [1927.5, 176.5], [1923.5, 176.5], [1913.5, 170.5], [1910.5, 172.5], [1897.5, 171.5], [1896.5, 163.5], [1898.5, 161.5], [1898.5, 130.5], [1900.5, 129.5], [1900.5, 126.5], [1901.5, 124.5], [1888.5, 124.5], [1888.5, 116.5], [1892.5, 116.5], [1892.5, 115.5], [1902.5, 115.5], [1902.5, 104.5], [1920.5, 104.5]]}, {"id": "twvbcc", "submitted_by": "greese1", "name": "Aggie", "description": "umbrasia's fish aggie", "website": "", "subreddit": "/r/PlaceFishCult", "center": [480.5, 892.5], "path": [[478.5, 891.5], [478.5, 893.5], [481.5, 893.5], [481.5, 891.5]]}, -{"id": "twvb98", "submitted_by": "prehistoric_monster", "name": "little pip", "description": "main character from my little pony fan fiction fallout equestria, a fan fiction that manged to spawn one of the largest sub fandoms within the brony fandom", "website": "", "subreddit": "/r/falloutequestria", "center": [539.5, 277.5], "path": [[542.5, 274.5], [536.5, 274.5], [536.5, 280.5], [542.5, 280.5], [542.5, 274.5]]}, +{"id": "twvb98", "submitted_by": "prehistoric_monster", "name": "Littlepip", "description": "Main character from My Little Pony fan fiction Fallout: Equestria, a fan fiction by Kkat that managed to spawn one of the largest sub-fandoms within the brony fandom. Fallout: Equestria is one of the longest pieces of self-published fan fiction ever written.", "website": "https://en.wikipedia.org/wiki/Fallout:_Equestria", "subreddit": "/r/falloutequestria", "center": [539.5, 277.5], "path": [[542.5, 274.5], [536.5, 274.5], [536.5, 280.5], [542.5, 280.5], [542.5, 274.5]]}, {"id": "twvb5t", "submitted_by": "minecrafter2301", "name": "Technische Universit\u00e4t Darmstadt", "description": "Official English name: Technical University of Darmstadt, is a research university in the city of Darmstadt, Germany", "website": "https://www.tu-darmstadt.de/", "subreddit": "", "center": [935.5, 1730.5], "path": [[889.5, 1725.5], [980.5, 1725.5], [980.5, 1735.5], [889.5, 1735.5], [889.5, 1725.5]]}, {"id": "twvb0w", "submitted_by": "MistyMountainMC", "name": "GPO", "description": "The General Post Office (GPO) of Ireland, Located in Dublin it was a major landmark in the Irish revolution wars", "website": "https://en.wikipedia.org/wiki/General_Post_Office,_Dublin", "subreddit": "/r/ireland", "center": [1299.5, 138.5], "path": [[1277.5, 152.5], [1277.5, 135.5], [1286.5, 135.5], [1286.5, 121.5], [1314.5, 121.5], [1314.5, 136.5], [1321.5, 136.5], [1321.5, 152.5], [1277.5, 152.5]]}, -{"id": "twvb0p", "submitted_by": "mariogeorge59", "name": "Egyptian Unity symbol", "description": "The crescent and the cross symbol became so popular during The 2012\u20132013 Egyptian protests...and since then it became a symbol of unity between Christians and Muslims of Egypt against sectarian strife", "website": "", "subreddit": "", "center": [95.5, 159.5], "path": [[93.5, 148.5], [96.5, 148.5], [96.5, 150.5], [95.5, 150.5], [94.5, 151.5], [93.5, 152.5], [92.5, 153.5], [92.5, 154.5], [92.5, 155.5], [94.5, 155.5], [96.5, 155.5], [96.5, 153.5], [96.5, 152.5], [99.5, 152.5], [99.5, 155.5], [102.5, 155.5], [102.5, 157.5], [102.5, 158.5], [105.5, 158.5], [105.5, 162.5], [104.5, 163.5], [103.5, 164.5], [102.5, 166.5], [102.5, 165.5], [100.5, 167.5], [99.5, 167.5], [99.5, 168.5], [97.5, 168.5], [96.5, 168.5], [95.5, 167.5], [96.5, 167.5], [95.5, 167.5], [95.5, 168.5], [96.5, 167.5], [94.5, 167.5], [92.5, 166.5], [92.5, 166.5], [90.5, 165.5], [89.5, 164.5], [87.5, 159.5], [87.5, 156.5], [88.5, 153.5], [88.5, 154.5], [90.5, 152.5], [92.5, 149.5], [95.5, 148.5], [94.5, 151.5], [93.5, 155.5]]}, +{"id": "twvb0p", "submitted_by": "mariogeorge59", "name": "Egyptian Unity symbol", "description": "The symbol of the crescent embracing the cross was the banner of the 1919 revolution against British control of Egypt, it represents unity between the Christians and Muslims of Egypt against sectarian strife.", "website": "", "subreddit": "", "center": [95.5, 159.5], "path": [[93.5, 148.5], [96.5, 148.5], [96.5, 150.5], [95.5, 150.5], [94.5, 151.5], [93.5, 152.5], [92.5, 153.5], [92.5, 154.5], [92.5, 155.5], [94.5, 155.5], [96.5, 155.5], [96.5, 153.5], [96.5, 152.5], [99.5, 152.5], [99.5, 155.5], [102.5, 155.5], [102.5, 157.5], [102.5, 158.5], [105.5, 158.5], [105.5, 162.5], [104.5, 163.5], [103.5, 164.5], [102.5, 166.5], [102.5, 165.5], [100.5, 167.5], [99.5, 167.5], [99.5, 168.5], [97.5, 168.5], [96.5, 168.5], [95.5, 167.5], [96.5, 167.5], [95.5, 167.5], [95.5, 168.5], [96.5, 167.5], [94.5, 167.5], [92.5, 166.5], [92.5, 166.5], [90.5, 165.5], [89.5, 164.5], [87.5, 159.5], [87.5, 156.5], [88.5, 153.5], [88.5, 154.5], [90.5, 152.5], [92.5, 149.5], [95.5, 148.5], [94.5, 151.5], [93.5, 155.5]]}, {"id": "twvav0", "submitted_by": "thelolo_007", "name": "Flapjack (The Owl House)", "description": "Flapjack is a cardinal-like palisman belonging to Hunter in Disney's 'The Owl House'.", "website": "", "subreddit": "/r/TheOwlHouse", "center": [485.5, 925.5], "path": [[484.5, 928.5], [486.5, 928.5], [486.5, 927.5], [487.5, 927.5], [487.5, 926.5], [486.5, 926.5], [486.5, 922.5], [487.5, 922.5], [486.5, 922.5], [486.5, 921.5], [486.5, 922.5], [484.5, 922.5], [484.5, 923.5], [483.5, 923.5], [483.5, 925.5], [482.5, 925.5], [483.5, 925.5], [483.5, 927.5], [484.5, 927.5], [484.5, 928.5]]}, {"id": "twvar6", "submitted_by": "Ecoz1", "name": "Young World Federalists", "description": "A collection of world federalists, and other globalists, who want to unite the world.", "website": "https://www.ywf.world/", "subreddit": "/r/globaltribe", "center": [839.5, 146.5], "path": [[847.5, 156.5], [835.5, 156.5], [834.5, 150.5], [825.5, 138.5], [847.5, 138.5]]}, -{"id": "twvalm", "submitted_by": "isoraqathedh", "name": "jan pi Toki Pona", "description": "A personification of Toki Pona.", "website": "", "subreddit": "/r/prolangs", "center": [1717.5, 234.5], "path": [[1708.5, 236.5], [1706.5, 236.5], [1706.5, 235.5], [1707.5, 234.5], [1713.5, 228.5], [1713.5, 226.5], [1712.5, 225.5], [1712.5, 223.5], [1710.5, 225.5], [1710.5, 224.5], [1709.5, 222.5], [1712.5, 218.5], [1712.5, 215.5], [1715.5, 215.5], [1717.5, 214.5], [1721.5, 213.5], [1723.5, 216.5], [1723.5, 219.5], [1720.5, 222.5], [1720.5, 226.5], [1722.5, 226.5], [1722.5, 227.5], [1725.5, 228.5], [1727.5, 227.5], [1728.5, 226.5], [1730.5, 231.5], [1729.5, 233.5], [1730.5, 242.5], [1727.5, 245.5], [1720.5, 248.5], [1717.5, 248.5], [1703.5, 248.5], [1702.5, 236.5], [1705.5, 236.5]]}, -{"id": "twvajy", "submitted_by": "minion0470", "name": "rendog", "description": "Minecraft Youtuber", "website": "https://www.youtube.com/user/rendog", "subreddit": "", "center": [883.5, 627.5], "path": [[879.5, 624.5], [886.5, 624.5], [886.5, 630.5], [879.5, 630.5]]}, -{"id": "twvahv", "submitted_by": "zabdielemm", "name": "Conterpoto", "description": "Conterstine (twitch streamer ) emote", "website": "www.twitch.tv/conterstine", "subreddit": "", "center": [1784.5, 1405.5], "path": [[1766.5, 1387.5], [1766.5, 1422.5], [1802.5, 1422.5], [1802.5, 1387.5], [1802.5, 1387.5], [1802.5, 1387.5]]}, +{"id": "twvalm", "submitted_by": "isoraqathedh", "name": "jan pi Toki Pona", "description": "A personification of Toki Pona.", "website": "https://tokipona.org/", "subreddit": "/r/tokipona", "center": [1717.5, 234.5], "path": [[1708.5, 236.5], [1706.5, 236.5], [1706.5, 235.5], [1707.5, 234.5], [1713.5, 228.5], [1713.5, 226.5], [1712.5, 225.5], [1712.5, 223.5], [1710.5, 225.5], [1710.5, 224.5], [1709.5, 222.5], [1712.5, 218.5], [1712.5, 215.5], [1715.5, 215.5], [1717.5, 214.5], [1721.5, 213.5], [1723.5, 216.5], [1723.5, 219.5], [1720.5, 222.5], [1720.5, 226.5], [1722.5, 226.5], [1722.5, 227.5], [1725.5, 228.5], [1727.5, 227.5], [1728.5, 226.5], [1730.5, 231.5], [1729.5, 233.5], [1730.5, 242.5], [1727.5, 245.5], [1720.5, 248.5], [1717.5, 248.5], [1703.5, 248.5], [1702.5, 236.5], [1705.5, 236.5]]}, +{"id": "twvajy", "submitted_by": "minion0470", "name": "rendog", "description": "Minecraft YouTuber.", "website": "https://www.youtube.com/user/rendog", "subreddit": "/r/hermitcraft", "center": [883.5, 627.5], "path": [[879.5, 624.5], [886.5, 624.5], [886.5, 630.5], [879.5, 630.5]]}, +{"id": "twvahv", "submitted_by": "zabdielemm", "name": "Conterpoto", "description": "Conterstine (twitch streamer ) emote", "website": "https://www.twitch.tv/conterstine", "subreddit": "", "center": [1784.5, 1405.5], "path": [[1766.5, 1387.5], [1766.5, 1422.5], [1802.5, 1422.5], [1802.5, 1387.5], [1802.5, 1387.5], [1802.5, 1387.5]]}, {"id": "twva6t", "submitted_by": "MistyMountainMC", "name": "Ireland Flag", "description": "The second Ireland flag made", "website": "", "subreddit": "/r/ireland", "center": [1288.5, 127.5], "path": [[1248.5, 161.5], [1248.5, 83.5], [1301.5, 83.5], [1301.5, 102.5], [1321.5, 102.5], [1321.5, 105.5], [1322.5, 106.5], [1322.5, 109.5], [1318.5, 113.5], [1321.5, 118.5], [1319.5, 123.5], [1319.5, 128.5], [1321.5, 130.5], [1327.5, 130.5], [1328.5, 131.5], [1333.5, 131.5], [1334.5, 141.5], [1336.5, 143.5], [1338.5, 143.5], [1340.5, 144.5], [1342.5, 145.5], [1349.5, 145.5], [1349.5, 161.5], [1248.5, 161.5]]}, {"id": "twva2o", "submitted_by": "greese1", "name": "sushi", "description": "grilled onion's fish sushi", "website": "", "subreddit": "/r/PlaceFishCult", "center": [474.5, 892.5], "path": [[472.5, 891.5], [472.5, 893.5], [475.5, 893.5], [475.5, 891.5]]}, {"id": "twva2g", "submitted_by": "Glittering_Captain_4", "name": "Ecuadorian Flag", "description": "After being raided of their tiny spot below the Factorio gear by Sodapoppin and chat, the Ecuadorian flag relocated to the middle, alongside various South American flags.", "website": "https://en.wikipedia.org/wiki/Flag_of_Ecuador", "subreddit": "/r/ecuador", "center": [972.5, 1581.5], "path": [[951.5, 1576.5], [951.5, 1587.5], [994.5, 1586.5], [993.5, 1575.5], [951.5, 1574.5], [959.5, 1580.5]]}, -{"id": "twv9v4", "submitted_by": "GoJoeyGo123", "name": "iskall85", "description": "iskall85", "website": "https://www.youtube.com/c/iskall85", "subreddit": "", "center": [874.5, 627.5], "path": [[869.5, 623.5], [878.5, 623.5], [878.5, 631.5], [869.5, 631.5]]}, -{"id": "twv9n3", "submitted_by": "minion0470", "name": "iskall85", "description": "Minecraft Youtuber", "website": "https://www.youtube.com/c/iskall85", "subreddit": "", "center": [874.5, 627.5], "path": [[870.5, 624.5], [877.5, 624.5], [877.5, 630.5], [870.5, 630.5]]}, +{"id": "twv9n3", "submitted_by": "minion0470", "name": "iskall85", "description": "Minecraft YouTuber.", "website": "https://www.youtube.com/c/iskall85", "subreddit": "/r/hermitcraft", "center": [874.5, 627.5], "path": [[870.5, 624.5], [877.5, 624.5], [877.5, 630.5], [870.5, 630.5]]}, {"id": "twv9io", "submitted_by": "BassGaming", "name": "First Croatian Flag", "description": "A stretched croatian flag.", "website": "", "subreddit": "/r/croatia", "center": [404.5, 899.5], "path": [[448.5, 910.5], [448.5, 888.5], [360.5, 888.5], [359.5, 910.5], [403.5, 910.5]]}, {"id": "twv9g4", "submitted_by": "HorribleHeehoo", "name": "Ramee Logo", "description": "Logo of the GTA V RP streamer Ramee. Also includes a memorial for fellow RP streamer Blue622 who passed away in 2020.", "website": "", "subreddit": "/r/Chang_Gang", "center": [413.5, 971.5], "path": [[429.5, 963.5], [396.5, 963.5], [397.5, 980.5], [430.5, 979.5]]}, {"id": "twv9a9", "submitted_by": "n3prena", "name": "RTS", "description": "RTS broadcasts radio and TV in French-speaking Switzerland", "website": "https://www.rts.ch", "subreddit": "", "center": [1182.5, 873.5], "path": [[1176.5, 871.5], [1188.5, 871.5], [1188.5, 876.5], [1176.5, 876.5], [1176.5, 871.5], [1176.5, 871.5], [1176.5, 871.5], [1182.5, 873.5], [1180.5, 874.5]]}, -{"id": "twv99m", "submitted_by": "Alathic", "name": "Alesa", "description": "The Mascot of Twitch streamer Michaelmcchill. Hidden on the French flag to prevent destruction due to proximity and alliance with the MLP faction", "website": "https://www.michaelmcchill.com/", "subreddit": "https://www.michaelmcchill.com/", "center": [0.5, 0.5], "path": []}, {"id": "twv974", "submitted_by": "Typical-Dish-3187", "name": "Xibalbist\u00e1n Flag", "description": "Flag of the micronation created by the Xibalboys, a small but dedicated group of friends.nFunded by Alejandro, Isi, Llibert and Chuko", "website": "https://xibalbistan.com", "subreddit": "", "center": [851.5, 1818.5], "path": [[846.5, 1814.5], [846.5, 1821.5], [855.5, 1821.5], [855.5, 1814.5], [855.5, 1814.5], [855.5, 1814.5], [853.5, 1814.5]]}, {"id": "twv91e", "submitted_by": "Echon97", "name": "J. R. R. Tolkien & LOTR", "description": "The icon of the Tolkien estate, author of the Lord of the Rings and the Hobbit.", "website": "", "subreddit": "/r/lotr", "center": [1836.5, 453.5], "path": [[1824.5, 431.5], [1824.5, 475.5], [1847.5, 475.5], [1847.5, 431.5]]}, {"id": 185, "name": "Burgy and MiniKirb", "description": "Right: Burgy (a fusion of Kirby and a burger) is fan art made by James Turner, adapted by the Celeste Speedrunning Community and derived into many sub-fanarts.nLeft: MiniKirb is a Kirby with a top-hat. It was adopted by Team Burgy in soon after the expansion. nThe art was defended a lot by the r/Leafs subreddit.nnnn", "website": "", "subreddit": "/r/Burgy", "center": [1929.5, 339.5], "path": [[1919.5, 335.5], [1918.5, 334.5], [1918.5, 344.5], [1934.5, 344.5], [1940.5, 341.5], [1940.5, 334.5], [1918.5, 334.5]]}, @@ -3028,47 +2839,39 @@ {"id": "twv8sr", "submitted_by": "greese1", "name": "Rainbow Fish", "description": "rainbow fish", "website": "", "subreddit": "/r/PlaceFishCult", "center": [469.5, 894.5], "path": [[467.5, 893.5], [467.5, 895.5], [470.5, 895.5], [470.5, 893.5]]}, {"id": "twv8ov", "submitted_by": "jepsonjaguar", "name": "Unfinished Monalisa", "description": "The unfinished portrait of the famous Mona Lisa created by Leonardo Da Vinci. It was present in the 2017 r/place but was griefed and not finished in the 2022 version.", "website": "", "subreddit": "", "center": [1528.5, 1326.5], "path": [[1490.5, 1293.5], [1490.5, 1364.5], [1556.5, 1361.5], [1574.5, 1290.5], [1520.5, 1292.5]]}, {"id": "twv8ol", "submitted_by": "ZeBadmedic42", "name": "Rust", "description": "Rust is a multiplayer-only survival video game developed by Facepunch Studio", "website": "https://rust.facepunch.com/", "subreddit": "/r/playrust", "center": [532.5, 1005.5], "path": [[524.5, 993.5], [540.5, 993.5], [540.5, 1017.5], [524.5, 1018.5], [524.5, 1006.5], [524.5, 994.5], [525.5, 995.5]]}, -{"id": "twv8nx", "submitted_by": "minion0470", "name": "Stressmonster101", "description": "Minecraft Youtuber", "website": "https://www.youtube.com/c/Stressmonster101", "subreddit": "", "center": [892.5, 595.5], "path": [[888.5, 592.5], [895.5, 592.5], [895.5, 598.5], [888.5, 598.5]]}, +{"id": "twv8nx", "submitted_by": "minion0470", "name": "Stressmonster101", "description": "Minecraft YouTuber.", "website": "https://www.youtube.com/c/Stressmonster101", "subreddit": "/r/hermitcraft", "center": [892.5, 595.5], "path": [[888.5, 592.5], [895.5, 592.5], [895.5, 598.5], [888.5, 598.5]]}, {"id": "twv8km", "submitted_by": "Hichatu", "name": "Zombie Escape Corner", "description": "Logos created by Mapeadores, Skial and GFLClan.", "website": "", "subreddit": "", "center": [1478.5, 891.5], "path": [[1453.5, 884.5], [1453.5, 897.5], [1502.5, 897.5], [1502.5, 884.5]]}, -{"id": "twv8hz", "submitted_by": "Akeltheoracle", "name": "A happy Cod", "description": "A depiction of a cod, the most important fish in the Norwegian fishing industry", "website": "https://fromnorway.com/seafood-from-norway/cod/", "subreddit": "/r/place_nordicunion", "center": [0.5, 0.5], "path": []}, {"id": "twv8bo", "submitted_by": "Max_FI", "name": "Carolina Hurricanes", "description": "A team in the ice hockey league NHL based in Raleigh, North Carolina", "website": "", "subreddit": "", "center": [1247.5, 1319.5], "path": [[1258.5, 1309.5], [1242.5, 1312.5], [1235.5, 1315.5], [1231.5, 1321.5], [1232.5, 1325.5], [1238.5, 1329.5], [1246.5, 1329.5], [1254.5, 1326.5], [1259.5, 1323.5], [1263.5, 1320.5], [1262.5, 1312.5]]}, {"id": "twv8b1", "submitted_by": "labellvs", "name": "Brotherhood of Nod", "description": "Faction in real time strategy series Command and Conquer", "website": "", "subreddit": "/r/commandandconquer", "center": [1193.5, 1899.5], "path": [[1186.5, 1895.5], [1191.5, 1891.5], [1196.5, 1891.5], [1200.5, 1895.5], [1200.5, 1905.5], [1186.5, 1905.5]]}, {"id": "twv86p", "submitted_by": "Kuhx", "name": "Imaginary maps mascot", "description": "Pixel art depicting the mascot for the r/imaginarymaps subreddit, Mappy along with a companion. From the beginning it was supposed to be located at 1174,206. However it had to be moved after being destroyed. A collab was planned with the tf2 community however it was never realised. The collaboration would've added hats to Mappy.", "website": "", "subreddit": "/r/imaginarymaps", "center": [1509.5, 1595.5], "path": [[1500.5, 1586.5], [1501.5, 1585.5], [1502.5, 1584.5], [1516.5, 1584.5], [1517.5, 1585.5], [1517.5, 1589.5], [1516.5, 1590.5], [1516.5, 1596.5], [1517.5, 1597.5], [1518.5, 1598.5], [1519.5, 1598.5], [1520.5, 1599.5], [1521.5, 1600.5], [1522.5, 1604.5], [1500.5, 1604.5], [1499.5, 1603.5], [1499.5, 1600.5], [1500.5, 1599.5], [1500.5, 1597.5], [1501.5, 1596.5], [1501.5, 1590.5], [1500.5, 1589.5]]}, {"id": "twv86m", "submitted_by": "Anceptor", "name": "Vu\u010dedolska Golubica", "description": "Most famous ceramic vessel from archeological excavations in Vu\u010dedol. One of the most recognizable symbols of Vukovar city. Made between 2800BC and 2400BC , found in 1938", "website": "", "subreddit": "", "center": [394.5, 899.5], "path": [[387.5, 892.5], [400.5, 892.5], [400.5, 906.5], [387.5, 906.5]]}, {"id": "twv80f", "submitted_by": "RyanPahlevanzadeh", "name": "Fortnite Logo", "description": "Logo of the game Fortnite Battle Royale. made by fortnite youtuber and leaker ifiremonkey. the logo was shot by counter strike over time.", "website": "", "subreddit": "", "center": [51.5, 101.5], "path": [[45.5, 94.5], [58.5, 94.5], [58.5, 95.5], [57.5, 95.5], [57.5, 109.5], [45.5, 109.5], [45.5, 94.5]]}, -{"id": "twv7sv", "submitted_by": "Zofianthot", "name": "AniList", "description": "Human? Shinigami? Quincy? Hollow? Fullbringer? He's all of them combined. Ichigo Kurosaki, 15 years old. He might seem like your average Japanese high school student, but he's actually a Substitute Shinigami! Bleach is a manga series written and illustrated by Tite Kubo. This artwork was made by the Bleach Place Discord server and the Anime Alliance.", "website": "", "subreddit": "/r/bleach", "center": [1655.5, 1186.5], "path": [[1601.5, 1173.5], [1601.5, 1200.5], [1709.5, 1199.5], [1709.5, 1174.5], [1709.5, 1174.5], [1709.5, 1173.5]]}, -{"id": "twv7rb", "submitted_by": "GoJoeyGo123", "name": "EthosLab", "description": "EthosLab", "website": "https://www.youtube.com/user/EthosLab", "subreddit": "", "center": [874.5, 603.5], "path": [[869.5, 599.5], [878.5, 599.5], [878.5, 607.5], [869.5, 607.5]]}, +{"id": "twv7sv", "submitted_by": "OrangeSheepYT", "name": "Ichigo Kurosaki", "description": "Human? Shinigami? Hollow? He's all of them combined. Ichigo Kurosaki, 15 years old. He might seem like your average Japanese high school student, but he's actually a Substitute Shinigami! Bleach is a manga series written and illustrated by Tite Kubo. This artwork was made by the Bleach Place Discord server and the Anime Alliance. \nBleach Place: https://discord.gg/EGGZ8tBas6 \nAnime Alliance: https://discord.gg/9U6pHMbHS4", "website": "https://discord.gg/EGGZ8tBas6", "subreddit": "/r/bleach", "center": [1608.5, 1185.5], "path": [[1601.5, 1172.5], [1615.5, 1172.5], [1615.5, 1198.5], [1601.5, 1198.5]]}, {"id": "twv7fy", "submitted_by": "-Decompose-", "name": "Nine Inch Nails", "description": "Pioneers of industrial metal, alternative and electronic rock, Trent Reznor\u2019s brainchild band has transformed the music scene for decades, sold over 20 million records and been nominated for 13 Grammy Awards.", "website": "http://www.nin.com", "subreddit": "/r/nin", "center": [109.5, 498.5], "path": [[94.5, 492.5], [123.5, 492.5], [123.5, 504.5], [94.5, 504.5], [94.5, 492.5], [98.5, 495.5], [104.5, 493.5], [107.5, 496.5], [107.5, 496.5]]}, {"id": "twv7fm", "submitted_by": "isoraqathedh", "name": "Retreat, Hell", "description": "A story posted in /r/HFY about a big portal connecting up to a fantasy world and everything that happens after it. Contains Marine shenanigans.", "website": "", "subreddit": "/r/HFY/comments/bfrj07/retreat_hell", "center": [394.5, 1692.5], "path": [[388.5, 1686.5], [400.5, 1686.5], [400.5, 1698.5], [388.5, 1698.5], [388.5, 1686.5]]}, {"id": "twv7dn", "submitted_by": "NieczorTM", "name": "Peace sign", "description": "A peace sign was drawn during Russian invasion of Ukraine, calling for peace between countries.", "website": "", "subreddit": "", "center": [148.5, 188.5], "path": [[140.5, 191.5], [140.5, 185.5], [141.5, 183.5], [145.5, 180.5], [151.5, 180.5], [155.5, 183.5], [156.5, 186.5], [156.5, 191.5], [154.5, 194.5], [151.5, 196.5], [145.5, 196.5], [140.5, 191.5]]}, {"id": "twv7by", "submitted_by": "Reishi24", "name": "Chu-Chu", "description": "Chu-Chu is a tiny food-loving monkey from the anime Revolutionary Girl Utena. He is the friend of Anthy Himemiya. Part of a collab of /r/shoujokakumeiutena with /r/nyanplace and /r/hatsune.", "website": "http://ohtori.nu/", "subreddit": "/r/shoujokakumeiutena", "center": [1692.5, 1459.5], "path": [[1686.5, 1455.5], [1686.5, 1459.5], [1687.5, 1462.5], [1690.5, 1465.5], [1692.5, 1465.5], [1694.5, 1467.5], [1695.5, 1466.5], [1694.5, 1465.5], [1695.5, 1464.5], [1695.5, 1463.5], [1696.5, 1462.5], [1696.5, 1460.5], [1697.5, 1459.5], [1698.5, 1458.5], [1698.5, 1457.5], [1697.5, 1456.5], [1697.5, 1455.5], [1696.5, 1454.5], [1695.5, 1453.5], [1693.5, 1453.5], [1692.5, 1454.5], [1691.5, 1453.5], [1690.5, 1452.5], [1689.5, 1452.5], [1688.5, 1453.5], [1687.5, 1454.5], [1686.5, 1455.5]]}, {"id": "twv77i", "submitted_by": "JimboTheAardvark", "name": "Ayrton Senna's helmet", "description": "Helmet of Brazilian Formula 1 driver Ayrton Senna (1960- 1994; F1 champion in 1988, 1990 and 1991)", "website": "https://www.ayrtonsenna.com.br", "subreddit": "", "center": [934.5, 614.5], "path": [[930.5, 609.5], [937.5, 609.5], [938.5, 610.5], [939.5, 611.5], [941.5, 613.5], [941.5, 617.5], [940.5, 618.5], [929.5, 618.5], [928.5, 617.5], [928.5, 611.5], [929.5, 611.5]]}, -{"id": "twv77h", "submitted_by": "Kadronk", "name": "P\u00f4le IIID", "description": "French school training in the professions of 2D, 3D animation, video games and illustration & digital graphics", "website": "https://pole3d.com/en/homepage/", "subreddit": "", "center": [259.5, 1897.5], "path": [[251.5, 1904.5], [251.5, 1890.5], [267.5, 1890.5], [267.5, 1904.5], [251.5, 1904.5]]}, {"id": "twv75x", "submitted_by": "abovepostisfunnier", "name": "Flag of Switzerland", "description": "A small but dedicated force of Swiss and international friends banded together to form the flag of Switzerland on Day 1. Switzerland quickly formed strong alliances with their neighbors, Hong Kong, Star Wars, the Buffalo Bills, Madeon and Porter Robinson, Fire Emblem, and the Asexual/Aromantic community. nOn Day 2, the Swiss forces pushed to recreate the Matterhorn and donated a portion of their territory to Liechtenstein. The chocolate bar and edelweiss were also built this day. Additionally, a small force ventured to the right side of the map to form Pingu and the SBB logo. Unfortunately, these were lost shortly after. Amongii began to show up on the chocolate bar on this day, but the community opted to keep them because they were cute and appeared to offer protection from additional griefing.nOn the third day, the Swiss expanded further onto the map to form Pingu again. Again, this precious boy was removed from the canvas. On the home front, a train tunnel, a train, a cow, and more flowers were added. The alliance with Hong Kong and Star Wars was immortalized in a joint project on the bottom left of the map. With the help of the French community, a second Swiss flag was built in the bottom left hand corner of the map. Near the end of the experiment, a small group also built a container of Aromat and the RTS logo. nn", "website": "", "subreddit": "/r/Switzerland", "center": [546.5, 698.5], "path": [[515.5, 682.5], [515.5, 682.5], [515.5, 716.5], [597.5, 682.5], [597.5, 682.5], [534.5, 682.5], [515.5, 682.5], [515.5, 715.5], [571.5, 716.5], [571.5, 701.5], [597.5, 683.5], [596.5, 681.5], [586.5, 685.5], [571.5, 682.5], [516.5, 682.5], [515.5, 716.5], [571.5, 716.5], [572.5, 699.5], [597.5, 699.5], [597.5, 682.5], [562.5, 695.5], [562.5, 695.5]]}, {"id": "twv74t", "submitted_by": "WarRica", "name": "N7 Helmet", "description": "A popular N7 Helmet from the Mass Effect series.", "website": "https://masseffect.fandom.com/wiki/N7_Armor?file=N7Helmet.png", "subreddit": "/r/masseffect", "center": [827.5, 1014.5], "path": [[824.5, 1010.5], [831.5, 1010.5], [831.5, 1017.5], [823.5, 1017.5], [824.5, 1011.5]]}, {"id": "twv6zh", "submitted_by": "Coexito", "name": "Xibalbist\u00e1n flag", "description": "Flag of the micronation created by the Xibalboys, a small but dedicated group of friends.", "website": "https://www.xibalbistan.com/", "subreddit": "", "center": [851.5, 1818.5], "path": [[846.5, 1814.5], [846.5, 1821.5], [855.5, 1821.5], [855.5, 1814.5]]}, -{"id": "twv6z6", "submitted_by": "GoJoeyGo123", "name": "FalseSymmetry", "description": "FalseSymmetry", "website": "https://www.youtube.com/c/FalseSymmetry", "subreddit": "", "center": [865.5, 603.5], "path": [[860.5, 599.5], [869.5, 599.5], [869.5, 607.5], [860.5, 607.5]]}, +{"id": "twv6z6", "submitted_by": "GoJoeyGo123", "name": "FalseSymmetry", "description": "", "website": "https://www.youtube.com/c/FalseSymmetry", "subreddit": "/r/hermitcraft", "center": [865.5, 603.5], "path": [[860.5, 599.5], [869.5, 599.5], [869.5, 607.5], [860.5, 607.5]]}, {"id": "twv6p8", "submitted_by": "SiiiaShay", "name": "P\u00f4le 3D", "description": "French Animation 2D/3D, Video Games and Illustration School located in Roubaix. Made with L1 and L2 2022 students <3<3", "website": "https://pole3d.com/", "subreddit": "", "center": [259.5, 1897.5], "path": [[251.5, 1890.5], [251.5, 1904.5], [267.5, 1904.5], [267.5, 1890.5], [251.5, 1890.5]]}, -{"id": "twv6o6", "submitted_by": "DubbaThony", "name": "Teminite", "description": "Teminite is music creator, creating electronic music like dubstep", "website": "https://www.youtube.com/channel/UCc_bv_5nmxy2xnPNg9kP3Rg", "subreddit": "/r/Teminite", "center": [1967.5, 287.5], "path": [[1953.5, 276.5], [1953.5, 297.5], [1979.5, 298.5], [1980.5, 298.5], [1980.5, 276.5]]}, +{"id": "twv6o6", "submitted_by": "Querez", "name": "Teminite", "description": "Teminite is a musical artist primarily focusing on making dubstep music, but also makes lots of other types of songs within different EDM genres. He may also play his saxophone in some of his songs. The artwork was made by the community of Teminite, primarily members of his Discord server. The artwork rarely saw griefing due to its surprisingly optimal location on the canvas.", "website": "https://www.youtube.com/c/TeminiteMusic", "subreddit": "/r/Teminite", "center": [1967.5, 287.5], "path": [[1953.5, 270.5], [1969.5, 270.5], [1969.5, 276.5], [1980.5, 276.5], [1980.5, 290.5], [1976.5, 290.5], [1976.5, 291.5], [1975.5, 291.5], [1975.5, 293.5], [1974.5, 293.5], [1974.5, 295.5], [1973.5, 295.5], [1973.5, 296.5], [1953.5, 296.5]]}, {"id": "twv6jc", "submitted_by": "zerosius", "name": "Unlimited Love Album Cover Art", "description": "Representation of the album cover art for Red Hot Chili Pepper's 12th Studio Album Unlimited Love, which came out on the 1st of April 2022", "website": "https://rhcp.lnk.to/unlimitedlove", "subreddit": "/r/RedHotChiliPeppers", "center": [477.5, 1813.5], "path": [[465.5, 1800.5], [490.5, 1800.5], [490.5, 1826.5], [464.5, 1826.5], [464.5, 1800.5]]}, {"id": "twv6i7", "submitted_by": "jepsonjaguar", "name": "Wallstreetbets Logo", "description": "Logo for the massively popular subreddit r/Wallstreetbets", "website": "https://www.reddit.com/r/wallstreetbets/", "subreddit": "/r/wallstreetbets", "center": [700.5, 1369.5], "path": [[693.5, 1348.5], [685.5, 1333.5], [651.5, 1373.5], [714.5, 1419.5], [741.5, 1375.5], [712.5, 1323.5], [682.5, 1329.5]]}, {"id": "twv6gn", "submitted_by": "Ycelyn_Waggins", "name": "Small Scottish Heart", "description": "A small Scottish Heart in support for Ukraine. It was moved up accomodate the plane in the final hours of r/place.", "website": "", "subreddit": "/r/scotland", "center": [255.5, 174.5], "path": [[253.5, 172.5], [254.5, 172.5], [255.5, 173.5], [256.5, 172.5], [257.5, 172.5], [258.5, 173.5], [258.5, 174.5], [257.5, 175.5], [256.5, 176.5], [255.5, 176.5], [254.5, 176.5], [253.5, 175.5], [252.5, 174.5], [252.5, 173.5], [253.5, 172.5]]}, -{"id": "twv6cn", "submitted_by": "GoJoeyGo123", "name": "Grian", "description": "Grian", "website": "https://www.youtube.com/user/Xelqua", "subreddit": "", "center": [883.5, 603.5], "path": [[878.5, 599.5], [887.5, 599.5], [887.5, 607.5], [878.5, 607.5]]}, {"id": "twv6bg", "submitted_by": "DayvezDay", "name": "Cold Borscht", "description": "A Lithuanian variant of the Borscht soup, cold borscht, painted on the Lithuanian flag. Recognizable by its distinct pink color with garnishes and a sliced hard boiled egg.", "website": "", "subreddit": "/r/lithuania", "center": [543.5, 1638.5], "path": [[529.5, 1638.5], [529.5, 1635.5], [529.5, 1634.5], [530.5, 1634.5], [531.5, 1633.5], [532.5, 1632.5], [533.5, 1632.5], [533.5, 1631.5], [534.5, 1631.5], [552.5, 1631.5], [553.5, 1632.5], [554.5, 1632.5], [555.5, 1633.5], [556.5, 1634.5], [557.5, 1635.5], [557.5, 1636.5], [557.5, 1637.5], [557.5, 1638.5], [556.5, 1639.5], [556.5, 1640.5], [555.5, 1641.5], [554.5, 1642.5], [553.5, 1642.5], [552.5, 1643.5], [551.5, 1643.5], [550.5, 1644.5], [548.5, 1644.5], [548.5, 1644.5], [547.5, 1645.5], [546.5, 1645.5], [546.5, 1645.5], [545.5, 1645.5], [544.5, 1645.5], [544.5, 1645.5], [543.5, 1645.5], [543.5, 1645.5], [542.5, 1645.5], [541.5, 1645.5], [540.5, 1645.5], [538.5, 1645.5], [537.5, 1644.5], [536.5, 1644.5], [536.5, 1644.5], [535.5, 1643.5], [535.5, 1643.5], [533.5, 1643.5], [533.5, 1642.5], [533.5, 1642.5], [531.5, 1642.5], [531.5, 1641.5], [531.5, 1641.5], [530.5, 1640.5], [530.5, 1639.5]]}, {"id": "twv6aa", "submitted_by": "ceriisou", "name": "Are You Alright Cover", "description": "The cover of Are You Alright, an EP from the band Lovejoy (singer of the band is Wilbur Soot, a famous british streamer)", "website": "", "subreddit": "/r/wilbursoot", "center": [1297.5, 357.5], "path": [[1279.5, 344.5], [1279.5, 369.5], [1315.5, 369.5], [1315.5, 344.5], [1279.5, 344.5]]}, -{"id": "twv6a9", "submitted_by": "minion0470", "name": "Tango Tek", "description": "Minecraft Youtuber", "website": "https://www.youtube.com/user/TangoTekLP", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twv64y", "submitted_by": "AverageWaffleEnjoyer", "name": "Griefed fortnite logo", "description": "funny keanu chungus 13 karma r/okbuddyretard moment", "website": "", "subreddit": "/r/FORTnITE", "center": [51.5, 102.5], "path": [[45.5, 94.5], [45.5, 110.5], [57.5, 109.5], [57.5, 94.5], [57.5, 94.5], [45.5, 94.5]]}, {"id": "twv5zg", "submitted_by": "Nestramutat-", "name": "Montreal Canadiens logo", "description": "The logo for the montreal canadiens (Habs) NHL team", "website": "", "subreddit": "", "center": [951.5, 987.5], "path": [[935.5, 976.5], [934.5, 997.5], [968.5, 998.5], [967.5, 976.5], [966.5, 975.5], [966.5, 975.5], [966.5, 975.5]]}, {"id": "twv5iq", "submitted_by": "thelolo_007", "name": "Star's Wand (Star vs The Forces of Evil)", "description": "The royal wand is a magical item of the Butterfly family belonging to Star Butterfly, the protagonist of Disney's 'Star vs The Forces of Evil'.", "website": "", "subreddit": "/r/StarVStheForcesOfEvil", "center": [1445.5, 937.5], "path": [[1444.5, 943.5], [1446.5, 943.5], [1446.5, 940.5], [1448.5, 940.5], [1448.5, 939.5], [1449.5, 939.5], [1449.5, 938.5], [1450.5, 938.5], [1450.5, 936.5], [1448.5, 936.5], [1448.5, 934.5], [1447.5, 934.5], [1447.5, 933.5], [1446.5, 933.5], [1446.5, 932.5], [1444.5, 932.5], [1444.5, 933.5], [1443.5, 933.5], [1443.5, 934.5], [1442.5, 934.5], [1442.5, 936.5], [1440.5, 936.5], [1440.5, 938.5], [1441.5, 938.5], [1441.5, 939.5], [1442.5, 939.5], [1442.5, 940.5], [1444.5, 940.5]]}, {"id": "twv5b3", "submitted_by": "TheOkada", "name": "Cristinini", "description": "Cristinini channel logo. Cristinini is a top spanish Twitch streamer, reporter and TV presenter. A reference in the spanish GTA roleplay community as one of the top female roleplayers.", "website": "https://www.twitch.tv/iamcristinini", "subreddit": "/r/IamCristinini", "center": [1813.5, 685.5], "path": [[1795.5, 705.5], [1795.5, 665.5], [1831.5, 665.5], [1831.5, 705.5], [1795.5, 705.5]]}, -{"id": "twv58k", "submitted_by": "GoJoeyGo123", "name": "GoodTimesWithScar", "description": "GoodTimesWithScar", "website": "https://www.youtube.com/c/GoodTimesWithScar", "subreddit": "", "center": [892.5, 619.5], "path": [[887.5, 615.5], [896.5, 615.5], [896.5, 623.5], [888.5, 623.5], [887.5, 623.5]]}, {"id": "twv57y", "submitted_by": "SiriHack", "name": "Craftok", "description": "French Minecraft server logo : Craftok", "website": "https://craftok.fr", "subreddit": "/r/Craftok", "center": [335.5, 1902.5], "path": [[330.5, 1897.5], [330.5, 1897.5], [330.5, 1906.5], [340.5, 1906.5], [340.5, 1897.5]]}, -{"id": "twv4z3", "submitted_by": "Mage-of-the-Small", "name": "Horizon (Guerrilla Games)", "description": "An action role-playing game series developed by Guerrilla Games and published by Sony Interactive Entertainment. The plot follows Aloy, a young huntress in a world overrun by machines, who sets out to uncover her past. In the art, you can see Aloy's spear and focus, a Tallneck machine, and various symbols and logos associated with the games", "website": "", "subreddit": "/r/Horizon", "center": [0.5, 0.5], "path": []}, {"id": "twv4xj", "submitted_by": "frtnyt2", "name": "Elephant Necati", "description": "Fil (Elephant) Necati, is a character of the Turkish cartoon Kral Sakir, which is made by Cartoon Network.", "website": "", "subreddit": "", "center": [1642.5, 360.5], "path": [[1612.5, 353.5], [1614.5, 350.5], [1617.5, 349.5], [1626.5, 339.5], [1666.5, 340.5], [1666.5, 346.5], [1673.5, 347.5], [1671.5, 361.5], [1666.5, 360.5], [1660.5, 365.5], [1655.5, 365.5], [1656.5, 373.5], [1647.5, 380.5], [1644.5, 381.5], [1643.5, 391.5], [1648.5, 397.5], [1634.5, 397.5], [1635.5, 391.5], [1634.5, 389.5], [1633.5, 385.5], [1633.5, 383.5], [1634.5, 381.5], [1630.5, 379.5], [1628.5, 379.5], [1626.5, 378.5], [1626.5, 373.5], [1621.5, 366.5], [1620.5, 360.5], [1613.5, 359.5]]}, -{"id": "twv4r8", "submitted_by": "ChadRemEnjoyer", "name": "The defense against the Tunisien rogues", "description": "In the last few hours of r/place, r/Lost, r/Senzawa, r/Place_the_wave, r/Vivy and r/Tunisia fought and helped to defend r/Re_zero against rogue Tunisiens who planned to take over the entire area. The defense was ultimately a success, and they all saw the end of r/place together as comrades.", "website": "", "subreddit": "r/Place_the_wave, r/Senzawa, r/Lost, r/Tunisia, r/Re_zero, r/Vivy ", "center": [1931.5, 803.5], "path": [[1845.5, 792.5], [1845.5, 831.5], [2000.5, 828.5], [2001.5, 769.5], [1920.5, 769.5], [1920.5, 793.5], [1845.5, 792.5], [1851.5, 796.5], [1852.5, 796.5]]}, +{"id": "twv4r8", "submitted_by": "ChadRemEnjoyer", "name": "The defense against the Tunisien rogues", "description": "In the last few hours of r/place, r/Lost, r/Senzawa, r/Place_the_wave, r/Vivy and r/Tunisia fought and helped to defend r/Re_zero against rogue Tunisiens who planned to take over the entire area. The defense was ultimately a success, and they all saw the end of r/place together as comrades.", "website": "", "subreddit": "/r/Place_the_wave, /r/Senzawa, /r/Lost, /r/Tunisia, /r/Re_zero, /r/Vivy, ", "center": [1931.5, 803.5], "path": [[1845.5, 792.5], [1845.5, 831.5], [2000.5, 828.5], [2001.5, 769.5], [1920.5, 769.5], [1920.5, 793.5], [1845.5, 792.5], [1851.5, 796.5], [1852.5, 796.5]]}, {"id": "twv4ew", "submitted_by": "John567852", "name": "The ori-taiwan heart", "description": "The heart that shows the friendship between taiwan and ori, they've helped eachother to stand in this canvas.", "website": "", "subreddit": "/r/OriAndTheBlindForest, /r/taiwan", "center": [966.5, 542.5], "path": [[961.5, 543.5], [961.5, 540.5], [962.5, 540.5], [962.5, 539.5], [963.5, 539.5], [963.5, 538.5], [964.5, 538.5], [964.5, 539.5], [967.5, 539.5], [967.5, 538.5], [968.5, 538.5], [968.5, 539.5], [969.5, 539.5], [969.5, 540.5], [970.5, 540.5], [970.5, 543.5], [969.5, 543.5], [969.5, 544.5], [968.5, 544.5], [968.5, 545.5], [967.5, 545.5], [967.5, 546.5], [966.5, 546.5], [966.5, 547.5], [965.5, 547.5], [965.5, 546.5], [964.5, 546.5], [964.5, 545.5], [963.5, 545.5], [963.5, 544.5], [962.5, 544.5], [962.5, 543.5], [961.5, 543.5], [961.5, 542.5], [961.5, 541.5], [961.5, 540.5]]}, {"id": "twv4eg", "submitted_by": "JimboTheAardvark", "name": "51 Cacha\u00e7a", "description": "A bottle of 51, a brand of cacha\u00e7a (sugarcane distilled alcoholic drink)", "website": "", "subreddit": "", "center": [1223.5, 599.5], "path": [[1221.5, 568.5], [1226.5, 568.5], [1226.5, 579.5], [1231.5, 583.5], [1232.5, 620.5], [1230.5, 623.5], [1215.5, 623.5], [1215.5, 586.5], [1219.5, 580.5], [1221.5, 568.5], [1221.5, 567.5], [1223.5, 570.5]]}, -{"id": "twv4cz", "submitted_by": "Radialsnow4521", "name": "Flag of slovakia", "description": "The flag of Slovakia, along with the Tatra mountains and Slovak television characters.", "website": "", "subreddit": "/r/slovakia", "center": [0.5, 0.5], "path": []}, {"id": "twv4ar", "submitted_by": "Despacitugo", "name": "The Binding of Isaac", "description": "Isaac from the roguelite game The Binding of Isaac: Rebirth. This is his apparence after he picked the items Godhead and Mom's Heels. He also has two Mini-Isaac at his sides, who have the apparence of Judas and a purple imp.", "website": "", "subreddit": "/r/bindingofisaac", "center": [85.5, 329.5], "path": [[68.5, 334.5], [67.5, 330.5], [72.5, 326.5], [71.5, 320.5], [75.5, 313.5], [85.5, 310.5], [92.5, 311.5], [94.5, 313.5], [96.5, 316.5], [97.5, 319.5], [97.5, 324.5], [96.5, 326.5], [95.5, 328.5], [101.5, 328.5], [102.5, 327.5], [104.5, 333.5], [102.5, 336.5], [103.5, 337.5], [101.5, 340.5], [99.5, 341.5], [96.5, 341.5], [94.5, 345.5], [71.5, 345.5], [71.5, 338.5], [68.5, 336.5], [67.5, 335.5], [68.5, 334.5], [67.5, 334.5], [68.5, 334.5], [68.5, 334.5]]}, {"id": "twv497", "submitted_by": "th3_fish_", "name": "Raspberry", "description": "Symbol of Twitch streamer Tsumyka's discord server", "website": "https://www.twitch.tv/tsumyka", "subreddit": "", "center": [1988.5, 905.5], "path": [[1986.5, 915.5], [1988.5, 915.5], [1989.5, 914.5], [1990.5, 913.5], [1992.5, 913.5], [1993.5, 912.5], [1993.5, 911.5], [1994.5, 910.5], [1995.5, 910.5], [1996.5, 909.5], [1996.5, 908.5], [1995.5, 907.5], [1996.5, 906.5], [1996.5, 900.5], [1995.5, 899.5], [1994.5, 899.5], [1993.5, 898.5], [1991.5, 898.5], [1990.5, 897.5], [1989.5, 896.5], [1989.5, 895.5], [1988.5, 894.5], [1987.5, 894.5], [1988.5, 895.5], [1988.5, 896.5], [1987.5, 897.5], [1986.5, 897.5], [1985.5, 898.5], [1984.5, 898.5], [1983.5, 899.5], [1982.5, 899.5], [1981.5, 900.5], [1980.5, 900.5], [1979.5, 900.5], [1978.5, 901.5], [1977.5, 901.5], [1976.5, 902.5], [1978.5, 902.5], [1978.5, 904.5], [1979.5, 905.5], [1980.5, 906.5], [1980.5, 907.5], [1980.5, 908.5], [1981.5, 909.5], [1981.5, 910.5], [1982.5, 911.5], [1983.5, 912.5], [1984.5, 912.5], [1985.5, 913.5], [1985.5, 914.5], [1986.5, 915.5]]}, {"id": "twv46f", "submitted_by": "SourCreamMuffin", "name": "ENIB Logo", "description": "Logo of the \u00c9cole Nationale d'Ing\u00e9nieurs de Brest. An engineering school located in Brest, France.", "website": "https://www.enib.fr/fr/", "subreddit": "", "center": [1832.5, 1463.5], "path": [[1822.5, 1460.5], [1842.5, 1460.5], [1842.5, 1465.5], [1822.5, 1465.5], [1822.5, 1460.5]]}, @@ -3079,7 +2882,7 @@ {"id": "twv3wq", "submitted_by": "minecrafter2301", "name": "Flag of Nicaragua", "description": "", "website": "", "subreddit": "", "center": [1119.5, 1393.5], "path": [[1083.5, 1371.5], [1083.5, 1414.5], [1155.5, 1414.5], [1155.5, 1371.5], [1083.5, 1371.5]]}, {"id": "twv3sk", "submitted_by": "sealmealdeal", "name": "Kenny Mccormick", "description": "hes a kid from South Park! he has died in almost every episode from season 1 to season 5, he has died 126 times in the whole show.", "website": "", "subreddit": "/r/southpark", "center": [500.5, 1518.5], "path": [[495.5, 1494.5], [495.5, 1494.5], [495.5, 1494.5], [495.5, 1494.5], [489.5, 1495.5], [487.5, 1497.5], [484.5, 1497.5], [484.5, 1499.5], [481.5, 1501.5], [478.5, 1505.5], [477.5, 1526.5], [485.5, 1534.5], [492.5, 1542.5], [509.5, 1542.5], [521.5, 1531.5], [522.5, 1510.5], [517.5, 1502.5], [510.5, 1497.5], [508.5, 1495.5]]}, {"id": "twv3pa", "submitted_by": "mejeres", "name": "Tool", "description": "The logo of the metal band Tool for their latest album Fear Inoculum", "website": "", "subreddit": "/r/ToolBand", "center": [253.5, 995.5], "path": [[221.5, 990.5], [284.5, 990.5], [284.5, 1000.5], [221.5, 1000.5]]}, -{"id": "twv3ns", "submitted_by": "Jansel_", "name": "r/osuplace's Windows XP Taskbarbutton", "description": "In Collaboration with r/PlaceStart and r/osuplace this button was created as r/osuplace was one of the major factions.", "website": "https://osu.ppy.sh/", "subreddit": "/r/osuplace", "center": [246.5, 1985.5], "path": [[200.5, 1973.5], [292.5, 1974.5], [292.5, 1997.5], [200.5, 1997.5]]}, +{"id": "twv3ns", "submitted_by": "Jansel_", "name": "r/osuplace's Windows XP taskbar button", "description": "In collaboration with r/PlaceStart and r/osuplace, this button was created as r/osuplace was one of the major factions.", "website": "https://osu.ppy.sh/", "subreddit": "/r/PlaceStart, /r/osuplace, ", "center": [246.5, 1985.5], "path": [[200.5, 1973.5], [292.5, 1974.5], [292.5, 1997.5], [200.5, 1997.5]]}, {"id": "twv3kd", "submitted_by": "mrjustaboss", "name": "NinoFace", "description": "A zoomed-in shot of Nino's face from Fire Emblem Heroes. Nino was a playable character in Fire Emblem: The Blazing Blade. Also a FrankerFaceZ emote.", "website": "https://fireemblem.fandom.com/wiki/Nino", "subreddit": "/r/FireEmblemHeroes", "center": [16.5, 1021.5], "path": [[8.5, 1013.5], [8.5, 1028.5], [23.5, 1028.5], [23.5, 1013.5], [16.5, 1013.5]]}, {"id": "twv3et", "submitted_by": "Pleube64ivy", "name": "Wilbur Soot", "description": "Art of Wilbur Soot; youtuber, twitch streamer and musician's profile picture. One of his characters from the dreamsmp, ghostbur, sits in the bottom right corner.", "website": "https://www.twitch.tv/wilbursoot", "subreddit": "/r/WilburSoot", "center": [1836.5, 1482.5], "path": [[1821.5, 1466.5], [1848.5, 1466.5], [1847.5, 1487.5], [1856.5, 1487.5], [1856.5, 1496.5], [1821.5, 1496.5]]}, {"id": "twv3em", "submitted_by": "aquaticflamess", "name": "Zelda: Remains of the Master Sword", "description": "The iconic Blade of Evil's Bane from The Legend of Zelda Franchise. First appearance, ALttP (1991).", "website": "", "subreddit": "/r/Zelda", "center": [1924.5, 516.5], "path": [[1916.5, 501.5], [1922.5, 501.5], [1924.5, 496.5], [1927.5, 502.5], [1926.5, 502.5], [1926.5, 534.5], [1924.5, 537.5], [1922.5, 534.5], [1922.5, 505.5]]}, @@ -3087,11 +2890,11 @@ {"id": "twv3c0", "submitted_by": "_chickentoast", "name": "The Outlet", "description": "In the early stages of r/place a cable connected the French nuclear reactor with the German outlet. This symbolizes the German dependence on French electricity. It was decided that all German nuclear reactors and coal power plants should be shut down for 'green energy' which led to this dependence. Kinda ironic...", "website": "https://energytransition.org/2015/06/germany-reliant-on-foreign-nuclear-power/", "subreddit": "/r/placede", "center": [1208.5, 841.5], "path": [[1214.5, 840.5], [1214.5, 839.5], [1213.5, 839.5], [1213.5, 838.5], [1209.5, 838.5], [1209.5, 837.5], [1207.5, 837.5], [1207.5, 838.5], [1206.5, 838.5], [1205.5, 838.5], [1205.5, 839.5], [1205.5, 842.5], [1204.5, 843.5], [1203.5, 844.5], [1202.5, 844.5], [1201.5, 842.5], [1201.5, 845.5], [1202.5, 846.5], [1203.5, 846.5], [1204.5, 845.5], [1206.5, 845.5], [1208.5, 845.5], [1210.5, 844.5], [1212.5, 842.5]]}, {"id": "twv37b", "submitted_by": "DieSchoreDrueckt", "name": "Boneworks - VR Game", "description": "Depicts the Logo of the physics based virtual reality game Boneworks by StressLevelZero at the top and pixelart of the enemy type crablet at the bottom.", "website": "https://store.steampowered.com/app/823500/BONEWORKS/", "subreddit": "/r/boneworks", "center": [1541.5, 240.5], "path": [[1532.5, 222.5], [1532.5, 258.5], [1549.5, 258.5], [1549.5, 222.5]]}, {"id": "twv37a", "submitted_by": "Darksparker17", "name": "Tsukasa Yuzaki", "description": "Main heroine in the manga/anime series TONIKAWA: Over the Moon For You, or alternatively Tonikaku Kawaii. A comedy/romance series about a newlywed couple who love each other very much.", "website": "https://tonikawa.com/", "subreddit": "/r/TonikakuCawaii", "center": [273.5, 789.5], "path": [[281.5, 802.5], [281.5, 798.5], [282.5, 795.5], [282.5, 792.5], [281.5, 789.5], [281.5, 780.5], [280.5, 776.5], [271.5, 773.5], [266.5, 777.5], [266.5, 781.5], [264.5, 782.5], [262.5, 782.5], [261.5, 785.5], [262.5, 787.5], [262.5, 787.5], [261.5, 789.5], [264.5, 791.5], [266.5, 791.5], [268.5, 793.5], [269.5, 797.5], [270.5, 806.5], [273.5, 806.5], [274.5, 802.5], [275.5, 801.5], [276.5, 803.5], [277.5, 806.5], [280.5, 806.5], [281.5, 805.5], [281.5, 800.5]]}, -{"id": "twv34y", "submitted_by": "Mystery5Me", "name": "Enigma, the Pachirisu", "description": "This critter is Enigma the Pachirisu, created by u/Mystery5Me. Enigma got placed here by the efforts of his personal friends as well as with assistance from the r/oneshot subreddit. This is his second iteration - his first version got destroyed during the first expansion of the canvas by the r/Canucks subreddit. Despite that, he was rebuilt and defended until the very end. Enigma was allies with Arceus from Pokemon on r/place, as well as the OneShot subreddit. 'I could never have made it here without the combined strength of all my friends!' - Enigma", "website": "https://www.twitter.com/Mystery2Me", "subreddit": "/r/oneshot", "center": [1677.5, 540.5], "path": [[1671.5,537.5], [1672.5,536.5], [1677.5,536.5], [1678.5,537.5], [1678.5,542.5], [1677.5,543.5], [1672.5,543.5], [1671.5,542.5]]}, +{"id": "twv34y", "submitted_by": "Mystery5Me", "name": "Enigma, the Pachirisu", "description": "This critter is Enigma the Pachirisu, created by u/Mystery5Me. Enigma got placed here by the efforts of his personal friends as well as with assistance from the r/oneshot subreddit. This is his second iteration - his first version got destroyed during the first expansion of the canvas by the r/Canucks subreddit. Despite that, he was rebuilt and defended until the very end. Enigma was allies with Arceus from Pokemon on r/place, as well as the OneShot subreddit. 'I could never have made it here without the combined strength of all my friends!' - Enigma", "website": "https://www.twitter.com/Mystery2Me", "subreddit": "/r/oneshot", "center": [1677.5, 540.5], "path": [[1671.5, 537.5], [1672.5, 536.5], [1677.5, 536.5], [1678.5, 537.5], [1678.5, 542.5], [1677.5, 543.5], [1672.5, 543.5], [1671.5, 542.5]]}, {"id": "twv344", "submitted_by": "remsoffyt", "name": "r/fuckcars road system", "description": "", "website": "", "subreddit": "/r/fuckcars", "center": [1077.5, 923.5], "path": [[910.5, 799.5], [910.5, 721.5], [906.5, 721.5], [906.5, 716.5], [1122.5, 715.5], [1123.5, 667.5], [1118.5, 664.5], [1117.5, 652.5], [1122.5, 647.5], [1123.5, 607.5], [1115.5, 602.5], [1108.5, 594.5], [1111.5, 586.5], [1117.5, 581.5], [1126.5, 580.5], [1131.5, 579.5], [1135.5, 576.5], [1137.5, 568.5], [1143.5, 568.5], [1139.5, 575.5], [1135.5, 580.5], [1137.5, 583.5], [1141.5, 587.5], [1143.5, 591.5], [1144.5, 597.5], [1137.5, 604.5], [1130.5, 606.5], [1127.5, 608.5], [1129.5, 647.5], [1132.5, 650.5], [1136.5, 655.5], [1134.5, 661.5], [1130.5, 664.5], [1130.5, 704.5], [1136.5, 710.5], [1137.5, 720.5], [1135.5, 727.5], [1128.5, 733.5], [1129.5, 755.5], [1129.5, 790.5], [1128.5, 821.5], [1130.5, 848.5], [1129.5, 868.5], [1130.5, 1013.5], [1128.5, 1040.5], [1128.5, 1062.5], [1128.5, 1086.5], [1129.5, 1114.5], [1128.5, 1137.5], [1109.5, 1155.5], [1108.5, 1176.5], [1100.5, 1174.5], [1099.5, 1153.5], [1108.5, 1141.5], [1117.5, 1134.5], [1116.5, 1113.5], [1115.5, 1094.5], [1117.5, 1075.5], [1115.5, 1053.5], [1083.5, 1053.5], [1030.5, 1104.5], [1037.5, 1110.5], [1042.5, 1123.5], [1033.5, 1131.5], [1026.5, 1135.5], [1025.5, 1157.5], [1023.5, 1167.5], [1017.5, 1164.5], [1014.5, 1151.5], [1015.5, 1134.5], [1011.5, 1132.5], [1003.5, 1129.5], [997.5, 1121.5], [903.5, 1122.5], [902.5, 1115.5], [917.5, 1115.5], [999.5, 1116.5], [1003.5, 1109.5], [1011.5, 1103.5], [1019.5, 1100.5], [1024.5, 1098.5], [1062.5, 1057.5], [1066.5, 1052.5], [1083.5, 1040.5], [1101.5, 1039.5], [1115.5, 1038.5], [1117.5, 1039.5], [1116.5, 1011.5], [1118.5, 865.5], [1117.5, 847.5], [1120.5, 838.5], [1123.5, 831.5], [1124.5, 820.5], [1123.5, 734.5], [1111.5, 720.5], [916.5, 721.5], [916.5, 797.5]]}, {"id": "twv336", "submitted_by": "Lunar_Pixel", "name": "Holy Flame", "description": "The Okranite bible from Kenshi. For citizens of the Holy Nation it is necessary to carry one at all times.", "website": "", "subreddit": "/r/Kenshi", "center": [1615.5, 343.5], "path": [[1608.5, 343.5], [1612.5, 338.5], [1617.5, 338.5], [1622.5, 344.5], [1616.5, 350.5], [1615.5, 350.5]]}, {"id": "twv2zk", "submitted_by": "_sheinz", "name": "Nymn", "description": "Swedish variety streamer on Twitch (the art is not Nymn, but the emote Okayeg), famous for Radio Kappa, Nymn's New Year Awards and an extreme obsession with Forsen", "website": "https://twitch.tv/nymn", "subreddit": "/r/RedditAndChill", "center": [681.5, 914.5], "path": [[656.5, 890.5], [704.5, 890.5], [704.5, 942.5], [691.5, 942.5], [690.5, 939.5], [670.5, 939.5], [670.5, 938.5], [665.5, 938.5], [665.5, 932.5], [656.5, 932.5], [656.5, 926.5]]}, -{"id": "twv2re", "submitted_by": "GoJoeyGo123", "name": "Tango Tek", "description": "Tango Tek", "website": "https://www.youtube.com/user/TangoTekLP", "subreddit": "", "center": [883.5, 611.5], "path": [[879.5, 607.5], [887.5, 607.5], [887.5, 615.5], [878.5, 615.5], [878.5, 607.5]]}, +{"id": "twv2re", "submitted_by": "GoJoeyGo123", "name": "Tango Tek", "description": "", "website": "https://www.youtube.com/user/TangoTekLP", "subreddit": "/r/hermitcraft", "center": [883.5, 611.5], "path": [[879.5, 607.5], [887.5, 607.5], [887.5, 615.5], [878.5, 615.5], [878.5, 607.5]]}, {"id": "twv2mb", "submitted_by": "RevTheMeerkat", "name": "Non Binary Flag with Medi", "description": "Non Binary Flag with Medi made from Revmeerkat's community", "website": "https://www.twitch.tv/revmeerkat", "subreddit": "/r/revmeerkat", "center": [1595.5, 796.5], "path": [[1590.5, 793.5], [1600.5, 793.5], [1600.5, 798.5], [1590.5, 798.5]]}, {"id": "twv2in", "submitted_by": "thelolo_007", "name": "Lego Eda", "description": "Lego Eda is a fanart of The Owl House's character 'Eda' which became a meme inside the show's fandom. GET LEGO EDA'D", "website": "", "subreddit": "/r/TheOwlHouse", "center": [471.5, 1042.5], "path": [[475.5, 1048.5], [469.5, 1048.5], [469.5, 1044.5], [468.5, 1044.5], [467.5, 1043.5], [467.5, 1040.5], [468.5, 1039.5], [468.5, 1038.5], [469.5, 1037.5], [474.5, 1037.5], [476.5, 1041.5], [475.5, 1041.5], [475.5, 1043.5], [474.5, 1043.5], [474.5, 1046.5], [475.5, 1046.5]]}, {"id": "twv2hm", "submitted_by": "Shlugo", "name": "2B (NieR:Automata)", "description": "2B is the main character of the game NieR:Auomata. An advanced android, who's part of organization tasked with retaking the Earth from Machine Lifeforms", "website": "", "subreddit": "/r/nier", "center": [25.5, 359.5], "path": [[35.5, 369.5], [18.5, 369.5], [17.5, 352.5], [24.5, 347.5], [31.5, 349.5], [32.5, 363.5]]}, @@ -3101,28 +2904,22 @@ {"id": "twv25e", "submitted_by": "Alisdairy", "name": "Crabbo", "description": "A tribute to Maryland's beloved and regal blue crab, the pride of the Chesapeake Bay. A great combination with Old bay.", "website": "https://www.reddit.com/r/maryland/", "subreddit": "/r/maryland", "center": [1600.5, 1808.5], "path": [[1595.5, 1799.5], [1596.5, 1797.5], [1595.5, 1796.5], [1592.5, 1796.5], [1590.5, 1797.5], [1589.5, 1798.5], [1587.5, 1799.5], [1587.5, 1803.5], [1588.5, 1804.5], [1589.5, 1805.5], [1589.5, 1806.5], [1588.5, 1806.5], [1587.5, 1807.5], [1587.5, 1809.5], [1588.5, 1810.5], [1588.5, 1811.5], [1587.5, 1812.5], [1587.5, 1814.5], [1588.5, 1815.5], [1588.5, 1817.5], [1598.5, 1817.5], [1598.5, 1814.5], [1603.5, 1814.5], [1604.5, 1815.5], [1605.5, 1816.5], [1605.5, 1818.5], [1614.5, 1818.5], [1614.5, 1807.5], [1613.5, 1806.5], [1612.5, 1807.5], [1611.5, 1808.5], [1610.5, 1808.5], [1609.5, 1809.5], [1608.5, 1809.5], [1608.5, 1807.5], [1609.5, 1807.5], [1610.5, 1806.5], [1611.5, 1805.5], [1612.5, 1805.5], [1612.5, 1802.5], [1611.5, 1802.5], [1607.5, 1799.5], [1604.5, 1798.5], [1603.5, 1799.5], [1606.5, 1803.5], [1603.5, 1803.5], [1603.5, 1801.5], [1597.5, 1801.5], [1597.5, 1803.5], [1596.5, 1804.5], [1594.5, 1804.5], [1594.5, 1805.5], [1593.5, 1805.5], [1592.5, 1804.5], [1591.5, 1803.5]]}, {"id": "twv1z1", "submitted_by": "scawasioe", "name": "Ononoki Yotsugi's Hat", "description": "The unique orange hat the Monogatari series character Ononoki Yotsugi wears with a cyan outline around it.", "website": "https://monogatari-usa.com/", "subreddit": "/r/araragi", "center": [1807.5, 412.5], "path": [[1790.5, 406.5], [1796.5, 404.5], [1800.5, 404.5], [1806.5, 408.5], [1810.5, 408.5], [1815.5, 404.5], [1827.5, 405.5], [1824.5, 410.5], [1819.5, 414.5], [1813.5, 414.5], [1817.5, 416.5], [1815.5, 420.5], [1813.5, 422.5], [1801.5, 422.5], [1798.5, 419.5], [1798.5, 416.5], [1795.5, 413.5], [1791.5, 412.5], [1789.5, 409.5], [1791.5, 406.5]]}, {"id": "twv1q2", "submitted_by": "Chonkitty", "name": "Darmstadt University of Applied Sciences", "description": "University located in Darmstadt, Germany. Its roots go back to 1876.", "website": "https://h-da.de/", "subreddit": "", "center": [1886.5, 40.5], "path": [[1877.5, 35.5], [1877.5, 44.5], [1894.5, 44.5], [1894.5, 35.5], [1877.5, 35.5]]}, -{"id": "twv1pi", "submitted_by": "watiCYTECH", "name": "EISTI", "description": "French engineering school with the worst recruits in Europe", "website": "", "subreddit": "", "center": [1747.5, 1605.5], "path": [[1733.5, 1601.5], [1761.5, 1600.5], [1760.5, 1610.5], [1761.5, 1610.5], [1761.5, 1610.5], [1733.5, 1611.5]]}, {"id": "twv1ns", "submitted_by": "Dare_Tano", "name": "Minecraft Redstone", "description": "Redstone is a material from the game Minecraft that can be used to make several elaborate contraptions. Pictured from left to right is a redstone dust item, redstone dust when placed, and a piston, which pushes blocks.", "website": "", "subreddit": "/r/redstone", "center": [1556.5, 1656.5], "path": [[1533.5, 1667.5], [1533.5, 1646.5], [1579.5, 1646.5], [1579.5, 1664.5], [1578.5, 1664.5], [1578.5, 1665.5], [1577.5, 1665.5], [1577.5, 1667.5], [1551.5, 1667.5], [1551.5, 1664.5], [1549.5, 1664.5], [1549.5, 1665.5], [1548.5, 1665.5], [1548.5, 1666.5], [1547.5, 1666.5], [1547.5, 1667.5]]}, -{"id": "twv1ih", "submitted_by": "GoJoeyGo123", "name": "docm77", "description": "docm77", "website": "https://www.youtube.com/c/docm77", "subreddit": "", "center": [874.5, 619.5], "path": [[869.5, 615.5], [878.5, 615.5], [878.5, 623.5], [869.5, 623.5]]}, {"id": "twv15c", "submitted_by": "aquaticflamess", "name": "Metroid Screw Attack Logo", "description": "One of Samus Aran's most iconic and powerful Power Suit upgrades. Accompanied by a mini Chozo metroid sprite", "website": "", "subreddit": "/r/Metroid", "center": [1311.5, 1869.5], "path": [[1308.5, 1857.5], [1302.5, 1861.5], [1300.5, 1867.5], [1301.5, 1875.5], [1304.5, 1879.5], [1301.5, 1883.5], [1309.5, 1880.5], [1315.5, 1880.5], [1320.5, 1877.5], [1322.5, 1873.5], [1322.5, 1870.5], [1323.5, 1868.5], [1323.5, 1865.5], [1319.5, 1865.5], [1316.5, 1862.5], [1322.5, 1854.5], [1322.5, 1853.5], [1314.5, 1857.5], [1311.5, 1857.5]]}, {"id": "twv0w7", "submitted_by": "mysterybiscuitsoyeah", "name": "r/eightysix 'Art 3'", "description": "86 is an anime, light novel and manga series written by Asato Asato, with season one of the anime series finishing in March 2022. This third entry depicts the female protagonist of the series, Lena. Original artist credit: @pk60225 on Twitter", "website": "https://anime-86.com/", "subreddit": "/r/eightysix", "center": [989.5, 1798.5], "path": [[992.5, 1768.5], [988.5, 1768.5], [987.5, 1768.5], [987.5, 1769.5], [986.5, 1770.5], [985.5, 1771.5], [984.5, 1771.5], [983.5, 1772.5], [983.5, 1774.5], [983.5, 1775.5], [981.5, 1775.5], [981.5, 1776.5], [980.5, 1776.5], [979.5, 1777.5], [978.5, 1778.5], [977.5, 1780.5], [976.5, 1781.5], [975.5, 1783.5], [975.5, 1786.5], [974.5, 1786.5], [974.5, 1787.5], [973.5, 1788.5], [972.5, 1789.5], [972.5, 1791.5], [973.5, 1792.5], [973.5, 1798.5], [974.5, 1799.5], [974.5, 1803.5], [975.5, 1803.5], [976.5, 1803.5], [976.5, 1813.5], [977.5, 1813.5], [977.5, 1814.5], [979.5, 1814.5], [979.5, 1816.5], [980.5, 1817.5], [980.5, 1818.5], [982.5, 1818.5], [982.5, 1824.5], [983.5, 1824.5], [983.5, 1826.5], [985.5, 1827.5], [995.5, 1827.5], [995.5, 1824.5], [996.5, 1820.5], [997.5, 1820.5], [998.5, 1819.5], [998.5, 1817.5], [1000.5, 1817.5], [1000.5, 1814.5], [1001.5, 1814.5], [1001.5, 1813.5], [1002.5, 1813.5], [1002.5, 1804.5], [1004.5, 1804.5], [1004.5, 1796.5], [1002.5, 1796.5], [1002.5, 1782.5], [1001.5, 1782.5], [1001.5, 1780.5], [1000.5, 1780.5], [1000.5, 1778.5], [999.5, 1778.5], [999.5, 1777.5], [998.5, 1777.5], [998.5, 1776.5], [997.5, 1776.5], [997.5, 1775.5], [995.5, 1775.5], [995.5, 1770.5], [994.5, 1770.5], [994.5, 1769.5], [993.5, 1769.5], [993.5, 1768.5], [992.5, 1768.5]]}, {"id": "twv0vg", "submitted_by": "HelloMegat_000", "name": "Megat_000 (Icon #2)", "description": "Megat_000 is a musician, focused on the EDM.", "website": "https://sites.google.com/view/megmusic/official-website", "subreddit": "/r/LaCasaDeMegat_000", "center": [1022.5, 1652.5], "path": [[1019.5, 1649.5], [1023.5, 1649.5], [1023.5, 1650.5], [1024.5, 1650.5], [1024.5, 1654.5], [1020.5, 1654.5], [1020.5, 1652.5], [1019.5, 1652.5], [1019.5, 1649.5], [1023.5, 1649.5], [1023.5, 1650.5], [1024.5, 1650.5], [1024.5, 1654.5], [1020.5, 1654.5], [1019.5, 1654.5]]}, -{"id": "twv0ob", "submitted_by": "Alathic", "name": "Queen's University", "description": "The logo of Queen's University in Kingston, Ontario, Canada", "website": "https://www.queensu.ca/", "subreddit": "/r/queensuniversity", "center": [0.5, 0.5], "path": []}, {"id": "twv0mj", "submitted_by": "Lunar_Pixel", "name": "Beep! Sign", "description": "A simple sign that says Beep!", "website": "", "subreddit": "/r/Kenshi", "center": [1607.5, 312.5], "path": [[1598.5, 308.5], [1616.5, 308.5], [1616.5, 315.5], [1598.5, 315.5], [1598.5, 315.5]]}, {"id": "twv0lb", "submitted_by": "Alisdairy", "name": "Tribute to Baltimore", "description": "State of Maryland's beloved football team (Ravens), along with our baseball team (Orioles), and the UMBC shield.", "website": "https://www.reddit.com/r/maryland/", "subreddit": "/r/maryland", "center": [1807.5, 715.5], "path": [[1783.5, 706.5], [1783.5, 717.5], [1784.5, 718.5], [1785.5, 719.5], [1785.5, 720.5], [1786.5, 720.5], [1786.5, 721.5], [1786.5, 722.5], [1786.5, 723.5], [1786.5, 724.5], [1830.5, 724.5], [1830.5, 706.5]]}, {"id": "twv0l5", "submitted_by": "PlanetaceOfficial", "name": "Monhouse Beau", "description": "Mon-house is an OC collection created by Twitter artist Luxuriass (18+). The image shown is of their popular bear-girl, Beau, Guinness consumer and milky producer.", "website": "https://twitter.com/Luxuriass", "subreddit": "", "center": [1834.5, 1298.5], "path": [[1842.5, 1285.5], [1842.5, 1283.5], [1823.5, 1284.5], [1820.5, 1287.5], [1817.5, 1290.5], [1819.5, 1292.5], [1827.5, 1293.5], [1832.5, 1301.5], [1832.5, 1315.5], [1829.5, 1317.5], [1841.5, 1321.5]]}, {"id": "twv0ih", "submitted_by": "DrDragonKiller", "name": "SponsorBlock", "description": "Browser Extension for skipping sponsored segments in YouTube Videos. Also supports skipping other categories, such as intros, outros and reminders to subscribe, and skipping to the point with highlight.nData is crowdsourced.", "website": "https://sponsor.ajay.app/", "subreddit": "/r/SponsorBlock", "center": [1274.5, 907.5], "path": [[1279.5, 902.5], [1269.5, 902.5], [1269.5, 903.5], [1268.5, 903.5], [1268.5, 908.5], [1269.5, 908.5], [1269.5, 910.5], [1270.5, 910.5], [1270.5, 911.5], [1271.5, 911.5], [1271.5, 912.5], [1272.5, 912.5], [1272.5, 913.5], [1276.5, 913.5], [1276.5, 912.5], [1277.5, 912.5], [1277.5, 911.5], [1278.5, 911.5], [1278.5, 910.5], [1279.5, 910.5], [1279.5, 908.5], [1280.5, 908.5], [1280.5, 903.5], [1279.5, 903.5]]}, -{"id": "twv0am", "submitted_by": "VladVV", "name": "Marianne", "description": "The personification of the French Revolution, as well as the personification of liberty, equality, fraternity and reason. Appropriately overlaid over both the French and Ukrainian flags.", "website": "", "subreddit": "/r/France", "center": [149.5, 247.5], "path": [[129.5, 252.5], [125.5, 252.5], [125.5, 237.5], [131.5, 230.5], [133.5, 225.5], [143.5, 217.5], [154.5, 216.5], [160.5, 218.5], [160.5, 221.5], [159.5, 222.5], [161.5, 225.5], [160.5, 227.5], [164.5, 229.5], [162.5, 231.5], [164.5, 236.5], [163.5, 237.5], [162.5, 240.5], [165.5, 248.5], [169.5, 253.5], [172.5, 258.5], [174.5, 268.5], [175.5, 279.5], [173.5, 279.5], [171.5, 282.5], [169.5, 277.5], [169.5, 275.5], [160.5, 275.5], [160.5, 267.5], [131.5, 267.5], [128.5, 263.5], [131.5, 259.5], [130.5, 256.5], [128.5, 254.5]]}, {"id": "twv00c", "submitted_by": "yayesye", "name": "Vanis.io logo", "description": "Vanis.io is a web-based action MMO where you divide into pieces and eat other players.", "website": "https://vanis.io/", "subreddit": "", "center": [988.5, 413.5], "path": [[977.5, 409.5], [977.5, 417.5], [987.5, 417.5], [988.5, 418.5], [997.5, 418.5], [998.5, 417.5], [998.5, 409.5], [997.5, 408.5], [989.5, 408.5], [988.5, 409.5]]}, {"id": "twuzvt", "submitted_by": "Lapidification", "name": "ISAB", "description": "ISAB (I Suck At Battles) is a Youtuber who mainly plays games in the Bloons Tower Defense series.", "website": "https://www.youtube.com/c/BTDIsab", "subreddit": "/r/isab", "center": [882.5, 1880.5], "path": [[871.5, 1874.5], [892.5, 1874.5], [892.5, 1885.5], [871.5, 1885.5], [871.5, 1874.5]]}, {"id": "twuzst", "submitted_by": "10PMSEN", "name": "Georgian(country) Flag", "description": "", "website": "", "subreddit": "/r/Sakartvelo", "center": [1802.5, 486.5], "path": [[1782.5, 476.5], [1822.5, 476.5], [1822.5, 496.5], [1782.5, 496.5], [1782.5, 476.5]]}, -{"id": "twuzse", "submitted_by": "watiCYTECH", "name": "EISTI", "description": "French engineering school with the worst recruits in Europe", "website": "", "subreddit": "", "center": [1747.5, 1606.5], "path": [[1761.5, 1601.5], [1761.5, 1611.5], [1733.5, 1611.5], [1733.5, 1601.5]]}, {"id": 0, "name": "Ecuador", "description": "South America Country.", "website": "https://es.wikipedia.org/wiki/Ecuador", "subreddit": "/r/ecuador", "center": [1607.5, 587.5], "path": [[1549.5, 568.5], [1574.5, 569.5], [1577.5, 569.5], [1577.5, 578.5], [1577.5, 579.5], [1678.5, 580.5], [1678.5, 598.5], [1549.5, 598.5]]}, {"id": "twuzgw", "submitted_by": "greese1", "name": "the original four fish", "description": "the original four fish", "website": "", "subreddit": "/r/PlaceFishCult", "center": [477.5, 897.5], "path": [[472.5, 893.5], [482.5, 893.5], [482.5, 901.5], [472.5, 901.5]]}, {"id": "twuzbz", "submitted_by": "WackyPinion", "name": "Bubsy", "description": "Bubsy the Bobcat, star of a series of platform games and mascot of video game publisher Accolade.", "website": "", "subreddit": "/r/the_Bubsy", "center": [1719.5, 558.5], "path": [[1713.5, 549.5], [1713.5, 567.5], [1725.5, 567.5], [1726.5, 549.5]]}, {"id": "twuzax", "submitted_by": "CommercialSoup8914", "name": "Marker", "description": "This pixel art is a mini version of the character, 'marker' from the object show BFDI/BFB. This character has been rebuilt around and around the canvas due to multiple griefs against it, until it stands now in this place.", "website": "", "subreddit": "/r/MarkerBFDI", "center": [782.5, 1717.5], "path": [[779.5, 1713.5], [779.5, 1720.5], [785.5, 1720.5], [785.5, 1713.5], [779.5, 1713.5]]}, {"id": "twuza2", "submitted_by": "ArakosSylzia", "name": "Azur Lane", "description": "the logo of the Gacha game Azur lane featuring USS Enterprise", "website": "https://azurlane.koumakan.jp/wiki/Azur_Lane_Wiki", "subreddit": "/r/azurelane", "center": [1674.5, 1750.5], "path": [[1662.5, 1738.5], [1662.5, 1761.5], [1686.5, 1761.5], [1686.5, 1738.5], [1686.5, 1738.5], [1686.5, 1738.5]]}, -{"id": "twuz9h", "submitted_by": "cool-guy1234567", "name": "Ori", "description": "A reference to the Ori games", "website": "", "subreddit": "/r/OriAndTheBlindForest", "center": [1395.5, 109.5], "path": [[1380.5, 104.5], [1400.5, 97.5], [1400.5, 106.5], [1406.5, 107.5], [1410.5, 115.5], [1405.5, 120.5], [1389.5, 116.5], [1385.5, 115.5]]}, {"id": "twuz6n", "submitted_by": "WarRica", "name": "Elephant Necati", "description": "The character named Elephant Necati in the Turkish cartoon named Kral \u015eakir.", "website": "", "subreddit": "", "center": [1641.5, 363.5], "path": [[1651.5, 397.5], [1632.5, 397.5], [1632.5, 392.5], [1627.5, 392.5], [1627.5, 379.5], [1611.5, 355.5], [1612.5, 352.5], [1628.5, 339.5], [1666.5, 340.5], [1666.5, 346.5], [1672.5, 348.5], [1673.5, 360.5], [1668.5, 360.5], [1668.5, 358.5], [1658.5, 366.5], [1656.5, 365.5], [1656.5, 377.5], [1651.5, 378.5], [1651.5, 397.5]]}, {"id": "twuyyt", "submitted_by": "Cordon-Bleu", "name": "Shovel Knight", "description": "A character from the 2013 indie game Shovel Knight", "website": "", "subreddit": "/r/ShovelKnight", "center": [682.5, 305.5], "path": [[689.5, 291.5], [670.5, 291.5], [671.5, 319.5], [693.5, 319.5], [693.5, 291.5], [689.5, 291.5]]}, {"id": "twuywp", "submitted_by": "PratzStrike", "name": "Zentreya Banana", "description": "This is pixel art of the Twitch Vtuber streamer Zentreya's emote zentreBanana - a 'smelly gecko in a banana suit'.", "website": "https://www.twitch.tv/zentreya", "subreddit": "/r/Zentreya", "center": [733.5, 1086.5], "path": [[720.5, 1073.5], [720.5, 1099.5], [745.5, 1099.5], [745.5, 1073.5], [720.5, 1073.5]]}, @@ -3140,13 +2937,11 @@ {"id": "twuxn0", "submitted_by": "ThatDudeIsShort", "name": "Sanae Kochiya", "description": "Sanae Kochiya is one of the characters in Touhou Project.", "website": "", "subreddit": "/r/Touhou", "center": [1582.5, 1504.5], "path": [[1570.5, 1490.5], [1593.5, 1490.5], [1593.5, 1518.5], [1570.5, 1518.5]]}, {"id": "twuxf9", "submitted_by": "Feking98", "name": "Hololive Miscellaneous symbols", "description": "YMD: Laplus darkness catchphase but was quickly shorten by into YMD and then Yamada.nCarrot(Nekko): Mascot representing Momosuzu Nene fanbase, also called HusbandsnTMT: Towa Maji Tenshi(Towa is an angel), popular meme of Tokoyami Towa who keeps calling herself a devil despite the only devilish thing about her is her singing voicenSheep(Watamates): Mascot representing Tsunomaki Watame fanbase. May or may not be use as emergency food.", "website": "", "subreddit": "/r/hololive", "center": [253.5, 803.5], "path": [[245.5, 781.5], [259.5, 781.5], [259.5, 793.5], [257.5, 793.5], [257.5, 817.5], [258.5, 818.5], [258.5, 828.5], [256.5, 830.5], [250.5, 830.5], [250.5, 808.5], [253.5, 803.5], [253.5, 800.5], [247.5, 791.5]]}, {"id": "twux26", "submitted_by": "scorpion24100", "name": "Ableton Live 11", "description": "Ableton 11 is a DAW (digital audio workstation) used for producing music and other audio related projects.", "website": "https://www.ableton.com/en/live/", "subreddit": "/r/ableton", "center": [745.5, 1985.5], "path": [[733.5, 1974.5], [733.5, 1996.5], [756.5, 1996.5], [756.5, 1974.5]]}, -{"id": "twuwzp", "submitted_by": "materialysis", "name": "Honorable Swiss flag", "description": "Small flag of Switzerland in a heart shape placed by Star Wars in honor of their alliance on the earlier Star Wars art.", "website": "", "subreddit": "/r/switzerland", "center": [0.5, 0.5], "path": []}, {"id": "twuwv0", "submitted_by": "cissedo", "name": "Bomberman", "description": "Hero of the Bomberman video game series.", "website": "", "subreddit": "/r/bomberman", "center": [417.5, 1812.5], "path": [[416.5, 1801.5], [415.5, 1802.5], [414.5, 1803.5], [413.5, 1804.5], [412.5, 1805.5], [412.5, 1811.5], [413.5, 1812.5], [412.5, 1813.5], [411.5, 1814.5], [410.5, 1815.5], [410.5, 1817.5], [412.5, 1817.5], [412.5, 1818.5], [411.5, 1819.5], [411.5, 1821.5], [423.5, 1821.5], [423.5, 1819.5], [422.5, 1818.5], [423.5, 1817.5], [424.5, 1816.5], [424.5, 1814.5], [423.5, 1814.5], [422.5, 1813.5], [421.5, 1812.5], [422.5, 1811.5], [422.5, 1804.5], [421.5, 1804.5], [420.5, 1803.5], [419.5, 1802.5], [418.5, 1801.5], [416.5, 1801.5]]}, {"id": "twuwsf", "submitted_by": "Sorrells_", "name": "Haskell Logo", "description": "The logo of the functional programming language Haskell", "website": "https://www.haskell.org/", "subreddit": "/r/haskell", "center": [1554.5, 1286.5], "path": [[1550.5, 1282.5], [1558.5, 1282.5], [1558.5, 1289.5], [1550.5, 1289.5]]}, {"id": "twuwh2", "submitted_by": "Will2Meme", "name": "Michiru (BNA)", "description": "BNA or Brand New Animal is anime about furries and no one can say otherwise.", "website": "", "subreddit": "/r/brandnewanimal", "center": [1374.5, 1956.5], "path": [[1365.5, 1949.5], [1382.5, 1949.5], [1382.5, 1963.5], [1365.5, 1963.5]]}, {"id": "twuwa9", "submitted_by": "thegangstaghost", "name": "FREE THAIBOY!", "description": "FREE THAIBOY is a phrase that gained popularity in the drain gang community after Swedish-Thai rapper Thaiboy digital wasnt allowed to perform in Canada", "website": "", "subreddit": "/r/sadboys", "center": [1596.5, 416.5], "path": [[1569.5, 412.5], [1623.5, 412.5], [1623.5, 420.5], [1569.5, 420.5]]}, {"id": "twuw64", "submitted_by": "PratzStrike", "name": "Haruka Karibu", "description": "This is pixel art of the Vtuber Twitch streamer Haruka Karibu's emote haruchiLove.", "website": "https://www.twitch.tv/harukakaribu", "subreddit": "", "center": [652.5, 1084.5], "path": [[637.5, 1099.5], [637.5, 1069.5], [667.5, 1069.5], [667.5, 1099.5], [637.5, 1099.5]]}, -{"id": "twuvya", "submitted_by": "Ryubot", "name": "Monero", "description": "Monero is the leading cryptocurrency focused on private and censorship-resistant transactions.", "website": "https://www.getmonero.org/", "subreddit": "/r/monero", "center": [0.5, 0.5], "path": []}, {"id": "twuvno", "submitted_by": "ShadowPuppet99", "name": "Watson Amelia", "description": "Hololive EN 1st Generation (Myth) Vtuber Watson Amelia. Smol and has a Moustache.", "website": "https://www.youtube.com/channel/UCyl1z3jo3XHR1riLFKG5UAg", "subreddit": "/r/Hololive", "center": [1339.5, 938.5], "path": [[1337.5, 929.5], [1332.5, 935.5], [1336.5, 948.5], [1342.5, 948.5], [1346.5, 935.5], [1341.5, 929.5]]}, {"id": "twuvdp", "submitted_by": "CleefHanger", "name": "Hidden NooberHood", "description": "The hidden village of the little chickens that started in 2020 and fought bravely in the pixel war with our friendly neighbors.", "website": "https://shadowro.es/", "subreddit": "", "center": [1122.5, 1317.5], "path": [[1131.5, 1314.5], [1112.5, 1314.5], [1112.5, 1319.5], [1131.5, 1320.5], [1131.5, 1320.5], [1131.5, 1319.5], [1131.5, 1318.5], [1131.5, 1318.5], [1131.5, 1316.5], [1131.5, 1315.5], [1131.5, 1315.5]]}, {"id": "twuvcn", "submitted_by": "remsoffyt", "name": "Ariane V rocket", "description": "European rocket, shot in French Guiana.", "website": "", "subreddit": "/r/PlaceFrance", "center": [1164.5, 795.5], "path": [[1157.5, 782.5], [1157.5, 803.5], [1157.5, 812.5], [1158.5, 817.5], [1161.5, 819.5], [1162.5, 824.5], [1164.5, 824.5], [1164.5, 825.5], [1165.5, 824.5], [1166.5, 824.5], [1167.5, 819.5], [1169.5, 817.5], [1170.5, 812.5], [1170.5, 781.5], [1169.5, 780.5], [1168.5, 779.5], [1167.5, 778.5], [1167.5, 766.5], [1166.5, 766.5], [1166.5, 763.5], [1164.5, 762.5], [1164.5, 761.5], [1163.5, 761.5], [1161.5, 763.5], [1160.5, 769.5], [1160.5, 778.5], [1160.5, 780.5], [1159.5, 780.5]]}, @@ -3169,34 +2964,32 @@ {"id": "twut2n", "submitted_by": "53-45-58-4D-41-4E", "name": "Paymoneywubby", "description": "Wubby, Alluxx, HP and CheetonRIP Cheeto", "website": "", "subreddit": "/r/paymoneywubby", "center": [92.5, 428.5], "path": [[59.5, 420.5], [125.5, 420.5], [125.5, 436.5], [59.5, 436.5]]}, {"id": "twusxr", "submitted_by": "Oponik", "name": "Kaheru", "description": "This pixel art is for an individual orange Filipino v-tuber, Kaheru. Made by r/Philippines", "website": "https://www.youtube.com/channel/UCIoRFfQdwgErIokdU4Zb-Sg", "subreddit": "/r/Philippines", "center": [447.5, 1670.5], "path": [[442.5, 1674.5], [443.5, 1673.5], [442.5, 1672.5], [442.5, 1670.5], [443.5, 1666.5], [444.5, 1665.5], [450.5, 1665.5], [450.5, 1667.5], [451.5, 1667.5], [451.5, 1669.5], [452.5, 1671.5], [452.5, 1673.5], [452.5, 1674.5], [452.5, 1675.5], [442.5, 1675.5]]}, {"id": "twuste", "submitted_by": "casey9412", "name": "Etherea", "description": "Logo of a music production discord server", "website": "https://discord.gg/CEBZ2dFe3A", "subreddit": "", "center": [880.5, 1781.5], "path": [[872.5, 1773.5], [888.5, 1773.5], [888.5, 1789.5], [872.5, 1789.5]]}, -{"id": "vgn1", "submitted_by": "HydroNitrogen", "name": "QR: \"A meat eaters case against veganism\"", "description": "This QR code, placed by a collaboration of various vegan communities, linked to a YouTube video \"A meat eaters case against veganism\" from CosmicSkeptic.", "website": "https://www.youtube.com/watch?v=C1vW9iSpLLk", "subreddit": "/r/vegan", "center": [ 1381.5, 1933.5 ], "path": [ [ 1364.5, 1916.5 ], [ 1398.5, 1916.5 ], [ 1398.5, 1950.5 ], [ 1364.5, 1950.5 ] ] }, -{"id": "vgn2", "submitted_by": "HydroNitrogen", "name": "Large watchdominion.org banner", "description": "The larger one of two watchdominion.org banners, placed by a collaboration of various vegan communities. Dominion is a 2018 documentary about animal treatment in modern agriculture.", "website": "https://watchdominion.org/", "subreddit": "/r/vegan", "center": [ 1829.5, 1583.5 ], "path": [ [ 1785.5, 1554.5 ], [ 1876.5, 1554.5 ], [ 1876.5, 1562.5 ], [ 1873.5, 1562.5 ], [ 1873.5, 1612.5 ], [ 1785.5, 1612.5 ] ] }, -{"id": "vgn3", "submitted_by": "HydroNitrogen", "name": "Small watchdominion.org banner", "description": "The smaller one of two watchdominion.org banners, placed by a collaboration of various vegan communities. Dominion is a 2018 documentary about animal treatment in modern agriculture.", "website": "https://watchdominion.org/", "subreddit": "/r/vegan", "center": [ 1969.5, 902.5 ], "path": [ [ 1938.5, 886.5 ], [ 2000.5, 886.5 ], [ 2000.5, 917.5 ], [ 1938.5, 917.5 ] ] }, +{"id": "vgn1", "submitted_by": "HydroNitrogen", "name": "QR: \"A meat eaters case against veganism\"", "description": "This QR code, placed by a collaboration of various vegan communities, linked to a YouTube video \"A meat eaters case for veganism\" from CosmicSkeptic.", "website": "https://www.youtube.com/watch?v=C1vW9iSpLLk", "subreddit": "/r/vegan", "center": [1381.5, 1933.5], "path": [[1364.5, 1916.5], [1398.5, 1916.5], [1398.5, 1950.5], [1364.5, 1950.5]]}, +{"id": "vgn2", "submitted_by": "HydroNitrogen", "name": "Large watchdominion.org banner", "description": "The larger one of two watchdominion.org banners, placed by a collaboration of various vegan communities. Dominion is a 2018 documentary about animal treatment in modern agriculture.", "website": "https://watchdominion.org/", "subreddit": "/r/vegan", "center": [1829.5, 1583.5], "path": [[1785.5, 1554.5], [1876.5, 1554.5], [1876.5, 1562.5], [1873.5, 1562.5], [1873.5, 1612.5], [1785.5, 1612.5]]}, +{"id": "vgn3", "submitted_by": "HydroNitrogen", "name": "Small watchdominion.org banner", "description": "The smaller one of two watchdominion.org banners, placed by a collaboration of various vegan communities. Dominion is a 2018 documentary about animal treatment in modern agriculture.", "website": "https://watchdominion.org/", "subreddit": "/r/vegan", "center": [1969.5, 902.5], "path": [[1938.5, 886.5], [2000.5, 886.5], [2000.5, 917.5], [1938.5, 917.5]]}, {"id": "twxzts", "submitted_by": "jenyto", "name": "Moogle", "description": "An recurring race in the Final Fantasy series. First appeared in FF3.", "website": "", "subreddit": "/r/finalfantasy", "center": [1278.5, 502.5], "path": [[1270.5, 509.5], [1270.5, 491.5], [1285.5, 491.5], [1285.5, 512.5], [1270.5, 512.5], [1270.5, 510.5]]}, {"id": "twxzrt", "submitted_by": "ReverseDmitry", "name": "STOP WAR", "description": "One of many slogans used by the Russian protesters against the war in Ukraine.", "website": "", "subreddit": "/r/liberta", "center": [710.5, 266.5], "path": [[695.5, 263.5], [695.5, 268.5], [725.5, 268.5], [725.5, 263.5], [695.5, 263.5]]}, {"id": "twxznx", "submitted_by": "Bitter-Position-6754", "name": "Big Boss Life", "description": "It is one of the strongest e-sports teams in Turkey. It is also a Turkish streamer community.", "website": "http://www.bigbosslayf.com/", "subreddit": "", "center": [1478.5, 713.5], "path": [[1442.5, 688.5], [1514.5, 688.5], [1514.5, 739.5], [1443.5, 739.5], [1442.5, 688.5]]}, -{"id": "twxznq", "submitted_by": "MrToro11", "name": "Unicornio", "description": "Unicorn is a Famous Twitch Star, Youtube Star, Model and Instagram Star from Argentina. She has appeared in many videos. She primarily streams Counter Strike, Little Nightmares, and slots. She has a large number of followers. He is one of the most popular guys on Instagram. He usually shares his fashionable outfits and modeling photos on his Instagram. He has continued to increase his popularity on various social media platforms. His massive following, which can be largely attributed to his ingenuity and creativity, has attracted the attention of various brands around the world. His presence on social media is growing at an amazing rate. Soon you will see him in modeling sessions.nnHello! I'm a ger, I'm 22 years old, I like games and drinking mate, nothing more than that, I send you a hugnnI love you Ger <3", "website": "https://www.twitch.tv/unicornio", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twxzl1", "submitted_by": "sand_planet", "name": "Disney Twisted-Wonderland", "description": "A depiction of a magical pen from the mobile gacha game, Disney Twisted-Wonderland. The iconic pens help students from being overexerted by magic when casting spells.", "website": "https://disneytwistedwonderland.com/", "subreddit": "/r/TwistedWonderland", "center": [1723.5, 1781.5], "path": [[1721.5, 1774.5], [1721.5, 1788.5], [1725.5, 1788.5], [1725.5, 1774.5]]}, {"id": "twxzew", "submitted_by": "orctamer", "name": "Aztec sun stone", "description": "The monolith was carved by the Mexica at the end of the Mesoamerican Postclassic Period.", "website": "", "subreddit": "/r/mexico", "center": [598.5, 1235.5], "path": [[556.5, 1173.5], [556.5, 1295.5], [638.5, 1297.5], [641.5, 1174.5], [556.5, 1174.5], [556.5, 1295.5], [555.5, 1174.5], [641.5, 1173.5], [642.5, 1174.5], [642.5, 1174.5], [641.5, 1174.5], [640.5, 1175.5], [641.5, 1174.5], [641.5, 1174.5], [641.5, 1174.5]]}, {"id": "twxzdv", "submitted_by": "jukefishron", "name": "The First Nessie", "description": "In alliance with the trash taste podcast community this cute plushy was added", "website": "", "subreddit": "/r/apexlegends", "center": [47.5, 562.5], "path": [[30.5, 568.5], [31.5, 569.5], [57.5, 569.5], [57.5, 568.5], [53.5, 564.5], [53.5, 563.5], [52.5, 563.5], [52.5, 556.5], [52.5, 555.5], [54.5, 555.5], [54.5, 554.5], [55.5, 554.5], [56.5, 553.5], [56.5, 551.5], [53.5, 548.5], [49.5, 548.5], [48.5, 549.5], [48.5, 556.5], [47.5, 556.5], [47.5, 558.5], [45.5, 558.5], [45.5, 559.5], [43.5, 559.5], [43.5, 560.5], [42.5, 560.5], [42.5, 561.5], [40.5, 561.5], [40.5, 562.5], [39.5, 562.5], [39.5, 563.5], [38.5, 563.5], [38.5, 564.5], [37.5, 564.5], [37.5, 565.5], [36.5, 565.5], [35.5, 565.5], [35.5, 566.5], [34.5, 566.5], [34.5, 567.5], [31.5, 567.5]]}, -{"id": "twxz7p", "submitted_by": "PinguSalvaje", "name": "iPandarina", "description": "Spanish streamer iPandarina, famous game dropper and owner of the best pets in the world", "website": "twitch.tv/ipandarina", "subreddit": "", "center": [750.5, 1396.5], "path": [[774.5, 1389.5], [774.5, 1401.5], [724.5, 1402.5], [725.5, 1391.5], [724.5, 1391.5]]}, +{"id": "twxz7p", "submitted_by": "PinguSalvaje", "name": "iPandarina", "description": "Spanish streamer iPandarina, famous game dropper and owner of the best pets in the world", "website": "https://twitch.tv/ipandarina", "subreddit": "", "center": [750.5, 1396.5], "path": [[774.5, 1389.5], [774.5, 1401.5], [724.5, 1402.5], [725.5, 1391.5], [724.5, 1391.5]]}, {"id": "twxz57", "submitted_by": "axollyon", "name": "Mario Jams HOW Block", "description": "A HOW block emote from the Mario Jams SM64 ROM hacking community.", "website": "https://discord.gg/NjxSb5WE4b", "subreddit": "/r/mariojams", "center": [437.5, 1567.5], "path": [[427.5, 1553.5], [427.5, 1580.5], [447.5, 1580.5], [447.5, 1570.5], [448.5, 1570.5], [448.5, 1558.5], [444.5, 1558.5], [444.5, 1558.5], [444.5, 1553.5]]}, {"id": "twxyy2", "submitted_by": "LvcaJreddit", "name": "Italia", "description": "a shadow of Italy's geographical shape.", "website": "", "subreddit": "/r/Italia", "center": [819.5, 291.5], "path": [[785.5, 270.5], [787.5, 268.5], [786.5, 264.5], [791.5, 262.5], [792.5, 263.5], [796.5, 260.5], [799.5, 264.5], [802.5, 258.5], [808.5, 260.5], [810.5, 256.5], [812.5, 256.5], [815.5, 253.5], [822.5, 253.5], [822.5, 255.5], [833.5, 258.5], [829.5, 260.5], [833.5, 267.5], [831.5, 268.5], [830.5, 265.5], [821.5, 268.5], [822.5, 271.5], [824.5, 273.5], [824.5, 275.5], [826.5, 280.5], [830.5, 283.5], [835.5, 291.5], [838.5, 296.5], [843.5, 299.5], [848.5, 299.5], [848.5, 303.5], [850.5, 305.5], [855.5, 310.5], [865.5, 313.5], [868.5, 318.5], [865.5, 320.5], [861.5, 316.5], [856.5, 316.5], [857.5, 323.5], [852.5, 331.5], [847.5, 333.5], [846.5, 331.5], [848.5, 321.5], [846.5, 317.5], [833.5, 309.5], [823.5, 300.5], [812.5, 290.5], [807.5, 282.5], [804.5, 277.5], [794.5, 277.5], [790.5, 280.5], [785.5, 286.5], [787.5, 276.5], [785.5, 269.5], [794.5, 307.5], [794.5, 307.5], [802.5, 304.5], [808.5, 317.5], [804.5, 332.5], [801.5, 331.5], [793.5, 334.5], [793.5, 316.5], [794.5, 307.5]]}, {"id": "twxyvl", "submitted_by": "zozzlez_", "name": "The Council", "description": "Four Minecraft skins representing The Council, a group consisting of Condifiction, GrizzlyPlays, Bizly, and Slimecicle", "website": "", "subreddit": "", "center": [1725.5, 1087.5], "path": [[1709.5, 1083.5], [1709.5, 1090.5], [1740.5, 1090.5], [1740.5, 1083.5], [1709.5, 1083.5]]}, {"id": "twxyu9", "submitted_by": "oolaf19988", "name": "Polish flag", "description": "BloodTrail", "website": "", "subreddit": "", "center": [1489.5, 570.5], "path": [[1426.5, 534.5], [1547.5, 535.5], [1550.5, 613.5], [1492.5, 612.5], [1492.5, 599.5], [1484.5, 599.5], [1421.5, 597.5], [1425.5, 540.5]]}, {"id": "twxyrl", "submitted_by": "DiabetusYT", "name": "BOOM TEAM", "description": "We are the BoomTeam! A community full of positive vibes and supportive like minded people who have fun together. We are led by our chicken-legged variety streamer, who is also a professional dancer. We welcome you ALL to the best community! Come join us ^-^ nRESPECTBOOM <4", "website": "https://www.twitch.tv/onlyjoeyd", "subreddit": "/r/OnlyJoeyD", "center": [1530.5, 1242.5], "path": [[1524.5, 1233.5], [1524.5, 1250.5], [1536.5, 1250.5], [1536.5, 1233.5]]}, -{"id": "twxypd", "submitted_by": "ThatOtherKageBoi", "name": "Flag of Sk\u00e5ne", "description": "The official flag of the Danish province of Sk\u00e5ne", "website": "", "subreddit": "", "center": [451.5, 156.5], "path": [[463.5, 163.5], [438.5, 163.5], [438.5, 148.5], [463.5, 148.5], [463.5, 163.5]]}, -{"id": "twxymd", "submitted_by": "Himada-the-noobie", "name": "osu! Storyboarder Banquet Logo", "description": "Logo representing the storyboarding community within the osu! community. With the help from the Gebbos community, Hungarian osu! community and somewhat peaceful negotiations with the Star Wars community, the logo was able to stand its ground.", "website": "https://storyboarder.xyz/", "subreddit": "", "center": [707.5, 1670.5], "path": [[703.5, 1675.5], [715.5, 1675.5], [715.5, 1668.5], [714.5, 1668.5], [714.5, 1667.5], [713.5, 1667.5], [713.5, 1666.5], [712.5, 1666.5], [712.5, 1665.5], [711.5, 1665.5], [710.5, 1665.5], [710.5, 1664.5], [704.5, 1664.5], [704.5, 1665.5], [702.5, 1665.5], [702.5, 1666.5], [701.5, 1666.5], [701.5, 1667.5], [700.5, 1667.5], [700.5, 1675.5]]}, +{"id": "twxypd", "submitted_by": "ThatOtherKageBoi", "name": "Flag of Sk\u00e5ne", "description": "The official flag of the Danish province of Sk\u00e5ne", "website": "https://en.wikipedia.org/wiki/Scania", "subreddit": "/r/place_nordicunion", "center": [451.5, 156.5], "path": [[463.5, 163.5], [438.5, 163.5], [438.5, 148.5], [463.5, 148.5], [463.5, 163.5]]}, +{"id": "twxymd", "submitted_by": "Himada-the-noobie", "name": "osu! Storyboarder Banquet logo", "description": "Logo representing the storyboarding community within the osu! community. With the help from the Gebbos community, Hungarian osu! community and somewhat peaceful negotiations with the Star Wars community, the logo was able to stand its ground.", "website": "https://storyboarder.xyz/", "subreddit": "/r/osuplace", "center": [707.5, 1670.5], "path": [[703.5, 1675.5], [715.5, 1675.5], [715.5, 1668.5], [714.5, 1668.5], [714.5, 1667.5], [713.5, 1667.5], [713.5, 1666.5], [712.5, 1666.5], [712.5, 1665.5], [711.5, 1665.5], [710.5, 1665.5], [710.5, 1664.5], [704.5, 1664.5], [704.5, 1665.5], [702.5, 1665.5], [702.5, 1666.5], [701.5, 1666.5], [701.5, 1667.5], [700.5, 1667.5], [700.5, 1675.5]]}, {"id": "twxykb", "submitted_by": "letmebebrave430", "name": "Hermitcraft Recap", "description": "This is a representation of the Hermitcraft Recap, which is a team of content creators who run a YouTube channel dedicated to posting a weekly recap on the Hermitcraft Minecraft server.", "website": "https://www.youtube.com/channel/UC32w6uX5qtmUtF4QQQ2PKaQ", "subreddit": "/r/HermitcraftRecap", "center": [854.5, 589.5], "path": [[851.5, 586.5], [857.5, 586.5], [857.5, 591.5], [851.5, 591.5], [851.5, 591.5], [851.5, 591.5], [851.5, 591.5]]}, {"id": "twxydk", "submitted_by": "Traditional-Usual372", "name": "Mushoko Tensei", "description": "Well known isekai.", "website": "", "subreddit": "/r/mushokotensei", "center": [1867.5, 678.5], "path": [[1841.5, 667.5], [1851.5, 667.5], [1851.5, 664.5], [1892.5, 665.5], [1892.5, 691.5], [1841.5, 692.5]]}, {"id": "twxyc2", "submitted_by": "John567852", "name": "Bob", "description": "A secret crewmate the ori r/place team decided to put in the bush", "website": "", "subreddit": "", "center": [1057.5, 543.5], "path": [[1059.5, 541.5], [1055.5, 541.5], [1055.5, 542.5], [1054.5, 542.5], [1054.5, 545.5], [1055.5, 545.5], [1055.5, 546.5], [1059.5, 546.5], [1059.5, 541.5], [1055.5, 541.5], [1055.5, 542.5]]}, {"id": "twxy6p", "submitted_by": "Fortuna21", "name": "Agusbob Wolf", "description": "Logo of Argentinian streamer Agusbob", "website": "https://www.twitch.tv/agusbob", "subreddit": "", "center": [1194.5, 1391.5], "path": [[1179.5, 1369.5], [1170.5, 1383.5], [1171.5, 1402.5], [1185.5, 1416.5], [1204.5, 1416.5], [1217.5, 1403.5], [1218.5, 1382.5], [1209.5, 1368.5], [1180.5, 1368.5]]}, {"id": "twxy6b", "submitted_by": "Vigitant_01", "name": "Utah State University", "description": "A public University located in Logan, Utah, United States.", "website": "https://www.usu.edu/", "subreddit": "/r/usu", "center": [1935.5, 873.5], "path": [[1929.5, 870.5], [1929.5, 876.5], [1940.5, 876.5], [1940.5, 870.5]]}, {"id": "twxy5m", "submitted_by": "spedgy", "name": "Denver Broncos", "description": "NFL Football Team Denver Broncos paying tribute to their former player Demaryius Thomas who wore #88 for them from 2010-2018", "website": "", "subreddit": "/r/DenverBroncos", "center": [1382.5, 42.5], "path": [[1369.5, 35.5], [1394.5, 35.5], [1393.5, 49.5], [1371.5, 49.5], [1370.5, 48.5]]}, -{"id": "twxxzs", "submitted_by": "TecCheck", "name": "animdustry", "description": "the anime gacha bullet hell rhythm game mindustry event", "website": "https://github.com/Anuken/animdustry", "subreddit": "", "center": [470.5, 1186.5], "path": [[470.5, 1172.5], [471.5, 1173.5], [474.5, 1173.5], [478.5, 1177.5], [478.5, 1178.5], [479.5, 1179.5], [479.5, 1183.5], [480.5, 1184.5], [480.5, 1185.5], [477.5, 1188.5], [477.5, 1191.5], [478.5, 1192.5], [478.5, 1193.5], [477.5, 1194.5], [477.5, 1195.5], [478.5, 1196.5], [478.5, 1198.5], [477.5, 1199.5], [477.5, 1201.5], [476.5, 1202.5], [475.5, 1202.5], [474.5, 1201.5], [473.5, 1201.5], [472.5, 1200.5], [470.5, 1200.5], [470.5, 1201.5], [469.5, 1202.5], [468.5, 1202.5], [463.5, 1197.5], [463.5, 1196.5], [464.5, 1195.5], [464.5, 1194.5], [463.5, 1193.5], [463.5, 1192.5], [464.5, 1191.5], [464.5, 1188.5], [462.5, 1186.5], [462.5, 1185.5], [461.5, 1184.5], [461.5, 1183.5], [462.5, 1182.5], [462.5, 1181.5], [461.5, 1180.5], [461.5, 1178.5], [463.5, 1176.5], [463.5, 1175.5], [466.5, 1172.5]]}, +{"id": "twxxzs", "submitted_by": "TecCheck", "name": "Animdustry", "description": "A character from the anime gacha bullet hell rhythm game as part of a Mindustry event", "website": "https://github.com/Anuken/animdustry", "subreddit": "/r/Mindustry", "center": [470.5, 1186.5], "path": [[470.5, 1172.5], [471.5, 1173.5], [474.5, 1173.5], [478.5, 1177.5], [478.5, 1178.5], [479.5, 1179.5], [479.5, 1183.5], [480.5, 1184.5], [480.5, 1185.5], [477.5, 1188.5], [477.5, 1191.5], [478.5, 1192.5], [478.5, 1193.5], [477.5, 1194.5], [477.5, 1195.5], [478.5, 1196.5], [478.5, 1198.5], [477.5, 1199.5], [477.5, 1201.5], [476.5, 1202.5], [475.5, 1202.5], [474.5, 1201.5], [473.5, 1201.5], [472.5, 1200.5], [470.5, 1200.5], [470.5, 1201.5], [469.5, 1202.5], [468.5, 1202.5], [463.5, 1197.5], [463.5, 1196.5], [464.5, 1195.5], [464.5, 1194.5], [463.5, 1193.5], [463.5, 1192.5], [464.5, 1191.5], [464.5, 1188.5], [462.5, 1186.5], [462.5, 1185.5], [461.5, 1184.5], [461.5, 1183.5], [462.5, 1182.5], [462.5, 1181.5], [461.5, 1180.5], [461.5, 1178.5], [463.5, 1176.5], [463.5, 1175.5], [466.5, 1172.5]]}, {"id": "twxxvg", "submitted_by": "BabyBabaBofski", "name": "Terraria gender change potion", "description": "This is a gender change potion from terraria", "website": "https://terraria.fandom.com/wiki/Gender_Change_Potion", "subreddit": "/r/transplace", "center": [685.5, 469.5], "path": [[682.5, 465.5], [682.5, 465.5], [683.5, 464.5], [683.5, 461.5], [685.5, 461.5], [684.5, 461.5], [686.5, 461.5], [686.5, 462.5], [686.5, 464.5], [686.5, 464.5], [687.5, 467.5], [688.5, 469.5], [689.5, 471.5], [690.5, 472.5], [689.5, 474.5], [687.5, 475.5], [684.5, 475.5], [683.5, 475.5], [682.5, 475.5], [681.5, 474.5], [680.5, 473.5], [680.5, 472.5], [680.5, 471.5], [682.5, 468.5], [682.5, 467.5], [683.5, 462.5], [684.5, 464.5]]}, {"id": "twxxn7", "submitted_by": "roedesse", "name": "Chich\u00e9n Itz\u00e1", "description": "A depiction of half of the old maya city of Chich\u00e9n Itz\u00e1", "website": "", "subreddit": "/r/Mexico", "center": [795.5, 511.5], "path": [[787.5, 494.5], [787.5, 521.5], [811.5, 521.5], [810.5, 520.5], [810.5, 519.5], [795.5, 504.5], [793.5, 504.5], [792.5, 503.5], [792.5, 500.5], [793.5, 500.5], [793.5, 496.5], [792.5, 496.5], [792.5, 494.5], [787.5, 494.5]]}, -{"id": "twxxex", "submitted_by": "LeonMonkeygamer", "name": "Minedustry", "description": "Mindustry is a pixelated sandbox tower defense game", "website": "https://mindustrygame.github.io/", "subreddit": "/r/Minedustry", "center": [506.5, 1203.5], "path": [[533.5, 1256.5], [553.5, 1256.5], [554.5, 1235.5], [554.5, 1211.5], [554.5, 1174.5], [439.5, 1174.5], [439.5, 1211.5], [500.5, 1213.5], [501.5, 1235.5], [532.5, 1237.5], [533.5, 1237.5], [533.5, 1237.5], [534.5, 1245.5], [533.5, 1255.5]]}, {"id": "twxxcw", "submitted_by": "PenguGame", "name": "Shape", "description": "A 5 letter word ( meant to say 'Shape') which represents the soon-to-be-vtuber Shape / polyshape", "website": "https://www.youtube.com/c/shape-polygon", "subreddit": "", "center": [1462.5, 900.5], "path": [[1453.5, 898.5], [1471.5, 898.5], [1471.5, 902.5], [1453.5, 902.5], [1453.5, 898.5]]}, {"id": 179, "name": "Camellia Logo (Covered)", "description": "Camellia (also known as Cametek) is a musician that mainly produces Electronic Dance Music. He is also known as the King of Rhythm Games.", "website": "https://linktr.ee/cametek", "subreddit": "", "center": [703.5, 1507.5], "path": [[660.5, 1491.5], [660.5, 1522.5], [745.5, 1522.5], [745.5, 1491.5]]}, {"id": "twxx81", "submitted_by": "Xulomali_HD", "name": "Arkeanos", "description": "It is a part of the Spanish community in which the *Arkeanos* team invaded to endure in the history of reddit.nn*Siempre con el Jefecito*", "website": "https://www.youtube.com/channel/UCggHFGmLDDStxyM-uy9DYnQ", "subreddit": "/r/nexxuzhd", "center": [1666.5, 98.5], "path": [[1717.5, 48.5], [1717.5, 147.5], [1615.5, 147.5], [1615.5, 48.5]]}, @@ -3207,13 +3000,11 @@ {"id": "twxwyb", "submitted_by": "ImVortexlol", "name": "Green and gold 'till the club is sold", "description": "The colours of Manchester United in its inception, back when it was called Newton Heath. They are used to symbolize protest of the club's current American owners in the Glazer family.", "website": "", "subreddit": "/r/reddevils", "center": [1635.5, 659.5], "path": [[1619.5, 660.5], [1650.5, 636.5], [1657.5, 639.5], [1660.5, 637.5], [1660.5, 646.5], [1659.5, 648.5], [1654.5, 643.5], [1653.5, 644.5], [1648.5, 639.5], [1623.5, 657.5], [1622.5, 661.5], [1624.5, 663.5], [1625.5, 667.5], [1630.5, 672.5], [1620.5, 685.5], [1620.5, 660.5]]}, {"id": "twxwx6", "submitted_by": "Traditional-Usual372", "name": "Masterball", "description": "Masterball from pokemon", "website": "", "subreddit": "", "center": [558.5, 1458.5], "path": [[554.5, 1450.5], [562.5, 1450.5], [567.5, 1455.5], [567.5, 1463.5], [559.5, 1468.5], [553.5, 1466.5], [549.5, 1462.5], [548.5, 1456.5], [551.5, 1451.5]]}, {"id": "twxwtr", "submitted_by": "Fidlesticks_1", "name": "The Weeknd", "description": "XO is The Weeknd's record labeln", "website": "https://www.theweeknd.com/", "subreddit": "/r/theweeknd", "center": [1984.5, 1603.5], "path": [[1968.5, 1583.5], [1999.5, 1583.5], [1999.5, 1623.5], [1968.5, 1623.5]]}, -{"id": "twxwtq", "submitted_by": "jukefishron", "name": "Sir Nessie The Second", "description": "An absolutely adorable plush Nessie with an even more adorable hat and mustache", "website": "", "subreddit": "/r/apexlegends", "center": [428.5, 1242.5], "path": [[408.5, 1219.5], [447.5, 1219.5], [447.5, 1265.5], [408.5, 1265.5]]}, +{"id": "twxwtq", "submitted_by": "jukefishron", "name": "Sir Nessie The Second", "description": "An absolutely adorable plush Nessie with an even more adorable hat and mustache", "website": "", "subreddit": "/r/apexlegends", "center": [428.5, 1242.5], "path": [[447.5, 1265.5], [447.5, 1219.5], [408.5, 1219.5], [408.5, 1265.5]]}, {"id": "twxwp2", "submitted_by": "Apix0n", "name": "Action Against Hunger Logo", "description": "This logo is here because the ZEvent, a French charity event (the logo above) raised 10 millions \u20ac for them, the most in 6 editions!", "website": "https://www.actionagainsthunger.org/", "subreddit": "", "center": [1244.5, 1478.5], "path": [[1236.5, 1468.5], [1251.5, 1468.5], [1251.5, 1489.5], [1237.5, 1489.5]]}, -{"id": "twxwji", "submitted_by": "Ique32", "name": "Many A True Nerd", "description": "Many A True Nerd, a Youtube gaming channel from the UK.", "website": "https://www.youtube.com/c/ManyATrueNerd/", "subreddit": "/r/ManyATrueNerd", "center": [0.5, 0.5], "path": []}, {"id": "twxwis", "submitted_by": "Loren_ad", "name": "Relaxed", "description": "Relaxed is a reference to ChurroMoreno (ChusoMontero) a Spanish streamer known for doing no hits of the souls saga", "website": "https://www.twitch.tv/chusommontero", "subreddit": "", "center": [1463.5, 1033.5], "path": [[1451.5, 1023.5], [1451.5, 1043.5], [1475.5, 1043.5], [1475.5, 1023.5], [1451.5, 1023.5]]}, {"id": "twxweg", "submitted_by": "SigEnderman", "name": "r/beachhouse", "description": "r/beachhouse is a subreddit about beach houses.", "website": "", "subreddit": "/r/beachouses", "center": [357.5, 1476.5], "path": [[345.5, 1463.5], [369.5, 1463.5], [369.5, 1488.5], [345.5, 1488.5], [345.5, 1463.5]]}, -{"id": "twxw09", "submitted_by": "Nana2a", "name": "Corsican Flag", "description": "Flag of a French's island", "website": "", "subreddit": "/r/Corsica", "center": [0.5, 0.5], "path": []}, -{"id": "twxvvl", "submitted_by": "OrangeSheepYT", "name": "Hinagarasu", "description": "A chibi crow version of Hinata Shōyō, the main protagonist of Haruichi Furudate's Manga series Haikyuu.", "website": "", "subreddit": "/r/haikyuu", "center": [1654.5, 1169.5], "path": [[1662.5, 1177.5], [1646.5, 1177.5], [1645.5, 1177.5], [1645.5, 1160.5], [1662.5, 1160.5]]}, +{"id": "twxvvl", "submitted_by": "OrangeSheepYT", "name": "Hinagarasu", "description": "A chibi crow version of Hinata Sh\u014dy\u014d, the main protagonist of Haruichi Furudate's Manga series Haikyuu.", "website": "", "subreddit": "/r/haikyuu", "center": [1654.5, 1169.5], "path": [[1662.5, 1177.5], [1646.5, 1177.5], [1645.5, 1177.5], [1645.5, 1160.5], [1662.5, 1160.5]]}, {"id": "twxve6", "submitted_by": "aksine12", "name": "Vivy Fluorite's Eye Song", "description": "Animated by WIT STUDIO: Vivy -Fluorite Eye's Song, an original anime from Spring 2021. Above is the titular character Vivy, and below is companion character Matsumoto. Diva is another character from the series", "website": "https://vivy-portal.com/", "subreddit": "/r/Vivy", "center": [470.5, 1654.5], "path": [[478.5, 1633.5], [478.5, 1675.5], [461.5, 1675.5], [461.5, 1633.5]]}, {"id": "twxux2", "submitted_by": "laConnGa", "name": "PAO (Petanking Art Online)", "description": "Just a bunch of friends that wanted to be in r/Place and saw that chance shortly after the first canvas expansion.nPAO stands for Petanking Art Online, jokingly referencing the popular anime Sword Art Online. nTo survive they had to make an alliance with everyone around them: Drawn to Life, The Expanse, Overwatch League, and some viewers from a Twitch stream made by one of PAO's members. It was thanks to them that PAO managed to survive through numerous raids.nThe pride flags on the left and the right are also part of PAO.n(If you enter our reddit, don't ask who Luciano is... It's a secret)", "website": "", "subreddit": "/r/PetankingArtOnline", "center": [1823.5, 139.5], "path": [[1818.5, 136.5], [1828.5, 136.5], [1828.5, 142.5], [1818.5, 142.5], [1818.5, 136.5]]}, {"id": "twxuwq", "submitted_by": "Zealousideal-Low5144", "name": "TVAnder", "description": "Spanish streamer, winner of the first kart tournament on Twitch. Our father", "website": "https://www.twitch.tv/tvander", "subreddit": "", "center": [1542.5, 420.5], "path": [[1531.5, 413.5], [1553.5, 414.5], [1553.5, 426.5], [1532.5, 426.5], [1531.5, 413.5]]}, @@ -3221,20 +3012,19 @@ {"id": "twxusw", "submitted_by": "roedesse", "name": "Palacio de Bellas Artes", "description": "Top roof of the Palacio de Bellas Artes from Mexico City", "website": "", "subreddit": "/r/Mexico", "center": [665.5, 1290.5], "path": [[589.5, 1301.5], [748.5, 1301.5], [748.5, 1299.5], [746.5, 1299.5], [746.5, 1298.5], [742.5, 1298.5], [742.5, 1297.5], [727.5, 1297.5], [721.5, 1291.5], [713.5, 1291.5], [707.5, 1296.5], [704.5, 1296.5], [701.5, 1294.5], [700.5, 1292.5], [697.5, 1292.5], [694.5, 1291.5], [693.5, 1290.5], [690.5, 1290.5], [690.5, 1287.5], [684.5, 1287.5], [684.5, 1290.5], [681.5, 1290.5], [681.5, 1285.5], [677.5, 1281.5], [673.5, 1279.5], [673.5, 1266.5], [668.5, 1266.5], [668.5, 1264.5], [672.5, 1260.5], [672.5, 1257.5], [671.5, 1256.5], [669.5, 1256.5], [669.5, 1256.5], [659.5, 1256.5], [658.5, 1260.5], [662.5, 1264.5], [662.5, 1266.5], [657.5, 1266.5], [657.5, 1273.5], [658.5, 1273.5], [658.5, 1277.5], [657.5, 1278.5], [655.5, 1279.5], [652.5, 1280.5], [649.5, 1284.5], [648.5, 1285.5], [648.5, 1290.5], [645.5, 1290.5], [645.5, 1287.5], [639.5, 1287.5], [639.5, 1289.5], [631.5, 1292.5], [625.5, 1295.5], [624.5, 1296.5], [623.5, 1296.5], [623.5, 1295.5], [618.5, 1291.5], [610.5, 1291.5], [604.5, 1296.5], [604.5, 1297.5], [589.5, 1297.5], [588.5, 1299.5], [585.5, 1299.5], [585.5, 1300.5], [585.5, 1301.5]]}, {"id": "twxui6", "submitted_by": "DarkStar69_", "name": "SykHeart", "description": "SylHeart is an emote that represents the Twitch Streamer Sykkuno.", "website": "https://www.twitch.tv/sykkuno", "subreddit": "", "center": [1322.5, 687.5], "path": [[1333.5, 673.5], [1333.5, 694.5], [1336.5, 694.5], [1336.5, 700.5], [1310.5, 699.5], [1310.5, 690.5], [1312.5, 689.5], [1311.5, 682.5], [1311.5, 673.5]]}, {"id": "twxuan", "submitted_by": "JustJikoo", "name": "Green makaHi", "description": "A green version of makaroll's (creator of Phantom Rose) avatar", "website": "https://discord.gg/phantomrose", "subreddit": "/r/PhantomRose", "center": [1816.5, 279.5], "path": [[1822.5, 284.5], [1822.5, 282.5], [1823.5, 282.5], [1823.5, 280.5], [1821.5, 280.5], [1821.5, 272.5], [1820.5, 273.5], [1819.5, 274.5], [1816.5, 274.5], [1815.5, 273.5], [1814.5, 273.5], [1813.5, 272.5], [1812.5, 271.5], [1811.5, 272.5], [1811.5, 276.5], [1811.5, 284.5]]}, -{"id": "twxu9c", "submitted_by": "TecCheck", "name": "Mindustry", "description": "A sandbox tower-defense game", "website": "https://mindustrygame.github.io/", "subreddit": "/r/Mindustry", "center": [507.5, 1205.5], "path": [[441.5, 1211.5], [445.5, 1211.5], [445.5, 1213.5], [501.5, 1213.5], [501.5, 1226.5], [504.5, 1226.5], [504.5, 1227.5], [507.5, 1227.5], [507.5, 1236.5], [534.5, 1236.5], [534.5, 1243.5], [533.5, 1244.5], [533.5, 1252.5], [536.5, 1254.5], [542.5, 1254.5], [542.5, 1253.5], [545.5, 1253.5], [545.5, 1254.5], [552.5, 1254.5], [553.5, 1253.5], [553.5, 1187.5], [535.5, 1187.5], [535.5, 1182.5], [536.5, 1181.5], [536.5, 1178.5], [534.5, 1176.5], [482.5, 1176.5], [479.5, 1176.5], [476.5, 1173.5], [461.5, 1173.5], [461.5, 1178.5], [451.5, 1178.5], [451.5, 1188.5], [448.5, 1188.5], [443.5, 1199.5], [446.5, 1203.5], [446.5, 1208.5], [441.5, 1208.5]]}, +{"id": "twxu9c", "submitted_by": "TecCheck", "name": "Mindustry", "description": "A sandbox tower-defense game. The Factorio locomotive and the cargo wagon was a collaborative project with Mindustry.", "website": "https://mindustrygame.github.io/", "subreddit": "/r/Mindustry", "center": [507.5, 1205.5], "path": [[554.5, 1187.5], [535.5, 1187.5], [535.5, 1182.5], [536.5, 1181.5], [536.5, 1178.5], [534.5, 1176.5], [480.5, 1176.5], [480.5, 1172.5], [461.5, 1172.5], [461.5, 1178.5], [451.5, 1178.5], [451.5, 1188.5], [447.5, 1188.5], [442.5, 1198.5], [442.5, 1200.5], [445.5, 1202.5], [445.5, 1208.5], [441.5, 1208.5], [441.5, 1211.5], [444.5, 1211.5], [444.5, 1213.5], [501.5, 1213.5], [501.5, 1227.5], [506.5, 1227.5], [506.5, 1236.5], [533.5, 1236.5], [533.5, 1251.5], [536.5, 1254.5], [551.5, 1254.5], [554.5, 1251.5]]}, {"id": "twxu6e", "submitted_by": "Traditional-Usual372", "name": "Gojo (JJK)", "description": "Gojo Satoru, a special grade jujutsu sorcerer, first bearer of both the Limitless and Six Eyes technique in 400 years, regarded as the strongest sorcerer of the modern world. Mentor at Tokyo Metropolitan Curse Technical College.", "website": "", "subreddit": "/r/jujutsukaisen", "center": [876.5, 1187.5], "path": [[904.5, 1174.5], [854.5, 1173.5], [854.5, 1203.5], [888.5, 1203.5], [888.5, 1196.5], [890.5, 1195.5], [890.5, 1192.5], [904.5, 1191.5]]}, {"id": "twxu65", "submitted_by": "ImVortexlol", "name": "United's Treble", "description": "Manchester United managed to win the proper treble of the FA Cup, the Premier League and the Champions' League in the season of 1998/99, a feat which remains unmatched by any other British football club.", "website": "", "subreddit": "/r/reddevils", "center": [1642.5, 683.5], "path": [[1625.5, 678.5], [1658.5, 678.5], [1658.5, 689.5], [1625.5, 688.5]]}, {"id": "twxu51", "submitted_by": "BabyBabaBofski", "name": "BLM fist", "description": "Made to represent trans women of color and the protests against their persecution", "website": "https://www.reddit.com/r/transplace/comments/tuxdxu/petition_acknowledge_the_history_of_black/", "subreddit": "/r/transplace", "center": [618.5, 462.5], "path": [[610.5, 475.5], [612.5, 472.5], [613.5, 467.5], [611.5, 465.5], [609.5, 464.5], [610.5, 460.5], [608.5, 459.5], [609.5, 457.5], [610.5, 454.5], [612.5, 452.5], [615.5, 453.5], [617.5, 455.5], [615.5, 451.5], [616.5, 448.5], [618.5, 448.5], [620.5, 448.5], [620.5, 448.5], [621.5, 452.5], [622.5, 453.5], [624.5, 454.5], [626.5, 456.5], [627.5, 458.5], [626.5, 459.5], [629.5, 458.5], [629.5, 460.5], [625.5, 462.5], [625.5, 463.5], [624.5, 465.5], [622.5, 467.5], [622.5, 473.5], [622.5, 475.5], [621.5, 475.5], [617.5, 475.5], [613.5, 475.5], [610.5, 475.5], [616.5, 473.5], [614.5, 474.5], [617.5, 469.5], [617.5, 469.5], [616.5, 473.5]]}, -{"id": "twxu3p", "submitted_by": "AccomplishedLoad4799", "name": "MediaVida", "description": "Spanish forum. Average penis size of the users: 30cm.", "website": "https://www.mediavida.com/", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twxtyv", "submitted_by": "raxiel_", "name": "Many A True Nerd", "description": "MATN is the home of Jon, a Youtuber who posts lets-plays (with occasional help from Claire and a few others), and is a big fan of Fallout New Vegas.", "website": "https://www.youtube.com/user/ManyATrueNerd", "subreddit": "/r/ManyATrueNerd", "center": [1510.5, 925.5], "path": [[1524.5, 930.5], [1524.5, 920.5], [1496.5, 920.5], [1496.5, 930.5]]}, {"id": "twxtvn", "submitted_by": "dlorieann", "name": "Sugar Pine 7", "description": "Streamy Award winning YouTube channel founded in 2017 by Steven Suptic, Clayton James AKA Cib, and James DeAngelis. Currently hosted by Cib and James.", "website": "https://www.youtube.com/c/sugarpine7/videos", "subreddit": "", "center": [1854.5, 1375.5], "path": [[1839.5, 1382.5], [1839.5, 1365.5], [1876.5, 1372.5], [1868.5, 1381.5]]}, -{"id": "twxtp7", "submitted_by": "Cowyboii", "name": "\u00c5land", "description": "The flag of \u00c5land (island owned by finland)", "website": "", "subreddit": "", "center": [565.5, 120.5], "path": [[591.5, 103.5], [591.5, 137.5], [539.5, 136.5], [539.5, 104.5], [591.5, 103.5]]}, +{"id": "twxtp7", "submitted_by": "Cowyboii", "name": "Flag of \u00c5land", "description": "The flag of \u00c5land (island owned by Finland).", "website": "https://en.wikipedia.org/wiki/%C3%85land", "subreddit": "/r/place_nordicunion", "center": [565.5, 120.5], "path": [[591.5, 103.5], [591.5, 137.5], [539.5, 136.5], [539.5, 104.5], [591.5, 103.5]]}, {"id": "twxtjz", "submitted_by": "CreepahJacket", "name": "Nyan Cat", "description": "Nyan Cat, is a meme from 2011 depicting a cat with the body of a cherry Pop-Tart flying through outer space.", "website": "https://www.youtube.com/watch?v=QH2-TGUlwu4", "subreddit": "/r/nyanplace", "center": [1695.5, 1470.5], "path": [[1688.5, 1489.5], [1732.5, 1489.5], [1732.5, 1460.5], [1724.5, 1460.5], [1724.5, 1452.5], [1655.5, 1452.5], [1655.5, 1479.5], [1657.5, 1479.5], [1659.5, 1481.5], [1659.5, 1483.5], [1688.5, 1483.5]]}, {"id": "twxtif", "submitted_by": "remsoffyt", "name": "A bottle and a glass of red wine", "description": "Because the best wine come from France", "website": "", "subreddit": "/r/PlaceFrance", "center": [142.5, 481.5], "path": [[132.5, 482.5], [132.5, 482.5], [133.5, 487.5], [134.5, 489.5], [137.5, 491.5], [136.5, 494.5], [133.5, 497.5], [138.5, 496.5], [140.5, 496.5], [145.5, 488.5], [148.5, 485.5], [149.5, 485.5], [149.5, 475.5], [147.5, 474.5], [146.5, 472.5], [146.5, 462.5], [146.5, 460.5], [142.5, 461.5], [142.5, 470.5], [142.5, 471.5], [140.5, 475.5], [139.5, 475.5], [139.5, 477.5], [139.5, 481.5], [139.5, 482.5]]}, {"id": "twxti3", "submitted_by": "leohaho", "name": "Officer Icon", "description": "Marking of a Officer Module from EVE OnlinenOfficer Modules are considered the best available Modules", "website": "https://wiki.eveuniversity.org/Tech_and_meta_levels#Officer_.28Meta_7-17.29", "subreddit": "/r/EVE", "center": [4.5, 38.5], "path": [[1.5, 34.5], [11.5, 35.5], [1.5, 45.5], [1.5, 34.5]]}, {"id": "twxtdi", "submitted_by": "Tufnutplays", "name": "Risk of Rain 2 Wisps", "description": "A depiction of 2 wisps from the game Risk of Rain 2.", "website": "", "subreddit": "/r/riskofrain", "center": [808.5, 1992.5], "path": [[816.5, 1996.5], [816.5, 1988.5], [809.5, 1987.5], [808.5, 1986.5], [806.5, 1986.5], [805.5, 1987.5], [799.5, 1989.5], [799.5, 1996.5]]}, {"id": "twxtbx", "submitted_by": "cherryflavorantacid", "name": "Buffalo Sabres", "description": "A representation of the Buffalo Sabres hockey team, with the Buffalo and Syracuse area code below.", "website": "", "subreddit": "/r/sabres", "center": [858.5, 935.5], "path": [[862.5, 911.5], [862.5, 962.5], [855.5, 961.5], [852.5, 912.5], [852.5, 912.5], [852.5, 911.5]]}, -{"id": "twxtb5", "submitted_by": "MartyStarkiller", "name": "Sor Juana In\u00e9s de la Cruz", "description": "Juana In\u00e9s de Asbaje Ram\u00edrez de Santillana (aka Juana In\u00e9s de la Cruz and Juana de Asbaje) was a catholic nun, a poet, and a writer during the XVIIth century. She\u2019s considered one of the most important writers of the Baroque movement during the colonial period in Mexico. This depiction of her is similar to the ones found in some of the 200 Mexican pesos bills.", "website": "r/MexicoPlace", "subreddit": "", "center": [737.5, 1237.5], "path": [[689.5, 1174.5], [784.5, 1174.5], [784.5, 1300.5], [690.5, 1300.5]]}, +{"id": "twxtb5", "submitted_by": "MartyStarkiller", "name": "Sor Juana In\u00e9s de la Cruz", "description": "Juana In\u00e9s de Asbaje Ram\u00edrez de Santillana (aka Juana In\u00e9s de la Cruz and Juana de Asbaje) was a catholic nun, a poet, and a writer during the XVIIth century. She\u2019s considered one of the most important writers of the Baroque movement during the colonial period in Mexico. This depiction of her is similar to the ones found in some of the 200 Mexican pesos bills.", "website": "https://r/MexicoPlace", "subreddit": "", "center": [737.5, 1237.5], "path": [[689.5, 1174.5], [784.5, 1174.5], [784.5, 1300.5], [690.5, 1300.5]]}, {"id": "twxszy", "submitted_by": "Nymelord", "name": "Rush Logo", "description": "Logo for the Canadian Progressive Rock band, Rush. Destroyed 6 times by streamers before forming an alliance with the pink floyd prism.", "website": "https://discord.gg/5w7m6EMTh7", "subreddit": "/r/rush", "center": [1766.5, 1334.5], "path": [[1756.5, 1329.5], [1755.5, 1338.5], [1778.5, 1337.5], [1778.5, 1330.5], [1755.5, 1329.5]]}, {"id": "twxsyx", "submitted_by": "erasica", "name": "DNF (DreamNotFound)", "description": "Originally the logo from /r/amcstock, was covered by DNF (shipname for Dream and GeorgeNotFound) by Minecraft streamer Dream in his quest of deleting all ads he could find on r/place.", "website": "https://shipping.fandom.com/wiki/DreamNotFound", "subreddit": "/r/dreamwastaken", "center": [722.5, 1514.5], "path": [[699.5, 1505.5], [745.5, 1505.5], [745.5, 1522.5], [699.5, 1522.5], [699.5, 1505.5]]}, {"id": "twxsut", "submitted_by": "Vigitant_01", "name": "Southern Utah University", "description": "A public University located in Cedar City, Utah, United States.", "website": "https://www.suu.edu/", "subreddit": "/r/SUU", "center": [1993.5, 883.5], "path": [[1986.5, 880.5], [1986.5, 886.5], [1999.5, 887.5], [1999.5, 880.5]]}, @@ -3249,7 +3039,7 @@ {"id": "twxs49", "submitted_by": "Breyck_version_2", "name": "Ralsei(chapter 2)", "description": "Ralsei is a fluffy goat prince with magical abilities. Special thank you to r/Deltarune for helping us a ton. The in-game sprite is very troublesome because of the weird shading, so that caused a lot of misunderstanding and griefing. Please dont add him red eyes.", "website": "", "subreddit": "/r/Ralsei", "center": [690.5, 796.5], "path": [[679.5, 780.5], [681.5, 784.5], [686.5, 780.5], [691.5, 781.5], [690.5, 778.5], [689.5, 776.5], [692.5, 775.5], [695.5, 781.5], [699.5, 780.5], [700.5, 782.5], [698.5, 786.5], [696.5, 788.5], [696.5, 791.5], [697.5, 796.5], [700.5, 800.5], [704.5, 800.5], [707.5, 802.5], [704.5, 806.5], [702.5, 808.5], [700.5, 808.5], [698.5, 807.5], [695.5, 808.5], [695.5, 810.5], [692.5, 814.5], [689.5, 816.5], [686.5, 815.5], [684.5, 814.5], [688.5, 811.5], [689.5, 810.5], [686.5, 810.5], [684.5, 808.5], [683.5, 807.5], [684.5, 804.5], [685.5, 802.5], [683.5, 800.5], [682.5, 802.5], [676.5, 801.5], [675.5, 799.5], [679.5, 796.5], [679.5, 794.5], [679.5, 791.5], [678.5, 786.5], [677.5, 784.5], [677.5, 781.5]]}, {"id": "twxs1g", "submitted_by": "j8b8123", "name": "Welsh Sheep", "description": "Trail of Welsh Sheep featuring flags such as Eqypt (a r/Place neighbour and ally) and Ukraine, as well as partially griefed Pride sheep's such as a rainbow sheep", "website": "", "subreddit": "/r/Wales", "center": [23.5, 117.5], "path": [[5.5, 136.5], [0.5, 136.5], [0.5, 93.5], [43.5, 94.5], [44.5, 130.5], [51.5, 130.5], [53.5, 133.5], [57.5, 134.5], [57.5, 136.5], [40.5, 137.5], [39.5, 98.5], [5.5, 98.5], [5.5, 132.5], [39.5, 132.5], [39.5, 137.5], [0.5, 136.5], [0.5, 136.5], [1.5, 136.5], [0.5, 136.5], [0.5, 136.5], [0.5, 136.5]]}, {"id": "twxrl1", "submitted_by": "SchneckchenAndy", "name": "Clustertruck Speedrunning", "description": "A truck from the game Clustertruck by Landfall Games. It was made in collaboration with the TeosGame community to represent the speedrunning community of Clustertruck.", "website": "https://www.speedrun.com/Clustertruck", "subreddit": "", "center": [1108.5, 1027.5], "path": [[1100.5, 1033.5], [1100.5, 1030.5], [1101.5, 1030.5], [1101.5, 1026.5], [1108.5, 1019.5], [1115.5, 1019.5], [1115.5, 1027.5], [1114.5, 1027.5], [1114.5, 1030.5], [1112.5, 1030.5], [1112.5, 1032.5], [1108.5, 1032.5], [1108.5, 1034.5], [1100.5, 1034.5]]}, -{"id": "twxreq", "submitted_by": "StuckeyIRL", "name": "Factorio Locomotive", "description": "A blue-dyed locomotive from the videogame Factorio. This project on r/place was meant to incorperate several communities in cargo wagons but was limited due to space. The front of the locomotive is also cropped because a streamer expanded Mexico.", "website": "https://www.factorio.com/", "subreddit": "/r/factorio", "center": [528.5, 1200.5], "path": [[503.5, 1187.5], [554.5, 1187.5], [554.5, 1212.5], [503.5, 1213.5], [503.5, 1187.5]]}, +{"id": "twxreq", "submitted_by": "StuckeyIRL", "name": "Factorio Locomotive", "description": "A blue-dyed locomotive from the videogame Factorio. This project on r/place was meant to incorperate several communities in cargo wagons but was limited due to space. The front of the locomotive is also cropped because a streamer expanded Mexico.", "website": "https://www.factorio.com/", "subreddit": "/r/factorio", "center": [529.5, 1198.5], "path": [[554.5, 1187.5], [522.5, 1187.5], [522.5, 1186.5], [510.5, 1186.5], [510.5, 1187.5], [504.5, 1187.5], [504.5, 1203.5], [509.5, 1203.5], [509.5, 1209.5], [554.5, 1209.5]]}, {"id": "twxrdg", "submitted_by": "Firanka", "name": "Gail Phoenotopia", "description": "The protagonist of the game Phoenotopia: Awakening.", "website": "https://phoenotopia.com", "subreddit": "/r/phoenotopia", "center": [1875.5, 1242.5], "path": [[1874.5, 1235.5], [1875.5, 1235.5], [1876.5, 1236.5], [1879.5, 1239.5], [1879.5, 1242.5], [1878.5, 1243.5], [1880.5, 1246.5], [1878.5, 1246.5], [1878.5, 1247.5], [1876.5, 1249.5], [1875.5, 1248.5], [1874.5, 1249.5], [1873.5, 1248.5], [1872.5, 1247.5], [1870.5, 1246.5], [1872.5, 1244.5], [1872.5, 1242.5], [1871.5, 1242.5], [1871.5, 1240.5], [1871.5, 1239.5], [1873.5, 1237.5], [1876.5, 1237.5], [1874.5, 1237.5], [1875.5, 1237.5], [1874.5, 1237.5], [1875.5, 1237.5], [1875.5, 1237.5], [1875.5, 1237.5]]}, {"id": "twxrbk", "submitted_by": "GeheimLeise", "name": "Squirtle (Squirtle Squad)", "description": "A sprite of the Pok\u00e9mon Squirtle from Pok\u00e9mon Mystery Dungeon: Red/Blue Rescue Team, placed by a private friend group who uses it as a Discord server icon.", "website": "https://bulbapedia.bulbagarden.net/wiki/Squirtle_(Pok%C3%A9mon)", "subreddit": "", "center": [1710.5, 1445.5], "path": [[1714.5, 1439.5], [1705.5, 1439.5], [1704.5, 1447.5], [1703.5, 1447.5], [1703.5, 1449.5], [1705.5, 1450.5], [1717.5, 1450.5], [1716.5, 1449.5], [1715.5, 1448.5], [1716.5, 1447.5], [1716.5, 1443.5], [1715.5, 1442.5], [1714.5, 1440.5]]}, {"id": "twxrbb", "submitted_by": "Chemistry-Honest", "name": "The friendship cube", "description": "A cube representing a small group of friends", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": [[762.5, 1578.5], [762.5, 1578.5], [762.5, 1578.5], [762.5, 1578.5]]}, @@ -3257,22 +3047,20 @@ {"id": "twxrar", "submitted_by": "Jutima", "name": "L'\u00c9querre d'Angle Droit - Angle Droit's set square", "description": "Angle Droit is a French multi-gaming streamer. Her online name can be translated to right angle in english, that's why her viewers chose a set square as her symbol.", "website": "https://www.twitch.tv/angledroit", "subreddit": "", "center": [289.5, 1529.5], "path": [[288.5, 1526.5], [292.5, 1530.5], [288.5, 1530.5]]}, {"id": "twxr4q", "submitted_by": "MrLixam", "name": "Claveille NSI Class", "description": "The letters on top should write the initials NSI,which is our classnThe C is our school's logo, lycee Albert Claveille", "website": "http://claveille.org", "subreddit": "", "center": [765.5, 1551.5], "path": [[770.5, 1559.5], [770.5, 1543.5], [759.5, 1543.5], [759.5, 1559.5], [763.5, 1559.5], [770.5, 1559.5]]}, {"id": "twxr3f", "submitted_by": "xXKayaXxxxxxxx", "name": "Minecraft Cake Head", "description": "A small, 8x8 Minecraft cake face with a derp mouth and 3 cherries on the top. The face was rebuilt 3 times in this spot, after being eaten by the void, someone else's art and then by the Romanian flag (which no longer exists). nThe cake face was in an alliance with Vall-ha11-a. nIt was also previously built in two other spots, but after being destroyed this spot was chosen as it was a quiet place.", "website": "", "subreddit": "", "center": [1556.5, 479.5], "path": [[1552.5, 482.5], [1552.5, 475.5], [1559.5, 475.5], [1559.5, 482.5]]}, -{"id": "twxr10", "submitted_by": "The_Kryle", "name": "Le Mans University", "description": "Logo of Le Mans University", "website": "http://www.univ-lemans.fr/fr/index.html", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "twxr0n", "submitted_by": "sand_planet", "name": "University of California, Berkeley", "description": "A mural depiction of the University\u2019s athletic team logo Cal, the iconic Campanile clock tower, and the most recent winning score of the annual Big Game from the California football team against Stanford University 41-11.", "website": "www.berkeley.edu", "subreddit": "/r/berkeley", "center": [374.5, 286.5], "path": [[357.5, 275.5], [391.5, 274.5], [391.5, 298.5], [357.5, 298.5]]}, -{"id": "twxqze", "submitted_by": "Doumaz", "name": "A Pendolino-train", "description": "A Pendolino-train in the colours of the Finnish government-owned railway company VR-Group AB.", "website": "https://www.vr.fi/en/trains/pendolino", "subreddit": "", "center": [597.5, 134.5], "path": [[606.5, 129.5], [612.5, 135.5], [609.5, 138.5], [590.5, 138.5], [590.5, 137.5], [544.5, 137.5], [591.5, 136.5], [591.5, 130.5]]}, +{"id": "twxr0n", "submitted_by": "sand_planet", "name": "University of California, Berkeley", "description": "A mural depiction of the University\u2019s athletic team logo Cal, the iconic Campanile clock tower, and the most recent winning score of the annual Big Game from the California football team against Stanford University 41-11.", "website": "https://www.berkeley.edu", "subreddit": "/r/berkeley", "center": [374.5, 286.5], "path": [[357.5, 275.5], [391.5, 274.5], [391.5, 298.5], [357.5, 298.5]]}, +{"id": "twxqze", "submitted_by": "Doumaz", "name": "A Pendolino train", "description": "A Pendolino train in the colours of the Finnish government-owned railway company VR-Group AB.", "website": "https://www.vr.fi/en/trains/pendolino", "subreddit": "/r/place_nordicunion", "center": [597.5, 134.5], "path": [[606.5, 129.5], [612.5, 135.5], [609.5, 138.5], [590.5, 138.5], [590.5, 137.5], [544.5, 137.5], [591.5, 136.5], [591.5, 130.5]]}, {"id": "twxqx4", "submitted_by": "egemenunsal", "name": "BBL Esports Logo", "description": "BBL is a Turkish esports team and streaming talent agency.", "website": "https://www.bblesports.com/", "subreddit": "", "center": [1479.5, 714.5], "path": [[1443.5, 689.5], [1443.5, 739.5], [1514.5, 739.5], [1514.5, 689.5]]}, {"id": "twxquc", "submitted_by": "Vigitant_01", "name": "Weber State University", "description": "A public University located in Ogden, Utah, United States.", "website": "https://www.weber.edu/", "subreddit": "/r/weber", "center": [1981.5, 882.5], "path": [[1976.5, 877.5], [1976.5, 887.5], [1986.5, 887.5], [1986.5, 877.5]]}, {"id": "twxqta", "submitted_by": "roedesse", "name": "Aztec Sun Stone", "description": "The Aztec Calendar or Sun Stone, a depiction of this old civilization's sculpture on shades of green", "website": "", "subreddit": "/r/Mexico", "center": [602.5, 1234.5], "path": [[640.5, 1176.5], [637.5, 1173.5], [600.5, 1173.5], [582.5, 1183.5], [570.5, 1194.5], [557.5, 1212.5], [554.5, 1225.5], [555.5, 1245.5], [557.5, 1258.5], [567.5, 1276.5], [580.5, 1289.5], [590.5, 1296.5], [603.5, 1296.5], [609.5, 1291.5], [619.5, 1291.5], [624.5, 1295.5], [635.5, 1290.5], [638.5, 1288.5], [640.5, 1286.5]]}, {"id": "twxqsu", "submitted_by": "DarkStar69_", "name": "Ming", "description": "Ming is a Twitch Streamer that streams GTA RP for the NoPixel Server.", "website": "https://www.twitch.tv/ming", "subreddit": "", "center": [982.5, 892.5], "path": [[965.5, 887.5], [998.5, 887.5], [998.5, 897.5], [965.5, 897.5]]}, {"id": "twxqrm", "submitted_by": "Jova38", "name": "999 (Zero Escape: Nine Hours, Nine Persons, Nine Doors)", "description": "Three 9's in a row representing 999, a game from the Zero Escape series.", "website": "", "subreddit": "/r/ZeroEscape", "center": [1957.5, 169.5], "path": [[1950.5, 162.5], [1950.5, 175.5], [1964.5, 175.5], [1964.5, 162.5]]}, {"id": "twxqoq", "submitted_by": "putrid-creature", "name": "swag", "description": "a putrid, smelly, scamming jackass who nobody actually likes", "website": "", "subreddit": "/r/emoney", "center": [639.5, 926.5], "path": [[622.5, 909.5], [622.5, 943.5], [655.5, 943.5], [655.5, 909.5]]}, -{"id": "twxqjy", "submitted_by": "lilihahattl", "name": "Cirno", "description": "Chiruno or Cirno, is one of a favorite charactor in TouHou series. This small art piece is one of the most protected piece of TouhouHijackLOL server.", "website": "https://en.touhouwiki.net/wiki/Cirno", "subreddit": "", "center": [767.5, 765.5], "path": [[762.5, 760.5], [771.5, 760.5], [771.5, 770.5], [762.5, 770.5]]}, {"id": "twxqik", "submitted_by": "LilMixelle", "name": "Debian GNU/Linux", "description": "The twirl logo of Debian GNU/Linux.", "website": "https://www.debian.org/", "subreddit": "/r/placetux", "center": [34.5, 697.5], "path": [[36.5, 691.5], [31.5, 693.5], [30.5, 701.5], [34.5, 703.5], [39.5, 696.5]]}, {"id": "twxqh1", "submitted_by": "Tevedeh", "name": "Iowa State University", "description": "A public land grant university in Ames, Iowa", "website": "", "subreddit": "/r/iastate", "center": [1641.5, 628.5], "path": [[1628.5, 620.5], [1628.5, 636.5], [1653.5, 636.5], [1653.5, 620.5]]}, {"id": "twxqdd", "submitted_by": "AsrielPlay52", "name": "Arasaka Corp/Cyberpunk 2077", "description": "Depiction of Arasaka Cooperation, a fictional company from the TTRPG series Cyberpunk with the text from the game Cyberpunk 2077", "website": "https://www.cyberpunk.net/", "subreddit": "/r/cyberpunkgame", "center": [997.5, 1731.5], "path": [[987.5, 1742.5], [1007.5, 1742.5], [1007.5, 1720.5], [987.5, 1720.5]]}, {"id": "twxq86", "submitted_by": "mstilw577", "name": "Besiege Source Cube and Helmet", "description": "The Source Cube and the helmet of an Ipsilon Knight from the video game Besiege.", "website": "https://www.spiderlinggames.com/", "subreddit": "/r/Besiege", "center": [673.5, 1314.5], "path": [[674.5, 1303.5], [675.5, 1303.5], [675.5, 1304.5], [677.5, 1304.5], [677.5, 1305.5], [679.5, 1305.5], [679.5, 1306.5], [681.5, 1306.5], [681.5, 1307.5], [682.5, 1307.5], [683.5, 1307.5], [683.5, 1308.5], [683.5, 1309.5], [684.5, 1309.5], [684.5, 1318.5], [683.5, 1318.5], [683.5, 1319.5], [681.5, 1319.5], [681.5, 1320.5], [679.5, 1320.5], [679.5, 1321.5], [677.5, 1321.5], [677.5, 1322.5], [675.5, 1322.5], [675.5, 1323.5], [674.5, 1323.5], [674.5, 1322.5], [672.5, 1322.5], [672.5, 1321.5], [670.5, 1321.5], [668.5, 1321.5], [668.5, 1323.5], [667.5, 1323.5], [667.5, 1324.5], [666.5, 1324.5], [666.5, 1325.5], [662.5, 1325.5], [662.5, 1324.5], [661.5, 1324.5], [661.5, 1323.5], [660.5, 1323.5], [660.5, 1316.5], [661.5, 1316.5], [661.5, 1315.5], [663.5, 1315.5], [663.5, 1314.5], [665.5, 1314.5], [665.5, 1315.5], [666.5, 1315.5], [666.5, 1312.5], [665.5, 1312.5], [665.5, 1309.5], [666.5, 1309.5], [666.5, 1307.5], [668.5, 1307.5], [668.5, 1306.5], [670.5, 1306.5], [670.5, 1305.5], [672.5, 1305.5], [672.5, 1304.5], [673.5, 1304.5]]}, {"id": "twxpp9", "submitted_by": "Fernlox", "name": "Uruguay's coat of arms", "description": "", "website": "", "subreddit": "/r/Uruguay", "center": [1165.5, 674.5], "path": [[1157.5, 668.5], [1157.5, 680.5], [1161.5, 684.5], [1168.5, 684.5], [1172.5, 680.5], [1172.5, 668.5], [1170.5, 665.5], [1160.5, 665.5], [1157.5, 668.5]]}, -{"id": "twxpnr", "submitted_by": "poyouli", "name": "Sabitsuki", "description": ".flow main character. This is one of the scariest and famous fangames, created by Lol_rust", "website": "https://yumenikkifg.fandom.com/wiki/.flow", "subreddit": "/r/yumenikki", "center": [1205.5, 119.5], "path": [[1197.5, 104.5], [1197.5, 133.5], [1213.5, 133.5], [1213.5, 104.5]]}, +{"id": "twxpnr", "submitted_by": "poyouli", "name": "Sabitsuki", "description": "Sabitsuki is the protagonist of ‘.flow’, one of the earliest and most iconic Yume Nikki fangames.", "website": "https://dotflow.wikidot.com/sabitsuki", "subreddit": "/r/yumenikki", "center": [1205.5, 120.5], "path": [[1197.5, 130.5], [1197.5, 127.5], [1198.5, 127.5], [1198.5, 125.5], [1199.5, 125.5], [1199.5, 123.5], [1200.5, 123.5], [1200.5, 120.5], [1199.5, 120.5], [1199.5, 119.5], [1197.5, 119.5], [1197.5, 117.5], [1196.5, 117.5], [1196.5, 114.5], [1197.5, 114.5], [1197.5, 112.5], [1198.5, 112.5], [1198.5, 111.5], [1197.5, 111.5], [1197.5, 108.5], [1199.5, 108.5], [1199.5, 109.5], [1201.5, 109.5], [1201.5, 108.5], [1202.5, 108.5], [1202.5, 107.5], [1208.5, 107.5], [1208.5, 106.5], [1210.5, 106.5], [1210.5, 109.5], [1211.5, 109.5], [1211.5, 110.5], [1213.5, 110.5], [1213.5, 112.5], [1212.5, 112.5], [1212.5, 114.5], [1214.5, 114.5], [1214.5, 116.5], [1213.5, 116.5], [1213.5, 117.5], [1212.5, 117.5], [1212.5, 119.5], [1210.5, 119.5], [1210.5, 120.5], [1209.5, 120.5], [1209.5, 123.5], [1210.5, 123.5], [1210.5, 125.5], [1211.5, 125.5], [1211.5, 127.5], [1212.5, 127.5], [1212.5, 130.5], [1211.5, 130.5], [1211.5, 133.5], [1210.5, 133.5], [1210.5, 134.5], [1206.5, 134.5], [1206.5, 133.5], [1205.5, 133.5], [1205.5, 131.5], [1204.5, 131.5], [1204.5, 133.5], [1203.5, 133.5], [1203.5, 134.5], [1199.5, 134.5], [1199.5, 133.5], [1198.5, 133.5], [1198.5, 130.5], [1197.5, 130.5]]}, {"id": "twxp77", "submitted_by": "greese1", "name": "pipsqueak", "description": "colonnelkerhel's fish pipsqueak", "website": "", "subreddit": "/r/PlaceFishCult", "center": [489.5, 901.5], "path": [[487.5, 900.5], [490.5, 900.5], [490.5, 902.5], [487.5, 902.5], [487.5, 900.5]]}, {"id": "twxp29", "submitted_by": "Dieu_divin", "name": "ISEN", "description": "Isen'logo, made by ISEN LILLE, it's the union of promo 63,64,65,66,67 (that why the x)", "website": "", "subreddit": "/r/Logan, ce, bg, de, dieu", "center": [1866.5, 42.5], "path": [[1858.5, 35.5], [1859.5, 48.5], [1876.5, 50.5], [1876.5, 36.5], [1858.5, 35.5], [1858.5, 35.5], [1859.5, 49.5], [1877.5, 35.5], [1858.5, 35.5], [1858.5, 49.5], [1876.5, 49.5]]}, {"id": "twxp1z", "submitted_by": "sodapone", "name": "Crrowd", "description": "The logo for a community tech review app, created by the same group behind the YouTube channel TechAltar. Crrowd's aim is to have simple, high-quality user reviews for products, and make it easier to find answers to questions about said products.", "website": "https://www.crrowd.com/", "subreddit": "/r/Crrowd", "center": [1762.5, 779.5], "path": [[1759.5, 783.5], [1765.5, 783.5], [1765.5, 774.5], [1762.5, 774.5], [1762.5, 775.5], [1761.5, 775.5], [1761.5, 776.5], [1760.5, 776.5], [1760.5, 777.5], [1759.5, 777.5]]}, @@ -3288,7 +3076,7 @@ {"id": "twxmpz", "submitted_by": "trumpetguy314", "name": "jakeS", "description": "Popular twitch emote jakeS, created by twitch streamer Stonepa.", "website": "https://betterttv.com/emotes/604fcc69306b602acc59d94a", "subreddit": "/r/Stonepa", "center": [829.5, 1462.5], "path": [[810.5, 1441.5], [810.5, 1479.5], [852.5, 1479.5], [852.5, 1457.5], [843.5, 1457.5], [843.5, 1448.5], [837.5, 1448.5], [837.5, 1441.5]]}, {"id": "twxm44", "submitted_by": "LilMixelle", "name": "Czech-Ireland-Taiwan Heart", "description": "Heart with the flags of Czechia, Ireland and Taiwan, representing the friendship and alliance between r/czech, r/ireland and r/taiwan", "website": "", "subreddit": "/r/czech, /r/ireland, /r/taiwan", "center": [1248.5, 160.5], "path": [[1249.5, 157.5], [1247.5, 157.5], [1245.5, 156.5], [1244.5, 156.5], [1243.5, 157.5], [1243.5, 160.5], [1247.5, 165.5], [1253.5, 161.5], [1253.5, 157.5], [1251.5, 156.5], [1250.5, 156.5]]}, {"id": "twxm35", "submitted_by": "KaplanBeni7", "name": "Fantastic Ratboy", "description": "Mascot of a Roblox game called Fantastic Frontier.(not a mouse its a rat)n", "website": "https://www.roblox.com/games/510411669/Fantastic-Frontier", "subreddit": "/r/fantasticfrontier", "center": [12.5, 1247.5], "path": [[8.5, 1244.5], [10.5, 1244.5], [10.5, 1246.5], [14.5, 1246.5], [14.5, 1244.5], [16.5, 1244.5], [16.5, 1246.5], [14.5, 1246.5], [14.5, 1249.5], [10.5, 1249.5], [10.5, 1246.5], [8.5, 1246.5]]}, -{"id": "twxm2x", "submitted_by": "D1551D3N7", "name": "Server 42", "description": "Server 42 is an Irish gaming discord server. Mainly League of Legends.", "website": "https://discord.gg/q9KqFdA", "subreddit": "", "center": [179.5, 711.5], "path": [[175.5, 708.5], [182.5, 708.5], [182.5, 714.5], [175.5, 714.5], [175.5, 708.5]]}, +{"id": "twxm2x", "submitted_by": "D1551D3N7", "name": "Server 42", "description": "Server 42 is an Irish gaming discord server. Mainly League of Legends.", "website": "https://discord.gg/q9KqFdA", "subreddit": "", "center": [179.5, 711.5], "path": [[174.5, 707.5], [183.5, 707.5], [183.5, 715.5], [174.5, 715.5], [174.5, 707.5]]}, {"id": "twxly8", "submitted_by": "EmeraldRange", "name": "Civ V", "description": "A logo for the popular game Sid Meier's Civilizaion V built initially by r/civbattelroyale and maintained and protected by Potato McWhiskey fans from r/civ5 and r/civ", "website": "", "subreddit": "/r/civ5", "center": [1716.5, 256.5], "path": [[1706.5, 249.5], [1726.5, 249.5], [1726.5, 253.5], [1717.5, 270.5], [1716.5, 270.5], [1706.5, 252.5], [1706.5, 249.5]]}, {"id": "twxlx8", "submitted_by": "STFUCocomelon", "name": "Battle Cats x Kingdom", "description": "The collab of mobile game 'The Battle Cats' and the survival game series 'Kingdom'", "website": "", "subreddit": "/r/kingdomthegame", "center": [568.5, 1648.5], "path": [[562.5, 1647.5], [562.5, 1651.5], [565.5, 1651.5], [565.5, 1650.5], [570.5, 1650.5], [570.5, 1651.5], [573.5, 1651.5], [573.5, 1646.5], [562.5, 1646.5]]}, {"id": "twxlov", "submitted_by": "mstilw577", "name": "Besiege Logo", "description": "Besiege is a strategy sandbox video game developed and published by Spiderling Studios.", "website": "https://www.spiderlinggames.com/", "subreddit": "/r/Besiege", "center": [307.5, 536.5], "path": [[301.5, 529.5], [313.5, 529.5], [313.5, 542.5], [301.5, 542.5]]}, @@ -3299,20 +3087,16 @@ {"id": "twxl4e", "submitted_by": "Bonaye59", "name": "CACABOX AFTER-CINE", "description": "The logo of the CCB dedicated by the server after-cin\u00e9", "website": "https://twitter.com/cacaboxtv/status/1511256268589223936", "subreddit": "", "center": [270.5, 1875.5], "path": [[260.5, 1861.5], [280.5, 1861.5], [280.5, 1888.5], [260.5, 1888.5]]}, {"id": "twxl2g", "submitted_by": "Breyck_version_2", "name": "Ralsei(chapter 1)", "description": "Ralsei is the best fluffy goat boi with magical powers from Deltarune. He almost got destroyed by the French flag, but we summoned the void to save him. Thanks to r/Deltarune for helping us A TON.", "website": "", "subreddit": "/r/Ralsei", "center": [1761.5, 231.5], "path": [[1748.5, 208.5], [1748.5, 252.5], [1754.5, 252.5], [1754.5, 255.5], [1769.5, 255.5], [1770.5, 252.5], [1774.5, 252.5], [1774.5, 208.5]]}, {"id": "twxkzl", "submitted_by": "israelilocal", "name": "Druze Flag", "description": "The Druze flag was made by the r/Israel discord 3 hours before the end. The Druze are an ethno-religious group from the Levant. In Israel they're known for their loyalty and good relationship with the Jews and Israel in general", "website": "", "subreddit": "/r/Israel, /r/Druze", "center": [1505.5, 485.5], "path": [[1502.5, 483.5], [1502.5, 486.5], [1508.5, 486.5], [1508.5, 483.5]]}, -{"id": "twxkze", "submitted_by": "Lezimbo", "name": "Crowned Flat Eric, mascot of Choualbox", "description": "Flat Eric is a character made by Mr Oizo (Quentin Dupieux) and the mascot of Choualbox, a french website.", "website": "choualbox.com", "subreddit": "", "center": [1687.5, 367.5], "path": [[1682.5, 377.5], [1692.5, 377.5], [1692.5, 356.5], [1682.5, 356.5], [1682.5, 377.5]]}, +{"id": "twxkze", "submitted_by": "Lezimbo", "name": "Crowned Flat Eric, mascot of Choualbox", "description": "Flat Eric is a character made by Mr Oizo (Quentin Dupieux) and the mascot of Choualbox, a french website.", "website": "https://choualbox.com", "subreddit": "", "center": [1687.5, 367.5], "path": [[1682.5, 377.5], [1692.5, 377.5], [1692.5, 356.5], [1682.5, 356.5], [1682.5, 377.5]]}, {"id": "twxkvq", "submitted_by": "tobtrreddit", "name": "r/EBM", "description": "Logo form Electronic Body Music subreddit.", "website": "", "subreddit": "/r/EBM", "center": [1095.5, 1678.5], "path": [[1083.5, 1674.5], [1106.5, 1674.5], [1106.5, 1682.5], [1083.5, 1682.5]]}, {"id": "twxknv", "submitted_by": "KevinMagZuege", "name": "Papaplatte", "description": "The logo of the cringiest streamer and Youtube newcomer Papaplatte. He got rich with uran shares and is the sidekick of the one and only Domo! papatastisch", "website": "https://twitch.tv/papaplatte", "subreddit": "/r/Papaplatte", "center": [1339.5, 1810.5], "path": [[1332.5, 1801.5], [1346.5, 1801.5], [1346.5, 1819.5], [1332.5, 1819.5]]}, -{"id": "twxkhm", "submitted_by": "PurplePurps", "name": "CipherHunt Bill Cipher statue", "description": "The statue of Bill Cipher at the end of the TV series Gravity Falls, made by a group particularly dedicated to finding it.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twxkb3", "submitted_by": "CountessRoadkill", "name": "Scrap Mechanic", "description": "The icon for Steam game Scrap Mechanic.", "website": "https://store.steampowered.com/app/387990/Scrap_Mechanic/", "subreddit": "/r/ScrapMechanic", "center": [1864.5, 1317.5], "path": [[1856.5, 1307.5], [1853.5, 1312.5], [1853.5, 1318.5], [1856.5, 1322.5], [1859.5, 1325.5], [1862.5, 1324.5], [1867.5, 1326.5], [1871.5, 1324.5], [1875.5, 1323.5], [1876.5, 1317.5], [1864.5, 1308.5], [1859.5, 1307.5]]}, -{"id": "twxk5h", "submitted_by": "AEVNBlight", "name": "Mindustry logo", "description": "", "website": "", "subreddit": "/r/mindustry", "center": [508.5, 1180.5], "path": [[480.5, 1176.5], [536.5, 1176.5], [536.5, 1183.5], [480.5, 1183.5]]}, {"id": "twxk29", "submitted_by": "DarkStar69_", "name": "Bondi Boys MC", "description": "BBMC is a gang from the GTA RP server Nopixel, led by the Twitch Streamer Whippy.", "website": "https://nopixel.fandom.com/wiki/Bondi_Boys_MC", "subreddit": "", "center": [1348.5, 760.5], "path": [[1333.5, 753.5], [1333.5, 766.5], [1362.5, 766.5], [1362.5, 753.5]]}, {"id": "twxjup", "submitted_by": "Vigitant_01", "name": "Delicate Arch", "description": "A naturally formed arch made of sandstone located in Arches National Park, United States; one of the most recognizable symbols of the state of Utah.", "website": "https://en.m.wikipedia.org/wiki/Delicate_Arch", "subreddit": "", "center": [1971.5, 882.5], "path": [[1965.5, 877.5], [1965.5, 886.5], [1976.5, 886.5], [1976.5, 877.5]]}, {"id": "twxjrs", "submitted_by": "poyouli", "name": "K******", "description": "utauloid artist and yume nikki fangame creator. At the origin of an unnamed community.", "website": "", "subreddit": "/r/koronba", "center": [405.5, 1960.5], "path": [[417.5, 1950.5], [418.5, 1969.5], [393.5, 1970.5], [393.5, 1950.5]]}, {"id": "twxjop", "submitted_by": "LeMelrun", "name": "Winged Berry", "description": "A winged berry from Celeste", "website": "", "subreddit": "/r/celestegame", "center": [527.5, 22.5], "path": [[510.5, 17.5], [517.5, 17.5], [521.5, 20.5], [526.5, 16.5], [531.5, 21.5], [536.5, 17.5], [544.5, 17.5], [534.5, 25.5], [526.5, 28.5], [526.5, 28.5], [523.5, 28.5]]}, -{"id": "twxjle", "submitted_by": "Banthafooood", "name": "VW Beetle", "description": "The Volkswagen Beetle is a two-door, rear-engine economy car, intended for five occupants.nThe need for a people's car (Volkswagen in German), its concept and its functional objectives were formulated by the leader of Nazi Germany, Adolf Hitler, who wanted a cheap, simple car to be mass-produced for his country's new road network (Reichsautobahn).nIt was first produced in 1938.nThe itteration depicted by the German place-community depicts a disney-esque illustration.", "website": "discord.gg/placeDE", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twxjjb", "submitted_by": "Fernlox", "name": "Tero", "description": "Uruguay's national bird", "website": "", "subreddit": "/r/Uruguay", "center": [1068.5, 674.5], "path": [[1057.5, 678.5], [1066.5, 672.5], [1069.5, 672.5], [1070.5, 668.5], [1067.5, 669.5], [1068.5, 667.5], [1073.5, 667.5], [1076.5, 670.5], [1073.5, 673.5], [1073.5, 675.5], [1070.5, 678.5], [1066.5, 682.5], [1064.5, 679.5], [1057.5, 678.5]]}, {"id": "twxjf2", "submitted_by": "DrOetam", "name": "The Cardiacs - A Little Man and a House", "description": "Alongside the daisy, this is the common icon of The Cardiacs, the worst English rock band, started in 1977 and hailed as an influence by bands as diverse as Blur, Faith No More and Radiohead.", "website": "", "subreddit": "/r/Cardiacs", "center": [1381.5, 579.5], "path": [[1361.5, 570.5], [1361.5, 577.5], [1378.5, 577.5], [1379.5, 592.5], [1393.5, 592.5], [1393.5, 570.5], [1361.5, 570.5]]}, -{"id": "twxjeg", "submitted_by": "Fidlesticks_1", "name": "Pop!_os", "description": "Pop!_os is a linux distro that comes fully working out of the box, it one of the best distros for new users", "website": "https://pop.system76.com/", "subreddit": "/r/pop_os", "center": [0.5, 0.5], "path": []}, {"id": "twxj64", "submitted_by": "QuantumFX", "name": "McGill University", "description": "A logo of McGill University in Montreal, Quebec.", "website": "https://www.mcgill.ca/", "subreddit": "/r/mcgill", "center": [1096.5, 950.5], "path": [[1083.5, 937.5], [1083.5, 962.5], [1108.5, 962.5], [1108.5, 937.5]]}, {"id": "twxj2g", "submitted_by": "LilMixelle", "name": "Bob & Bobek", "description": "The two main characters of Czech animated series Bob a Bobek \u2013 kr\u00e1l\u00edci z klobouku (Bob & Bobek - Rabbits of the hat).", "website": "", "subreddit": "/r/czech", "center": [1317.5, 218.5], "path": [[1320.5, 212.5], [1314.5, 212.5], [1312.5, 218.5], [1313.5, 221.5], [1321.5, 225.5], [1321.5, 219.5]]}, {"id": "twxizj", "submitted_by": "Doumaz", "name": "MCRN insignia", "description": "The emblem of the Martian Congressional Republic Navy from The Expanse, a hard sci-fi book- and TV-series.", "website": "https://expanse.fandom.com/wiki/Martian_Congressional_Republic_Navy", "subreddit": "/r/TheExpanse", "center": [715.5, 964.5], "path": [[711.5, 943.5], [719.5, 943.5], [719.5, 984.5], [711.5, 984.5]]}, @@ -3357,19 +3141,18 @@ {"id": "twxe3n", "submitted_by": "SirBlubblegum", "name": "Satoru Gojo from Jujutsu Kaisen", "description": "Jujutsu Kaisen is an anime and manga made by Gege Akutami. It first aired in Japan 2018.", "website": "", "subreddit": "/r/JujutsuKaisen", "center": [872.5, 1190.5], "path": [[868.5, 1173.5], [884.5, 1173.5], [883.5, 1184.5], [878.5, 1190.5], [887.5, 1200.5], [889.5, 1203.5], [854.5, 1203.5], [854.5, 1193.5], [862.5, 1192.5], [864.5, 1189.5], [867.5, 1189.5], [866.5, 1183.5], [866.5, 1176.5], [868.5, 1173.5]]}, {"id": "twxdyx", "submitted_by": "Orochi12", "name": "Noelle", "description": "Noelle is a character in the gacha game Genshin Impact", "website": "", "subreddit": "/r/Noellemains", "center": [1067.5, 504.5], "path": [[1060.5, 498.5], [1074.5, 498.5], [1074.5, 510.5], [1060.5, 510.5]]}, {"id": "twxdvh", "submitted_by": "LilMixelle", "name": "Mini map of Czechia", "description": "A miniature map and flag of the country of Czechia", "website": "", "subreddit": "/r/czech", "center": [1315.5, 232.5], "path": [[1311.5, 223.5], [1313.5, 223.5], [1321.5, 228.5], [1325.5, 227.5], [1330.5, 234.5], [1323.5, 239.5], [1318.5, 238.5], [1314.5, 238.5], [1313.5, 240.5], [1309.5, 239.5], [1300.5, 229.5], [1304.5, 226.5]]}, -{"id": "twxduq", "submitted_by": "Maqz_", "name": "Teardown Logo", "description": "The logo of the Swedish physics destruction game Teardown created by Dennis Gustafson and Emil BengtsonnLogo created by the a small part of the Discord community of teardown with over 50 participants", "website": "teardowngame.com", "subreddit": "/r/teardowngame", "center": [1341.5, 136.5], "path": [[1333.5, 126.5], [1333.5, 144.5], [1348.5, 145.5], [1348.5, 127.5]]}, +{"id": "twxduq", "submitted_by": "Maqz_", "name": "Teardown Logo", "description": "The logo of the Swedish physics destruction game Teardown created by Dennis Gustafson and Emil BengtsonnLogo created by the a small part of the Discord community of teardown with over 50 participants", "website": "https://teardowngame.com", "subreddit": "/r/teardowngame", "center": [1341.5, 136.5], "path": [[1333.5, 126.5], [1333.5, 144.5], [1348.5, 145.5], [1348.5, 127.5]]}, {"id": "twxdpo", "submitted_by": "FinanzenWeg", "name": "Utah/Fnatic Friendship Heart", "description": "Friendship Heart designed by the Utah University and Fnatic to celebrate their Alliance", "website": "", "subreddit": "/r/uofu/, /r/fnatic", "center": [1604.5, 1416.5], "path": [[1601.5, 1413.5], [1607.5, 1413.5], [1607.5, 1418.5], [1601.5, 1418.5]]}, {"id": "twxdng", "submitted_by": "Mucs22", "name": "Bitcoin", "description": "Bitcoin symbol", "website": "", "subreddit": "", "center": [1609.5, 456.5], "path": [[1598.5, 447.5], [1620.5, 447.5], [1620.5, 464.5], [1599.5, 464.5], [1598.5, 464.5]]}, -{"id": "twxdht", "submitted_by": "alex9es", "name": "Spanish streamer auronplay", "description": "Reference to the Spanish streamer and youtuber Auronplay, and his doll Rodolfo on his left", "website": "https://www.twitch.tv/auronplay", "subreddit": "/r/AuronPlay", "center": [0.5, 0.5], "path": []}, -{"id": "twxdg0", "submitted_by": "dunl4424", "name": "Retrostudio Logo", "description": "The logo from a roblox revival named Retrostudio", "website": "https://www.roblox.com/games/5846386835/RetroStudio", "subreddit": "", "center": [1414.5, 118.5], "path": [[1410.5, 121.5], [1410.5, 121.5], [1418.5, 121.5], [1418.5, 114.5], [1410.5, 114.5]]}, +{"id": "twxdg0", "submitted_by": "dunl4424", "name": "Retrostudio", "description": "A classic Roblox Engine built in Roblox! It can simulate any time period between early 2009 to mid 2015!", "website": "https://www.roblox.com/games/5846386835/RetroStudio", "subreddit": "", "center": [1414.5, 118.5], "path": [[1410.5, 121.5], [1410.5, 121.5], [1418.5, 121.5], [1418.5, 114.5], [1410.5, 114.5]]}, {"id": "twxd9y", "submitted_by": "ignaco003", "name": "Jamon serrano", "description": "Typicall spanish food.", "website": "https://es.wikipedia.org/wiki/Jam%C3%B3n_serrano", "subreddit": "", "center": [1211.5, 295.5], "path": [[1196.5, 304.5], [1229.5, 303.5], [1229.5, 302.5], [1221.5, 301.5], [1221.5, 290.5], [1230.5, 283.5], [1224.5, 282.5], [1218.5, 287.5], [1213.5, 286.5], [1208.5, 287.5], [1206.5, 287.5], [1205.5, 288.5], [1204.5, 288.5], [1203.5, 289.5], [1202.5, 290.5], [1200.5, 291.5], [1200.5, 291.5], [1198.5, 293.5], [1198.5, 295.5], [1198.5, 297.5], [1196.5, 303.5], [1196.5, 304.5]]}, -{"id": "twxd9m", "submitted_by": "errece20", "name": "Nil Garc\u00eda", "description": "Twitch community from Nil Garc\u00eda", "website": "twitch.tv/nilgarcia10", "subreddit": "", "center": [1615.5, 424.5], "path": [[1606.5, 421.5], [1623.5, 421.5], [1623.5, 427.5], [1606.5, 427.5], [1606.5, 421.5]]}, -{"id": "twxd75", "submitted_by": "fincy_", "name": "Turtle Pet from Realm of the Mad God", "description": "A pet turtle of the aquatic family from the game Realm of the Mad God. It represents the alliance between RotMG and Fish Cult. An alliance which was formed almost immediately at the start of r/place.", "website": "", "subreddit": "", "center": [1443.5, 929.5], "path": [[1440.5, 929.5], [1443.5, 929.5], [1443.5, 928.5], [1445.5, 928.5], [1445.5, 929.5], [1446.5, 929.5], [1446.5, 930.5], [1445.5, 930.5], [1445.5, 931.5], [1445.5, 930.5], [1443.5, 930.5], [1443.5, 931.5], [1443.5, 930.5], [1440.5, 930.5], [1440.5, 929.5]]}, +{"id": "twxd9m", "submitted_by": "errece20", "name": "Nil Garc\u00eda", "description": "Twitch community from Nil Garc\u00eda", "website": "https://twitch.tv/nilgarcia10", "subreddit": "", "center": [1615.5, 424.5], "path": [[1606.5, 421.5], [1623.5, 421.5], [1623.5, 427.5], [1606.5, 427.5], [1606.5, 421.5]]}, +{"id": "twxd75", "submitted_by": "fincy_", "name": "Turtle Pet from Realm of the Mad God", "description": "A pet turtle of the aquatic family from the game Realm of the Mad God. It represents the alliance between RotMG and Fish Cult. An alliance which was formed almost immediately at the start of r/place.", "website": "", "subreddit": "", "center": [1443.5, 930.5], "path": [[1439.5, 928.5], [1442.5, 928.5], [1442.5, 927.5], [1446.5, 927.5], [1446.5, 928.5], [1447.5, 928.5], [1447.5, 931.5], [1446.5, 931.5], [1446.5, 932.5], [1444.5, 932.5], [1444.5, 931.5], [1444.5, 932.5], [1442.5, 932.5], [1442.5, 931.5], [1439.5, 931.5], [1439.5, 928.5]]}, {"id": "twxcy0", "submitted_by": "crohn44", "name": "Soundodger 2 Bullet", "description": "A bullet created on OneMrBean's (the dev)'s stream by the soundodger community to celebrate the early access release of soundodger 2", "website": "https://www.twitch.tv/onemrbean", "subreddit": "", "center": [999.5, 1910.5], "path": [[989.5, 1907.5], [1002.5, 1902.5], [1005.5, 1905.5], [1005.5, 1912.5], [1002.5, 1917.5], [997.5, 1917.5], [993.5, 1912.5], [990.5, 1907.5]]}, {"id": "twxcrs", "submitted_by": "literaldani", "name": "iPandarina", "description": "Spanish Twitch streamer, mother of a Tank and Neo. She also has a septum", "website": "https://www.twitch.tv/ipandarina", "subreddit": "", "center": [749.5, 1395.5], "path": [[725.5, 1403.5], [736.5, 1403.5], [736.5, 1398.5], [775.5, 1398.5], [775.5, 1391.5], [731.5, 1391.5], [724.5, 1402.5]]}, {"id": "twxcq1", "submitted_by": "Pepe_Caballo", "name": "Furret Shiny", "description": "Furret (Japanese: \u30aa\u30aa\u30bf\u30c1 Ootachi) is a Normal-type Pok\u00e9mon introduced in Generation II. In this case in its shiny variant", "website": "", "subreddit": "", "center": [461.5, 1445.5], "path": [[466.5, 1459.5], [454.5, 1459.5], [455.5, 1457.5], [455.5, 1453.5], [454.5, 1452.5], [452.5, 1451.5], [451.5, 1449.5], [450.5, 1447.5], [449.5, 1444.5], [450.5, 1443.5], [450.5, 1441.5], [451.5, 1440.5], [452.5, 1438.5], [452.5, 1435.5], [453.5, 1434.5], [454.5, 1433.5], [456.5, 1432.5], [458.5, 1432.5], [460.5, 1432.5], [460.5, 1430.5], [461.5, 1429.5], [462.5, 1429.5], [462.5, 1432.5], [466.5, 1432.5], [467.5, 1431.5], [468.5, 1432.5], [467.5, 1434.5], [466.5, 1435.5], [467.5, 1437.5], [468.5, 1440.5], [468.5, 1441.5], [473.5, 1441.5], [472.5, 1445.5], [471.5, 1449.5], [470.5, 1451.5], [469.5, 1453.5], [467.5, 1454.5], [466.5, 1456.5]]}, {"id": "twxcpl", "submitted_by": "AmauryPi", "name": "CNES Logo", "description": "The CNES is the French government space agency (you can think of it as \u201cFrench NASA\u201d). Its logo was drawn mostly by the Twitter CNES community. A former version was overwritten at the top of the bottom-left huge French flag, then this one was redrawn next to the Ariane launcher.", "website": "https://cnes.fr/en", "subreddit": "/r/cnes", "center": [1140.5, 763.5], "path": [[1133.5, 759.5], [1135.5, 757.5], [1137.5, 755.5], [1137.5, 750.5], [1139.5, 749.5], [1140.5, 750.5], [1140.5, 755.5], [1144.5, 755.5], [1147.5, 758.5], [1149.5, 760.5], [1150.5, 764.5], [1150.5, 767.5], [1148.5, 769.5], [1145.5, 772.5], [1144.5, 773.5], [1137.5, 773.5], [1137.5, 772.5], [1132.5, 768.5], [1131.5, 767.5], [1131.5, 762.5], [1132.5, 761.5], [1132.5, 760.5], [1133.5, 759.5]]}, -{"id": "twxcem", "submitted_by": "MrCheeze", "name": "Eridan Ampora", "description": "A character from the webcomic Homestuck", "website": "http://www.mspaintadventures.com", "subreddit": "/r/homestuck", "center": [385.5, 150.5], "path": [[387.5, 156.5], [387.5, 151.5], [388.5, 151.5], [388.5, 148.5], [389.5, 148.5], [389.5, 145.5], [380.5, 145.5], [380.5, 148.5], [381.5, 148.5], [381.5, 151.5], [382.5, 151.5], [382.5, 156.5]]}, +{"id": "twxcem", "submitted_by": "MrCheeze", "name": "Eridan Ampora", "description": "A character from the webcomic Homestuck.", "website": "http://www.mspaintadventures.com", "subreddit": "/r/homestuck", "center": [385.5, 150.5], "path": [[387.5, 156.5], [387.5, 151.5], [388.5, 151.5], [388.5, 148.5], [389.5, 148.5], [389.5, 145.5], [380.5, 145.5], [380.5, 148.5], [381.5, 148.5], [381.5, 151.5], [382.5, 151.5], [382.5, 156.5]]}, {"id": "twxc8s", "submitted_by": "Typhoonflame", "name": "Rowlett", "description": "The cute starter from Alola!", "website": "", "subreddit": "/r/pokemon", "center": [1523.5, 1660.5], "path": [[1518.5, 1654.5], [1527.5, 1655.5], [1526.5, 1666.5], [1518.5, 1665.5], [1529.5, 1658.5], [1527.5, 1665.5], [1519.5, 1663.5]]}, {"id": "twxc2f", "submitted_by": "MiguJib", "name": "Banjo and Kazooie", "description": "Protagonists of the Banjo-Kazooie series", "website": "", "subreddit": "", "center": [1128.5, 1580.5], "path": [[1126.5, 1565.5], [1119.5, 1576.5], [1118.5, 1581.5], [1120.5, 1584.5], [1123.5, 1594.5], [1132.5, 1594.5], [1136.5, 1583.5], [1137.5, 1577.5], [1131.5, 1566.5]]}, {"id": "twxbwd", "submitted_by": "Jutima", "name": "La Reine Ratus - The Ratus Queen", "description": "The rat, affectionately referred to as Ratus, is the nickname given to the viewers of Ultia, a French streamer who is their queen, hence the crown.", "website": "https://www.twitch.tv/ultia", "subreddit": "", "center": [294.5, 1538.5], "path": [[290.5, 1545.5], [290.5, 1542.5], [289.5, 1541.5], [289.5, 1540.5], [290.5, 1539.5], [289.5, 1538.5], [289.5, 1536.5], [288.5, 1535.5], [288.5, 1534.5], [289.5, 1533.5], [290.5, 1533.5], [291.5, 1532.5], [292.5, 1531.5], [293.5, 1532.5], [294.5, 1533.5], [296.5, 1533.5], [299.5, 1533.5], [299.5, 1543.5], [297.5, 1543.5], [295.5, 1545.5]]}, @@ -3380,20 +3163,18 @@ {"id": "twxbqc", "submitted_by": "that_loris", "name": "Vivy/Diva", "description": "The haracters Vivy/Diva and Matsumoto from the anime Vivy: Fluorite Eye's Song", "website": "", "subreddit": "/r/Vivy", "center": [471.5, 1654.5], "path": [[462.5, 1634.5], [462.5, 1675.5], [479.5, 1675.5], [479.5, 1633.5], [463.5, 1633.5]]}, {"id": "twxbnb", "submitted_by": "tracerreddit", "name": "Radiant_Soul", "description": "Raidiant_Soul is a small streamer that streams VRchat", "website": "https://www.twitch.tv/radiantsoul_tv", "subreddit": "", "center": [726.5, 832.5], "path": [[721.5, 828.5], [730.5, 828.5], [730.5, 835.5], [721.5, 835.5], [721.5, 828.5]]}, {"id": "twxbml", "submitted_by": "pm_me_gg_fancams", "name": "GFRIEND logo", "description": "Crown logo of Korean girl group GFRIEND (\uc5ec\uc790\uce5c\uad6c), drawn in the official colours of the group.", "website": "https://web.archive.org/web/20210610205222/https://www.sourcemusic.com/ko/girf_profile.php", "subreddit": "/r/GFRIEND", "center": [1503.5, 1060.5], "path": [[1498.5, 1056.5], [1508.5, 1056.5], [1508.5, 1063.5], [1498.5, 1063.5]]}, -{"id": "twxbls", "submitted_by": "HeyItsVal88", "name": "osu!droid", "description": "An osu! logo held up by the android logo, to symbolize the osu!droid community, who play osu! on touchscreen handheld devices that run android.", "website": "", "subreddit": "/r/osudroid", "center": [651.5, 1442.5], "path": [[642.5, 1430.5], [642.5, 1453.5], [659.5, 1453.5], [659.5, 1430.5]]}, +{"id": "twxbls", "submitted_by": "HeyItsVal88", "name": "osu!droid", "description": "An osu! logo held up by the Android logo, to symbolize the osu!droid community, who play osu! on touchscreen handheld devices that run Android.", "website": "https://osu.ppy.sh", "subreddit": "/r/osudroid", "center": [651.5, 1442.5], "path": [[642.5, 1430.5], [642.5, 1453.5], [659.5, 1453.5], [659.5, 1430.5]]}, {"id": "twxbkn", "submitted_by": "j123s", "name": "Takodachi", "description": "The Takodachi are the mascot of Hololive EN talent Ninomae Ina'nis. It was later adapted to hold Pochita and pet BB. Wah!", "website": "https://www.youtube.com/channel/UCMwGHR0BTZuLsmjY_NT5Pwg", "subreddit": "/r/NinomaeInanis", "center": [216.5, 778.5], "path": [[210.5, 774.5], [209.5, 774.5], [209.5, 772.5], [211.5, 772.5], [212.5, 771.5], [212.5, 770.5], [213.5, 769.5], [221.5, 769.5], [222.5, 770.5], [222.5, 771.5], [223.5, 772.5], [225.5, 772.5], [225.5, 774.5], [223.5, 775.5], [225.5, 777.5], [225.5, 781.5], [224.5, 784.5], [225.5, 785.5], [225.5, 792.5], [224.5, 792.5], [214.5, 783.5], [209.5, 783.5], [201.5, 774.5], [195.5, 773.5], [193.5, 771.5], [197.5, 771.5], [202.5, 772.5], [208.5, 778.5], [209.5, 778.5], [210.5, 776.5]]}, -{"id": "twxbb5", "submitted_by": "NutchapolSal", "name": "98", "description": "A promise r/LoveLive held with r/Otonokizaka to make a 98 number in r/place.nA reference to Love Live! Sunshine anime, when Aqours didn't reach the required number of applicants for their school, falling short at 98.nBecomes a meme by the Love Live! Community. Most commonly used by the Love Live! Meme Subreddit, r/Otonokizaka.", "website": "", "subreddit": "/r/Otonokizaka", "center": [883.5, 730.5], "path": [[878.5, 726.5], [888.5, 726.5], [888.5, 734.5], [878.5, 734.5], [878.5, 726.5]]}, +{"id": "twxbb5", "submitted_by": "NutchapolSal", "name": "98", "description": "A promise r/LoveLive held with r/Otonokizaka to make a 98 number in r/place.\nA reference to Love Live! Sunshine anime, when Aqours didn't reach the required number of applicants for their school, falling short at 98.\nBecomes a meme by the Love Live! Community. Most commonly used by the Love Live! Meme Subreddit, r/Otonokizaka.", "website": "", "subreddit": "/r/Otonokizaka", "center": [883.5, 730.5], "path": [[878.5, 726.5], [888.5, 726.5], [888.5, 734.5], [878.5, 734.5], [878.5, 726.5]]}, {"id": "twxb8a", "submitted_by": "cobbleman4", "name": "Ceres Fauna", "description": "Ceres Fauna is a vtuber apart of Hololive. She is the keeper of nature", "website": "https://www.youtube.com/channel/UCO_aKKYxn4tvrqPjcTzZ6EQ", "subreddit": "", "center": [267.5, 731.5], "path": [[265.5, 736.5], [269.5, 736.5], [269.5, 733.5], [271.5, 733.5], [271.5, 734.5], [271.5, 729.5], [270.5, 729.5], [270.5, 726.5], [272.5, 726.5], [271.5, 726.5], [271.5, 725.5], [271.5, 727.5], [264.5, 727.5], [264.5, 726.5], [262.5, 726.5], [263.5, 726.5], [263.5, 725.5], [263.5, 727.5], [264.5, 727.5], [264.5, 729.5], [263.5, 729.5], [263.5, 734.5], [263.5, 733.5], [265.5, 733.5]]}, {"id": "twxb2s", "submitted_by": "ajichees", "name": "Ster Burger", "description": "Ster, also known as STAR_ or Niichts, is a YouTuber and Twitch streamer formerly known for his Team Fortress 2 videos and has inspired Jerma to make his own channel. This burger is his Discord server's icon.", "website": "", "subreddit": "", "center": [135.5, 988.5], "path": [[142.5, 998.5], [129.5, 998.5], [125.5, 994.5], [126.5, 984.5], [129.5, 979.5], [135.5, 978.5], [141.5, 979.5], [145.5, 984.5], [144.5, 994.5]]}, {"id": "twxb2q", "submitted_by": "DarkStar69_", "name": "Gulag Gang", "description": "Gulag Gang is gang from the GTA RP Server, Nopixel. This Gang is led by the Twitch Streamers XQC, Omie and Ming (public server) characters.", "website": "https://nopixel.fandom.com/wiki/Gulag_Gang", "subreddit": "/r/Omie", "center": [417.5, 1109.5], "path": [[404.5, 1097.5], [431.5, 1097.5], [431.5, 1120.5], [403.5, 1120.5]]}, -{"id": "twxb2g", "submitted_by": "DogeMan345", "name": "Cheez Pupugo", "description": "Old emote from the streamer Moonmoon on twitch. It is now the logo for Cheez, the famous classic tetris player. On r/place, it represents the entire classic tetris community.", "website": "ctm.gg", "subreddit": "", "center": [847.5, 1758.5], "path": [[843.5, 1753.5], [845.5, 1753.5], [845.5, 1754.5], [852.5, 1754.5], [843.5, 1754.5], [844.5, 1756.5], [844.5, 1757.5], [842.5, 1757.5], [842.5, 1758.5], [841.5, 1758.5], [841.5, 1761.5], [842.5, 1761.5], [842.5, 1762.5], [843.5, 1762.5], [843.5, 1760.5], [844.5, 1762.5], [844.5, 1763.5], [845.5, 1763.5], [845.5, 1764.5], [849.5, 1764.5], [850.5, 1763.5], [851.5, 1762.5], [852.5, 1761.5], [853.5, 1760.5], [853.5, 1759.5], [854.5, 1759.5], [853.5, 1758.5], [852.5, 1757.5], [852.5, 1756.5], [853.5, 1756.5], [853.5, 1755.5], [848.5, 1753.5]]}, +{"id": "twxb2g", "submitted_by": "DogeMan345", "name": "Cheez Pupugo", "description": "Old emote from the streamer Moonmoon on twitch. It is now the logo for Cheez, the famous classic tetris player. On r/place, it represents the entire classic tetris community.", "website": "https://ctm.gg", "subreddit": "", "center": [847.5, 1758.5], "path": [[843.5, 1753.5], [845.5, 1753.5], [845.5, 1754.5], [852.5, 1754.5], [843.5, 1754.5], [844.5, 1756.5], [844.5, 1757.5], [842.5, 1757.5], [842.5, 1758.5], [841.5, 1758.5], [841.5, 1761.5], [842.5, 1761.5], [842.5, 1762.5], [843.5, 1762.5], [843.5, 1760.5], [844.5, 1762.5], [844.5, 1763.5], [845.5, 1763.5], [845.5, 1764.5], [849.5, 1764.5], [850.5, 1763.5], [851.5, 1762.5], [852.5, 1761.5], [853.5, 1760.5], [853.5, 1759.5], [854.5, 1759.5], [853.5, 1758.5], [852.5, 1757.5], [852.5, 1756.5], [853.5, 1756.5], [853.5, 1755.5], [848.5, 1753.5]]}, {"id": "twxaxn", "submitted_by": "NutchapolSal", "name": "Yuu Takasaki (neso)", "description": "A neso representation of the manager of the Nijigasaki School Idol Club, Yuu Takasaki.", "website": "https://www.lovelive-anime.jp/nijigasaki/worldwide/", "subreddit": "/r/LoveLive", "center": [456.5, 1658.5], "path": [[454.5, 1654.5], [460.5, 1655.5], [460.5, 1661.5], [456.5, 1661.5], [452.5, 1661.5], [452.5, 1655.5], [454.5, 1654.5]]}, {"id": "twxaw9", "submitted_by": "cryoticlul", "name": "Gojou", "description": "Gojou Satoru from the anime Jujutsu Kaisen", "website": "https://myanimelist.net/anime/40748/Jujutsu_Kaisen_TV?q=juju&cat=anime", "subreddit": "/r/JuJutsuKaisen", "center": [872.5, 1190.5], "path": [[868.5, 1174.5], [883.5, 1174.5], [882.5, 1175.5], [882.5, 1176.5], [883.5, 1177.5], [882.5, 1178.5], [883.5, 1179.5], [884.5, 1179.5], [883.5, 1180.5], [884.5, 1181.5], [883.5, 1182.5], [883.5, 1183.5], [882.5, 1183.5], [880.5, 1185.5], [880.5, 1187.5], [879.5, 1188.5], [879.5, 1189.5], [878.5, 1190.5], [878.5, 1191.5], [879.5, 1192.5], [879.5, 1193.5], [880.5, 1194.5], [881.5, 1195.5], [882.5, 1196.5], [883.5, 1197.5], [884.5, 1197.5], [885.5, 1198.5], [886.5, 1199.5], [887.5, 1200.5], [887.5, 1201.5], [888.5, 1202.5], [855.5, 1202.5], [855.5, 1193.5], [861.5, 1193.5], [862.5, 1192.5], [863.5, 1191.5], [864.5, 1190.5], [866.5, 1190.5], [867.5, 1189.5], [867.5, 1186.5], [866.5, 1185.5], [866.5, 1180.5], [867.5, 1179.5], [867.5, 1178.5], [866.5, 1177.5], [867.5, 1176.5], [867.5, 1175.5], [868.5, 1174.5]]}, -{"id": "twxav1", "submitted_by": "Mikeyisroc", "name": "Boston Bruins, Lesbian Flag, Stein's Gate Alliance Heart", "description": "A heart depicting the alliance between Steins Gate, the Lesbian Pride Flag, and the Boston Bruin's logo. These three, along with CTU on the top of the Bruin's logo, frequently defended against attacks from other groups such as the streamer Quin69.", "website": "", "subreddit": "", "center": [493.5, 1913.5], "path": [[496.5, 1908.5], [486.5, 1908.5], [487.5, 1915.5], [493.5, 1922.5], [500.5, 1912.5], [500.5, 1908.5]]}, {"id": "twxaub", "submitted_by": "CrumbleAuxFramboises", "name": "Flora", "description": "A main character from the webcomic Two Kinds", "website": "https://www.reddit.com/r/Twokinds/", "subreddit": "", "center": [860.5, 1766.5], "path": [[852.5, 1764.5], [853.5, 1771.5], [854.5, 1773.5], [857.5, 1775.5], [866.5, 1772.5], [869.5, 1769.5], [868.5, 1764.5], [867.5, 1763.5], [865.5, 1761.5], [864.5, 1760.5], [862.5, 1760.5], [863.5, 1759.5], [864.5, 1757.5], [865.5, 1756.5], [862.5, 1755.5], [861.5, 1757.5], [861.5, 1758.5], [859.5, 1759.5], [859.5, 1758.5], [858.5, 1756.5], [856.5, 1756.5], [856.5, 1756.5], [857.5, 1758.5], [858.5, 1759.5], [857.5, 1760.5], [855.5, 1761.5], [853.5, 1763.5], [852.5, 1766.5], [852.5, 1769.5], [852.5, 1769.5], [852.5, 1769.5], [852.5, 1770.5], [852.5, 1770.5], [852.5, 1770.5], [853.5, 1771.5]]}, {"id": "twxatz", "submitted_by": "tea_plusplus", "name": "Flora by Twokinds", "description": "Flora is one of the main characters of the long running furry webcomic Twokinds created by Tom Fischbach.", "website": "https://twokinds.keenspot.com/", "subreddit": "/r/twokinds", "center": [860.5, 1765.5], "path": [[853.5, 1755.5], [856.5, 1758.5], [848.5, 1765.5], [857.5, 1775.5], [864.5, 1775.5], [872.5, 1763.5], [871.5, 1760.5], [866.5, 1760.5], [865.5, 1758.5], [868.5, 1754.5], [862.5, 1754.5], [860.5, 1756.5], [858.5, 1755.5], [854.5, 1755.5]]}, {"id": "twxat6", "submitted_by": "alijosius", "name": "Pillars of Gediminas", "description": "Pillars of Gediminas is one of the earliest symbols of Lithuania and its historical coats of arms. They were used in the Grand Duchy of Lithuania.", "website": "", "subreddit": "/r/lithuania", "center": [566.5, 1630.5], "path": [[560.5, 1624.5], [560.5, 1635.5], [572.5, 1635.5], [572.5, 1624.5], [565.5, 1624.5], [560.5, 1624.5]]}, -{"id": "twxasz", "submitted_by": "Juanvim", "name": "Auronplay", "description": "This is the auronplay's minecraft skin. It is the symbol that represents this big youtuber, there is also next to him a puppet called Rodolfo.", "website": "https://www.youtube.com/c/AuronPlay", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twxam1", "submitted_by": "NutchapolSal", "name": "Shioriko Mifune (icon)", "description": "The icon of Shioriko Mifune from Love Live! Nijigasaki School Idol Club.", "website": "https://www.lovelive-anime.jp/nijigasaki/worldwide/", "subreddit": "/r/LoveLive", "center": [868.5, 680.5], "path": [[865.5, 672.5], [865.5, 687.5], [871.5, 687.5], [871.5, 672.5], [865.5, 672.5]]}, {"id": "twxaks", "submitted_by": "Typhoonflame", "name": "Fire Emblem", "description": "Fire Emblem is a tactical role-playing game franchise published by Nintendo. Roy and Leif are shown with an owl named from the Fire Emblem mobile game named Feh above perched on top of the Fire Emblem title.", "website": "", "subreddit": "/r/Fireemblem", "center": [1836.5, 784.5], "path": [[1834.5, 772.5], [1811.5, 772.5], [1811.5, 804.5], [1845.5, 804.5], [1845.5, 794.5], [1846.5, 793.5], [1846.5, 792.5], [1855.5, 792.5], [1855.5, 790.5], [1858.5, 787.5], [1859.5, 778.5], [1873.5, 778.5], [1873.5, 772.5], [1857.5, 772.5], [1850.5, 767.5], [1849.5, 766.5], [1848.5, 762.5], [1848.5, 760.5], [1835.5, 760.5]]}, {"id": "twxajb", "submitted_by": "flopes3570", "name": "K6BD", "description": "K6BD (Kill Six Billion Demons) is a webcomic.", "website": "https://killsixbilliondemons.com/", "subreddit": "/r/killsixbilliondemons", "center": [117.5, 487.5], "path": [[109.5, 484.5], [109.5, 490.5], [125.5, 490.5], [125.5, 484.5], [109.5, 484.5], [109.5, 484.5], [109.5, 484.5]]}, @@ -3405,10 +3186,10 @@ {"id": "twx9qw", "submitted_by": "salapeno", "name": "AvoArmy", "description": "A small community devoted to propagating cute avocados (an OG /r/place initiative)", "website": "", "subreddit": "/r/avoArmy", "center": [453.5, 951.5], "path": [[445.5, 942.5], [460.5, 941.5], [460.5, 961.5], [448.5, 960.5]]}, {"id": "twx9py", "submitted_by": "NutchapolSal", "name": "Chika Takami", "description": "The leader of Aqours, Chika Takami, from Love Live! Sunshine!", "website": "https://www.lovelive-anime.jp/uranohoshi/worldwide/", "subreddit": "/r/LoveLive", "center": [868.5, 690.5], "path": [[865.5, 687.5], [865.5, 693.5], [870.5, 693.5], [870.5, 687.5], [865.5, 687.5]]}, {"id": "twx9oy", "submitted_by": "ThereAreAtoms", "name": "Brawl Stars", "description": "A mobile multiplayer game, made by the Finnish video game company Supercell.", "website": "https://supercell.com/en/games/brawlstars/", "subreddit": "/r/brawlstars", "center": [621.5, 186.5], "path": [[621.5, 174.5], [633.5, 179.5], [633.5, 191.5], [621.5, 199.5], [611.5, 192.5], [607.5, 188.5], [608.5, 184.5], [607.5, 180.5], [618.5, 179.5], [617.5, 177.5]]}, -{"id": "twx9nr", "submitted_by": "TheVingard", "name": "Palace of Westminster", "description": "The Palace of Westminster serves as the meeting place for both the House of Commons and the House of Lords, the two houses of the Parliament of the United Kingdom. Informally known as the Houses of Parliament after its occupants, the Palace lies on the north bank of the River Thames in the City of Westminster, in central London, England.", "website": "", "subreddit": "", "center": [684.5, 541.5], "path": [[661.5, 557.5], [700.5, 557.5], [700.5, 537.5], [661.5, 537.5], [661.5, 537.5], [700.5, 557.5], [700.5, 515.5], [698.5, 513.5], [698.5, 512.5], [697.5, 512.5], [697.5, 509.5], [696.5, 508.5], [696.5, 504.5], [697.5, 504.5], [696.5, 503.5], [695.5, 502.5], [694.5, 503.5], [693.5, 504.5], [694.5, 505.5], [694.5, 508.5], [693.5, 509.5], [693.5, 511.5], [692.5, 512.5], [692.5, 513.5], [691.5, 514.5], [690.5, 515.5], [690.5, 518.5], [690.5, 520.5], [690.5, 522.5], [689.5, 523.5], [689.5, 529.5], [689.5, 529.5], [690.5, 529.5], [690.5, 531.5], [690.5, 537.5], [672.5, 536.5], [673.5, 528.5], [672.5, 525.5], [671.5, 528.5], [671.5, 533.5], [670.5, 533.5], [669.5, 531.5], [668.5, 530.5], [666.5, 530.5], [665.5, 531.5], [665.5, 532.5], [663.5, 533.5], [663.5, 528.5], [662.5, 526.5], [661.5, 528.5], [661.5, 537.5], [690.5, 536.5], [672.5, 536.5], [661.5, 538.5]]}, +{"id": "twx9nr", "submitted_by": "TheVingard", "name": "Palace of Westminster", "description": "The Palace of Westminster serves as the meeting place for both the House of Commons and the House of Lords, the two houses of the Parliament of the United Kingdom. Informally known as the Houses of Parliament after its occupants, the Palace lies on the north bank of the River Thames in the City of Westminster, in central London, England.", "website": "", "subreddit": "", "center": [684.5, 541.5], "path": [[661.5, 557.5], [700.5, 557.5], [700.5, 530.5], [701.5, 529.5], [701.5, 523.5], [700.5, 522.5], [700.5, 515.5], [699.5, 514.5], [698.5, 513.5], [698.5, 512.5], [697.5, 511.5], [697.5, 509.5], [696.5, 508.5], [696.5, 505.5], [697.5, 504.5], [695.5, 502.5], [693.5, 504.5], [694.5, 505.5], [694.5, 508.5], [693.5, 509.5], [693.5, 511.5], [692.5, 512.5], [692.5, 513.5], [691.5, 514.5], [690.5, 515.5], [690.5, 518.5], [691.5, 519.5], [690.5, 520.5], [690.5, 522.5], [689.5, 523.5], [689.5, 529.5], [690.5, 530.5], [690.5, 537.5], [689.5, 537.5], [688.5, 536.5], [687.5, 537.5], [686.5, 536.5], [685.5, 537.5], [684.5, 536.5], [683.5, 537.5], [682.5, 536.5], [681.5, 537.5], [680.5, 536.5], [679.5, 537.5], [678.5, 536.5], [677.5, 537.5], [676.5, 536.5], [675.5, 537.5], [673.5, 535.5], [673.5, 528.5], [672.5, 527.5], [672.5, 525.5], [672.5, 527.5], [671.5, 528.5], [671.5, 532.5], [670.5, 533.5], [669.5, 532.5], [669.5, 531.5], [668.5, 530.5], [666.5, 530.5], [665.5, 531.5], [665.5, 532.5], [664.5, 533.5], [663.5, 532.5], [663.5, 528.5], [662.5, 527.5], [662.5, 527.5], [662.5, 526.5], [661.5, 528.5]]}, {"id": "twx9kv", "submitted_by": "Luckyjk", "name": "Kirby (Lesbian)", "description": "This is pixel art of Kirby riding a warp star from their games, except the warp star is recolored to the colors of the lesbian flag. This was built by r/transplace and is on the trans flag.", "website": "", "subreddit": "", "center": [698.5, 454.5], "path": [[694.5, 442.5], [698.5, 442.5], [699.5, 443.5], [700.5, 443.5], [701.5, 444.5], [702.5, 445.5], [703.5, 445.5], [704.5, 444.5], [705.5, 444.5], [706.5, 445.5], [706.5, 451.5], [707.5, 452.5], [708.5, 453.5], [709.5, 453.5], [710.5, 454.5], [711.5, 454.5], [711.5, 456.5], [711.5, 457.5], [710.5, 457.5], [709.5, 457.5], [707.5, 457.5], [705.5, 457.5], [704.5, 458.5], [704.5, 459.5], [702.5, 459.5], [702.5, 460.5], [703.5, 460.5], [704.5, 460.5], [704.5, 466.5], [703.5, 466.5], [702.5, 465.5], [701.5, 465.5], [700.5, 464.5], [699.5, 464.5], [698.5, 463.5], [697.5, 463.5], [696.5, 463.5], [695.5, 464.5], [694.5, 464.5], [693.5, 465.5], [691.5, 465.5], [691.5, 466.5], [690.5, 466.5], [689.5, 466.5], [689.5, 463.5], [690.5, 462.5], [690.5, 461.5], [691.5, 460.5], [691.5, 456.5], [690.5, 455.5], [689.5, 454.5], [689.5, 453.5], [688.5, 452.5], [688.5, 449.5], [689.5, 449.5], [690.5, 448.5], [690.5, 446.5], [691.5, 445.5], [691.5, 444.5], [692.5, 443.5], [693.5, 443.5], [694.5, 442.5]]}, {"id": "twx9ig", "submitted_by": "samudec", "name": "risk of rain 2", "description": "desktop icon for the 3rd person rogue lite risk of rain 2 by hoopoo games", "website": "https://riskofrain2.fandom.com/wiki/Risk_of_Rain_2_Wiki", "subreddit": "/r/riskofrain", "center": [825.5, 1990.5], "path": [[834.5, 1998.5], [816.5, 1998.5], [817.5, 1981.5], [834.5, 1981.5], [834.5, 1998.5]]}, -{"id": "twx9es", "submitted_by": "MeemeeIsAWord", "name": "Albania and Kosovo", "description": "Both flags were made by one community.", "website": "", "subreddit": "/r/albania", "center": [341.5, 278.5], "path": [[355.5, 253.5], [355.5, 297.5], [335.5, 297.5], [317.5, 297.5], [317.5, 283.5], [335.5, 283.5], [335.5, 253.5], [335.5, 253.5]]}, +{"id": "twx9es", "submitted_by": "MeemeeIsAWord", "name": "Albania and Kosovo", "description": "Both flags were made by one community. The Albanians formed an alliance with r/cricket, r/berkeley and r/IndiaPlace to protect each-other from griefing and attacks.", "website": "", "subreddit": "/r/albania, /r/kosovo", "center": [341.5, 278.5], "path": [[355.5, 253.5], [355.5, 297.5], [335.5, 297.5], [317.5, 297.5], [317.5, 283.5], [335.5, 283.5], [335.5, 253.5], [335.5, 253.5]]}, {"id": "twx9cr", "submitted_by": "magicalgirldittochan", "name": "Denmark from r/Polandball", "description": "A little Polandball version of Denmark, very happy with his beverage, and even happier to have a spot on r/place!", "website": "", "subreddit": "/r/polandball", "center": [551.5, 300.5], "path": [[539.5, 288.5], [539.5, 288.5], [563.5, 288.5], [563.5, 288.5], [563.5, 311.5], [563.5, 311.5], [538.5, 311.5], [538.5, 311.5]]}, {"id": "twx9bp", "submitted_by": "NutchapolSal", "name": "First Years of Love Live! Sunshine!", "description": "The first year students of Love Live! Sunshine! These students are Yoshiko Tsushima, Hanamaru Kunikida, Leah Kazuno, and Ruby Kurosawa (the mascot of r/LoveLive for r/Place 2022)", "website": "https://www.lovelive-anime.jp/uranohoshi/worldwide/", "subreddit": "/r/LoveLive", "center": [900.5, 678.5], "path": [[897.5, 669.5], [897.5, 686.5], [898.5, 689.5], [902.5, 689.5], [902.5, 667.5], [897.5, 667.5], [897.5, 669.5]]}, {"id": "twx8yi", "submitted_by": "Typhoonflame", "name": "Charizardf", "description": "The iconic Pokemon we all love. Probably overrated :P", "website": "", "subreddit": "/r/pokemon", "center": [900.5, 1507.5], "path": [[889.5, 1497.5], [913.5, 1496.5], [911.5, 1517.5], [889.5, 1519.5]]}, @@ -3419,14 +3200,14 @@ {"id": "twx8kg", "submitted_by": "Romulus_Quirinus_1", "name": "Rammstein", "description": "The logo of the German band Rammstein along with the hastag of their 2022 album ZEIT", "website": "https://www.rammstein.de", "subreddit": "/r/rammstein", "center": [683.5, 1584.5], "path": [[673.5, 1571.5], [695.5, 1571.5], [695.5, 1594.5], [671.5, 1598.5]]}, {"id": "twx8kd", "submitted_by": "NutchapolSal", "name": "Ruby Kurosawa", "description": "A stylized representation of Ruby Kurosawa from her MV, Cotton Candy Ei Ei Oh.", "website": "https://www.youtube.com/watch?v=Ksf_gq6fZZM", "subreddit": "/r/LoveLive", "center": [886.5, 670.5], "path": [[861.5, 641.5], [862.5, 637.5], [869.5, 634.5], [872.5, 636.5], [876.5, 632.5], [902.5, 632.5], [902.5, 666.5], [913.5, 667.5], [914.5, 674.5], [914.5, 681.5], [906.5, 686.5], [905.5, 689.5], [907.5, 688.5], [911.5, 689.5], [910.5, 695.5], [906.5, 698.5], [895.5, 708.5], [891.5, 710.5], [885.5, 707.5], [884.5, 707.5], [884.5, 715.5], [886.5, 724.5], [879.5, 726.5], [875.5, 719.5], [876.5, 695.5], [871.5, 693.5], [870.5, 687.5], [872.5, 684.5], [871.5, 669.5], [860.5, 665.5], [859.5, 655.5], [856.5, 651.5], [857.5, 647.5], [862.5, 637.5]]}, {"id": "twx8j9", "submitted_by": "xRGTMX", "name": "Juan", "description": "A friendly void monster with glasses, a clown nose, and an all-seeing eye. Fun at parties, great with children, and kind to strangers.", "website": "", "subreddit": "/r/void", "center": [288.5, 1082.5], "path": [[254.5, 1043.5], [254.5, 1121.5], [321.5, 1121.5], [321.5, 1043.5]]}, -{"id": "twx8j2", "submitted_by": "ASoul_Family", "name":"A-SOUL","description":"A-SOUL is a 3D virtual idol group from China.\nThe group is composed of five members: AvA (@向晚大魔王), Bella (@贝拉Kira), Carol (@珈乐Carol), Diana (@嘉然今天吃什么), and Eileen (@乃琳Queen).\nFollow the official account @A-SOUL_Official to get news about them. You can find them on bilibili.com .","website":"https://space.bilibili.com/703007996","subreddit": "/r/asoul","center":[980.5,503.5],"path":[[957.5,498.5],[965.5,498.5],[965.5,496.5],[1003.5,496.5],[1003.5,509.5],[959.5,509.5],[959.5,514.5],[957.5,514.5]]}, +{"id": "twx8j2", "submitted_by": "ASoul_Family", "name": "A-SOUL", "description": "A-SOUL is a 3D virtual idol group from China.\nThe group is composed of five members: AvA (@\u5411\u665a\u5927\u9b54\u738b), Bella (@\u8d1d\u62c9Kira), Carol (@\u73c8\u4e50Carol), Diana (@\u5609\u7136\u4eca\u5929\u5403\u4ec0\u4e48), and Eileen (@\u4e43\u7433Queen).\nFollow the official account @A-SOUL_Official to get news about them. You can find them on bilibili.com .", "website": "https://space.bilibili.com/703007996", "subreddit": "/r/asoul", "center": [980.5, 503.5], "path": [[957.5, 498.5], [965.5, 498.5], [965.5, 496.5], [1003.5, 496.5], [1003.5, 509.5], [959.5, 509.5], [959.5, 514.5], [957.5, 514.5]]}, {"id": "twx8g0", "submitted_by": "lilihahattl", "name": "TOUHOU logo", "description": "It was suppose to be Marval Logo, but stray touhou fan kept changing it to Touhou,in the end the touhou hijack server gave up convincing people, really sorry Marval Fan", "website": "", "subreddit": "", "center": [1714.5, 826.5], "path": [[1700.5, 822.5], [1728.5, 822.5], [1728.5, 830.5], [1700.5, 830.5]]}, {"id": "twx8fr", "submitted_by": "scorpion24100", "name": "A Hat in Time hat", "description": "A popular icon for the game A Hat in Time, its the hat worn my Hat Kid (supposedly while in time)", "website": "https://gearsforbreakfast.com/games/a-hat-in-time/", "subreddit": "/r/AHatInTime", "center": [1379.5, 55.5], "path": [[1377.5, 51.5], [1380.5, 51.5], [1380.5, 59.5], [1381.5, 59.5], [1376.5, 59.5], [1377.5, 59.5], [1377.5, 51.5]]}, {"id": "twx861", "submitted_by": "katelliez", "name": "The University Of Alberta", "description": "A public research university located in Edmonton, Alberta, Canada. A.K.A U of A or uAlberta.", "website": "https://www.ualberta.ca", "subreddit": "/r/uAlberta", "center": [1238.5, 46.5], "path": [[1230.5, 36.5], [1230.5, 54.5], [1235.5, 58.5], [1241.5, 58.5], [1247.5, 54.5], [1247.5, 36.5]]}, {"id": "twx7s1", "submitted_by": "Ivsucram", "name": "Corotinho", "description": "Corote (or Corotinho), a Brazilian alcoholic liquor (cacha\u00e7a) popular between young people, specially university students.", "website": "https://www1.folha.uol.com.br/mercado/2019/03/bebida-de-r-3-corote-repagina-marca-e-vira-atracao-entre-universitarios.shtml", "subreddit": "/r/brasil", "center": [1408.5, 1798.5], "path": [[1409.5, 1788.5], [1412.5, 1789.5], [1415.5, 1796.5], [1414.5, 1807.5], [1402.5, 1807.5], [1402.5, 1794.5], [1405.5, 1788.5], [1411.5, 1788.5]]}, {"id": "twx7q7", "submitted_by": "halcyondays-", "name": "Cal\u00e7ad\u00e3o de Copacabana", "description": "The green pattern used here is inpired by the sidewalk of Copacabana Beach, in Rio de Janeiro.", "website": "https://prefeitura.rio", "subreddit": "/r/brasil", "center": [1202.5, 572.5], "path": [[1195.5, 568.5], [1186.5, 568.5], [1188.5, 571.5], [1188.5, 573.5], [1185.5, 576.5], [1185.5, 579.5], [1190.5, 579.5], [1190.5, 577.5], [1192.5, 577.5], [1192.5, 573.5], [1197.5, 573.5], [1197.5, 577.5], [1213.5, 577.5], [1214.5, 573.5], [1219.5, 573.5], [1220.5, 568.5]]}, -{"id": "twx7nt", "submitted_by": "ThatOtherKageBoi", "name": "Flag of Bornholm", "description": "The unofficial flag of the Danish island of Bornholm, which has a distinct Identity due to its distance from the mainland.", "website": "", "subreddit": "", "center": [451.5, 172.5], "path": [[463.5, 164.5], [438.5, 164.5], [438.5, 180.5], [463.5, 180.5], [463.5, 164.5]]}, -{"id": "twx7m3", "submitted_by": "Strillenn", "name": "Dala horse", "description": "Traditional carved, painted wooden statue of a horse originating in the Swedish province of Dalarna", "website": "https://en.wikipedia.org/wiki/Dalecarlian_horse", "subreddit": "", "center": [720.5, 88.5], "path": [[711.5, 103.5], [711.5, 85.5], [709.5, 84.5], [708.5, 85.5], [706.5, 85.5], [705.5, 84.5], [704.5, 82.5], [703.5, 80.5], [704.5, 79.5], [705.5, 78.5], [706.5, 77.5], [707.5, 76.5], [708.5, 75.5], [709.5, 75.5], [710.5, 74.5], [710.5, 74.5], [710.5, 72.5], [711.5, 70.5], [712.5, 70.5], [713.5, 70.5], [714.5, 71.5], [715.5, 72.5], [716.5, 73.5], [717.5, 74.5], [718.5, 75.5], [719.5, 75.5], [719.5, 76.5], [720.5, 76.5], [721.5, 77.5], [721.5, 78.5], [721.5, 80.5], [721.5, 81.5], [722.5, 82.5], [723.5, 83.5], [725.5, 83.5], [726.5, 84.5], [727.5, 84.5], [729.5, 84.5], [730.5, 84.5], [733.5, 84.5], [734.5, 84.5], [735.5, 84.5], [735.5, 85.5], [736.5, 87.5], [736.5, 90.5], [736.5, 92.5], [736.5, 93.5], [736.5, 95.5], [736.5, 97.5], [736.5, 100.5], [736.5, 102.5], [736.5, 103.5], [730.5, 103.5], [730.5, 98.5], [729.5, 97.5], [729.5, 96.5], [728.5, 95.5], [719.5, 95.5], [718.5, 96.5], [717.5, 98.5], [717.5, 103.5]]}, +{"id": "twx7nt", "submitted_by": "ThatOtherKageBoi", "name": "Flag of Bornholm", "description": "The unofficial flag of the Danish island of Bornholm, which has a distinct identity due to its distance from the mainland.", "website": "https://en.wikipedia.org/wiki/Bornholm", "subreddit": "/r/place_nordicunion", "center": [451.5, 172.5], "path": [[463.5, 164.5], [438.5, 164.5], [438.5, 180.5], [463.5, 180.5], [463.5, 164.5]]}, +{"id": "twx7m3", "submitted_by": "Strillenn", "name": "Dala horse", "description": "Traditional carved, painted wooden statue of a horse originating in the Swedish province of Dalarna", "website": "https://en.wikipedia.org/wiki/Dalecarlian_horse", "subreddit": "/r/sweden", "center": [720.5, 88.5], "path": [[711.5, 103.5], [711.5, 85.5], [709.5, 84.5], [708.5, 85.5], [706.5, 85.5], [705.5, 84.5], [704.5, 82.5], [703.5, 80.5], [704.5, 79.5], [705.5, 78.5], [706.5, 77.5], [707.5, 76.5], [708.5, 75.5], [709.5, 75.5], [710.5, 74.5], [710.5, 74.5], [710.5, 72.5], [711.5, 70.5], [712.5, 70.5], [713.5, 70.5], [714.5, 71.5], [715.5, 72.5], [716.5, 73.5], [717.5, 74.5], [718.5, 75.5], [719.5, 75.5], [719.5, 76.5], [720.5, 76.5], [721.5, 77.5], [721.5, 78.5], [721.5, 80.5], [721.5, 81.5], [722.5, 82.5], [723.5, 83.5], [725.5, 83.5], [726.5, 84.5], [727.5, 84.5], [729.5, 84.5], [730.5, 84.5], [733.5, 84.5], [734.5, 84.5], [735.5, 84.5], [735.5, 85.5], [736.5, 87.5], [736.5, 90.5], [736.5, 92.5], [736.5, 93.5], [736.5, 95.5], [736.5, 97.5], [736.5, 100.5], [736.5, 102.5], [736.5, 103.5], [730.5, 103.5], [730.5, 98.5], [729.5, 97.5], [729.5, 96.5], [728.5, 95.5], [719.5, 95.5], [718.5, 96.5], [717.5, 98.5], [717.5, 103.5]]}, {"id": "twx7iu", "submitted_by": "Typhoonflame", "name": "Diablo", "description": "Diablo logo", "website": "", "subreddit": "/r/Diablo", "center": [371.5, 1869.5], "path": [[366.5, 1862.5], [375.5, 1862.5], [375.5, 1875.5], [366.5, 1875.5]]}, {"id": "twx7ho", "submitted_by": "Ok_Nectarine4623", "name": "Xdinary Heroes Logo", "description": "A small logo of the band Xdinary Heroes", "website": "", "subreddit": "/r/XdinaryHeroes", "center": [172.5, 1241.5], "path": [[178.5, 1246.5], [166.5, 1246.5], [166.5, 1235.5], [178.5, 1235.5], [178.5, 1235.5]]}, {"id": "twx7gk", "submitted_by": "BassScotty", "name": "GMP Diploma", "description": "A french degree in mechanical and production engineering (equivalent to an associate's degree)", "website": "https://fr.wikipedia.org/wiki/Bachelor_universitaire_de_technologie_en_g%C3%A9nie_m%C3%A9canique_et_productique", "subreddit": "", "center": [1163.5, 1417.5], "path": [[1154.5, 1415.5], [1154.5, 1419.5], [1171.5, 1419.5], [1171.5, 1415.5]]}, @@ -3455,7 +3236,6 @@ {"id": "twx4fx", "submitted_by": "Fidlesticks_1", "name": "Debian", "description": "Debian is one of the most stable linux distros", "website": "https://www.debian.org/", "subreddit": "/r/debian", "center": [34.5, 697.5], "path": [[33.5, 703.5], [30.5, 699.5], [30.5, 695.5], [33.5, 692.5], [36.5, 692.5], [38.5, 694.5], [38.5, 698.5], [34.5, 701.5]]}, {"id": "twx438", "submitted_by": "WilliamIsYoung", "name": "Karl Marx", "description": "The famous economist and philosopher who influenced economics and politics in massive ways. Produced by the Twitch streamer Carter and his community.", "website": "https://www.twitch.tv/carter", "subreddit": "", "center": [798.5, 1188.5], "path": [[809.5, 1203.5], [786.5, 1203.5], [786.5, 1174.5], [810.5, 1173.5]]}, {"id": "twx3wy", "submitted_by": "_8o_", "name": "Farfadox", "description": "argentinian youtuber's minecraft skin", "website": "https://www.youtube.com/c/Farfadox", "subreddit": "", "center": [1771.5, 1382.5], "path": [[1767.5, 1378.5], [1774.5, 1378.5], [1774.5, 1385.5], [1767.5, 1385.5]]}, -{"id": "twx3uk", "submitted_by": "-ToasterGod-", "name": "Mindustry logo and icons", "description": "pixel art representing various structures from the mobile game mindustry", "website": "", "subreddit": "/r/Mindustry", "center": [503.5, 1200.5], "path": [[502.5, 1236.5], [554.5, 1236.5], [553.5, 1173.5], [440.5, 1173.5], [439.5, 1212.5], [501.5, 1213.5]]}, {"id": "twx3s0", "submitted_by": "L10nHeart8", "name": "iPandarina", "description": "Spanish streamer from Benalm\u00e1dena for KOI. Mother of Shilka and Neo. Viewer before streamer", "website": "https://www.twitch.tv/ipandarina", "subreddit": "", "center": [748.5, 1395.5], "path": [[775.5, 1391.5], [728.5, 1391.5], [723.5, 1403.5], [734.5, 1403.5], [735.5, 1398.5], [775.5, 1398.5], [775.5, 1398.5]]}, {"id": "twx3q1", "submitted_by": "ProfEinhornsberg", "name": "Moondye7 Logo", "description": "This is the logo of a German Twitch Streamer and YouTuber, Moondye7", "website": "https://www.twitch.tv/moondye7", "subreddit": "/r/Moondye7", "center": [848.5, 995.5], "path": [[843.5, 992.5], [853.5, 992.5], [853.5, 998.5], [843.5, 998.5], [843.5, 992.5]]}, {"id": "twx3pu", "submitted_by": "Kaonechan", "name": "DK", "description": "A famous russian singer and streamer Danila Kashin (DK)", "website": "https://www.twitch.tv/dkincc", "subreddit": "", "center": [1947.5, 564.5], "path": [[1892.5, 539.5], [1892.5, 589.5], [2000.5, 589.5], [2004.5, 539.5], [1999.5, 539.5], [1999.5, 539.5], [1999.5, 539.5], [1999.5, 539.5], [1893.5, 539.5], [1893.5, 539.5], [1891.5, 546.5]]}, @@ -3466,10 +3246,9 @@ {"id": "twx365", "submitted_by": "Ivsucram", "name": "Toucan", "description": "Depiction of a Toucan (Tucano, in Portuguese), a common bird found in the amazonian forest area.", "website": "https://en.wikipedia.org/wiki/Toucan", "subreddit": "/r/brasil", "center": [1012.5, 610.5], "path": [[1004.5, 615.5], [1008.5, 620.5], [1017.5, 619.5], [1019.5, 613.5], [1018.5, 602.5], [1015.5, 601.5], [1002.5, 601.5], [998.5, 603.5], [1010.5, 607.5], [1010.5, 611.5], [1005.5, 615.5]]}, {"id": "twx327", "submitted_by": "Romulus_Quirinus_1", "name": "Phosphophyllite", "description": "Phosphophyllite is the main character of Houseki no Kuni (Land of the Lustrous)", "website": "", "subreddit": "/r/landofthelustrous", "center": [1571.5, 510.5], "path": [[1575.5, 497.5], [1579.5, 504.5], [1579.5, 508.5], [1575.5, 511.5], [1576.5, 514.5], [1577.5, 518.5], [1575.5, 521.5], [1573.5, 524.5], [1574.5, 528.5], [1573.5, 530.5], [1572.5, 529.5], [1573.5, 521.5], [1571.5, 521.5], [1571.5, 522.5], [1569.5, 528.5], [1569.5, 529.5], [1566.5, 526.5], [1568.5, 521.5], [1568.5, 519.5], [1566.5, 518.5], [1566.5, 516.5], [1567.5, 511.5], [1565.5, 507.5], [1563.5, 502.5], [1564.5, 500.5], [1569.5, 497.5]]}, {"id": "twx31n", "submitted_by": "cryoticlul", "name": "Mushoku Tensei", "description": "Artwork for the anime Mushoku Tensei, the girl is the mage Roxy", "website": "https://myanimelist.net/anime/39535/Mushoku_Tensei__Isekai_Ittara_Honki_Dasu?q=mushoku&cat=anime", "subreddit": "/r/mushokutensei, /r/Roxy", "center": [1866.5, 690.5], "path": [[1892.5, 664.5], [1850.5, 664.5], [1850.5, 666.5], [1841.5, 666.5], [1840.5, 715.5], [1891.5, 715.5], [1892.5, 664.5]]}, -{"id": "twx2e7", "submitted_by": "afanadorsanti", "name": "ipandarina", "description": "ipandarina is a spanish variety droper streamer", "website": "twitch.tv/ipandarina", "subreddit": "", "center": [0.5, 0.5], "path": [[774.5, 1391.5], [730.5, 1391.5], [723.5, 1403.5], [735.5, 1403.5], [735.5, 1398.5], [774.5, 1398.5]]}, +{"id": "twx2e7", "submitted_by": "afanadorsanti", "name": "ipandarina", "description": "ipandarina is a spanish variety droper streamer", "website": "https://twitch.tv/ipandarina", "subreddit": "", "center": [0.5, 0.5], "path": [[774.5, 1391.5], [730.5, 1391.5], [723.5, 1403.5], [735.5, 1403.5], [735.5, 1398.5], [774.5, 1398.5]]}, {"id": "twx2aa", "submitted_by": "cobbleman4", "name": "Ouro Kronii", "description": "Ouro Kronii is a Vtuber for Hololive. she is a warden of time", "website": "https://www.youtube.com/c/OuroKroniiCh", "subreddit": "", "center": [277.5, 731.5], "path": [[281.5, 736.5], [273.5, 736.5], [274.5, 735.5], [275.5, 734.5], [275.5, 732.5], [273.5, 732.5], [273.5, 733.5], [273.5, 731.5], [272.5, 731.5], [272.5, 730.5], [272.5, 730.5], [273.5, 730.5], [273.5, 728.5], [274.5, 728.5], [274.5, 727.5], [275.5, 727.5], [275.5, 726.5], [276.5, 726.5], [276.5, 727.5], [278.5, 727.5], [278.5, 726.5], [279.5, 726.5], [279.5, 727.5], [280.5, 727.5], [280.5, 728.5], [281.5, 728.5], [281.5, 730.5], [282.5, 730.5], [282.5, 731.5], [281.5, 731.5], [281.5, 733.5], [280.5, 732.5], [279.5, 732.5], [279.5, 733.5]]}, {"id": "twx25l", "submitted_by": "zabdielemm", "name": "Elitecraft", "description": "Some of the members of Elitecraft 3 (Minecraft SMP server)nEsVandal, SrAmilcar, Kakytron, KillerCreeper55, Farfadox, Crisgreen, Shadoune666, ElRichMC", "website": "https://twitter.com/EliteCraftSMP", "subreddit": "", "center": [1785.5, 1378.5], "path": [[1766.5, 1369.5], [1766.5, 1386.5], [1803.5, 1386.5], [1803.5, 1369.5]]}, -{"id": "twx254", "submitted_by": "Typhoonflame", "name": "Mike Wazowski", "description": "The iconic green dude with one ye from Monsters Inc!", "website": "", "subreddit": "/r/monstersinc", "center": [0.5, 0.5], "path": []}, {"id": "twx23x", "submitted_by": "MildlyAgitatedBidoof", "name": "Helluva Boss", "description": "The logo for I.M.P, a hell-based assassination company from the online cartoon Helluva Boss.", "website": "", "subreddit": "/r/HelluvaBoss", "center": [1297.5, 539.5], "path": [[1291.5, 534.5], [1303.5, 534.5], [1303.5, 544.5], [1291.5, 544.5], [1291.5, 534.5]]}, {"id": "twx1p0", "submitted_by": "blindedbytheblight", "name": "Peeky", "description": "A red gnome from indie rhythm RPG Everhood. This particular gnome was nicknamed Peeky by fans, because they are peeking over Blue Thief.", "website": "", "subreddit": "/r/everhood", "center": [1304.5, 1887.5], "path": [[1307.5, 1890.5], [1303.5, 1890.5], [1302.5, 1891.5], [1301.5, 1891.5], [1301.5, 1890.5], [1302.5, 1889.5], [1302.5, 1886.5], [1303.5, 1885.5], [1303.5, 1884.5], [1304.5, 1883.5], [1305.5, 1884.5], [1305.5, 1885.5], [1306.5, 1886.5], [1306.5, 1889.5]]}, {"id": "twx18b", "submitted_by": "HeyItsVal88", "name": "Hatsune Miku & Nyan Cat", "description": "The Vocaloid Hatsune Miku riding the popular internet meme Nyan Cat.", "website": "https://www.reddit.com/r/NyanPlace/", "subreddit": "/r/hatsune", "center": [1708.5, 1473.5], "path": [[1683.5, 1484.5], [1681.5, 1452.5], [1681.5, 1451.5], [1725.5, 1451.5], [1725.5, 1459.5], [1733.5, 1460.5], [1734.5, 1495.5], [1687.5, 1494.5], [1687.5, 1484.5]]}, @@ -3494,8 +3273,8 @@ {"id": "twwzk8", "submitted_by": "thelolo_007", "name": "Lumity", "description": "Lumity is the ship between Luz Noceda and Amity Blight from The Owl House.", "website": "", "subreddit": "/r/TheOwlHouse", "center": [465.5, 1066.5], "path": [[462.5, 1069.5], [468.5, 1069.5], [468.5, 1066.5], [466.5, 1063.5], [464.5, 1063.5], [462.5, 1066.5]]}, {"id": "twwzfj", "submitted_by": "Queen_of_dogs_01", "name": "Warrior Cats Ultimate Edition Logo", "description": "Roblox game based on the popular book series Warriors (Warrior Cats) published by HarperCollins", "website": "", "subreddit": "/r/WarriorCats", "center": [941.5, 812.5], "path": [[922.5, 791.5], [921.5, 795.5], [919.5, 805.5], [923.5, 820.5], [933.5, 832.5], [941.5, 835.5], [952.5, 830.5], [959.5, 820.5], [960.5, 810.5], [960.5, 810.5], [961.5, 807.5], [961.5, 795.5], [960.5, 793.5], [957.5, 793.5], [957.5, 794.5], [952.5, 798.5], [951.5, 794.5], [933.5, 794.5], [933.5, 800.5], [924.5, 793.5]]}, {"id": "twwzdm", "submitted_by": "cobbleman4", "name": "Takodachi", "description": "Takodachis are mascots used to represent viewers of the Hololive vtuber Ninomae Inanis", "website": "https://www.youtube.com/channel/UCMwGHR0BTZuLsmjY_NT5Pwg", "subreddit": "", "center": [215.5, 775.5], "path": [[224.5, 784.5], [224.5, 781.5], [225.5, 781.5], [225.5, 777.5], [224.5, 776.5], [223.5, 776.5], [223.5, 775.5], [223.5, 774.5], [225.5, 774.5], [225.5, 772.5], [223.5, 772.5], [222.5, 771.5], [222.5, 770.5], [221.5, 769.5], [220.5, 767.5], [219.5, 767.5], [219.5, 764.5], [220.5, 764.5], [217.5, 765.5], [215.5, 765.5], [215.5, 767.5], [214.5, 769.5], [212.5, 771.5], [209.5, 772.5], [210.5, 774.5], [210.5, 776.5], [210.5, 778.5], [208.5, 778.5], [202.5, 772.5], [197.5, 772.5], [193.5, 771.5], [195.5, 773.5], [201.5, 774.5], [204.5, 777.5], [207.5, 780.5], [209.5, 781.5], [209.5, 782.5], [214.5, 781.5], [214.5, 782.5], [216.5, 781.5], [221.5, 780.5], [220.5, 783.5], [221.5, 785.5]]}, -{"id": "twwz9a", "submitted_by": "Bloemist", "name": "Tiny Rainbow", "description": "A tiny rainbow with a big heart. Had a long standing friendly alliance with the BOOM TEAM crew next to it.", "website": "", "subreddit": "", "center": [1523.5, 1242.5], "path": [[1521.5, 1233.5], [1524.5, 1233.5], [1524.5, 1250.5], [1521.5, 1250.5]]}, -{"id": "twwz81", "submitted_by": "Synedh", "name": "Twitch FR", "description": "Logo for the administrators of the zone : biggest french Twitch streamers.", "website": "", "subreddit": "", "center": [186.5, 1953.5], "path": [[221.5, 1962.5], [221.5, 1942.5], [192.5, 1943.5], [191.5, 1934.5], [176.5, 1934.5], [175.5, 1947.5], [147.5, 1947.5], [147.5, 1965.5], [221.5, 1965.5], [221.5, 1965.5], [221.5, 1942.5]]}, +{"id": "twwz9a", "submitted_by": "Bloemist", "name": "Tiny Rainbow", "description": "A tiny rainbow with a big heart made by u/Bloemist and friends. Had a long standing friendly alliance with the BOOM TEAM crew next to it.", "website": "", "subreddit": "", "center": [1523.5, 1242.5], "path": [[1521.5, 1233.5], [1524.5, 1233.5], [1524.5, 1250.5], [1521.5, 1250.5]]}, +{"id": "twwz81", "submitted_by": "Synedh", "name": "Twitch FR", "description": "Logo for the administrators of the zone: the biggest French Twitch streamers.", "website": "https://www.twitch.tv/", "subreddit": "/r/placefrance", "center": [186.5, 1953.5], "path": [[221.5, 1962.5], [221.5, 1942.5], [192.5, 1943.5], [191.5, 1934.5], [176.5, 1934.5], [175.5, 1947.5], [147.5, 1947.5], [147.5, 1965.5], [221.5, 1965.5], [221.5, 1965.5], [221.5, 1942.5]]}, {"id": "twwywl", "submitted_by": "Queen_of_dogs_01", "name": "Warrior Cats Ultimate Edition Logo", "description": "Roblox game based on the popular book series Warriors (Warrior Cats) published by HarperCollins", "website": "", "subreddit": "/r/WarriorCats", "center": [1440.5, 778.5], "path": [[1419.5, 753.5], [1460.5, 753.5], [1459.5, 809.5], [1449.5, 809.5], [1448.5, 803.5], [1438.5, 803.5], [1436.5, 797.5], [1428.5, 795.5], [1423.5, 796.5], [1419.5, 804.5]]}, {"id": "twwypu", "submitted_by": "blueishblack", "name": "Stardew Valley mural 2", "description": "The second Stardew Valley mural reconstructed/relocated after the streamer xQc's giant attack on the site few pixels above. This impressive full reconstruction was enabled by the r/StardewValley, Stardew valley discord (https://discord.com/invite/stardewvalley) and wider SDV streamer communities. The second mural also had a strong alliance with the Ratge community on the left, which can be seen from the small SDV duck on Ratge's shoulder.", "website": "https://www.stardewvalley.net/", "subreddit": "/r/StardewValley", "center": [1738.5, 1045.5], "path": [[1709.5, 1008.5], [1709.5, 1081.5], [1767.5, 1082.5], [1767.5, 1009.5]]}, {"id": "twwykq", "submitted_by": "oneghostdog", "name": "Minnesota Wild", "description": "The Minnesota Wild are a professional ice hockey team based in St. Paul, Minnesota, United States. They are members of the Central Division of the Western Conference of the National Hockey League (NHL). The team began play in the 2000-01 NHL season and represents the return of the NHL to Minnesota following the North Stars' move to Dallas in 1993.", "website": "", "subreddit": "/r/wildhockey", "center": [401.5, 1407.5], "path": [[382.5, 1402.5], [399.5, 1392.5], [404.5, 1392.5], [420.5, 1400.5], [420.5, 1418.5], [382.5, 1417.5]]}, @@ -3506,20 +3285,19 @@ {"id": "twwxoa", "submitted_by": "Ambry_the_Blue", "name": "\u010cVUT/CTU - Czech Technical University", "description": "Made by students of CTU mainly from Faculty of Inforatics and Faculty od Electrical Engineering. The first design also included FEE and FIT as acronyms for them.nUncorupted final design:nnhttps://imgur.com/a/udJVGJb", "website": "https://www.cvut.cz", "subreddit": "", "center": [469.5, 1855.5], "path": [[449.5, 1843.5], [449.5, 1867.5], [489.5, 1867.5], [489.5, 1843.5], [449.5, 1843.5]]}, {"id": "twwxfh", "submitted_by": "Ivsucram", "name": "Lobo-guara", "description": "The lobo-guara is a large canine of South America. Its markings resemble those of foxes, but it is neither a fox nor a wolf.", "website": "https://en.wikipedia.org/wiki/Maned_wolf", "subreddit": "/r/brasil", "center": [1183.5, 584.5], "path": [[1189.5, 596.5], [1189.5, 587.5], [1197.5, 590.5], [1197.5, 587.5], [1184.5, 582.5], [1187.5, 569.5], [1180.5, 567.5], [1179.5, 573.5], [1182.5, 582.5], [1177.5, 576.5], [1174.5, 576.5], [1172.5, 582.5], [1177.5, 587.5], [1175.5, 592.5], [1183.5, 596.5], [1189.5, 597.5]]}, {"id": "twwx90", "submitted_by": "ignaco003", "name": "Real Madrid", "description": "Spanish football club real madrid, icons are, the club shield, 13 champions won and iconic idol Iker casillas", "website": "https://www.realmadrid.com/", "subreddit": "/r/realmadrid", "center": [1756.5, 292.5], "path": [[1752.5, 309.5], [1755.5, 309.5], [1755.5, 307.5], [1756.5, 308.5], [1758.5, 308.5], [1759.5, 306.5], [1760.5, 305.5], [1773.5, 302.5], [1773.5, 280.5], [1735.5, 280.5], [1735.5, 287.5], [1744.5, 295.5], [1745.5, 300.5], [1752.5, 308.5], [1753.5, 309.5]]}, -{"id": "twwx6f", "submitted_by": "Akitoscorpio", "name": "The Lithuanian/Rwby war against the Long Sword Cult.", "description": "Throughout all four days of the r/Place 2022 event, a dedicated group attempted to extend the sword on the Lithuanian flag across the entire board to the far right edge. Due to the efforts of the r/Rwby and r/Balticstates communities, they were never able to get past the edges of the flag.", "website": "", "subreddit": "", "center": [422.5, 724.5], "path": [[363.5, 709.5], [365.5, 740.5], [447.5, 739.5], [449.5, 730.5], [497.5, 729.5], [496.5, 713.5], [449.5, 713.5], [449.5, 710.5], [364.5, 709.5]]}, +{"id": "twwx6f", "submitted_by": "Akitoscorpio", "name": "The Lithuanian/Rwby war against the Long Sword Cult.", "description": "Throughout all four days of the r/Place 2022 event, a dedicated group attempted to extend the sword on the Lithuanian flag across the entire board to the far right edge. Due to the efforts of the r/Rwby, r/Balticstates, r/RedvsBlue, and neighboring communities, they were never able to get past the edges of the flag.", "website": "", "subreddit": "", "center": [422.5, 724.5], "path": [[363.5, 709.5], [365.5, 740.5], [447.5, 739.5], [449.5, 730.5], [497.5, 729.5], [496.5, 713.5], [449.5, 713.5], [449.5, 710.5], [364.5, 709.5]]}, {"id": "twwx3b", "submitted_by": "EchoWolftv", "name": "Ethoslab - You've Been Etho'd", "description": "Well-known Minecraft Youtuber", "website": "https://www.youtube.com/channel/UCFKDEp9si4RmHFWJW1vYsMA", "subreddit": "/r/ethoslab", "center": [1812.5, 1287.5], "path": [[1804.5, 1278.5], [1804.5, 1286.5], [1805.5, 1286.5], [1805.5, 1287.5], [1806.5, 1287.5], [1806.5, 1288.5], [1807.5, 1288.5], [1807.5, 1289.5], [1808.5, 1289.5], [1808.5, 1290.5], [1809.5, 1290.5], [1809.5, 1310.5], [1813.5, 1310.5], [1813.5, 1290.5], [1817.5, 1290.5], [1817.5, 1289.5], [1818.5, 1289.5], [1818.5, 1288.5], [1819.5, 1288.5], [1819.5, 1287.5], [1820.5, 1287.5], [1820.5, 1285.5], [1821.5, 1285.5], [1821.5, 1278.5], [1820.5, 1278.5], [1820.5, 1276.5], [1819.5, 1276.5], [1819.5, 1275.5], [1818.5, 1275.5], [1818.5, 1275.5], [1817.5, 1275.5], [1817.5, 1274.5], [1809.5, 1274.5], [1809.5, 1275.5], [1809.5, 1276.5], [1806.5, 1276.5], [1806.5, 1277.5], [1805.5, 1277.5], [1805.5, 1278.5]]}, {"id": "twwx0j", "submitted_by": "CristhianDaza", "name": "Aurigas", "description": "Project Minecraft STA", "website": "https://www.twitch.tv/aurigas", "subreddit": "", "center": [1339.5, 1768.5], "path": [[1332.5, 1753.5], [1345.5, 1753.5], [1345.5, 1783.5], [1332.5, 1783.5]]}, {"id": "twwwxx", "submitted_by": "Dry-Acanthopterygii9", "name": "\u00bfQuieres ser mi novia?", "description": "Pues eso, que si quieres ser mi novia. Quieres o no?", "website": "", "subreddit": "", "center": [1793.5, 1231.5], "path": [[1826.5, 1209.5], [1826.5, 1208.5], [1826.5, 1254.5], [1759.5, 1253.5], [1760.5, 1209.5]]}, {"id": "twwwx8", "submitted_by": "Fidlesticks_1", "name": "Linux mint", "description": "Linux Mint is an operating system for desktop and laptop computers. It is designed to work 'out of the box' and comes fully equipped with the apps most people need.", "website": "https://linuxmint.com/", "subreddit": "/r/linuxmint", "center": [56.5, 684.5], "path": [[52.5, 681.5], [60.5, 681.5], [60.5, 687.5], [52.5, 687.5]]}, {"id": "twwww4", "submitted_by": "cryoticlul", "name": "The Rising of the Shield Hero", "description": "Artwork for the anime The Rising of the Shield Hero, top left is the shield of the main character, the girl on the right is the character Raphtalia", "website": "https://myanimelist.net/anime/35790/Tate_no_Yuusha_no_Nariagari?q=shield%20herp&cat=anime", "subreddit": "/r/RisingOfTheShieldHero", "center": [821.5, 1536.5], "path": [[796.5, 1543.5], [796.5, 1519.5], [843.5, 1519.5], [843.5, 1556.5], [810.5, 1556.5], [810.5, 1543.5], [796.5, 1543.5]]}, -{"id": "twwwpq", "submitted_by": "afanadorsanti", "name": "Relajao Frog", "description": "Relajao frog it's a meme asociated with a spanish streamer called ChusoMontero, specialized on No Hit", "website": "twitch.tv/chusommontero", "subreddit": "/r/ChusoMMontero", "center": [0.5, 0.5], "path": [[1451.5, 1023.5], [1475.5, 1023.5], [1475.5, 1043.5], [1451.5, 1043.5]]}, +{"id": "twwwpq", "submitted_by": "afanadorsanti", "name": "Relajao Frog", "description": "Relajao frog it's a meme asociated with a spanish streamer called ChusoMontero, specialized on No Hit", "website": "https://twitch.tv/chusommontero", "subreddit": "/r/ChusoMMontero", "center": [0.5, 0.5], "path": [[1451.5, 1023.5], [1475.5, 1023.5], [1475.5, 1043.5], [1451.5, 1043.5]]}, {"id": "twwwpk", "submitted_by": "Zmito26", "name": "aXoZer", "description": "Logo of the Spanish streamer aXoZer and his Minecraft face", "website": "https://www.twitch.tv/axozer", "subreddit": "/r/AxoZer", "center": [1824.5, 817.5], "path": [[1803.5, 804.5], [1845.5, 804.5], [1845.5, 830.5], [1816.5, 830.5], [1816.5, 828.5], [1810.5, 828.5], [1810.5, 830.5], [1803.5, 830.5], [1803.5, 828.5], [1802.5, 828.5], [1802.5, 819.5], [1803.5, 819.5], [1803.5, 814.5], [1802.5, 814.5], [1802.5, 805.5], [1803.5, 805.5], [1803.5, 804.5], [1804.5, 804.5]]}, {"id": "twwwor", "submitted_by": "KassXWolfXTigerXFox", "name": "Scuderia Ferrari", "description": "The Emblem and signature Rosso Corsa colour of the Scuderia Ferrari Formula 1 Team", "website": "", "subreddit": "", "center": [496.5, 810.5], "path": [[486.5, 796.5], [505.5, 796.5], [505.5, 824.5], [486.5, 824.5], [486.5, 796.5]]}, {"id": "twwwea", "submitted_by": "ubtx", "name": "AlzheimersGroup comic strip", "description": "Running joke in r/alzheimersgroup is to post the same Garfield comic, repeatedly. This is a simple representation of the original comic.", "website": "", "subreddit": "/r/alzheimersgroup", "center": [1583.5, 1708.5], "path": [[1576.5, 1705.5], [1590.5, 1705.5], [1590.5, 1711.5], [1577.5, 1711.5], [1576.5, 1711.5]]}, {"id": "twww7l", "submitted_by": "Endmym1seryplis", "name": "Meto!", "description": "A phrase used in Chiriqui a province of Panama", "website": "", "subreddit": "/r/panama", "center": [1546.5, 1993.5], "path": [[1523.5, 1986.5], [1568.5, 1986.5], [1568.5, 2000.5], [1523.5, 2000.5]]}, {"id": "twww2g", "submitted_by": "Just_Kirole", "name": "Anton T2x2", "description": "Small russian streamer T2x2. Part of 89squad", "website": "https://www.twitch.tv/t2x2", "subreddit": "", "center": [1950.5, 520.5], "path": [[1927.5, 501.5], [1974.5, 501.5], [1973.5, 540.5], [1973.5, 540.5], [1926.5, 539.5], [1927.5, 502.5]]}, {"id": "twwvzj", "submitted_by": "something2hidemyself", "name": "Mjolnir", "description": "Mjolnir, the Hammer of Thor from Marvel Comics", "website": "", "subreddit": "/r/marvel", "center": [993.5, 1693.5], "path": [[991.5, 1680.5], [994.5, 1680.5], [994.5, 1692.5], [1000.5, 1694.5], [1000.5, 1701.5], [986.5, 1700.5], [986.5, 1694.5], [986.5, 1692.5], [990.5, 1692.5], [990.5, 1680.5], [992.5, 1680.5]]}, -{"id": "twwvys", "submitted_by": "Banthafooood", "name": "VW T1", "description": "The Volkswagen Type 2, also know as the T1 or Bus, is a light commercial vehicle introduced in 1950 by the German automaker Volkswagen as its second car model. Following from the nBeetle.", "website": "www.volkswagen.com", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twwvxg", "submitted_by": "Ivsucram", "name": "14-bis", "description": "The 14-bis was a pioneer era, canard-style biplane designed and built by Brazilian aviation pioneer Alberto Santos-Dumont. In 1906, near Paris, the 14-bis made a manned powered flight that was the first to be publicly witnessed by a crowd.", "website": "https://en.wikipedia.org/wiki/Santos-Dumont_14-bis", "subreddit": "/r/brasil", "center": [1059.5, 582.5], "path": [[1068.5, 580.5], [1075.5, 583.5], [1075.5, 590.5], [1068.5, 593.5], [1061.5, 591.5], [1061.5, 588.5], [1053.5, 584.5], [1041.5, 590.5], [1037.5, 587.5], [1037.5, 584.5], [1065.5, 569.5], [1070.5, 571.5], [1070.5, 576.5], [1063.5, 580.5], [1066.5, 581.5], [1068.5, 580.5]]}, {"id": "twwvs4", "submitted_by": "j123s", "name": "University of Alberta", "description": "The school crest of the University of Alberta, based in Edmonton, Alberta, Canada.", "website": "https://www.ualberta.ca/index.html", "subreddit": "/r/uAlberta", "center": [1238.5, 47.5], "path": [[1230.5, 36.5], [1246.5, 36.5], [1246.5, 54.5], [1241.5, 58.5], [1235.5, 59.5], [1230.5, 54.5]]}, {"id": "twwv8w", "submitted_by": "oneghostdog", "name": "Vegas Golden Knights", "description": "Logo of the NHL team in Las Vegas: the Vegas Golden Knights", "website": "", "subreddit": "/r/goldenknights", "center": [371.5, 1404.5], "path": [[359.5, 1389.5], [382.5, 1389.5], [382.5, 1418.5], [359.5, 1418.5]]}, @@ -3530,61 +3308,55 @@ {"id": "twwuc1", "submitted_by": "stinkyplants", "name": "Atlus Games and Persona", "description": "Atlus Co., Ltd. is a Japanese video game developer, publisher, arcade manufacturer and distribution company based in Tokyo. A subsidiary of Sega, the company is internationally known for its Megami Tensei, Persona, Etrian Odyssey and Trauma Center series, among others. Seen within here, you can see a famous Atlus character Jack Frost from Megami Tensei and featured in others like the Persona series pictured next to the Phantom Thieves Logo from Persona 5.", "website": "https://www.reddit.com/r/atlus/", "subreddit": "/r/atlus", "center": [1496.5, 296.5], "path": [[1508.5, 324.5], [1509.5, 322.5], [1547.5, 279.5], [1451.5, 279.5], [1466.5, 311.5]]}, {"id": "twwubt", "submitted_by": "N0ZTRA", "name": "University of Alberta", "description": "Crest of University of Alberta, a public research university located in Edmonton, Alberta, Canada. It has campuses in Camrose and Calgary additionally.", "website": "https://www.ualberta.ca/", "subreddit": "/r/uAlberta", "center": [1238.5, 46.5], "path": [[1230.5, 36.5], [1230.5, 54.5], [1233.5, 57.5], [1234.5, 57.5], [1235.5, 58.5], [1241.5, 58.5], [1246.5, 54.5], [1246.5, 36.5], [1230.5, 36.5]]}, {"id": "twwubm", "submitted_by": "SirBlubblegum", "name": "Pogostuck", "description": "Pogostuck is a game developed by nHendrik Felix Pohl.nIt can be very frustrating", "website": "https://store.steampowered.com/app/688130/Pogostuck_Rage_With_Your_Friends/", "subreddit": "/r/PogoStuck", "center": [1603.5, 849.5], "path": [[1575.5, 831.5], [1630.5, 831.5], [1630.5, 868.5], [1576.5, 868.5], [1575.5, 832.5]]}, -{"id": "twwu6x", "submitted_by": "haiperrr", "name": "ppL nmplol edition", "description": "ppL built by nmplol's offline chat.", "website": "twitch.tv/nmplol", "subreddit": "/r/Nmpx", "center": [1060.5, 1663.5], "path": [[1065.5, 1658.5], [1065.5, 1667.5], [1054.5, 1667.5], [1054.5, 1658.5], [1064.5, 1658.5]]}, +{"id": "twwu6x", "submitted_by": "haiperrr", "name": "ppL nmplol edition", "description": "ppL built by nmplol's offline chat.", "website": "https://twitch.tv/nmplol", "subreddit": "/r/Nmpx", "center": [1060.5, 1663.5], "path": [[1065.5, 1658.5], [1065.5, 1667.5], [1054.5, 1667.5], [1054.5, 1658.5], [1064.5, 1658.5]]}, {"id": "twwu4i", "submitted_by": "dhnam_LegenDUST", "name": "Kemono Friends Gean", "description": "A character from Kemono Friends, who is based on the Gentoo penguin.nShe is a member of PPP (Penguin Performance Project), an in-franchise idol group.", "website": "https://kemono-friends.jp/", "subreddit": "/r/KemonoFriends", "center": [1697.5, 1565.5], "path": [[1693.5, 1560.5], [1693.5, 1570.5], [1700.5, 1570.5], [1700.5, 1560.5]]}, {"id": "twwu4b", "submitted_by": "litterally_who6354", "name": "Htaune Miku", "description": "Vocaloid software voicebank developed by Crypton", "website": "", "subreddit": "", "center": [1806.5, 744.5], "path": [[1823.5, 749.5], [1827.5, 749.5], [1827.5, 751.5], [1826.5, 751.5], [1826.5, 752.5], [1825.5, 752.5], [1825.5, 753.5], [1824.5, 753.5], [1824.5, 754.5], [1824.5, 753.5], [1823.5, 753.5], [1822.5, 753.5], [1822.5, 755.5], [1819.5, 755.5], [1819.5, 757.5], [1817.5, 757.5], [1817.5, 759.5], [1816.5, 759.5], [1816.5, 760.5], [1815.5, 760.5], [1815.5, 761.5], [1814.5, 761.5], [1814.5, 762.5], [1812.5, 762.5], [1812.5, 763.5], [1791.5, 763.5], [1791.5, 726.5], [1822.5, 726.5], [1822.5, 728.5], [1821.5, 728.5], [1821.5, 733.5], [1822.5, 733.5], [1822.5, 735.5], [1823.5, 735.5], [1823.5, 736.5], [1824.5, 736.5], [1824.5, 737.5], [1824.5, 741.5], [1822.5, 741.5], [1821.5, 742.5], [1821.5, 747.5], [1824.5, 747.5]]}, {"id": "twwu33", "submitted_by": "diamondxdreams", "name": "i_o memorial", "description": "A small tribute to music producer i_o who passed away in November 2020.", "website": "https://en.wikipedia.org/wiki/I_o_(musician)", "subreddit": "", "center": [1994.5, 411.5], "path": [[1999.5, 400.5], [1987.5, 400.5], [1988.5, 422.5], [2000.5, 422.5], [1999.5, 400.5]]}, {"id": "twwu0i", "submitted_by": "CriticalMembership95", "name": "Gojo Satoru", "description": "One of the main protagonists of the Jujutsu Kaisen series.", "website": "", "subreddit": "/r/JuJutsuKaisen", "center": [876.5, 1187.5], "path": [[854.5, 1173.5], [854.5, 1203.5], [888.5, 1203.5], [887.5, 1196.5], [889.5, 1194.5], [889.5, 1192.5], [888.5, 1190.5], [892.5, 1187.5], [893.5, 1189.5], [895.5, 1188.5], [895.5, 1187.5], [897.5, 1189.5], [899.5, 1189.5], [899.5, 1187.5], [904.5, 1187.5], [904.5, 1192.5], [904.5, 1173.5], [854.5, 1173.5]]}, {"id": "twwttf", "submitted_by": "Confident-Soil-3640", "name": "D20", "description": "20-sided dice, mostly known from the popular game Dungeons & Dragons", "website": "", "subreddit": "/r/DnD", "center": [1866.5, 479.5], "path": [[1869.5, 458.5], [1883.5, 469.5], [1883.5, 489.5], [1871.5, 498.5], [1863.5, 499.5], [1848.5, 489.5], [1849.5, 467.5], [1866.5, 457.5], [1863.5, 459.5]]}, {"id": "twwtnh", "submitted_by": "Goras147", "name": "Sirin Derp (Honkai Impact 3rd)", "description": "Pixel-art of the community's inside joke, a derp drawing of Theresa Apocalypse, with the face of Sirin, an important story character, instead.", "website": "https://honkaiimpact3.hoyoverse.com/global/en-us/fab", "subreddit": "/r/houkai3rd", "center": [1990.5, 141.5], "path": [[1981.5, 132.5], [1981.5, 149.5], [1998.5, 149.5], [1998.5, 132.5], [1981.5, 132.5]]}, -{"id": "twwtlm", "submitted_by": "Othli", "name": "The carrot field", "description": "this small field is the second carrot field of the carrot farmers, relocated after the destruction of the 1st one by the void.nnIt also contains elements from the farmers allies, like the Shrimp from r/shrimptank, the eye of the Komodo, the golden carrot from Hermitcraft and the ankylosaur from r/Ankmemes", "website": "", "subreddit": "/r/Farmcarrots", "center": [1739.5, 1438.5], "path": [[1763.5, 1423.5], [1763.5, 1428.5], [1763.5, 1429.5], [1763.5, 1429.5], [1763.5, 1429.5], [1727.5, 1423.5], [1727.5, 1416.5], [1721.5, 1416.5], [1725.5, 1421.5], [1725.5, 1423.5], [1724.5, 1423.5], [1725.5, 1424.5], [1725.5, 1425.5], [1723.5, 1427.5], [1722.5, 1426.5], [1719.5, 1426.5], [1718.5, 1428.5], [1719.5, 1429.5], [1719.5, 1434.5], [1719.5, 1435.5], [1715.5, 1439.5], [1715.5, 1440.5], [1716.5, 1442.5], [1716.5, 1447.5], [1716.5, 1448.5], [1718.5, 1450.5], [1749.5, 1450.5], [1747.5, 1448.5], [1748.5, 1447.5], [1751.5, 1446.5], [1753.5, 1445.5], [1750.5, 1445.5], [1737.5, 1434.5], [1736.5, 1433.5], [1739.5, 1431.5], [1740.5, 1430.5], [1740.5, 1429.5], [1743.5, 1426.5], [1750.5, 1427.5], [1754.5, 1430.5], [1749.5, 1431.5], [1757.5, 1434.5], [1760.5, 1437.5], [1761.5, 1443.5], [1750.5, 1450.5], [1769.5, 1451.5], [1769.5, 1447.5], [1769.5, 1430.5], [1763.5, 1430.5], [1763.5, 1429.5]]}, +{"id": "twwtlm", "submitted_by": "Othli", "name": "The carrot field", "description": "This small field is the second carrot field of the carrot farmers, relocated after the destruction of the first one by the void.\n\nIt also contains elements from the farmers' allies, like the Shrimp from r/shrimptank, the eye of the Komodo, the golden carrot from Hermitcraft and the ankylosaur from r/Ankmemes.", "website": "", "subreddit": "/r/Farmcarrots", "center": [1739.5, 1438.5], "path": [[1763.5, 1423.5], [1763.5, 1428.5], [1763.5, 1429.5], [1763.5, 1429.5], [1763.5, 1429.5], [1727.5, 1423.5], [1727.5, 1416.5], [1721.5, 1416.5], [1725.5, 1421.5], [1725.5, 1423.5], [1724.5, 1423.5], [1725.5, 1424.5], [1725.5, 1425.5], [1723.5, 1427.5], [1722.5, 1426.5], [1719.5, 1426.5], [1718.5, 1428.5], [1719.5, 1429.5], [1719.5, 1434.5], [1719.5, 1435.5], [1715.5, 1439.5], [1715.5, 1440.5], [1716.5, 1442.5], [1716.5, 1447.5], [1716.5, 1448.5], [1718.5, 1450.5], [1749.5, 1450.5], [1747.5, 1448.5], [1748.5, 1447.5], [1751.5, 1446.5], [1753.5, 1445.5], [1750.5, 1445.5], [1737.5, 1434.5], [1736.5, 1433.5], [1739.5, 1431.5], [1740.5, 1430.5], [1740.5, 1429.5], [1743.5, 1426.5], [1750.5, 1427.5], [1754.5, 1430.5], [1749.5, 1431.5], [1757.5, 1434.5], [1760.5, 1437.5], [1761.5, 1443.5], [1750.5, 1450.5], [1769.5, 1451.5], [1769.5, 1447.5], [1769.5, 1430.5], [1763.5, 1430.5], [1763.5, 1429.5]]}, {"id": "twwt7b", "submitted_by": "afrangry", "name": "Monero", "description": "Monero (XMR) is a decentralized cryptocurrency. It uses a public distributed ledger with privacy-enhancing technologies that obfuscate transactions to achieve anonymity and fungibility. Observers cannot decipher addresses trading monero, transaction amounts, address balances, or transaction histories.", "website": "", "subreddit": "/r/monero", "center": [1394.5, 1243.5], "path": [[1358.5, 1238.5], [1358.5, 1252.5], [1365.5, 1252.5], [1369.5, 1256.5], [1369.5, 1263.5], [1382.5, 1263.5], [1382.5, 1269.5], [1387.5, 1269.5], [1387.5, 1243.5], [1450.5, 1243.5], [1450.5, 1233.5], [1363.5, 1233.5], [1358.5, 1238.5]]}, -{"id": "twwt1z", "submitted_by": "mypnw", "name": "Chinese 12 Zodiac", "description": "Chinese zodiac, or shengxiao (/shnng-sshyao/ 'born resembling'), is represented by 12 zodiac animals. In order, they are the Rat, Ox, Tiger, Rabbit, Dragon, Snake, Horse, Goat, Monkey, Rooster, Dog, and Pig.", "website": "r/China_irl", "subreddit": "/r/China_irl", "center": [934.5, 1795.5], "path": [[891.5, 1779.5], [972.5, 1778.5], [973.5, 1815.5], [945.5, 1814.5], [940.5, 1809.5], [939.5, 1815.5], [935.5, 1812.5], [931.5, 1813.5], [922.5, 1805.5], [918.5, 1805.5], [913.5, 1809.5], [911.5, 1812.5], [908.5, 1814.5], [906.5, 1813.5], [905.5, 1809.5], [900.5, 1811.5], [898.5, 1813.5], [896.5, 1814.5], [894.5, 1813.5], [894.5, 1789.5], [890.5, 1788.5], [890.5, 1779.5]]}, +{"id": "twwt1z", "submitted_by": "mypnw", "name": "Chinese 12 Zodiac", "description": "Chinese zodiac, or shengxiao (/shnng-sshyao/ 'born resembling'), is represented by 12 zodiac animals. In order, they are the Rat, Ox, Tiger, Rabbit, Dragon, Snake, Horse, Goat, Monkey, Rooster, Dog, and Pig.", "website": "https://r/China_irl", "subreddit": "/r/China_irl", "center": [934.5, 1795.5], "path": [[891.5, 1779.5], [972.5, 1778.5], [973.5, 1815.5], [945.5, 1814.5], [940.5, 1809.5], [939.5, 1815.5], [935.5, 1812.5], [931.5, 1813.5], [922.5, 1805.5], [918.5, 1805.5], [913.5, 1809.5], [911.5, 1812.5], [908.5, 1814.5], [906.5, 1813.5], [905.5, 1809.5], [900.5, 1811.5], [898.5, 1813.5], [896.5, 1814.5], [894.5, 1813.5], [894.5, 1789.5], [890.5, 1788.5], [890.5, 1779.5]]}, {"id": "twwssf", "submitted_by": "Markovvna", "name": "In memory of Chico", "description": "My son, my world, my everything. Our bond so unique, beautiful & strong. I'll always treasure our 16 years together, I'll always miss you. Until you meow at me again!nnForever in my heart, I love you so much Chico.", "website": "https://www.instagram.com/chicopulguin/", "subreddit": "/r/placeChico", "center": [1558.5, 1115.5], "path": [[1568.5, 1107.5], [1568.5, 1122.5], [1547.5, 1122.5], [1547.5, 1107.5]]}, {"id": "twwsrv", "submitted_by": "Ivsucram", "name": "Iguazu falls", "description": "Waterfalls of the Iguazu River on the border of the Argentine province of Misiones and the Brazilian state of Paran\u00e1. Together, they make up the largest waterfall system in the world.", "website": "https://en.wikipedia.org/wiki/Iguazu_Falls", "subreddit": "/r/brasil", "center": [1062.5, 608.5], "path": [[1085.5, 604.5], [1045.5, 600.5], [1040.5, 614.5], [1084.5, 613.5], [1085.5, 607.5]]}, {"id": "twwspt", "submitted_by": "Nexukii", "name": "Eye of Ender", "description": "An eye of ender is a craftable item in Minecraft, used to locate strongholds and activate the end portals within them.", "website": "", "subreddit": "/r/Minecraft", "center": [1058.5, 1958.5], "path": [[1059.5, 1951.5], [1056.5, 1951.5], [1056.5, 1953.5], [1054.5, 1953.5], [1053.5, 1955.5], [1052.5, 1956.5], [1052.5, 1960.5], [1055.5, 1964.5], [1059.5, 1965.5], [1063.5, 1962.5], [1065.5, 1957.5], [1063.5, 1954.5]]}, {"id": "twwsjj", "submitted_by": "lukacoufyl", "name": "Bangladesh", "description": "Flag of Bangladesh with the National Martyrs\u2019 Memorial and Martyr Monument", "website": "https://en.wikipedia.org/wiki/Bangladesh", "subreddit": "/r/bangladesh", "center": [304.5, 1018.5], "path": [[286.5, 993.5], [286.5, 1042.5], [323.5, 1043.5], [322.5, 992.5], [286.5, 993.5]]}, -{"id": "twwsj3", "submitted_by": "alvcaro", "name": "Real Madrid CF", "description": "Real Madrid CF Badge with the 13 Champions League Trophies won by the club. The name Iker refers to one of most legendary players and captain of the team.", "website": "", "subreddit": "/r/realmadrid", "center": [0.5, 0.5], "path": []}, -{"id": "twwsih", "submitted_by": "urammar", "name": "Fuck Cars Road/Highway", "description": "In quite an ironic twist for people that dont like cars, this road network was initially the border of r/fuckcars, and ended up extending far outside their borders, making peace and art as the highway extended. At its height it was slightly longer in a few directions, but both willingly and was forcibly gave up territory for other spaces. Like cars dont.", "website": "", "subreddit": "/r/fuckcars", "center": [1072.5, 692.5], "path": [[916.5, 796.5], [916.5, 720.5], [1111.5, 720.5], [1123.5, 734.5], [1124.5, 828.5], [1128.5, 828.5], [1129.5, 732.5], [1137.5, 725.5], [1137.5, 711.5], [1129.5, 703.5], [1129.5, 665.5], [1135.5, 663.5], [1135.5, 649.5], [1129.5, 646.5], [1129.5, 606.5], [1135.5, 606.5], [1144.5, 597.5], [1144.5, 587.5], [1138.5, 581.5], [1141.5, 567.5], [1136.5, 567.5], [1132.5, 580.5], [1117.5, 579.5], [1109.5, 587.5], [1108.5, 598.5], [1117.5, 605.5], [1123.5, 606.5], [1123.5, 645.5], [1117.5, 650.5], [1117.5, 661.5], [1123.5, 666.5], [1123.5, 705.5], [1118.5, 708.5], [1118.5, 714.5], [906.5, 715.5], [906.5, 720.5], [910.5, 720.5], [910.5, 800.5], [916.5, 800.5]]}, {"id": "twwshn", "submitted_by": "altermeetax", "name": "Flag of Italy", "description": "The official flag of the Republic of Italy (Repubblica Italiana)", "website": "", "subreddit": "/r/italy", "center": [824.5, 349.5], "path": [[781.5, 249.5], [863.5, 249.5], [865.5, 450.5], [787.5, 450.5]]}, {"id": "twwsej", "submitted_by": "something2hidemyself", "name": "Flag of Bangladesh", "description": "Flag of Bangladesh with a Bengal Tiger, 1971 (its Independence Year) and Bangaldesh written in its native language Bengali", "website": "", "subreddit": "/r/bangladesh", "center": [304.5, 1014.5], "path": [[285.5, 985.5], [316.5, 985.5], [323.5, 993.5], [323.5, 1042.5], [285.5, 1042.5], [285.5, 985.5]]}, {"id": "twwscj", "submitted_by": "zvika", "name": "The r/fuckcars lot store", "description": "So much parking for such a little store! nnThere is a better way to build our towns and cities.", "website": "", "subreddit": "/r/fuckcars", "center": [1004.5, 798.5], "path": [[998.5, 802.5], [1011.5, 802.5], [1010.5, 794.5], [998.5, 793.5], [998.5, 793.5], [998.5, 793.5], [998.5, 793.5]]}, {"id": "twwryz", "submitted_by": "Konstantine890", "name": "Age of Empires 2", "description": "The medieval strategy game Age of Empire 2 with it's community's image of the wololo monk - a unit in the game known for converting enemies to your side and team color.", "website": "https://www.ageofempires.com", "subreddit": "/r/aoe2", "center": [470.5, 1538.5], "path": [[459.5, 1551.5], [460.5, 1525.5], [476.5, 1525.5], [486.5, 1539.5], [479.5, 1542.5], [479.5, 1551.5]]}, {"id": "twwryi", "submitted_by": "Fanny-or-Mikasa", "name": "TXT Lightstick (MOAbong)", "description": "The MOAbong above the TXT logo is the official light-stick of the group, Tomorrow By Together. MOA (Moments Of Alwaysness) is the fandom name of the group and the light-stick is used to cheer them on concerts and other events. If you\u2019re into pop rock, check out their latest song called loser=lover", "website": "", "subreddit": "/r/TomorrowByTogether", "center": [1554.5, 198.5], "path": [[1551.5, 193.5], [1551.5, 203.5], [1556.5, 203.5], [1556.5, 193.5]]}, -{"id": "twwrxa", "submitted_by": "RainwhalTheRavenclaw", "name": "Red Pen for siinamota/powapowa-p", "description": "Powapowa-P (\u307d\u308f\u307d\u308fP), also known as siinamota (\u690e\u540d\u3082\u305f). This producer has passed away, as confirmed by reported sources, this pen is a tribute to them.", "website": "https://www.youtube.com/channel/UCm-nLtwclZUI_XkpTpzSuKw", "subreddit": "/r/hatsune", "center": [0.5, 0.5], "path": []}, {"id": "twwrsm", "submitted_by": "ShaZaSha", "name": "CoreJourney logo", "description": "CoreJourney is a Minecraft anarchy server where if you die, you can only respawn after 24 hours.", "website": "", "subreddit": "/r/corejourney", "center": [158.5, 38.5], "path": [[154.5, 34.5], [161.5, 34.5], [161.5, 41.5], [154.5, 41.5]]}, {"id": "twwrn3", "submitted_by": "KekMan228", "name": "Floch Forster", "description": "Floch's evil smile after Hange found out about him knowing whats up with the wine", "website": "", "subreddit": "/r/titanfolk", "center": [732.5, 1885.5], "path": [[716.5, 1862.5], [747.5, 1862.5], [747.5, 1909.5], [716.5, 1908.5]]}, {"id": "twwrje", "submitted_by": "soyuzonions", "name": "Leo", "description": "Leo is a major character in the furry visual novel Echo by the Echo project", "website": "https://echoproject.itch.io/echo", "subreddit": "/r/FurryVisualNovels", "center": [1667.5, 516.5], "path": [[1664.5, 512.5], [1667.5, 515.5], [1670.5, 512.5], [1670.5, 516.5], [1671.5, 516.5], [1671.5, 518.5], [1669.5, 518.5], [1669.5, 519.5], [1668.5, 519.5], [1668.5, 520.5], [1666.5, 520.5], [1666.5, 519.5], [1665.5, 519.5], [1665.5, 518.5], [1663.5, 518.5], [1663.5, 516.5], [1664.5, 516.5]]}, {"id": "twwrib", "submitted_by": "loucarinol5124", "name": "french-german allience", "description": "the both like arte so they became friends (in place sure)", "website": "", "subreddit": "", "center": [1164.5, 829.5], "path": [[1161.5, 825.5], [1163.5, 825.5], [1164.5, 826.5], [1165.5, 825.5], [1167.5, 825.5], [1168.5, 826.5], [1169.5, 827.5], [1169.5, 830.5], [1164.5, 835.5], [1159.5, 830.5], [1159.5, 827.5], [1160.5, 826.5]]}, {"id": "twwrhx", "submitted_by": "Ivsucram", "name": "Coxinha", "description": "Famous brazilian snack, usually made of chicken. There is also a vegan option made of jackfruit.", "website": "https://en.wikipedia.org/wiki/Coxinha", "subreddit": "/r/brasil", "center": [1109.5, 613.5], "path": [[1110.5, 605.5], [1104.5, 613.5], [1104.5, 618.5], [1114.5, 618.5], [1114.5, 610.5], [1110.5, 605.5]]}, -{"id": "twwrc8", "submitted_by": "MorrMorrr", "name": "Smol Cirno", "description": "She may be smol, but she is the STRONGEST \u2468.", "website": "", "subreddit": "/r/touhou", "center": [767.5, 765.5], "path": [[770.5, 762.5], [770.5, 765.5], [771.5, 765.5], [771.5, 768.5], [770.5, 768.5], [767.5, 769.5], [764.5, 769.5], [763.5, 766.5], [762.5, 766.5], [763.5, 766.5], [763.5, 764.5], [762.5, 764.5], [763.5, 764.5], [763.5, 762.5], [764.5, 761.5], [766.5, 762.5], [767.5, 762.5], [769.5, 761.5], [770.5, 762.5]]}, -{"id": "twwr94", "submitted_by": "Banthafooood", "name": "Volkswagen Golf 1", "description": "The Volkswagen Golf Mk1 is the first generation of a small family car manufactured and marketed by Volkswagen.nIts the successor to Volkswagen's Beetle.", "website": "www.volkswagen.com", "subreddit": "", "center": [1675.5, 860.5], "path": [[1671.5, 852.5], [1688.5, 852.5], [1693.5, 857.5], [1693.5, 864.5], [1692.5, 864.5], [1692.5, 866.5], [1692.5, 867.5], [1689.5, 867.5], [1689.5, 866.5], [1688.5, 866.5], [1688.5, 865.5], [1678.5, 866.5], [1677.5, 867.5], [1676.5, 868.5], [1674.5, 869.5], [1672.5, 867.5], [1672.5, 867.5], [1671.5, 866.5], [1661.5, 867.5], [1660.5, 868.5], [1658.5, 868.5], [1657.5, 867.5], [1657.5, 867.5], [1656.5, 866.5], [1655.5, 866.5], [1654.5, 866.5], [1654.5, 862.5], [1655.5, 862.5], [1656.5, 859.5], [1657.5, 858.5], [1661.5, 858.5], [1661.5, 857.5], [1664.5, 857.5], [1669.5, 852.5]]}, +{"id": "twzggw", "submitted_by": "Tiny_Cirno", "name": "Mini Cirno", "description": "Cirno from Touhou Project. This piece was built by Cirno-centric pxls.space veterans, and quickly developed a cult following from r/touhou whom heavily helped defend it.", "website": "http://perfectfreeze.art", "subreddit": "/r/touhou", "center": [767.5, 765.5], "path": [[770.5, 762.5], [770.5, 765.5], [771.5, 765.5], [771.5, 768.5], [770.5, 768.5], [767.5, 769.5], [764.5, 769.5], [763.5, 766.5], [762.5, 766.5], [763.5, 766.5], [763.5, 764.5], [762.5, 764.5], [763.5, 764.5], [763.5, 762.5], [764.5, 761.5], [766.5, 762.5], [767.5, 762.5], [769.5, 761.5], [770.5, 762.5]]}, +{"id": "twwr94", "submitted_by": "Banthafooood", "name": "Volkswagen Golf 1", "description": "The Volkswagen Golf Mk1 is the first generation of a small family car manufactured and marketed by Volkswagen.nIts the successor to Volkswagen's Beetle.", "website": "https://www.volkswagen.com", "subreddit": "", "center": [1675.5, 860.5], "path": [[1671.5, 852.5], [1688.5, 852.5], [1693.5, 857.5], [1693.5, 864.5], [1692.5, 864.5], [1692.5, 866.5], [1692.5, 867.5], [1689.5, 867.5], [1689.5, 866.5], [1688.5, 866.5], [1688.5, 865.5], [1678.5, 866.5], [1677.5, 867.5], [1676.5, 868.5], [1674.5, 869.5], [1672.5, 867.5], [1672.5, 867.5], [1671.5, 866.5], [1661.5, 867.5], [1660.5, 868.5], [1658.5, 868.5], [1657.5, 867.5], [1657.5, 867.5], [1656.5, 866.5], [1655.5, 866.5], [1654.5, 866.5], [1654.5, 862.5], [1655.5, 862.5], [1656.5, 859.5], [1657.5, 858.5], [1661.5, 858.5], [1661.5, 857.5], [1664.5, 857.5], [1669.5, 852.5]]}, {"id": "twwr6o", "submitted_by": "Frederic94500", "name": "Goj\u014d Satoru", "description": "Gojo Satoru from JUJUTSU KAISEN", "website": "https://www.shonenjump.com/j/rensai/jujutsu.html", "subreddit": "/r/JuJutsuKaisen", "center": [880.5, 1188.5], "path": [[855.5, 1174.5], [904.5, 1174.5], [904.5, 1202.5], [855.5, 1202.5], [855.5, 1174.5]]}, {"id": "twwr6f", "submitted_by": "PenguinPelt", "name": "The Rabbit With Checkered Ears/A kock\u00e1sf\u00fcl\u0171 ny\u00fal", "description": "A Hungarian animated children's series staring The Rabbit With Checkered Ears", "website": "", "subreddit": "", "center": [1465.5, 263.5], "path": [[1460.5, 274.5], [1468.5, 274.5], [1468.5, 273.5], [1470.5, 273.5], [1470.5, 272.5], [1471.5, 271.5], [1472.5, 271.5], [1473.5, 270.5], [1473.5, 269.5], [1474.5, 268.5], [1474.5, 263.5], [1473.5, 262.5], [1473.5, 261.5], [1478.5, 261.5], [1478.5, 262.5], [1481.5, 262.5], [1483.5, 264.5], [1483.5, 265.5], [1484.5, 265.5], [1484.5, 270.5], [1485.5, 270.5], [1485.5, 271.5], [1486.5, 271.5], [1486.5, 270.5], [1488.5, 270.5], [1488.5, 269.5], [1489.5, 269.5], [1489.5, 268.5], [1490.5, 268.5], [1490.5, 267.5], [1491.5, 266.5], [1491.5, 265.5], [1491.5, 264.5], [1490.5, 264.5], [1490.5, 262.5], [1489.5, 262.5], [1489.5, 261.5], [1488.5, 261.5], [1488.5, 260.5], [1487.5, 260.5], [1487.5, 259.5], [1486.5, 259.5], [1486.5, 257.5], [1485.5, 257.5], [1485.5, 256.5], [1484.5, 256.5], [1484.5, 254.5], [1475.5, 254.5], [1475.5, 255.5], [1474.5, 255.5], [1473.5, 256.5], [1471.5, 256.5], [1470.5, 257.5], [1469.5, 258.5], [1468.5, 258.5], [1467.5, 258.5], [1467.5, 257.5], [1461.5, 257.5], [1461.5, 258.5], [1460.5, 258.5], [1459.5, 258.5], [1458.5, 258.5], [1458.5, 256.5], [1456.5, 256.5], [1456.5, 255.5], [1455.5, 255.5], [1455.5, 254.5], [1445.5, 254.5], [1445.5, 255.5], [1444.5, 255.5], [1444.5, 256.5], [1443.5, 256.5], [1443.5, 257.5], [1441.5, 257.5], [1441.5, 258.5], [1440.5, 258.5], [1440.5, 259.5], [1439.5, 259.5], [1439.5, 262.5], [1440.5, 262.5], [1440.5, 263.5], [1441.5, 263.5], [1441.5, 264.5], [1442.5, 264.5], [1443.5, 264.5], [1443.5, 264.5], [1443.5, 265.5], [1445.5, 265.5], [1447.5, 263.5], [1448.5, 262.5], [1451.5, 262.5], [1452.5, 261.5], [1452.5, 260.5], [1455.5, 260.5], [1455.5, 262.5], [1455.5, 263.5], [1454.5, 263.5], [1454.5, 268.5], [1455.5, 268.5], [1454.5, 268.5]]}, {"id": "twwr5a", "submitted_by": "scorpion24100", "name": "SHAW!", "description": "SHAW! is an attack telegraph yelled by hornet during her multiple boss fights within the game Hollow Knight.nnIt has since become a popular phrase/meme within the Hollow Knight community.", "website": "", "subreddit": "/r/HollowKnight", "center": [288.5, 395.5], "path": [[277.5, 391.5], [299.5, 391.5], [299.5, 399.5], [277.5, 399.5], [277.5, 391.5]]}, {"id": "twwqua", "submitted_by": "LeoReddit2012", "name": "Destroyed SMC Flag", "description": "SMC\u00b4s old flag before it got invaded by other people", "website": "https://scratchmappingcommunity.fandom.com/wiki/Main_Page", "subreddit": "/r/ScratchMappers", "center": [496.5, 1349.5], "path": [[492.5, 1343.5], [497.5, 1343.5], [489.5, 1340.5], [491.5, 1343.5], [495.5, 1342.5], [495.5, 1340.5], [496.5, 1340.5], [498.5, 1340.5], [500.5, 1340.5], [502.5, 1340.5], [502.5, 1341.5], [501.5, 1343.5], [502.5, 1343.5], [502.5, 1344.5], [490.5, 1344.5], [490.5, 1345.5], [497.5, 1345.5], [502.5, 1345.5], [490.5, 1347.5], [502.5, 1346.5], [502.5, 1349.5], [502.5, 1351.5], [502.5, 1353.5], [502.5, 1355.5], [502.5, 1358.5], [502.5, 1359.5], [490.5, 1359.5], [494.5, 1354.5], [491.5, 1356.5], [496.5, 1357.5], [495.5, 1359.5], [502.5, 1357.5], [502.5, 1347.5], [491.5, 1357.5], [489.5, 1352.5], [490.5, 1349.5]]}, -{"id": "twwqrx", "submitted_by": "fincy_", "name": "RotMG-Asciicker Heart", "description": "A love heart representing the alliance formed between Realm of the Mad God and Asciicker.", "website": "", "subreddit": "", "center": [536.5, 875.5], "path": [[536.5, 877.5], [536.5, 876.5], [537.5, 876.5], [537.5, 875.5], [538.5, 875.5], [538.5, 874.5], [537.5, 874.5], [537.5, 873.5], [537.5, 874.5], [536.5, 874.5], [535.5, 874.5], [535.5, 873.5], [535.5, 874.5], [534.5, 874.5], [534.5, 875.5], [535.5, 875.5], [535.5, 876.5], [536.5, 876.5], [536.5, 877.5]]}, +{"id": "twwqrx", "submitted_by": "fincy_", "name": "RotMG-Asciicker Heart", "description": "A love heart representing the alliance formed between Realm of the Mad God and Asciicker.", "website": "", "subreddit": "", "center": [536.5, 875.5], "path": [[536.5, 878.5], [537.5, 878.5], [537.5, 877.5], [538.5, 877.5], [538.5, 876.5], [539.5, 876.5], [539.5, 873.5], [538.5, 873.5], [538.5, 872.5], [536.5, 872.5], [536.5, 873.5], [536.5, 872.5], [534.5, 872.5], [534.5, 873.5], [533.5, 873.5], [533.5, 876.5], [534.5, 876.5], [534.5, 877.5], [535.5, 877.5], [535.5, 878.5], [536.5, 878.5]]}, {"id": "twwqpr", "submitted_by": "square_tek", "name": "French Wine Glass and Bottle", "description": "What's more representative of the French culture than a glass and a bottle of fine wine?nThis bottle was grounds for a long battle with the italians. As they did during the first r/place, they kept trying to turn the French flag on the label of the bottle into an Italian flag. The war was resolved when the French built a piece of cheese over the label.nAn other battle took place on this bottle, a quiet civil war between the French themselves to make the bottle full/empty. It kept being slowly filled and emptied during the whole r/place event.", "website": "", "subreddit": "/r/placefrance", "center": [142.5, 482.5], "path": [[138.5, 481.5], [131.5, 481.5], [131.5, 488.5], [135.5, 493.5], [133.5, 497.5], [150.5, 497.5], [150.5, 474.5], [147.5, 471.5], [147.5, 460.5], [141.5, 460.5], [141.5, 470.5], [138.5, 474.5]]}, {"id": "twwqp6", "submitted_by": "renrutnella", "name": "Auburn University", "description": "", "website": "", "subreddit": "/r/auburn", "center": [1838.5, 379.5], "path": [[1839.5, 341.5], [1839.5, 371.5], [1852.5, 371.5], [1852.5, 399.5], [1826.5, 400.5], [1826.5, 362.5]]}, {"id": "twwqj4", "submitted_by": "HeyItsVal88", "name": "TwoSetViolin", "description": "TwoSetViolin is a Youtube Channel featuring friends Brett and Eddy, who both play Violin. They review things such as child prodigies and sacrilegious instrument crimes. When they aren't practicing 40 hours a day for Ling Ling, of course.", "website": "https://www.youtube.com/c/twosetviolin", "subreddit": "/r/lingling40hrs", "center": [1325.5, 1985.5], "path": [[1324.5, 1974.5], [1324.5, 1996.5], [1326.5, 1996.5], [1326.5, 1974.5]]}, {"id": "twwqis", "submitted_by": "JustABoringPlayer", "name": "Guardian Tales", "description": "Guardian Tales is a 2D mobile RPG game developed by KakaoGames and published by KongStudios. Originally developed as a snake game with cute sprites, now it became a story-driven game expanding the story of another discontinued game, Dungeon Link.nThe icon shows Queen Lilith, the Queen of the Demon World.", "website": "", "subreddit": "/r/GuardianTales", "center": [1750.5, 1734.5], "path": [[1723.5, 1712.5], [1723.5, 1734.5], [1730.5, 1734.5], [1734.5, 1740.5], [1734.5, 1747.5], [1736.5, 1747.5], [1736.5, 1760.5], [1772.5, 1761.5], [1772.5, 1712.5], [1724.5, 1712.5]]}, {"id": "twwqfd", "submitted_by": "halcyondays-", "name": "Blanka (Street Fighter)", "description": "Blanka is a video game character from the Street Fighter series. He is a feral man from the Brazilian jungle with green skin and the ability to generate electricity.", "website": "", "subreddit": "/r/StreetFighter", "center": [1489.5, 1769.5], "path": [[1486.5, 1781.5], [1493.5, 1781.5], [1497.5, 1775.5], [1495.5, 1772.5], [1498.5, 1771.5], [1498.5, 1767.5], [1496.5, 1767.5], [1497.5, 1761.5], [1491.5, 1757.5], [1487.5, 1757.5], [1482.5, 1762.5], [1481.5, 1769.5], [1483.5, 1773.5], [1484.5, 1779.5]]}, {"id": "twwqel", "submitted_by": "Ivsucram", "name": "Ip\u00ea-amarelo", "description": "Ip\u00ea-amarelo is a native tree of the intertropical broadleaf deciduous forests of South America.", "website": "https://en.wikipedia.org/wiki/Handroanthus_chrysanthus", "subreddit": "/r/brasil", "center": [1016.5, 586.5], "path": [[1020.5, 614.5], [1023.5, 614.5], [1023.5, 607.5], [1021.5, 605.5], [1022.5, 600.5], [1023.5, 592.5], [1031.5, 588.5], [1043.5, 594.5], [1039.5, 578.5], [1022.5, 569.5], [1017.5, 568.5], [1005.5, 570.5], [998.5, 581.5], [996.5, 591.5], [996.5, 603.5], [1016.5, 600.5], [1020.5, 603.5], [1020.5, 603.5], [1020.5, 607.5]]}, -{"id": "twwqdq", "submitted_by": "Legitimate_Band3149", "name": "Cuba", "description": "Bandera de Cuba creada por la Bunny army en honor a Staryuuki", "website": "Https://www.twitch.tv/staryuuki", "subreddit": "", "center": [1129.5, 1366.5], "path": [[1116.5, 1362.5], [1116.5, 1370.5], [1142.5, 1370.5], [1141.5, 1361.5], [1142.5, 1362.5], [1117.5, 1361.5]]}, +{"id": "twwqdq", "submitted_by": "Legitimate_Band3149", "name": "Cuba", "description": "Bandera de Cuba creada por la Bunny army en honor a Staryuuki", "website": "https://Https://www.twitch.tv/staryuuki", "subreddit": "", "center": [1129.5, 1366.5], "path": [[1116.5, 1362.5], [1116.5, 1370.5], [1142.5, 1370.5], [1141.5, 1361.5], [1142.5, 1362.5], [1117.5, 1361.5]]}, {"id": "twwqd7", "submitted_by": "kafka_santos06", "name": "Hassan 2 Mosque", "description": "", "website": "", "subreddit": "", "center": [1689.5, 816.5], "path": [[1684.5, 804.5], [1680.5, 800.5], [1697.5, 800.5], [1698.5, 830.5], [1680.5, 832.5], [1680.5, 800.5]]}, {"id": "twwq8n", "submitted_by": "JetBoy2004", "name": "SoyFelipez360", "description": "Felipez is a very funny and known spanish streamer.", "website": "https://www.twitch.tv/soyfelipez360", "subreddit": "", "center": [1463.5, 1011.5], "path": [[1452.5, 1000.5], [1476.5, 1000.5], [1475.5, 1022.5], [1451.5, 1023.5]]}, {"id": "twwq83", "submitted_by": "Zmito26", "name": "Og's Logo", "description": "Logo of OG'S, the clothing brand of the Spanish streamer IlloJuan", "website": "https://www.ogsbrand.com/es/", "subreddit": "/r/LMDShow", "center": [1426.5, 1053.5], "path": [[1402.5, 1042.5], [1402.5, 1065.5], [1450.5, 1065.5], [1450.5, 1042.5], [1436.5, 1042.5], [1436.5, 1041.5], [1434.5, 1041.5], [1434.5, 1042.5], [1402.5, 1042.5]]}, {"id": "twwq7r", "submitted_by": "beetknight", "name": "Unicum", "description": "A Hungarian herbal liqueur or bitters, drunk as a digestif and ap\u00e9ritif.", "website": "", "subreddit": "", "center": [1231.5, 269.5], "path": [[1230.5, 255.5], [1233.5, 255.5], [1241.5, 278.5], [1221.5, 278.5], [1226.5, 264.5], [1229.5, 262.5], [1229.5, 255.5], [1233.5, 255.5]]}, -{"id": "twwq4s", "submitted_by": "Slilisk", "name": "Mizkif as Napoleon riding his bunny Dedo", "description": "A recreation of Mizkif's painting of him riding his bunny Dedo as Napoleon", "website": "https://twitter.com/realmizkif/status/1406056913654190082?lang=en", "subreddit": "/r/mizkif", "center": [0.5, 0.5], "path": []}, {"id": "twwq4j", "submitted_by": "CreepahJacket", "name": "Pipis.", "description": "'The Original' An invasive species of freshwater clam.n(917 liked this!)", "website": "", "subreddit": "", "center": [695.5, 410.5], "path": [[693.5, 408.5], [696.5, 408.5], [697.5, 409.5], [697.5, 410.5], [696.5, 411.5], [693.5, 411.5], [692.5, 410.5], [692.5, 409.5]]}, {"id": "twwpt1", "submitted_by": "DragonEyeNinja", "name": "Yung Venuz", "description": "Y.V. from Gun Godz/Nuclear Throne, counting his money.", "website": "", "subreddit": "/r/NuclearThrone", "center": [1535.5, 107.5], "path": [[1536.5, 95.5], [1544.5, 107.5], [1544.5, 113.5], [1524.5, 113.5]]}, {"id": "twwpmm", "submitted_by": "tpngulf9", "name": "Kson", "description": "A legendary independent virtual youtuber, holding up her signature pink sword.", "website": "https://www.youtube.com/c/ksonONAIR", "subreddit": "/r/kson_ONAIR", "center": [1362.5, 918.5], "path": [[1356.5, 916.5], [1358.5, 925.5], [1366.5, 924.5], [1367.5, 916.5], [1367.5, 902.5], [1366.5, 902.5], [1366.5, 915.5]]}, -{"id": "twwpki", "submitted_by": "NevenKeblaast", "name": "Centrale Nantes", "description": "Proud symbol of the famous french engineering school", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "twwpa2", "submitted_by": "dhnam_LegenDUST", "name": "Kemono Friends Tsuchinoko", "description": "A character from Kemono Friends, who is based on the Tsuchinoko, a cryptid from Japanese folklore", "website": "https://kemono-friends.jp/", "subreddit": "/r/KemonoFriends", "center": [1689.5, 1557.5], "path": [[1685.5, 1556.5], [1686.5, 1557.5], [1687.5, 1559.5], [1687.5, 1553.5], [1693.5, 1553.5], [1693.5, 1560.5], [1687.5, 1560.5], [1686.5, 1560.5], [1685.5, 1559.5], [1684.5, 1558.5], [1684.5, 1556.5]]}, {"id": "twwp6a", "submitted_by": "Eldresh", "name": "Purple Corner", "description": "While there was no official, agreed upon location for Purple Corner this time around, many flocked here to the location of the original Purple Corner.", "website": "", "subreddit": "/r/purplecorner", "center": [4.5, 38.5], "path": [[1.5, 35.5], [11.5, 35.5], [1.5, 45.5]]}, {"id": "twwowi", "submitted_by": "Ivsucram", "name": "Abaporu", "description": "An oil painting on canvas by the Brazilian painter Tarsila do Amaral. It is considered the most valuable painting by a Brazilian artist.", "website": "https://en.wikipedia.org/wiki/Abaporu", "subreddit": "/r/brasil", "center": [1260.5, 591.5], "path": [[1289.5, 568.5], [1289.5, 616.5], [1233.5, 615.5], [1228.5, 568.5], [1289.5, 568.5]]}, {"id": "twwori", "submitted_by": "RealestJP", "name": "Islanders/Mets Heart", "description": "A heart that was done by a different community, but when the Islanders and Mets got more space, the heart was surrounded, then recolored to match the colors of the two New York teams.", "website": "", "subreddit": "", "center": [1816.5, 993.5], "path": [[1813.5, 990.5], [1815.5, 990.5], [1816.5, 991.5], [1817.5, 990.5], [1819.5, 990.5], [1820.5, 991.5], [1821.5, 992.5], [1821.5, 993.5], [1820.5, 994.5], [1819.5, 995.5], [1818.5, 996.5], [1817.5, 997.5], [1816.5, 998.5], [1815.5, 997.5], [1814.5, 996.5], [1813.5, 995.5], [1812.5, 994.5], [1811.5, 993.5], [1811.5, 992.5], [1812.5, 991.5], [1813.5, 990.5], [1814.5, 990.5], [1815.5, 990.5]]}, -{"id": "twwogj", "submitted_by": "cobbleman4", "name": "Iskall", "description": "Iskall", "website": "https://www.youtube.com/channel/UCZ9x-z3iOnIbJxVpm1rsu2A", "subreddit": "", "center": [874.5, 627.5], "path": [[870.5, 624.5], [870.5, 630.5], [877.5, 630.5], [877.5, 624.5]]}, {"id": "twwoc5", "submitted_by": "EpicYH22", "name": "Derp Sirin", "description": "A derp pixel art version of Sirin from Honkai Impact 3rd", "website": "https://honkaiimpact3.hoyoverse.com/asia/en-us/home", "subreddit": "/r/houkai3rd", "center": [1990.5, 141.5], "path": [[1980.5, 132.5], [1998.5, 132.5], [1999.5, 150.5], [1981.5, 149.5]]}, {"id": "twwoa9", "submitted_by": "Tar0oo", "name": "GG Games avatar and logo", "description": "The avatar of the spanish fnaf youtuber GG Games, with its own customized puppet avatar and the scott cawthon logo included", "website": "", "subreddit": "", "center": [1892.5, 295.5], "path": [[1867.5, 270.5], [1917.5, 270.5], [1918.5, 320.5], [1867.5, 319.5]]}, {"id": "twwo93", "submitted_by": "EtherealProphet", "name": "Drawfee", "description": "An art-based YouTube series hosted by Jacob Andrews, Julia Lepetit, Nathan Yaffe, and Karina Farek. They take your dumb ideas and make even dumber drawings!", "website": "https://www.youtube.com/c/Drawfee", "subreddit": "/r/drawfee", "center": [1564.5, 328.5], "path": [[1557.5, 333.5], [1558.5, 336.5], [1570.5, 335.5], [1571.5, 332.5], [1571.5, 323.5], [1569.5, 321.5], [1558.5, 321.5], [1557.5, 325.5], [1557.5, 335.5]]}, @@ -3595,23 +3367,18 @@ {"id": "twwnpz", "submitted_by": "i_dentify_as_an_emo", "name": "FLCL P!", "description": "A black and white sticker representing the band The Pillows, who made the soundtrack for the anime FLCL. The sticker can be found on Haruko's yellow Vespa in the anime.", "website": "", "subreddit": "/r/FLCL", "center": [645.5, 1408.5], "path": [[647.5, 1404.5], [647.5, 1403.5], [642.5, 1403.5], [642.5, 1404.5], [641.5, 1404.5], [641.5, 1405.5], [640.5, 1405.5], [640.5, 1411.5], [641.5, 1411.5], [641.5, 1412.5], [642.5, 1412.5], [642.5, 1413.5], [647.5, 1413.5], [647.5, 1412.5], [648.5, 1412.5], [648.5, 1411.5], [649.5, 1411.5], [649.5, 1405.5], [648.5, 1405.5], [648.5, 1404.5]]}, {"id": "twwnpj", "submitted_by": "Ivsucram", "name": "MASP (S\u00e3o Paulo Museum of Art)", "description": "Depiction of MASP", "website": "https://en.wikipedia.org/wiki/S%C3%A3o_Paulo_Museum_of_Art", "subreddit": "/r/brasil", "center": [1244.5, 598.5], "path": [[1255.5, 606.5], [1254.5, 589.5], [1233.5, 590.5], [1233.5, 606.5], [1255.5, 606.5]]}, {"id": "twwnns", "submitted_by": "Dinnesk", "name": "Tool", "description": "Rock band Tool logo.", "website": "", "subreddit": "/r/ToolBand", "center": [253.5, 995.5], "path": [[221.5, 990.5], [284.5, 990.5], [284.5, 1000.5], [221.5, 1000.5]]}, -{"id": "twwngp", "submitted_by": "zanziboum", "name": "Kiwiland", "description": "Icon of a private French discord server between friends to the glory of RaminnGloire \u00e0 Rami !", "website": "kiwiland.fr", "subreddit": "", "center": [1958.5, 765.5], "path": [[1954.5, 761.5], [1961.5, 761.5], [1961.5, 768.5], [1954.5, 768.5]]}, +{"id": "twwngp", "submitted_by": "zanziboum", "name": "Kiwiland", "description": "Icon of a private French discord server between friends to the glory of RaminnGloire \u00e0 Rami !", "website": "https://kiwiland.fr", "subreddit": "", "center": [1958.5, 765.5], "path": [[1954.5, 761.5], [1961.5, 761.5], [1961.5, 768.5], [1954.5, 768.5]]}, {"id": "twwnew", "submitted_by": "SYSSMouse", "name": "Montreal Canadiens", "description": "Logo of the Montreal Canadiens NHL team", "website": "https://www.nhl.com/fr/canadiens/", "subreddit": "/r/habs", "center": [951.5, 987.5], "path": [[935.5, 984.5], [943.5, 977.5], [960.5, 977.5], [966.5, 981.5], [966.5, 995.5], [963.5, 997.5], [960.5, 998.5], [943.5, 997.5], [935.5, 992.5], [935.5, 991.5], [935.5, 991.5], [935.5, 990.5], [935.5, 984.5]]}, {"id": "twwneb", "submitted_by": "mik3lik3", "name": "Judas from The Binding Of Isaac", "description": "Judas is a character unlocked after beating Satan for the first time. Judas starts with one red heart container, but has The Book of Belial The Book of Belial upon starting, as well as 3 coins. He has been in the Isaac franchise since the original flash release.", "website": "https://bindingofisaacrebirth.fandom.com/wiki/Judas", "subreddit": "/r/theisaacplace", "center": [72.5, 333.5], "path": [[76.5, 339.5], [76.5, 329.5], [70.5, 327.5], [67.5, 331.5], [67.5, 335.5], [72.5, 340.5]]}, {"id": "twwndv", "submitted_by": "IIIQIII", "name": "Minnnesota Wild", "description": "The Minnesota Wild are a professional ice hockey team based in Saint Paul, Minnesota.nnThe numbers 97 and 9 are likely in reference to the players Kirill Kaprizov (97) and former player Mikko Koivu (9).nnThe flower is in reference to the MN state flower the Lady Slipper.", "website": "https://www.nhl.com/wild", "subreddit": "/r/wildhockey", "center": [401.5, 1405.5], "path": [[382.5, 1392.5], [420.5, 1392.5], [420.5, 1417.5], [382.5, 1418.5]]}, {"id": "twwn24", "submitted_by": "halcyondays-", "name": "Corote", "description": "Corote is a brand of cacha\u00e7a, a distilled spirit made from fermented sugarcane juice popular in Brazil. The brand is well-known for its small plastic bottles.", "website": "https://www.corote.com.br/", "subreddit": "", "center": [1408.5, 1798.5], "path": [[1405.5, 1808.5], [1412.5, 1807.5], [1414.5, 1805.5], [1414.5, 1794.5], [1411.5, 1791.5], [1411.5, 1788.5], [1405.5, 1788.5], [1405.5, 1791.5], [1403.5, 1794.5], [1402.5, 1804.5]]}, {"id": "twwmyb", "submitted_by": "BugSpirited5581", "name": "Kizuna AI", "description": "A pioneer in the VTuber field", "website": "https://www.youtube.com/c/AIChannel", "subreddit": "/r/KizunaAI", "center": [1361.5, 909.5], "path": [[1355.5, 902.5], [1355.5, 916.5], [1366.5, 916.5], [1366.5, 902.5], [1361.5, 902.5]]}, {"id": "twwmr4", "submitted_by": "N313intruder", "name": "Metal Gear Exclamation marks!", "description": "Iconic imagery from the Metal Gear series, associated with the alert noise. Representing the 2 exclamation marks that were lost during r/place 2022, with a 3rd one that's brand new", "website": "", "subreddit": "/r/metalgearsolid", "center": [1572.5, 1310.5], "path": [[1571.5, 1298.5], [1571.5, 1321.5], [1573.5, 1321.5], [1573.5, 1298.5]]}, -{"id": "twwmnm", "submitted_by": "xKacpereQ", "name": "Moai head", "description": "This is a Moai head that can be found on Easter Island.", "website": "", "subreddit": "", "center": [1867.5, 519.5], "path": [[1850.5, 500.5], [1850.5, 538.5], [1883.5, 538.5], [1883.5, 500.5], [1867.5, 500.5]]}, {"id": "twwmm0", "submitted_by": "Thousand_Eyes", "name": "Testosterone", "description": "A bottle of testosterone.nnThe main way trans men get their hormone replacement therapy (HRT) is by injecting themselves with testosterone once every week or so.nnThis is a bottle that the needle would go in to in order to pull the testosterone out for injection", "website": "", "subreddit": "/r/FtM", "center": [524.5, 437.5], "path": [[523.5, 431.5], [522.5, 432.5], [523.5, 433.5], [522.5, 434.5], [521.5, 435.5], [521.5, 440.5], [522.5, 441.5], [526.5, 441.5], [527.5, 440.5], [527.5, 435.5], [526.5, 434.5], [525.5, 433.5], [526.5, 432.5], [525.5, 431.5]]}, -{"id": "twwme0", "submitted_by": "Gnomboy", "name": "Ori (Ori and the blind Forest)", "description": "Ori, the protagonist of the Game Ori and the blind Forest and its sequal Ori and the Will of the Wisps.", "website": "", "subreddit": "", "center": [1395.5, 110.5], "path": [[1387.5, 101.5], [1395.5, 100.5], [1399.5, 98.5], [1400.5, 103.5], [1408.5, 107.5], [1409.5, 104.5], [1412.5, 109.5], [1412.5, 114.5], [1410.5, 119.5], [1405.5, 120.5], [1401.5, 119.5], [1397.5, 117.5], [1390.5, 117.5], [1383.5, 116.5], [1378.5, 114.5], [1377.5, 104.5], [1388.5, 100.5], [1395.5, 100.5]]}, -{"id": "twwm47", "submitted_by": "quirah", "name": "Turkish tea", "description": "A pixel art of a Turkish tea", "website": "", "subreddit": "", "center": [1049.5, 143.5], "path": [[1071.5, 121.5], [1071.5, 165.5], [1026.5, 165.5], [1026.5, 121.5]]}, {"id": "twwm37", "submitted_by": "Just_Kirole", "name": "Haruka Karibu", "description": "An emote by Twitch Vtuber Haruka Karibu aka Moose", "website": "https://www.twitch.tv/harukakaribu", "subreddit": "", "center": [652.5, 1084.5], "path": [[637.5, 1069.5], [666.5, 1069.5], [666.5, 1098.5], [637.5, 1098.5], [637.5, 1069.5]]}, {"id": "twwlw2", "submitted_by": "foxdoxx", "name": "WarriorCatsRP (Roblox)", "description": "The logo for the Roblox group WarriorCatsRP.", "website": "https://www.roblox.com/groups/2650756/WarriorCatsRP#!/about", "subreddit": "", "center": [1439.5, 776.5], "path": [[1440.5, 800.5], [1457.5, 792.5], [1460.5, 754.5], [1454.5, 753.5], [1440.5, 763.5], [1421.5, 752.5], [1419.5, 755.5], [1420.5, 791.5], [1440.5, 800.5]]}, {"id": "twwlrx", "submitted_by": "Which_Appeal_1302", "name": "Transplace and Tally Hall Taskbar Icon", "description": "Another combination of /r/transplace and /r/tallyhall, based off the Ally Hall icons, one wears the Transgender tie, and one wears all five colors of the Tally Hall members", "website": "", "subreddit": "/r/transplace", "center": [720.5, 1985.5], "path": [[709.5, 1975.5], [710.5, 1975.5], [710.5, 1974.5], [730.5, 1974.5], [730.5, 1975.5], [731.5, 1975.5], [731.5, 1976.5], [732.5, 1976.5], [732.5, 1994.5], [731.5, 1994.5], [731.5, 1995.5], [709.5, 1995.5]]}, {"id": "twwlp2", "submitted_by": "Previous_Ad_4662", "name": "Okayeg", "description": "Popular third-party Twitch Emote called Okayeg. Made by soy Twitch Streamer Nymn's Community.", "website": "", "subreddit": "", "center": [681.5, 916.5], "path": [[655.5, 890.5], [705.5, 890.5], [705.5, 943.5], [665.5, 943.5], [664.5, 933.5], [655.5, 933.5], [655.5, 890.5]]}, -{"id": "twwllj", "submitted_by": "rozzabam3outta3", "name": "Orkz", "description": "Orks, orks, orks, orks, orks orks, orks, orks!nn'We iz gonna stomp da \u2018ooniverse flat an\u2019 kill anyfing that fights back. We iz gonna do this coz\u2019 we\u2019re Orks an\u2019 we was made ta fight an\u2019 win!'n- Ghazghkull Mag Uruk Thraka", "website": "", "subreddit": "/r/orks", "center": [978.5, 393.5], "path": [[967.5, 378.5], [988.5, 378.5], [988.5, 408.5], [967.5, 408.5], [967.5, 378.5]]}, -{"id": "twwlla", "submitted_by": "cobbleman4", "name": "Grian", "description": "Grian", "website": "https://www.youtube.com/c/Grian", "subreddit": "", "center": [883.5, 603.5], "path": [[879.5, 600.5], [879.5, 606.5], [886.5, 606.5], [886.5, 600.5]]}, {"id": "twwl6o", "submitted_by": "shadowxxs30", "name": "Rock bottom and Guppies head", "description": "2 Binding of Isaac items. The right item, Guppy's Head is a usable item referencing Guppy the cat, which in turn is a reference to Edmund McMillen's (Creator of Binding of Isaac) cat also named Guppy. The left item, Rock Bottom, an item that was introduced in the Repentance dlc, is a notorious item for allowing some busted runs to occur because of it's effect.", "website": "https://store.steampowered.com/app/113200/The_Binding_of_Isaac/", "subreddit": "/r/bindingofisaac", "center": [525.5, 1771.5], "path": [[501.5, 1759.5], [501.5, 1782.5], [549.5, 1782.5], [549.5, 1759.5], [530.5, 1759.5], [530.5, 1770.5], [526.5, 1770.5], [525.5, 1769.5], [525.5, 1769.5], [524.5, 1768.5], [523.5, 1767.5], [522.5, 1766.5], [520.5, 1766.5], [519.5, 1766.5], [518.5, 1765.5], [517.5, 1765.5], [516.5, 1764.5], [516.5, 1763.5], [516.5, 1762.5], [516.5, 1761.5], [517.5, 1761.5], [517.5, 1760.5], [524.5, 1760.5], [524.5, 1759.5]]}, {"id": "twwl5p", "submitted_by": "VollovTej", "name": "Stray Kids Logo", "description": "Intials of the popular kpop boy band Stray Kids", "website": "", "subreddit": "/r/straykids", "center": [1579.5, 208.5], "path": [[1571.5, 204.5], [1571.5, 211.5], [1587.5, 211.5], [1587.5, 204.5]]}, {"id": "twwl36", "submitted_by": "UnitedStrain7215", "name": "Kamen Rider Ichigo and Kamen Rider's Initials", "description": "Kamen Rider Ichigo is the first hero from the over 50 year old Japanese Tokusatsu series created by manga artist Shotaro Ishinomori, Kamen Rider. The initials of the series below Ichigo also happens to be in the color scheme of the latest Kamen Rider at the the time of the second /r/place event: Kamen Rider Revice.", "website": "", "subreddit": "/r/kamenrider", "center": [750.5, 1521.5], "path": [[746.5, 1512.5], [746.5, 1529.5], [753.5, 1529.5], [753.5, 1512.5]]}, @@ -3628,7 +3395,6 @@ {"id": "tx3iv2", "submitted_by": "Falco", "name": "Flag of Cascadia", "description": "The flag of Cascadia, a bioregion in the Pacific Northwest region of North America.", "website": "https://en.wikipedia.org/wiki/Cascadia_(bioregion)", "subreddit": "/r/Cascadia", "center": [425.5, 1542.5], "path": [[438.5, 1551.5], [427.5, 1551.5], [425.5, 1550.5], [422.5, 1549.5], [410.5, 1548.5], [410.5, 1534.5], [413.5, 1537.5], [417.5, 1533.5], [438.5, 1533.5]]}, {"id": "tx3iqw", "submitted_by": "MinimumGlittering972", "name": "Beelzebub", "description": "The character Beelzebub from the game Helltaker", "website": "", "subreddit": "/r/Helltaker", "center": [770.5, 1570.5], "path": [[761.5, 1559.5], [778.5, 1559.5], [778.5, 1581.5], [761.5, 1581.5], [761.5, 1559.5]]}, {"id": "tx3ifh", "submitted_by": "Tkdriverx", "name": "Ziggy", "description": "A Twitch streamer who loves Spyro", "website": "https://www.twitch.tv/ziggy/", "subreddit": "", "center": [1466.5, 665.5], "path": [[1442.5, 658.5], [1490.5, 658.5], [1490.5, 671.5], [1442.5, 671.5], [1442.5, 658.5]]}, -{"id": "tx3iem", "submitted_by": "Lgeina", "name": "INP, French Engineering school", "description": "INP is a large group of engineering school in France.", "website": "http://www.groupe-inp.fr/", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx3ial", "submitted_by": "GalacticWanderer04", "name": "YagaKimi Kurage", "description": "The YagaKimi (Bloom into You) community got together with the Celeste community and added a small jellyfish in the corner of their build.", "website": "", "subreddit": "/r/YagateKiminiNaru", "center": [1440.5, 1302.5], "path": [[1435.5, 1307.5], [1445.5, 1307.5], [1445.5, 1297.5], [1435.5, 1297.5], [1435.5, 1297.5]]}, {"id": "tx3i17", "submitted_by": "DivingDruid", "name": "Pole Emploi?", "description": "Logo of the French Unemployement Agency", "website": "https://www.pole-emploi.fr/accueil/", "subreddit": "", "center": [1075.5, 1748.5], "path": [[1080.5, 1741.5], [1070.5, 1741.5], [1070.5, 1755.5], [1080.5, 1755.5]]}, {"id": "tx3h66", "submitted_by": "Specialegend", "name": "r/Toradora", "description": "The Official subreddit for the Toradora anime!", "website": "https://www.reddit.com/r/toradora/", "subreddit": "/r/Toradora", "center": [230.5, 1233.5], "path": [[220.5, 1226.5], [240.5, 1226.5], [240.5, 1240.5], [220.5, 1240.5]]}, @@ -3642,7 +3408,7 @@ {"id": "tx3ff5", "submitted_by": "karvave", "name": "xTheFocuSx", "description": "Spanish streamer known for his roleplay on GTA V, and minecraft", "website": "", "subreddit": "", "center": [1582.5, 631.5], "path": [[1578.5, 626.5], [1578.5, 636.5], [1586.5, 636.5], [1586.5, 626.5]]}, {"id": "tx3fd3", "submitted_by": "Prior_Gate_9909", "name": "Los Angeles Rams", "description": "The Rams are an American Football team that plays for the city of Los Angeles, California. The Rams recently won Super Bowl LVI in 2022 against the Cincinnati Bengals.", "website": "https://www.therams.com", "subreddit": "/r/LosAngelesRams", "center": [888.5, 1890.5], "path": [[871.5, 1886.5], [871.5, 1893.5], [905.5, 1893.5], [905.5, 1886.5]]}, {"id": "tx3eyy", "submitted_by": "DayJey25", "name": "Beelzebub", "description": "A character from the game helltaker made by vanripper", "website": "https://store.steampowered.com/app/1289310/Helltaker/", "subreddit": "/r/Helltaker", "center": [769.5, 1570.5], "path": [[761.5, 1559.5], [761.5, 1581.5], [777.5, 1581.5], [777.5, 1559.5]]}, -{"id": "tx3exs", "submitted_by": "PraiseTheBingus", "name": "Sykkuno", "description": "The Among Us avatar of Twitch Streamer and Youtuber Sykkuno.", "website": "youtube.com/sykkuno", "subreddit": "/r/sykkuno", "center": [1234.5, 1057.5], "path": [[1226.5, 1050.5], [1226.5, 1064.5], [1241.5, 1065.5], [1241.5, 1049.5], [1241.5, 1049.5], [1226.5, 1049.5]]}, +{"id": "tx3exs", "submitted_by": "PraiseTheBingus", "name": "Sykkuno", "description": "The Among Us avatar of Twitch Streamer and Youtuber Sykkuno.", "website": "https://youtube.com/sykkuno", "subreddit": "/r/sykkuno", "center": [1234.5, 1057.5], "path": [[1226.5, 1050.5], [1226.5, 1064.5], [1241.5, 1065.5], [1241.5, 1049.5], [1241.5, 1049.5], [1226.5, 1049.5]]}, {"id": "tx3e89", "submitted_by": "geekloper", "name": "Amazigh flag", "description": "The Berber flag thus symbolizes the entire Amazigh people, living in harmony with their land", "website": "https://en.wikipedia.org/wiki/Berber_flag", "subreddit": "", "center": [1615.5, 824.5], "path": [[1611.5, 818.5], [1619.5, 818.5], [1619.5, 829.5], [1611.5, 829.5]]}, {"id": "tx3e4h", "submitted_by": "Slowmover35", "name": "The James Webb Space Telescope", "description": "Launched on the 25th of December, 2021, the James Webb Space Telescope (or JWST) is the largest space telescope to ever see the stars. Designed to conduct infrared astronomy and now fully deployed, it will peer deeper into space than ever before.", "website": "https://www.nasa.gov/mission_pages/webb/main/index.html", "subreddit": "/r/JamesWebbPlace", "center": [1021.5, 403.5], "path": [[1010.5, 384.5], [1032.5, 384.5], [1032.5, 421.5], [1010.5, 421.5]]}, {"id": "tx3e1u", "submitted_by": "mixu1308", "name": "Utrecht University", "description": "Utrecht university in the Netherlands", "website": "https://www.uu.nl/en", "subreddit": "", "center": [1886.5, 49.5], "path": [[1877.5, 45.5], [1894.5, 45.5], [1894.5, 52.5], [1877.5, 52.5], [1877.5, 45.5]]}, @@ -3656,9 +3422,8 @@ {"id": "tx3d6s", "submitted_by": "Cotylob", "name": "Golden strawberry", "description": "A golden strawberry from the game Celeste, they are unlocked after finishing chapter 8 b-side and require you to finish the level without dying once", "website": "", "subreddit": "/r/celestegame", "center": [563.5, 21.5], "path": [[564.5, 23.5], [563.5, 27.5], [548.5, 17.5], [578.5, 19.5], [564.5, 26.5], [562.5, 21.5], [562.5, 21.5]]}, {"id": "tx3d3w", "submitted_by": "Omgryarts", "name": "sploinkus", "description": "A FNaF: Security breach meme, it\u00b4s a variation of the animatronic sun, showed on the game\u00b4s trailer", "website": "", "subreddit": "", "center": [1699.5, 269.5], "path": [[1690.5, 255.5], [1706.5, 256.5], [1713.5, 270.5], [1711.5, 281.5], [1684.5, 280.5]]}, {"id": "tx3cxp", "submitted_by": "Tuxedo_Kremit", "name": "Yuufish", "description": "Yuuri from Girls Last Tour but she's a fish (cute, isn't it?)", "website": "", "subreddit": "/r/GirlsLastTour", "center": [397.5, 958.5], "path": [[391.5, 955.5], [402.5, 955.5], [402.5, 960.5], [391.5, 960.5]]}, -{"id": "tx3cwj", "submitted_by": "azeex_gaming", "name": "Snail on the french flag \ud83d\udc0c", "description": "just a snail fleeing so as not to be eaten by a Frenchman \ud83d\udc0cn", "website": "", "subreddit": "", "center": [27.5, 1774.5], "path": [[52.5, 1783.5], [49.5, 1779.5], [42.5, 1779.5], [41.5, 1770.5], [37.5, 1765.5], [29.5, 1765.5], [27.5, 1765.5], [23.5, 1768.5], [21.5, 1775.5], [20.5, 1776.5], [19.5, 1776.5], [17.5, 1771.5], [19.5, 1769.5], [18.5, 1761.5], [15.5, 1761.5], [14.5, 1765.5], [12.5, 1765.5], [12.5, 1761.5], [8.5, 1761.5], [8.5, 1765.5], [10.5, 1766.5], [9.5, 1771.5], [18.5, 1784.5]]}, {"id": "tx3cnd", "submitted_by": "moonshadow264", "name": "TapL", "description": "TapL is a Minecraft youtuber and Twitch livestreamer, known for his skill in PvP.", "website": "https://www.youtube.com/c/TapLHarv", "subreddit": "/r/TapL", "center": [169.5, 913.5], "path": [[164.5, 908.5], [173.5, 908.5], [173.5, 917.5], [164.5, 917.5]]}, -{"id": "tx3clt", "submitted_by": "ysa-millora", "name": "foolishWallshark", "description": "one of the many emotes of a Twitch streamer named Foolish_Gamers", "website": "twitch.tv/foolish_gamers", "subreddit": "", "center": [1980.5, 751.5], "path": [[1962.5, 733.5], [1998.5, 733.5], [1998.5, 769.5], [1962.5, 768.5], [1962.5, 749.5]]}, +{"id": "tx3clt", "submitted_by": "ysa-millora", "name": "foolishWallshark", "description": "one of the many emotes of a Twitch streamer named Foolish_Gamers", "website": "https://twitch.tv/foolish_gamers", "subreddit": "", "center": [1980.5, 751.5], "path": [[1962.5, 733.5], [1998.5, 733.5], [1998.5, 769.5], [1962.5, 768.5], [1962.5, 749.5]]}, {"id": "tx3clu", "submitted_by": "Samoclutch", "name": "Green Puffle", "description": "A green Puffle from Club Penguin, with propeller hat. Made with nostalgia.", "website": "", "subreddit": "", "center": [1493.5, 1797.5], "path": [[1493.5, 1788.5], [1490.5, 1786.5], [1495.5, 1786.5], [1502.5, 1798.5], [1497.5, 1806.5], [1489.5, 1806.5], [1484.5, 1797.5], [1487.5, 1791.5], [1490.5, 1789.5]]}, {"id": "tx3ck1", "submitted_by": "Azmaas", "name": "Flag of Mongolia", "description": "", "website": "", "subreddit": "/r/mongolia", "center": [286.5, 165.5], "path": [[276.5, 158.5], [296.5, 158.5], [296.5, 171.5], [276.5, 171.5]]}, {"id": "tx3civ", "submitted_by": "mzarb_", "name": "Afterlife Project logo", "description": "The logo of a DreamSMP fangame about the character Ghostbur played by Wilbur Soot, represented by the blue heart. The fangame is called Limbo: A Ghostbur's Tale, also referred to as the Afterlife Project.", "website": "https://twitter.com/LimbobyGhostbur", "subreddit": "", "center": [833.5, 1390.5], "path": [[829.5, 1386.5], [837.5, 1386.5], [837.5, 1394.5], [829.5, 1394.5]]}, @@ -3672,11 +3437,10 @@ {"id": "tx3bgt", "submitted_by": "TaoLeSinge", "name": "ScanR, french scanlation team", "description": "A french scanlation team,working mainly on Kaguya-Sama and Oshi no Ko by author Aka Akasaka and Mengo Yokoyari", "website": "https://twitter.com/TeamScanR", "subreddit": "", "center": [337.5, 1672.5], "path": [[325.5, 1668.5], [349.5, 1668.5], [349.5, 1675.5], [325.5, 1675.5], [325.5, 1668.5]]}, {"id": "tx3bbr", "submitted_by": "bisc0tte_", "name": "Colombia flag", "description": "Flag of Colombia with figures such as the country's border shades, a parrot, a flower and more.", "website": "", "subreddit": "/r/Colombia", "center": [213.5, 567.5], "path": [[176.5, 555.5], [177.5, 554.5], [194.5, 554.5], [194.5, 548.5], [224.5, 548.5], [224.5, 554.5], [247.5, 554.5], [247.5, 562.5], [257.5, 571.5], [257.5, 578.5], [256.5, 582.5], [237.5, 582.5], [236.5, 581.5], [174.5, 581.5], [174.5, 573.5], [170.5, 569.5], [170.5, 567.5], [172.5, 565.5], [173.5, 565.5], [174.5, 566.5], [175.5, 566.5], [175.5, 556.5], [176.5, 554.5]]}, {"id": "tx3b6i", "submitted_by": "Skython", "name": "Axolotl", "description": "A cute axolotl; native to Mexico and the mascot of SweetAnita.", "website": "https://www.twitch.tv/sweet_anita", "subreddit": "/r/Sweet_Anita", "center": [992.5, 244.5], "path": [[979.5, 240.5], [979.5, 242.5], [986.5, 249.5], [987.5, 253.5], [991.5, 253.5], [991.5, 251.5], [993.5, 251.5], [993.5, 253.5], [997.5, 253.5], [997.5, 249.5], [1005.5, 242.5], [1005.5, 240.5], [1003.5, 238.5], [1000.5, 238.5], [996.5, 242.5], [995.5, 242.5], [995.5, 240.5], [994.5, 241.5], [993.5, 240.5], [992.5, 239.5], [995.5, 236.5], [995.5, 234.5], [994.5, 233.5], [993.5, 233.5], [992.5, 234.5], [991.5, 233.5], [990.5, 233.5], [989.5, 236.5], [992.5, 239.5], [991.5, 240.5], [990.5, 241.5], [989.5, 240.5], [989.5, 241.5], [988.5, 242.5], [984.5, 238.5], [981.5, 238.5], [979.5, 240.5]]}, -{"id": "tx3b4x", "submitted_by": "HipsterJert", "name": "Remy from Ratatouile", "description": "Remy from the Pixar animated movie Ratatouille, about a french mouse living in Paris in a chef's kitchen", "website": "https://en.wikipedia.org/wiki/Ratatouille_(film)", "subreddit": "", "center": [219.5, 1758.5], "path": [[193.5, 1783.5], [242.5, 1785.5], [238.5, 1731.5], [202.5, 1726.5], [197.5, 1760.5]]}, {"id": "tx3b4t", "submitted_by": "naterichster", "name": "The Orange Pixel Project", "description": "A 1x1 orange pixel canvas that represents the intense campaigns and alliances organized to defend artwork in the face of destruction. It is also a symbol of individual impact in a community space.", "website": "", "subreddit": "", "center": [664.5, 319.5], "path": [[665.5, 318.5], [665.5, 320.5], [663.5, 320.5], [663.5, 318.5]]}, {"id": "tx3b2r", "submitted_by": "Karyllon", "name": "Tunic", "description": "Tunic is an action-adventure game developed by Canadian indie developer Andrew Shouldice and published by Finji. The game was released in March 2022 on Microsoft Windows and macOS, and on the Xbox Series X/S, and Xbox One as a timed exclusive for consoles.", "website": "https://tunicgame.com/", "subreddit": "/r/TunicGame", "center": [1399.5, 129.5], "path": [[1391.5, 119.5], [1391.5, 119.5], [1391.5, 119.5], [1392.5, 118.5], [1396.5, 119.5], [1402.5, 119.5], [1404.5, 120.5], [1407.5, 121.5], [1407.5, 130.5], [1410.5, 130.5], [1410.5, 138.5], [1388.5, 138.5], [1387.5, 135.5], [1388.5, 134.5], [1388.5, 128.5], [1389.5, 128.5], [1391.5, 125.5], [1391.5, 121.5], [1390.5, 120.5], [1391.5, 119.5]]}, {"id": "tx3az8", "submitted_by": "Prior_Gate_9909", "name": "Kansas City Royals", "description": "The Kansas City Royals are an American Baseball team that plays for the city of Kansas City, Kansas. The Royals are apart of the MLB, and won the World Series in 2015.", "website": "https://www.mlb.com/royals", "subreddit": "/r/KCRoyals", "center": [1996.5, 444.5], "path": [[1996.5, 449.5], [1995.5, 449.5], [1992.5, 446.5], [1992.5, 439.5], [1993.5, 439.5], [1993.5, 441.5], [1995.5, 441.5], [1995.5, 439.5], [1996.5, 439.5], [1996.5, 441.5], [1998.5, 441.5], [1998.5, 439.5], [1999.5, 439.5], [1999.5, 446.5]]}, -{"id": "tx3ap7", "submitted_by": "Rettungsanker", "name": "The Rocky Mountains", "description": "The Rocky Mountains, also known as the Rockies, are a major mountain range and the largest mountain system in America. They are pictured behind several American monuments.", "website": "", "subreddit": "/r/AmericaFlagInPlace", "center": [1872.5, 1851.5], "path": [[1826.5, 1854.5], [1841.5, 1842.5], [1847.5, 1842.5], [1852.5, 1837.5], [1856.5, 1841.5], [1864.5, 1840.5], [1868.5, 1836.5], [1875.5, 1836.5], [1885.5, 1828.5], [1892.5, 1828.5], [1900.5, 1833.5], [1907.5, 1833.5], [1911.5, 1835.5], [1919.5, 1833.5], [1917.5, 1850.5], [1904.5, 1855.5], [1899.5, 1859.5], [1890.5, 1862.5], [1887.5, 1868.5], [1826.5, 1868.5]]}, +{"id": "tx3ap7", "submitted_by": "Rettungsanker", "name": "Rocky Mountains", "description": "The Rocky Mountains, also known as the Rockies, are a major mountain range and the largest mountain system in America. They are pictured behind several American monuments.", "website": "https://en.wikipedia.org/wiki/Rocky_Mountains", "subreddit": "/r/AmericanFlagInPlace", "center": [1872.5, 1851.5], "path": [[1826.5, 1854.5], [1841.5, 1842.5], [1847.5, 1842.5], [1852.5, 1837.5], [1856.5, 1841.5], [1864.5, 1840.5], [1868.5, 1836.5], [1875.5, 1836.5], [1885.5, 1828.5], [1892.5, 1828.5], [1900.5, 1833.5], [1907.5, 1833.5], [1911.5, 1835.5], [1919.5, 1833.5], [1917.5, 1850.5], [1904.5, 1855.5], [1899.5, 1859.5], [1890.5, 1862.5], [1887.5, 1868.5], [1826.5, 1868.5]]}, {"id": "tx3aca", "submitted_by": "lazumitos", "name": "maramamiau", "description": "Skin de la streamer maramamiau, sus seguidores (nekos) dejaron huella por aqu\u00ed para recordarla por todos estos meses sin stream", "website": "https://www.twitch.tv/maramamiau", "subreddit": "", "center": [1108.5, 1316.5], "path": [[1103.5, 1311.5], [1112.5, 1311.5], [1112.5, 1320.5], [1103.5, 1320.5], [1103.5, 1311.5]]}, {"id": "tx3a5l", "submitted_by": "Omgryarts", "name": "Bersgamer", "description": "The logo of Bersgamer, he\u00b4s an OG Spanish youtuber mostly known for uploading horror games", "website": "https://www.youtube.com/c/BersGamer/featured", "subreddit": "", "center": [1886.5, 252.5], "path": [[1869.5, 235.5], [1869.5, 269.5], [1902.5, 269.5], [1902.5, 235.5]]}, {"id": "tx39oq", "submitted_by": "Azmaas", "name": "Flag of Puerto Rico", "description": "", "website": "", "subreddit": "/r/PuertoRico", "center": [775.5, 514.5], "path": [[764.5, 508.5], [786.5, 508.5], [786.5, 520.5], [764.5, 520.5]]}, @@ -3685,11 +3449,10 @@ {"id": "tx3950", "submitted_by": "HTingC", "name": "Foolish Gamers Shark", "description": "Depiction of a shark which is a homage to Minecraft streamer Foolish_Gamers profile picture.", "website": "", "subreddit": "/r/FoolishGamers", "center": [1981.5, 750.5], "path": [[1962.5, 732.5], [1999.5, 732.5], [1999.5, 769.5], [1962.5, 768.5]]}, {"id": "tx3917", "submitted_by": "JosephBurningHam", "name": "Don Cheadle's Orange", "description": "The final resting place of Orange Group's orange. Helped built and protected by Katana Zero and Chelsea Football Club as requested and directed by Discord user Don Cheadle. Sponsored by Citrasys.", "website": "", "subreddit": "", "center": [1163.5, 1886.5], "path": [[1160.5, 1882.5], [1166.5, 1882.5], [1166.5, 1889.5], [1160.5, 1889.5], [1160.5, 1882.5]]}, {"id": "tx38y3", "submitted_by": "Prior_Gate_9909", "name": "Tampa Bay Buccaneers", "description": "The Buccaneers, or Bucs for short, are an American Football team based out of Tampa Bay, Florida. The Buccaneers are apart of the NFL, and recently won Super Bowl LV in 2021. Featured is the number 12, which is the number worn by the Buccaneers quarterback Tom Brady.", "website": "https://www.buccaneers.com", "subreddit": "/r/buccaneers", "center": [1757.5, 258.5], "path": [[1740.5, 253.5], [1740.5, 262.5], [1775.5, 262.5], [1775.5, 253.5], [1770.5, 253.5], [1768.5, 255.5], [1755.5, 255.5], [1753.5, 253.5]]}, -{"id": "tx38sh", "submitted_by": "HeronUnusual1875", "name": "PipePunk", "description": "Logo del streamer Mexicano PipePunk", "website": "Twitch.tv/pipepunk", "subreddit": "", "center": [1752.5, 1462.5], "path": [[1735.5, 1451.5], [1769.5, 1452.5], [1770.5, 1473.5], [1735.5, 1473.5]]}, +{"id": "tx38sh", "submitted_by": "HeronUnusual1875", "name": "PipePunk", "description": "Logo del streamer Mexicano PipePunk", "website": "https://Twitch.tv/pipepunk", "subreddit": "", "center": [1752.5, 1462.5], "path": [[1735.5, 1451.5], [1769.5, 1452.5], [1770.5, 1473.5], [1735.5, 1473.5]]}, {"id": "tx38cx", "submitted_by": "Neigara", "name": "gom4rt", "description": "frenchs streamers gom4rt (pink), Pinde (brown), cokoooooo (purple & yellow)", "website": "", "subreddit": "", "center": [1635.5, 40.5], "path": [[1625.5, 35.5], [1636.5, 47.5], [1640.5, 47.5], [1640.5, 35.5], [1625.5, 35.5]]}, -{"id": "tx3882", "submitted_by": "happyplace28", "name": "Hermit-Brasil Alliance", "description": "The minecraft server Hermitcraft and Brasil formed an alliance here - maybe we can be neighbors again next time!nn", "website": "", "subreddit": "/r/hermitcraft, /r/brasil", "center": [929.5, 588.5], "path": [[927.5, 584.5], [931.5, 584.5], [934.5, 586.5], [934.5, 590.5], [929.5, 593.5], [924.5, 589.5], [924.5, 586.5], [927.5, 584.5]]}, -{"id": "tx37vz", "submitted_by": "squidrobotfriend", "name": "r/MrRobot / Rassicas Alliance pt.3", "description": "The third art piece by r/MrRobot, hellofriend, was also one of the major locations of the r/MrRobot / Rassicas alliance. r/MrRobot's hellofriend piece formed a wall protecting many pieces from the void, including the Chicago Cubs, r/OneShot (Pogging Niko / Phosphor Hearts / Small Alula), r/EBM and r/lofihouse / r/lofihiphop (who were allied with OneShot), and Mothalisa (r/Skyplace). This was also the site of a truce/ceasefire between Rassicas, who combined factions with r/MrRobot early on, and GRR 340, one of the FIRST Robotics team numbers seen to the right of the Vernba head.", "website": "", "subreddit": "", "center": [1108.5, 1641.5], "path": [[1157.5, 1675.5], [1162.5, 1675.5], [1162.5, 1650.5], [1163.5, 1650.5], [1163.5, 1610.5], [1130.5, 1610.5], [1130.5, 1611.5], [1109.5, 1611.5], [1109.5, 1618.5], [1107.5, 1620.5], [1106.5, 1621.5], [1031.5, 1621.5], [1031.5, 1631.5], [1031.5, 1644.5], [1043.5, 1644.5], [1043.5, 1631.5], [1076.5, 1631.5], [1076.5, 1643.5], [1063.5, 1646.5], [1062.5, 1648.5], [1061.5, 1650.5], [1064.5, 1654.5], [1072.5, 1658.5], [1070.5, 1662.5], [1071.5, 1663.5], [1075.5, 1661.5], [1074.5, 1666.5], [1077.5, 1667.5], [1079.5, 1669.5], [1069.5, 1669.5], [1069.5, 1680.5], [1077.5, 1680.5], [1078.5, 1680.5], [1078.5, 1705.5], [1092.5, 1705.5], [1092.5, 1682.5], [1096.5, 1682.5], [1106.5, 1682.5], [1106.5, 1675.5], [1114.5, 1675.5], [1114.5, 1670.5], [1131.5, 1670.5], [1131.5, 1654.5], [1121.5, 1654.5], [1113.5, 1650.5], [1113.5, 1637.5], [1093.5, 1637.5], [1092.5, 1631.5], [1131.5, 1631.5], [1133.5, 1641.5], [1133.5, 1658.5], [1149.5, 1658.5], [1149.5, 1664.5], [1156.5, 1664.5], [1156.5, 1675.5]]}, -{"id": "tx37ok", "submitted_by": "Blue_Widge", "name": "ESIEA", "description": "French Computer Science engineering school", "website": "https://www.esiea.fr", "subreddit": "", "center": [1679.5, 42.5], "path": [[1663.5, 36.5], [1694.5, 36.5], [1694.5, 48.5], [1663.5, 48.5], [1663.5, 36.5]]}, +{"id": "tx3882", "submitted_by": "happyplace28", "name": "Hermit-Brazil alliance", "description": "The Minecraft server Hermitcraft and Brazil formed an alliance here - maybe we can be neighbors again next time!", "website": "", "subreddit": "/r/hermitcraft, /r/brasil", "center": [929.5, 588.5], "path": [[927.5, 584.5], [931.5, 584.5], [934.5, 586.5], [934.5, 590.5], [929.5, 593.5], [924.5, 589.5], [924.5, 586.5], [927.5, 584.5]]}, +{"id": "tx37vz", "submitted_by": "squidrobotfriend", "name": "r/MrRobot / Rassicas Alliance pt.3", "description": "The third art piece by r/MrRobot, hellofriend, was also one of the major locations of the r/MrRobot / Rassicas alliance. r/MrRobot's hellofriend piece formed a wall protecting many pieces from the void, including the Chicago Cubs, r/OneShot (Pogging Niko / Phosphor Hearts / Small Alula), r/EBM and r/lofihouse / r/lofihiphop (who were allied with OneShot), and Mothalisa (r/Skyplace). This was also the site of a truce/ceasefire between Rassicas, who combined factions with r/MrRobot early on, and GRR 340, one of the FIRST Robotics team numbers seen to the right of the Vernba head. In the end, the r/MrRobot / Rassicas Alliance actually even formed an alliance with The Swarm (the Discord server for the void), being given protection from attacks against hellofriend in exchange for helping clean 'confetti' (random pixels in the void).", "website": "", "subreddit": "", "center": [1108.5, 1641.5], "path": [[1157.5, 1675.5], [1162.5, 1675.5], [1162.5, 1650.5], [1163.5, 1650.5], [1163.5, 1610.5], [1130.5, 1610.5], [1130.5, 1611.5], [1109.5, 1611.5], [1109.5, 1618.5], [1107.5, 1620.5], [1106.5, 1621.5], [1031.5, 1621.5], [1031.5, 1631.5], [1031.5, 1644.5], [1043.5, 1644.5], [1043.5, 1631.5], [1076.5, 1631.5], [1076.5, 1643.5], [1063.5, 1646.5], [1062.5, 1648.5], [1061.5, 1650.5], [1064.5, 1654.5], [1072.5, 1658.5], [1070.5, 1662.5], [1071.5, 1663.5], [1075.5, 1661.5], [1074.5, 1666.5], [1077.5, 1667.5], [1079.5, 1669.5], [1069.5, 1669.5], [1069.5, 1680.5], [1077.5, 1680.5], [1078.5, 1680.5], [1078.5, 1705.5], [1092.5, 1705.5], [1092.5, 1682.5], [1096.5, 1682.5], [1106.5, 1682.5], [1106.5, 1675.5], [1114.5, 1675.5], [1114.5, 1670.5], [1131.5, 1670.5], [1131.5, 1654.5], [1121.5, 1654.5], [1113.5, 1650.5], [1113.5, 1637.5], [1093.5, 1637.5], [1092.5, 1631.5], [1131.5, 1631.5], [1133.5, 1641.5], [1133.5, 1658.5], [1149.5, 1658.5], [1149.5, 1664.5], [1156.5, 1664.5], [1156.5, 1675.5]]}, {"id": "tx37nt", "submitted_by": "MemoryAggravating694", "name": "Superman", "description": "The Superman Logo", "website": "", "subreddit": "", "center": [789.5, 1395.5], "path": [[781.5, 1394.5], [784.5, 1390.5], [794.5, 1390.5], [796.5, 1394.5], [789.5, 1402.5]]}, {"id": "tx37c5", "submitted_by": "JokerXKsa", "name": "United Arab Emirates Flag", "description": "UAE", "website": "", "subreddit": "", "center": [117.5, 260.5], "path": [[105.5, 252.5], [130.5, 253.5], [130.5, 268.5], [105.5, 268.5]]}, {"id": "tx3762", "submitted_by": "edbones", "name": "Yuzusoft", "description": "Yuzusoft is a company that creates high quality visual novels.", "website": "http://www.yuzu-soft.com/", "subreddit": "/r/visualnovels", "center": [1453.5, 505.5], "path": [[1433.5, 502.5], [1472.5, 502.5], [1472.5, 508.5], [1433.5, 508.5]]}, @@ -3702,19 +3465,19 @@ {"id": "tx36jv", "submitted_by": "facrod", "name": "Pasto", "description": "A small community of argentinian friends who drew their discord server name.", "website": "", "subreddit": "", "center": [804.5, 1540.5], "path": [[797.5, 1538.5], [797.5, 1542.5], [810.5, 1542.5], [810.5, 1538.5]]}, {"id": "tx36id", "submitted_by": "Ok-Transition-5833", "name": "foolishWallshark emote", "description": "A depiction of an emote foolishWallshark used by Twitch streamer Foolish_Gamers made by his community", "website": "https://twitch.tv/foolish_gamers", "subreddit": "", "center": [1980.5, 750.5], "path": [[1962.5, 732.5], [1998.5, 732.5], [1998.5, 768.5], [1962.5, 768.5]]}, {"id": "tx36gw", "submitted_by": "Alexius08", "name": "r/Heraldry", "description": "Coat of arms (design on a shield) for Heraldry subreddit", "website": "", "subreddit": "/r/Heraldry", "center": [1280.5, 1234.5], "path": [[1276.5, 1229.5], [1284.5, 1229.5], [1284.5, 1238.5], [1282.5, 1240.5], [1279.5, 1240.5], [1277.5, 1238.5], [1277.5, 1237.5], [1276.5, 1236.5], [1276.5, 1229.5]]}, -{"id": "tx369j", "submitted_by": "HeronUnusual1875", "name": "xCry", "description": "Representacion del streamer espa\u00f1ol Cry, con su emote CryAlien", "website": "[twitch.tv/xcry](https://twitch.tv/xcry)", "subreddit": "", "center": [1794.5, 1476.5], "path": [[1770.5, 1456.5], [1816.5, 1456.5], [1819.5, 1496.5], [1770.5, 1496.5], [1770.5, 1474.5], [1770.5, 1474.5], [1792.5, 1483.5], [1770.5, 1473.5]]}, +{"id": "tx369j", "submitted_by": "HeronUnusual1875", "name": "xCry", "description": "Representacion del streamer espa\u00f1ol Cry, con su emote CryAlien", "website": "https://twitch.tv/xcry", "subreddit": "", "center": [1794.5, 1476.5], "path": [[1770.5, 1456.5], [1816.5, 1456.5], [1819.5, 1496.5], [1770.5, 1496.5], [1770.5, 1474.5], [1770.5, 1474.5], [1792.5, 1483.5], [1770.5, 1473.5]]}, {"id": "tx3696", "submitted_by": "Azmaas", "name": "Inka Kola", "description": "A popular peruvian soft drink", "website": "", "subreddit": "", "center": [543.5, 633.5], "path": [[539.5, 625.5], [540.5, 625.5], [540.5, 623.5], [541.5, 623.5], [541.5, 619.5], [545.5, 619.5], [545.5, 623.5], [546.5, 623.5], [546.5, 625.5], [547.5, 625.5], [547.5, 644.5], [539.5, 644.5]]}, {"id": "tx363y", "submitted_by": "InspectorMclel", "name": "Hot Drink Studios", "description": "A tiny H made by the indie software developer group Hot Drink Studios. Responsible for projects such as WizlonTime", "website": "https://wizlontime.com/", "subreddit": "", "center": [1454.5, 342.5], "path": [[1453.5, 343.5], [1455.5, 343.5], [1455.5, 341.5], [1453.5, 341.5], [1453.5, 343.5]]}, {"id": "tx35kd", "submitted_by": "Prior_Gate_9909", "name": "University of North Carolina", "description": "University of North Carolina, or UNC for short, is a university located in Chapel Hill, North Carolina. The North Carolina Tarheels recently competed in the Championship Game of the 2022 NCAA Tournament.", "website": "https://www.unc.edu", "subreddit": "/r/UNC", "center": [331.5, 1642.5], "path": [[337.5, 1636.5], [325.5, 1636.5], [325.5, 1647.5], [337.5, 1647.5]]}, {"id": "tx35ka", "submitted_by": "MaryHawk", "name": "Wham Wham", "description": "This is a depiction of Wham Wham, the snowman king from the indie game Everybody Wham Wham.", "website": "https://store.steampowered.com/app/1510630/Everybody_Wham_Wham/", "subreddit": "", "center": [1217.5, 1019.5], "path": [[1210.5, 1004.5], [1210.5, 1010.5], [1209.5, 1019.5], [1211.5, 1023.5], [1202.5, 1029.5], [1204.5, 1031.5], [1229.5, 1031.5], [1229.5, 1027.5], [1224.5, 1023.5], [1226.5, 1019.5], [1229.5, 1018.5], [1229.5, 1016.5], [1226.5, 1016.5], [1226.5, 1013.5], [1225.5, 1012.5], [1223.5, 1009.5], [1223.5, 1004.5], [1217.5, 1003.5], [1210.5, 1004.5]]}, {"id": "tx35ja", "submitted_by": "KingDededeThe3rd", "name": "Battle Network Logo", "description": "The logo from the action RPG series Mega Man Battle Network. It can be seen on the outfits of the series' main characters, Lan and Megaman.EXE", "website": "", "subreddit": "/r/BattleNetwork", "center": [1788.5, 1669.5], "path": [[1785.5, 1670.5], [1787.5, 1672.5], [1790.5, 1672.5], [1791.5, 1670.5], [1791.5, 1667.5], [1790.5, 1666.5], [1786.5, 1666.5], [1785.5, 1668.5]]}, -{"id": "tx35h9", "submitted_by": "bisc0tte_", "name": "A Cartooned Starcraft Probe", "description": "The probe is the Protoss race worker unit in the StarCraft game series from the game studio publisher Blizzard.", "website": "https://starcraft.fandom.com/wiki/Probe", "subreddit": "", "center": [1795.5, 1732.5], "path": [[1796.5, 1723.5], [1797.5, 1726.5], [1798.5, 1728.5], [1799.5, 1731.5], [1800.5, 1732.5], [1800.5, 1735.5], [1801.5, 1736.5], [1802.5, 1736.5], [1803.5, 1737.5], [1804.5, 1738.5], [1802.5, 1738.5], [1801.5, 1737.5], [1800.5, 1735.5], [1799.5, 1736.5], [1799.5, 1737.5], [1798.5, 1737.5], [1797.5, 1738.5], [1794.5, 1738.5], [1792.5, 1737.5], [1792.5, 1735.5], [1791.5, 1735.5], [1790.5, 1736.5], [1790.5, 1737.5], [1789.5, 1738.5], [1787.5, 1738.5], [1788.5, 1737.5], [1789.5, 1736.5], [1791.5, 1735.5], [1791.5, 1732.5], [1792.5, 1731.5], [1792.5, 1729.5], [1793.5, 1728.5], [1793.5, 1727.5], [1794.5, 1725.5], [1795.5, 1724.5], [1796.5, 1723.5]]}, +{"id": "tx35h9", "submitted_by": "bisc0tte_", "name": "Starcraft Probe", "description": "The probe is the Protoss worker unit in the StarCraft game series from the game studio publisher Blizzard.", "website": "https://starcraft.fandom.com/wiki/Probe", "subreddit": "/r/starcraft", "center": [1795.5, 1732.5], "path": [[1796.5, 1723.5], [1797.5, 1726.5], [1798.5, 1728.5], [1799.5, 1731.5], [1800.5, 1732.5], [1800.5, 1735.5], [1801.5, 1736.5], [1802.5, 1736.5], [1803.5, 1737.5], [1804.5, 1738.5], [1802.5, 1738.5], [1801.5, 1737.5], [1800.5, 1735.5], [1799.5, 1736.5], [1799.5, 1737.5], [1798.5, 1737.5], [1797.5, 1738.5], [1794.5, 1738.5], [1792.5, 1737.5], [1792.5, 1735.5], [1791.5, 1735.5], [1790.5, 1736.5], [1790.5, 1737.5], [1789.5, 1738.5], [1787.5, 1738.5], [1788.5, 1737.5], [1789.5, 1736.5], [1791.5, 1735.5], [1791.5, 1732.5], [1792.5, 1731.5], [1792.5, 1729.5], [1793.5, 1728.5], [1793.5, 1727.5], [1794.5, 1725.5], [1795.5, 1724.5], [1796.5, 1723.5]]}, {"id": "tx356h", "submitted_by": "newSomberMan", "name": "The Weather Community and NOAA", "description": "Pixel art depicting the logo of the National Oceanic and Atmospheric Administration (NOAA) and Wx, a common symbol for the Weather Community. This artwork was notably not organized by a Subreddit, but by the Storm's Edge Discord server.", "website": "https://discord.gg/eH5WyxYA", "subreddit": "", "center": [1726.5, 599.5], "path": [[1737.5, 608.5], [1736.5, 608.5], [1737.5, 605.5], [1740.5, 605.5], [1740.5, 604.5], [1741.5, 603.5], [1741.5, 602.5], [1742.5, 602.5], [1742.5, 596.5], [1741.5, 596.5], [1741.5, 594.5], [1740.5, 594.5], [1740.5, 593.5], [1739.5, 593.5], [1739.5, 592.5], [1739.5, 591.5], [1737.5, 591.5], [1737.5, 590.5], [1735.5, 590.5], [1735.5, 589.5], [1729.5, 589.5], [1729.5, 590.5], [1728.5, 590.5], [1727.5, 591.5], [1726.5, 591.5], [1725.5, 592.5], [1724.5, 594.5], [1723.5, 596.5], [1722.5, 596.5], [1722.5, 597.5], [1720.5, 597.5], [1720.5, 596.5], [1719.5, 595.5], [1718.5, 594.5], [1716.5, 593.5], [1713.5, 592.5], [1712.5, 593.5], [1711.5, 593.5], [1709.5, 595.5], [1708.5, 597.5], [1707.5, 600.5], [1708.5, 601.5], [1709.5, 603.5], [1710.5, 604.5], [1712.5, 605.5], [1713.5, 606.5], [1716.5, 606.5], [1716.5, 605.5], [1718.5, 604.5], [1719.5, 603.5], [1720.5, 601.5], [1723.5, 602.5], [1723.5, 603.5], [1724.5, 604.5], [1724.5, 605.5], [1725.5, 606.5], [1727.5, 607.5], [1729.5, 608.5]]}, {"id": "tx352z", "submitted_by": "gioraffe32", "name": "Kansas City Royals", "description": "The Kansas City Royals are an MLB baseball team based out of Kansas City, Missouri.", "website": "", "subreddit": "/r/kcroyals", "center": [1995.5, 443.5], "path": [[1991.5, 438.5], [1991.5, 446.5], [1996.5, 450.5], [1999.5, 446.5], [1999.5, 438.5], [1999.5, 438.5], [1998.5, 438.5]]}, {"id": "tx34rm", "submitted_by": "Jmc_da_boss", "name": "Clemson University", "description": "The University Of Clemson in South Carolinas logo", "website": "https://www.clemson.edu/", "subreddit": "/r/clemson", "center": [303.5, 1617.5], "path": [[297.5, 1610.5], [309.5, 1610.5], [309.5, 1623.5], [296.5, 1624.5]]}, {"id": "tx349v", "submitted_by": "P_YANA", "name": "Bamboozler Splatoon", "description": "The bamboozler is a weapon who came from the game splatoon.", "website": "", "subreddit": "", "center": [1357.5, 1851.5], "path": [[1348.5, 1843.5], [1365.5, 1843.5], [1365.5, 1858.5], [1348.5, 1858.5]]}, {"id": "tx349q", "submitted_by": "JaDiLeBE", "name": "Fraijel\u00f3n Ernesto P\u00e9rez", "description": "Symbol of Water Protection", "website": "https://www.rtvc.gov.co/frailejon-ernesto-perez-cancion-historia-senal-colombia", "subreddit": "", "center": [233.5, 1329.5], "path": [[232.5, 1329.5], [229.5, 1327.5], [233.5, 1323.5], [226.5, 1320.5], [229.5, 1315.5], [233.5, 1313.5], [235.5, 1315.5], [238.5, 1313.5], [240.5, 1316.5], [242.5, 1315.5], [244.5, 1318.5], [240.5, 1323.5], [240.5, 1326.5], [242.5, 1327.5], [241.5, 1328.5], [241.5, 1331.5], [243.5, 1334.5], [243.5, 1337.5], [242.5, 1339.5], [240.5, 1338.5], [239.5, 1340.5], [239.5, 1345.5], [236.5, 1345.5], [236.5, 1341.5], [234.5, 1341.5], [233.5, 1345.5], [232.5, 1344.5], [231.5, 1342.5], [228.5, 1338.5], [225.5, 1338.5], [226.5, 1339.5], [226.5, 1345.5], [224.5, 1345.5], [224.5, 1330.5], [222.5, 1327.5], [222.5, 1324.5], [223.5, 1324.5], [226.5, 1323.5], [229.5, 1325.5], [227.5, 1329.5], [226.5, 1333.5], [227.5, 1333.5], [229.5, 1329.5], [230.5, 1324.5], [230.5, 1322.5]]}, -{"id": "tx349e", "submitted_by": "DrBennelly", "name": "Peace And Cube", "description": "Peace And Cube is a french minecraft server. More at peaceandcube.fr", "website": "peaceandcube.fr", "subreddit": "/r/peaceandcube", "center": [832.5, 1560.5], "path": [[820.5, 1556.5], [843.5, 1556.5], [843.5, 1564.5], [829.5, 1564.5], [829.5, 1563.5], [820.5, 1564.5], [820.5, 1556.5]]}, +{"id": "tx349e", "submitted_by": "DrBennelly", "name": "Peace And Cube", "description": "Peace And Cube is a french minecraft server. More at peaceandcube.fr", "website": "https://peaceandcube.fr", "subreddit": "/r/peaceandcube", "center": [832.5, 1560.5], "path": [[820.5, 1556.5], [843.5, 1556.5], [843.5, 1564.5], [829.5, 1564.5], [829.5, 1563.5], [820.5, 1564.5], [820.5, 1556.5]]}, {"id": "tx33xi", "submitted_by": "azeex_gaming", "name": "Ditto", "description": "Ditto is a Normal-type Pok\u00e9mon introduced in Generation I.nn", "website": "https://bulbapedia.bulbagarden.net/wiki/Ditto_(Pok%C3%A9mon)", "subreddit": "", "center": [700.5, 819.5], "path": [[708.5, 819.5], [706.5, 815.5], [705.5, 813.5], [704.5, 812.5], [702.5, 812.5], [702.5, 814.5], [700.5, 811.5], [696.5, 813.5], [692.5, 815.5], [694.5, 819.5], [693.5, 824.5], [698.5, 825.5], [707.5, 825.5], [709.5, 821.5], [707.5, 818.5]]}, {"id": "tx33w6", "submitted_by": "ERIC_MACK", "name": "Chicken Person ft. Amongus", "description": "Chick P is the best celestial being a motley crew of adventures could ask for! The blue amongus is riding atop.", "website": "", "subreddit": "", "center": [470.5, 1436.5], "path": [[469.5, 1440.5], [469.5, 1440.5], [471.5, 1440.5], [472.5, 1439.5], [473.5, 1438.5], [473.5, 1434.5], [472.5, 1433.5], [468.5, 1433.5], [467.5, 1435.5], [468.5, 1438.5], [469.5, 1440.5], [469.5, 1440.5], [469.5, 1440.5], [469.5, 1440.5]]}, {"id": "tx33vw", "submitted_by": "Edern76", "name": "Soul Knight boar", "description": "Enemy from the mobile game Soul Knight", "website": "", "subreddit": "/r/SoulKnight", "center": [1710.5, 1985.5], "path": [[1700.5, 1977.5], [1720.5, 1977.5], [1720.5, 1993.5], [1700.5, 1993.5]]}, @@ -3726,26 +3489,21 @@ {"id": "tx32xi", "submitted_by": "paleontologo", "name": "Skin thedaarick28", "description": "this is the skin's face of the streamer/youtuber theDaarick28", "website": "https://trovo.live/DaarickOficial", "subreddit": "", "center": [1620.5, 1654.5], "path": [[1615.5, 1649.5], [1615.5, 1658.5], [1624.5, 1658.5], [1624.5, 1649.5], [1624.5, 1649.5]]}, {"id": "tx32wl", "submitted_by": "Epimetteus", "name": "Pasto Army", "description": "A small gaming community from Argentina", "website": "", "subreddit": "", "center": [804.5, 1541.5], "path": [[797.5, 1544.5], [797.5, 1538.5], [811.5, 1538.5], [811.5, 1543.5], [811.5, 1543.5], [811.5, 1544.5]]}, {"id": "tx32s7", "submitted_by": "MemoryAggravating694", "name": "Underground hip hop records", "description": "Two very influential experimental hip hop records. On the left is Saturation III released by Brockhampton in 2017. On the right is By the Time I Get To Phoenix released by Injury Reserve in 2021", "website": "", "subreddit": "", "center": [705.5, 1695.5], "path": [[694.5, 1689.5], [716.5, 1689.5], [715.5, 1701.5], [694.5, 1701.5]]}, -{"id": "tx32d9", "submitted_by": "Kurobei", "name": "Trans Kitty", "description": "A little kitty head on a trans flag. I wanted to contribute something cute to this canvas. By MintKuro.", "website": "None", "subreddit": "Solo, Project", "center": [1060.5, 1784.5], "path": [[1055.5, 1779.5], [1055.5, 1789.5], [1065.5, 1789.5], [1065.5, 1779.5]]}, +{"id": "tx32d9", "submitted_by": "Kurobei", "name": "Trans Kitty", "description": "A little kitty head on a trans flag. I wanted to contribute something cute to this canvas. By MintKuro.", "website": "https://None", "subreddit": "Solo, Project", "center": [1060.5, 1784.5], "path": [[1055.5, 1779.5], [1055.5, 1789.5], [1065.5, 1789.5], [1065.5, 1779.5]]}, {"id": "tx328p", "submitted_by": "ObamaILove21", "name": "FRC Team 6696", "description": "FRC team 6696, Cardinal Dynamics, is a small FIRST Robotics team located in Corbett, OR.", "website": "https://sites.google.com/corbett.k12.or.us/corbett-robotics/", "subreddit": "/r/FRC", "center": [1154.5, 1635.5], "path": [[1146.5, 1632.5], [1162.5, 1632.5], [1162.5, 1638.5], [1146.5, 1638.5], [1146.5, 1632.5]]}, {"id": "tx327z", "submitted_by": "Edern76", "name": "Void Linux", "description": "Minimalist logo of the Void Linux distribution", "website": "", "subreddit": "/r/voidlinux", "center": [1261.5, 874.5], "path": [[1257.5, 870.5], [1257.5, 878.5], [1265.5, 878.5], [1265.5, 870.5], [1257.5, 870.5]]}, -{"id": "tx3231", "submitted_by": "Ok-Transition-5833", "name": "Streamer Mural", "description": "A collaborative effort by the communities of Twitch streamers Punz, Foolish_Gamers, TinaKitten, Karl Jacobs, Sapnap, 5up, Aipha, Sylveey, Tubbo and Michaelmcchill, as well as musician Corpse Husband. The mural depicts various characters, mascots and elements associated with said creators, as well as depictions of cat Bingus and BTTV emote Jammies", "website": "", "subreddit": "", "center": [1216.5, 1026.5], "path": [[1130.5, 1113.5], [1130.5, 1039.5], [1161.5, 1039.5], [1161.5, 928.5], [1282.5, 928.5], [1285.5, 928.5], [1285.5, 1113.5], [1130.5, 1113.5]]}, -{"id": "tx321d", "submitted_by": "dottenator7", "name": "Jellie Cat", "description": "Jellie, cat of Minecraft YouTuber GoodTimesWithScar (shown just to the left of the heart). She has a bi flag collar to honor and acknowledge the bisexual members of Scar's best known SMP, HermitCraft.", "website": "", "subreddit": "/r/hermitcraft", "center": [899.5, 619.5], "path": [[902.5, 615.5], [902.5, 623.5], [896.5, 623.5], [896.5, 618.5], [894.5, 616.5], [895.5, 615.5], [897.5, 615.5], [899.5, 616.5], [899.5, 615.5], [902.5, 615.5]]}, +{"id": "tx321d", "submitted_by": "dottenator7", "name": "Jellie Cat", "description": "Jellie, cat of Minecraft YouTuber GoodTimesWithScar (shown just to the left of the heart). She has a bi flag collar to honor and acknowledge the bisexual members of Scar's best known Surival Multiplayer, Hermitcraft.", "website": "https://youtube.fandom.com/wiki/GoodTimesWithScar", "subreddit": "/r/hermitcraft", "center": [899.5, 619.5], "path": [[902.5, 615.5], [902.5, 623.5], [896.5, 623.5], [896.5, 618.5], [894.5, 616.5], [895.5, 615.5], [897.5, 615.5], [899.5, 616.5], [899.5, 615.5], [902.5, 615.5]]}, {"id": "tx31rr", "submitted_by": "aljdlbjsdh", "name": "Jammies peepo", "description": "A Twitch emote placed on r/place by a Twitch streamer Nihachu and her community.", "website": "https://www.twitch.tv/nihachu", "subreddit": "", "center": [1268.5, 1091.5], "path": [[1276.5, 1114.5], [1282.5, 1114.5], [1282.5, 1111.5], [1281.5, 1108.5], [1279.5, 1105.5], [1279.5, 1096.5], [1278.5, 1095.5], [1278.5, 1089.5], [1280.5, 1089.5], [1283.5, 1094.5], [1283.5, 1086.5], [1279.5, 1083.5], [1276.5, 1083.5], [1276.5, 1082.5], [1277.5, 1081.5], [1277.5, 1076.5], [1275.5, 1074.5], [1271.5, 1072.5], [1265.5, 1072.5], [1263.5, 1073.5], [1261.5, 1073.5], [1259.5, 1075.5], [1257.5, 1079.5], [1258.5, 1084.5], [1261.5, 1085.5], [1259.5, 1088.5], [1257.5, 1087.5], [1254.5, 1086.5], [1251.5, 1082.5], [1250.5, 1082.5], [1249.5, 1084.5], [1248.5, 1085.5], [1251.5, 1089.5], [1253.5, 1091.5], [1255.5, 1092.5], [1257.5, 1092.5], [1261.5, 1092.5], [1262.5, 1094.5], [1262.5, 1100.5], [1263.5, 1101.5], [1263.5, 1103.5], [1262.5, 1105.5], [1262.5, 1105.5], [1261.5, 1107.5], [1260.5, 1108.5], [1260.5, 1108.5], [1259.5, 1109.5], [1259.5, 1110.5], [1258.5, 1111.5], [1258.5, 1114.5], [1264.5, 1114.5], [1264.5, 1110.5], [1269.5, 1105.5], [1272.5, 1105.5], [1274.5, 1106.5], [1275.5, 1107.5], [1275.5, 1113.5], [1276.5, 1113.5]]}, {"id": "tx31ok", "submitted_by": "Sarinyann", "name": "Pig", "description": "Pig's face from Minecraft", "website": "", "subreddit": "", "center": [848.5, 988.5], "path": [[844.5, 984.5], [844.5, 991.5], [852.5, 991.5], [852.5, 984.5], [844.5, 984.5]]}, {"id": "tx31lz", "submitted_by": "Zelkova", "name": "Dinklebean", "description": "Twitch streamer in in alliance with the PayMoneyWubby community.", "website": "https://www.twitch.tv/dinklebean", "subreddit": "/u/Dinklebean_", "center": [388.5, 1542.5], "path": [[368.5, 1532.5], [409.5, 1532.5], [409.5, 1549.5], [407.5, 1551.5], [404.5, 1552.5], [403.5, 1553.5], [368.5, 1553.5]]}, {"id": "tx31hk", "submitted_by": "Azmaas", "name": "Peruvian flags", "description": "Andynsane (a popular peruvian streamer) decided to put his logo into r/Place, this angered many peruvian comunities, who decided to raid his logo with peruvian flags since they felt like the only person who could have made Peru have a better representation on r/Place was putting himself above his own country", "website": "", "subreddit": "", "center": [1830.5, 1082.5], "path": [[1790.5, 1044.5], [1870.5, 1044.5], [1869.5, 1120.5], [1790.5, 1121.5]]}, {"id": "tx31ek", "submitted_by": "GGquartz", "name": "Azure Rathalos", "description": "Remnants of an attempt at creating the Azure Rathalos from the Monster Hunter series inside the blue corner. Even while the communities were allied, the art failed because of unaware people placing blue pixels.", "website": "", "subreddit": "/r/MonsterHunter", "center": [1996.5, 1871.5], "path": [[1999.5, 1868.5], [1992.5, 1868.5], [1992.5, 1874.5], [1999.5, 1874.5], [1999.5, 1868.5]]}, -{"id": "tx30z2", "submitted_by": "scolatitien", "name": "ESIEA", "description": "(\u00c9cole sup\u00e9rieure d'informatique \u00e9lectronique automatique) a French engineering school", "website": "https://www.esiea.fr/", "subreddit": "/r/esiea", "center": [1679.5, 42.5], "path": [[1695.5, 47.5], [1694.5, 35.5], [1662.5, 36.5], [1663.5, 48.5], [1694.5, 48.5]]}, -{"id": "tx30wc", "submitted_by": "supersonic4420", "name": "Runescape 2007", "description": "small area dedicated to RuneScape, more specifically 2007 RuneScape, also known as old school RuneScape. nnRuneScape is an MMORPG game set in a medieval fantasy world that was released 4 January 2001.", "website": "https://oldschool.runescape.com/", "subreddit": "/r/runescape", "center": [104.5, 58.5], "path": [[87.5, 54.5], [87.5, 61.5], [123.5, 61.5], [123.5, 56.5]]}, -{"id": "tx30sx", "submitted_by": "KamTros47", "name": "Team Quadrant logo", "description": "Logo for Team Quadrant, a gaming and lifestyle brand founded by McLaren Formula 1 driver Lando Norris.", "website": "quadrant.gg", "subreddit": "/r/formula1", "center": [489.5, 1793.5], "path": [[481.5, 1789.5], [483.5, 1789.5], [483.5, 1787.5], [495.5, 1787.5], [496.5, 1788.5], [496.5, 1795.5], [497.5, 1795.5], [498.5, 1796.5], [498.5, 1797.5], [497.5, 1799.5], [483.5, 1799.5], [483.5, 1797.5], [481.5, 1797.5]]}, +{"id": "tx30sx", "submitted_by": "KamTros47", "name": "Team Quadrant logo", "description": "Logo for Team Quadrant, a gaming and lifestyle brand founded by McLaren Formula 1 driver Lando Norris.", "website": "https://quadrant.gg", "subreddit": "/r/formula1", "center": [489.5, 1793.5], "path": [[481.5, 1789.5], [483.5, 1789.5], [483.5, 1787.5], [495.5, 1787.5], [496.5, 1788.5], [496.5, 1795.5], [497.5, 1795.5], [498.5, 1796.5], [498.5, 1797.5], [497.5, 1799.5], [483.5, 1799.5], [483.5, 1797.5], [481.5, 1797.5]]}, {"id": "tx30oi", "submitted_by": "el_REEDDit", "name": "andynzein", "description": "zein el streamer mas grande del peru y tambien con la frente mas grande XD", "website": "https://booyah.live/studio/59911252", "subreddit": "", "center": [1830.5, 1082.5], "path": [[1791.5, 1045.5], [1868.5, 1044.5], [1869.5, 1120.5], [1790.5, 1120.5], [1791.5, 1120.5]]}, {"id": "tx30if", "submitted_by": "DPanther_", "name": "Eye of Horus", "description": "A symbol in ancient Egyptian religion that represents well-being, healing, and protection.", "website": "https://en.wikipedia.org/wiki/Eye_of_Horus", "subreddit": "/r/Egypt", "center": [40.5, 158.5], "path": [[29.5, 158.5], [33.5, 155.5], [37.5, 151.5], [44.5, 151.5], [50.5, 157.5], [47.5, 157.5], [44.5, 160.5], [46.5, 161.5], [46.5, 164.5], [42.5, 167.5], [42.5, 162.5], [40.5, 162.5], [36.5, 168.5], [31.5, 168.5], [30.5, 165.5], [33.5, 164.5], [34.5, 167.5], [38.5, 164.5], [38.5, 160.5], [36.5, 159.5]]}, {"id": "tx30eg", "submitted_by": "Edern76", "name": "Switch Homebrew Launcher Logo", "description": "Logo of the Homebrew Launcher, a software allowing to run unofficial applications on the Nintendo Switch", "website": "", "subreddit": "", "center": [1215.5, 902.5], "path": [[1210.5, 897.5], [1210.5, 906.5], [1210.5, 907.5], [1220.5, 907.5], [1220.5, 897.5], [1210.5, 897.5], [1210.5, 907.5]]}, -{"id": "tx308k", "submitted_by": "Mikemece", "name": "Meta knight", "description": "A famous character of the Kirby series, known for being a recurrent enemy against Kirby", "website": "https://kirby.fandom.com/es/wiki/Meta_Knight", "subreddit": "/r/metaknight", "center": [0.5, 0.5], "path": []}, {"id": "tx3006", "submitted_by": "pl45000", "name": "Soul Knight", "description": "Jeu nomm\u00e9 soul knight o\u00f9 l'on retrouve des monstres a abbatre dans un donjon comme celui pr\u00e9sent sur la photo d\u00e9ssin\u00e9", "website": "https://play.google.com/store/apps/details?id=com.ChillyRoom.DungeonShooter&hl=fr&gl=US", "subreddit": "", "center": [1710.5, 1985.5], "path": [[1701.5, 1978.5], [1720.5, 1978.5], [1720.5, 1992.5], [1700.5, 1993.5]]}, {"id": "tx2zzy", "submitted_by": "Bone_Link", "name": "Squishel", "description": "The official mascot of the Squishtank (Sweet_Anita community)", "website": "", "subreddit": "/r/SweetAnitaTwitch", "center": [992.5, 243.5], "path": [[978.5, 232.5], [1006.5, 232.5], [1006.5, 253.5], [978.5, 254.5]]}, -{"id": "tx2zzf", "submitted_by": "Prior_Gate_9909", "name": "FC Barcelona", "description": "FC Barcelona is a football team based in Barcelona, Spain. The team competes in La Liga, and are one of the most well known Football teams around the world.", "website": "https://www.fcbarcelona.com", "subreddit": "/r/Barca", "center": [0.5, 0.5], "path": []}, {"id": "tx2zv0", "submitted_by": "DedePainted", "name": "Tina Jorts", "description": "Twitch emote for TinaKitten with a flower", "website": "https://twitch.tv/tinakitten", "subreddit": "", "center": [1170.5, 997.5], "path": [[1466.5, 1078.5], [1161.5, 1018.5], [1164.5, 1018.5], [1165.5, 1017.5], [1165.5, 1016.5], [1164.5, 1015.5], [1163.5, 1013.5], [1163.5, 1010.5], [1163.5, 1008.5], [1166.5, 1006.5], [1169.5, 1007.5], [1170.5, 1008.5], [1171.5, 1010.5], [1171.5, 1015.5], [1171.5, 1017.5], [1171.5, 1018.5], [1173.5, 1018.5], [1176.5, 1017.5], [1175.5, 1018.5], [1175.5, 1016.5], [1175.5, 1015.5], [1174.5, 1013.5], [1174.5, 1010.5], [1174.5, 1009.5], [1175.5, 1007.5], [1175.5, 1005.5], [1175.5, 1002.5], [1175.5, 1000.5], [1176.5, 999.5], [1179.5, 997.5], [1180.5, 995.5], [1179.5, 993.5], [1179.5, 989.5], [1179.5, 988.5], [1182.5, 987.5], [1184.5, 985.5], [1184.5, 983.5], [1183.5, 981.5], [1181.5, 979.5], [1179.5, 979.5], [1177.5, 979.5], [1175.5, 981.5], [1175.5, 981.5], [1173.5, 984.5], [1174.5, 986.5], [1175.5, 987.5], [1178.5, 988.5], [1179.5, 989.5], [1178.5, 993.5], [1179.5, 995.5], [1176.5, 995.5], [1175.5, 995.5], [1174.5, 992.5], [1174.5, 990.5], [1174.5, 990.5], [1174.5, 986.5], [1174.5, 986.5], [1171.5, 988.5], [1170.5, 988.5], [1168.5, 987.5], [1168.5, 987.5], [1167.5, 984.5], [1164.5, 985.5], [1162.5, 987.5], [1161.5, 989.5], [1160.5, 993.5], [1160.5, 1018.5], [1161.5, 1018.5]]}, {"id": "tx2zsj", "submitted_by": "KingDededeThe3rd", "name": "Mr. Mew", "description": "A character from the JRPG series, The World Ends With You. Often mistaken for a pig.", "website": "https://twewy.fandom.com/wiki/Mr._Mew", "subreddit": "/r/TWEWY", "center": [1812.5, 1667.5], "path": [[1807.5, 1663.5], [1807.5, 1663.5], [1818.5, 1663.5], [1818.5, 1666.5], [1817.5, 1666.5], [1817.5, 1669.5], [1814.5, 1672.5], [1810.5, 1672.5], [1810.5, 1670.5], [1807.5, 1668.5]]}, {"id": "tx2zhl", "submitted_by": "Mehd1cament", "name": "VOID STAR", "description": "Taken from Crusader's Fate, a game made by MusDario_Play in a Minecraft private server called Frenchcraft 2", "website": "", "subreddit": "", "center": [832.5, 973.5], "path": [[829.5, 970.5], [836.5, 970.5], [836.5, 975.5], [835.5, 975.5], [829.5, 976.5]]}, @@ -3758,21 +3516,18 @@ {"id": "tx2yir", "submitted_by": "std__bad_alloc", "name": "Sri Lanka Flag", "description": "The Sri Lanka Flag (partially under attack)", "website": "https://www.reddit.com/r/srilanka/comments/twlb5b/rplace_is_officially_over_thank_you_so_much_for/", "subreddit": "/r/srilanka", "center": [1963.5, 125.5], "path": [[1953.5, 119.5], [1953.5, 130.5], [1973.5, 130.5], [1973.5, 119.5]]}, {"id": "tx2yi8", "submitted_by": "A_Portuguese_Man", "name": "Azil and Biscoito", "description": "A rendition of Azil's logo and his Hedghog 'Biscoito'.nn", "website": "", "subreddit": "", "center": [999.5, 385.5], "path": [[988.5, 381.5], [1009.5, 381.5], [1009.5, 388.5], [988.5, 388.5], [988.5, 381.5], [988.5, 381.5]]}, {"id": "tx2yh3", "submitted_by": "TropicalTwister1", "name": "KEL", "description": "KEL is one of the deuteragonists in OMORI. He was relocated multiple times, and his existence can be debated as he was not fully finished right before the WHITE VOID ending of r/place.", "website": "", "subreddit": "/r/omori", "center": [1418.5, 1150.5], "path": [[1415.5, 1136.5], [1415.5, 1136.5], [1422.5, 1136.5], [1426.5, 1141.5], [1427.5, 1146.5], [1429.5, 1148.5], [1428.5, 1149.5], [1423.5, 1155.5], [1426.5, 1158.5], [1424.5, 1162.5], [1423.5, 1162.5], [1422.5, 1167.5], [1420.5, 1168.5], [1419.5, 1164.5], [1416.5, 1164.5], [1416.5, 1168.5], [1413.5, 1167.5], [1412.5, 1161.5], [1410.5, 1161.5], [1410.5, 1159.5], [1409.5, 1158.5], [1413.5, 1155.5], [1408.5, 1150.5], [1407.5, 1147.5], [1408.5, 1142.5], [1413.5, 1137.5]]}, -{"id": "tx2yai", "submitted_by": "Sam_700", "name": "A friendly project from Streamers", "description": "originally made by Twitch Streamer Foolish_Gamers community. Foolish_Gamers alongside Twitch Streamer Karl Jacobs, Sapnap, Punz, and TinaKitten came together to make art that represents themselves. As the canvas expanded they claimed more and their communities came together to add art of any other friend who wanted part such as Corpse Husband, 5uppp, Aipha, Niki Nihachu, Michaelmcchill, etc.", "website": "", "subreddit": "", "center": [1217.5, 1024.5], "path": [[1265.5, 1034.5], [1281.5, 927.5], [1283.5, 1114.5], [1130.5, 1112.5], [1131.5, 1040.5], [1161.5, 1038.5], [1161.5, 927.5], [1282.5, 928.5], [1283.5, 1038.5]]}, -{"id": "tx2y72", "submitted_by": "overtherainbowatch", "name": "Geometry Dash Demon difficulty", "description": "The 2013 released mobile-platformer Geometry Dash has a quality and difficulty rating system for costum build levels. Here a legendary rated hard demon difficulty level is depicted.", "website": "", "subreddit": "/r/geometrydash", "center": [0.5, 0.5], "path": []}, -{"id": "tx2xz7", "submitted_by": "Marculf_", "name": "Baghera's Duck", "description": "Small and cute duck drawn by the community of Swiss streamer BagheraJones during the rebuilding of the Tour de France after a Spanish attack on the bottom part of the French area", "website": "", "subreddit": "", "center": [29.5, 1960.5], "path": [[26.5, 1957.5], [32.5, 1957.5], [32.5, 1963.5], [26.5, 1963.5], [26.5, 1957.5]]}, +{"id": "tx2xz7", "submitted_by": "Marculf_", "name": "Baghera's duck", "description": "Small and cute duck drawn by the community of Swiss streamer BagheraJones during the rebuilding of the Tour de France after a Spanish attack on the bottom part of the French area.", "website": "https://www.twitch.tv/bagherajones", "subreddit": "/r/placefrance", "center": [29.5, 1960.5], "path": [[26.5, 1957.5], [32.5, 1957.5], [32.5, 1963.5], [26.5, 1963.5], [26.5, 1957.5]]}, {"id": "tx2xsd", "submitted_by": "halcyondays-", "name": "Vira-lata caramelo", "description": "Vira-lata caramelo, literally stray dog of a color resembling caramel, refers to the most common looking variety of stray dogs or mixed-breed dogs in Brazil. One of these dogs, named Pipi, became a famous meme, appearing in edited images of the R$200 bill.", "website": "https://www.patasdacasa.com.br/noticia/voce-sabe-a-historia-por-tras-do-meme-do-vira-lata-caramelo-conheca-a-historia-da-cachorrinha-pipi_a2271/1", "subreddit": "/r/brasil", "center": [1156.5, 578.5], "path": [[1145.5, 589.5], [1148.5, 589.5], [1152.5, 586.5], [1154.5, 588.5], [1168.5, 588.5], [1170.5, 584.5], [1171.5, 580.5], [1178.5, 574.5], [1178.5, 571.5], [1175.5, 571.5], [1172.5, 575.5], [1167.5, 570.5], [1161.5, 569.5], [1156.5, 569.5], [1156.5, 567.5], [1142.5, 567.5], [1141.5, 571.5], [1142.5, 573.5], [1144.5, 578.5], [1140.5, 582.5], [1139.5, 585.5], [1143.5, 586.5]]}, {"id": "tx2xnn", "submitted_by": "TheGDCreeper", "name": "GingerBrave", "description": "From the game Cookie Run, the main character GingerBrave makes a small appearance here.", "website": "https://www.cookierun-kingdom.com/en/", "subreddit": "/r/Cookierun", "center": [1738.5, 784.5], "path": [[1730.5, 780.5], [1730.5, 785.5], [1735.5, 789.5], [1742.5, 788.5], [1747.5, 781.5], [1742.5, 780.5], [1736.5, 780.5], [1730.5, 780.5], [1731.5, 780.5]]}, -{"id": "tx2xmr", "submitted_by": "unsimplejose_", "name": "Elded", "description": "Created by the Hispanic community of elded one of the oldest streamers in Latin America.", "website": "twitch.tv/elded", "subreddit": "/r/dedreviil", "center": [1767.5, 75.5], "path": [[1750.5, 52.5], [1750.5, 99.5], [1784.5, 98.5], [1785.5, 51.5], [1764.5, 52.5], [1753.5, 52.5]]}, +{"id": "tx2xmr", "submitted_by": "unsimplejose_", "name": "Elded", "description": "Created by the Hispanic community of elded one of the oldest streamers in Latin America.", "website": "https://twitch.tv/elded", "subreddit": "/r/dedreviil", "center": [1767.5, 75.5], "path": [[1750.5, 52.5], [1750.5, 99.5], [1784.5, 98.5], [1785.5, 51.5], [1764.5, 52.5], [1753.5, 52.5]]}, {"id": "tx2xio", "submitted_by": "Tcho09", "name": "Heyar's Emote", "description": "An emote from French Twitch streamer HeyarTV.", "website": "https://www.twitch.tv/heyartv", "subreddit": "", "center": [1168.5, 1940.5], "path": [[1156.5, 1957.5], [1175.5, 1956.5], [1180.5, 1947.5], [1180.5, 1924.5], [1156.5, 1924.5], [1156.5, 1957.5]]}, {"id": "tx2xfj", "submitted_by": "Azmaas", "name": "Andynsane (Zain)", "description": "Andynsain is a popular peruvian youtuber and streamer, he's known for his variety stile content and his Exponiendo infieles en Per\u00fa series, He's responsable for most of the changes Per\u00fa saw on r/Place", "website": "", "subreddit": "", "center": [1830.5, 1083.5], "path": [[1790.5, 1045.5], [1870.5, 1045.5], [1870.5, 1120.5], [1790.5, 1122.5]]}, {"id": "tx2xbl", "submitted_by": "NinoGunZz", "name": "F.A.M", "description": "Frente Armado de Mihoyo [F.A.M] (Mihoyo Armed Front in English), a satirical political party within the community of streamer Roberttson focused on the game Genshin Impact, only the F remains due to an attack.", "website": "", "subreddit": "/r/roberttson", "center": [1740.5, 1815.5], "path": [[1735.5, 1810.5], [1735.5, 1818.5], [1751.5, 1818.5], [1750.5, 1816.5], [1739.5, 1816.5], [1739.5, 1810.5], [1735.5, 1810.5]]}, {"id": "tx2x7y", "submitted_by": "Noahmiles413", "name": "DSMP streamer collab", "description": "A collaborative piece for the twitch streamers TinaKitten, Foolish_Gamers, KarlJacobs, Punz, and Sapnap.", "website": "https://m.twitch.tv/videos/1444308246", "subreddit": "", "center": [1217.5, 961.5], "path": [[1161.5, 929.5], [1288.5, 932.5], [1284.5, 1001.5], [1165.5, 1005.5], [1163.5, 929.5], [1157.5, 928.5], [1283.5, 925.5], [1286.5, 931.5], [1287.5, 932.5], [1158.5, 1006.5]]}, -{"id": "tx2x70", "submitted_by": "torbgen", "name": "CONEY on twitch.tv", "description": "Artwork done by the community of CONEY, professional Super Smash Bros. commentator and variety twitch streamer", "website": "twitch.tv/CONEY", "subreddit": "/r/Coney", "center": [67.5, 1083.5], "path": [[41.5, 1069.5], [41.5, 1096.5], [92.5, 1096.5], [92.5, 1069.5], [92.5, 1069.5], [41.5, 1069.5]]}, +{"id": "tx2x70", "submitted_by": "torbgen", "name": "CONEY on twitch.tv", "description": "Artwork done by the community of CONEY, professional Super Smash Bros. commentator and variety twitch streamer", "website": "https://twitch.tv/CONEY", "subreddit": "/r/Coney", "center": [67.5, 1083.5], "path": [[41.5, 1069.5], [41.5, 1096.5], [92.5, 1096.5], [92.5, 1069.5], [92.5, 1069.5], [41.5, 1069.5]]}, {"id": "tx2x65", "submitted_by": "Prior_Gate_9909", "name": "Seattle Seahawks", "description": "The Seahawks are an American Football team that plays for the city of Seattle, Washington. The Seahawks are apart of the NFL, and in Place, their border and colors spread far further then their logo.", "website": "https://www.seattleseahawks.com", "subreddit": "/r/Seahawks", "center": [1598.5, 667.5], "path": [[1577.5, 659.5], [1577.5, 675.5], [1618.5, 675.5], [1618.5, 659.5]]}, {"id": "tx2x3q", "submitted_by": "azeex_gaming", "name": "Luigi", "description": "fictional character featured in video games. Brother of Mario", "website": "", "subreddit": "", "center": [1501.5, 61.5], "path": [[1500.5, 53.5], [1497.5, 54.5], [1495.5, 53.5], [1493.5, 53.5], [1492.5, 58.5], [1493.5, 62.5], [1503.5, 71.5], [1508.5, 73.5], [1508.5, 67.5], [1508.5, 58.5], [1508.5, 53.5], [1494.5, 52.5], [1493.5, 53.5]]}, {"id": "tx2x29", "submitted_by": "A_Portuguese_Man", "name": "Azil and Biscoito", "description": "A rendition of Azil's logo and his Hedghog 'Biscoito'.nn", "website": "", "subreddit": "", "center": [999.5, 385.5], "path": [[988.5, 381.5], [1009.5, 381.5], [1009.5, 388.5], [988.5, 388.5], [988.5, 381.5], [988.5, 381.5]]}, -{"id": "tx2wwp", "submitted_by": "Your_Fault_Line", "name": "Coney", "description": "Content Creator and Smash Bros Commentator Coney's signature Cowboy Toad and Dancing C. Built by the Twitch audience live on twitch.tv/coney. Did you know you can subscribe for free with Twitch Prime? It's true!", "website": "twitch.tv/coney", "subreddit": "/r/Coney", "center": [0.5, 0.5], "path": []}, {"id": "tx2wvo", "submitted_by": "Fukano", "name": "Tribute to Fukano", "description": "French streamer Fukano's emote :fukaLove:, as a thanks for defending the french flag from 4am to 12pm (french time) the last day, until Kameto woke up", "website": "http://twitch.tv/Fukano", "subreddit": "", "center": [264.5, 1619.5], "path": [[249.5, 1601.5], [278.5, 1601.5], [278.5, 1636.5], [249.5, 1636.5], [249.5, 1601.5]]}, {"id": "tx2wsp", "submitted_by": "Bucket_bm", "name": "Michigan Technological University", "description": "University in the UP of Michigan, US. the art is of the mascot as it appears in one of the logos.", "website": "https://www.mtu.edu/", "subreddit": "/r/MTU", "center": [295.5, 1598.5], "path": [[291.5, 1595.5], [298.5, 1595.5], [298.5, 1600.5], [291.5, 1600.5]]}, {"id": "tx2wn7", "submitted_by": "bisc0tte_", "name": "A Wide Minion (bob?)", "description": "The Minions are small, yellow, cylindrical creatures, who have one or two eyes. They are the signature characters of the Despicable Me series. They bring much of the comedy in the film, and they are known as the scene-stealer of the movie. Frequently, they speak in an incomprehensible language, called Minionese, occasionally switching to English. They are much childish in some ways, yet they seem to be very intelligent in certain aspects. All the minions are minor characters in Minions (with the exception of Kevin, Stuart, and Bob), major character in Despicable Me and Despicable Me 2", "website": "https://despicableme.fandom.com/wiki/Minions", "subreddit": "", "center": [44.5, 68.5], "path": [[36.5, 65.5], [37.5, 64.5], [51.5, 64.5], [52.5, 65.5], [52.5, 72.5], [36.5, 72.5], [36.5, 65.5]]}, @@ -3781,45 +3536,37 @@ {"id": "tx2vxm", "submitted_by": "xRGTMX", "name": "Kansas Jayhawks", "description": "Sports mascot for the University of Kansas, a public research university whose main campus is located in Lawrence, Kansas, United States.nnAt the night of r/place's end (April 4, 2022), the Kansas Jayhawks men's basketball program won the 2022 NCAA Division I Men's Basketball Tournament championship game against the North Carolina Tar Heels.", "website": "https://kuathletics.com/", "subreddit": "/r/UniversityofKansas", "center": [355.5, 1676.5], "path": [[351.5, 1668.5], [362.5, 1668.5], [362.5, 1669.5], [363.5, 1670.5], [362.5, 1671.5], [362.5, 1674.5], [359.5, 1674.5], [359.5, 1684.5], [347.5, 1684.5], [347.5, 1679.5], [349.5, 1679.5], [351.5, 1677.5]]}, {"id": "tx2vo3", "submitted_by": "MrazikCZE", "name": "Tank Heist", "description": "Tank taken by Ukrainian civilists using their tractor during the Russia-Ukraine conflict that began in February of 2022.", "website": "", "subreddit": "/r/ukraine", "center": [139.5, 204.5], "path": [[122.5, 209.5], [143.5, 208.5], [156.5, 207.5], [154.5, 198.5], [137.5, 201.5], [123.5, 201.5]]}, {"id": "tx2vln", "submitted_by": "andronauts", "name": "andronauts", "description": "andronauts on r/place", "website": "http://twitch.tv/andronauts", "subreddit": "", "center": [1491.5, 1653.5], "path": [[1486.5, 1648.5], [1495.5, 1648.5], [1495.5, 1658.5], [1486.5, 1658.5], [1486.5, 1648.5]]}, -{"id": "tx2vgr", "submitted_by": "sifrael", "name": "Lain", "description": "A work in progress of Lain, the protagonist of the anime Serial Experiment Lain, made by /r/lain. The head and the start of the bear suit can already be seen.nThis was the third time a new picture had to be made, after the first two ended up destroyed. Although it is unfinished here, it was completed before the end, and can be seen on pictures of the final canvas.", "website": "", "subreddit": "/r/lain", "center": [1555.5, 1690.5], "path": [[1533.5, 1667.5], [1533.5, 1712.5], [1576.5, 1712.5], [1576.5, 1667.5], [1533.5, 1667.5]]}, {"id": "tx2v0t", "submitted_by": "Bordermia", "name": "ESMA", "description": "ESMA (Ecole Sup\u00e9rieure des M\u00e9tiers Artistiques) is a French 3D Animation school.", "website": "https://www.youtube.com/channel/UCHwI0Krnm0f2JOwAsxh3MBQ", "subreddit": "", "center": [1732.5, 254.5], "path": [[1727.5, 249.5], [1738.5, 249.5], [1738.5, 260.5], [1727.5, 260.5], [1727.5, 260.5], [1727.5, 259.5], [1727.5, 249.5], [1727.5, 249.5], [1738.5, 249.5], [1727.5, 260.5], [1727.5, 259.5]]}, {"id": "tx2um5", "submitted_by": "ReMatte", "name": "The Friendship Cube", "description": "A small cube dedicated to a random friend group. It has been relocated many times due to raids, but the HellTaker Community gave them a safe place to stay. Names from left to right and top to bottom: nChamoi, Dio Brandon, John Johnson, Sandwich, Vazo, Bianni, Curimaster, Diego Damen and Ily Pi\u00f1a", "website": "", "subreddit": "", "center": [763.5, 1579.5], "path": [[761.5, 1577.5], [765.5, 1577.5], [765.5, 1581.5], [761.5, 1581.5], [761.5, 1577.5]]}, {"id": "tx2ucg", "submitted_by": "TheTheor18", "name": "\u0130bra", "description": "\u0130brahim rock i\u00e7in yapt\u0131\u011f\u0131m\u0131z \u00e7al\u0131\u015fma. L\u00fctfen istifa et", "website": "", "subreddit": "", "center": [878.5, 1842.5], "path": [[873.5, 1837.5], [882.5, 1837.5], [882.5, 1846.5], [873.5, 1846.5], [873.5, 1837.5]]}, {"id": "tx2u9o", "submitted_by": "Ruminiuss", "name": "APC9 Logo", "description": "This pixel art was created by APC9. It is the acronym APC9 which stands for airpods city 9, the name of our discord server we created like 8 years ago.", "website": "", "subreddit": "", "center": [1888.5, 495.5], "path": [[1885.5, 491.5], [1891.5, 491.5], [1891.5, 499.5], [1885.5, 499.5], [1885.5, 491.5]]}, {"id": "tx2u75", "submitted_by": "Walnut-Simulacrum", "name": "Denver Nuggets", "description": "Art celebrating the NBA Basketball team the Denver Nuggets.", "website": "", "subreddit": "/r/DenverNuggets", "center": [1450.5, 71.5], "path": [[1432.5, 63.5], [1467.5, 63.5], [1467.5, 79.5], [1433.5, 79.5], [1432.5, 79.5]]}, -{"id": "tx2u6q", "submitted_by": "catw4lks", "name": "TommyInnit", "description": "Incredibly Influential Gamern", "website": "https://tommyinnit.store/", "subreddit": "/r/Tommyinnit", "center": [0.5, 0.5], "path": []}, {"id": "tx2u5t", "submitted_by": "kinetickhira", "name": "Grandson Logo", "description": "Grandson is an alt rock musician and human rights advocate, the XX over the eyes refers to XX resistance, a fund founded by him that supports charities and events empowering people to fight for social good.", "website": "https://open.spotify.com/artist/4ZgQDCtRqZlhLswVS6MHN4?si=_KcwBTz8T8Gqef32rhq7RA", "subreddit": "/r/grandson", "center": [1324.5, 413.5], "path": [[1320.5, 408.5], [1321.5, 411.5], [1318.5, 413.5], [1319.5, 417.5], [1321.5, 420.5], [1325.5, 420.5], [1326.5, 419.5], [1327.5, 418.5], [1328.5, 417.5], [1329.5, 416.5], [1329.5, 414.5], [1330.5, 414.5], [1330.5, 408.5], [1328.5, 407.5], [1328.5, 406.5], [1322.5, 406.5], [1320.5, 408.5], [1319.5, 410.5], [1319.5, 411.5], [1318.5, 411.5], [1318.5, 412.5]]}, {"id": "tx2tzk", "submitted_by": "Punchappy4", "name": "Flag of Puerto Rico", "description": "Flag of the Commonwealth of Puerto Rico, an unincorporated island territory of the United States of America in the Caribbean.", "website": "", "subreddit": "", "center": [776.5, 514.5], "path": [[764.5, 508.5], [787.5, 508.5], [787.5, 521.5], [766.5, 521.5]]}, -{"id": "tx2tyd", "submitted_by": "Sterrf_", "name": "Alesa", "description": "Character mascot of Youtuber and Streamer michaelmcchill", "website": "twitch.tv/michaelmcchill", "subreddit": "", "center": [1212.5, 1097.5], "path": [[1215.5, 1091.5], [1207.5, 1091.5], [1207.5, 1103.5], [1216.5, 1103.5], [1216.5, 1091.5], [1215.5, 1091.5]]}, +{"id": "tx2tyd", "submitted_by": "Sterrf_", "name": "Alesa", "description": "Character mascot of Youtuber and Streamer michaelmcchill", "website": "https://twitch.tv/michaelmcchill", "subreddit": "", "center": [1212.5, 1097.5], "path": [[1215.5, 1091.5], [1207.5, 1091.5], [1207.5, 1103.5], [1216.5, 1103.5], [1216.5, 1091.5], [1215.5, 1091.5]]}, {"id": "tx2tt8", "submitted_by": "Bolvane", "name": "Madeon Architects Logo", "description": "The logo of The Architects, the team behind Madeon's 2019 album Good Faith, as well as the chevron logo from Adventure.", "website": "", "subreddit": "/r/madeon", "center": [534.5, 731.5], "path": [[522.5, 717.5], [545.5, 717.5], [545.5, 745.5], [522.5, 745.5], [522.5, 717.5]]}, {"id": "tx2tlm", "submitted_by": "DarkSgabello", "name": "HI CCO", "description": "Pepegas greeting their lord CCOFTW aka KOKOFTU aka Charl with the help of their spanish friend, Lumicand", "website": "", "subreddit": "", "center": [1073.5, 1717.5], "path": [[1058.5, 1716.5], [1058.5, 1718.5], [1088.5, 1718.5], [1088.5, 1717.5], [1089.5, 1717.5], [1089.5, 1716.5], [1090.5, 1716.5]]}, {"id": "tx2tlc", "submitted_by": "counting_to_15", "name": "Punz chain and pumpkin", "description": "This artwork is made in reference to the content creator Punz. The pumpkin resembles his Twitch sub badges. The golden chain and coin are made after the chain he has on his Minecraft skin.", "website": "", "subreddit": "", "center": [1224.5, 975.5], "path": [[1182.5, 965.5], [1183.5, 987.5], [1189.5, 995.5], [1206.5, 1005.5], [1242.5, 1007.5], [1259.5, 1001.5], [1266.5, 995.5], [1266.5, 986.5], [1263.5, 969.5], [1254.5, 957.5], [1241.5, 947.5], [1242.5, 943.5], [1233.5, 942.5], [1231.5, 934.5], [1221.5, 934.5], [1221.5, 939.5], [1222.5, 939.5], [1222.5, 943.5], [1221.5, 943.5], [1221.5, 944.5], [1218.5, 944.5], [1213.5, 941.5], [1210.5, 942.5], [1210.5, 947.5], [1201.5, 947.5], [1193.5, 952.5], [1186.5, 959.5], [1183.5, 959.5], [1182.5, 965.5]]}, {"id": "tx2tkx", "submitted_by": "frandoodle_", "name": "Billzo head", "description": "A little tribute made to the streamer Billzo from his offline chat (Chatzo)", "website": "", "subreddit": "", "center": [849.5, 1452.5], "path": [[844.5, 1447.5], [844.5, 1447.5], [844.5, 1456.5], [853.5, 1456.5], [853.5, 1447.5], [853.5, 1447.5]]}, {"id": "tx2tg4", "submitted_by": "AguilaX", "name": "Elisawavess", "description": "A cute Spanish voice actress and commercial announcer, she's also a streamer on Twitch. She participated on the Spanish-French War on r/place.", "website": "https://www.twitch.tv/elisawavess", "subreddit": "", "center": [205.5, 1020.5], "path": [[190.5, 1000.5], [221.5, 1000.5], [221.5, 1039.5], [189.5, 1039.5]]}, {"id": "tx2td1", "submitted_by": "Prior_Gate_9909", "name": "N.O.A.A Logo", "description": "The National Oceanic and Atmospheric Administration, or NOAA for short, is a U.S. government agency that forecasts weather, monitors oceanic and atmospheric conditions, conducts deep-sea exploration, and more.", "website": "https://www.noaa.gov", "subreddit": "/r/NOAA", "center": [1732.5, 599.5], "path": [[1734.5, 608.5], [1730.5, 608.5], [1725.5, 608.5], [1725.5, 604.5], [1723.5, 604.5], [1723.5, 593.5], [1725.5, 593.5], [1725.5, 590.5], [1737.5, 590.5], [1737.5, 592.5], [1739.5, 592.5], [1739.5, 593.5], [1740.5, 593.5], [1740.5, 595.5], [1741.5, 595.5], [1741.5, 605.5], [1737.5, 605.5], [1737.5, 608.5]]}, -{"id": "tx2tbh", "submitted_by": "1nsae", "name": "A collective of streamers pixel art", "description": "Art created by streamers and fans of: Punz, Foolish_Gamers, Karl Jacobs, TinaKitten, Sapnap, CorpseHusband, 5uppp, Nihachu, Aipha, Sylveey, Michaelmcchill. Some of the art created by twitter artists: valorantpunzo, matchawoozie, d04_exe. The game Everybody Wham Wham also makes an appearance via the Snowman and Balloon. Bingus is also there via the request of CorpseHusband. Streamer Tubbo's beloved duck Benson is also there.n", "website": "", "subreddit": "", "center": [1215.5, 1025.5], "path": [[1284.5, 927.5], [1284.5, 1113.5], [1130.5, 1113.5], [1129.5, 1038.5], [1159.5, 1038.5], [1160.5, 927.5]]}, {"id": "tx2t9l", "submitted_by": "ravenconspirator", "name": "Offline Twitch Chats", "description": "A mural dedicated to offline chats of Twitch streamers. The center image is the WICKED emote outfitted with a purple cancer patient support ribbon and a crown. The names of various offline chats are listed.", "website": "", "subreddit": "/r/offliners", "center": [781.5, 1335.5], "path": [[853.5, 1313.5], [853.5, 1368.5], [799.5, 1368.5], [774.5, 1368.5], [773.5, 1368.5], [773.5, 1367.5], [773.5, 1366.5], [772.5, 1366.5], [772.5, 1365.5], [771.5, 1365.5], [772.5, 1364.5], [762.5, 1364.5], [761.5, 1365.5], [760.5, 1365.5], [760.5, 1364.5], [759.5, 1363.5], [759.5, 1360.5], [757.5, 1360.5], [757.5, 1358.5], [756.5, 1358.5], [756.5, 1357.5], [743.5, 1357.5], [743.5, 1357.5], [743.5, 1357.5], [743.5, 1358.5], [743.5, 1359.5], [742.5, 1360.5], [741.5, 1365.5], [740.5, 1366.5], [738.5, 1367.5], [722.5, 1367.5], [722.5, 1362.5], [723.5, 1362.5], [725.5, 1360.5], [725.5, 1359.5], [726.5, 1358.5], [726.5, 1355.5], [727.5, 1350.5], [725.5, 1348.5], [721.5, 1347.5], [721.5, 1336.5], [719.5, 1335.5], [719.5, 1330.5], [710.5, 1323.5], [701.5, 1323.5], [701.5, 1301.5], [755.5, 1301.5], [755.5, 1306.5], [789.5, 1306.5], [789.5, 1312.5], [821.5, 1312.5]]}, {"id": "tx2sjr", "submitted_by": "Hoi_A", "name": "MCC Chicken", "description": "The MCC Chicken is a mascot for MC Championship alongside a baby zombie, usually depicted riding it. It shows up in various MCC builds and media. It was constructed primarily by the MCC community.", "website": "https://noxcrew.com/mcc", "subreddit": "/r/MinecraftChampionship", "center": [876.5, 584.5], "path": [[873.5, 587.5], [879.5, 587.5], [879.5, 580.5], [873.5, 580.5], [873.5, 587.5]]}, {"id": "tx2sgn", "submitted_by": "Lavande-chan", "name": "Lavender", "description": "A little lavender from Lavande Community, a little and friendly community from France", "website": "", "subreddit": "", "center": [478.5, 1164.5], "path": [[479.5, 1156.5], [477.5, 1156.5], [476.5, 1171.5], [481.5, 1171.5], [481.5, 1156.5], [475.5, 1156.5], [475.5, 1171.5], [479.5, 1169.5], [477.5, 1158.5], [475.5, 1156.5], [481.5, 1156.5]]}, {"id": "tx2sd9", "submitted_by": "New_Size2585", "name": "KAP logo", "description": "Acronym for the group of 3 French streamers on twitch, El8Kun, ArthurRayYT and PoneeeyClub.", "website": "", "subreddit": "", "center": [1759.5, 1706.5], "path": [[1747.5, 1700.5], [1771.5, 1700.5], [1771.5, 1712.5], [1747.5, 1712.5], [1747.5, 1700.5]]}, {"id": "tx2sax", "submitted_by": "Loyso_", "name": "Small bear", "description": "A small bear representing Pinde, a french streamer", "website": "https://www.twitch.tv/pinde", "subreddit": "", "center": [1630.5, 37.5], "path": [[1632.5, 35.5], [1632.5, 41.5], [1626.5, 35.5], [1632.5, 35.5]]}, -{"id": "tx2s7o", "submitted_by": "SitpiRajendran", "name": "ESIA", "description": "French Engineering school", "website": "https://www.esiea.fr/", "subreddit": "", "center": [1678.5, 42.5], "path": [[1662.5, 36.5], [1694.5, 36.5], [1694.5, 47.5], [1662.5, 47.5], [1662.5, 36.5]]}, {"id": "tx2s2m", "submitted_by": "Gyc3", "name": "Egegge", "description": "Small community that praises Eggdog and eggs. Thanks to Green Lattice for protection", "website": "https://discord.com/invite/NVspkR4", "subreddit": "", "center": [1048.5, 446.5], "path": [[1046.5, 439.5], [1049.5, 439.5], [1052.5, 442.5], [1052.5, 452.5], [1044.5, 452.5], [1043.5, 442.5]]}, {"id": "tx2s1p", "submitted_by": "Alin_Alexandru", "name": "Second Romanian flag", "description": "The second Romanian flag which featured Br\u00e2ncu\u0219i's Endless Columnn, as well as Spider Man and Miles Morales. Was taken over by Polish streamers.", "website": "", "subreddit": "/r/Romania", "center": [1485.5, 568.5], "path": [[1449.5, 537.5], [1546.5, 537.5], [1546.5, 598.5], [1421.5, 599.5], [1425.5, 541.5]]}, {"id": "tx2rfe", "submitted_by": "Walnut-Simulacrum", "name": "r/Cricket Art", "description": "Art representing the sport of Cricket and it's community of fans on Reddit.", "website": "", "subreddit": "/r/Cricket", "center": [305.5, 290.5], "path": [[294.5, 282.5], [315.5, 282.5], [315.5, 297.5], [294.5, 297.5]]}, {"id": "tx2rek", "submitted_by": "NajmiCreative-719", "name": "Petronas Twin Towers", "description": "Malaysia's well known landmark and by record, the tallest twin towers in the world", "website": "https://en.wikipedia.org/wiki/Petronas_Towers", "subreddit": "/r/malaysia", "center": [358.5, 982.5], "path": [[351.5, 991.5], [351.5, 979.5], [352.5, 979.5], [352.5, 974.5], [353.5, 974.5], [353.5, 971.5], [354.5, 967.5], [354.5, 970.5], [354.5, 971.5], [355.5, 971.5], [355.5, 974.5], [356.5, 974.5], [356.5, 979.5], [357.5, 979.5], [357.5, 981.5], [360.5, 981.5], [360.5, 979.5], [361.5, 979.5], [361.5, 974.5], [362.5, 974.5], [362.5, 971.5], [363.5, 971.5], [363.5, 967.5], [363.5, 971.5], [364.5, 971.5], [364.5, 974.5], [365.5, 974.5], [365.5, 978.5], [366.5, 978.5], [366.5, 991.5], [360.5, 991.5], [360.5, 982.5], [357.5, 982.5], [357.5, 991.5]]}, -{"id": "tx2rac", "submitted_by": "Fit_Asparagus_2262", "name": "ESIEA", "description": "French Engineering University", "website": "https://www.esiea.fr/", "subreddit": "", "center": [1678.5, 41.5], "path": [[1662.5, 35.5], [1694.5, 35.5], [1694.5, 47.5], [1662.5, 47.5], [1662.5, 35.5]]}, {"id": "tx2r8f", "submitted_by": "Leetransform25", "name": "2.2 When?", "description": "A reference to the ongoing 5+ year wait for Geometry Dash's 2.2 update. Juniper, Funnygame, and Aeonair's icons are featured in the top right corner.", "website": "", "subreddit": "/r/geometrydashplace", "center": [1519.5, 1574.5], "path": [[1504.5, 1567.5], [1503.5, 1567.5], [1532.5, 1567.5], [1533.5, 1584.5], [1502.5, 1583.5], [1502.5, 1567.5], [1533.5, 1567.5], [1533.5, 1583.5]]}, {"id": "tx2r63", "submitted_by": "Loyso_", "name": "Coko's logo", "description": "French streamer cokoooooo's logo", "website": "https://www.twitch.tv/cokoooooo", "subreddit": "", "center": [1637.5, 44.5], "path": [[1633.5, 42.5], [1639.5, 42.5], [1639.5, 47.5], [1638.5, 47.5], [1633.5, 42.5]]}, {"id": "tx2qw6", "submitted_by": "AssassinsMeme", "name": "Organization of Free Nations", "description": "A faction of the Hearts of Iron IV Mod TNO (The New Order). An alliance led by the united states fighting for influence against the other factions of the setting.", "website": "", "subreddit": "/r/TNOmod", "center": [842.5, 169.5], "path": [[826.5, 165.5], [846.5, 165.5], [846.5, 156.5], [826.5, 156.5], [826.5, 139.5], [835.5, 155.5], [826.5, 157.5]]}, {"id": "tx2qqp", "submitted_by": "halcyondays-", "name": "Maracan\u00e3 stadium", "description": "Maracan\u00e3 stadium is a football stadium in Rio de Janeiro, Brazil. The image was created with assistance from r/fuckcars and features the flags of Brazil and Argentina. Other flags from South American countries were added organically and were kept in the final design.", "website": "https://www.estadiodomaracana.com.br", "subreddit": "/r/brasil", "center": [1126.5, 598.5], "path": [[1131.5, 579.5], [1138.5, 581.5], [1144.5, 589.5], [1144.5, 598.5], [1141.5, 601.5], [1136.5, 604.5], [1135.5, 605.5], [1137.5, 606.5], [1137.5, 619.5], [1115.5, 619.5], [1115.5, 605.5], [1110.5, 600.5], [1107.5, 597.5], [1108.5, 586.5], [1114.5, 581.5], [1123.5, 579.5]]}, {"id": "tx2qk7", "submitted_by": "SitpiRajendran", "name": "FC Barcelone", "description": "Barcelone Football Club", "website": "", "subreddit": "", "center": [1465.5, 1682.5], "path": [[1439.5, 1659.5], [1490.5, 1660.5], [1491.5, 1705.5], [1439.5, 1704.5], [1439.5, 1660.5]]}, -{"id": "tx2qdq", "submitted_by": "Adiman_", "name": "Escargot tout mimi", "description": "French are known world-wide to eat snails (escargot)", "website": "https://en.wikipedia.org/wiki/Escargot", "subreddit": "/r/rance", "center": [27.5, 1774.5], "path": [[11.5, 1761.5], [10.5, 1761.5], [10.5, 1762.5], [8.5, 1762.5], [8.5, 1766.5], [9.5, 1766.5], [9.5, 1770.5], [10.5, 1770.5], [10.5, 1772.5], [11.5, 1772.5], [11.5, 1774.5], [12.5, 1774.5], [12.5, 1775.5], [13.5, 1775.5], [13.5, 1776.5], [14.5, 1776.5], [14.5, 1779.5], [15.5, 1779.5], [15.5, 1780.5], [16.5, 1780.5], [16.5, 1781.5], [17.5, 1781.5], [17.5, 1782.5], [18.5, 1782.5], [18.5, 1783.5], [51.5, 1783.5], [51.5, 1782.5], [50.5, 1781.5], [49.5, 1780.5], [47.5, 1780.5], [47.5, 1779.5], [41.5, 1779.5], [41.5, 1778.5], [42.5, 1777.5], [41.5, 1776.5], [41.5, 1772.5], [40.5, 1771.5], [40.5, 1770.5], [39.5, 1769.5], [39.5, 1768.5], [37.5, 1766.5], [35.5, 1766.5], [35.5, 1765.5], [28.5, 1765.5], [28.5, 1766.5], [26.5, 1766.5], [23.5, 1769.5], [23.5, 1770.5], [22.5, 1772.5], [21.5, 1773.5], [21.5, 1777.5], [19.5, 1777.5], [19.5, 1773.5], [17.5, 1771.5], [18.5, 1770.5], [18.5, 1761.5], [16.5, 1761.5], [15.5, 1762.5], [15.5, 1765.5], [12.5, 1765.5], [12.5, 1762.5]]}, -{"id": "tx2qd0", "submitted_by": "oh-boy-its-bedtime", "name": "Cleveland Browns", "description": "The Cleveland Browns are a football team in the NFL based out of Cleveland, Ohio. The Browns are famous for being paid to suck at football>", "website": "https://www.clevelandbrowns.com/", "subreddit": "/r/clevelandbrowns", "center": [1030.5, 506.5], "path": [[1003.5, 510.5], [1056.5, 510.5], [1056.5, 502.5], [1003.5, 502.5], [1003.5, 510.5], [1003.5, 502.5]]}, {"id": "tx2qbu", "submitted_by": "Appropriate-Shake-93", "name": "Ariana Grande", "description": "The ariantors pay tribute to their favorite popstar", "website": "", "subreddit": "/r/ariheads", "center": [1989.5, 281.5], "path": [[1993.5, 281.5], [1985.5, 280.5], [1983.5, 277.5], [1980.5, 277.5], [1999.5, 286.5], [1998.5, 277.5], [1979.5, 277.5], [1981.5, 286.5], [1999.5, 286.5]]}, {"id": "tx2qas", "submitted_by": "master-tanuki", "name": "ESMA FRENCH 3D SCHOOL", "description": "This is the logo of the french ESMA's 3D animation and VFX school !", "website": "", "subreddit": "", "center": [1733.5, 255.5], "path": [[1727.5, 249.5], [1727.5, 260.5], [1738.5, 260.5], [1738.5, 249.5], [1727.5, 249.5], [1738.5, 249.5]]}, {"id": "tx2qaf", "submitted_by": "Formal_Biscotti_2027", "name": "Joel Embiid", "description": "Joel Embiid is a Cameroonian professional basketball player for the Philadelphia 76ers of the NBA. As of 2022, he is an NBA MVP frontrunner.", "website": "", "subreddit": "/r/sixers", "center": [1373.5, 1309.5], "path": [[1361.5, 1301.5], [1361.5, 1314.5], [1363.5, 1314.5], [1363.5, 1319.5], [1387.5, 1319.5], [1387.5, 1307.5], [1378.5, 1307.5], [1378.5, 1296.5], [1362.5, 1296.5], [1362.5, 1301.5], [1361.5, 1301.5]]}, -{"id": "tx2q9n", "submitted_by": "maincy_mer_wtb", "name": "Serial Experiments Lain / Wired Community", "description": "An image of Lain from the anime Serial Experiments Lain, still in progress when this image for Atlas was taken", "website": "", "subreddit": "/r/lain", "center": [1554.5, 1690.5], "path": [[1554.5, 1691.5], [1534.5, 1668.5], [1534.5, 1710.5], [1575.5, 1711.5], [1574.5, 1669.5], [1534.5, 1668.5]]}, {"id": "tx2q66", "submitted_by": "overtherainbowatch", "name": "Deutsche Bahn depatures info board", "description": "The Deutsche Bahn (DB, German railway service) uses these display panels toshow departures and delays. The DB is famous for their delays (cancellations too) in Germany. That's what the red spot on the panel is alluding to.", "website": "", "subreddit": "", "center": [309.5, 853.5], "path": [[301.5, 848.5], [317.5, 848.5], [317.5, 856.5], [310.5, 856.5], [310.5, 865.5], [308.5, 865.5], [308.5, 856.5], [301.5, 856.5], [301.5, 849.5]]}, {"id": "tx2pqb", "submitted_by": "UnforgettablyBiAWD", "name": "George Mason University", "description": "A university in Virginia's logo.", "website": "https://en.wikipedia.org/wiki/George_Mason_University", "subreddit": "/r/gmu", "center": [286.5, 1598.5], "path": [[281.5, 1595.5], [291.5, 1595.5], [291.5, 1600.5], [281.5, 1600.5]]}, {"id": "tx2ppe", "submitted_by": "pikachu5159", "name": "New York Rangers", "description": "The logo for the New York Rangers, one of the 32 teams in the National Hockey League. The HANK and 30 represent former Swedish goaltender Henrik Lundqvist. He played for the Rangers throughout his entire 15-year NHL Career, and got his iconic number 30 retired on January 28, 2022.", "website": "https://www.nhl.com/rangers", "subreddit": "/r/rangers", "center": [1423.5, 42.5], "path": [[1410.5, 35.5], [1442.5, 35.5], [1432.5, 44.5], [1432.5, 50.5], [1410.5, 50.5]]}, @@ -3831,7 +3578,7 @@ {"id": "tx2ox4", "submitted_by": "Chambior", "name": "Doki Doki Litterature Club", "description": "An Japanese-Style romance visual novel, which is actually an horror game.", "website": "https://ddlc.moe/", "subreddit": "/r/DDLC", "center": [1471.5, 782.5], "path": [[1460.5, 771.5], [1460.5, 789.5], [1486.5, 789.5], [1486.5, 780.5], [1472.5, 780.5], [1472.5, 771.5]]}, {"id": "tx2ovx", "submitted_by": "GodzillaETZ", "name": "Robotop", "description": "A Geometry Dash discord bot built by Colon.", "website": "https://robotop.xyz/", "subreddit": "/r/geometrydashplace", "center": [290.5, 1883.5], "path": [[284.5, 1877.5], [296.5, 1877.5], [296.5, 1889.5], [284.5, 1889.5]]}, {"id": "tx2osr", "submitted_by": "MewtenAlv", "name": "Cherry chupada / CherryToragao", "description": "CherryToragao is a Mexican indie vtuber. The pixel art is her plush form know as 'Cherry chupada' or 'Cherry palo'. She streams on twitch", "website": "https://www.twitch.tv/cherrytoragao", "subreddit": "", "center": [454.5, 1497.5], "path": [[450.5, 1488.5], [457.5, 1488.5], [457.5, 1493.5], [457.5, 1493.5], [464.5, 1493.5], [464.5, 1496.5], [457.5, 1496.5], [457.5, 1508.5], [450.5, 1508.5], [450.5, 1496.5], [443.5, 1496.5], [443.5, 1493.5], [450.5, 1493.5]]}, -{"id": "tx2oqb", "submitted_by": "Nadie_nobody_", "name": "Anne Boonchuy", "description": "Anne is the main protagonist from the tv series 'amphibia'. In this art she's using the calamity box powers.", "website": "[https://amphibia.fandom.com/wiki/Amphibia_(series)](https://amphibia.fandom.com/wiki/Amphibia_(series))", "subreddit": "/r/amphibia", "center": [471.5, 918.5], "path": [[471.5, 907.5], [471.5, 906.5], [469.5, 906.5], [468.5, 907.5], [467.5, 908.5], [468.5, 909.5], [469.5, 910.5], [467.5, 911.5], [466.5, 910.5], [465.5, 909.5], [464.5, 908.5], [463.5, 907.5], [464.5, 906.5], [463.5, 910.5], [462.5, 911.5], [461.5, 912.5], [460.5, 913.5], [460.5, 914.5], [461.5, 915.5], [462.5, 916.5], [462.5, 917.5], [461.5, 918.5], [460.5, 919.5], [460.5, 920.5], [460.5, 921.5], [460.5, 922.5], [461.5, 923.5], [462.5, 924.5], [463.5, 925.5], [464.5, 925.5], [465.5, 926.5], [466.5, 927.5], [467.5, 928.5], [468.5, 928.5], [469.5, 928.5], [474.5, 928.5], [475.5, 927.5], [476.5, 926.5], [477.5, 925.5], [478.5, 925.5], [483.5, 920.5], [484.5, 920.5], [485.5, 919.5], [487.5, 919.5], [487.5, 916.5], [485.5, 915.5], [484.5, 915.5], [484.5, 918.5], [483.5, 918.5], [481.5, 920.5], [480.5, 919.5], [480.5, 918.5], [481.5, 917.5], [481.5, 916.5], [480.5, 917.5], [479.5, 916.5], [480.5, 915.5], [478.5, 915.5], [478.5, 913.5], [479.5, 913.5], [478.5, 912.5], [477.5, 911.5], [477.5, 909.5], [478.5, 908.5], [479.5, 907.5], [479.5, 906.5], [478.5, 907.5], [477.5, 908.5], [476.5, 907.5], [475.5, 907.5], [475.5, 907.5], [473.5, 908.5], [472.5, 909.5]]}, +{"id": "tx2oqb", "submitted_by": "Nadie_nobody_", "name": "Anne Boonchuy", "description": "Anne is the main protagonist from the tv series 'amphibia'. In this art she's using the calamity box powers.", "website": "https://amphibia.fandom.com/wiki/Amphibia_(series)", "subreddit": "/r/amphibia", "center": [471.5, 918.5], "path": [[471.5, 907.5], [471.5, 906.5], [469.5, 906.5], [468.5, 907.5], [467.5, 908.5], [468.5, 909.5], [469.5, 910.5], [467.5, 911.5], [466.5, 910.5], [465.5, 909.5], [464.5, 908.5], [463.5, 907.5], [464.5, 906.5], [463.5, 910.5], [462.5, 911.5], [461.5, 912.5], [460.5, 913.5], [460.5, 914.5], [461.5, 915.5], [462.5, 916.5], [462.5, 917.5], [461.5, 918.5], [460.5, 919.5], [460.5, 920.5], [460.5, 921.5], [460.5, 922.5], [461.5, 923.5], [462.5, 924.5], [463.5, 925.5], [464.5, 925.5], [465.5, 926.5], [466.5, 927.5], [467.5, 928.5], [468.5, 928.5], [469.5, 928.5], [474.5, 928.5], [475.5, 927.5], [476.5, 926.5], [477.5, 925.5], [478.5, 925.5], [483.5, 920.5], [484.5, 920.5], [485.5, 919.5], [487.5, 919.5], [487.5, 916.5], [485.5, 915.5], [484.5, 915.5], [484.5, 918.5], [483.5, 918.5], [481.5, 920.5], [480.5, 919.5], [480.5, 918.5], [481.5, 917.5], [481.5, 916.5], [480.5, 917.5], [479.5, 916.5], [480.5, 915.5], [478.5, 915.5], [478.5, 913.5], [479.5, 913.5], [478.5, 912.5], [477.5, 911.5], [477.5, 909.5], [478.5, 908.5], [479.5, 907.5], [479.5, 906.5], [478.5, 907.5], [477.5, 908.5], [476.5, 907.5], [475.5, 907.5], [475.5, 907.5], [473.5, 908.5], [472.5, 909.5]]}, {"id": "tx2omq", "submitted_by": "SitpiRajendran", "name": "Sri Lankan Flag", "description": "Flag of the country of Sri Lanka, a bit destroyed", "website": "", "subreddit": "", "center": [1963.5, 125.5], "path": [[1953.5, 119.5], [1973.5, 119.5], [1973.5, 130.5], [1953.5, 130.5], [1953.5, 119.5]]}, {"id": "tx2omk", "submitted_by": "Walnut-Simulacrum", "name": "MKBHD Logo", "description": "The Logo of tech YouTuber Marques Brownlee.", "website": "https://www.youtube.com/c/mkbhd/", "subreddit": "/r/mkbhd", "center": [113.5, 757.5], "path": [[105.5, 749.5], [121.5, 749.5], [121.5, 765.5], [105.5, 765.5]]}, {"id": "tx2okl", "submitted_by": "AQUASINE", "name": "GlumboCoin", "description": "The only crypto you can eat! GlumboCoin is a distributed inside joke created by GlumboCorp. This delicious coin uses the Jeremy Renner app to validate transactions in the 9D RennCrypt blockchain. It's likely you might run into them in the Tenor gif search. YOU CAN EAT GLUMBOCOIN!", "website": "https://www.youtube.com/c/GlumboCorpTMKidsChoiceAwards", "subreddit": "/r/glumbocoin", "center": [146.5, 1094.5], "path": [[137.5, 1085.5], [154.5, 1085.5], [154.5, 1102.5], [137.5, 1102.5], [137.5, 1085.5]]}, @@ -3839,52 +3586,41 @@ {"id": "tx2o9p", "submitted_by": "SovietDinozor", "name": "TG1", "description": "Terminale G\u00e9n\u00e9rale 1. The signature of a class from the French high school lyc\u00e9e Richelieu by Mouton Illuminati", "website": "", "subreddit": "", "center": [1057.5, 1887.5], "path": [[1047.5, 1883.5], [1047.5, 1890.5], [1066.5, 1890.5], [1066.5, 1883.5]]}, {"id": "tx2o7m", "submitted_by": "Force_Weak", "name": "7TV", "description": "A third party Twitch Chat Emote browser extension that allows you to see emotes, and Doctor Disrespect, with the initials DOC.", "website": "https://7tv.app/", "subreddit": "/r/7tv", "center": [681.5, 949.5], "path": [[667.5, 943.5], [667.5, 956.5], [694.5, 956.5], [695.5, 943.5]]}, {"id": "tx2nz5", "submitted_by": "SitpiRajendran", "name": "Concordia Stingers", "description": "Concordia University of Montreal, in Quebec, Canada", "website": "https://www.concordia.ca/", "subreddit": "/r/Concordia", "center": [1120.5, 949.5], "path": [[1107.5, 937.5], [1133.5, 937.5], [1133.5, 962.5], [1108.5, 961.5], [1107.5, 937.5]]}, -{"id": "tx2nyo", "submitted_by": "classaceairspace", "name": "Trans flag cat stack", "description": "Pixel art of a popular trans image, cats stacked on top of each other, each with a different colour to make up the trans flag.", "website": "https://64.media.tumblr.com/86b3933efed99c108458a6c049df56e7/tumblr_puup1u4IEm1xusqz6o1_1280.jpg", "subreddit": "/r/transplace", "center": [0.5, 0.5], "path": []}, {"id": "tx2nvy", "submitted_by": "Formal_Biscotti_2027", "name": "Philadelphia Eagles", "description": "A NFL team located in Philadelphia, Pennsylvania. Winners of Super Bowl LII.", "website": "", "subreddit": "/r/eagles", "center": [72.5, 595.5], "path": [[65.5, 598.5], [65.5, 590.5], [78.5, 590.5], [79.5, 605.5], [78.5, 603.5], [76.5, 601.5], [74.5, 600.5], [72.5, 599.5], [69.5, 598.5], [65.5, 598.5]]}, {"id": "tx2nbu", "submitted_by": "counting_to_15", "name": "Punz", "description": "This figure depicts the content creator Punz. He is mainly known for being on the Minecraft server Dream SMP. This figure resembles his Minecraft skin on top of a skateboard.", "website": "", "subreddit": "", "center": [1144.5, 1092.5], "path": [[1132.5, 1113.5], [1132.5, 1071.5], [1154.5, 1071.5], [1155.5, 1071.5], [1155.5, 1113.5], [1132.5, 1113.5]]}, -{"id": "tx2nb0", "submitted_by": "Ruminiuss", "name": "N Deluxe Community", "description": "The flag of the N Deluxe discord community, which represents the 8 regions and the main color, the group was originated by the N Deluxe channel and over time has taken freedom of action and autonomy as a community.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "tx2n8v", "submitted_by": "demott13", "name": "Snail", "description": "The snails, a french meal build after a request of Joyca, a french Youtuber.", "website": "https://en.wikipedia.org/wiki/Escargot", "subreddit": "", "center": [30.5, 1772.5], "path": [[5.5, 1761.5], [56.5, 1762.5], [56.5, 1783.5], [6.5, 1783.5], [5.5, 1771.5]]}, +{"id": "tx2n8v", "submitted_by": "demott13", "name": "Escargot", "description": "Escargot, French for 'snail', is a specialty French meal cooked with garlic butter sauce. Built after a request from Joyca, a French YouTuber.", "website": "https://en.wikipedia.org/wiki/Escargot", "subreddit": "/r/placefrance", "center": [30.5, 1772.5], "path": [[11.5, 1761.5], [10.5, 1761.5], [10.5, 1762.5], [8.5, 1762.5], [8.5, 1766.5], [9.5, 1766.5], [9.5, 1770.5], [10.5, 1770.5], [10.5, 1772.5], [11.5, 1772.5], [11.5, 1774.5], [12.5, 1774.5], [12.5, 1775.5], [13.5, 1775.5], [13.5, 1776.5], [14.5, 1776.5], [14.5, 1779.5], [15.5, 1779.5], [15.5, 1780.5], [16.5, 1780.5], [16.5, 1781.5], [17.5, 1781.5], [17.5, 1782.5], [18.5, 1782.5], [18.5, 1783.5], [51.5, 1783.5], [51.5, 1782.5], [50.5, 1781.5], [49.5, 1780.5], [47.5, 1780.5], [47.5, 1779.5], [41.5, 1779.5], [41.5, 1778.5], [42.5, 1777.5], [41.5, 1776.5], [41.5, 1772.5], [40.5, 1771.5], [40.5, 1770.5], [39.5, 1769.5], [39.5, 1768.5], [37.5, 1766.5], [35.5, 1766.5], [35.5, 1765.5], [28.5, 1765.5], [28.5, 1766.5], [26.5, 1766.5], [23.5, 1769.5], [23.5, 1770.5], [22.5, 1772.5], [21.5, 1773.5], [21.5, 1777.5], [19.5, 1777.5], [19.5, 1773.5], [17.5, 1771.5], [18.5, 1770.5], [18.5, 1761.5], [16.5, 1761.5], [15.5, 1762.5], [15.5, 1765.5], [12.5, 1765.5], [12.5, 1762.5]]}, {"id": "tx2n3w", "submitted_by": "Bolvane", "name": "Imperial Madeon", "description": "Madeon's name written in the Imperial script he created for his 2015 album Adventure", "website": "", "subreddit": "/r/madeon", "center": [1821.5, 94.5], "path": [[1801.5, 91.5], [1841.5, 91.5], [1841.5, 97.5], [1801.5, 97.5], [1801.5, 91.5]]}, -{"id": "tx2mz8", "submitted_by": "UnforgettablyBiAWD", "name": "Meta Knight", "description": "Meta Knight, from the Kirby franchise.", "website": "https://en.wikipedia.org/wiki/Meta_Knight", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx2myt", "submitted_by": "danthemango", "name": "Nordic MrMouton Sheep", "description": "Sheep symbol created partly to honor the sheep herding tradition in Scandinavia and partly in honor of MrMouton, gaming streamer and friend to the Destiny community.n", "website": "https://www.twitch.tv/mrmouton", "subreddit": "/r/MrMouton", "center": [370.5, 72.5], "path": [[365.5, 67.5], [371.5, 67.5], [372.5, 68.5], [371.5, 69.5], [371.5, 70.5], [372.5, 70.5], [373.5, 69.5], [374.5, 69.5], [375.5, 68.5], [376.5, 69.5], [376.5, 74.5], [375.5, 76.5], [368.5, 76.5], [367.5, 73.5], [365.5, 73.5], [365.5, 69.5], [364.5, 68.5]]}, {"id": "tx2mr1", "submitted_by": "I-Like-Hydrangeas", "name": "Ainz Ooal Gown", "description": "Ainz Ooal Gown, the main protagonist (or antagonist) from the anime Overlord.", "website": "https://overlord-anime.com/", "subreddit": "/r/overlord", "center": [1121.5, 531.5], "path": [[1113.5, 537.5], [1129.5, 537.5], [1129.5, 525.5], [1112.5, 525.5], [1112.5, 537.5], [1113.5, 537.5]]}, {"id": "tx2moy", "submitted_by": "Adiman_", "name": "CUL", "description": "the french word for ass.n(Artist unknown)", "website": "", "subreddit": "", "center": [1275.5, 669.5], "path": [[1261.5, 665.5], [1261.5, 665.5], [1289.5, 665.5], [1289.5, 672.5], [1261.5, 672.5], [1261.5, 665.5]]}, -{"id": "tx2maz", "submitted_by": "GodzillaETZ", "name": "Demon Face", "description": "Pixel art of the Hardest difficulty's icon in Geometry Dash,the demon", "website": "", "subreddit": "/r/geometrydashplace", "center": [0.5, 0.5], "path": []}, -{"id": "tx2m9v", "submitted_by": "CanIHaveAJoe_YT", "name": "/r/place 2", "description": "The reboot of the Reddit social experiment r/place began on April 1, 2022, and lasted for four days. As of Sunday night, April 3, nearly 72 million tiles were placed by over 6 million users, at a pace of more than 2.5 million tiles placed per hour; it was a sixfold increase in the number of users on Reddit between the two experiments, and a 4.5-fold increase in tiles being placed. Individual subreddits immediately began to coordinate pixel art, and large communities were formed in attempts to create, defend, and destroy territory. Different communities collaborated and formed alliances through Discord as well as subreddits. On both the second and third days, Reddit doubled the canvas size and expanded the colour palette.", "website": "[reddit.com](https://reddit.com)", "subreddit": "/r/place", "center": [0.5, 0.5], "path": []}, {"id": "tx2lxi", "submitted_by": "Eclipsed_Luna", "name": "Genderfluid miniflag", "description": "A mini genderfluid pride flag.nGenderfluid refers to someone whose gender identity changes over time. A genderfluid individual can identify as any gender, or combination of genders at any given time. Their gender can change at random or it may vary in response to different circumstances. One's gender can change over the course of hours, days, weeks, months, or years. For some individuals their gender changes on a somewhat consistent 'schedule', for others their gender changes at random times. Some genderfluid individuals can be fluid between all genders, or a large amount of genders. Other genderfluid individuals are fluid between a small handful of genders.", "website": "https://lgbta.miraheze.org/wiki/Genderfluid", "subreddit": "/r/placepride", "center": [453.5, 568.5], "path": [[448.5, 565.5], [457.5, 565.5], [457.5, 571.5], [448.5, 571.5], [448.5, 565.5]]}, {"id": "tx2lk7", "submitted_by": "Walnut-Simulacrum", "name": "Crewmates Hugging", "description": "Two characters from 2018 videogame Among Us sharing a hug. It's cute.", "website": "", "subreddit": "", "center": [647.5, 1556.5], "path": [[642.5, 1553.5], [651.5, 1553.5], [651.5, 1559.5], [642.5, 1559.5]]}, {"id": "tx2lk3", "submitted_by": "Prior_Gate_9909", "name": "The Calgary Flames", "description": "The Calgary Flames are a professional hockey team that plays for Calgary, Canada. The Flames are apart of the NHL. Also pictured is the Stanley Cup, which the Flames won in 1989.", "website": "https://www.nhl.com/flames", "subreddit": "/r/CalgaryFlames", "center": [932.5, 496.5], "path": [[913.5, 509.5], [913.5, 482.5], [951.5, 482.5], [951.5, 509.5]]}, {"id": "tx2laz", "submitted_by": "azeex_gaming", "name": "Totoro", "description": "C'est dans le film Mon voisin Totoro qu'il appara\u00eet comme \u00e9tant un esprit l\u00e9gendaire de la for\u00eat ressemblant \u00e0 un gros ours, sorte de croisement entre un chat et un panda.", "website": "https://fr.wikipedia.org/wiki/Totoro_(personnage)", "subreddit": "", "center": [1190.5, 1588.5], "path": [[1158.5, 1605.5], [1161.5, 1597.5], [1167.5, 1590.5], [1158.5, 1586.5], [1167.5, 1589.5], [1168.5, 1584.5], [1159.5, 1582.5], [1168.5, 1583.5], [1169.5, 1580.5], [1159.5, 1575.5], [1169.5, 1579.5], [1176.5, 1573.5], [1174.5, 1562.5], [1174.5, 1558.5], [1178.5, 1551.5], [1180.5, 1556.5], [1182.5, 1561.5], [1182.5, 1566.5], [1180.5, 1572.5], [1185.5, 1571.5], [1182.5, 1568.5], [1186.5, 1565.5], [1185.5, 1556.5], [1187.5, 1561.5], [1189.5, 1562.5], [1190.5, 1557.5], [1192.5, 1564.5], [1194.5, 1570.5], [1193.5, 1572.5], [1197.5, 1572.5], [1197.5, 1568.5], [1195.5, 1566.5], [1196.5, 1557.5], [1199.5, 1553.5], [1200.5, 1552.5], [1204.5, 1559.5], [1204.5, 1564.5], [1203.5, 1567.5], [1201.5, 1571.5], [1208.5, 1579.5], [1221.5, 1574.5], [1210.5, 1580.5], [1211.5, 1584.5], [1222.5, 1579.5], [1212.5, 1585.5], [1212.5, 1588.5], [1222.5, 1584.5], [1212.5, 1589.5], [1212.5, 1592.5], [1220.5, 1600.5], [1222.5, 1605.5], [1222.5, 1608.5], [1158.5, 1608.5], [1159.5, 1600.5], [1160.5, 1598.5], [1159.5, 1599.5], [1159.5, 1600.5]]}, {"id": "tx2kx9", "submitted_by": "HutFTW", "name": "The First Gold Medal", "description": "This is Hidilyn Diaz, a Filipino Olympian. She competed on the 2020 Summer Olympics under the weightlifting category. She is the first Filipino to gain a gold medal for the Philippines. To pay tribute to her, the Philippine subreddit maid a pixel art about her pulling a jeepney to depict her strength that won the Philippines their first gold medal.", "website": "", "subreddit": "/r/Philippines", "center": [368.5, 1654.5], "path": [[352.5, 1636.5], [383.5, 1641.5], [385.5, 1673.5], [353.5, 1666.5], [353.5, 1663.5]]}, {"id": "tx2kna", "submitted_by": "dannnnasp", "name": "Leyendas Legendarias", "description": "Leyendas Legendarias, un podcast de comedia donde cada semana se exploran casos de crimen real, fen\u00f3menos paranormales o eventos hist\u00f3ricos tan peculiares, notorios y fant\u00e1sticos que se ganaron el t\u00edtulo de Leyendas Legendarias.nCulto no culto.", "website": "https://www.youtube.com/channel/UCugC9R-gE-6mgUgIqNy387Q", "subreddit": "", "center": [693.5, 1165.5], "path": [[685.5, 1158.5], [700.5, 1158.5], [700.5, 1172.5], [685.5, 1172.5]]}, -{"id": "tx2kkz", "submitted_by": "bisc0tte_", "name": "JoeHillsTSD", "description": "Joe Hills is an American YouTuber known for his Minecraft videos, though he can also be found reciting poetry in the place of midroll ads. These Minecraft videos are primarily on the Hermitcraft server, having joined midway through Season One and continuing to play up until the present, Hermitcraft Season Seven. Joe also writes music, mainly self-referential or Minecraft-themed parodies, that his brother, Sean Hills, performs.", "website": "https://youtube.fandom.com/wiki/JoeHillsTSD", "subreddit": "", "center": [865.5, 595.5], "path": [[861.5, 592.5], [868.5, 592.5], [868.5, 598.5], [861.5, 598.5], [861.5, 592.5]]}, +{"id": "tx2kkz", "submitted_by": "bisc0tte_", "name": "JoeHillsTSD", "description": "Joe Hills is an American YouTuber known for his Minecraft videos, though he can also be found reciting poetry in the place of mid-roll ads. These Minecraft videos are primarily on the Hermitcraft server, having joined midway through Season 1 and continuing to play up until the present, Hermitcraft Season 7. Joe also writes music, mainly self-referential or Minecraft-themed parodies, that his brother, Sean Hills, performs.", "website": "https://youtube.fandom.com/wiki/JoeHillsTSD", "subreddit": "/r/hermitcraft", "center": [865.5, 595.5], "path": [[861.5, 592.5], [868.5, 592.5], [868.5, 598.5], [861.5, 598.5], [861.5, 592.5]]}, {"id": "tx2kb3", "submitted_by": "Adrilander2003", "name": "Cyberia", "description": "Cafe & Club that appears in 90's anime Serial Experiments Lain", "website": "https://www.reddit.com/r/Lain/", "subreddit": "/r/Lain", "center": [1501.5, 103.5], "path": [[1481.5, 102.5], [1481.5, 105.5], [1489.5, 111.5], [1496.5, 111.5], [1498.5, 112.5], [1505.5, 112.5], [1505.5, 111.5], [1510.5, 111.5], [1510.5, 110.5], [1514.5, 110.5], [1514.5, 109.5], [1518.5, 109.5], [1518.5, 108.5], [1519.5, 108.5], [1519.5, 107.5], [1520.5, 107.5], [1520.5, 106.5], [1521.5, 106.5], [1521.5, 104.5], [1522.5, 104.5], [1522.5, 103.5], [1521.5, 102.5], [1520.5, 102.5], [1520.5, 99.5], [1520.5, 98.5], [1519.5, 98.5], [1519.5, 97.5], [1513.5, 97.5], [1513.5, 99.5], [1513.5, 98.5], [1509.5, 98.5], [1509.5, 96.5], [1493.5, 95.5], [1491.5, 95.5], [1488.5, 96.5], [1487.5, 96.5], [1486.5, 97.5], [1484.5, 97.5], [1481.5, 101.5]]}, {"id": "tx2k77", "submitted_by": "1nsae", "name": "foolishWallshark", "description": "one of the emotes for twitch streamer Foolish_Gamers.", "website": "https://www.twitch.tv/foolish_gamers", "subreddit": "", "center": [1981.5, 751.5], "path": [[1963.5, 732.5], [1999.5, 732.5], [1999.5, 769.5], [1963.5, 769.5]]}, -{"id": "tx2k5q", "submitted_by": "Force_Weak", "name": "ppSmoke", "description": "A third party Twitch chat emote of pepe, but small (pp) and smoking. Made by the r/pokelawls subreddit.", "website": "https://twitch.tv/pokelawls", "subreddit": "/r/pokelawls", "center": [0.5, 0.5], "path": []}, {"id": "tx2k44", "submitted_by": "The_Nieno", "name": "OFN Torch", "description": "Symbol of the American led faction; The Organisation of Free Nations from the Heath of Iron 4 mod The New Order", "website": "", "subreddit": "/r/TNOmod", "center": [839.5, 167.5], "path": [[825.5, 156.5], [825.5, 165.5], [846.5, 166.5], [846.5, 157.5], [826.5, 156.5], [826.5, 141.5], [835.5, 156.5], [826.5, 141.5], [835.5, 156.5]]}, {"id": "tx2jw4", "submitted_by": "hagamablabla", "name": "Organization of Free Nations", "description": "A defensive alliance similar to NATO from the alternate history mod The New Order: Last Days of Europe", "website": "https://steamcommunity.com/sharedfiles/filedetails/?id=2438003901", "subreddit": "/r/TNOmod", "center": [834.5, 157.5], "path": [[826.5, 140.5], [826.5, 165.5], [846.5, 165.5], [845.5, 156.5], [835.5, 156.5], [832.5, 147.5]]}, {"id": "tx2jlg", "submitted_by": "-_-mello", "name": "Normo", "description": "A 8x8 monochromatic god created by a team of 5 users.", "website": "", "subreddit": "", "center": [994.5, 563.5], "path": [[990.5, 566.5], [990.5, 559.5], [997.5, 559.5], [997.5, 566.5]]}, {"id": "tx2jik", "submitted_by": "staindk", "name": "Greater than One Discord server", "description": "A small friends and university student group Discord. Started in Cape Town, South Africa.", "website": "", "subreddit": "", "center": [1733.5, 584.5], "path": [[1728.5, 579.5], [1737.5, 579.5], [1737.5, 588.5], [1728.5, 588.5]]}, {"id": "tx2j8s", "submitted_by": "PageIA", "name": "Streamer collaboration", "description": "A collaboration between several streamers and friends, adding symbols for their specific communities. Streamers include Foolish_Gamers, TinaKitten, KarlJacobs, Punz, Sapnap, Nihachu, Michael McChill, 5uppp, Tubbo, sylveey, corpse husband, Aipha and more", "website": "https://www.twitch.tv/foolish_gamers", "subreddit": "/r/FoolishGamers", "center": [1215.5, 1024.5], "path": [[1160.5, 927.5], [1283.5, 926.5], [1281.5, 1000.5], [1283.5, 1112.5], [1133.5, 1110.5], [1128.5, 1040.5], [1160.5, 1040.5]]}, -{"id": "tx2j3g", "submitted_by": "chabs72", "name": "ESIEA", "description": "It's a French engineering school", "website": "https://www.esiea.fr/", "subreddit": "", "center": [1679.5, 42.5], "path": [[1662.5, 35.5], [1662.5, 48.5], [1695.5, 48.5], [1695.5, 35.5], [1662.5, 35.5]]}, {"id": "tx2j09", "submitted_by": "thespichopat", "name": "D4DJ Logo", "description": "The logo of a mobile rhythm game themed around DJ culture", "website": "https://en.d4dj-pj.com/", "subreddit": "/r/d4dj", "center": [1534.5, 1753.5], "path": [[1529.5, 1748.5], [1526.5, 1753.5], [1528.5, 1761.5], [1539.5, 1761.5], [1542.5, 1756.5], [1541.5, 1745.5], [1531.5, 1745.5], [1527.5, 1749.5]]}, {"id": "tx2iwk", "submitted_by": "Stuart98", "name": "The Monado", "description": "A sword from Xenoblade Chronicles with the ability to reshape the world. The symbol in the center of it changes based on the power being used.", "website": "https://reddit.com/r/Xenoblade_Chronicles", "subreddit": "/r/Xenoblade_Chronicles", "center": [1179.5, 711.5], "path": [[1179.5, 680.5], [1178.5, 680.5], [1178.5, 679.5], [1177.5, 679.5], [1177.5, 678.5], [1175.5, 678.5], [1175.5, 679.5], [1174.5, 679.5], [1174.5, 680.5], [1172.5, 680.5], [1172.5, 694.5], [1172.5, 695.5], [1171.5, 695.5], [1171.5, 697.5], [1172.5, 697.5], [1172.5, 700.5], [1171.5, 700.5], [1171.5, 704.5], [1172.5, 704.5], [1172.5, 706.5], [1173.5, 706.5], [1173.5, 708.5], [1174.5, 708.5], [1174.5, 714.5], [1175.5, 714.5], [1175.5, 742.5], [1176.5, 742.5], [1176.5, 743.5], [1179.5, 743.5], [1179.5, 741.5], [1180.5, 741.5], [1180.5, 740.5], [1181.5, 740.5], [1181.5, 739.5], [1183.5, 739.5], [1184.5, 739.5], [1184.5, 708.5], [1184.5, 707.5], [1185.5, 707.5], [1185.5, 706.5], [1186.5, 706.5], [1186.5, 705.5], [1187.5, 705.5], [1187.5, 697.5], [1187.5, 695.5], [1186.5, 695.5], [1185.5, 695.5], [1185.5, 694.5], [1184.5, 694.5], [1184.5, 693.5], [1183.5, 693.5], [1183.5, 692.5], [1183.5, 693.5], [1182.5, 693.5], [1182.5, 695.5], [1182.5, 694.5], [1181.5, 694.5], [1180.5, 694.5], [1179.5, 694.5], [1178.5, 694.5], [1178.5, 693.5], [1177.5, 693.5], [1177.5, 691.5], [1178.5, 691.5], [1177.5, 691.5], [1177.5, 684.5], [1178.5, 684.5], [1178.5, 683.5], [1178.5, 682.5], [1179.5, 682.5], [1179.5, 680.5]]}, {"id": "tx2iv2", "submitted_by": "K-loge", "name": "AgenteMaxo", "description": "Emoticon maxoL, from streamer and role-playing king AgenteMaxo", "website": "https://www.twitch.tv/agentemaxo", "subreddit": "/r/eyMaxo", "center": [1875.5, 451.5], "path": [[1867.5, 444.5], [1882.5, 444.5], [1882.5, 457.5], [1867.5, 457.5]]}, {"id": "tx2it3", "submitted_by": "Walnut-Simulacrum", "name": "Minccino", "description": "A species of Pokemon from the Pokemon franchise dressed in a a suit and tie.", "website": "", "subreddit": "/r/Pokemon", "center": [632.5, 1554.5], "path": [[613.5, 1544.5], [636.5, 1544.5], [636.5, 1529.5], [643.5, 1529.5], [643.5, 1536.5], [647.5, 1540.5], [650.5, 1540.5], [650.5, 1545.5], [642.5, 1554.5], [643.5, 1568.5], [640.5, 1569.5], [639.5, 1574.5], [623.5, 1574.5], [623.5, 1568.5], [620.5, 1564.5], [622.5, 1562.5], [618.5, 1555.5], [613.5, 1555.5]]}, {"id": "tx2ira", "submitted_by": "AlwaysMakingBadPuns", "name": "The Crossed Irons of West Ham United", "description": "The crossed hammers (or 'Irons') are a symbol of English football club West Ham United, as they are nicknamed 'The Hammers' and 'The Irons.'nThe display here is blue hammers against a claret background as those are the main kit colours of West Ham United.", "website": "", "subreddit": "/r/Hammers", "center": [1534.5, 41.5], "path": [[1528.5, 35.5], [1540.5, 35.5], [1540.5, 46.5], [1528.5, 46.5]]}, -{"id": "tx2iqq", "submitted_by": "Prior_Gate_9909", "name": "United Kingdom Flag", "description": "A smaller flag of the United Kingdom.", "website": "uk.com", "subreddit": "/r/UnitedKingdom", "center": [440.5, 1104.5], "path": [[433.5, 1117.5], [447.5, 1117.5], [447.5, 1091.5], [433.5, 1091.5]]}, +{"id": "tx2iqq", "submitted_by": "Prior_Gate_9909", "name": "United Kingdom Flag", "description": "A smaller flag of the United Kingdom.", "website": "https://uk.com", "subreddit": "/r/UnitedKingdom", "center": [440.5, 1104.5], "path": [[433.5, 1117.5], [447.5, 1117.5], [447.5, 1091.5], [433.5, 1091.5]]}, {"id": "tx2ipj", "submitted_by": "CoderCharmander", "name": "Vuk", "description": "Vuk is the protagonist of the book with the same title, written by Istv\u00e1n Fekete, a Hungarian author known for his novels about animals. This pixel art depicts Vuk in the cartoon adaptation.", "website": "", "subreddit": "/r/hungary", "center": [1361.5, 263.5], "path": [[1353.5, 278.5], [1353.5, 276.5], [1344.5, 267.5], [1344.5, 264.5], [1345.5, 264.5], [1345.5, 262.5], [1343.5, 260.5], [1343.5, 254.5], [1349.5, 246.5], [1353.5, 248.5], [1353.5, 253.5], [1355.5, 253.5], [1355.5, 252.5], [1357.5, 252.5], [1359.5, 253.5], [1360.5, 252.5], [1366.5, 252.5], [1367.5, 253.5], [1370.5, 253.5], [1373.5, 256.5], [1380.5, 251.5], [1381.5, 256.5], [1381.5, 261.5], [1376.5, 272.5], [1373.5, 272.5], [1371.5, 274.5], [1371.5, 277.5], [1372.5, 278.5]]}, {"id": "tx2inv", "submitted_by": "LvcaJreddit", "name": "talia", "description": "", "website": "", "subreddit": "", "center": [835.5, 337.5], "path": [[823.5, 335.5], [824.5, 333.5], [843.5, 332.5], [841.5, 336.5], [841.5, 344.5], [837.5, 344.5], [829.5, 339.5], [823.5, 334.5]]}, {"id": "tx2ihc", "submitted_by": "Gorgumbus", "name": "Murasame", "description": "Character from Yuzusoft's Senren Banka", "website": "", "subreddit": "", "center": [1429.5, 500.5], "path": [[1426.5, 492.5], [1432.5, 492.5], [1433.5, 508.5], [1426.5, 509.5], [1426.5, 509.5]]}, {"id": "tx2icd", "submitted_by": "malomo42", "name": "Colas Bim", "description": "Colas Bim is a french youtuber/streamer. this drawing is the kind of personage he usually use in his video.nColas Bim(Grasset) is the brother of l\u00e9o Grasset.", "website": "https://www.youtube.com/channel/UCBK2DclO34h6BDqqrh-drPw", "subreddit": "", "center": [1436.5, 733.5], "path": [[1432.5, 729.5], [1439.5, 729.5], [1441.5, 733.5], [1440.5, 736.5], [1436.5, 739.5], [1431.5, 734.5], [1432.5, 730.5]]}, {"id": "tx2i3c", "submitted_by": "hagamablabla", "name": "After the End", "description": "A mod for Crusader Kings 2, taking place in a medieval North and Central America.", "website": "https://steamcommunity.com/sharedfiles/filedetails/?id=1341828311", "subreddit": "/r/AfterTheEndFanFork", "center": [546.5, 967.5], "path": [[541.5, 961.5], [550.5, 961.5], [550.5, 973.5], [541.5, 973.5]]}, {"id": "tx2i2h", "submitted_by": "Belyamatokiy", "name": "Suur Toll remains", "description": "Remaining pixels of Suur T\u00f5ll art that was not supported enough and got overdrawn", "website": "https://www.reddit.com/r/Eesti/comments/tvhi1v/joonistame_suure_t%C3%B5lli_rplaces_vajame_k%C3%B5igi_abi/", "subreddit": "/r/Eesti", "center": [445.5, 1346.5], "path": [[442.5, 1340.5], [442.5, 1351.5], [448.5, 1351.5], [448.5, 1340.5]]}, -{"id": "tx2i05", "submitted_by": "Pillevinken", "name": "Me\u00e4nmaa heart", "description": "Me\u00e4nmaa (Me\u00e4nkieli for 'Our Land'), or sometimes Torne Valley or Torne River Valley (Finnish: Tornionlaakso; Swedish: Tornedalen) lies at the border of Sweden and Finland. It is named after the Torne River flowing through the valley and into the Gulf of Bothnia.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "tx2hyr", "submitted_by": "counting_to_15", "name": "Collective artwork from youtubers and streamers", "description": "This artwork was made collectively by a couple of large youtubers and streamers, together with their audience. nnA few prominent names who worked on this are Karl Jacobs, Sapnap, TinaKitten, Foolish_Gamers, Corpse Husband and Punz. They all have 2 or more references hidden is this artwork. Multiple of them streamed for long times to create this artwork and defend it overnight. n", "website": "", "subreddit": "", "center": [1216.5, 1026.5], "path": [[1160.5, 927.5], [1285.5, 928.5], [1286.5, 1113.5], [1286.5, 1114.5], [1129.5, 1114.5], [1129.5, 1038.5], [1160.5, 1038.5]]}, -{"id": "tx2hoi", "submitted_by": "KassXWolfXTigerXFox", "name": "Berber Symbol and Flag", "description": "A simplified version of the flag and symbol of the Berber, or Amazigh, people, native to North Africa, especially prevalent in Morocco", "website": "", "subreddit": "", "center": [1615.5, 824.5], "path": [[1619.5, 818.5], [1611.5, 818.5], [1611.5, 829.5], [1618.5, 830.5], [1619.5, 819.5], [1619.5, 819.5]]}, {"id": "tx2hld", "submitted_by": "Wdtfshi", "name": "rottinHeey", "description": "An emote of the portuguese twitch streamer RottingAlien", "website": "https://www.twitch.tv/rottingalien", "subreddit": "", "center": [1839.5, 1280.5], "path": [[1836.5, 1277.5], [1836.5, 1277.5], [1841.5, 1277.5], [1841.5, 1282.5], [1836.5, 1282.5], [1836.5, 1277.5]]}, -{"id": "tx2hbk", "submitted_by": "bisc0tte_", "name": "Hypnotizd", "description": "Hypnotizd, or simply Hypno, is an American gaming YouTuber who primarily uploads Minecraft videos. His main series on his channel are Hermitcraft and Project Ozone.", "website": "https://youtube.fandom.com/wiki/Hypnotizd", "subreddit": "", "center": [856.5, 611.5], "path": [[852.5, 614.5], [859.5, 614.5], [859.5, 608.5], [852.5, 608.5], [852.5, 614.5]]}, -{"id": "tx2h73", "submitted_by": "BlyatSenpai", "name": "old zero two 02", "description": "here was a pixel art of zero two from darling in the franxxnscreen shot in link", "website": "https://cdn.discordapp.com/attachments/960517676910915657/960876314938716220/unknown.png", "subreddit": "/r/zerotwo", "center": [0.5, 0.5], "path": []}, +{"id": "tx2hbk", "submitted_by": "bisc0tte_", "name": "Hypnotizd", "description": "Hypnotizd, or simply Hypno, is an American gaming YouTuber who primarily uploads Minecraft videos. His main series on his channel are Hermitcraft and Project Ozone.", "website": "https://youtube.fandom.com/wiki/Hypnotizd", "subreddit": "/r/hermitcraft", "center": [856.5, 611.5], "path": [[852.5, 614.5], [859.5, 614.5], [859.5, 608.5], [852.5, 608.5], [852.5, 614.5]]}, {"id": "tx2h3f", "submitted_by": "Eclipsed_Luna", "name": "Polysexual miniflag", "description": "A mini polysexual pride flag.nPolysexual is the sexual attraction to many, but not necessarily all, genders. For example, a polysexual individual could be attracted to all genders except men. Or a polysexual individual could be attracted only to non-binary individuals, genderfluid individuals, and male-aligned individuals.", "website": "https://lgbta.miraheze.org/wiki/Polysexual", "subreddit": "/r/placepride", "center": [461.5, 595.5], "path": [[457.5, 593.5], [465.5, 593.5], [465.5, 597.5], [457.5, 597.5], [457.5, 593.5]]}, {"id": "tx2gtl", "submitted_by": "Walnut-Simulacrum", "name": "Sus", "description": "A depiction of a crewmate from the 2018 videogame Among Us, accompanied by the phrase sus, a shortening of suspicious commonly used by players of the game.", "website": "", "subreddit": "/r/AmongUs", "center": [1169.5, 1284.5], "path": [[1160.5, 1280.5], [1178.5, 1280.5], [1178.5, 1287.5], [1160.5, 1287.5]]}, {"id": "tx2gs8", "submitted_by": "Prior_Gate_9909", "name": "Peurto Rico Flag", "description": "A flag of the U.S. Territory of Puetro Rico.", "website": "https://www.discoverpuertorico.com", "subreddit": "/r/PuertoRico", "center": [775.5, 514.5], "path": [[764.5, 508.5], [764.5, 520.5], [786.5, 520.5], [786.5, 508.5]]}, @@ -3892,89 +3628,77 @@ {"id": "tx2gi8", "submitted_by": "Jamesthelemmon", "name": "Logo of BersGamer", "description": "A logo of twitch streamer BersGamer.nWas built during a raid on a Friday Night Funkin flag and a logo from the school of engeneering Esiee.", "website": "https://www.twitch.tv/bersgamer", "subreddit": "", "center": [1886.5, 252.5], "path": [[1870.5, 235.5], [1901.5, 235.5], [1901.5, 268.5], [1870.5, 268.5]]}, {"id": "tx2g92", "submitted_by": "Yurakashin", "name": "r/cow (r/CompetitiveOverWatch)", "description": "A play on words of the shorthand (r/cow) for subreddit r/competitiveoverwatch, this image of the Minecraft cow is a collaborative effort signifying the alliance between the communities of r/MinecraftChampionship and r/competitiveoverwatch.", "website": "", "subreddit": "/r/MinecraftChampionship, and, /r/competitiveoverwatch", "center": [1796.5, 135.5], "path": [[1790.5, 131.5], [1790.5, 138.5], [1801.5, 138.5], [1801.5, 131.5], [1790.5, 131.5]]}, {"id": "tx2g2p", "submitted_by": "MarioMan2021", "name": "The R of RetroBoi", "description": "The remains of an attempt by RetroBoi128 to put his itch.io username onto r/place", "website": "https://retroboi128.itch.io/", "subreddit": "/r/retroboi128", "center": [454.5, 1283.5], "path": [[450.5, 1281.5], [450.5, 1285.5], [451.5, 1285.5], [451.5, 1281.5], [452.5, 1281.5], [452.5, 1285.5], [451.5, 1285.5], [450.5, 1285.5], [451.5, 1281.5], [451.5, 1281.5], [452.5, 1281.5], [451.5, 1283.5], [451.5, 1283.5], [451.5, 1282.5], [451.5, 1284.5], [452.5, 1284.5], [452.5, 1282.5]]}, -{"id": "tx2g15", "submitted_by": "Xerax21", "name": "RTBF", "description": "Belgian radio-television of the French-speaking community", "website": "https://www.rtbf.be/", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx2g0c", "submitted_by": "Gorgumbus", "name": "Yuzusoft", "description": "Eroge Developer, Made Riddle Joker, Cafe Stella, Senren Banka, etc.", "website": "http://www.yuzu-soft.com/", "subreddit": "", "center": [1452.5, 505.5], "path": [[1433.5, 501.5], [1433.5, 508.5], [1472.5, 508.5], [1472.5, 502.5], [1472.5, 502.5]]}, {"id": "tx2fvd", "submitted_by": "TheDM18", "name": "Amogus with wizard hat", "description": "Amogus survived till the end.nnCreated by me. I am proud of myself.", "website": "", "subreddit": "", "center": [833.5, 1832.5], "path": [[830.5, 1828.5], [830.5, 1835.5], [835.5, 1835.5], [835.5, 1828.5]]}, {"id": "tx2fu0", "submitted_by": "Fumineko", "name": "Sapnap", "description": "A minecraft youtuber and streamer on the Dream SMP.", "website": "", "subreddit": "/r/sapnap", "center": [1229.5, 1087.5], "path": [[1224.5, 1071.5], [1234.5, 1071.5], [1240.5, 1078.5], [1235.5, 1089.5], [1237.5, 1100.5], [1234.5, 1101.5], [1234.5, 1109.5], [1232.5, 1109.5], [1231.5, 1103.5], [1228.5, 1103.5], [1227.5, 1109.5], [1225.5, 1109.5], [1225.5, 1100.5], [1222.5, 1099.5], [1224.5, 1089.5], [1226.5, 1089.5], [1219.5, 1083.5], [1218.5, 1078.5], [1225.5, 1071.5]]}, {"id": "tx2ft9", "submitted_by": "GlumFlatworm854", "name": "Zein", "description": "One of the biggest IRL streamers in the Peruvian community. This is booyah's profile picture", "website": "https://booyah.live/studio/59911252", "subreddit": "", "center": [1830.5, 1082.5], "path": [[1791.5, 1045.5], [1870.5, 1046.5], [1869.5, 1120.5], [1790.5, 1119.5], [1791.5, 1044.5]]}, {"id": "tx2fsb", "submitted_by": "TheN10", "name": "Haute \u00c9cole Arc [HE-Arc]", "description": "The Haute \u00c9cole Arc (also known as HE-Arc for short) is a Swiss institution of higher education and belongs to the network of universities of applied sciences. The school is located in the city of Neuch\u00e2tel in Switzerland.nnThe INF3DLMa class of 2020 took the initiative to represent their engineering school and proudly defend it against the aggression of other competing schools in the region.nnThe logo shown here is a variation of the official school logo that was used for their Discord server.", "website": "https://www.he-arc.ch/", "subreddit": "/r/hearc", "center": [1580.5, 539.5], "path": [[1569.5, 535.5], [1569.5, 543.5], [1591.5, 543.5], [1591.5, 535.5]]}, {"id": "tx2fpp", "submitted_by": "Lukikume", "name": "ElvisaYomastercard Logo", "description": "Cute little croquette representing the beautiful community of streamer ElvisaYomastercard. Un besillo!", "website": "", "subreddit": "", "center": [1387.5, 1796.5], "path": [[1376.5, 1784.5], [1400.5, 1785.5], [1399.5, 1807.5], [1375.5, 1807.5]]}, -{"id": "tx2fi3", "submitted_by": "Wiks5", "name": "Poi", "description": "A catchphrase of Hoppous from the Hoppou Legion (a VRChat community)nnWas in alliance with the people involved in the two artworks to the right", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx2fgi", "submitted_by": "Yanis48", "name": "PeaceAndCube", "description": "A French Minecraft server community called PeaceAndCube, or PAC", "website": "https://peaceandcube.fr/", "subreddit": "/r/peaceandcube", "center": [832.5, 1560.5], "path": [[820.5, 1556.5], [843.5, 1556.5], [843.5, 1563.5], [820.5, 1563.5], [820.5, 1556.5]]}, -{"id": "tx2feq", "submitted_by": "Aware-Ad7221", "name": "Polish Flag", "description": "Mighty Polish flag defended by general Mlody fron evil romanians", "website": "", "subreddit": "", "center": [731.5, 178.5], "path": [[635.5, 138.5], [822.5, 139.5], [825.5, 197.5], [779.5, 197.5], [780.5, 236.5], [713.5, 237.5], [712.5, 219.5], [704.5, 214.5], [703.5, 201.5], [695.5, 194.5], [677.5, 192.5], [680.5, 197.5], [674.5, 201.5], [635.5, 203.5]]}, -{"id": "tx2f91", "submitted_by": "DedePainted", "name": "Streamer Mural", "description": "A mural made by streamers Foolsih Gamers, Karl Jacobs, TinaKitten, Punz, Sapnap, and Corpse Husband and their viewers! It includes references, game characters, and avatars of the streamers.", "website": "", "subreddit": "", "center": [1216.5, 1025.5], "path": [[1160.5, 927.5], [1160.5, 1038.5], [1129.5, 1038.5], [1129.5, 1114.5], [1286.5, 1114.5], [1286.5, 1095.5], [1290.5, 1093.5], [1290.5, 1091.5], [1287.5, 1089.5], [1287.5, 1075.5], [1287.5, 1003.5], [1287.5, 928.5], [1287.5, 928.5], [1288.5, 927.5], [1160.5, 927.5], [1160.5, 927.5]]}, {"id": "tx2f05", "submitted_by": "olir22", "name": "NAK", "description": "Twitch Streamer AvecSimon's Community", "website": "https://twitch.tv/avecsimon", "subreddit": "", "center": [1098.5, 1125.5], "path": [[1082.5, 1122.5], [1114.5, 1122.5], [1114.5, 1128.5], [1082.5, 1128.5]]}, -{"id": "tx2ey3", "submitted_by": "bisc0tte_", "name": "xBCrafted", "description": "xBCrafted, or simply xB, is an American gaming YouTuber who uploads Minecraft videos, mostly of himself playing on the Hermitcraft server.", "website": "https://youtube.fandom.com/wiki/XBCrafted", "subreddit": "", "center": [856.5, 619.5], "path": [[852.5, 616.5], [859.5, 616.5], [859.5, 622.5], [852.5, 622.5], [852.5, 616.5]]}, -{"id": "tx2ex5", "submitted_by": "MarcelMiner", "name": "Flag of Denmark", "description": "", "website": "", "subreddit": "/r/Denmark", "center": [801.5, 1307.5], "path": [[790.5, 1302.5], [790.5, 1311.5], [811.5, 1311.5], [811.5, 1302.5]]}, +{"id": "tx2ey3", "submitted_by": "bisc0tte_", "name": "xBCrafted", "description": "xBCrafted, or simply xB, is an American gaming YouTuber who uploads Minecraft videos, mostly of himself playing on the Hermitcraft server.", "website": "https://youtube.fandom.com/wiki/XBCrafted", "subreddit": "/r/hermitcraft", "center": [856.5, 619.5], "path": [[852.5, 616.5], [859.5, 616.5], [859.5, 622.5], [852.5, 622.5], [852.5, 616.5]]}, +{"id": "tx2ex5", "submitted_by": "MarcelMiner", "name": "Flag of Denmark", "description": "", "website": "https://en.wikipedia.org/wiki/Denmark", "subreddit": "/r/Denmark", "center": [801.5, 1307.5], "path": [[790.5, 1302.5], [790.5, 1311.5], [811.5, 1311.5], [811.5, 1302.5]]}, {"id": "tx2evk", "submitted_by": "Qaylei", "name": "Qaylei's Pixel", "description": "u/Qaylei set out in r/place with one goal, to immortalise herself. Not due to vanity perse but rather to make a comment on how one should view life. Being 1 pixel in a 2kx2k canvas, many will not see this pixel or understand its story. However the people who do know are aware of what this means to Qaylei.nnNot specifically being a part of any group, she had the idea of limiting herself to being only one defined pixel, set away from any pieces. She found an area close to her friends and other mutual groups and held out till the end.", "website": "https://www.soundcloud.com/16ghosts", "subreddit": "", "center": [1321.5, 568.5], "path": [[1321.5, 568.5], [1322.5, 569.5], [1320.5, 567.5], [1320.5, 569.5], [1322.5, 567.5], [1321.5, 567.5], [1320.5, 567.5], [1320.5, 568.5], [1320.5, 569.5], [1321.5, 569.5], [1322.5, 569.5], [1322.5, 568.5], [1322.5, 567.5], [1321.5, 567.5], [1320.5, 567.5], [1320.5, 568.5], [1321.5, 568.5], [1322.5, 568.5], [1322.5, 569.5], [1320.5, 569.5], [1320.5, 568.5], [1321.5, 569.5], [1322.5, 569.5], [1322.5, 567.5], [1320.5, 567.5], [1320.5, 568.5], [1321.5, 568.5]]}, {"id": "tx2etk", "submitted_by": "JustletmeinSTP", "name": "Tiniest French flag", "description": "Because French are everywhere", "website": "", "subreddit": "", "center": [585.5, 1717.5], "path": [[584.5, 1716.5], [586.5, 1716.5], [586.5, 1718.5], [584.5, 1718.5], [584.5, 1716.5], [584.5, 1716.5]]}, -{"id": "tx2enl", "submitted_by": "javojavon12", "name": "auronLUIS", "description": "One of the most famous emotes from the streamer Auronplay", "website": "twitch.tv/auronplay", "subreddit": "", "center": [1552.5, 1628.5], "path": [[1534.5, 1610.5], [1533.5, 1646.5], [1571.5, 1645.5], [1570.5, 1609.5], [1533.5, 1610.5]]}, +{"id": "tx2enl", "submitted_by": "javojavon12", "name": "auronLUIS", "description": "One of the most famous emotes from the streamer Auronplay", "website": "https://twitch.tv/auronplay", "subreddit": "", "center": [1552.5, 1628.5], "path": [[1534.5, 1610.5], [1533.5, 1646.5], [1571.5, 1645.5], [1570.5, 1609.5], [1533.5, 1610.5]]}, {"id": "tx2eiu", "submitted_by": "DoctorEdward", "name": "James Webb Space Telescope", "description": "An infrared Space Telescope currently in a halo orbit around the Earth.", "website": "", "subreddit": "/r/JamesWebbPlace", "center": [1021.5, 403.5], "path": [[1011.5, 384.5], [1032.5, 384.5], [1031.5, 405.5], [1034.5, 407.5], [1033.5, 413.5], [1032.5, 414.5], [1032.5, 421.5], [1011.5, 421.5], [1011.5, 414.5], [1009.5, 412.5], [1008.5, 406.5], [1011.5, 404.5], [1011.5, 384.5]]}, {"id": "tx2egl", "submitted_by": "Eclipsed_Luna", "name": "Greysexual miniflag", "description": "a mini greysexual miniflag.nGreysexual or Greyasexual, also spelled Graysexual or Grayasexual (shortened to Grey Ace or Grace) is a sexual orientation on the asexual spectrum, referring to those who relate to asexuality, yet feel that there are parts of their experience that aren't fully described by the word asexual. A common reason someone may identify as greysexual is that they experience sexual attraction but very infrequently. Some greysexual individuals may only feel sexual attraction once or twice in their life. Others may experience it more frequently, but still not as frequently as allosexual individuals.", "website": "https://lgbta.miraheze.org/wiki/Greysexual", "subreddit": "/r/placepride", "center": [461.5, 605.5], "path": [[457.5, 602.5], [465.5, 602.5], [465.5, 608.5], [457.5, 608.5], [457.5, 602.5]]}, {"id": "tx2e3v", "submitted_by": "Green_Addition1312", "name": "HeyarTV", "description": "Streamer de Kalitay internationnale et sa communaut\u00e9 extraordinaire", "website": "https://www.twitch.tv/heyartv", "subreddit": "", "center": [1175.5, 1939.5], "path": [[1156.5, 1924.5], [1181.5, 1925.5], [1184.5, 1925.5], [1198.5, 1925.5], [1201.5, 1930.5], [1201.5, 1940.5], [1190.5, 1946.5], [1181.5, 1948.5], [1177.5, 1952.5], [1176.5, 1955.5], [1176.5, 1957.5], [1156.5, 1957.5], [1156.5, 1924.5], [1156.5, 1924.5]]}, {"id": "tx2e27", "submitted_by": "mergplatelip", "name": "Novatone", "description": "Logo of Discord music production community Novatone", "website": "https://novatone.org", "subreddit": "/r/Novatone", "center": [887.5, 1749.5], "path": [[879.5, 1743.5], [879.5, 1754.5], [895.5, 1754.5], [895.5, 1743.5]]}, -{"id": "tx2e1p", "submitted_by": "BlyatSenpai", "name": "zero two honrs", "description": "this is a part of 02 before it got finished n", "website": "https://discord.gg/jc5qWptuDt", "subreddit": "/r/zerotwo", "center": [0.5, 0.5], "path": []}, -{"id": "tx2dut", "submitted_by": "Agreeable_Net_7992", "name": "Foolish_Gamers", "description": "Noah Brown, better known online as Foolish Gamers or FoolishG, is a Minecraft speedrunner YouTuber, Twitch Streamer and friend of the Dream Team. Foolish met Dream after Dream took notice of Foolish's speedrunning skills. He is also a member of the Dream SMP.", "website": "https://www.twitch.tv/foolish_gamers", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx2dto", "submitted_by": "Senior-Lifeguard8894", "name": "Wizebot", "description": "wizebot twich addon", "website": "https://wizebot.tv/index", "subreddit": "", "center": [1166.5, 1964.5], "path": [[1156.5, 1957.5], [1176.5, 1957.5], [1176.5, 1970.5], [1156.5, 1970.5]]}, {"id": "tx2dri", "submitted_by": "dere011", "name": "Wize.Bot", "description": "The small logo of the WizeBot service, moderation service / bot for Twitch.", "website": "https://wizebot.tv/", "subreddit": "", "center": [1166.5, 1964.5], "path": [[1157.5, 1958.5], [1175.5, 1958.5], [1175.5, 1969.5], [1157.5, 1969.5]]}, -{"id": "tx2div", "submitted_by": "bisc0tte_", "name": "Tinfoil Chef", "description": "Tinfoil Chef, also known as TFC, is an American YouTube vlogger and gamer. He is the oldest member of the popular Hermitcraft SMP Minecraft server.", "website": "https://youtube.fandom.com/wiki/Tinfoil_Chef", "subreddit": "", "center": [901.5, 603.5], "path": [[897.5, 600.5], [904.5, 600.5], [904.5, 606.5], [897.5, 606.5], [897.5, 600.5]]}, +{"id": "tx2div", "submitted_by": "bisc0tte_", "name": "Tinfoil Chef", "description": "Tinfoil Chef, also known as TFC, is an American YouTube vlogger and gamer. He is the oldest member of the popular Hermitcraft Survival Multiplayer Minecraft server.", "website": "https://youtube.fandom.com/wiki/Tinfoil_Chef", "subreddit": "/r/hermitcraft", "center": [901.5, 603.5], "path": [[897.5, 600.5], [904.5, 600.5], [904.5, 606.5], [897.5, 606.5], [897.5, 600.5]]}, {"id": "tx2dh4", "submitted_by": "Alert_Swimming_2972", "name": "Yu-Gi-Oh Card", "description": "The back of a Yu-Gi-Oh card", "website": "", "subreddit": "", "center": [994.5, 1640.5], "path": [[979.5, 1622.5], [1008.5, 1622.5], [1008.5, 1657.5], [979.5, 1657.5], [979.5, 1622.5]]}, {"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\u00e9mon Gold & Silver's Fire starter, Typhlosion.", "website": "[https://bulbapedia.bulbagarden.net/wiki/Typhlosion_(Pok%C3%A9mon)](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": [1648.5, 1947.5], "path": [[1631.5, 1941.5], [1647.5, 1941.5], [1648.5, 1939.5], [1654.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], [1631.5, 1946.5], [1631.5, 1942.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": "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": "tx2d3b", "submitted_by": "Maelmc", "name": "Typhlosion", "description": "The head of Pok\u00e9mon 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": "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]]}, {"id": "tx2cj5", "submitted_by": "CommunistKittens", "name": "USC", "description": "The University of Southern California in Los Angeles, CA", "website": "", "subreddit": "/r/USC", "center": [327.5, 1495.5], "path": [[315.5, 1490.5], [315.5, 1500.5], [338.5, 1500.5], [338.5, 1490.5], [315.5, 1490.5]]}, {"id": "tx2ciu", "submitted_by": "JohnnyGuitarFNV", "name": "Wow", "description": "Logo of the popular MMORPG World of Warcraft", "website": "https://worldofwarcraft.com/en-gb/", "subreddit": "/r/wow", "center": [325.5, 1875.5], "path": [[311.5, 1861.5], [338.5, 1861.5], [338.5, 1888.5], [311.5, 1888.5]]}, {"id": "tx2cf7", "submitted_by": "So_oS_O_o", "name": "ESISAR", "description": "A french engineering school in Valence (in FRANCE)nThe symbol is an octopusnWe study computer science and electronicsnThank to them I'm depressed :)", "website": "https://esisar.grenoble-inp.fr/", "subreddit": "/r/Esisar", "center": [1367.5, 1262.5], "path": [[1359.5, 1252.5], [1359.5, 1268.5], [1382.5, 1268.5], [1382.5, 1263.5], [1373.5, 1264.5], [1364.5, 1252.5], [1362.5, 1252.5], [1362.5, 1253.5]]}, -{"id": "tx2c8w", "submitted_by": "RealWaas", "name": "Pingus", "description": "A comically large penguin looking at an amogus that have the color of a penguin nThis was the work of a French private discord server named L'antartique", "website": "private discord server", "subreddit": "", "center": [1147.5, 1954.5], "path": [[1138.5, 1948.5], [1138.5, 1960.5], [1156.5, 1960.5], [1156.5, 1948.5], [1138.5, 1948.5]]}, +{"id": "tx2c8w", "submitted_by": "RealWaas", "name": "Pingus", "description": "A comically large penguin looking at an amogus that have the color of a penguin nThis was the work of a French private discord server named L'antartique", "website": "https://private discord server", "subreddit": "", "center": [1147.5, 1954.5], "path": [[1138.5, 1948.5], [1138.5, 1960.5], [1156.5, 1960.5], [1156.5, 1948.5], [1138.5, 1948.5]]}, {"id": "tx2c7s", "submitted_by": "Papouth", "name": "3 Axes Logo", "description": "3 Axes Institut Tourcoing And Rennes, 3D Infographic School", "website": "https://www.3axes-institut.com/", "subreddit": "", "center": [373.5, 1559.5], "path": [[368.5, 1564.5], [368.5, 1554.5], [377.5, 1554.5], [378.5, 1564.5], [368.5, 1564.5]]}, {"id": "tx2c7e", "submitted_by": "azeex_gaming", "name": "Pikachu", "description": "Pikachu is a yellow mouse Pok\u00e9mon from the fictional Pok\u00e9mon world that was created by Satoshi Tajiri", "website": "https://simple.wikipedia.org/wiki/Pikachu#:~:text=Pikachu%20is%20an%20electric%2Dtype,bigger%20and%20stronger%20than%20Pikachu.", "subreddit": "", "center": [29.5, 1109.5], "path": [[24.5, 1105.5], [33.5, 1105.5], [33.5, 1112.5], [24.5, 1112.5], [24.5, 1109.5], [24.5, 1106.5], [24.5, 1105.5]]}, -{"id": "tx2c6k", "submitted_by": "Afraid-Range8927", "name": "The Foolish Karl Punz Tina square", "description": "the original collarborative square made by streamers/youtubers Foolish_Gamers , KarlJacobs, Punz, and TinaKitten, and fans.", "website": "https://www.twitch.tv/foolish_gamers", "subreddit": "/r/dsmp", "center": [1221.5, 965.5], "path": [[1160.5, 926.5], [1280.5, 927.5], [1282.5, 1000.5], [1162.5, 1006.5], [1163.5, 972.5], [1163.5, 972.5]]}, {"id": "tx2bvx", "submitted_by": "Walnut-Simulacrum", "name": "Half Life Lambda", "description": "A letter from the Greek alphabet used as the logo for the Half Life franchise.", "website": "", "subreddit": "/r/HalfLife", "center": [911.5, 1890.5], "path": [[907.5, 1886.5], [915.5, 1886.5], [915.5, 1894.5], [907.5, 1894.5]]}, {"id": "tx2bth", "submitted_by": "invgod204", "name": "/r/winnipegjets", "description": "LOGO Of The Winnipeg jets NHL Hockey Team", "website": "", "subreddit": "/r/winnipegjets", "center": [1715.5, 984.5], "path": [[1709.5, 980.5], [1708.5, 978.5], [1708.5, 978.5], [1721.5, 978.5], [1721.5, 989.5], [1708.5, 989.5], [1708.5, 978.5], [1708.5, 978.5]]}, {"id": "tx2bti", "submitted_by": "eldritchExploited", "name": "Sara Chidouin", "description": "Sara Chidouin is the main protagonist of the visual novel Your Turn To Die", "website": "", "subreddit": "", "center": [1856.5, 136.5], "path": [[1860.5, 156.5], [1862.5, 155.5], [1871.5, 148.5], [1874.5, 152.5], [1876.5, 138.5], [1875.5, 122.5], [1871.5, 118.5], [1842.5, 119.5], [1837.5, 125.5], [1838.5, 155.5], [1862.5, 156.5]]}, -{"id": "tx2bo0", "submitted_by": "Cat2468", "name": "5up Banner", "description": "A logo to represent the streamer 5up.", "website": "twitch.tv/5uppp", "subreddit": "", "center": [1147.5, 1054.5], "path": [[1130.5, 1039.5], [1130.5, 1069.5], [1164.5, 1070.5], [1163.5, 1039.5]]}, +{"id": "tx2bo0", "submitted_by": "Cat2468", "name": "5up Banner", "description": "A logo to represent the streamer 5up.", "website": "https://twitch.tv/5uppp", "subreddit": "", "center": [1147.5, 1054.5], "path": [[1130.5, 1039.5], [1130.5, 1069.5], [1164.5, 1070.5], [1163.5, 1039.5]]}, {"id": "tx2bly", "submitted_by": "Eclipsed_Luna", "name": "Abrosexual miniflag", "description": "A mini abrosexual pride flag.nAbrosexual refers to an individual whose sexuality is changing or fluid. One can change between any sexualities, whether is be monosexual, multisexual, allosexual or asexual spectrum, etc.", "website": "https://lgbta.miraheze.org/wiki/Abrosexual", "subreddit": "/r/placepride", "center": [453.5, 586.5], "path": [[448.5, 583.5], [457.5, 583.5], [457.5, 589.5], [448.5, 589.5], [448.5, 583.5]]}, -{"id": "tx2bks", "submitted_by": "Stuart98", "name": "The Uniersity of Utah", "description": "The logo for the University of Utah, Utah's flagship public university located in Salt Lake City, Utah", "website": "https://www.utah.edu/", "subreddit": "/r/uofu", "center": [1572.5, 1405.5], "path": [[1564.5, 1398.5], [1564.5, 1415.5], [1576.5, 1415.5], [1576.5, 1411.5], [1577.5, 1411.5], [1577.5, 1410.5], [1578.5, 1410.5], [1578.5, 1407.5], [1581.5, 1407.5], [1581.5, 1397.5], [1564.5, 1397.5]]}, -{"id": "tx2b98", "submitted_by": "LvcaJreddit", "name": "r/PlaceShart", "description": "Originally intended to be r/PlaceStart in honor of the subreddit respondible for creating the taskbar, it got griefed into r/PlaceShaRt (and invaded by the amongi).", "website": "", "subreddit": "/r/PlaceStart", "center": [151.5, 1985.5], "path": [[106.5, 1974.5], [106.5, 1996.5], [196.5, 1997.5], [196.5, 1974.5], [195.5, 1974.5]]}, -{"id": "tx2b3o", "submitted_by": "bisc0tte_", "name": "Jelly", "description": "GoodTimesWithScar's cat in Minecraft !", "website": "https://youtube.fandom.com/wiki/GoodTimesWithScar", "subreddit": "", "center": [899.5, 619.5], "path": [[897.5, 622.5], [901.5, 622.5], [901.5, 616.5], [897.5, 616.5], [897.5, 622.5]]}, +{"id": "tx2bks", "submitted_by": "Stuart98", "name": "The University of Utah", "description": "The logo for the University of Utah, Utah's flagship public university located in Salt Lake City, Utah", "website": "https://www.utah.edu/", "subreddit": "/r/uofu", "center": [1572.5, 1405.5], "path": [[1564.5, 1398.5], [1564.5, 1415.5], [1576.5, 1415.5], [1576.5, 1411.5], [1577.5, 1411.5], [1577.5, 1410.5], [1578.5, 1410.5], [1578.5, 1407.5], [1581.5, 1407.5], [1581.5, 1397.5], [1564.5, 1397.5]]}, {"id": "tx2awt", "submitted_by": "squidrobotfriend", "name": "Mr. Robot robot head", "description": "A robot head seen on a certain character's outfit in Mr. Robot", "website": "", "subreddit": "/r/MrRobot", "center": [1038.5, 1626.5], "path": [[1044.5, 1631.5], [1044.5, 1621.5], [1031.5, 1621.5], [1031.5, 1631.5], [1044.5, 1631.5]]}, -{"id": "tx2amf", "submitted_by": "abbsolemm", "name": "Billzo", "description": "twitch streamer and youtuber billzo's minecraft skin", "website": "twitch.tv/billzo", "subreddit": "", "center": [849.5, 1452.5], "path": [[844.5, 1448.5], [844.5, 1448.5], [844.5, 1448.5], [844.5, 1456.5], [853.5, 1456.5], [853.5, 1448.5]]}, +{"id": "tx2amf", "submitted_by": "abbsolemm", "name": "Billzo", "description": "twitch streamer and youtuber billzo's minecraft skin", "website": "https://twitch.tv/billzo", "subreddit": "", "center": [849.5, 1452.5], "path": [[844.5, 1448.5], [844.5, 1448.5], [844.5, 1448.5], [844.5, 1456.5], [853.5, 1456.5], [853.5, 1448.5]]}, {"id": "tx2aec", "submitted_by": "Jamesthelemmon", "name": "WIP Esiee Logo", "description": "At this point in time, the students from the french school of engineering Esiee were working on building their school's logo.nAt the very end, before the whiteout, the area on the right was turned into a Cuphead pixel art while the area on the left contained a smaller version of the Esiee logo.", "website": "https://www.esiee.fr/en", "subreddit": "", "center": [1157.5, 1965.5], "path": [[1139.5, 1960.5], [1175.5, 1960.5], [1175.5, 1969.5], [1139.5, 1969.5]]}, -{"id": "tx29xs", "submitted_by": "teztez79", "name": "Karl Jacobs, FoolishGamers, TinaKitten, Sapnap, Punz", "description": "A collaborative art created by the collective fanbases of the streamers Karl Jacobs (the green swirl), FoolishGamers (the shark), TinaKitten (the cat), Sapnap (the flames), and Punz (the gold chain).", "website": "", "subreddit": "", "center": [1222.5, 965.5], "path": [[1162.5, 930.5], [1160.5, 1005.5], [1182.5, 1002.5], [1183.5, 997.5], [1188.5, 997.5], [1194.5, 997.5], [1201.5, 997.5], [1203.5, 1001.5], [1209.5, 1003.5], [1282.5, 1001.5], [1284.5, 928.5], [1161.5, 928.5], [1161.5, 972.5]]}, {"id": "tx29t8", "submitted_by": "Cat2468", "name": "DNF (DreamNotFound) logo", "description": "The logo to represent the ship of the streamers Dream and GeorgeNotFound.", "website": "https://shipping.fandom.com/wiki/DreamNotFound", "subreddit": "/r/dreamnotfound", "center": [1155.5, 901.5], "path": [[1150.5, 899.5], [1161.5, 899.5], [1160.5, 904.5], [1150.5, 904.5]]}, {"id": "tx29sx", "submitted_by": "DPanther_", "name": "Bonnie Bee Brigade", "description": "A symbol of youtuber/podcaster (and eventual retired beekeeper) CGP Grey and his fans.", "website": "https://www.cgpgrey.com/", "subreddit": "/r/CGPGrey", "center": [53.5, 814.5], "path": [[48.5, 798.5], [58.5, 798.5], [58.5, 830.5], [48.5, 830.5]]}, {"id": "tx29p4", "submitted_by": "jeff_rose-in-sock", "name": "Dance Gavin Dance", "description": "Design based on the popular Sacramento post-hardcore band Dance Gavin Dance. Features a strawberry (a prominent theme in the band's song names), as well as the infinity symbol from their 2016 album Mothership.", "website": "https://www.dancegavindanceband.com/", "subreddit": "/r/dancegavindance", "center": [178.5, 1256.5], "path": [[167.5, 1247.5], [189.5, 1247.5], [189.5, 1264.5], [167.5, 1264.5], [167.5, 1261.5], [167.5, 1248.5]]}, -{"id": "tx29kp", "submitted_by": "FappingDoggo", "name": "YFL", "description": "Logo of streamers gruop YFL", "website": "[twitch.tv/team/yflgaming](https://twitch.tv/team/yflgaming)", "subreddit": "", "center": [1862.5, 1473.5], "path": [[1848.5, 1461.5], [1875.5, 1461.5], [1875.5, 1485.5], [1848.5, 1484.5], [1848.5, 1462.5]]}, +{"id": "tx29kp", "submitted_by": "FappingDoggo", "name": "YFL", "description": "Logo of streamers gruop YFL", "website": "https://twitch.tv/team/yflgaming", "subreddit": "", "center": [1862.5, 1473.5], "path": [[1848.5, 1461.5], [1875.5, 1461.5], [1875.5, 1485.5], [1848.5, 1484.5], [1848.5, 1462.5]]}, {"id": "tx29in", "submitted_by": "MinimalGod", "name": "\u00c9cole Centrale de Nantes", "description": "\u00c9cole Centrale de Nantes is a French engineering school. Its logo is on the left. The other symbol, a seahorse, is on the right. Seahorse is hippocampe in French. IPOcamp, IPO in short, like the first name of the school in 1919 : Institut Polytechnique de l'Ouest.", "website": "https://www.ec-nantes.fr/", "subreddit": "", "center": [1986.5, 156.5], "path": [[1987.5, 156.5], [1981.5, 151.5], [1981.5, 161.5], [1992.5, 161.5], [1992.5, 151.5], [1981.5, 151.5], [1981.5, 151.5], [1986.5, 156.5], [1986.5, 156.5]]}, -{"id": "tx293r", "submitted_by": "FappingDoggo", "name": "ZEJU", "description": "Simplified logo of streamers group Xayoo Idustries with a community meme text underneath", "website": "[twitch.tv/team/gigakoksy](https://twitch.tv/team/gigakoksy)", "subreddit": "", "center": [1862.5, 1443.5], "path": [[1853.5, 1426.5], [1870.5, 1426.5], [1870.5, 1447.5], [1876.5, 1447.5], [1876.5, 1457.5], [1849.5, 1457.5], [1849.5, 1447.5], [1853.5, 1447.5], [1853.5, 1426.5]]}, +{"id": "tx293r", "submitted_by": "FappingDoggo", "name": "ZEJU", "description": "Simplified logo of streamers group Xayoo Idustries with a community meme text underneath", "website": "https://twitch.tv/team/gigakoksy", "subreddit": "", "center": [1862.5, 1443.5], "path": [[1853.5, 1426.5], [1870.5, 1426.5], [1870.5, 1447.5], [1876.5, 1447.5], [1876.5, 1457.5], [1849.5, 1457.5], [1849.5, 1447.5], [1853.5, 1447.5], [1853.5, 1426.5]]}, {"id": "tx28xu", "submitted_by": "distanceluminosity", "name": "The Tavern", "description": "A small community founded around a Minecraft SMP. We run a semi-private Discord and Minecraft server.", "website": "", "subreddit": "", "center": [1104.5, 1200.5], "path": [[1099.5, 1192.5], [1109.5, 1192.5], [1109.5, 1208.5], [1099.5, 1208.5]]}, -{"id": "tx28ty", "submitted_by": "clemensonge", "name": "The 5K of KaidenHD", "description": "The French streamer KaidenHD has passed the 5k followers and took the opportunity to mark it with a place on the sheet", "website": "twitch.tv/KaidenHD", "subreddit": "", "center": [1277.5, 449.5], "path": [[1273.5, 446.5], [1281.5, 446.5], [1281.5, 452.5], [1273.5, 452.5]]}, +{"id": "tx28ty", "submitted_by": "clemensonge", "name": "The 5K of KaidenHD", "description": "The French streamer KaidenHD has passed the 5k followers and took the opportunity to mark it with a place on the sheet", "website": "https://twitch.tv/KaidenHD", "subreddit": "", "center": [1277.5, 449.5], "path": [[1273.5, 446.5], [1281.5, 446.5], [1281.5, 452.5], [1273.5, 452.5]]}, {"id": "tx28rl", "submitted_by": "Gino_Bc", "name": "Colombus Crew logo", "description": "Logo of the MLS club : Colombus Crew 96", "website": "", "subreddit": "", "center": [577.5, 1380.5], "path": [[568.5, 1367.5], [588.5, 1367.5], [586.5, 1394.5], [585.5, 1394.5], [584.5, 1393.5], [583.5, 1392.5], [582.5, 1392.5], [581.5, 1391.5], [580.5, 1393.5], [579.5, 1393.5], [578.5, 1395.5], [578.5, 1394.5], [577.5, 1394.5], [575.5, 1394.5], [568.5, 1394.5], [568.5, 1367.5]]}, {"id": "tx28nk", "submitted_by": "Vigitant_01", "name": "Anne Boonchuy", "description": "Protagonist in the Disney animated show Amphibia, shown here using the powers she gains in the episode 'True Colors'.", "website": "https://amphibia.fandom.com/wiki/Anne_Boonchuy", "subreddit": "/r/amphibia", "center": [471.5, 917.5], "path": [[467.5, 929.5], [459.5, 921.5], [462.5, 917.5], [460.5, 914.5], [463.5, 910.5], [460.5, 906.5], [465.5, 906.5], [467.5, 910.5], [469.5, 906.5], [472.5, 906.5], [472.5, 908.5], [473.5, 907.5], [477.5, 908.5], [479.5, 906.5], [478.5, 911.5], [482.5, 916.5], [482.5, 918.5], [485.5, 915.5], [488.5, 918.5], [474.5, 928.5]]}, -{"id": "tx28ll", "submitted_by": "Agreeable_Net_7992", "name": "Punz", "description": "Luke, better known online as Punz or PunzOP, is a Twitch streamer, YouTuber, who is also a friend of the Dream Team. He is a member of the Dream SMP.", "website": "https://www.twitch.tv/punz", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx28l8", "submitted_by": "Stuart98", "name": "The University of Utah", "description": "Utah's flagship public university, located in Salt Lake City, Utah.", "website": "https://www.utah.edu/", "subreddit": "/r/uofu", "center": [1978.5, 873.5], "path": [[1970.5, 870.5], [1970.5, 876.5], [1986.5, 876.5], [1986.5, 870.5], [1970.5, 870.5]]}, {"id": "tx28jj", "submitted_by": "distanceluminosity", "name": "The Defenders", "description": "A group of small communities that created an alliance to fight against the void. Went down in the final hours of r/place fighting the void.", "website": "", "subreddit": "", "center": [1110.5, 1201.5], "path": [[1099.5, 1192.5], [1099.5, 1208.5], [1109.5, 1208.5], [1109.5, 1212.5], [1119.5, 1212.5], [1119.5, 1191.5], [1109.5, 1191.5], [1109.5, 1192.5]]}, -{"id": "tx28iv", "submitted_by": "Cat2468", "name": "Aipha Banner", "description": "The logo of the streamer Aipha", "website": "twitch.tv/Aipha", "subreddit": "", "center": [1193.5, 1011.5], "path": [[1182.5, 999.5], [1204.5, 999.5], [1205.5, 1023.5], [1182.5, 1023.5], [1182.5, 1023.5], [1181.5, 1023.5]]}, +{"id": "tx28iv", "submitted_by": "Cat2468", "name": "Aipha Banner", "description": "The logo of the streamer Aipha", "website": "https://twitch.tv/Aipha", "subreddit": "", "center": [1193.5, 1011.5], "path": [[1182.5, 999.5], [1204.5, 999.5], [1205.5, 1023.5], [1182.5, 1023.5], [1182.5, 1023.5], [1181.5, 1023.5]]}, {"id": "tx27xv", "submitted_by": "InsaneByte", "name": "SWAD", "description": "SWAD is an educational platform of the University of Granada originally created for teaching, its creator Antonio Ca\u00f1as Vargas, professor of computer engineering and computer architecture, began to add features that students requested and the students ended up turning it into a shitpost platform loved in the ETSIIT (technical school of computer engineering and telecommunications) of Granada.nA group of 40 students came together to create the r/place logo.n", "website": "https://swad.ugr.es/es", "subreddit": "", "center": [916.5, 1320.5], "path": [[901.5, 1315.5], [901.5, 1325.5], [931.5, 1325.5], [931.5, 1315.5], [901.5, 1315.5], [901.5, 1315.5]]}, -{"id": "tx27ur", "submitted_by": "bisc0tte_", "name": "Dakota", "description": "PearlescentMoon's cat in Minecraft !", "website": "https://youtube.fandom.com/wiki/PearlescentMoon", "subreddit": "", "center": [899.5, 627.5], "path": [[897.5, 624.5], [901.5, 624.5], [901.5, 630.5], [897.5, 630.5], [897.5, 624.5]]}, +{"id": "tx27ur", "submitted_by": "bisc0tte_", "name": "Dakota", "description": "PearlescentMoon's cat!", "website": "https://youtube.fandom.com/wiki/PearlescentMoon", "subreddit": "/r/hermitcraft", "center": [899.5, 627.5], "path": [[897.5, 624.5], [901.5, 624.5], [901.5, 630.5], [897.5, 630.5], [897.5, 624.5]]}, {"id": "tx27t6", "submitted_by": "drosoboeuf", "name": "Beat Saber", "description": "Logo of the VR rythm game Beat Saber", "website": "https://en.wikipedia.org/wiki/Beat_Saber", "subreddit": "/r/beatsaber", "center": [1023.5, 1691.5], "path": [[1008.5, 1684.5], [1025.5, 1684.5], [1028.5, 1678.5], [1042.5, 1677.5], [1042.5, 1681.5], [1033.5, 1682.5], [1029.5, 1689.5], [1036.5, 1691.5], [1038.5, 1694.5], [1038.5, 1699.5], [1006.5, 1701.5], [1006.5, 1690.5], [1012.5, 1689.5], [1008.5, 1684.5]]}, -{"id": "tx27sv", "submitted_by": "The_Golden_Pikpik", "name": "Louie And Pikmin Sprouts", "description": "Louie, who appears in Pikmin 2 and Pikmin 3, is a employee of Hocotate Freight. He is known to have a large appetite and love for cooking. He is seen here standing in between a purple, and white pikmin sprout.", "website": "", "subreddit": "/r/Pikmin", "center": [115.5, 705.5], "path": [[108.5, 711.5], [109.5, 710.5], [109.5, 709.5], [108.5, 708.5], [109.5, 707.5], [110.5, 706.5], [111.5, 707.5], [111.5, 706.5], [110.5, 705.5], [109.5, 704.5], [109.5, 700.5], [110.5, 699.5], [112.5, 697.5], [113.5, 696.5], [117.5, 696.5], [118.5, 697.5], [120.5, 699.5], [121.5, 700.5], [121.5, 704.5], [120.5, 705.5], [119.5, 706.5], [119.5, 707.5], [120.5, 706.5], [121.5, 707.5], [122.5, 708.5], [121.5, 709.5], [121.5, 710.5], [122.5, 711.5], [121.5, 712.5], [109.5, 712.5]]}, +{"id": "tx27sv", "submitted_by": "The_Golden_Pikpik", "name": "Louie and Pikmin sprouts", "description": "Louie, who appears in Pikmin 2 and Pikmin 3, is a employee of Hocotate Freight. He is known to have a large appetite and love for cooking. He is seen here standing in between purple and white pikmin sprouts.", "website": "", "subreddit": "/r/Pikmin", "center": [115.5, 705.5], "path": [[108.5, 711.5], [109.5, 710.5], [109.5, 709.5], [108.5, 708.5], [109.5, 707.5], [110.5, 706.5], [111.5, 707.5], [111.5, 706.5], [110.5, 705.5], [109.5, 704.5], [109.5, 700.5], [110.5, 699.5], [112.5, 697.5], [113.5, 696.5], [117.5, 696.5], [118.5, 697.5], [120.5, 699.5], [121.5, 700.5], [121.5, 704.5], [120.5, 705.5], [119.5, 706.5], [119.5, 707.5], [120.5, 706.5], [121.5, 707.5], [122.5, 708.5], [121.5, 709.5], [121.5, 710.5], [122.5, 711.5], [121.5, 712.5], [109.5, 712.5]]}, {"id": "tx27sh", "submitted_by": "Shlugo", "name": "Tengen toppa gurren lagann", "description": "A mini-poster of tengen toppa gurren lagann anime series by studion Gainax.", "website": "", "subreddit": "/r/gurrenlagann", "center": [1751.5, 442.5], "path": [[1741.5, 427.5], [1742.5, 458.5], [1760.5, 458.5], [1760.5, 427.5]]}, -{"id": "tx27cl", "submitted_by": "FappingDoggo", "name": "lukistL", "description": "Twitch emote from channel LukiSteve", "website": "[twitch.tv/lukisteve](https://twitch.tv/lukisteve)", "subreddit": "", "center": [1832.5, 1443.5], "path": [[1818.5, 1427.5], [1845.5, 1427.5], [1846.5, 1460.5], [1818.5, 1459.5]]}, +{"id": "tx27cl", "submitted_by": "FappingDoggo", "name": "lukistL", "description": "Twitch emote from channel LukiSteve", "website": "https://twitch.tv/lukisteve", "subreddit": "", "center": [1832.5, 1443.5], "path": [[1818.5, 1427.5], [1845.5, 1427.5], [1846.5, 1460.5], [1818.5, 1459.5]]}, {"id": "tx279x", "submitted_by": "EraserErased", "name": "Tip Stevens' Totem", "description": "Small totem representing the community of Tip Stevens", "website": "https://www.twitch.tv/tipstevens", "subreddit": "", "center": [278.5, 1547.5], "path": [[275.5, 1543.5], [281.5, 1543.5], [281.5, 1544.5], [281.5, 1545.5], [281.5, 1546.5], [281.5, 1547.5], [281.5, 1548.5], [281.5, 1550.5], [275.5, 1550.5], [275.5, 1543.5]]}, {"id": "tx279g", "submitted_by": "Sreeper", "name": "Tractor pulling tank", "description": "Tribute to Ukrainian farmers towing Russian tanks with their tractors.", "website": "https://www.reddit.com/r/nextfuckinglevel/comments/t2w2gc/ukrainian_tractor_taking_a_russian_mtlb/", "subreddit": "/r/placeukraine", "center": [140.5, 206.5], "path": [[120.5, 211.5], [120.5, 201.5], [141.5, 202.5], [152.5, 195.5], [157.5, 200.5], [155.5, 212.5]]}, -{"id": "tx2789", "submitted_by": "Cat2468", "name": "Foolish/Punz/Tina/Karl/Sapnap Banner", "description": "A banner created by the fans of streamers Foolish_Gamers, Punz, TinaKitten, Sapnap and Karl Jacobs.", "website": "", "subreddit": "", "center": [1221.5, 964.5], "path": [[1160.5, 927.5], [1160.5, 999.5], [1283.5, 1003.5], [1281.5, 928.5]]}, -{"id": "tx2774", "submitted_by": "squidrobotfriend", "name": "Kurdistan flag", "description": "The flag of Kurdistan, having found a home on r/Place after being chased out of every place they tried to set up by Turks. Defended by many allies, including Milwaukee, Brand New Animal, and r/MrRobot.", "website": "", "subreddit": "/r/Kurdistan", "center": [1384.5, 1967.5], "path": [[1372.5, 1963.5], [1396.5, 1963.5], [1396.5, 1971.5], [1372.5, 1971.5], [1372.5, 1963.5]]}, +{"id": "tx2774", "submitted_by": "squidrobotfriend", "name": "Flag of Kurdistan", "description": "The flag of Kurdistan, an area spread over large parts of what are now eastern Turkey, northern Iraq, and western Iran and smaller parts of northern Syria and Armenia, having found a home on r/Place after being chased out of every place they tried to set up by Turks. Defended by many allies, including Milwaukee, Brand New Animal, and r/MrRobot.", "website": "https://gov.krd/english/", "subreddit": "/r/Kurdistan", "center": [1384.5, 1967.5], "path": [[1375.5, 1963.5], [1397.5, 1963.5], [1397.5, 1971.5], [1375.5, 1971.5], [1375.5, 1963.5]]}, {"id": "tx26ot", "submitted_by": "Adolar0042", "name": "Poro", "description": "Poros are mysterious, magical, and much-loved creatures from the popular game League of Legends", "website": "", "subreddit": "", "center": [1210.5, 1147.5], "path": [[1204.5, 1140.5], [1204.5, 1140.5], [1204.5, 1140.5], [1204.5, 1140.5], [1216.5, 1140.5], [1217.5, 1154.5], [1203.5, 1154.5], [1203.5, 1141.5]]}, {"id": "tx26kd", "submitted_by": "Neutral_Purpose", "name": "RPAN", "description": "RPAN is a public network made up of live broadcasts created by and for redditors like you. We provide livestream bandwidth and airtime to the residents of Reddit as a service to the community.", "website": "", "subreddit": "/r/pan", "center": [1849.5, 40.5], "path": [[1844.5, 35.5], [1844.5, 45.5], [1853.5, 45.5], [1853.5, 35.5], [1844.5, 35.5], [1844.5, 35.5]]}, -{"id": "tx26hd", "submitted_by": "canlgetuhhhhh", "name": "bi frogs", "description": "Stardew Valley frog sprites on the bisexual flag, a result of an alliance between /r/StardewValley and the lgbt flags community.", "website": "StardewValley.net", "subreddit": "/r/PlacePride", "center": [37.5, 373.5], "path": [[8.5, 369.5], [70.5, 369.5], [71.5, 378.5], [69.5, 378.5], [65.5, 371.5], [63.5, 372.5], [58.5, 376.5], [55.5, 377.5], [8.5, 377.5]]}, +{"id": "tx26hd", "submitted_by": "canlgetuhhhhh", "name": "bi frogs", "description": "Stardew Valley frog sprites on the bisexual flag, a result of an alliance between /r/StardewValley and the lgbt flags community.", "website": "https://StardewValley.net", "subreddit": "/r/PlacePride", "center": [37.5, 373.5], "path": [[8.5, 369.5], [70.5, 369.5], [71.5, 378.5], [69.5, 378.5], [65.5, 371.5], [63.5, 372.5], [58.5, 376.5], [55.5, 377.5], [8.5, 377.5]]}, {"id": "tx26fx", "submitted_by": "ZAWGURN", "name": "Axiom Esports", "description": "The logo of Axiom Esports, TotalBiscuit's StarCraft 2 team, was built by r/StarCraft as part of the memorial to TB.", "website": "https://liquipedia.net/starcraft2/Axiom", "subreddit": "/r/starcraft", "center": [962.5, 1200.5], "path": [[961.5, 1205.5], [965.5, 1201.5], [966.5, 1201.5], [970.5, 1205.5], [972.5, 1205.5], [973.5, 1203.5], [968.5, 1198.5], [971.5, 1196.5], [971.5, 1193.5], [967.5, 1193.5], [965.5, 1195.5], [963.5, 1193.5], [960.5, 1193.5], [950.5, 1203.5], [950.5, 1205.5]]}, {"id": "tx26cz", "submitted_by": "isa_bg05", "name": "Tanizen", "description": "Logo de Tanizen en twitch, hecho por \u00e9l con apoyo de su comunidad llamada tanilovers.", "website": "https://www.twitch.tv/tanizen", "subreddit": "/r/TanizenTv", "center": [1741.5, 1237.5], "path": [[1724.5, 1219.5], [1758.5, 1219.5], [1758.5, 1254.5], [1724.5, 1254.5], [1724.5, 1219.5], [1725.5, 1219.5]]}, -{"id": "tx2690", "submitted_by": "bisc0tte_", "name": "PearlescentMoon", "description": "PearlescentMoon or just Pearl, is an Australian gaming YouTuber who primarily uploads Minecraft videos and is part of the Hermitcraft server. She is mostly known for being a member of well known YouTuber Grian's personal build crew.", "website": "https://youtube.fandom.com/wiki/PearlescentMoon", "subreddit": "", "center": [892.5, 627.5], "path": [[888.5, 624.5], [895.5, 624.5], [895.5, 630.5], [888.5, 630.5], [888.5, 624.5]]}, +{"id": "tx2690", "submitted_by": "bisc0tte_", "name": "PearlescentMoon", "description": "PearlescentMoon, or just Pearl, is an Australian gaming YouTuber who primarily uploads Minecraft videos and is part of the Hermitcraft server. She is mostly known for being a member of well-known YouTuber Grian's personal build crew.", "website": "https://youtube.fandom.com/wiki/PearlescentMoon", "subreddit": "/r/hermitcraft", "center": [892.5, 627.5], "path": [[888.5, 624.5], [895.5, 624.5], [895.5, 630.5], [888.5, 630.5], [888.5, 624.5]]}, {"id": "tx2673", "submitted_by": "Kriz_07", "name": "BersGamer", "description": "Famous Spanish youtuber BersGamer with his logo which is a representation of a popular creepypasta Eyeless Jack's mask.", "website": "https://www.youtube.com/c/BersGamer", "subreddit": "", "center": [1885.5, 252.5], "path": [[1870.5, 269.5], [1869.5, 234.5], [1901.5, 235.5], [1901.5, 269.5], [1870.5, 269.5]]}, {"id": "tx25zh", "submitted_by": "marxeh", "name": "Omniscient Reader's Viewpoint", "description": "Omniscient Reader's Viewpoint is a apocalyptic fantasy Fiction Korean Web Novel written by a Korean author duo writing under the pen name Sing-Syong about an office worker, Kim Dokja, who enters the world of his favorite novel.", "website": "", "subreddit": "/r/OmniscientReader", "center": [1277.5, 1737.5], "path": [[1267.5, 1723.5], [1287.5, 1722.5], [1287.5, 1751.5], [1269.5, 1751.5], [1268.5, 1751.5], [1268.5, 1751.5], [1268.5, 1748.5]]}, {"id": "tx25oi", "submitted_by": "funwithtriangles", "name": "Oranges on Capybara", "description": "A reference to Capybaras bathing in hot springs with oranges, in Japan. Originally intended to be a single orange on the head, it eventually grew out of control.", "website": "https://www.youtube.com/watch?v=0K172kRSNc4", "subreddit": "", "center": [925.5, 659.5], "path": [[921.5, 655.5], [921.5, 651.5], [927.5, 651.5], [931.5, 654.5], [932.5, 659.5], [933.5, 662.5], [933.5, 663.5], [928.5, 664.5], [925.5, 663.5], [924.5, 667.5], [920.5, 667.5], [918.5, 661.5], [919.5, 661.5], [918.5, 661.5]]}, @@ -3985,7 +3709,7 @@ {"id": "tx2543", "submitted_by": "MarcelMiner", "name": "Island of Cyprus", "description": "Map of the island of Cyprus in the eastern Mediterranean Sea.", "website": "", "subreddit": "/r/cyprus", "center": [1466.5, 1964.5], "path": [[1468.5, 1961.5], [1464.5, 1961.5], [1464.5, 1963.5], [1460.5, 1963.5], [1460.5, 1964.5], [1458.5, 1964.5], [1458.5, 1965.5], [1459.5, 1965.5], [1459.5, 1967.5], [1461.5, 1967.5], [1461.5, 1968.5], [1464.5, 1968.5], [1464.5, 1969.5], [1465.5, 1968.5], [1466.5, 1967.5], [1468.5, 1967.5], [1469.5, 1966.5], [1470.5, 1966.5], [1470.5, 1964.5], [1474.5, 1964.5], [1473.5, 1963.5], [1472.5, 1962.5], [1473.5, 1961.5], [1474.5, 1960.5], [1474.5, 1959.5], [1475.5, 1959.5], [1477.5, 1958.5], [1478.5, 1957.5], [1472.5, 1960.5], [1471.5, 1961.5], [1470.5, 1961.5], [1469.5, 1962.5], [1468.5, 1961.5], [1465.5, 1961.5]]}, {"id": "tx2502", "submitted_by": "Glitchuh1", "name": "The Tavern", "description": "The logo for a small discord server, The Tavern.", "website": "", "subreddit": "", "center": [1104.5, 1200.5], "path": [[1099.5, 1192.5], [1109.5, 1192.5], [1109.5, 1208.5], [1099.5, 1208.5], [1099.5, 1192.5]]}, {"id": "tx24zr", "submitted_by": "EdictsLH", "name": "Bad Pachimari League", "description": "Bad Pachimari League is a community-run eSports organization focused on hosting Overwatch tournaments.n", "website": "https://bpl.slmn.gg/", "subreddit": "", "center": [1413.5, 955.5], "path": [[1404.5, 952.5], [1416.5, 952.5], [1418.5, 950.5], [1422.5, 954.5], [1421.5, 957.5], [1422.5, 958.5], [1404.5, 958.5]]}, -{"id": "tx24xl", "submitted_by": "Cat2468", "name": "Zerka Banner", "description": "A banner to represent the streamer Zerka of the Sidemen.", "website": "twitch.tv/zerkaa", "subreddit": "", "center": [538.5, 1048.5], "path": [[514.5, 1045.5], [514.5, 1045.5], [514.5, 1051.5], [561.5, 1051.5], [561.5, 1045.5], [560.5, 1045.5], [560.5, 1045.5], [541.5, 1045.5], [536.5, 1045.5], [514.5, 1045.5], [514.5, 1051.5], [514.5, 1051.5], [514.5, 1051.5], [514.5, 1051.5]]}, +{"id": "tx24xl", "submitted_by": "Cat2468", "name": "Zerka Banner", "description": "A banner to represent the streamer Zerka of the Sidemen.", "website": "https://twitch.tv/zerkaa", "subreddit": "", "center": [538.5, 1048.5], "path": [[514.5, 1045.5], [514.5, 1045.5], [514.5, 1051.5], [561.5, 1051.5], [561.5, 1045.5], [560.5, 1045.5], [560.5, 1045.5], [541.5, 1045.5], [536.5, 1045.5], [514.5, 1045.5], [514.5, 1051.5], [514.5, 1051.5], [514.5, 1051.5], [514.5, 1051.5]]}, {"id": "tx24x5", "submitted_by": "Walnut-Simulacrum", "name": "Starfield", "description": "An emblem used in marketing for the upcoming 2022 Bethesda Games Studios game Starfield. It's also used by the in-universe group known as Constellation.", "website": "", "subreddit": "/r/Starfield", "center": [1031.5, 1912.5], "path": [[1020.5, 1910.5], [1026.5, 1910.5], [1027.5, 1909.5], [1027.5, 1908.5], [1028.5, 1907.5], [1029.5, 1907.5], [1030.5, 1906.5], [1034.5, 1906.5], [1035.5, 1907.5], [1036.5, 1907.5], [1037.5, 1908.5], [1037.5, 1909.5], [1038.5, 1910.5], [1039.5, 1910.5], [1039.5, 1914.5], [1038.5, 1914.5], [1037.5, 1915.5], [1037.5, 1916.5], [1036.5, 1917.5], [1035.5, 1917.5], [1034.5, 1918.5], [1030.5, 1918.5], [1029.5, 1917.5], [1028.5, 1917.5], [1027.5, 1916.5], [1027.5, 1915.5], [1026.5, 1914.5], [1020.5, 1914.5]]}, {"id": "tx24tn", "submitted_by": "Stuart98", "name": "Mumei Face", "description": "An adorable face drawn by HololiveEN Generation 2: Council member Nanashi Mumei, as the third painting she drew in her third Passpartout stream. Original stream link: https://www.youtube.com/watch?v=m42h-F5zhng", "website": "https://www.youtube.com/channel/UC3n5uGu18FoCy23ggWWp8tA", "subreddit": "/r/NanashiMumei", "center": [229.5, 763.5], "path": [[239.5, 757.5], [239.5, 755.5], [238.5, 755.5], [238.5, 754.5], [237.5, 754.5], [237.5, 755.5], [235.5, 755.5], [235.5, 756.5], [233.5, 756.5], [233.5, 757.5], [231.5, 757.5], [231.5, 758.5], [229.5, 758.5], [229.5, 759.5], [227.5, 759.5], [227.5, 760.5], [225.5, 760.5], [225.5, 761.5], [223.5, 761.5], [223.5, 762.5], [221.5, 762.5], [221.5, 768.5], [222.5, 768.5], [222.5, 769.5], [223.5, 769.5], [223.5, 771.5], [227.5, 771.5], [227.5, 770.5], [227.5, 769.5], [228.5, 769.5], [228.5, 768.5], [230.5, 768.5], [230.5, 767.5], [231.5, 767.5], [231.5, 766.5], [232.5, 766.5], [232.5, 765.5], [233.5, 765.5], [233.5, 764.5], [234.5, 764.5], [234.5, 763.5], [235.5, 763.5], [235.5, 762.5], [235.5, 761.5], [236.5, 761.5], [236.5, 760.5], [237.5, 760.5], [237.5, 759.5], [237.5, 758.5], [238.5, 758.5], [238.5, 757.5], [239.5, 757.5]]}, {"id": "tx24sp", "submitted_by": "snoodymclee", "name": "Weezer", "description": "A depiction of Weezer's Blue Album, featuring the first major lineup of Pat Wilson, Rivers Cuomo, Matt Sharp, and Brian Bell, in that order. Below it is the unofficial flag of Weezer, using the official logo and the colors of the six self-titled albums.", "website": "https://www.reddit.com/r/weezer/", "subreddit": "/r/weezer", "center": [1428.5, 138.5], "path": [[1420.5, 126.5], [1421.5, 126.5], [1420.5, 148.5], [1436.5, 148.5], [1436.5, 126.5], [1432.5, 127.5], [1428.5, 129.5], [1426.5, 129.5], [1424.5, 128.5], [1422.5, 127.5], [1420.5, 126.5]]}, @@ -3996,41 +3720,35 @@ {"id": "tx23xj", "submitted_by": "Funzo1404", "name": "Mashup Week", "description": "Mashup Week is a tournament inspired by SiIvaGunner's King for a Day Tournament series. In the tournament, competitors battle in a double-elimination bracket, determined by the fanbase's votes. The winner will receive the Mashup Week, a week full of mashups with music related to the winner.", "website": "https://mashupweek.cloud/information/", "subreddit": "/r/MashupWeek", "center": [1740.5, 132.5], "path": [[1731.5, 123.5], [1749.5, 123.5], [1749.5, 140.5], [1731.5, 140.5], [1731.5, 123.5]]}, {"id": "tx23pt", "submitted_by": "1D0GE", "name": "ZeeposG", "description": "Streamer ZeeposG :)n", "website": "https://www.twitch.tv/zeeposg", "subreddit": "", "center": [1969.5, 1292.5], "path": [[1966.5, 1288.5], [1966.5, 1296.5], [1972.5, 1296.5], [1972.5, 1288.5], [1966.5, 1288.5]]}, {"id": "tx23nx", "submitted_by": "Nauth3r_nioMe", "name": "grandson logo", "description": "gransdon is a Canadian-American singer, songwriter, and musician, logo made by the grandson discord", "website": "https://www.grandsonmusic.com", "subreddit": "", "center": [1324.5, 413.5], "path": [[1318.5, 411.5], [1318.5, 415.5], [1319.5, 415.5], [1319.5, 417.5], [1320.5, 417.5], [1320.5, 419.5], [1321.5, 419.5], [1321.5, 420.5], [1325.5, 420.5], [1325.5, 419.5], [1326.5, 419.5], [1326.5, 418.5], [1327.5, 418.5], [1327.5, 417.5], [1328.5, 417.5], [1328.5, 416.5], [1329.5, 416.5], [1329.5, 414.5], [1330.5, 414.5], [1330.5, 408.5], [1329.5, 408.5], [1329.5, 407.5], [1328.5, 407.5], [1328.5, 406.5], [1322.5, 406.5], [1322.5, 406.5], [1322.5, 406.5]]}, -{"id": "tx23ho", "submitted_by": "provisional-name", "name": "Guatemalan Flag", "description": "The flag of the nation of Guatemala a central American country with 17 million people.", "website": "https://en.wikipedia.org/wiki/Guatemala", "subreddit": "/r/guatemala", "center": [0.5, 0.5], "path": []}, {"id": "tx23cs", "submitted_by": "mamillius", "name": "Utah University Pride Colors", "description": "Started as an effort by LGBTQA+ individuals and allies from Utah and Utah universities to specifically put pride colors over the top of the white in BYU as a show of support for Students at the LDS university related to anti-LGBTQA stances and discrimination of and by the Church of Jesus Christ of Latter Day Saints. This effort expanded to cover all of the universities in the row, with trans flag colors on Utah State University and the University of Utah displaying transgender flag colors, BYU displaying Pride rainbow colors, and Utah Valley University displaying Bisexual pride coloration. Reportedly Southern Utah University at one point was displaying Asexual pride coloration prior to the final image.", "website": "", "subreddit": "", "center": [1958.5, 873.5], "path": [[1929.5, 870.5], [1929.5, 876.5], [1986.5, 876.5], [1986.5, 870.5], [1930.5, 870.5], [1929.5, 870.5], [1929.5, 876.5], [1986.5, 876.5], [1986.5, 870.5], [1930.5, 870.5]]}, {"id": "tx23bk", "submitted_by": "ZoodbergVonGaurd", "name": "Night in the Woods", "description": "The main characters from the game Night in the Woods (2017)", "website": "http://www.nightinthewoods.com/", "subreddit": "/r/nightinthewoods", "center": [1477.5, 65.5], "path": [[1467.5, 52.5], [1467.5, 73.5], [1473.5, 73.5], [1473.5, 77.5], [1482.5, 77.5], [1482.5, 74.5], [1490.5, 74.5], [1490.5, 64.5], [1479.5, 64.5], [1479.5, 52.5], [1467.5, 52.5]]}, {"id": "tx23aw", "submitted_by": "milleg_2", "name": "AlphaTauri F1", "description": "Scuderia AlphaTauri, an Italian Formula One racing team. It is one of two Formula One constructors owned by Red Bull", "website": "", "subreddit": "/r/formula1", "center": [558.5, 776.5], "path": [[546.5, 770.5], [546.5, 770.5], [570.5, 770.5], [570.5, 782.5], [546.5, 782.5]]}, {"id": "tx238d", "submitted_by": "Powzr", "name": "Mappa", "description": "A small friend group.", "website": "", "subreddit": "", "center": [3.5, 1105.5], "path": [[3.5, 1101.5], [0.5, 1096.5], [0.5, 1113.5], [6.5, 1113.5], [6.5, 1096.5], [0.5, 1096.5]]}, -{"id": "tx22u1", "submitted_by": "DPanther_", "name": "Trans Rights Queen", "description": "This queen is trans!nnA queen chess piece displaying the colors of the transgender flag.", "website": "https://www.hrc.org/resources/understanding-the-transgender-community", "subreddit": "/r/AnarchyChess", "center": [101.5, 615.5], "path": [[98.5, 617.5], [100.5, 619.5], [103.5, 619.5], [105.5, 617.5], [104.5, 616.5], [107.5, 611.5], [104.5, 613.5], [102.5, 611.5], [103.5, 610.5], [101.5, 609.5], [100.5, 610.5], [101.5, 611.5], [99.5, 613.5], [96.5, 611.5], [99.5, 616.5]]}, -{"id": "tx22rg", "submitted_by": "ZAWGURN", "name": "Carbot Zergling", "description": "Between two other Blizzard games, the Zergling from StarCraft is drawn in the style of the series StarCrafts by animator CarBotAnimations", "website": "", "subreddit": "", "center": [338.5, 1883.5], "path": [[337.5, 1876.5], [340.5, 1878.5], [341.5, 1880.5], [342.5, 1882.5], [345.5, 1887.5], [333.5, 1887.5], [333.5, 1885.5], [332.5, 1884.5], [332.5, 1881.5], [333.5, 1879.5], [335.5, 1878.5], [335.5, 1878.5], [337.5, 1877.5]]}, +{"id": "tx22u1", "submitted_by": "DPanther_", "name": "Trans rights queen", "description": "This queen is trans!\n\nA queen chess piece displaying the colors of the transgender flag.", "website": "https://www.hrc.org/resources/understanding-the-transgender-community", "subreddit": "/r/AnarchyChess", "center": [101.5, 615.5], "path": [[98.5, 617.5], [100.5, 619.5], [103.5, 619.5], [105.5, 617.5], [104.5, 616.5], [107.5, 611.5], [104.5, 613.5], [102.5, 611.5], [103.5, 610.5], [101.5, 609.5], [100.5, 610.5], [101.5, 611.5], [99.5, 613.5], [96.5, 611.5], [99.5, 616.5]]}, {"id": "tx22qv", "submitted_by": "Y_Kang", "name": "Meta Knight", "description": "Major character in the Kirby series, appearing in most of the games, the manga, as well as the anime since his debut in Kirby's Adventure in 1993. The intrigue and popularity surrounding Meta Knight within the Kirby fandom largely lies in his enigmatic and solitary yet caring nature and his mysterious yet striking likeness to Kirby himself.", "website": "https://kirby.fandom.com/wiki/Meta_Knight", "subreddit": "", "center": [1374.5, 354.5], "path": [[1362.5, 344.5], [1363.5, 365.5], [1386.5, 365.5], [1386.5, 344.5], [1362.5, 344.5]]}, {"id": "tx22mt", "submitted_by": "Gino_Bc", "name": "Atlanta United FC logo", "description": "Logo of the famous MLS club : Atlanta United FC", "website": "", "subreddit": "", "center": [1659.5, 435.5], "path": [[1654.5, 428.5], [1662.5, 428.5], [1665.5, 435.5], [1664.5, 440.5], [1658.5, 443.5], [1654.5, 443.5], [1651.5, 439.5], [1651.5, 432.5], [1651.5, 431.5], [1656.5, 428.5], [1660.5, 428.5], [1664.5, 430.5], [1665.5, 432.5], [1666.5, 435.5], [1666.5, 437.5], [1666.5, 437.5], [1666.5, 438.5], [1664.5, 441.5], [1661.5, 443.5], [1659.5, 444.5], [1659.5, 443.5]]}, {"id": "tx2283", "submitted_by": "UrsenLIVE", "name": "Ursen / UrsenLIVE", "description": "Ursen is the pseudonym of an Moroccan-American Youtuber and Twitch streamer who is known primarily for creating Just Chatting / Reactionary Content. He's primarily known via Bearbubb's community as a associated, smaller content creator.", "website": "https://twitch.tv/ursenlive", "subreddit": "/r/bearbubb", "center": [1500.5, 1654.5], "path": [[1496.5, 1650.5], [1503.5, 1650.5], [1503.5, 1657.5], [1496.5, 1657.5]]}, {"id": "tx226v", "submitted_by": "GDAndres98", "name": "First Colombian Flag", "description": "The Colombian community came together to make a space in the mural before it was expanded for the first time", "website": "", "subreddit": "/r/Colombia", "center": [214.5, 568.5], "path": [[176.5, 554.5], [248.5, 554.5], [248.5, 563.5], [248.5, 564.5], [249.5, 564.5], [249.5, 566.5], [250.5, 566.5], [250.5, 567.5], [251.5, 567.5], [251.5, 568.5], [253.5, 568.5], [253.5, 569.5], [255.5, 569.5], [255.5, 571.5], [256.5, 571.5], [256.5, 582.5], [175.5, 582.5], [176.5, 554.5]]}, -{"id": "tx223z", "submitted_by": "notdeedee", "name": "5up Head", "description": "Head of 5up's minecraft skin. 5up is a variety streamer who is a friend of many DSMP creators, and he regularly participates in MC events like twitch rivals and MCC", "website": "twitch.tv/5uppp", "subreddit": "/r/5up", "center": [205.5, 921.5], "path": [[209.5, 917.5], [200.5, 917.5], [200.5, 925.5], [209.5, 925.5]]}, +{"id": "tx223z", "submitted_by": "notdeedee", "name": "5up Head", "description": "Head of 5up's minecraft skin. 5up is a variety streamer who is a friend of many DSMP creators, and he regularly participates in MC events like twitch rivals and MCC", "website": "https://twitch.tv/5uppp", "subreddit": "/r/5up", "center": [205.5, 921.5], "path": [[209.5, 917.5], [200.5, 917.5], [200.5, 925.5], [209.5, 925.5]]}, {"id": "tx221m", "submitted_by": "Funzo1404", "name": "Bootleg King For Another Day Tournament", "description": "The Bootleg King For Another Day Tournament is an event similar to SiIvaGunner's King For Another Day Tournament, featuring 32 characters from a variety of different media.", "website": "https://sites.google.com/view/bkfad-tojo/home", "subreddit": "", "center": [1740.5, 149.5], "path": [[1731.5, 141.5], [1749.5, 141.5], [1749.5, 152.5], [1748.5, 153.5], [1748.5, 154.5], [1744.5, 158.5], [1743.5, 158.5], [1742.5, 159.5], [1738.5, 159.5], [1737.5, 158.5], [1736.5, 158.5], [1732.5, 154.5], [1732.5, 153.5], [1731.5, 152.5], [1731.5, 141.5]]}, -{"id": "tx221k", "submitted_by": "Narnall", "name": "Lain (Serial Experiments Lain)", "description": "A portrait of Lain in her bear onesie. Unfortunately, it is in the process of being griefed. Intended design is linked.", "website": "https://www.reddit.com/r/Lain/comments/twdwcm/third_times_the_charm/", "subreddit": "/r/lain", "center": [1555.5, 1690.5], "path": [[1576.5, 1668.5], [1576.5, 1667.5], [1533.5, 1667.5], [1533.5, 1711.5], [1533.5, 1712.5], [1576.5, 1712.5]]}, +{"id": "tx221k", "submitted_by": "Narnall", "name": "Lain (Serial Experiments Lain)", "description": "An image of Lain from the anime Serial Experiments Lain, created by r/Lain and the Wired community.", "website": "https://www.reddit.com/r/Lain/comments/twdwcm/third_times_the_charm/", "subreddit": "/r/lain", "center": [1555.5, 1690.5], "path": [[1576.5, 1668.5], [1576.5, 1667.5], [1533.5, 1667.5], [1533.5, 1711.5], [1533.5, 1712.5], [1576.5, 1712.5]]}, {"id": "tx21t0", "submitted_by": "ATLUTD_741", "name": "Major League Soccer Crest", "description": "Major League Soccer (MLS) is a men's professional soccer league sanctioned by the United States Soccer Federation, which represents the sport's highest level in the United States. The league comprises 28 teams\u201425 in the U.S. and 3 in Canada\u2014and plans to expand to 30 teams by the 2023 season.", "website": "https://www.mlssoccer.com/", "subreddit": "/r/MLS", "center": [1512.5, 386.5], "path": [[1496.5, 376.5], [1525.5, 376.5], [1525.5, 381.5], [1525.5, 388.5], [1525.5, 393.5], [1524.5, 394.5], [1524.5, 395.5], [1523.5, 396.5], [1522.5, 398.5], [1522.5, 399.5], [1521.5, 400.5], [1520.5, 401.5], [1519.5, 402.5], [1518.5, 403.5], [1517.5, 404.5], [1516.5, 404.5], [1515.5, 405.5], [1514.5, 405.5], [1513.5, 406.5], [1513.5, 405.5], [1513.5, 403.5], [1513.5, 402.5], [1513.5, 400.5], [1513.5, 396.5], [1512.5, 396.5], [1512.5, 393.5], [1511.5, 393.5], [1511.5, 392.5], [1510.5, 392.5], [1510.5, 391.5], [1509.5, 391.5], [1508.5, 391.5], [1508.5, 390.5], [1500.5, 390.5], [1499.5, 390.5], [1499.5, 391.5], [1498.5, 391.5], [1497.5, 391.5], [1497.5, 392.5], [1496.5, 392.5], [1496.5, 393.5], [1496.5, 376.5]]}, {"id": "tx21jv", "submitted_by": "nelabyrinth", "name": "Mini Ramee on the Croatian Flag", "description": "A symbol of friendship brought by r/place between r/croatia and the spit bandits (Ramee's community)", "website": "https://nopixel.fandom.com/wiki/Ramee_El-Rahman", "subreddit": "/r/Chang_Gang", "center": [399.5, 1080.5], "path": [[395.5, 1073.5], [403.5, 1073.5], [403.5, 1087.5], [395.5, 1087.5], [395.5, 1073.5]]}, {"id": "tx21jb", "submitted_by": "HugoMRG", "name": "Batalgerien", "description": "The remains of the NeoChaos logo", "website": "https://twitter.com/batalgerien", "subreddit": "", "center": [987.5, 1936.5], "path": [[984.5, 1932.5], [989.5, 1932.5], [989.5, 1939.5], [984.5, 1939.5]]}, {"id": "tx21hm", "submitted_by": "PixelNexor", "name": "New Brunswick Flag", "description": "This is the flag of New Brunswick. It is the only province of Canada with the official languages being French and English (Bilingual).", "website": "", "subreddit": "/r/newbrunswickcanada", "center": [236.5, 456.5], "path": [[229.5, 451.5], [229.5, 461.5], [243.5, 461.5], [243.5, 451.5]]}, -{"id": "tx216c", "submitted_by": "ZAWGURN", "name": "Probe", "description": "A cartoon probe from the game StarCraft", "website": "", "subreddit": "/r/starcraft", "center": [1796.5, 1733.5], "path": [[1787.5, 1738.5], [1790.5, 1736.5], [1796.5, 1723.5], [1804.5, 1738.5], [1801.5, 1738.5]]}, {"id": "tx20zb", "submitted_by": "MarcelMiner", "name": "Greek trireme", "description": "An ancient Greek warship with five crewmates on it.", "website": "", "subreddit": "/r/Greeceplace", "center": [1477.5, 1941.5], "path": [[1464.5, 1936.5], [1464.5, 1937.5], [1463.5, 1937.5], [1463.5, 1938.5], [1462.5, 1938.5], [1462.5, 1939.5], [1461.5, 1939.5], [1461.5, 1940.5], [1460.5, 1940.5], [1460.5, 1941.5], [1459.5, 1941.5], [1456.5, 1942.5], [1459.5, 1942.5], [1459.5, 1943.5], [1460.5, 1943.5], [1460.5, 1945.5], [1466.5, 1945.5], [1464.5, 1947.5], [1482.5, 1947.5], [1484.5, 1945.5], [1498.5, 1945.5], [1495.5, 1944.5], [1494.5, 1944.5], [1494.5, 1941.5], [1495.5, 1941.5], [1495.5, 1940.5], [1494.5, 1939.5], [1493.5, 1938.5], [1492.5, 1937.5], [1493.5, 1936.5], [1491.5, 1936.5], [1491.5, 1939.5], [1486.5, 1939.5], [1486.5, 1934.5], [1484.5, 1934.5], [1484.5, 1935.5], [1483.5, 1935.5], [1483.5, 1937.5], [1484.5, 1937.5], [1484.5, 1938.5], [1484.5, 1939.5], [1483.5, 1939.5], [1483.5, 1942.5], [1477.5, 1942.5], [1477.5, 1938.5], [1478.5, 1938.5], [1479.5, 1939.5], [1480.5, 1940.5], [1481.5, 1939.5], [1481.5, 1932.5], [1482.5, 1932.5], [1482.5, 1930.5], [1480.5, 1931.5], [1479.5, 1930.5], [1478.5, 1930.5], [1477.5, 1930.5], [1477.5, 1928.5], [1476.5, 1930.5], [1475.5, 1931.5], [1476.5, 1932.5], [1475.5, 1933.5], [1474.5, 1934.5], [1474.5, 1936.5], [1476.5, 1938.5], [1475.5, 1939.5], [1464.5, 1939.5]]}, -{"id": "tx20yu", "submitted_by": "waffelwarrior", "name": "Magic: The Gathering Card Back", "description": "Pixel art depicting a Magic: The Gathering's card back. The mana circles were replaced by amogi.", "website": "", "subreddit": "", "center": [613.5, 1417.5], "path": [[587.5, 1384.5], [587.5, 1384.5], [588.5, 1451.5], [638.5, 1451.5], [639.5, 1384.5]]}, {"id": "tx20vj", "submitted_by": "kubalolzer", "name": "brown pixel", "description": "a community of over 200 people formed together in r/bottomleftbrownsquare to keep a brown pixel on the bottom left for the final snapshot", "website": "", "subreddit": "/r/bottomleftbrownsquare", "center": [1.5, 1998.5], "path": [[0.5, 1998.5], [1.5, 1998.5], [1.5, 1999.5]]}, {"id": "tx20rv", "submitted_by": "Squadela", "name": "Venetian Snares", "description": "One of the main artists of the breakcore music genre.nr/place ally of other electronic artists such as Aphex Twin.", "website": "https://venetiansnares.bandcamp.com/", "subreddit": "/r/venetiansnares", "center": [1302.5, 506.5], "path": [[1300.5, 504.5], [1304.5, 504.5], [1304.5, 507.5], [1300.5, 507.5]]}, -{"id": "tx20m6", "submitted_by": "bisc0tte_", "name": "BdoubleO100", "description": "John Booko, BdoubleO100, BdoubleO or simply Bdubs, is an American YouTube gamer and vlogger on his second channel who is best known for his Minecraft videos, specifically his work as a former member of the MindCrack server. His YouTube name refers to the first three letters of his last name.", "website": "https://youtube.fandom.com/wiki/BdoubleO100", "subreddit": "", "center": [892.5, 611.5], "path": [[887.5, 607.5], [896.5, 607.5], [896.5, 615.5], [887.5, 615.5], [887.5, 607.5]]}, +{"id": "tx20m6", "submitted_by": "bisc0tte_", "name": "BdoubleO100", "description": "John Booko, BdoubleO100, BdoubleO or simply Bdubs, is an American YouTube gamer and vlogger on his second channel who is best known for his Minecraft videos, specifically his work as a former member of the Mindcrack server. His YouTube name refers to the first three letters of his last name.", "website": "https://youtube.fandom.com/wiki/BdoubleO100", "subreddit": "/r/hermitcraft", "center": [892.5, 611.5], "path": [[887.5, 607.5], [896.5, 607.5], [896.5, 615.5], [887.5, 615.5], [887.5, 607.5]]}, {"id": "tx20kl", "submitted_by": "Walnut-Simulacrum", "name": "University of Kentucky", "description": "A logo of the University of Kentucky. This logo is most commonly used for UK Athletic teams, though it also appears in many academic contexts.", "website": "", "subreddit": "/r/Wildcats", "center": [1153.5, 1832.5], "path": [[1142.5, 1823.5], [1163.5, 1823.5], [1163.5, 1843.5], [1148.5, 1843.5], [1148.5, 1836.5], [1142.5, 1836.5]]}, {"id": "tx2033", "submitted_by": "xRGTMX", "name": "Joel Embiid", "description": "Cameroonian professional basketball player for the Philadelphia 76ers of the National Basketball Association. Wears the number 21.", "website": "https://www.nba.com/player/203954/joel-embiid", "subreddit": "/r/sixers", "center": [1373.5, 1309.5], "path": [[1362.5, 1296.5], [1362.5, 1301.5], [1361.5, 1301.5], [1361.5, 1314.5], [1363.5, 1314.5], [1363.5, 1319.5], [1387.5, 1319.5], [1387.5, 1307.5], [1378.5, 1307.5], [1378.5, 1296.5]]}, {"id": "tx200e", "submitted_by": "Astarius-159", "name": "Azur Lane Character", "description": "We can see three character from Azur Lane mobile game. Graf Spee to the left. Akagi in the center. And New Jersey to the right.", "website": "", "subreddit": "/r/AzurLane", "center": [162.5, 1112.5], "path": [[136.5, 1103.5], [188.5, 1103.5], [188.5, 1120.5], [136.5, 1120.5]]}, -{"id": "tx1zzo", "submitted_by": "Evaxel", "name": "Fox Stevenson Logo", "description": "Logo of EDM artist Fox Stevenson.", "website": "", "subreddit": "/r/FoxStevenson", "center": [0.5, 0.5], "path": []}, {"id": "tx1zia", "submitted_by": "Linden_fall", "name": "Digimon (Koromon)", "description": "The digimon named koromon from the digimon francise. Collaborated space with neopets, tamagotchi and pokemon", "website": "", "subreddit": "/r/digimon", "center": [538.5, 1507.5], "path": [[532.5, 1510.5], [532.5, 1504.5], [533.5, 1505.5], [533.5, 1503.5], [534.5, 1504.5], [534.5, 1502.5], [537.5, 1502.5], [537.5, 1502.5], [537.5, 1503.5], [539.5, 1503.5], [539.5, 1502.5], [541.5, 1502.5], [543.5, 1502.5], [543.5, 1503.5], [542.5, 1504.5], [544.5, 1504.5], [543.5, 1505.5], [544.5, 1505.5], [544.5, 1507.5], [544.5, 1509.5], [544.5, 1510.5], [544.5, 1511.5], [532.5, 1511.5], [532.5, 1505.5], [531.5, 1510.5], [531.5, 1506.5], [531.5, 1508.5]]}, {"id": "tx1z78", "submitted_by": "XenonChiro", "name": "Second Chilean flag", "description": "Chilean flag with Juan Carlos Bodoque and a Moai from Isla de Pascua.", "website": "", "subreddit": "/r/chile", "center": [1853.5, 520.5], "path": [[1883.5, 500.5], [1832.5, 500.5], [1822.5, 500.5], [1822.5, 539.5], [1884.5, 539.5], [1884.5, 520.5]]}, {"id": "tx1z1z", "submitted_by": "Bonaye59", "name": "LOGO CACABOX", "description": "Logo of the Cacabox with the goat Potatoz and the debile mental Grimkujow. Good Year Remli 2022 !", "website": "", "subreddit": "", "center": [1415.5, 1269.5], "path": [[1388.5, 1278.5], [1443.5, 1278.5], [1443.5, 1261.5], [1387.5, 1261.5]]}, {"id": "tx1yto", "submitted_by": "wariacie", "name": "lukistL", "description": "polish streamer emote", "website": "", "subreddit": "", "center": [1832.5, 1442.5], "path": [[1820.5, 1428.5], [1844.5, 1428.5], [1846.5, 1456.5], [1818.5, 1453.5]]}, -{"id": "tx1yr8", "submitted_by": "bisc0tte_", "name": "Keralis", "description": "Arek Roman Lisowski, known online as Keralis is a YouTube gamer, commentator, and occasional vlogger of Polish origin, currently living in Sweden. He he also known from being a member of the famous Hermitcraft Minecraft server.", "website": "https://youtube.fandom.com/wiki/Keralis", "subreddit": "", "center": [874.5, 595.5], "path": [[870.5, 592.5], [879.5, 592.5], [878.5, 599.5], [869.5, 599.5], [869.5, 592.5]]}, +{"id": "tx1yr8", "submitted_by": "bisc0tte_", "name": "Keralis", "description": "Arek Roman Lisowski, known online as Keralis, is a YouTube gamer, commentator, and occasional vlogger of Polish origin, currently living in Sweden. He is also known from being a member of the famous Hermitcraft Minecraft server.", "website": "https://youtube.fandom.com/wiki/Keralis", "subreddit": "/r/hermitcraft", "center": [874.5, 595.5], "path": [[870.5, 592.5], [879.5, 592.5], [878.5, 599.5], [869.5, 599.5], [869.5, 592.5]]}, {"id": "tx1yql", "submitted_by": "cuddle_curve", "name": "V\u00f6tgil", "description": "V\u00f6tgil is a constructed language made by Jack Eisenmann in 2012, and is intended to be a simpler version of English. It is spelled either using the Latin or V\u00f6tgil alphabet. Each letter of the V\u00f6tgil alphabet is a column of 3 cells, each cell being either white, light gray. dark gray, or black.nThe language was popularized in 2016 by jan Misali, and since has been a inside joke for fans of constructed languages.", "website": "http://www.ostracodfiles.com/votgil/main.html", "subreddit": "/r/V0tgil", "center": [753.5, 328.5], "path": [[750.5, 327.5], [755.5, 327.5], [755.5, 329.5], [750.5, 329.5]]}, -{"id": "tx1yop", "submitted_by": "dtim96", "name": "Weezer", "description": "Weezer is an American rock band formed in Los Angeles, California, in 1992. Since 2001, the band has consisted of Rivers Cuomo, Patrick Wilson, Brian Bell, and Scott Shriner. After signing to Geffen Records in 1993, Weezer released their self-titled debut album, also known as the Blue Album, in May 1994.", "website": "", "subreddit": "/r/weezer", "center": [0.5, 0.5], "path": []}, {"id": "tx1ynr", "submitted_by": "Hopeful-Start-5216", "name": "Aki Rosenthal's Apple", "description": "This Apple represents Aki Rose, a vtuber from the first generation of Hololive JP.", "website": "", "subreddit": "/r/hololive", "center": [1399.5, 962.5], "path": [[1399.5, 959.5], [1400.5, 959.5], [1401.5, 961.5], [1401.5, 963.5], [1400.5, 964.5], [1398.5, 964.5], [1397.5, 963.5], [1397.5, 961.5], [1398.5, 960.5], [1399.5, 959.5]]}, {"id": "tx1yij", "submitted_by": "PretendPlankton69", "name": "Flag of the People's Republic of China", "description": "", "website": "", "subreddit": "/r/Sino", "center": [174.5, 199.5], "path": [[178.5, 201.5], [178.5, 196.5], [169.5, 196.5], [169.5, 201.5]]}, {"id": "tx1ybp", "submitted_by": "JessyPkLover", "name": "The Gallic cockerel", "description": "The Gallic cockerel is one of the symbols of France, but is not an official symbol of the French Republic.", "website": "https://www.elysee.fr/la-presidence/le-coq", "subreddit": "", "center": [1144.5, 785.5], "path": [[1135.5, 781.5], [1140.5, 781.5], [1142.5, 784.5], [1147.5, 784.5], [1146.5, 782.5], [1140.5, 777.5], [1148.5, 771.5], [1150.5, 776.5], [1152.5, 776.5], [1153.5, 777.5], [1153.5, 780.5], [1152.5, 781.5], [1151.5, 783.5], [1153.5, 786.5], [1153.5, 788.5], [1150.5, 792.5], [1150.5, 797.5], [1145.5, 798.5], [1145.5, 795.5], [1146.5, 795.5], [1146.5, 793.5], [1143.5, 791.5], [1138.5, 795.5], [1135.5, 792.5], [1132.5, 791.5], [1132.5, 789.5], [1135.5, 785.5], [1138.5, 784.5], [1137.5, 784.5], [1135.5, 782.5], [1134.5, 781.5]]}, @@ -4042,13 +3760,12 @@ {"id": "tx1xl2", "submitted_by": "Xulomali_HD", "name": "NexxuzHD", "description": "Logo of Nexxuz HD. A Youtuber/Streamer from the Hispanic community know for his series Ark, Pop Life and GTA races. Is the main face of Arkeanos community.", "website": "https://www.youtube.com/channel/UCWSuUgXtU4wgg_L7mE0_0lQ", "subreddit": "/r/nexxuzhd", "center": [1957.5, 714.5], "path": [[1941.5, 697.5], [1972.5, 697.5], [1972.5, 731.5], [1941.5, 731.5]]}, {"id": "tx1x8u", "submitted_by": "Narnall", "name": "Lain Silhouette", "description": "A piece created by r/lain, which features a silhouette of lain with her pink bear hat.", "website": "", "subreddit": "/r/lain", "center": [1556.5, 1065.5], "path": [[1568.5, 1050.5], [1544.5, 1050.5], [1544.5, 1079.5], [1568.5, 1079.5]]}, {"id": "tx1x6v", "submitted_by": "Menemen_was_taken", "name": "So\u011fans\u0131z Menemen and VorisPie", "description": "After the great War of Varis-Menemen, two Turkish content creators made peace and took their place on r/place", "website": "https://www.youtube.com/channel/UCY8-tOiSAJ3uKLeAeSi15sg", "subreddit": "/r/Menemen", "center": [719.5, 1731.5], "path": [[718.5, 1723.5], [718.5, 1730.5], [724.5, 1730.5], [724.5, 1731.5], [724.5, 1732.5], [725.5, 1732.5], [725.5, 1735.5], [716.5, 1735.5], [716.5, 1731.5], [715.5, 1731.5], [715.5, 1725.5], [716.5, 1724.5], [717.5, 1723.5], [718.5, 1723.5]]}, -{"id": "tx1x4u", "submitted_by": "mamillius", "name": "University of Utah", "description": "The letters of The University of Utah, a large public university located in Salt Lake City Utah", "website": "https://www.utah.edu/", "subreddit": "/r/uofu", "center": [1978.5, 873.5], "path": [[1970.5, 870.5], [1970.5, 876.5], [1986.5, 876.5], [1986.5, 870.5], [1970.5, 870.5]]}, {"id": "tx1x23", "submitted_by": "creepstone", "name": "HeyarTv", "description": "Logo of french streamer HeyarTv", "website": "https://www.twitch.tv/heyartv", "subreddit": "", "center": [1168.5, 1941.5], "path": [[1157.5, 1925.5], [1180.5, 1925.5], [1181.5, 1947.5], [1175.5, 1957.5], [1157.5, 1957.5], [1157.5, 1925.5], [1158.5, 1925.5]]}, {"id": "tx1wpz", "submitted_by": "waffelwarrior", "name": "North Mexico Flag", "description": "This flag struggled for a while due to a war with a Polish streamer. Previously, before the first expasion to the canvas, there was a small Mexican flag with an axolotl and an Oxxo (convenience store chain in Mexico.) When the canvas expansion occurred the Polish flag overtook the small Mexican one, including the axolotl. When the time-zones caused the Polish to sleep and the Mexicans to wake, the Polish flag was quickly overtook by the Mexican one, to which the artwork depicted now and a couple of tacos with a cute avocado were added. When night came for Mexicans and the sun rose for the Polish, who started their attack by destroying the pixel art, and then began to transform the Mexican flag into a Polish one. After a close battle, a treaty was reached in which the flag was divided in two. Unfortunately the deal was not respected and the streamer replaced the flag with his face, and began expanding the flag to the left, threatening Italy. Consequently, Mexico and Italy came together to overtake the Polish flag, with Mexico overtaking to the left, and Italy to the top, resulting in what is seen now. Mexico was able to restore all of its artwork except for the tacos and avocado.", "website": "", "subreddit": "", "center": [937.5, 223.5], "path": [[870.5, 206.5], [870.5, 206.5], [866.5, 199.5], [866.5, 248.5], [1009.5, 248.5], [1009.5, 198.5], [864.5, 198.5], [864.5, 198.5], [864.5, 198.5], [865.5, 199.5], [867.5, 200.5], [867.5, 200.5]]}, {"id": "tx1wng", "submitted_by": "pie3636", "name": "Lewandowski", "description": "The Polish football player Robert Lewandowski", "website": "", "subreddit": "", "center": [541.5, 361.5], "path": [[546.5, 350.5], [543.5, 350.5], [542.5, 351.5], [540.5, 351.5], [539.5, 352.5], [537.5, 352.5], [536.5, 353.5], [536.5, 355.5], [535.5, 356.5], [534.5, 356.5], [534.5, 361.5], [535.5, 362.5], [535.5, 363.5], [536.5, 363.5], [537.5, 364.5], [535.5, 366.5], [535.5, 369.5], [537.5, 370.5], [537.5, 373.5], [540.5, 373.5], [539.5, 372.5], [539.5, 370.5], [542.5, 370.5], [542.5, 373.5], [545.5, 373.5], [544.5, 372.5], [544.5, 370.5], [545.5, 370.5], [546.5, 369.5], [546.5, 366.5], [544.5, 364.5], [545.5, 363.5], [546.5, 363.5], [546.5, 354.5], [547.5, 353.5], [547.5, 351.5]]}, {"id": "tx1w1c", "submitted_by": "helpimstuckin_a_well", "name": "University of Waterloo", "description": "Home to the world's largest coop program, they were rated the most innovative university in Canada my Maclean's Magazine.", "website": "https://uwaterloo.ca/", "subreddit": "/r/uwaterloo", "center": [1624.5, 186.5], "path": [[1659.5, 177.5], [1593.5, 177.5], [1589.5, 177.5], [1590.5, 195.5], [1647.5, 195.5], [1647.5, 194.5], [1648.5, 194.5], [1649.5, 193.5], [1650.5, 193.5], [1651.5, 192.5], [1657.5, 192.5], [1658.5, 193.5], [1659.5, 194.5], [1659.5, 177.5]]}, {"id": "tx1vqo", "submitted_by": "Skieblu", "name": "Tiki", "description": "Tiki is a playable character in the Archanea series of the Fire Emblem games as well as Fire Emblem Awakening. She is a manakete, a race that is able to transform into a powerful dragon.", "website": "https://fireemblem.fandom.com/wiki/Tiki", "subreddit": "/r/TheSleepyTiki", "center": [519.5, 1382.5], "path": [[524.5, 1370.5], [522.5, 1370.5], [521.5, 1371.5], [520.5, 1371.5], [519.5, 1372.5], [517.5, 1372.5], [516.5, 1373.5], [515.5, 1373.5], [513.5, 1375.5], [514.5, 1376.5], [514.5, 1378.5], [512.5, 1378.5], [515.5, 1381.5], [508.5, 1390.5], [510.5, 1392.5], [510.5, 1393.5], [513.5, 1393.5], [514.5, 1394.5], [515.5, 1394.5], [517.5, 1392.5], [519.5, 1392.5], [520.5, 1393.5], [521.5, 1393.5], [523.5, 1391.5], [524.5, 1391.5], [524.5, 1389.5], [523.5, 1388.5], [523.5, 1387.5], [526.5, 1387.5], [526.5, 1386.5], [525.5, 1385.5], [525.5, 1383.5], [529.5, 1380.5], [529.5, 1377.5], [526.5, 1374.5], [526.5, 1372.5]]}, -{"id": "tx1vo6", "submitted_by": "notdeedee", "name": "Leafling on a Cloud", "description": "A leafling representing 5up on a shared area with fellow twitch streamers and friends", "website": "[twitch.tv/5uppp](https://twitch.tv/5uppp)", "subreddit": "/r/5up", "center": [1145.5, 1055.5], "path": [[1144.5, 1043.5], [1140.5, 1039.5], [1137.5, 1039.5], [1135.5, 1049.5], [1130.5, 1054.5], [1131.5, 1065.5], [1144.5, 1066.5], [1153.5, 1067.5], [1157.5, 1063.5], [1164.5, 1059.5], [1167.5, 1057.5], [1160.5, 1052.5], [1153.5, 1052.5], [1151.5, 1050.5], [1150.5, 1041.5], [1145.5, 1042.5], [1144.5, 1043.5]]}, +{"id": "tx1vo6", "submitted_by": "notdeedee", "name": "Leafling on a Cloud", "description": "A leafling representing 5up on a shared area with fellow twitch streamers and friends", "website": "https://twitch.tv/5uppp", "subreddit": "/r/5up", "center": [1145.5, 1055.5], "path": [[1144.5, 1043.5], [1140.5, 1039.5], [1137.5, 1039.5], [1135.5, 1049.5], [1130.5, 1054.5], [1131.5, 1065.5], [1144.5, 1066.5], [1153.5, 1067.5], [1157.5, 1063.5], [1164.5, 1059.5], [1167.5, 1057.5], [1160.5, 1052.5], [1153.5, 1052.5], [1151.5, 1050.5], [1150.5, 1041.5], [1145.5, 1042.5], [1144.5, 1043.5]]}, {"id": "tx1vn3", "submitted_by": "CaptianJackSparrow", "name": "RVA", "description": "From the subreddit for the city of Richmond, Virginia featuring opossums", "website": "", "subreddit": "/r/rva", "center": [450.5, 1587.5], "path": [[427.5, 1599.5], [435.5, 1592.5], [440.5, 1597.5], [447.5, 1597.5], [451.5, 1586.5], [447.5, 1582.5], [447.5, 1570.5], [459.5, 1570.5], [460.5, 1600.5], [426.5, 1600.5]]}, {"id": "tx1viy", "submitted_by": "bisc0tte_", "name": "Pedobear", "description": "Pedobear is a recurring fictional character on the Internet. First appearing on the Japanese website 2channel. This is a bear ironically representing pedophilia, usually brought up to refer to it in derision. An internet meme popular back in early 2010s", "website": "https://en.wikipedia.org/wiki/Pedobear", "subreddit": "", "center": [1528.5, 650.5], "path": [[1491.5, 613.5], [1565.5, 613.5], [1563.5, 688.5], [1491.5, 687.5], [1491.5, 613.5]]}, {"id": "tx1vhy", "submitted_by": "Stuart98", "name": "Chibi Towa", "description": "A small depiction of \u5e38\u95c7\u30c8\u30ef(Tokoyami Towa), a member of hololive's 4th generation known for her angelic nature, false claims of being a devil, and incredible singing voice.", "website": "https://www.youtube.com/channel/UC1uv2Oq6kNxgATlCiez59hw", "subreddit": "/r/tokoyamitowa", "center": [1341.5, 1087.5], "path": [[1336.5, 1089.5], [1336.5, 1085.5], [1336.5, 1089.5], [1336.5, 1091.5], [1337.5, 1091.5], [1337.5, 1093.5], [1345.5, 1093.5], [1345.5, 1091.5], [1345.5, 1090.5], [1346.5, 1090.5], [1346.5, 1085.5], [1347.5, 1085.5], [1347.5, 1083.5], [1346.5, 1083.5], [1346.5, 1082.5], [1336.5, 1082.5], [1336.5, 1083.5], [1335.5, 1083.5], [1335.5, 1085.5], [1336.5, 1085.5], [1336.5, 1091.5]]}, @@ -4068,32 +3785,30 @@ {"id": "tx1szj", "submitted_by": "DualPlay-Mapping", "name": "SimDemocracy", "description": "A flag that reflects the flag of the democracy simulator. He also collaborated with Oasis, Cebulaks, The Strokes and Sus, under the name of SOCKS.", "website": "", "subreddit": "/r/SimDemocracy", "center": [1140.5, 1292.5], "path": [[1132.5, 1287.5], [1147.5, 1287.5], [1147.5, 1297.5], [1132.5, 1297.5], [1132.5, 1287.5]]}, {"id": "tx1ssd", "submitted_by": "Jibachu", "name": "The magnus archives", "description": "Right before the white void started spawning, the magnus archives logo made by r/TheMagnusArchives was standing there. It's an horror podcast based on short stories.n(PS: Don't talk to me about Jurgen Leitner ever again.)", "website": "https://rustyquill.com/show/the-magnus-archives/", "subreddit": "/r/TheMagnusArchives", "center": [1986.5, 1099.5], "path": [[1999.5, 1119.5], [1999.5, 1079.5], [1972.5, 1079.5], [1973.5, 1119.5], [1974.5, 1119.5]]}, {"id": "tx1sf5", "submitted_by": "victred_", "name": "Five Blades", "description": "The logo of a Roblox group that took part in many community driven events and contributed to its warclan genre before finally shutting down.", "website": "https://www.roblox.com/groups/1069251/Five-Blades#!/about", "subreddit": "", "center": [40.5, 1246.5], "path": [[37.5, 1246.5], [40.5, 1243.5], [43.5, 1246.5], [40.5, 1249.5], [37.5, 1246.5]]}, -{"id": "tx1s8j", "submitted_by": "RedWolf_LP", "name": "Pathfinder smiley emoji", "description": "The smiley emoji is from the game Apex Legends and was created by an Apex streamer and his community", "website": "", "subreddit": "", "center": [517.5, 1251.5], "path": [[502.5, 1237.5], [532.5, 1237.5], [532.5, 1264.5], [502.5, 1264.5]]}, +{"id": "tx1s8j", "submitted_by": "RedWolf_LP", "name": "Pathfinder smiley emoji", "description": "The smiley emoji is from the game Apex Legends and was created by an Apex streamer and his community", "website": "", "subreddit": "", "center": [517.5, 1251.5], "path": [[501.5, 1236.5], [533.5, 1236.5], [533.5, 1265.5], [501.5, 1265.5]]}, {"id": "tx1s2b", "submitted_by": "FachaGhost", "name": "FachaGhost", "description": "Pixel logo of FachaGhost, a small streamer and vod uploader from cristianghost for the Chilean and Hispanic community. Along with a duckling that accompanied us in the place event that unfortunately was deleted and with an among us.", "website": "https://www.youtube.com/c/fachaghost", "subreddit": "/r/FachaGhost_Oficial", "center": [1642.5, 1965.5], "path": [[1637.5, 1960.5], [1649.5, 1960.5], [1646.5, 1970.5], [1637.5, 1970.5], [1637.5, 1960.5]]}, {"id": "tx1s1u", "submitted_by": "MeemeeIsAWord", "name": "Skanderbeg's helmet", "description": "Skanderbeg (Albanian: Gjergj Kastrioti) was a prominent figure in the history of Albania. His weapons have been subjects of mythical adoration.nSkanderbeg\u2019s helmet is made of white metal, adorned with a strip dressed in gold. On its top lies the head of a horned goat made of bronze, also dressed in gold.", "website": "", "subreddit": "/r/albania", "center": [346.5, 264.5], "path": [[338.5, 272.5], [352.5, 272.5], [352.5, 271.5], [352.5, 270.5], [351.5, 270.5], [351.5, 264.5], [352.5, 264.5], [352.5, 262.5], [351.5, 262.5], [351.5, 260.5], [352.5, 260.5], [352.5, 258.5], [354.5, 258.5], [354.5, 257.5], [355.5, 257.5], [355.5, 255.5], [353.5, 255.5], [353.5, 256.5], [352.5, 256.5], [356.5, 254.5], [356.5, 253.5], [352.5, 253.5], [352.5, 254.5], [350.5, 254.5], [350.5, 255.5], [348.5, 255.5], [348.5, 256.5], [346.5, 256.5], [346.5, 257.5], [345.5, 257.5], [345.5, 258.5], [344.5, 258.5], [344.5, 259.5], [342.5, 259.5], [342.5, 260.5], [341.5, 260.5], [341.5, 262.5], [340.5, 262.5], [340.5, 263.5], [339.5, 263.5], [339.5, 264.5], [338.5, 264.5]]}, {"id": "tx1rxp", "submitted_by": "socks-the-fox", "name": "Socks the Fox", "description": "Just a random furry streamer", "website": "https://www.twitch.tv/socksthefox", "subreddit": "", "center": [1087.5, 1787.5], "path": [[1085.5, 1789.5], [1085.5, 1785.5], [1089.5, 1785.5], [1089.5, 1789.5]]}, {"id": "tx1rrh", "submitted_by": "PrimalPeashooter", "name": "Spamton NEO and Lancer", "description": "Two characters from Toby Fox's hit game DELTARUNE.", "website": "", "subreddit": "/r/deltarune", "center": [1525.5, 1546.5], "path": [[1507.5, 1520.5], [1505.5, 1521.5], [1503.5, 1526.5], [1505.5, 1529.5], [1502.5, 1533.5], [1501.5, 1536.5], [1505.5, 1538.5], [1498.5, 1545.5], [1498.5, 1553.5], [1499.5, 1555.5], [1498.5, 1557.5], [1498.5, 1568.5], [1533.5, 1568.5], [1533.5, 1570.5], [1540.5, 1570.5], [1540.5, 1551.5], [1560.5, 1551.5], [1563.5, 1540.5], [1548.5, 1532.5], [1548.5, 1524.5], [1538.5, 1538.5], [1534.5, 1530.5], [1539.5, 1524.5], [1535.5, 1520.5], [1521.5, 1521.5], [1516.5, 1529.5], [1508.5, 1526.5]]}, -{"id": "tx1rbc", "submitted_by": "cal-cye", "name": "Smajor1995", "description": "MC skin of Smajor1995/Scott Smajor/Dangthatsalongname. Despite not being part of Hermitcraft, his skin was built in the area following an attack by GenerikB (former, disgraced HC memeber) fans. He was chosen for the spot partially due to its proximity to the first MCC area, as he is the person who puts together the teams for the event.", "website": "https://www.youtube.com/c/Dangthatsalongname", "subreddit": "", "center": [856.5, 595.5], "path": [[852.5, 592.5], [852.5, 598.5], [859.5, 598.5], [859.5, 592.5], [855.5, 592.5]]}, +{"id": "tx1rbc", "submitted_by": "cal-cye", "name": "Smajor1995", "description": "Minecraft skin of Smajor1995/Scott Smajor/Dangthatsalongname. Despite not being part of Hermitcraft, his skin was built in the area following an attack by GenerikB (former, disgraced HC member) fans. He was chosen for the spot partially due to its proximity to the first Minecraft Championship area, as he is the person who puts together the teams for the event.", "website": "https://www.youtube.com/c/Dangthatsalongname", "subreddit": "", "center": [856.5, 595.5], "path": [[852.5, 592.5], [852.5, 598.5], [859.5, 598.5], [859.5, 592.5], [855.5, 592.5]]}, {"id": "tx1r9t", "submitted_by": "nelabyrinth", "name": "Chain Pact Allies", "description": "A spontaneous alliance that started with r/mattcolville adopting r/GreenBayPackers and the spit bandits (r/Chang_Gang) creating the ramee logo within the alliance chain (A reference to The Chain of Acheron). It soon extended to other allies including r/RecRoom, r/sailormoon, r/croatia, r/Summit1G, r/outerwilds, the Malaysians, Mandem, Gulag Gang, and others.", "website": "https://www.twitch.tv/deansocool/clip/HandsomeTiredLemurJebaited-nMSmXWbxlnJnmuLl?filter=clips&range=7d&sort=time", "subreddit": "/r/mattcolville", "center": [389.5, 1013.5], "path": [[359.5, 887.5], [447.5, 889.5], [449.5, 1104.5], [476.5, 1104.5], [477.5, 1127.5], [446.5, 1128.5], [446.5, 1122.5], [320.5, 1122.5], [322.5, 992.5], [324.5, 961.5], [327.5, 962.5], [330.5, 917.5], [359.5, 916.5], [360.5, 887.5]]}, {"id": "tx1qs6", "submitted_by": "DPanther_", "name": "Kirby", "description": "The round, pink main character of the Kirby video game franchise made by Nintendo. This particular Kirby was maintained by fans of the games, as well as the nearby allies of r/196 and the Big Ten.", "website": "https://kirby.nintendo.com/", "subreddit": "/r/Kirby", "center": [212.5, 619.5], "path": [[203.5, 610.5], [217.5, 610.5], [220.5, 615.5], [221.5, 623.5], [224.5, 625.5], [224.5, 627.5], [201.5, 627.5], [201.5, 625.5], [206.5, 623.5], [204.5, 621.5], [204.5, 615.5], [203.5, 613.5]]}, {"id": "tx1qri", "submitted_by": "skrillyd", "name": "Bag", "description": "Also :thiscanmeananything: emote from [pxls.space](https://pxls.space)", "website": "https://pxls.space", "subreddit": "/r/pxlsspace", "center": [827.5, 696.5], "path": [[824.5, 694.5], [825.5, 694.5], [825.5, 696.5], [824.5, 696.5], [824.5, 697.5], [825.5, 697.5], [825.5, 698.5], [828.5, 698.5], [828.5, 697.5], [829.5, 697.5], [829.5, 694.5], [828.5, 693.5], [825.5, 693.5], [825.5, 694.5], [825.5, 694.5]]}, {"id": "tx1qku", "submitted_by": "GDAndres98", "name": "Frailej\u00f3n Ernesto P\u00e9rez", "description": "Ernesto P\u00e9rez is a character that is part of the Cuentitos M\u00e1gicos series, a Se\u00f1al Colombia production, which has a pedagogical objective for children. He represents an espeletia, commonly known as 'frailejones'.", "website": "https://youtu.be/-1pHqK5YD7s", "subreddit": "", "center": [233.5, 1329.5], "path": [[222.5, 1312.5], [222.5, 1345.5], [245.5, 1345.5], [245.5, 1313.5], [222.5, 1312.5]]}, -{"id": "tx1qgk", "submitted_by": "Sreeper", "name": "Coat of arms of Denmark - The Nordic Union (Denmark)", "description": "The state coat of arms (rigsv\u00e5ben) consists of three pale blue lions passant wearing crowns, accompanied by nine red lilypads (normally represented as heraldic hearts), all in a golden shield with the royal crown on top.", "website": "", "subreddit": "/r/place_nordicunion", "center": [468.5, 200.5], "path": [[468.5, 178.5], [464.5, 182.5], [453.5, 185.5], [458.5, 197.5], [456.5, 215.5], [468.5, 222.5], [479.5, 216.5], [479.5, 208.5], [480.5, 200.5], [477.5, 196.5], [482.5, 188.5], [477.5, 183.5], [472.5, 182.5]]}, +{"id": "tx1qgk", "submitted_by": "Sreeper", "name": "Coat of arms of Denmark", "description": "The state coat of arms (rigsv\u00e5ben) consists of three pale blue lions passant wearing crowns, accompanied by nine red lilypads (normally represented as heraldic hearts), all in a golden shield with the royal crown on top.", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_Denmark", "subreddit": "/r/place_nordicunion", "center": [468.5, 200.5], "path": [[468.5, 178.5], [464.5, 182.5], [453.5, 185.5], [458.5, 197.5], [456.5, 215.5], [468.5, 222.5], [479.5, 216.5], [479.5, 208.5], [480.5, 200.5], [477.5, 196.5], [482.5, 188.5], [477.5, 183.5], [472.5, 182.5]]}, {"id": "tx1pt8", "submitted_by": "Choronos420", "name": "jenominers.de", "description": "Former location of the URL from a small german minecraft server.", "website": "https://jeno-miners.de", "subreddit": "", "center": [1286.5, 931.5], "path": [[1263.5, 928.5], [1263.5, 933.5], [1308.5, 933.5], [1308.5, 928.5], [1263.5, 928.5]]}, -{"id": "tx1pq2", "submitted_by": "PurpleRaven07", "name": "Big Puffer Logo(Destroyed)", "description": "This was the logo of BigPuffer, an american streamer. It got erased due to several attacks", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "tx1peo", "submitted_by": "Piguy922", "name": "Pipi Arrow", "description": "An arrow resembling an indicator that a piece was moved on many chess websites. This arrow represents two jokes;n1. A common joke question in r/AnarchyChess is 'How does the horsey move?' The line is showing that the horsey has moved in a very complex was to get where it is now.n2. A copypasta on r/AnarchyChess talks about 'Doing pipi in your pampers.' This was said by chess player Tigran L. Petrosian after being accused of cheating in an online chess tournament. The arrow spells out 'pipi.'", "website": "", "subreddit": "/r/AnarchyChess", "center": [129.5, 631.5], "path": [[167.5, 646.5], [167.5, 645.5], [168.5, 645.5], [168.5, 644.5], [169.5, 644.5], [169.5, 643.5], [170.5, 643.5], [168.5, 643.5], [168.5, 635.5], [172.5, 635.5], [172.5, 624.5], [171.5, 624.5], [171.5, 622.5], [166.5, 622.5], [166.5, 633.5], [160.5, 633.5], [160.5, 618.5], [159.5, 618.5], [159.5, 617.5], [149.5, 617.5], [148.5, 617.5], [148.5, 616.5], [148.5, 615.5], [149.5, 615.5], [149.5, 614.5], [148.5, 614.5], [148.5, 613.5], [147.5, 613.5], [147.5, 614.5], [148.5, 614.5], [148.5, 615.5], [148.5, 616.5], [147.5, 616.5], [147.5, 617.5], [145.5, 617.5], [145.5, 614.5], [144.5, 614.5], [144.5, 613.5], [139.5, 613.5], [139.5, 617.5], [136.5, 617.5], [136.5, 616.5], [136.5, 615.5], [137.5, 615.5], [137.5, 614.5], [136.5, 614.5], [136.5, 613.5], [135.5, 613.5], [135.5, 614.5], [136.5, 614.5], [136.5, 615.5], [136.5, 616.5], [135.5, 616.5], [135.5, 617.5], [134.5, 617.5], [132.5, 617.5], [132.5, 616.5], [133.5, 616.5], [133.5, 614.5], [132.5, 614.5], [132.5, 613.5], [127.5, 613.5], [127.5, 617.5], [109.5, 617.5], [109.5, 641.5], [89.5, 641.5], [89.5, 648.5], [84.5, 648.5], [84.5, 653.5], [76.5, 653.5], [76.5, 662.5], [75.5, 662.5], [75.5, 663.5], [76.5, 663.5], [77.5, 663.5], [77.5, 664.5], [86.5, 664.5], [86.5, 663.5], [87.5, 663.5], [87.5, 662.5], [88.5, 662.5], [78.5, 662.5], [78.5, 656.5], [79.5, 656.5], [79.5, 655.5], [86.5, 655.5], [86.5, 650.5], [91.5, 650.5], [91.5, 643.5], [111.5, 643.5], [111.5, 619.5], [127.5, 619.5], [127.5, 620.5], [128.5, 620.5], [128.5, 621.5], [129.5, 621.5], [129.5, 619.5], [135.5, 619.5], [135.5, 620.5], [136.5, 620.5], [136.5, 621.5], [137.5, 621.5], [137.5, 619.5], [139.5, 619.5], [139.5, 620.5], [140.5, 620.5], [140.5, 621.5], [141.5, 621.5], [141.5, 619.5], [147.5, 619.5], [147.5, 620.5], [148.5, 620.5], [148.5, 621.5], [149.5, 621.5], [149.5, 619.5], [158.5, 619.5], [158.5, 634.5], [159.5, 635.5], [166.5, 635.5], [166.5, 643.5], [164.5, 643.5], [165.5, 643.5], [165.5, 644.5], [166.5, 644.5], [166.5, 645.5], [167.5, 645.5], [167.5, 646.5]]}, -{"id": "tx1paz", "submitted_by": "Feltarkh200", "name": "Typhou", "description": "A flameless Typhlosion, recurrent meme from the community of French YouTuber Malison", "website": "discord.gg/XH4zJr5", "subreddit": "", "center": [1909.5, 1161.5], "path": [[1905.5, 1166.5], [1905.5, 1160.5], [1907.5, 1156.5], [1912.5, 1156.5], [1914.5, 1161.5], [1914.5, 1164.5], [1909.5, 1166.5]]}, +{"id": "tx1peo", "submitted_by": "Piguy922", "name": "Pipi arrow", "description": "An arrow resembling an indicator that a piece was moved on many chess websites. This arrow represents two jokes:\n1. A common joke question in r/AnarchyChess is 'How does the horsey move?' The line is showing that the horsey has moved in a very complex way to get where it is now.\n2. A copypasta on r/AnarchyChess talks about 'Doing pipi in your pampers.' This was said by chess player Tigran L. Petrosian after being accused of cheating in an online chess tournament. The arrow spells out 'pipi.'", "website": "", "subreddit": "/r/AnarchyChess", "center": [129.5, 631.5], "path": [[167.5, 646.5], [167.5, 645.5], [168.5, 645.5], [168.5, 644.5], [169.5, 644.5], [169.5, 643.5], [170.5, 643.5], [168.5, 643.5], [168.5, 635.5], [172.5, 635.5], [172.5, 624.5], [171.5, 624.5], [171.5, 622.5], [166.5, 622.5], [166.5, 633.5], [160.5, 633.5], [160.5, 618.5], [159.5, 618.5], [159.5, 617.5], [149.5, 617.5], [148.5, 617.5], [148.5, 616.5], [148.5, 615.5], [149.5, 615.5], [149.5, 614.5], [148.5, 614.5], [148.5, 613.5], [147.5, 613.5], [147.5, 614.5], [148.5, 614.5], [148.5, 615.5], [148.5, 616.5], [147.5, 616.5], [147.5, 617.5], [145.5, 617.5], [145.5, 614.5], [144.5, 614.5], [144.5, 613.5], [139.5, 613.5], [139.5, 617.5], [136.5, 617.5], [136.5, 616.5], [136.5, 615.5], [137.5, 615.5], [137.5, 614.5], [136.5, 614.5], [136.5, 613.5], [135.5, 613.5], [135.5, 614.5], [136.5, 614.5], [136.5, 615.5], [136.5, 616.5], [135.5, 616.5], [135.5, 617.5], [134.5, 617.5], [132.5, 617.5], [132.5, 616.5], [133.5, 616.5], [133.5, 614.5], [132.5, 614.5], [132.5, 613.5], [127.5, 613.5], [127.5, 617.5], [109.5, 617.5], [109.5, 641.5], [89.5, 641.5], [89.5, 648.5], [84.5, 648.5], [84.5, 653.5], [76.5, 653.5], [76.5, 662.5], [75.5, 662.5], [75.5, 663.5], [76.5, 663.5], [77.5, 663.5], [77.5, 664.5], [86.5, 664.5], [86.5, 663.5], [87.5, 663.5], [87.5, 662.5], [88.5, 662.5], [78.5, 662.5], [78.5, 656.5], [79.5, 656.5], [79.5, 655.5], [86.5, 655.5], [86.5, 650.5], [91.5, 650.5], [91.5, 643.5], [111.5, 643.5], [111.5, 619.5], [127.5, 619.5], [127.5, 620.5], [128.5, 620.5], [128.5, 621.5], [129.5, 621.5], [129.5, 619.5], [135.5, 619.5], [135.5, 620.5], [136.5, 620.5], [136.5, 621.5], [137.5, 621.5], [137.5, 619.5], [139.5, 619.5], [139.5, 620.5], [140.5, 620.5], [140.5, 621.5], [141.5, 621.5], [141.5, 619.5], [147.5, 619.5], [147.5, 620.5], [148.5, 620.5], [148.5, 621.5], [149.5, 621.5], [149.5, 619.5], [158.5, 619.5], [158.5, 634.5], [159.5, 635.5], [166.5, 635.5], [166.5, 643.5], [164.5, 643.5], [165.5, 643.5], [165.5, 644.5], [166.5, 644.5], [166.5, 645.5], [167.5, 645.5], [167.5, 646.5]]}, +{"id": "tx1paz", "submitted_by": "Feltarkh200", "name": "Typhou", "description": "A flameless Typhlosion, recurrent meme from the community of French YouTuber Malison", "website": "https://discord.gg/XH4zJr5", "subreddit": "", "center": [1909.5, 1161.5], "path": [[1905.5, 1166.5], [1905.5, 1160.5], [1907.5, 1156.5], [1912.5, 1156.5], [1914.5, 1161.5], [1914.5, 1164.5], [1909.5, 1166.5]]}, {"id": "tx1osd", "submitted_by": "Xalts", "name": "Slorgs", "description": "A selection of Slorgs, a slug-like petpet from the virtual pet site Neopets.", "website": "", "subreddit": "/r/neopets", "center": [1312.5, 396.5], "path": [[1306.5, 382.5], [1324.5, 382.5], [1324.5, 387.5], [1327.5, 389.5], [1331.5, 392.5], [1330.5, 394.5], [1334.5, 398.5], [1335.5, 406.5], [1293.5, 406.5], [1293.5, 399.5], [1288.5, 399.5], [1288.5, 391.5], [1289.5, 390.5], [1306.5, 390.5], [1306.5, 382.5]]}, {"id": "tx1onv", "submitted_by": "MrSlaw", "name": "Calgary Flames", "description": "Logo of the Canadian hockey team the Calgary Flames and year they last won the Stanley Cup", "website": "", "subreddit": "/r/calgaryflames", "center": [932.5, 495.5], "path": [[913.5, 482.5], [952.5, 482.5], [951.5, 509.5], [913.5, 509.5]]}, -{"id": "tx1ogh", "submitted_by": "Anaud-E-Moose", "name": "OOOO Fish Emote", "description": "A BetterTTV (Twitch) emote of an excited fish. Added by Destiny's community", "website": "https://betterttv.com/emotes/5e5300e6751afe7d553e4351", "subreddit": "/r/destiny", "center": [463.5, 61.5], "path": [[468.5, 52.5], [461.5, 52.5], [453.5, 60.5], [453.5, 65.5], [458.5, 69.5], [464.5, 69.5], [472.5, 65.5], [470.5, 54.5]]}, -{"id": "tx1og0", "submitted_by": "xJoshuaHx", "name": "Turtle", "description": "Just a small turtle made by some friends. His name is Bud.n", "website": "", "subreddit": "", "center": [884.5, 1514.5], "path": [[881.5, 1512.5], [887.5, 1512.5], [887.5, 1516.5], [881.5, 1516.5]]}, -{"id": "tx1obr", "submitted_by": "Thorifoullean", "name": "ESIEA", "description": "ESIEA is a french engineering school", "website": "https://www.esiea.fr/", "subreddit": "/r/esiea", "center": [1679.5, 42.5], "path": [[1663.5, 36.5], [1663.5, 47.5], [1694.5, 47.5], [1694.5, 36.5], [1663.5, 36.5]]}, +{"id": "tx1ogh", "submitted_by": "Anaud-E-Moose", "name": "OOOO Fish Emote", "description": "A BetterTTV (Better TwitchTV) emote of an excited fish. Added by Destiny's community.", "website": "https://betterttv.com/emotes/5e5300e6751afe7d553e4351", "subreddit": "/r/destiny", "center": [463.5, 61.5], "path": [[468.5, 52.5], [461.5, 52.5], [453.5, 60.5], [453.5, 65.5], [458.5, 69.5], [464.5, 69.5], [472.5, 65.5], [470.5, 54.5]]}, +{"id": "tx1og0", "submitted_by": "xJoshuaHx", "name": "Turtle", "description": "Just a small turtle made by some friends. His name is Bud.", "website": "https://en.wikipedia.org/wiki/Turtle", "subreddit": "", "center": [884.5, 1514.5], "path": [[880.5, 1511.5], [888.5, 1511.5], [888.5, 1517.5], [880.5, 1517.5], [880.5, 1511.5]]}, {"id": "tx1oax", "submitted_by": "Substantial_Bet_166", "name": "Alpha-chan", "description": "A unit from Animdustry: the anime gacha bullet hell rhythm game Mindustry event", "website": "https://github.com/Anuken/animdustry", "subreddit": "/r/Mindustry", "center": [762.5, 784.5], "path": [[753.5, 780.5], [753.5, 774.5], [758.5, 769.5], [766.5, 770.5], [770.5, 772.5], [771.5, 771.5], [771.5, 784.5], [769.5, 786.5], [770.5, 788.5], [770.5, 791.5], [770.5, 796.5], [766.5, 797.5], [766.5, 801.5], [759.5, 801.5], [759.5, 797.5], [757.5, 797.5], [757.5, 796.5], [755.5, 796.5], [755.5, 793.5], [758.5, 793.5], [756.5, 790.5], [756.5, 785.5], [753.5, 783.5], [753.5, 774.5]]}, {"id": "tx1o8q", "submitted_by": "MilkMasterMan", "name": "Vuk", "description": "Character from the Hungarian animated film with the same name, based on the novel Vuk by Istv\u00e1n Fekete.", "website": "", "subreddit": "", "center": [1362.5, 263.5], "path": [[1351.5, 247.5], [1346.5, 249.5], [1343.5, 256.5], [1343.5, 267.5], [1352.5, 275.5], [1353.5, 279.5], [1373.5, 279.5], [1371.5, 275.5], [1376.5, 273.5], [1382.5, 263.5], [1381.5, 251.5], [1378.5, 251.5], [1373.5, 256.5], [1370.5, 252.5], [1359.5, 251.5], [1357.5, 252.5], [1357.5, 251.5], [1355.5, 251.5], [1354.5, 247.5]]}, {"id": "tx1o4r", "submitted_by": "g432kjzhg52176tdasuj", "name": "LowkoTV Badge", "description": "A small version of the 2 year Twitch Subscriber Badge of content creator LowkoTV.", "website": "https://www.twitch.tv/lowkotv", "subreddit": "/r/LowkoTV", "center": [889.5, 1822.5], "path": [[882.5, 1817.5], [895.5, 1817.5], [895.5, 1818.5], [897.5, 1818.5], [897.5, 1822.5], [896.5, 1822.5], [896.5, 1823.5], [895.5, 1823.5], [895.5, 1824.5], [894.5, 1824.5], [894.5, 1825.5], [893.5, 1825.5], [893.5, 1826.5], [892.5, 1826.5], [892.5, 1827.5], [891.5, 1827.5], [891.5, 1828.5], [890.5, 1828.5], [890.5, 1829.5], [889.5, 1829.5], [888.5, 1829.5], [888.5, 1828.5], [887.5, 1828.5], [887.5, 1827.5], [886.5, 1827.5], [886.5, 1826.5], [885.5, 1826.5], [885.5, 1825.5], [884.5, 1825.5], [884.5, 1824.5], [883.5, 1824.5], [883.5, 1823.5], [882.5, 1823.5], [882.5, 1822.5], [881.5, 1822.5], [881.5, 1818.5], [882.5, 1818.5], [882.5, 1817.5]]}, {"id": "tx1o37", "submitted_by": "HelloMegat_000", "name": "SrGuillester (Gd Icon)", "description": "A famous Geometry dash Youtuber/StreamernnThis is a representation of his icon in GD.", "website": "https://www.youtube.com/c/SrGuillester", "subreddit": "", "center": [1164.5, 1391.5], "path": [[1164.5, 1367.5], [1179.5, 1368.5], [1173.5, 1373.5], [1168.5, 1387.5], [1168.5, 1397.5], [1170.5, 1408.5], [1184.5, 1416.5], [1173.5, 1415.5], [1173.5, 1413.5], [1159.5, 1414.5], [1159.5, 1410.5], [1155.5, 1410.5], [1156.5, 1372.5], [1164.5, 1372.5]]}, {"id": "tx1nyb", "submitted_by": "Walnut-Simulacrum", "name": "Slovakian Flag", "description": "The flag of the nation of Slovakia, decorated with artwork celebrating the nation's architecture, geography, and culture.", "website": "", "subreddit": "/r/Slovakia", "center": [403.5, 879.5], "path": [[360.5, 872.5], [446.5, 872.5], [447.5, 873.5], [447.5, 887.5], [364.5, 887.5], [363.5, 886.5], [361.5, 884.5], [359.5, 885.5], [359.5, 872.5]]}, -{"id": "tx1nvg", "submitted_by": "Sreeper", "name": "The Little Mermaid - The Nordic Union (Denmark)", "description": "The Little Mermaid (Danish: Den lille Havfrue) - A very famous statue in Copenhagen, based on the adventure of the same name by Danish author Hans Christian Andersen. The small and unimposing statue is a Copenhagen icon and has been a major tourist attraction since its unveiling in 1913", "website": "", "subreddit": "/r/place_nordicunion", "center": [322.5, 143.5], "path": [[306.5, 154.5], [306.5, 143.5], [314.5, 137.5], [322.5, 118.5], [330.5, 130.5], [329.5, 138.5], [341.5, 151.5], [329.5, 157.5]]}, +{"id": "tx1nvg", "submitted_by": "Sreeper", "name": "The Little Mermaid", "description": "The Little Mermaid (Danish: Den lille Havfrue) is a very famous statue in Copenhagen, based on the adventure of the same name by Danish author Hans Christian Andersen. The small and unimposing statue is a Copenhagen icon and has been a major tourist attraction since its unveiling in 1913", "website": "https://en.wikipedia.org/wiki/The_Little_Mermaid_(statue)", "subreddit": "/r/Denmark", "center": [322.5, 143.5], "path": [[306.5, 154.5], [306.5, 143.5], [314.5, 137.5], [322.5, 118.5], [330.5, 130.5], [329.5, 138.5], [341.5, 151.5], [329.5, 157.5]]}, {"id": "tx1nok", "submitted_by": "GuardianThatDoesStuf", "name": "okpr troll face", "description": "Romainian version of r/okbuddyretard collaborated with r/pMegu from the start of the expansion to keep both artworks alive, and was one of the last romanian places taken by the white void.", "website": "", "subreddit": "/r/okpr", "center": [1690.5, 195.5], "path": [[1683.5, 189.5], [1683.5, 200.5], [1697.5, 200.5], [1697.5, 189.5], [1690.5, 189.5]]}, {"id": "tx1nno", "submitted_by": "Eclipsed_Luna", "name": "Femboy miniflag", "description": "A mini femboy pride flag.nA bigger version has also been built around 245, 940 (southwest).nFemboy, also known as tomgirl, rosboy, janegirl, or calicogirl, is a term for gender non-conforming mingender and miaspec individuals who present femininely in some way. This often refers to clothing and external appearance, but can also sometimes refer to the way one acts, the way one communicates, what interests or hobbies on has, etc. This term has more to do with gender presentation than gender identity, but some femboys may be fingender.", "website": "https://lgbta.miraheze.org/wiki/Femboy", "subreddit": "/r/placepride", "center": [453.5, 593.5], "path": [[448.5, 589.5], [457.5, 589.5], [457.5, 597.5], [448.5, 597.5], [448.5, 589.5]]}, {"id": "tx1nlq", "submitted_by": "Rift-Ranger", "name": "OFN Logo (TNO)", "description": "The logo of the Organization of Free Nations from the Hearts of Iron 4 mod The New Order: Last Days of Europe. Had a collab with r/globaltribe.", "website": "", "subreddit": "/r/TNOmod", "center": [835.5, 156.5], "path": [[826.5, 140.5], [826.5, 165.5], [847.5, 166.5], [847.5, 156.5]]}, @@ -4103,9 +3818,7 @@ {"id": "tx1n75", "submitted_by": "reynkonig", "name": "fiku5golubev", "description": "A small Russian streamer-artist fiku5golubev, known for her art about other streamers and a hestishkin.", "website": "https://twitch.tv/fiku5golubev", "subreddit": "", "center": [1855.5, 1988.5], "path": [[1841.5, 2003.5], [1837.5, 1977.5], [1871.5, 1973.5], [1868.5, 2002.5], [1841.5, 2002.5]]}, {"id": "tx1n57", "submitted_by": "biencriado", "name": "AoE2 Monk and Mangonel", "description": "Monks are military units in the RTS game Age of Empires II, with special abilities such as healing, carrying relics and most notably, converting rival units to the player's side. WOLOLO is the onomatopoeia which refers to the sound monks make when performing conversions. The AoE2 community as an inside joke, switched the monk's robe color between red and blue to exemplify how units look when converted. To the right, there is a mangonel, a siege unit which can be interpreted to be aiming at the monk, who would be in turn, trying to convert it.", "website": "https://www.ageofempires.com/games/aoeiide/", "subreddit": "/r/aoe2", "center": [470.5, 1538.5], "path": [[459.5, 1524.5], [459.5, 1528.5], [459.5, 1529.5], [458.5, 1529.5], [458.5, 1551.5], [479.5, 1551.5], [479.5, 1542.5], [479.5, 1542.5], [485.5, 1542.5], [487.5, 1540.5], [487.5, 1539.5], [478.5, 1530.5], [478.5, 1526.5], [477.5, 1526.5], [477.5, 1524.5], [459.5, 1524.5]]}, {"id": "tx1mcs", "submitted_by": "Vic20problem", "name": "Bound Baby", "description": "A small fetish of a baby wrapped in burlap, known to some as a charm of protection.nA greater will has instructed to share this visage of a bound baby, in exchange for a tremendous reward. Built by the Lobotomite discord server.", "website": "", "subreddit": "", "center": [775.5, 321.5], "path": [[773.5, 317.5], [777.5, 317.5], [777.5, 324.5], [773.5, 324.5]]}, -{"id": "tx1mbi", "submitted_by": "Sterrf_", "name": "Foolish_Gamers and friends", "description": "A collection of art created on and off Twitch stream by Foolish_Gamers and his friends.", "website": "https://www.twitch.tv/foolish_gamers", "subreddit": "/r/FoolishGamers", "center": [1215.5, 1031.5], "path": [[1161.5, 927.5], [1283.5, 927.5], [1286.5, 1125.5], [1130.5, 1122.5], [1129.5, 1039.5], [1161.5, 1039.5], [1161.5, 927.5]]}, {"id": "tx1mal", "submitted_by": "Xalts", "name": "1EX0-L", "description": "The 10-year anniversary logo of k-pop group EXO, and their fanbase EXO-L.", "website": "", "subreddit": "", "center": [1409.5, 558.5], "path": [[1393.5, 555.5], [1393.5, 561.5], [1424.5, 561.5], [1424.5, 555.5], [1393.5, 555.5]]}, -{"id": "tx1lwo", "submitted_by": "linkicito", "name": "ATEEZ cromer", "description": "Cromer of the best 4th GEN K-Pop Group ATEEZ.", "website": "https://twitter.com/ATEEZofficial", "subreddit": "/r/ATEEZ", "center": [0.5, 0.5], "path": []}, {"id": "tx1lvh", "submitted_by": "ciroc__obama", "name": "Rip City", "description": "Portland Trail Blazers Pinwheel logo.", "website": "https://trailblazers.com", "subreddit": "/r/ripcity", "center": [487.5, 1109.5], "path": [[477.5, 1092.5], [477.5, 1125.5], [497.5, 1125.5], [497.5, 1092.5], [486.5, 1092.5], [482.5, 1092.5], [477.5, 1092.5]]}, {"id": "tx1lq5", "submitted_by": "Ash_W1llow", "name": "Condipixel", "description": "Possibly the first pixel placed by the streamer Condifiction. Condipixel served as a beacon of hope for the small team working to build and maintain the JRWI logo.", "website": "https://www.youtube.com/channel/UC6WIYMaGAv-nXrliUb_4RsQ", "subreddit": "", "center": [0.5, 0.5], "path": [[688.5, 1479.5], [688.5, 1479.5], [688.5, 1479.5]]}, {"id": "tx1lha", "submitted_by": "ChartreuseLotus", "name": "NOAA logo", "description": "The logo for the National Oceanic and Atmospheric Administration (NOAA)", "website": "https://noaa.gov", "subreddit": "/r/NOAA", "center": [1733.5, 599.5], "path": [[1733.5, 590.5], [1727.5, 592.5], [1726.5, 594.5], [1723.5, 597.5], [1723.5, 600.5], [1725.5, 604.5], [1727.5, 607.5], [1730.5, 608.5], [1734.5, 608.5], [1737.5, 607.5], [1738.5, 605.5], [1741.5, 604.5], [1741.5, 603.5], [1743.5, 601.5], [1742.5, 596.5], [1741.5, 595.5], [1740.5, 593.5], [1737.5, 591.5]]}, @@ -4118,13 +3831,12 @@ {"id": "tx1jzi", "submitted_by": "Walnut-Simulacrum", "name": "Colombia", "description": "The flag of the nation of Colombia, decorated with artwork celebrating the nation's culture and wildlife.", "website": "", "subreddit": "/r/Colombia", "center": [214.5, 567.5], "path": [[176.5, 554.5], [194.5, 554.5], [194.5, 547.5], [225.5, 547.5], [225.5, 554.5], [249.5, 554.5], [248.5, 563.5], [255.5, 570.5], [256.5, 582.5], [175.5, 582.5]]}, {"id": "tx1jpp", "submitted_by": "DPanther_", "name": "Penn State", "description": "We are...nThe logo for the Pennsylvania State University Nittany Lions.", "website": "https://www.psu.edu/", "subreddit": "/r/PennStateUniversity", "center": [240.5, 617.5], "path": [[257.5, 605.5], [227.5, 605.5], [220.5, 613.5], [222.5, 624.5], [226.5, 629.5], [257.5, 628.5], [257.5, 605.5]]}, {"id": "tx1jp7", "submitted_by": "Xalts", "name": "Yuppie Psycho", "description": "Pixel art of protagonist Brian Pasternack from the 2019 survival horror office game Yuppie Psycho.", "website": "", "subreddit": "", "center": [1410.5, 811.5], "path": [[1402.5, 807.5], [1418.5, 807.5], [1418.5, 814.5], [1412.5, 814.5], [1412.5, 816.5], [1402.5, 816.5], [1402.5, 807.5]]}, -{"id": "tx1jmj", "submitted_by": "Piguy922", "name": "Rook a4", "description": "An inside joke among r/AnarchyChess users. A chess disstrack was released by 'Young ELO' that had the line, 'I saw Rook a4, I just didn't like it,' in response to popular chess YouTuber, 'GothamChess' saying that he should have seen the move Rook a4, which would have trapped the opponent's Queen in the game he was playing.", "website": "", "subreddit": "/r/AnarchyChess", "center": [77.5, 649.5], "path": [[82.5, 641.5], [78.5, 641.5], [78.5, 642.5], [77.5, 642.5], [77.5, 647.5], [72.5, 647.5], [72.5, 651.5], [73.5, 651.5], [73.5, 655.5], [72.5, 655.5], [72.5, 656.5], [73.5, 656.5], [73.5, 657.5], [74.5, 657.5], [74.5, 658.5], [78.5, 658.5], [78.5, 652.5], [78.5, 651.5], [79.5, 651.5], [79.5, 647.5], [82.5, 647.5], [82.5, 646.5], [83.5, 646.5], [83.5, 642.5], [82.5, 642.5], [82.5, 641.5]]}, +{"id": "tx1jmj", "submitted_by": "Piguy922", "name": "Rook a4", "description": "An inside joke among r/AnarchyChess users. A chess diss track was released by 'Young ELO' that had the line, 'I saw Rook a4, I just didn't like it,' in response to popular chess YouTuber 'GothamChess' saying that he should have seen the move Rook a4, which would have trapped the opponent's queen in the game he was playing.", "website": "", "subreddit": "/r/AnarchyChess", "center": [77.5, 649.5], "path": [[82.5, 641.5], [78.5, 641.5], [78.5, 642.5], [77.5, 642.5], [77.5, 647.5], [72.5, 647.5], [72.5, 651.5], [73.5, 651.5], [73.5, 655.5], [72.5, 655.5], [72.5, 656.5], [73.5, 656.5], [73.5, 657.5], [74.5, 657.5], [74.5, 658.5], [78.5, 658.5], [78.5, 652.5], [78.5, 651.5], [79.5, 651.5], [79.5, 647.5], [82.5, 647.5], [82.5, 646.5], [83.5, 646.5], [83.5, 642.5], [82.5, 642.5], [82.5, 641.5]]}, {"id": "tx1jk7", "submitted_by": "Yonbi", "name": "P\u00f4le Emploi", "description": "A French organisation for unemployment. They're >supposed< to help people find a new job, but really their only real use is about giving monthly allowances", "website": "", "subreddit": "", "center": [1075.5, 1748.5], "path": [[1071.5, 1742.5], [1079.5, 1742.5], [1079.5, 1754.5], [1071.5, 1754.5], [1071.5, 1742.5]]}, {"id": "tx1jk5", "submitted_by": "acmilanpixel", "name": "AC Milan heart", "description": "A heart made with the colour scheme of AC Milan football club and the abbreviation of the name on top", "website": "", "subreddit": "/r/ACMilan", "center": [1041.5, 1104.5], "path": [[1041.5, 1113.5], [1047.5, 1107.5], [1047.5, 1098.5], [1035.5, 1098.5], [1035.5, 1107.5], [1041.5, 1113.5]]}, {"id": "tx1ji8", "submitted_by": "HelBlurSis", "name": "el semaforo cachero", "description": "This is a traffic light, it means our contribution of our small comunity, we were like 6 hours to make this 11 pixels (originaly) <3", "website": "https://www.twitch.tv/helblursis", "subreddit": "", "center": [1044.5, 354.5], "path": [[1041.5, 350.5], [1048.5, 350.5], [1043.5, 363.5]]}, {"id": "tx1jc5", "submitted_by": "Jimmy_the_squaremell", "name": "Mori and Moka", "description": "Mori and Moka are siblings. Moka (right) is the younger sibling, though they are taller. They will guard us from the void.", "website": "", "subreddit": "/r/OriAndTheBlindForest", "center": [1050.5, 518.5], "path": [[1040.5, 510.5], [1040.5, 515.5], [1039.5, 515.5], [1039.5, 520.5], [1040.5, 520.5], [1040.5, 523.5], [1041.5, 523.5], [1041.5, 526.5], [1047.5, 526.5], [1047.5, 527.5], [1050.5, 527.5], [1050.5, 528.5], [1053.5, 528.5], [1053.5, 529.5], [1054.5, 529.5], [1054.5, 528.5], [1055.5, 528.5], [1056.5, 527.5], [1056.5, 526.5], [1058.5, 526.5], [1058.5, 527.5], [1059.5, 527.5], [1059.5, 529.5], [1060.5, 529.5], [1060.5, 510.5], [1040.5, 510.5]]}, {"id": "tx1j4f", "submitted_by": "dragon246887", "name": "AMOGUS!!!", "description": "SUS", "website": "", "subreddit": "", "center": [1582.5, 1926.5], "path": [[1583.5, 1928.5], [1583.5, 1926.5], [1584.5, 1926.5], [1584.5, 1925.5], [1583.5, 1925.5], [1583.5, 1924.5], [1581.5, 1924.5], [1581.5, 1928.5], [1581.5, 1927.5], [1582.5, 1927.5]]}, -{"id": "tx1j3h", "submitted_by": "Vakeros", "name": "ESIEA", "description": "\u00c9cole sup\u00e9rieure d'informatique, \u00e9lectronique, automatique is a French engineering school.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx1j0m", "submitted_by": "lumapbk", "name": "Denmark's flag", "description": "Small flag made by the denmark community", "website": "", "subreddit": "/r/denmark", "center": [800.5, 1307.5], "path": [[789.5, 1302.5], [811.5, 1302.5], [811.5, 1311.5], [789.5, 1312.5]]}, {"id": "twt5nd", "submitted_by": "2ndaccont", "name": "John Egbert", "description": "The protagonist of the webcomic Homestuck. The 413 represents russian group Legion 413, named after a key number in the webcomic, who designed the pixel art.", "website": "https://vk.com/legion413", "subreddit": "/r/homestuck", "center": [215.5, 112.5], "path": [[212.5, 125.5], [223.5, 125.5], [223.5, 100.5], [207.5, 100.5], [207.5, 121.5], [212.5, 121.5], [212.5, 125.5], [223.5, 125.5], [212.5, 125.5], [212.5, 119.5]]}, {"id": "tx1i9j", "submitted_by": "Xalts", "name": "Doki Doki Literature Club", "description": "The 2017 visual-novel-slash-psychological-horror game by Team Salvato", "website": "", "subreddit": "", "center": [1471.5, 782.5], "path": [[1461.5, 772.5], [1471.5, 772.5], [1471.5, 781.5], [1486.5, 781.5], [1486.5, 789.5], [1461.5, 789.5], [1461.5, 773.5]]}, @@ -4133,21 +3845,20 @@ {"id": "tx1hje", "submitted_by": "hto_dog_van", "name": "Tinny", "description": "A small tin can full of beans.", "website": "", "subreddit": "/r/Fincunder", "center": [1218.5, 884.5], "path": [[1216.5, 885.5], [1215.5, 884.5], [1216.5, 885.5], [1216.5, 883.5], [1215.5, 883.5], [1215.5, 882.5], [1218.5, 882.5], [1219.5, 882.5], [1220.5, 882.5], [1221.5, 884.5], [1221.5, 886.5], [1218.5, 886.5], [1215.5, 886.5], [1214.5, 883.5], [1215.5, 883.5]]}, {"id": "tx1hit", "submitted_by": "BruoniusLTU", "name": "Flag Of Lithuania", "description": "The 4th Flag Of Lithuania to be added to the canvas", "website": "", "subreddit": "/r/lithuania", "center": [575.5, 1635.5], "path": [[525.5, 1624.5], [525.5, 1646.5], [624.5, 1646.5], [624.5, 1623.5]]}, {"id": "tx1hf5", "submitted_by": "z_o_o_m", "name": "Battlebots", "description": "The first Battlebots logo was once accompanied by the Giant Nut (trophy for the champion of the show) to the left and Rusty (a fan favorite bot) on the land occupied by Westminster Palace. Despite being wiped multiple times due to its adjacency to the UK, it was present at the conclusion, albeit rotated 90 degrees. The larger and more well-defined Battlebots logo can be found a bit below Germany's AmongUs column.", "website": "https://battlebots.com/", "subreddit": "/r/battlebots", "center": [681.5, 562.5], "path": [[678.5, 557.5], [678.5, 566.5], [684.5, 566.5], [684.5, 557.5]]}, -{"id": "tx1h84", "submitted_by": "Walnut-Simulacrum", "name": "2007scape", "description": "A reference to r/2007Scape, a subreddit dedicated to discussing Old School RuneScape, the official legacy version of the MMO videogame RuneScape.", "website": "", "subreddit": "/r/2007Scape", "center": [105.5, 58.5], "path": [[87.5, 55.5], [122.5, 55.5], [122.5, 61.5], [87.5, 61.5]]}, +{"id": "tx1h84", "submitted_by": "Walnut-Simulacrum", "name": "r/2007scape", "description": "A reference to r/2007Scape, a subreddit dedicated to discussing Old School RuneScape, the official legacy version of the MMO video game RuneScape.", "website": "https://oldschool.runescape.com/", "subreddit": "/r/2007Scape", "center": [105.5, 58.5], "path": [[87.5, 55.5], [122.5, 55.5], [122.5, 61.5], [87.5, 61.5]]}, {"id": "tx1gud", "submitted_by": "oliythecreepr", "name": "Bamboozler (Splatoon)", "description": "The most meme'd weapon in the Splatoon community ('pew' is the sound it makes, design shortened to represent the Bamboozler Propaganda icon)", "website": "https://twitter.com/BamboozlerMemes", "subreddit": "[/r/Splatoon](/r/Splatoon", "center": [1357.5, 1851.5], "path": [[1365.5, 1843.5], [1365.5, 1858.5], [1349.5, 1858.5], [1349.5, 1843.5]]}, -{"id": "tx1glz", "submitted_by": "MarcelMiner", "name": "Map of Greenland", "description": "A map of Greenland the world's largest island.", "website": "", "subreddit": "/r/Greenland", "center": [487.5, 190.5], "path": [[488.5, 185.5], [487.5, 185.5], [487.5, 186.5], [485.5, 186.5], [485.5, 187.5], [484.5, 187.5], [484.5, 188.5], [483.5, 188.5], [484.5, 189.5], [484.5, 190.5], [485.5, 191.5], [485.5, 193.5], [486.5, 194.5], [487.5, 195.5], [488.5, 194.5], [488.5, 193.5], [489.5, 192.5], [490.5, 191.5], [490.5, 189.5], [489.5, 188.5], [489.5, 186.5]]}, +{"id": "tx1glz", "submitted_by": "MarcelMiner", "name": "Map of Greenland", "description": "A map of Greenland, the world's largest island.", "website": "https://en.wikipedia.org/wiki/Greenland", "subreddit": "/r/Greenland", "center": [487.5, 190.5], "path": [[488.5, 185.5], [487.5, 185.5], [487.5, 186.5], [485.5, 186.5], [485.5, 187.5], [484.5, 187.5], [484.5, 188.5], [483.5, 188.5], [484.5, 189.5], [484.5, 190.5], [485.5, 191.5], [485.5, 193.5], [486.5, 194.5], [487.5, 195.5], [488.5, 194.5], [488.5, 193.5], [489.5, 192.5], [490.5, 191.5], [490.5, 189.5], [489.5, 188.5], [489.5, 186.5]]}, {"id": "tx1gka", "submitted_by": "Micker003", "name": "Eindhoven University of Technology", "description": "This is the logo of the Eindhoven University of Technology, an university in the south of the Netherlands.", "website": "https://www.tue.nl/en/", "subreddit": "/r/TUe", "center": [1925.5, 40.5], "path": [[1919.5, 36.5], [1913.5, 36.5], [1913.5, 44.5], [1937.5, 44.5], [1937.5, 36.5], [1919.5, 36.5]]}, {"id": "tx1ghf", "submitted_by": "Sreeper", "name": "Taskbar: The Nordic Union", "description": "The Nordic Union's taskbar logo.", "website": "", "subreddit": "/r/place_nordicunion", "center": [850.5, 1986.5], "path": [[835.5, 1972.5], [834.5, 2000.5], [866.5, 2000.5], [866.5, 1972.5]]}, {"id": "tx1g6f", "submitted_by": "More-Parfait-2901", "name": "D12", "description": "D12 was an American hip hop collective from Detroit, Michigan. Formed in 1996, the group achieved mainstream success with its lineup of de facto leader Eminem, Proof, Bizarre, Mr. Porter, Kuniva and Swifty McVay. D12 had chart-topping albums in the United States, United Kingdom, and Australia during the early 2000s.", "website": "https://www.shadyrecords.com/artist/d12-2/", "subreddit": "/r/Eminem", "center": [900.5, 995.5], "path": [[898.5, 991.5], [901.5, 991.5], [901.5, 998.5], [898.5, 998.5], [898.5, 991.5]]}, -{"id": "tx1g07", "submitted_by": "Piguy922", "name": "FIDE Brick", "description": "An inside joke among r/AnarchyChess users. It is said that if given the opportunity to perform en passant in a chess game, and the player rejects it, they must 'drop a brick on their pipi.'nFIDE is an international chess organization. The brick is a FIDE certified brick provided in every chess set.", "website": "", "subreddit": "/r/AnarchyChess", "center": [109.5, 666.5], "path": [[99.5, 660.5], [121.5, 660.5], [121.5, 670.5], [120.5, 670.5], [120.5, 671.5], [119.5, 671.5], [119.5, 672.5], [97.5, 672.5], [97.5, 671.5], [96.5, 671.5], [96.5, 663.5], [97.5, 663.5], [97.5, 662.5], [98.5, 662.5], [98.5, 661.5], [99.5, 661.5], [99.5, 660.5]]}, +{"id": "tx1g07", "submitted_by": "Piguy922", "name": "FIDE brick", "description": "An inside joke among r/AnarchyChess users. It is said that if given the opportunity to perform en passant in a chess game, and the player rejects it, they must 'drop a brick on their pipi.'nFIDE is an international chess organization. The brick is a FIDE-certified brick provided in every chess set.", "website": "", "subreddit": "/r/AnarchyChess", "center": [109.5, 666.5], "path": [[99.5, 660.5], [121.5, 660.5], [121.5, 670.5], [120.5, 670.5], [120.5, 671.5], [119.5, 671.5], [119.5, 672.5], [97.5, 672.5], [97.5, 671.5], [96.5, 671.5], [96.5, 663.5], [97.5, 663.5], [97.5, 662.5], [98.5, 662.5], [98.5, 661.5], [99.5, 661.5], [99.5, 660.5]]}, {"id": "tx1fny", "submitted_by": "Charak-V", "name": "Jadez", "description": "A beautiful streamer for a beautiful audience \ud83d\udc8b", "website": "https://www.twitch.tv/jadez", "subreddit": "", "center": [1845.5, 78.5], "path": [[1844.5, 57.5], [1844.5, 67.5], [1843.5, 67.5], [1843.5, 94.5], [1848.5, 94.5], [1848.5, 66.5], [1844.5, 57.5]]}, {"id": "tx1fmg", "submitted_by": "LordLapis126", "name": "ETH Zurich", "description": "The collective project of the Swiss Federal Institute of Technology Zurich.", "website": "", "subreddit": "/r/ethz", "center": [985.5, 1765.5], "path": [[978.5, 1769.5], [978.5, 1761.5], [992.5, 1761.5], [992.5, 1769.5]]}, {"id": "tx1fm0", "submitted_by": "No-Introduction-225", "name": "APC9 logo", "description": "The logo of a Discord server, gained the respect of the entire Metroid community with their help adjusting and defending.", "website": "", "subreddit": "", "center": [1888.5, 495.5], "path": [[1883.5, 489.5], [1893.5, 489.5], [1893.5, 501.5], [1883.5, 501.5], [1883.5, 489.5]]}, {"id": "tx1epe", "submitted_by": "Vakeros", "name": "VA-11 Hall-A : Waifu bartending", "description": "Cyberpunk Bartender Action is a booze em' up about waifus, technology, and post-dystopia life. Also comes with banger musics.", "website": "", "subreddit": "/r/waifubartending", "center": [1527.5, 478.5], "path": [[1502.5, 474.5], [1551.5, 474.5], [1551.5, 482.5], [1502.5, 482.5]]}, {"id": "tx1eck", "submitted_by": "More-Parfait-2901", "name": "Recovery", "description": "Recovery is the seventh studio album by American rapper Eminem. It was released on June 18, 2010, by Aftermath Entertainment, Shady Records, and Interscope Records.", "website": "https://eminem.com", "subreddit": "/r/Eminem", "center": [897.5, 985.5], "path": [[894.5, 982.5], [899.5, 982.5], [899.5, 983.5], [900.5, 984.5], [900.5, 987.5], [899.5, 987.5], [899.5, 988.5], [898.5, 988.5], [898.5, 989.5], [895.5, 989.5], [895.5, 988.5], [894.5, 988.5], [894.5, 987.5], [893.5, 987.5], [893.5, 984.5], [894.5, 984.5], [894.5, 982.5]]}, -{"id": "tx1e9a", "submitted_by": "MarcelMiner", "name": "Coat of arms of Greenland", "description": "A blue shield with an upright polar bear.", "website": "", "subreddit": "/r/Greenland", "center": [487.5, 203.5], "path": [[483.5, 197.5], [483.5, 207.5], [484.5, 207.5], [484.5, 208.5], [485.5, 208.5], [485.5, 209.5], [488.5, 209.5], [488.5, 208.5], [489.5, 208.5], [489.5, 207.5], [490.5, 207.5], [490.5, 197.5]]}, +{"id": "tx1e9a", "submitted_by": "MarcelMiner", "name": "Coat of arms of Greenland", "description": "A blue shield with an upright polar bear.", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_Greenland", "subreddit": "/r/Greenland", "center": [487.5, 203.5], "path": [[483.5, 197.5], [483.5, 207.5], [484.5, 207.5], [484.5, 208.5], [485.5, 208.5], [485.5, 209.5], [488.5, 209.5], [488.5, 208.5], [489.5, 208.5], [489.5, 207.5], [490.5, 207.5], [490.5, 197.5]]}, {"id": "tx1e19", "submitted_by": "Walnut-Simulacrum", "name": "Netherlands Flag", "description": "The Flag of the Netherlands. It is used both by the Kingdom of the Netherlands and by it's constituent nation, the Netherlands. This is the second of two major instances of the flag on r/Place 2022.", "website": "", "subreddit": "/r/PlaceNL", "center": [756.5, 1960.5], "path": [[539.5, 1948.5], [996.5, 1951.5], [996.5, 1954.5], [965.5, 1970.5], [539.5, 1970.5]]}, -{"id": "tx1dz1", "submitted_by": "asslickercumfarter", "name": "Ultraw Games", "description": "Ultraw Games (UG) is a popular roblox developer group that has created games such as Restaurant Tycoon 1 and 2, Clone Tycoon and more.", "website": "https://www.roblox.com/groups/5018665/Ultraw-Games#!/about", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx1dth", "submitted_by": "m1ksuFI", "name": "James Webb Space Telescope", "description": "NASA's James Webb Space Telescope (JWST) is the successor to the highly successful Hubble telescope. It is recognizable from its beehive-esque mirror, comprised of 18 hexagonal tiles.", "website": "https://jwst.nasa.gov/", "subreddit": "/r/jameswebb", "center": [1021.5, 403.5], "path": [[1011.5, 384.5], [1032.5, 384.5], [1032.5, 404.5], [1034.5, 407.5], [1034.5, 413.5], [1032.5, 414.5], [1032.5, 421.5], [1010.5, 422.5], [1010.5, 413.5], [1008.5, 411.5], [1008.5, 407.5], [1010.5, 405.5]]}, {"id": "tx1drr", "submitted_by": "FerretDionysus", "name": "Tulpa Symbol", "description": "A symbol for tulpas, sentient mental companions.", "website": "", "subreddit": "/r/Tulpas", "center": [1873.5, 657.5], "path": [[1869.5, 653.5], [1877.5, 653.5], [1877.5, 661.5], [1869.5, 661.5], [1869.5, 653.5]]}, {"id": "tx1db1", "submitted_by": "remuslovegood", "name": "axolotl in a bucket", "description": "the cutest minecraft mob", "website": "", "subreddit": "", "center": [1189.5, 316.5], "path": [[1184.5, 314.5], [1184.5, 316.5], [1184.5, 317.5], [1185.5, 317.5], [1185.5, 315.5], [1185.5, 316.5], [1186.5, 315.5], [1186.5, 314.5], [1187.5, 315.5], [1189.5, 315.5], [1190.5, 315.5], [1190.5, 314.5], [1191.5, 315.5], [1192.5, 315.5], [1192.5, 314.5], [1192.5, 316.5], [1192.5, 317.5], [1191.5, 317.5], [1191.5, 318.5], [1190.5, 318.5], [1190.5, 317.5], [1189.5, 317.5], [1189.5, 318.5], [1188.5, 318.5], [1188.5, 317.5], [1187.5, 317.5], [1187.5, 318.5], [1186.5, 318.5], [1186.5, 317.5], [1185.5, 317.5], [1185.5, 318.5], [1184.5, 317.5], [1192.5, 314.5], [1190.5, 314.5], [1191.5, 316.5], [1185.5, 316.5]]}, @@ -4164,7 +3875,6 @@ {"id": "tx1b0p", "submitted_by": "meemo4556", "name": "Flipnote Studio Frog", "description": "The mascot of the Flipnote Studio application for the Nintendo DSi, created by Sudomemo, a Flipnote Hatena revival service.", "website": "https://www.sudomemo.net", "subreddit": "/r/sudomemo", "center": [1993.5, 875.5], "path": [[1986.5, 879.5], [1986.5, 875.5], [1987.5, 875.5], [1987.5, 873.5], [1988.5, 873.5], [1988.5, 870.5], [1989.5, 870.5], [1989.5, 869.5], [1992.5, 869.5], [1992.5, 870.5], [1993.5, 870.5], [1993.5, 869.5], [1996.5, 869.5], [1996.5, 870.5], [1997.5, 870.5], [1997.5, 873.5], [1998.5, 873.5], [1998.5, 875.5], [1999.5, 875.5], [1999.5, 880.5], [1986.5, 880.5], [1986.5, 879.5]]}, {"id": "tx1aw4", "submitted_by": "mushymochii", "name": "K2 (Mili)", "description": "Originally located on a chessboard around the top of the upper-right quadrant (RIP to LongLostBean, crying Isaac, and many others), K2 is one of many characters created by Japanese indie band, Mili. It appears on the cover of their 1st mini-album, Hue, which was released on the 24th of May, 2017. K2 also appears in their music video, Iron Lotus, alive and fully-animated with butt-jiggle physics.", "website": "http://projectmili.com/", "subreddit": "/r/mili", "center": [1211.5, 376.5], "path": [[1206.5, 370.5], [1215.5, 370.5], [1215.5, 381.5], [1206.5, 381.5], [1206.5, 370.5]]}, {"id": "tx1at1", "submitted_by": "More-Parfait-2901", "name": "Music To Be Murdered By", "description": "Music to Be Murdered By is the eleventh studio album by American rapper Eminem. It was released on January 17, 2020, by Shady Records, Aftermath Entertainment, and Interscope Records.", "website": "https://eminem.com", "subreddit": "/r/Eminem", "center": [866.5, 987.5], "path": [[863.5, 984.5], [868.5, 984.5], [868.5, 989.5], [863.5, 989.5]]}, -{"id": "tx1are", "submitted_by": "Peeuu", "name": "UT Dallas", "description": "The University of Texas at Dallas. The artwork features the university mascot Temoc.", "website": "https://www.utdallas.edu/", "subreddit": "/r/utdallas", "center": [0.5, 0.5], "path": []}, {"id": "tx1amc", "submitted_by": "Zmito26", "name": "xXxTheFocuSxXx", "description": "Minecraft face of the Spanish streamer xXxTheFocuSxXx", "website": "https://www.twitch.tv/xxxthefocusxxx", "subreddit": "", "center": [1582.5, 632.5], "path": [[1577.5, 626.5], [1587.5, 626.5], [1587.5, 637.5], [1577.5, 637.5], [1577.5, 626.5]]}, {"id": "tx1ajn", "submitted_by": "DiBiSo_02", "name": "JB17 AH19 tribute", "description": "A tribute to Jules Bianchi, Anthoine Hubert and a red halo in honor of Nikki Lauda.", "website": "", "subreddit": "/r/formula1", "center": [554.5, 766.5], "path": [[537.5, 763.5], [570.5, 763.5], [570.5, 769.5], [537.5, 769.5], [537.5, 763.5]]}, {"id": "tx1ahc", "submitted_by": "Nickitolas", "name": "The Rust Programming Language", "description": "The symbol of the Rust programming language, a black cog with an R inside.\nAllied with r/waifubartending (Va11halla)'s Jill drawing early on the 3rd day.", "website": "https://rust-lang.org", "subreddit": "/r/rust", "center": [498.5, 1584.5], "path": [[493.5, 1579.5], [502.5, 1579.5], [502.5, 1588.5], [493.5, 1588.5]]}, @@ -4172,21 +3882,20 @@ {"id": "tx1a8w", "submitted_by": "lazumitos", "name": "rapturrs", "description": "quality pepega streamer. Spanish streamer with varied content but the same opens stream at 4 in the afternoon than at 2 in the morning, come see it! streamer espa\u00f1ol con contenido variado pero lo mismo te abre stream a las 4 de la tarde que a las 2 de la ma\u00f1ana, p\u00e1sate a verlo!", "website": "https://www.twitch.tv/rapturrs", "subreddit": "", "center": [1107.5, 1297.5], "path": [[1083.5, 1292.5], [1131.5, 1292.5], [1131.5, 1302.5], [1083.5, 1302.5], [1083.5, 1292.5], [1083.5, 1302.5]]}, {"id": "tx1a6n", "submitted_by": "DPanther_", "name": "Floppa", "description": "A caracal cat and unofficial mascot of r/196. Often seen accompanied with a bottle of Fanta labeled 'Fanter' and in reaction gifs during 'Floppa Friday'.", "website": "", "subreddit": "/r/196", "center": [233.5, 639.5], "path": [[224.5, 629.5], [230.5, 633.5], [235.5, 633.5], [241.5, 629.5], [238.5, 635.5], [241.5, 638.5], [241.5, 645.5], [239.5, 646.5], [226.5, 646.5], [224.5, 644.5], [224.5, 638.5], [228.5, 635.5], [224.5, 629.5]]}, {"id": "tx19xe", "submitted_by": "Horsefur", "name": "Electric Forest", "description": "Electric Forest (EF) is a four day and one weekend multi-genre event with a focus on electronic music and jam band genres. EF and Riley formed an alliance in an attempt to keep EF safe.", "website": "", "subreddit": "/r/ElectricForest", "center": [874.5, 1252.5], "path": [[878.5, 1258.5], [868.5, 1258.5], [868.5, 1250.5], [873.5, 1250.5], [877.5, 1245.5], [878.5, 1243.5], [879.5, 1242.5], [880.5, 1243.5], [880.5, 1249.5], [878.5, 1249.5], [878.5, 1258.5]]}, -{"id": "tx19wn", "submitted_by": "ArcAngela", "name": "Starbound", "description": "An emblem from the indie game Starbound. It takes place in a two-dimensional, procedurally generated universe which the player is able to explore in order to obtain new weapons, armor, and items, and to visit towns and villages inhabited by various intelligent lifeforms.\nDespite its location on the canvas, it was well-protected by the ENA Alliance and the Green Lattice.", "website": "https://playstarbound.com/", "subreddit": "/r/starbound", "center": [1112.5, 1793.5], "path": [[1104.5, 1786.5], [1104.5, 1786.5], [1120.5, 1786.5], [1120.5, 1800.5], [1104.5, 1800.5]]}, +{"id": "tx19wn", "submitted_by": "ArcAngela", "name": "Starbound", "description": "An emblem from the indie game Starbound. It takes place in a two-dimensional, procedurally generated universe which the player is able to explore in order to obtain new weapons, armor, and items, and to visit towns and villages inhabited by various intelligent lifeforms.\nDespite its location on the canvas, it was well-protected by the ENA Alliance and the Green Lattice.\n\nThe emblem depicts a star rising over a planet. Each one of the six colored squares represents a race's artifact. From top to bottom: Avian, Glitch, Human, Floran, Apex, and Hylotl.", "website": "https://playstarbound.com/", "subreddit": "/r/starbound", "center": [1112.5, 1793.5], "path": [[1104.5, 1786.5], [1104.5, 1786.5], [1120.5, 1786.5], [1120.5, 1800.5], [1104.5, 1800.5]]}, {"id": "tx19uc", "submitted_by": "Vakeros", "name": "INP group", "description": "Logo of a the french engineering school group INP", "website": "", "subreddit": "", "center": [714.5, 1119.5], "path": [[708.5, 1115.5], [719.5, 1115.5], [719.5, 1123.5], [708.5, 1123.5]]}, {"id": "tx19qy", "submitted_by": "SwellerGrain", "name": "sekiZ", "description": "Emote of the Dragon Boss Sekine", "website": "https://www.twitch.tv/sukisekine", "subreddit": "", "center": [679.5, 1111.5], "path": [[668.5, 1100.5], [690.5, 1100.5], [690.5, 1122.5], [668.5, 1122.5], [668.5, 1110.5], [668.5, 1100.5]]}, -{"id": "tx19os", "submitted_by": "MarcelMiner", "name": "Flag of Greenland", "description": "", "website": "", "subreddit": "/r/Greenland", "center": [497.5, 174.5], "path": [[474.5, 148.5], [474.5, 184.5], [478.5, 184.5], [478.5, 185.5], [479.5, 185.5], [480.5, 185.5], [480.5, 186.5], [481.5, 186.5], [481.5, 190.5], [481.5, 191.5], [480.5, 191.5], [480.5, 192.5], [479.5, 192.5], [479.5, 195.5], [478.5, 195.5], [478.5, 196.5], [477.5, 196.5], [477.5, 198.5], [478.5, 198.5], [478.5, 199.5], [479.5, 199.5], [479.5, 202.5], [478.5, 202.5], [478.5, 207.5], [479.5, 207.5], [479.5, 213.5], [487.5, 213.5], [487.5, 214.5], [489.5, 214.5], [489.5, 215.5], [490.5, 215.5], [490.5, 216.5], [491.5, 216.5], [491.5, 217.5], [492.5, 217.5], [492.5, 218.5], [493.5, 218.5], [493.5, 219.5], [495.5, 220.5], [495.5, 216.5], [499.5, 216.5], [499.5, 215.5], [500.5, 215.5], [500.5, 212.5], [499.5, 212.5], [499.5, 206.5], [498.5, 206.5], [498.5, 197.5], [497.5, 197.5], [497.5, 195.5], [496.5, 195.5], [496.5, 184.5], [497.5, 184.5], [497.5, 183.5], [498.5, 183.5], [498.5, 182.5], [499.5, 182.5], [499.5, 181.5], [500.5, 181.5], [500.5, 180.5], [501.5, 180.5], [501.5, 179.5], [503.5, 179.5], [503.5, 178.5], [509.5, 178.5], [509.5, 177.5], [517.5, 177.5], [517.5, 178.5], [520.5, 178.5], [520.5, 179.5], [522.5, 179.5], [522.5, 180.5], [523.5, 180.5], [523.5, 181.5], [524.5, 181.5], [524.5, 182.5], [525.5, 182.5], [525.5, 183.5], [526.5, 183.5], [526.5, 184.5], [527.5, 186.5], [527.5, 149.5], [475.5, 148.5]]}, +{"id": "tx19os", "submitted_by": "MarcelMiner", "name": "Flag of Greenland", "description": "", "website": "https://en.wikipedia.org/wiki/Greenland", "subreddit": "/r/Greenland", "center": [497.5, 174.5], "path": [[474.5, 148.5], [474.5, 184.5], [478.5, 184.5], [478.5, 185.5], [479.5, 185.5], [480.5, 185.5], [480.5, 186.5], [481.5, 186.5], [481.5, 190.5], [481.5, 191.5], [480.5, 191.5], [480.5, 192.5], [479.5, 192.5], [479.5, 195.5], [478.5, 195.5], [478.5, 196.5], [477.5, 196.5], [477.5, 198.5], [478.5, 198.5], [478.5, 199.5], [479.5, 199.5], [479.5, 202.5], [478.5, 202.5], [478.5, 207.5], [479.5, 207.5], [479.5, 213.5], [487.5, 213.5], [487.5, 214.5], [489.5, 214.5], [489.5, 215.5], [490.5, 215.5], [490.5, 216.5], [491.5, 216.5], [491.5, 217.5], [492.5, 217.5], [492.5, 218.5], [493.5, 218.5], [493.5, 219.5], [495.5, 220.5], [495.5, 216.5], [499.5, 216.5], [499.5, 215.5], [500.5, 215.5], [500.5, 212.5], [499.5, 212.5], [499.5, 206.5], [498.5, 206.5], [498.5, 197.5], [497.5, 197.5], [497.5, 195.5], [496.5, 195.5], [496.5, 184.5], [497.5, 184.5], [497.5, 183.5], [498.5, 183.5], [498.5, 182.5], [499.5, 182.5], [499.5, 181.5], [500.5, 181.5], [500.5, 180.5], [501.5, 180.5], [501.5, 179.5], [503.5, 179.5], [503.5, 178.5], [509.5, 178.5], [509.5, 177.5], [517.5, 177.5], [517.5, 178.5], [520.5, 178.5], [520.5, 179.5], [522.5, 179.5], [522.5, 180.5], [523.5, 180.5], [523.5, 181.5], [524.5, 181.5], [524.5, 182.5], [525.5, 182.5], [525.5, 183.5], [526.5, 183.5], [526.5, 184.5], [527.5, 186.5], [527.5, 149.5], [475.5, 148.5]]}, {"id": "tx19l5", "submitted_by": "FerretDionysus", "name": "Plural Rings", "description": "The plural rings, a symbol for plurality. Plurality is having more than one person in a single body.", "website": "", "subreddit": "/r/plural", "center": [1859.5, 656.5], "path": [[1850.5, 648.5], [1868.5, 648.5], [1868.5, 664.5], [1850.5, 664.5], [1850.5, 648.5]]}, -{"id": "tx196a", "submitted_by": "Khabi715", "name": "Washington State University Logo", "description": "Logo of Washington State University, located in Pullman, WA and rival of the University of Washington. Go Cougs!", "website": "www.wsu.edu", "subreddit": "/r/wsu", "center": [881.5, 527.5], "path": [[873.5, 520.5], [889.5, 520.5], [889.5, 534.5], [873.5, 534.5], [873.5, 520.5]]}, -{"id": "tx18t1", "submitted_by": "Piguy922", "name": "En Passant", "description": "En passant is a obscure move in chess, where if a pawn moves two spaces, an opposing pawn can capture it as if it had only moved one space. It has become a joke among r/AnarchyChess users that en passant is a 'forced move' meaning it must be preformed whenever given the opportunity.n'Holy Hell!' is the response one Reddit user had to being told 'Google en passant.' This has become the biggest inside joke in the community.", "website": "", "subreddit": "/r/AnarchyChess", "center": [147.5, 645.5], "path": [[135.5, 659.5], [160.5, 659.5], [160.5, 636.5], [158.5, 636.5], [158.5, 635.5], [157.5, 635.5], [157.5, 629.5], [143.5, 629.5], [142.5, 629.5], [142.5, 632.5], [134.5, 632.5], [134.5, 643.5], [135.5, 643.5], [135.5, 659.5]]}, +{"id": "tx196a", "submitted_by": "Khabi715", "name": "Washington State University Logo", "description": "Logo of Washington State University, located in Pullman, WA and rival of the University of Washington. Go Cougs!", "website": "https://www.wsu.edu", "subreddit": "/r/wsu", "center": [881.5, 527.5], "path": [[873.5, 520.5], [889.5, 520.5], [889.5, 534.5], [873.5, 534.5], [873.5, 520.5]]}, +{"id": "tx18t1", "submitted_by": "Piguy922", "name": "En passant", "description": "En passant is a obscure move in chess where if a pawn moves two spaces, an opposing pawn can capture it as if it had only moved one space. It has become a joke among r/AnarchyChess users that en passant is a 'forced move', meaning it must be performed whenever given the opportunity.\n'Holy Hell!' is the response one Reddit user had to being told 'Google en passant.' This has become the biggest inside joke in the community.", "website": "https://en.wikipedia.org/wiki/En_passant", "subreddit": "/r/AnarchyChess", "center": [147.5, 645.5], "path": [[135.5, 659.5], [160.5, 659.5], [160.5, 636.5], [158.5, 636.5], [158.5, 635.5], [157.5, 635.5], [157.5, 629.5], [143.5, 629.5], [142.5, 629.5], [142.5, 632.5], [134.5, 632.5], [134.5, 643.5], [135.5, 643.5], [135.5, 659.5]]}, {"id": "tx18sw", "submitted_by": "Walnut-Simulacrum", "name": "Puerto Rico Flag", "description": "The flag of the Commonwealth of Puerto Rico (PR), an unincorporated territory of the United States of America.", "website": "", "subreddit": "/r/PuertoRico", "center": [775.5, 514.5], "path": [[763.5, 507.5], [787.5, 507.5], [787.5, 521.5], [763.5, 521.5]]}, {"id": "tx18sb", "submitted_by": "notuobmit", "name": "HLG", "description": "Hidden League GamingnA tricking community hiding for the win in multiplayer. Mostly only active on Halo in the past few years.nLogo made by Hidden Reach with the help of the Halo Tricking Community.", "website": "https://www.youtube.com/user/HiddenReach", "subreddit": "", "center": [1205.5, 79.5], "path": [[1194.5, 74.5], [1215.5, 74.5], [1215.5, 83.5], [1194.5, 83.5], [1194.5, 74.5]]}, {"id": "tx18qu", "submitted_by": "AKettleOFish", "name": "Dross from Cradle", "description": "A picture of Dross from the fantasy series Cradle written by New York Times best selling author Will Wight. n Iteration 110 is the planet that is the setting for the series.", "website": "https://www.willwight.com/", "subreddit": "/r/Iteration110Cradle", "center": [937.5, 1218.5], "path": [[926.5, 1205.5], [926.5, 1223.5], [926.5, 1224.5], [925.5, 1224.5], [926.5, 1235.5], [949.5, 1235.5], [949.5, 1228.5], [948.5, 1228.5], [948.5, 1203.5], [946.5, 1203.5], [946.5, 1202.5], [944.5, 1201.5], [944.5, 1200.5], [942.5, 1200.5], [942.5, 1199.5], [940.5, 1198.5], [934.5, 1198.5], [930.5, 1201.5], [926.5, 1205.5], [926.5, 1205.5]]}, {"id": "tx18is", "submitted_by": "auronpleis", "name": "Auronplay", "description": "Emote known as auronLUIS from the famous streamer and youtuber Auronplay built by his community.", "website": "https://www.twitch.tv/auronplay", "subreddit": "", "center": [1552.5, 1627.5], "path": [[1533.5, 1610.5], [1571.5, 1609.5], [1570.5, 1645.5], [1533.5, 1645.5]]}, -{"id": "tx1893", "submitted_by": "codper3", "name": "FIDE Brick", "description": "The standard brick issued for use when en passant is declined, the brick must strike the pipi with full force", "website": "https://www.google.com/search?q=en+passant&rlz=1C5CHFA_enGB949GB949&oq=en+passant&aqs=chrome..69i57j0i433i512j0i512l4j46i512j69i60.2318j0j4&sourceid=chrome&ie=UTF-8", "subreddit": "/r/anarchychess", "center": [109.5, 666.5], "path": [[121.5, 672.5], [96.5, 672.5], [96.5, 660.5], [121.5, 660.5]]}, {"id": "tx17w5", "submitted_by": "StrykerX7", "name": "Cerberus", "description": "An investment group on the GTA5 roleplay server NoPixel owned by characters played by Twitch streamers dwjft, Nidas, buddha, and Harry.", "website": "https://nopixel.fandom.com/wiki/Cerberus", "subreddit": "", "center": [1347.5, 733.5], "path": [[1336.5, 710.5], [1354.5, 710.5], [1354.5, 714.5], [1363.5, 724.5], [1364.5, 752.5], [1330.5, 752.5], [1330.5, 728.5], [1336.5, 722.5]]}, {"id": "tx17tu", "submitted_by": "Horsefur", "name": "Nepal x Riley Alliance Heart", "description": "After both being relocated from the canvas due to grief, Nepal and Riley teamed up to defend each others territory to keep each other in r/Place. Being in different time zones, Riley was able to protect Nepal while they slept and Nepal protected Riley during their sleep.", "website": "", "subreddit": "/r/Nepal, /u/Horsefur", "center": [1502.5, 953.5], "path": [[1499.5, 953.5], [1502.5, 956.5], [1505.5, 953.5], [1505.5, 952.5], [1504.5, 951.5], [1502.5, 951.5], [1502.5, 952.5], [1501.5, 951.5], [1500.5, 951.5], [1499.5, 952.5]]}, -{"id": "tx17tj", "submitted_by": "Perfect_Ranger_3060", "name": "MindCrack", "description": "A group of youtubers and content creators that primarily play Minecraft. Includes Baj, Kurtjmac, and Guude.", "website": "https://www.mindcracklp.com/", "subreddit": "/r/mindcrack", "center": [1822.5, 424.5], "path": [[1828.5, 430.5], [1813.5, 430.5], [1813.5, 423.5], [1820.5, 423.5], [1820.5, 415.5], [1828.5, 415.5]]}, +{"id": "tx17tj", "submitted_by": "Perfect_Ranger_3060", "name": "Mindcrack", "description": "A group of youtubers and content creators that primarily play Minecraft. Includes Baj, Kurtjmac, and Guude.", "website": "https://www.mindcracklp.com/", "subreddit": "/r/mindcrack", "center": [1822.5, 424.5], "path": [[1828.5, 430.5], [1813.5, 430.5], [1813.5, 423.5], [1820.5, 423.5], [1820.5, 415.5], [1828.5, 415.5]]}, {"id": "tx17jq", "submitted_by": "Spiritual_Shirt4156", "name": "deo", "description": "the name of it's creator, deo. After originally being blasted by Mega Man's beam, it was moved to right above r/LandoftheLustrous, and through an alliance and working together, was eventually absorbed into it's protection alongside SFC.", "website": "https://twitter.com/deomazu_", "subreddit": "", "center": [1569.5, 484.5], "path": [[1562.5, 480.5], [1562.5, 488.5], [1576.5, 488.5], [1576.5, 480.5]]}, {"id": "tx178r", "submitted_by": "ethelis", "name": "Flag of British Columbia", "description": "The provincial flag of British Columbia", "website": "", "subreddit": "/r/britishcolumbia", "center": [183.5, 487.5], "path": [[175.5, 480.5], [191.5, 480.5], [191.5, 493.5], [175.5, 493.5], [175.5, 493.5], [175.5, 480.5]]}, {"id": "tx175q", "submitted_by": "raytci", "name": "Celeste Berries", "description": "Berries are collectibles from the game Celeste. The berries here depict, from left to right, a Winged Berry, a Moonberry and a Winged Golden Berry.", "website": "", "subreddit": "/r/celestegame", "center": [542.5, 23.5], "path": [[510.5, 16.5], [579.5, 17.5], [562.5, 30.5], [545.5, 34.5], [535.5, 29.5], [514.5, 29.5], [510.5, 17.5]]}, @@ -4204,16 +3913,14 @@ {"id": "tx1516", "submitted_by": "Therailfan", "name": "Gaugepunk Games Logo", "description": "The logo of Gaugepunk Games, developers of the model railway sim Rolling Line", "website": "", "subreddit": "/r/rollingline", "center": [188.5, 340.5], "path": [[191.5, 336.5], [184.5, 336.5], [184.5, 343.5], [191.5, 343.5]]}, {"id": "tx150n", "submitted_by": "No-Introduction-225", "name": "Metroid and Argentina Collaboration", "description": "A small Metroid sprite in the colors of the Argentina flag added to the country's garden area.", "website": "", "subreddit": "/r/Argentina, /r/metroid", "center": [961.5, 673.5], "path": [[962.5, 669.5], [965.5, 670.5], [965.5, 674.5], [962.5, 677.5], [959.5, 677.5], [957.5, 674.5], [958.5, 671.5], [960.5, 669.5], [962.5, 669.5]]}, {"id": "tx14ty", "submitted_by": "Yvouuu", "name": "Alain Prost Helmet", "description": "Alain Prost is a French F1 racing driver. Four Times World Champion with 51 Grand Prix Victories.", "website": "https://en.wikipedia.org/wiki/Alain_Prost", "subreddit": "/r/alainprost", "center": [1182.5, 776.5], "path": [[1173.5, 776.5], [1178.5, 769.5], [1185.5, 769.5], [1190.5, 773.5], [1190.5, 779.5], [1187.5, 781.5], [1174.5, 781.5], [1173.5, 779.5], [1173.5, 776.5]]}, -{"id": "tx141t", "submitted_by": "Vakeros", "name": "Starcraft Protoss Probe", "description": "Starting protoss unit in Starcraft 2", "website": "", "subreddit": "/r/starcraft2", "center": [1795.5, 1733.5], "path": [[1796.5, 1722.5], [1797.5, 1725.5], [1799.5, 1728.5], [1801.5, 1731.5], [1801.5, 1735.5], [1805.5, 1739.5], [1786.5, 1739.5], [1787.5, 1737.5], [1790.5, 1735.5], [1790.5, 1731.5], [1791.5, 1731.5], [1792.5, 1728.5], [1793.5, 1726.5], [1796.5, 1722.5]]}, {"id": "tx13x6", "submitted_by": "Ranxib", "name": "UTD", "description": "The University of Texas at Dallas. Mascot is Temoc the Comet.nThere's also no football team here...", "website": "https://www.utdallas.edu/", "subreddit": "", "center": [1273.5, 1870.5], "path": [[1257.5, 1865.5], [1289.5, 1865.5], [1289.5, 1874.5], [1257.5, 1874.5]]}, {"id": "tx13rn", "submitted_by": "Skieblu", "name": "Micaiah", "description": "Micaiah is one of the protagonists in Fire Emblem: Radiant Dawn (released in 2007). She is a magic user and the de facto leader of the Dawn Brigade.", "website": "https://fireemblem.fandom.com/wiki/Micaiah", "subreddit": "/r/Fireemblem", "center": [482.5, 1382.5], "path": [[490.5, 1375.5], [486.5, 1375.5], [486.5, 1374.5], [484.5, 1372.5], [479.5, 1372.5], [477.5, 1374.5], [477.5, 1377.5], [478.5, 1378.5], [476.5, 1380.5], [475.5, 1380.5], [473.5, 1378.5], [472.5, 1378.5], [472.5, 1379.5], [474.5, 1381.5], [475.5, 1381.5], [476.5, 1382.5], [477.5, 1382.5], [477.5, 1383.5], [476.5, 1384.5], [475.5, 1384.5], [474.5, 1385.5], [473.5, 1385.5], [472.5, 1386.5], [471.5, 1387.5], [471.5, 1391.5], [477.5, 1385.5], [478.5, 1385.5], [479.5, 1386.5], [476.5, 1389.5], [480.5, 1390.5], [480.5, 1391.5], [481.5, 1392.5], [481.5, 1394.5], [482.5, 1394.5], [484.5, 1392.5], [484.5, 1391.5], [483.5, 1390.5], [484.5, 1389.5], [485.5, 1390.5], [486.5, 1390.5], [487.5, 1391.5], [488.5, 1390.5], [489.5, 1390.5], [489.5, 1388.5], [490.5, 1387.5], [490.5, 1385.5], [488.5, 1383.5], [489.5, 1382.5], [489.5, 1380.5], [487.5, 1378.5]]}, {"id": "tx13qt", "submitted_by": "MachoTaco24", "name": "The Colorado Avalanche", "description": "The logo of the National Hockey Leagues' Colorado Avalanche.", "website": "", "subreddit": "/r/ColoradoAvalanche", "center": [1450.5, 50.5], "path": [[1432.5, 63.5], [1467.5, 63.5], [1467.5, 35.5], [1442.5, 35.5], [1432.5, 44.5]]}, {"id": "tx13el", "submitted_by": "Azera_", "name": "Epita", "description": "Epita is a French computer science engineering school.", "website": "https://www.epita.fr/", "subreddit": "", "center": [1210.5, 321.5], "path": [[1190.5, 320.5], [1205.5, 308.5], [1210.5, 307.5], [1213.5, 309.5], [1219.5, 308.5], [1223.5, 310.5], [1223.5, 313.5], [1230.5, 323.5], [1227.5, 326.5], [1231.5, 329.5], [1217.5, 330.5], [1213.5, 331.5], [1212.5, 338.5], [1206.5, 334.5], [1204.5, 333.5], [1199.5, 333.5], [1199.5, 330.5], [1193.5, 329.5], [1194.5, 326.5], [1193.5, 324.5]]}, -{"id": "tx13df", "submitted_by": "lizzardsucc", "name": "Cleveland Browns", "description": "Art done by the community of the official r/browns discord server", "website": "", "subreddit": "/r/browns", "center": [1024.5, 501.5], "path": [[1003.5, 510.5], [1003.5, 486.5], [1020.5, 487.5], [1020.5, 502.5], [1046.5, 502.5], [1046.5, 497.5], [1056.5, 497.5], [1056.5, 510.5], [1003.5, 510.5]]}, {"id": "tx13a8", "submitted_by": "SkipiusHDLP", "name": "Albion Online", "description": "Albion Online is a free medieval fantasy MMORPG developed by Sandbox Interactive, a studio based in Berlin, Germany.", "website": "https://albiononline.com", "subreddit": "/r/albiononline", "center": [1549.5, 76.5], "path": [[1538.5, 65.5], [1538.5, 86.5], [1559.5, 86.5], [1559.5, 65.5], [1559.5, 65.5]]}, {"id": "tx12zx", "submitted_by": "Dan4rescue", "name": "TinyShy", "description": "A very small depiction of u/TwitterShy's pony character. After two earlier attempts elsewhere on the canvas were overrun within hours, this one survived thanks to the kind offer of an alliance from the builders of Scott Munley.", "website": "", "subreddit": "", "center": [939.5, 1527.5], "path": [[937.5, 1525.5], [937.5, 1526.5], [938.5, 1528.5], [942.5, 1528.5], [938.5, 1525.5]]}, {"id": "tx12ms", "submitted_by": "Eclipsed_Luna", "name": "Demiromantic miniflag", "description": "A mini demiromantic pride flag.nDemiromantic is a romantic orientation on the aromantic spectrum defined as someone who does not experience romantic attraction until they have formed a deep emotional connection with someone. This connection may be sexual, platonic, or another form/combination of forms, depending on the demiromantic individual. Forming an emotional bond with someone does not mean that one is automatically attracted to said individual, as it just means there's now a possibility for one to feel attraction.nThe sexual equivalent is demisexual, which uses the same flag as demiromantic but with the green stripe changed to purple. The demisexual flag is about 10 pixels below the demiromantic flag.", "website": "https://lgbta.miraheze.org/wiki/Demiromantic", "subreddit": "/r/placepride", "center": [453.5, 605.5], "path": [[448.5, 602.5], [457.5, 602.5], [457.5, 608.5], [448.5, 608.5], [448.5, 602.5]]}, -{"id": "tx12h5", "submitted_by": "Abelos", "name": "Dutch moon", "description": "Superstonk line crashes into a Dutch moon", "website": "", "subreddit": "", "center": [1986.5, 18.5], "path": [[1976.5, 11.5], [1974.5, 14.5], [1973.5, 19.5], [1973.5, 23.5], [1975.5, 26.5], [1980.5, 29.5], [1986.5, 30.5], [1992.5, 30.5], [1995.5, 29.5], [1997.5, 24.5], [1998.5, 16.5], [1996.5, 9.5], [1992.5, 6.5], [1988.5, 5.5], [1984.5, 5.5], [1981.5, 10.5], [1978.5, 12.5], [1977.5, 11.5]]}, +{"id": "tx12h5", "submitted_by": "Abelos", "name": "Dutch moon", "description": "Superstonk line crashes into a Dutch moon", "website": "", "subreddit": "/r/PlaceNL, /r/Superstonk", "center": [1986.5, 18.5], "path": [[1976.5, 11.5], [1974.5, 14.5], [1973.5, 19.5], [1973.5, 23.5], [1975.5, 26.5], [1980.5, 29.5], [1986.5, 30.5], [1992.5, 30.5], [1995.5, 29.5], [1997.5, 24.5], [1998.5, 16.5], [1996.5, 9.5], [1992.5, 6.5], [1988.5, 5.5], [1984.5, 5.5], [1981.5, 10.5], [1978.5, 12.5], [1977.5, 11.5]]}, {"id": "tx12bf", "submitted_by": "MachoTaco24", "name": "The New York Rangers", "description": "The logo of the NAtional Hockey Leagues' New York Rangers, as well as a commemoration towards recently retired goaltender Henrik Lundqvist, who donned the number 30 on his hockey uniform.", "website": "", "subreddit": "/r/Rangers", "center": [1423.5, 42.5], "path": [[1432.5, 50.5], [1432.5, 44.5], [1442.5, 35.5], [1410.5, 35.5], [1410.5, 50.5]]}, {"id": "tx128w", "submitted_by": "valekd", "name": "Nantes University", "description": "Logo from Nantes University", "website": "https://www.univ-nantes.fr/", "subreddit": "", "center": [1934.5, 64.5], "path": [[1927.5, 55.5], [1941.5, 72.5], [1927.5, 72.5], [1927.5, 55.5], [1941.5, 55.5], [1941.5, 72.5], [1934.5, 65.5]]}, {"id": "tx11wh", "submitted_by": "JoshPoshTheGreat", "name": "Fives' Five", "description": "The symbol of clone trooper Fives from the TV show Star Wars: The Clone Wars (2008)", "website": "", "subreddit": "/r/clonewars", "center": [520.5, 1465.5], "path": [[517.5, 1462.5], [523.5, 1462.5], [523.5, 1468.5], [517.5, 1468.5]]}, @@ -4225,9 +3932,8 @@ {"id": "tx119i", "submitted_by": "skrillyd", "name": "[pxls.space](https://pxls.space)", "description": "[pxls.space](https://pxls.space) is a clone of r/place running since 2017. They have characters featured based on community culture. This group were one of the closest allies with osu.", "website": "https://pxls.space", "subreddit": "/r/pxlsspace", "center": [808.5, 722.5], "path": [[777.5, 734.5], [777.5, 718.5], [785.5, 718.5], [785.5, 717.5], [783.5, 717.5], [782.5, 717.5], [780.5, 717.5], [780.5, 716.5], [779.5, 716.5], [777.5, 716.5], [777.5, 714.5], [778.5, 714.5], [778.5, 713.5], [780.5, 713.5], [780.5, 714.5], [781.5, 714.5], [781.5, 713.5], [782.5, 713.5], [782.5, 711.5], [784.5, 711.5], [784.5, 712.5], [784.5, 710.5], [785.5, 710.5], [785.5, 708.5], [786.5, 708.5], [791.5, 708.5], [791.5, 710.5], [792.5, 710.5], [792.5, 712.5], [793.5, 712.5], [797.5, 712.5], [797.5, 713.5], [803.5, 713.5], [803.5, 714.5], [804.5, 714.5], [804.5, 712.5], [803.5, 712.5], [803.5, 711.5], [802.5, 708.5], [805.5, 708.5], [805.5, 707.5], [807.5, 707.5], [807.5, 708.5], [808.5, 708.5], [808.5, 709.5], [809.5, 709.5], [809.5, 713.5], [810.5, 713.5], [810.5, 712.5], [812.5, 712.5], [815.5, 712.5], [815.5, 713.5], [816.5, 713.5], [816.5, 714.5], [818.5, 714.5], [818.5, 713.5], [819.5, 713.5], [819.5, 712.5], [820.5, 712.5], [820.5, 711.5], [821.5, 711.5], [821.5, 710.5], [824.5, 710.5], [824.5, 707.5], [825.5, 707.5], [825.5, 706.5], [827.5, 706.5], [827.5, 707.5], [830.5, 707.5], [830.5, 708.5], [831.5, 708.5], [831.5, 709.5], [832.5, 709.5], [832.5, 710.5], [834.5, 710.5], [834.5, 717.5], [833.5, 717.5], [833.5, 717.5], [833.5, 718.5], [834.5, 718.5], [836.5, 718.5], [836.5, 719.5], [838.5, 719.5], [839.5, 720.5], [839.5, 728.5], [840.5, 728.5], [840.5, 734.5], [832.5, 734.5], [785.5, 734.5], [777.5, 734.5], [777.5, 734.5]]}, {"id": "tx10v1", "submitted_by": "JoJonase", "name": "Purple Kiss Logo", "description": "Logo of the kpop girl group purple kiss who debuted in 2021 under RBW.", "website": "", "subreddit": "/r/PurpleKiss", "center": [1528.5, 893.5], "path": [[1524.5, 890.5], [1524.5, 896.5], [1532.5, 896.5], [1532.5, 890.5], [1524.5, 890.5]]}, {"id": "tx10pe", "submitted_by": "Star4461", "name": "Vancouver Canucks", "description": "A professional ice hockey team based in Vancouver, British Columbia, Canada.", "website": "", "subreddit": "/r/canucks", "center": [890.5, 470.5], "path": [[911.5, 509.5], [911.5, 450.5], [866.5, 450.5], [866.5, 485.5], [906.5, 485.5], [906.5, 509.5], [911.5, 509.5]]}, -{"id": "tx10go", "submitted_by": "Piguy922", "name": "Chessboard", "description": "A chessboard made by r/AnarchyChess. Many inside jokes from the sub are included on the board, as well as various other subs.", "website": "", "subreddit": "/r/AnarchyChess", "center": [124.5, 661.5], "path": [[81.5, 607.5], [151.5, 607.5], [151.5, 609.5], [151.5, 609.5], [174.5, 609.5], [174.5, 712.5], [71.5, 712.5], [71.5, 643.5], [77.5, 643.5], [77.5, 631.5], [73.5, 631.5], [73.5, 632.5], [72.5, 632.5], [72.5, 633.5], [71.5, 633.5], [71.5, 634.5], [71.5, 631.5], [72.5, 631.5], [73.5, 631.5], [73.5, 630.5], [74.5, 630.5], [75.5, 630.5], [75.5, 629.5], [76.5, 629.5], [76.5, 628.5], [77.5, 628.5], [77.5, 627.5], [78.5, 627.5], [78.5, 626.5], [79.5, 626.5], [79.5, 625.5], [80.5, 625.5], [80.5, 622.5], [81.5, 622.5], [81.5, 620.5], [82.5, 620.5], [82.5, 612.5], [81.5, 612.5], [81.5, 608.5], [80.5, 608.5], [80.5, 607.5], [81.5, 607.5]]}, +{"id": "tx10go", "submitted_by": "Piguy922", "name": "Chessboard", "description": "A chessboard made by r/AnarchyChess. Many inside jokes from the subreddit are included on the board, as well as various other subreddits.", "website": "https://en.wikipedia.org/wiki/Chessboard", "subreddit": "/r/AnarchyChess", "center": [124.5, 661.5], "path": [[81.5, 607.5], [151.5, 607.5], [151.5, 609.5], [151.5, 609.5], [174.5, 609.5], [174.5, 712.5], [71.5, 712.5], [71.5, 643.5], [77.5, 643.5], [77.5, 631.5], [73.5, 631.5], [73.5, 632.5], [72.5, 632.5], [72.5, 633.5], [71.5, 633.5], [71.5, 634.5], [71.5, 631.5], [72.5, 631.5], [73.5, 631.5], [73.5, 630.5], [74.5, 630.5], [75.5, 630.5], [75.5, 629.5], [76.5, 629.5], [76.5, 628.5], [77.5, 628.5], [77.5, 627.5], [78.5, 627.5], [78.5, 626.5], [79.5, 626.5], [79.5, 625.5], [80.5, 625.5], [80.5, 622.5], [81.5, 622.5], [81.5, 620.5], [82.5, 620.5], [82.5, 612.5], [81.5, 612.5], [81.5, 608.5], [80.5, 608.5], [80.5, 607.5], [81.5, 607.5]]}, {"id": "tx10e8", "submitted_by": "Zmito26", "name": "Karchez", "description": "Logo and Minecraft face of the Spanish streamer Karchez, with more than 1 millon followers.", "website": "https://www.twitch.tv/karchez", "subreddit": "", "center": [1782.5, 593.5], "path": [[1773.5, 577.5], [1773.5, 592.5], [1759.5, 592.5], [1759.5, 605.5], [1759.5, 606.5], [1800.5, 606.5], [1800.5, 577.5], [1773.5, 577.5]]}, -{"id": "tx0zoj", "submitted_by": "Flor12344", "name": "The coat of arms of Denmark", "description": "", "website": "", "subreddit": "", "center": [468.5, 201.5], "path": [[467.5, 220.5], [469.5, 220.5], [470.5, 219.5], [474.5, 219.5], [475.5, 218.5], [476.5, 217.5], [477.5, 216.5], [478.5, 215.5], [478.5, 208.5], [477.5, 207.5], [477.5, 202.5], [478.5, 201.5], [478.5, 200.5], [477.5, 199.5], [476.5, 198.5], [476.5, 196.5], [477.5, 195.5], [478.5, 194.5], [478.5, 192.5], [479.5, 191.5], [480.5, 190.5], [480.5, 187.5], [479.5, 186.5], [478.5, 186.5], [477.5, 185.5], [474.5, 185.5], [473.5, 184.5], [471.5, 184.5], [470.5, 183.5], [469.5, 182.5], [469.5, 181.5], [468.5, 179.5], [467.5, 181.5], [467.5, 182.5], [466.5, 183.5], [466.5, 184.5], [463.5, 184.5], [462.5, 185.5], [458.5, 185.5], [456.5, 187.5], [456.5, 190.5], [457.5, 191.5], [458.5, 192.5], [458.5, 194.5], [459.5, 195.5], [460.5, 196.5], [460.5, 198.5], [459.5, 199.5], [458.5, 200.5], [458.5, 201.5], [459.5, 202.5], [459.5, 207.5], [458.5, 208.5], [458.5, 214.5], [458.5, 215.5], [459.5, 216.5], [460.5, 217.5], [461.5, 218.5], [463.5, 218.5], [463.5, 219.5], [466.5, 219.5], [466.5, 220.5], [467.5, 220.5]]}, {"id": "tx0zj4", "submitted_by": "Solmiedo", "name": "R\u00e9gie Finale", "description": "RF sur mire de barres nPar la r\u00e9gie finale (FR)", "website": "", "subreddit": "", "center": [1281.5, 1259.5], "path": [[1277.5, 1255.5], [1285.5, 1255.5], [1285.5, 1262.5], [1277.5, 1262.5], [1277.5, 1255.5]]}, {"id": "tx0zih", "submitted_by": "Colouss", "name": "Yuzusoft", "description": "A visual novel company based in Japan, Specializing in fluffy romance with interesting plots that is beloved by visual novel enthusiasts", "website": "https://mobile.twitter.com/yuzusoft", "subreddit": "/r/visualnovel", "center": [1453.5, 505.5], "path": [[1472.5, 508.5], [1472.5, 502.5], [1433.5, 502.5], [1433.5, 508.5]]}, {"id": "tx0z0r", "submitted_by": "RafevHexyn", "name": "Vira-lata Caramelo", "description": "Brazilian's iconic mutt dog, it normally defies the laws of physics by appearing everywhere around the country.", "website": "", "subreddit": "/r/Brasil", "center": [1156.5, 578.5], "path": [[1139.5, 584.5], [1139.5, 582.5], [1140.5, 582.5], [1141.5, 581.5], [1141.5, 580.5], [1142.5, 580.5], [1143.5, 579.5], [1144.5, 578.5], [1144.5, 576.5], [1143.5, 575.5], [1143.5, 573.5], [1142.5, 572.5], [1141.5, 571.5], [1140.5, 570.5], [1141.5, 569.5], [1142.5, 568.5], [1143.5, 568.5], [1144.5, 567.5], [1151.5, 567.5], [1152.5, 568.5], [1155.5, 568.5], [1156.5, 569.5], [1162.5, 569.5], [1163.5, 570.5], [1165.5, 570.5], [1166.5, 571.5], [1167.5, 572.5], [1168.5, 573.5], [1169.5, 574.5], [1170.5, 575.5], [1170.5, 576.5], [1171.5, 577.5], [1172.5, 576.5], [1173.5, 575.5], [1174.5, 574.5], [1175.5, 573.5], [1176.5, 572.5], [1177.5, 572.5], [1177.5, 573.5], [1177.5, 574.5], [1176.5, 575.5], [1175.5, 576.5], [1174.5, 577.5], [1173.5, 578.5], [1172.5, 579.5], [1171.5, 580.5], [1170.5, 581.5], [1170.5, 582.5], [1169.5, 583.5], [1169.5, 584.5], [1169.5, 585.5], [1166.5, 585.5], [1166.5, 586.5], [1165.5, 587.5], [1154.5, 587.5], [1153.5, 586.5], [1152.5, 585.5], [1151.5, 585.5], [1150.5, 586.5], [1149.5, 586.5], [1148.5, 587.5], [1147.5, 588.5], [1147.5, 589.5], [1146.5, 589.5], [1144.5, 589.5], [1143.5, 588.5], [1143.5, 587.5], [1143.5, 586.5], [1144.5, 586.5], [1145.5, 585.5], [1146.5, 584.5], [1145.5, 583.5], [1144.5, 583.5], [1143.5, 584.5], [1142.5, 585.5], [1142.5, 586.5], [1141.5, 586.5], [1140.5, 586.5], [1139.5, 585.5]]}, @@ -4242,17 +3948,15 @@ {"id": "tx0xyt", "submitted_by": "MrNarwhal1234", "name": "r/Nerf", "description": "a small art peice depicting a nerf dart/bullet used with the common toy guns of the same name made by r/nerf on reddit", "website": "", "subreddit": "/r/Nerf", "center": [534.5, 895.5], "path": [[555.5, 891.5], [555.5, 899.5], [513.5, 899.5], [513.5, 891.5], [554.5, 891.5]]}, {"id": "tx0xva", "submitted_by": "Kek-Jong-Un", "name": "Subnautica", "description": "Subnautica is an open world deep sea exloration game and also the most relaxing horror game in the world", "website": "https://unknownworlds.com/", "subreddit": "/r/subnautica", "center": [1967.5, 413.5], "path": [[1948.5, 422.5], [1948.5, 416.5], [1956.5, 416.5], [1957.5, 399.5], [1974.5, 400.5], [1973.5, 415.5], [1988.5, 415.5], [1988.5, 422.5], [1948.5, 422.5]]}, {"id": "tx0wr8", "submitted_by": "xRGTMX", "name": "Tatsumaki (Tornado)", "description": "character from Japanese superhero franchise One Punch Man", "website": "", "subreddit": "/r/OnePunchMan", "center": [1990.5, 1552.5], "path": [[1989.5, 1548.5], [1986.5, 1551.5], [1984.5, 1551.5], [1984.5, 1555.5], [1996.5, 1555.5], [1996.5, 1551.5], [1994.5, 1551.5], [1994.5, 1550.5], [1993.5, 1549.5], [1992.5, 1549.5], [1991.5, 1548.5]]}, -{"id": "tx0wnb", "submitted_by": "jennaboy", "name": "Hermitcraft <3 Brasil", "description": "Maybe we can be neighbours again some time..", "website": "", "subreddit": "", "center": [929.5, 587.5], "path": [[929.5, 585.5], [929.5, 585.5], [929.5, 585.5], [929.5, 585.5], [929.5, 585.5], [929.5, 585.5], [929.5, 585.5], [929.5, 585.5], [930.5, 584.5], [930.5, 584.5], [931.5, 584.5], [931.5, 584.5], [932.5, 585.5], [932.5, 585.5], [933.5, 586.5], [933.5, 586.5], [933.5, 588.5], [933.5, 588.5], [932.5, 589.5], [932.5, 589.5], [931.5, 590.5], [931.5, 590.5], [930.5, 591.5], [930.5, 591.5], [929.5, 592.5], [929.5, 592.5], [928.5, 591.5], [928.5, 591.5], [927.5, 590.5], [927.5, 590.5], [926.5, 589.5], [926.5, 589.5], [925.5, 588.5], [925.5, 588.5], [925.5, 586.5], [925.5, 586.5], [926.5, 585.5], [926.5, 585.5], [927.5, 584.5], [927.5, 584.5], [927.5, 584.5], [928.5, 584.5], [928.5, 584.5], [929.5, 585.5], [929.5, 585.5]]}, {"id": "tx0wlb", "submitted_by": "elibug54", "name": "RV-PV Logo", "description": "Remnants of the Void (RV) and Phantom Vanguard (PV) are two allied clans on the PC version of Warframe.", "website": "https://discord.gg/rv-pv", "subreddit": "", "center": [607.5, 1600.5], "path": [[592.5, 1596.5], [621.5, 1596.5], [621.5, 1604.5], [592.5, 1604.5]]}, {"id": "tx0wjy", "submitted_by": "Just_A_Frange", "name": "xXxTheFocuSxXx", "description": "Minecraft skin of the Spanish streamer Focus, a terrible crow", "website": "https://www.twitch.tv/xxxthefocusxxx", "subreddit": "", "center": [1582.5, 631.5], "path": [[1587.5, 637.5], [1587.5, 625.5], [1577.5, 625.5], [1577.5, 637.5], [1577.5, 637.5], [1587.5, 637.5]]}, {"id": "tx0whb", "submitted_by": "Victorino__", "name": "Raspberry Pi logo", "description": "Pocket size computers for learning and tinkering.", "website": "https://raspberrypi.org", "subreddit": "/r/raspberrypi", "center": [68.5, 712.5], "path": [[66.5, 709.5], [70.5, 709.5], [70.5, 716.5], [66.5, 715.5]]}, {"id": "tx0wfo", "submitted_by": "MeemeeIsAWord", "name": "The Map of Great Britain", "description": "The term Great Britain is often used to refer to England, Scotland and Wales, including their component adjoining islands.", "website": "https://en.wikipedia.org/wiki/Great_Britain", "subreddit": "", "center": [616.5, 519.5], "path": [[616.5, 489.5], [626.5, 489.5], [626.5, 495.5], [625.5, 495.5], [625.5, 497.5], [624.5, 497.5], [624.5, 499.5], [623.5, 499.5], [623.5, 501.5], [621.5, 501.5], [621.5, 502.5], [620.5, 502.5], [621.5, 502.5], [621.5, 503.5], [621.5, 504.5], [620.5, 504.5], [620.5, 505.5], [619.5, 505.5], [622.5, 505.5], [622.5, 506.5], [623.5, 506.5], [623.5, 507.5], [624.5, 507.5], [624.5, 508.5], [625.5, 508.5], [625.5, 514.5], [626.5, 514.5], [626.5, 517.5], [629.5, 517.5], [629.5, 520.5], [630.5, 520.5], [630.5, 521.5], [631.5, 521.5], [631.5, 524.5], [632.5, 524.5], [632.5, 529.5], [630.5, 529.5], [633.5, 529.5], [633.5, 534.5], [636.5, 534.5], [636.5, 535.5], [640.5, 535.5], [640.5, 543.5], [639.5, 543.5], [639.5, 544.5], [639.5, 545.5], [638.5, 545.5], [638.5, 546.5], [634.5, 546.5], [634.5, 548.5], [637.5, 548.5], [637.5, 549.5], [638.5, 549.5], [638.5, 550.5], [638.5, 551.5], [635.5, 551.5], [635.5, 552.5], [633.5, 552.5], [633.5, 556.5], [635.5, 556.5], [635.5, 557.5], [636.5, 557.5], [633.5, 557.5], [633.5, 556.5], [632.5, 556.5], [632.5, 551.5], [631.5, 551.5], [631.5, 550.5], [632.5, 550.5], [632.5, 549.5], [632.5, 548.5], [631.5, 548.5], [630.5, 548.5], [630.5, 549.5], [629.5, 549.5], [629.5, 550.5], [600.5, 550.5], [601.5, 549.5], [601.5, 548.5], [602.5, 548.5], [602.5, 547.5], [602.5, 546.5], [603.5, 546.5], [611.5, 546.5], [604.5, 546.5], [604.5, 545.5], [603.5, 545.5], [603.5, 543.5], [602.5, 544.5], [601.5, 544.5], [600.5, 544.5], [600.5, 542.5], [601.5, 542.5], [599.5, 542.5], [599.5, 541.5], [598.5, 541.5], [598.5, 540.5], [598.5, 539.5], [599.5, 539.5], [599.5, 538.5], [602.5, 538.5], [602.5, 537.5], [603.5, 537.5], [603.5, 536.5], [604.5, 536.5], [604.5, 535.5], [606.5, 535.5], [606.5, 534.5], [607.5, 534.5], [607.5, 533.5], [604.5, 533.5], [604.5, 530.5], [606.5, 530.5], [606.5, 529.5], [605.5, 529.5], [604.5, 529.5], [604.5, 528.5], [603.5, 528.5], [603.5, 527.5], [603.5, 526.5], [608.5, 526.5], [608.5, 528.5], [609.5, 528.5], [609.5, 527.5], [612.5, 527.5], [612.5, 525.5], [613.5, 525.5], [613.5, 524.5], [614.5, 524.5], [613.5, 524.5], [613.5, 522.5], [612.5, 522.5], [612.5, 521.5], [611.5, 521.5], [611.5, 517.5], [610.5, 517.5], [610.5, 516.5], [609.5, 516.5], [609.5, 517.5], [608.5, 517.5], [607.5, 517.5], [607.5, 516.5], [603.5, 516.5], [603.5, 515.5], [603.5, 514.5], [604.5, 514.5], [604.5, 512.5], [605.5, 512.5], [605.5, 511.5], [606.5, 510.5], [607.5, 510.5], [603.5, 510.5], [603.5, 504.5], [602.5, 504.5], [602.5, 502.5], [602.5, 500.5], [602.5, 499.5], [601.5, 499.5], [600.5, 498.5], [598.5, 499.5], [598.5, 498.5], [597.5, 498.5], [597.5, 496.5], [598.5, 496.5], [598.5, 495.5], [602.5, 495.5], [596.5, 495.5], [596.5, 491.5], [596.5, 490.5], [598.5, 490.5], [598.5, 488.5], [600.5, 488.5], [597.5, 488.5], [597.5, 485.5], [599.5, 485.5], [599.5, 483.5], [601.5, 483.5], [601.5, 482.5], [603.5, 482.5], [603.5, 481.5], [605.5, 481.5], [605.5, 480.5], [607.5, 480.5], [607.5, 481.5], [607.5, 482.5], [606.5, 482.5], [606.5, 484.5], [605.5, 484.5], [605.5, 485.5], [604.5, 485.5], [604.5, 486.5], [601.5, 486.5], [601.5, 488.5], [602.5, 488.5], [602.5, 487.5], [606.5, 487.5], [606.5, 485.5], [608.5, 485.5], [608.5, 483.5], [609.5, 483.5], [609.5, 482.5], [610.5, 482.5], [610.5, 481.5], [610.5, 480.5], [611.5, 480.5], [611.5, 479.5], [614.5, 479.5], [614.5, 481.5], [618.5, 481.5], [618.5, 480.5], [621.5, 480.5], [621.5, 482.5], [620.5, 482.5], [623.5, 482.5], [623.5, 483.5], [623.5, 484.5], [622.5, 484.5], [622.5, 485.5], [621.5, 485.5], [621.5, 486.5], [620.5, 486.5], [620.5, 487.5], [619.5, 487.5], [619.5, 488.5], [617.5, 488.5], [617.5, 489.5]]}, {"id": "tx0w66", "submitted_by": "Thund3r-wing", "name": "Blaseball", "description": "Blaseball is a text based absurdist baseball simulator game, that can also be described as a horror game, developed by The Game Band.nnAlso Go Pies.", "website": "https://www.blaseball.com/landing", "subreddit": "/r/Blaseball", "center": [1465.5, 819.5], "path": [[1449.5, 810.5], [1474.5, 810.5], [1474.5, 822.5], [1474.5, 824.5], [1484.5, 824.5], [1484.5, 829.5], [1460.5, 829.5], [1460.5, 822.5], [1449.5, 822.5]]}, -{"id": "tx0w2t", "submitted_by": "akiftnrvrd", "name": "White Lotus", "description": "The Order of the White Lotus, also known simply as the White Lotus, is an ancient and formerly secret society that transcends the boundaries of the four nations, seeking philosophy, beauty, and truth in Avatar: The Last Airbender.", "website": "https://www.youtube.com/channel/UCN_u5w69V9wUZYG8WeJWuNg", "subreddit": "/r/ATLA", "center": [720.5, 816.5], "path": [[709.5, 805.5], [722.5, 820.5], [731.5, 827.5], [731.5, 805.5], [709.5, 805.5], [709.5, 827.5], [731.5, 827.5]]}, +{"id": "tx0w2t", "submitted_by": "akiftnrvrd", "name": "White Lotus", "description": "The Order of the White Lotus, also known simply as the White Lotus, is an ancient and formerly secret society that transcends the boundaries of the four nations, seeking philosophy, beauty, and truth in Avatar: The Last Airbender.", "website": "https://www.youtube.com/channel/UCN_u5w69V9wUZYG8WeJWuNg", "subreddit": "/r/ATLA", "center": [720.5, 816.5], "path": [[709.5, 805.5],[731.5, 805.5],[731.5, 827.5],[709.5, 827.5],[709.5, 805.5]]}, {"id": "tx0w21", "submitted_by": "Tomi3003", "name": "Tanya von Degurechaff", "description": "Mini-Tanya from the anime Youjo Senki", "website": "https://youjo-senki.fandom.com/wiki/Tanya_von_Degurechaff", "subreddit": "/r/YoujoSenki", "center": [1106.5, 530.5], "path": [[1103.5, 524.5], [1103.5, 524.5], [1103.5, 524.5], [1103.5, 524.5], [1103.5, 524.5], [1103.5, 525.5], [1103.5, 526.5], [1104.5, 525.5], [1105.5, 525.5], [1106.5, 525.5], [1106.5, 524.5], [1103.5, 535.5], [1111.5, 534.5], [1111.5, 536.5], [1103.5, 536.5], [1111.5, 533.5], [1111.5, 530.5], [1110.5, 529.5], [1103.5, 529.5], [1103.5, 532.5], [1105.5, 534.5], [1105.5, 534.5], [1108.5, 529.5], [1107.5, 529.5], [1107.5, 527.5], [1107.5, 526.5], [1106.5, 524.5], [1105.5, 525.5], [1103.5, 525.5]]}, -{"id": "tx0w1j", "submitted_by": "Forward-Tourist-8606", "name": "French IA artist", "description": "French streaming community developed the best artistic IA in the world.", "website": "", "subreddit": "/r/frenchbot", "center": [0.5, 0.5], "path": []}, {"id": "tx0vxd", "submitted_by": "rezedus", "name": "V\u0160B-TUO logo", "description": "Logo of V\u0160B - Technical University of Ostrava, Czech Republic.", "website": "https://www.vsb.cz/", "subreddit": "", "center": [1943.5, 1361.5], "path": [[1936.5, 1368.5], [1936.5, 1353.5], [1950.5, 1353.5], [1950.5, 1368.5], [1936.5, 1368.5]]}, -{"id": "tx0vwt", "submitted_by": "PrimalPeashooter", "name": "ABBA", "description": "Anni-Frid, Benny, Bjorn & Agnetha. The four members spell out ABBA; a music group from Sweden.", "website": "", "subreddit": "/r/ABBA", "center": [784.5, 74.5], "path": [[773.5, 70.5], [773.5, 77.5], [794.5, 77.5], [794.5, 70.5]]}, +{"id": "tx0vwt", "submitted_by": "PrimalPeashooter", "name": "ABBA", "description": "Anni-Frid, Benny, Bjorn & Agnetha. The four members spell out ABBA; a music group from Sweden.", "website": "https://en.wikipedia.org/wiki/ABBA", "subreddit": "/r/ABBA", "center": [784.5, 74.5], "path": [[773.5, 70.5], [773.5, 77.5], [794.5, 77.5], [794.5, 70.5]]}, {"id": "tx0vu4", "submitted_by": "Horsefur", "name": "Flag of Nepal", "description": "Flag of Nepal", "website": "", "subreddit": "/r/nepal", "center": [1487.5, 969.5], "path": [[1479.5, 998.5], [1479.5, 946.5], [1499.5, 967.5], [1490.5, 967.5], [1503.5, 981.5], [1481.5, 981.5], [1481.5, 998.5]]}, {"id": "tx0vo3", "submitted_by": "plantages", "name": "House of Leaves Reference", "description": "A reference to book House of Leaves by Mark Z. Danielewski, in which the word House is always in blue. This was contested space in the beginning, but eventually, after a short lived alliance with the carrot farmers, a truce was finally made here. The House lives on!", "website": "", "subreddit": "/r/houseofleaves", "center": [0.5, 0.5], "path": [[732.5, 825.5], [752.5, 828.5], [732.5, 829.5], [752.5, 825.5]]}, {"id": "tx0vj4", "submitted_by": "Wquaid", "name": "Sri Lanka Flag", "description": "Small Sri Lankan Flag", "website": "", "subreddit": "/r/srilanka", "center": [1964.5, 125.5], "path": [[1955.5, 120.5], [1973.5, 120.5], [1973.5, 130.5], [1955.5, 130.5]]}, @@ -4287,16 +3991,13 @@ {"id": "tx0s0v", "submitted_by": "MachoTaco24", "name": "New York Rangers and Colorado Avalanche", "description": "This was a joint art piece by the National Hockey League's teams the New York Rangers and the Colorado Avalanche. Depicted are both team's logos, as well as a heart joining the two fandoms as a symbol of collaboration when building the space. The bottom left indicates the possibility of a Stanley Cup Match-up between the Colorado Avalanche and New York Rangers.", "website": "", "subreddit": "/r/Rangers, &, /r/ColoradoAvalanche", "center": [1440.5, 49.5], "path": [[1410.5, 35.5], [1467.5, 35.5], [1467.5, 63.5], [1432.5, 63.5], [1432.5, 70.5], [1421.5, 70.5], [1421.5, 50.5], [1410.5, 50.5]]}, {"id": "tx0rxl", "submitted_by": "Victorino__", "name": "KDE", "description": "The logo of the K Desktop Environment for Linux distros.", "website": "https://kde.org/", "subreddit": "/r/kde", "center": [26.5, 685.5], "path": [[21.5, 680.5], [32.5, 680.5], [31.5, 691.5], [21.5, 691.5]]}, {"id": "tx0roe", "submitted_by": "Deltassius", "name": "Winged Hussar (Sus)", "description": "The Polish Hussars were an elite cavalry formation best remembered for the extravagant wings attached to their armor. This one is somewhat suspect.", "website": "", "subreddit": "", "center": [658.5, 355.5], "path": [[647.5, 366.5], [647.5, 368.5], [651.5, 369.5], [659.5, 368.5], [673.5, 350.5], [672.5, 342.5], [650.5, 348.5], [645.5, 355.5]]}, -{"id": "tx0rla", "submitted_by": "Adhesive_Hooks", "name": "Fox Stevenson", "description": "Fantastic Music Creator", "website": "", "subreddit": "/r/FoxStevenson", "center": [0.5, 0.5], "path": []}, {"id": "tx0rdh", "submitted_by": "AgentCremeFleurette", "name": "ESTACA", "description": "ESTACA is a french engineering school in automotive, aeronautical, railway, shipping and aerospace.", "website": "https://www.estaca.fr/en/engineering-school/", "subreddit": "", "center": [516.5, 1342.5], "path": [[504.5, 1340.5], [504.5, 1340.5], [504.5, 1344.5], [528.5, 1344.5], [528.5, 1340.5], [528.5, 1340.5]]}, {"id": "tx0r5h", "submitted_by": "CreaminFreeman", "name": "Aston Martin Logo", "description": "This is the logo for the Aston Martin CognizantnFormula One\u2122 Team.", "website": "", "subreddit": "/r/formula1", "center": [558.5, 789.5], "path": [[546.5, 795.5], [546.5, 783.5], [570.5, 783.5], [570.5, 795.5], [546.5, 795.5]]}, -{"id": "tx0qkt", "submitted_by": "Atsuyo_", "name": "Terraria's rabbits", "description": "They are cute", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx0qiu", "submitted_by": "faeranne", "name": "Kobold Legion", "description": "A friendly kobold shows off the Kobold Legion logo, alongside his friend, lilblep. They watch over their friends, a kitty and a dino, and their small hoard of gold and a diamond heart.", "website": "", "subreddit": "/r/KoboldLegion", "center": [1706.5, 366.5], "path": [[1696.5, 350.5], [1719.5, 350.5], [1719.5, 355.5], [1713.5, 356.5], [1713.5, 363.5], [1720.5, 364.5], [1720.5, 367.5], [1722.5, 367.5], [1722.5, 372.5], [1717.5, 372.5], [1717.5, 382.5], [1701.5, 382.5], [1701.5, 377.5], [1691.5, 377.5], [1691.5, 368.5], [1692.5, 367.5], [1692.5, 361.5], [1691.5, 358.5], [1691.5, 356.5], [1696.5, 356.5]]}, {"id": "tx0qi6", "submitted_by": "TwelthLife", "name": "South Park", "description": "Tiny artwork that represents characters from South Park: Stan, Kyle, Cartman, Kenny, Butters and Tolkien (from left to right)", "website": "", "subreddit": "/r/southpark", "center": [481.5, 1694.5], "path": [[461.5, 1688.5], [500.5, 1688.5], [500.5, 1699.5], [461.5, 1699.5], [461.5, 1688.5]]}, {"id": "tx0qgo", "submitted_by": "Rickmaster2002", "name": "Her\u00f3is do Mar", "description": "This phrase is the fist line of the portuguese national anthem, this is a colaboration with Hypixel since they were building their logo in that place.", "website": "", "subreddit": "/r/portugal", "center": [1401.5, 1845.5], "path": [[1368.5, 1827.5], [1393.5, 1819.5], [1400.5, 1820.5], [1393.5, 1834.5], [1413.5, 1820.5], [1432.5, 1820.5], [1432.5, 1832.5], [1448.5, 1825.5], [1455.5, 1827.5], [1453.5, 1842.5], [1425.5, 1854.5], [1400.5, 1864.5], [1399.5, 1849.5], [1395.5, 1851.5], [1395.5, 1871.5], [1379.5, 1887.5], [1377.5, 1889.5], [1365.5, 1869.5], [1368.5, 1868.5], [1366.5, 1828.5], [1367.5, 1828.5]]}, {"id": "tx0qg7", "submitted_by": "JoseFrey", "name": "Vegetta777's Minecraft skin", "description": "The face of the Minecraft skin used by Vegetta777, a Spanish YouTuber.", "website": "", "subreddit": "", "center": [1572.5, 620.5], "path": [[1577.5, 627.5], [1566.5, 627.5], [1566.5, 613.5], [1577.5, 613.5], [1577.5, 627.5]]}, {"id": "tx0q4n", "submitted_by": "Skieblu", "name": "Leif", "description": "Leif is the protagonist of Fire Emblem: Tharcia 776 and a playable character in Fire Emblem: Genealogy of the Holy War. He is shown with a music note above his head, denoting a mechanic in his game that occasionally grants an additional action, along with the Fire Emblem Heroes premium currency, orbs.", "website": "https://fireemblem.fandom.com/wiki/Leif", "subreddit": "/r/Fireemblem", "center": [1844.5, 788.5], "path": [[1846.5, 780.5], [1842.5, 780.5], [1839.5, 783.5], [1839.5, 786.5], [1840.5, 787.5], [1840.5, 788.5], [1839.5, 789.5], [1838.5, 789.5], [1838.5, 787.5], [1837.5, 786.5], [1837.5, 784.5], [1836.5, 784.5], [1836.5, 782.5], [1833.5, 782.5], [1833.5, 786.5], [1834.5, 787.5], [1834.5, 789.5], [1835.5, 790.5], [1835.5, 792.5], [1836.5, 793.5], [1836.5, 795.5], [1835.5, 796.5], [1834.5, 796.5], [1833.5, 797.5], [1834.5, 798.5], [1836.5, 798.5], [1836.5, 799.5], [1840.5, 799.5], [1840.5, 802.5], [1842.5, 802.5], [1842.5, 800.5], [1845.5, 800.5], [1845.5, 794.5], [1846.5, 792.5], [1852.5, 792.5], [1850.5, 789.5], [1848.5, 789.5], [1848.5, 787.5], [1849.5, 786.5], [1853.5, 789.5], [1856.5, 789.5], [1857.5, 787.5], [1857.5, 785.5], [1854.5, 783.5], [1854.5, 778.5], [1848.5, 778.5], [1848.5, 782.5]]}, -{"id": "tx0q1y", "submitted_by": "17pastmidnight", "name": "Stream Train", "description": "This panel was made during a stream train with the collaboration of twitch streamers TinaKitten, Foolish Gamers, Punz, Karl Jacobs and Sapnap. Each symbol represents one of them.", "website": "", "subreddit": "", "center": [1221.5, 967.5], "path": [[1161.5, 927.5], [1162.5, 1022.5], [1182.5, 1021.5], [1182.5, 1013.5], [1182.5, 996.5], [1192.5, 997.5], [1208.5, 1001.5], [1237.5, 1006.5], [1285.5, 1004.5], [1282.5, 927.5], [1219.5, 927.5]]}, {"id": "tx0pxd", "submitted_by": "SphealArt", "name": "TierZoo", "description": "Channel icon of TierZoo, an animal and nature-focused YouTube channel that describes ecosystems as a competitive MMO called 'Outside', detailing the most effective 'builds' in the 'meta'.", "website": "https://www.youtube.com/c/TierZoo/about", "subreddit": "/r/Tierzoo", "center": [55.5, 343.5], "path": [[48.5, 336.5], [61.5, 336.5], [61.5, 350.5], [48.5, 350.5], [48.5, 350.5], [48.5, 350.5]]}, {"id": "tx0pud", "submitted_by": "TylerMcFluffBut", "name": "Lena Raine", "description": "Lena Raine is an American composer and producer. Raine is best known for her work on the soundtracks of Celeste and Guild Wars 2. She has composed music for various other video games, including Minecraft, Deltarune, and Chicory: A Colorful Tale.", "website": "https://en.wikipedia.org/wiki/Lena_Raine", "subreddit": "/r/celestegame", "center": [972.5, 881.5], "path": [[970.5, 885.5], [970.5, 884.5], [970.5, 883.5], [969.5, 883.5], [968.5, 882.5], [967.5, 882.5], [967.5, 880.5], [968.5, 879.5], [969.5, 878.5], [975.5, 878.5], [976.5, 879.5], [977.5, 880.5], [977.5, 882.5], [975.5, 882.5], [975.5, 883.5], [974.5, 883.5], [973.5, 883.5], [973.5, 884.5], [973.5, 885.5], [970.5, 885.5]]}, {"id": "tx0pom", "submitted_by": "Gamer_X99", "name": "Echo Bot", "description": "A small robot from the music video for Echo, a song by rock group Starset.", "website": "", "subreddit": "/r/Starset", "center": [522.5, 1353.5], "path": [[514.5, 1345.5], [529.5, 1345.5], [529.5, 1360.5], [514.5, 1360.5], [514.5, 1360.5]]}, @@ -4309,8 +4010,7 @@ {"id": "tx0p7b", "submitted_by": "Vegaxys", "name": "Diamond shovel from Minecraft", "description": "A diamond shovel from the game Minecraft.", "website": "", "subreddit": "/r/Minecraft", "center": [1740.5, 348.5], "path": [[1746.5, 342.5], [1741.5, 342.5], [1731.5, 354.5], [1739.5, 354.5], [1749.5, 344.5]]}, {"id": "tx0p6c", "submitted_by": "Virgilcore", "name": "Forgot to install CS:S", "description": "An ERROR model from games that run on the Source engine. The background is the MISSING TEXTURE from Source games. Most commonly associated with Garry's Mod.", "website": "", "subreddit": "/r/SourceEngine", "center": [1789.5, 229.5], "path": [[1773.5, 207.5], [1805.5, 207.5], [1805.5, 251.5], [1774.5, 251.5], [1774.5, 208.5], [1773.5, 208.5]]}, {"id": "tx0p3o", "submitted_by": "AustinQ", "name": "Rick Roll QR Code", "description": "While it doesn't appear in this screencap, the Rick Roll QR Code was rebuilt here just a couple minutes before the end.", "website": "", "subreddit": "/r/placeQRcode", "center": [1887.5, 933.5], "path": [[1869.5, 917.5], [1905.5, 917.5], [1905.5, 948.5], [1869.5, 949.5], [1869.5, 917.5]]}, -{"id": "tx0ofl", "submitted_by": "Akar2k4", "name": "Flag of Kurdistan", "description": "An area spread over large parts of what are now eastern Turkey, northern Iraq, and western Iran and smaller parts of northern Syria and Armenia.", "website": "https://gov.krd/english/", "subreddit": "/r/kurdistan", "center": [1384.5, 1968.5], "path": [[1372.5, 1964.5], [1396.5, 1964.5], [1396.5, 1971.5], [1372.5, 1971.5]]}, -{"id": "tx0oa2", "submitted_by": "RafevHexyn", "name": "Christ the redeemer", "description": "Christ the Redeemer is an Art Deco statue of Jesus Christ in Rio de Janeiro, Brazil, created by French sculptor Paul Landowski and built by Brazilian engineer Heitor da Silva Costa, in collaboration with French engineer Albert Caquot. Romanian sculptor Gheorghe Leonida fashioned the face.", "website": "[https://en.wikipedia.org/wiki/Christ_the_Redeemer_(statue)](https://en.wikipedia.org/wiki/Christ_the_Redeemer_(statue))", "subreddit": "/r/Brasil", "center": [1092.5, 595.5], "path": [[1079.5, 619.5], [1082.5, 614.5], [1085.5, 612.5], [1086.5, 610.5], [1086.5, 594.5], [1085.5, 593.5], [1085.5, 584.5], [1083.5, 584.5], [1080.5, 582.5], [1077.5, 582.5], [1076.5, 581.5], [1074.5, 581.5], [1073.5, 580.5], [1072.5, 579.5], [1073.5, 578.5], [1074.5, 578.5], [1075.5, 577.5], [1076.5, 577.5], [1077.5, 578.5], [1089.5, 578.5], [1089.5, 574.5], [1090.5, 573.5], [1091.5, 573.5], [1092.5, 573.5], [1093.5, 573.5], [1094.5, 573.5], [1094.5, 578.5], [1105.5, 578.5], [1107.5, 577.5], [1110.5, 576.5], [1112.5, 578.5], [1113.5, 578.5], [1112.5, 579.5], [1110.5, 580.5], [1107.5, 581.5], [1103.5, 582.5], [1101.5, 583.5], [1099.5, 584.5], [1098.5, 585.5], [1098.5, 593.5], [1097.5, 594.5], [1097.5, 611.5], [1099.5, 611.5], [1099.5, 614.5], [1100.5, 614.5], [1100.5, 615.5], [1101.5, 615.5], [1101.5, 616.5], [1102.5, 616.5], [1102.5, 617.5], [1103.5, 618.5], [1079.5, 618.5]]}, +{"id": "tx0oa2", "submitted_by": "RafevHexyn", "name": "Christ the redeemer", "description": "Christ the Redeemer is an Art Deco statue of Jesus Christ in Rio de Janeiro, Brazil, created by French sculptor Paul Landowski and built by Brazilian engineer Heitor da Silva Costa, in collaboration with French engineer Albert Caquot. Romanian sculptor Gheorghe Leonida fashioned the face.", "website": "https://en.wikipedia.org/wiki/Christ_the_Redeemer_(statue)", "subreddit": "/r/Brasil", "center": [1092.5, 595.5], "path": [[1079.5, 619.5], [1082.5, 614.5], [1085.5, 612.5], [1086.5, 610.5], [1086.5, 594.5], [1085.5, 593.5], [1085.5, 584.5], [1083.5, 584.5], [1080.5, 582.5], [1077.5, 582.5], [1076.5, 581.5], [1074.5, 581.5], [1073.5, 580.5], [1072.5, 579.5], [1073.5, 578.5], [1074.5, 578.5], [1075.5, 577.5], [1076.5, 577.5], [1077.5, 578.5], [1089.5, 578.5], [1089.5, 574.5], [1090.5, 573.5], [1091.5, 573.5], [1092.5, 573.5], [1093.5, 573.5], [1094.5, 573.5], [1094.5, 578.5], [1105.5, 578.5], [1107.5, 577.5], [1110.5, 576.5], [1112.5, 578.5], [1113.5, 578.5], [1112.5, 579.5], [1110.5, 580.5], [1107.5, 581.5], [1103.5, 582.5], [1101.5, 583.5], [1099.5, 584.5], [1098.5, 585.5], [1098.5, 593.5], [1097.5, 594.5], [1097.5, 611.5], [1099.5, 611.5], [1099.5, 614.5], [1100.5, 614.5], [1100.5, 615.5], [1101.5, 615.5], [1101.5, 616.5], [1102.5, 616.5], [1102.5, 617.5], [1103.5, 618.5], [1079.5, 618.5]]}, {"id": "tx0ni0", "submitted_by": "serillymc", "name": "DNF (DreamNotFound)", "description": "An illustration of two smiley blob characters representing Dream and George on top of the DreamNotFound flag, with the text DNF to the side.", "website": "https://shipping.fandom.com/wiki/DreamNotFound", "subreddit": "/r/dreamwastaken", "center": [1144.5, 908.5], "path": [[1134.5, 919.5], [1134.5, 899.5], [1161.5, 899.5], [1161.5, 904.5], [1152.5, 904.5], [1152.5, 906.5], [1151.5, 906.5], [1151.5, 907.5], [1149.5, 907.5], [1149.5, 919.5], [1134.5, 919.5]]}, {"id": "tx0nd8", "submitted_by": "ReverseDmitry", "name": "2b is full", "description": "Refers to the message '2b2t is full' that appears in chat when the player joins 2b2t's queue, which is almost always full.", "website": "", "subreddit": "/r/2b2t", "center": [936.5, 475.5], "path": [[959.5, 480.5], [959.5, 469.5], [912.5, 469.5], [912.5, 480.5], [959.5, 480.5]]}, {"id": "tx0n3d", "submitted_by": "mo_tiff", "name": "Shantae: Half-Pixel Hero", "description": "A tiny Shantae, the famous Half-Genie Hero, strikes a pose on the beach with her new Fire Emblem friends. r/Shantae is Ret-2-Go!", "website": "https://en.wikipedia.org/wiki/Shantae", "subreddit": "/r/shantae", "center": [1866.5, 784.5], "path": [[1862.5, 791.5], [1858.5, 786.5], [1858.5, 778.5], [1873.5, 778.5], [1873.5, 791.5], [1862.5, 791.5]]}, @@ -4321,20 +4021,16 @@ {"id": "tx0mao", "submitted_by": "serillymc", "name": "Punz pumpkin", "description": "A pixel illustration of a pumpkin that represents the streamer Punz.", "website": "https://twitch.tv/punz", "subreddit": "/r/Punz", "center": [1222.5, 974.5], "path": [[1182.5, 987.5], [1182.5, 965.5], [1183.5, 965.5], [1183.5, 960.5], [1184.5, 960.5], [1184.5, 959.5], [1187.5, 959.5], [1187.5, 958.5], [1188.5, 958.5], [1188.5, 957.5], [1189.5, 957.5], [1189.5, 956.5], [1190.5, 956.5], [1190.5, 955.5], [1191.5, 955.5], [1191.5, 954.5], [1192.5, 954.5], [1192.5, 953.5], [1193.5, 953.5], [1193.5, 952.5], [1194.5, 952.5], [1194.5, 951.5], [1195.5, 951.5], [1195.5, 950.5], [1197.5, 950.5], [1197.5, 949.5], [1198.5, 949.5], [1198.5, 948.5], [1200.5, 948.5], [1200.5, 947.5], [1211.5, 947.5], [1211.5, 946.5], [1211.5, 945.5], [1210.5, 945.5], [1210.5, 942.5], [1211.5, 942.5], [1211.5, 941.5], [1213.5, 941.5], [1213.5, 942.5], [1216.5, 942.5], [1216.5, 943.5], [1217.5, 943.5], [1217.5, 944.5], [1221.5, 944.5], [1221.5, 943.5], [1222.5, 943.5], [1222.5, 939.5], [1221.5, 939.5], [1221.5, 934.5], [1229.5, 934.5], [1229.5, 935.5], [1231.5, 935.5], [1231.5, 936.5], [1232.5, 936.5], [1232.5, 942.5], [1240.5, 942.5], [1240.5, 943.5], [1242.5, 943.5], [1242.5, 944.5], [1242.5, 945.5], [1242.5, 946.5], [1241.5, 947.5], [1242.5, 948.5], [1243.5, 948.5], [1243.5, 949.5], [1244.5, 949.5], [1244.5, 950.5], [1245.5, 950.5], [1245.5, 951.5], [1247.5, 951.5], [1247.5, 952.5], [1248.5, 952.5], [1248.5, 953.5], [1250.5, 953.5], [1250.5, 954.5], [1251.5, 954.5], [1251.5, 955.5], [1252.5, 955.5], [1252.5, 957.5], [1253.5, 957.5], [1253.5, 963.5], [1254.5, 963.5], [1254.5, 966.5], [1255.5, 966.5], [1255.5, 967.5], [1256.5, 967.5], [1256.5, 968.5], [1261.5, 968.5], [1261.5, 970.5], [1262.5, 970.5], [1262.5, 974.5], [1261.5, 974.5], [1261.5, 975.5], [1260.5, 975.5], [1260.5, 976.5], [1257.5, 976.5], [1257.5, 977.5], [1256.5, 977.5], [1255.5, 977.5], [1255.5, 978.5], [1254.5, 978.5], [1254.5, 979.5], [1252.5, 979.5], [1252.5, 980.5], [1250.5, 980.5], [1250.5, 981.5], [1249.5, 981.5], [1249.5, 982.5], [1248.5, 982.5], [1248.5, 983.5], [1246.5, 983.5], [1246.5, 986.5], [1245.5, 986.5], [1245.5, 990.5], [1251.5, 990.5], [1252.5, 990.5], [1252.5, 989.5], [1253.5, 989.5], [1253.5, 988.5], [1259.5, 988.5], [1259.5, 987.5], [1263.5, 987.5], [1263.5, 986.5], [1265.5, 986.5], [1265.5, 996.5], [1264.5, 996.5], [1264.5, 997.5], [1263.5, 997.5], [1263.5, 998.5], [1262.5, 998.5], [1262.5, 999.5], [1261.5, 999.5], [1260.5, 999.5], [1260.5, 1000.5], [1259.5, 1000.5], [1259.5, 1001.5], [1255.5, 1001.5], [1255.5, 1002.5], [1255.5, 1003.5], [1240.5, 1003.5], [1239.5, 1003.5], [1239.5, 1004.5], [1238.5, 1004.5], [1225.5, 1004.5], [1224.5, 1004.5], [1223.5, 1003.5], [1210.5, 1003.5], [1210.5, 1001.5], [1206.5, 1001.5], [1206.5, 1000.5], [1205.5, 1000.5], [1205.5, 999.5], [1204.5, 999.5], [1199.5, 999.5], [1199.5, 998.5], [1199.5, 998.5], [1198.5, 998.5], [1198.5, 997.5], [1195.5, 997.5], [1194.5, 997.5], [1194.5, 996.5], [1194.5, 995.5], [1193.5, 995.5], [1193.5, 994.5], [1190.5, 993.5], [1189.5, 993.5], [1189.5, 992.5], [1188.5, 992.5], [1188.5, 991.5], [1187.5, 991.5], [1187.5, 990.5], [1186.5, 990.5], [1186.5, 989.5], [1185.5, 989.5], [1185.5, 988.5], [1182.5, 988.5], [1182.5, 987.5]]}, {"id": "tx0ltv", "submitted_by": "Horsefur", "name": "Fursona of Riley Winters", "description": "The fursona of Riley Winters, a mountain lion. Original artwork by Red then pixalted by Riley.", "website": "http://www.twitter.com/Horsefur1", "subreddit": "/u/Horsefur", "center": [866.5, 1238.5], "path": [[853.5, 1254.5], [868.5, 1254.5], [868.5, 1250.5], [872.5, 1250.5], [873.5, 1248.5], [876.5, 1245.5], [878.5, 1241.5], [881.5, 1243.5], [881.5, 1224.5], [853.5, 1225.5], [853.5, 1254.5]]}, {"id": "tx0lq5", "submitted_by": "Starlenedarestotell", "name": "Kirby (of the r/TheB1G section)", "description": "This specific Kirby was made during the first day of r/place and is one of the first Kirby pixel art to be drawn. Originally drawn with the classic sprite version with three hearts above, the smol boyo has seen the war and glory of r/place 2022 until the end.", "website": "", "subreddit": "/r/Kirby", "center": [212.5, 620.5], "path": [[203.5, 610.5], [220.5, 610.5], [221.5, 618.5], [222.5, 623.5], [225.5, 625.5], [225.5, 628.5], [200.5, 628.5], [200.5, 624.5], [202.5, 624.5], [202.5, 623.5], [203.5, 623.5], [203.5, 615.5], [202.5, 614.5], [202.5, 610.5]]}, -{"id": "tx0lbq", "submitted_by": "Hishca", "name": "Carbot Zergling", "description": "A Starcraft Zergling designed by CarBot Animations", "website": "https://carbotanimations.fandom.com/wiki/Zergling", "subreddit": "", "center": [338.5, 1883.5], "path": [[333.5, 1887.5], [332.5, 1880.5], [338.5, 1877.5], [342.5, 1880.5], [345.5, 1887.5], [339.5, 1887.5], [337.5, 1887.5], [336.5, 1887.5]]}, +{"id": "tx0lbq", "submitted_by": "Hishca", "name": "Carbot Zergling", "description": "A Starcraft Zergling designed by CarBot Animations", "website": "https://carbotanimations.fandom.com/wiki/Zergling", "subreddit": "/r/starcraft", "center": [338.5, 1883.5], "path": [[333.5, 1887.5], [332.5, 1880.5], [338.5, 1877.5], [342.5, 1880.5], [345.5, 1887.5], [339.5, 1887.5], [337.5, 1887.5], [336.5, 1887.5]]}, {"id": "tx0kwo", "submitted_by": "Wquaid", "name": "Peru Flag", "description": "Small Peruvian Flag that was incomplete as it was made during the closing hours of the event", "website": "", "subreddit": "/r/PERU", "center": [271.5, 1934.5], "path": [[251.5, 1927.5], [291.5, 1927.5], [291.5, 1941.5], [251.5, 1941.5]]}, -{"id": "tx0kuv", "submitted_by": "mc395686", "name": "Foolish, Punz, Tina and Karl", "description": "A build made on stream by DSMP members Foolish Gamers, Punz, TinaKitten and Karl Jacobs", "website": "https://www.twitch.tv/foolish_gamers", "subreddit": "", "center": [1221.5, 966.5], "path": [[1159.5, 927.5], [1283.5, 928.5], [1283.5, 1004.5], [1160.5, 1005.5]]}, {"id": "tx0ktn", "submitted_by": "xRGTMX", "name": "6969", "description": "A song written and performed by American comedy rock band Ninja Sex Party, from their album Attitude City. Heavily inspired by 2112, a song by Canadian rock band Rush. 6969 is considered NSP's magnum opus.", "website": "https://ninjasexparty.com", "subreddit": "/r/NinjaSexParty", "center": [1863.5, 451.5], "path": [[1859.5, 445.5], [1859.5, 457.5], [1866.5, 457.5], [1866.5, 445.5]]}, {"id": "tx0ksh", "submitted_by": "Eclipsed_Luna", "name": "Omnisexual miniflag", "description": "A mini omnisexual pride flag.nOmnisexuality (often shortened to omni) is a multisexual orientation defined as the sexual, romantic or otherwise alterous attraction to all genders, however, gender usually still plays a role in one's attraction. Some omnisexuals have a gender preference and some do not.nThe romantic equivalent is omniromantic.", "website": "https://lgbta.miraheze.org/wiki/Omnisexual", "subreddit": "/r/placepride", "center": [453.5, 643.5], "path": [[448.5, 640.5], [457.5, 640.5], [457.5, 646.5], [448.5, 646.5], [448.5, 640.5]]}, {"id": "tx0kqs", "submitted_by": "Sequeltime4321", "name": "Metriud", "description": "One of the titular alien parasites from the Metroid video game series", "website": "", "subreddit": "/r/Metroid", "center": [960.5, 673.5], "path": [[963.5, 670.5], [963.5, 672.5], [964.5, 671.5], [964.5, 674.5], [961.5, 670.5], [960.5, 670.5], [959.5, 671.5], [959.5, 673.5], [958.5, 672.5], [959.5, 674.5], [959.5, 675.5], [960.5, 675.5], [960.5, 676.5], [961.5, 675.5], [962.5, 676.5], [963.5, 675.5], [961.5, 675.5], [963.5, 674.5]]}, -{"id": "tx0kni", "submitted_by": "Virgilcore", "name": "Portal 2: Desolation", "description": "An Omega symbol.nPortal 2: Desolation is an in development mod for Portal 2.", "website": "https://emberspark.games/desolation/", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx0khg", "submitted_by": "joeythegreat711", "name": "Bernard", "description": "Bernard is a fractal shape that frequently appears in the Desmos graphing calculator when plotting implicit equations with too great detail as a result of the quadtree root searching algorithm the calculator uses (not the most technically accurate explanation). The smile is just a cute, humanizing addition.", "website": "https://www.desmos.com/calculator/redbernard", "subreddit": "/r/desmos", "center": [1679.5, 330.5], "path": [[1673.5, 336.5], [1685.5, 336.5], [1685.5, 324.5], [1673.5, 324.5]]}, -{"id": "tx0k9u", "submitted_by": "LimitedShelf2", "name": "Ugandan Flag", "description": "Flag made through the cooperation of the Forsen community, Ugandan nationals, and Ohio State University.", "website": "https://www.gou.go.ug/", "subreddit": "/r/Uganda", "center": [0.5, 0.5], "path": []}, -{"id": "tx0k7u", "submitted_by": "thicco_catto", "name": "Thicco's Flag", "description": "A very small (but cool) flag made by thicco and his friends with the help of the lighthouse.", "website": "https://www.reddit.com/user/thicco_catto", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "tx0k20", "submitted_by": "scorpion24100", "name": "slippi.gg", "description": "slippi.gg", "website": "slippi.gg", "subreddit": "", "center": [800.5, 958.5], "path": [[776.5, 955.5], [785.5, 955.5], [785.5, 959.5], [788.5, 959.5], [788.5, 955.5], [806.5, 955.5], [806.5, 958.5], [809.5, 958.5], [809.5, 955.5], [823.5, 955.5], [823.5, 961.5], [776.5, 961.5], [776.5, 955.5]]}, +{"id": "tx0k20", "submitted_by": "scorpion24100", "name": "slippi.gg", "description": "slippi.gg", "website": "https://slippi.gg", "subreddit": "", "center": [800.5, 958.5], "path": [[776.5, 955.5], [785.5, 955.5], [785.5, 959.5], [788.5, 959.5], [788.5, 955.5], [806.5, 955.5], [806.5, 958.5], [809.5, 958.5], [809.5, 955.5], [823.5, 955.5], [823.5, 961.5], [776.5, 961.5], [776.5, 955.5]]}, {"id": "tx0k0x", "submitted_by": "ThisIsntNath", "name": "95 Degrees Discord Community", "description": "The 95 Degrees community on Discord", "website": "https://95Degrees.cafe", "subreddit": "", "center": [1808.5, 427.5], "path": [[1804.5, 422.5], [1812.5, 422.5], [1812.5, 431.5], [1804.5, 431.5]]}, {"id": "tx0jxm", "submitted_by": "Xbmann", "name": "surf_lt_omnific ramp", "description": "surf_lt_omnific is an iconic map for the custom SkillSurf game-mode available on many source engine games. This represents one of the ramps from this map. It was designed and organized by users on the KSF discord with the help from other surf communities", "website": "https://ksfclan.com", "subreddit": "/r/SkillSurfing", "center": [1450.5, 86.5], "path": [[1437.5, 80.5], [1462.5, 80.5], [1462.5, 92.5], [1437.5, 92.5]]}, -{"id": "tx0jj4", "submitted_by": "AjaXIium", "name": "Morocco's Map", "description": "A map of the country of Morocco in the Northern West of Africa. Besides it is the Amazigh (Berber) flag, Morocco's ingenious people and a significant contributor to it's culture.n", "website": "[Morocco.com](https://Morocco.com)", "subreddit": "/r/Morocco", "center": [1617.5, 814.5], "path": [[1600.5, 798.5], [1635.5, 798.5], [1634.5, 831.5], [1600.5, 831.5], [1600.5, 798.5]]}, +{"id": "tx0jj4", "submitted_by": "AjaXIium", "name": "Morocco's Map", "description": "A map of the country of Morocco in the Northern West of Africa. Besides it is the Amazigh (Berber) flag, Morocco's ingenious people and a significant contributor to it's culture.n", "website": "https://Morocco.com", "subreddit": "/r/Morocco", "center": [1617.5, 814.5], "path": [[1600.5, 798.5], [1635.5, 798.5], [1634.5, 831.5], [1600.5, 831.5], [1600.5, 798.5]]}, {"id": "tx0jei", "submitted_by": "Axriel_", "name": "Johelofish", "description": "Iconic number of the streamer de Twitch, Johelofish", "website": "https://www.twitch.tv/johelofish", "subreddit": "", "center": [1060.5, 1210.5], "path": [[1054.5, 1207.5], [1066.5, 1207.5], [1066.5, 1213.5], [1054.5, 1213.5], [1054.5, 1207.5]]}, {"id": "tx0jdy", "submitted_by": "Titan5005", "name": "Weezer", "description": "The top features a version of Weezer's Iconic Debut album The Blue Album. The bottom square has the Weezer W and the assortment of colors represent all the colors used for Weezer self titled albums.", "website": "", "subreddit": "/r/weezer", "center": [1428.5, 137.5], "path": [[1419.5, 125.5], [1419.5, 148.5], [1436.5, 148.5], [1437.5, 126.5]]}, {"id": "tx0j1b", "submitted_by": "Wquaid", "name": "Libya Flag", "description": "nOfficial small flag of Libya", "website": "", "subreddit": "/r/Libya", "center": [596.5, 1378.5], "path": [[588.5, 1374.5], [603.5, 1374.5], [603.5, 1382.5], [588.5, 1382.5]]}, @@ -4342,26 +4038,23 @@ {"id": "tx0imy", "submitted_by": "porkso", "name": "A\u015fuk Ma\u015fuk", "description": "A costume that turkish streamer called KaanFlix dances with ponpon Shit at background", "website": "", "subreddit": "/r/ZargoryanGalaksisi", "center": [1119.5, 101.5], "path": [[1105.5, 82.5], [1132.5, 82.5], [1133.5, 120.5], [1105.5, 120.5], [1105.5, 117.5]]}, {"id": "tx0ii7", "submitted_by": "dailyduude", "name": "oida", "description": "a universal word which is usually used at the beginning or at the end of a sentence. it can be used to address someone or to emphasize on something. in english the most related word is ", "website": "https://www.urbandictionary.com/define.php?term=Oida", "subreddit": "/r/Austria", "center": [994.5, 267.5], "path": [[982.5, 262.5], [994.5, 265.5], [975.5, 272.5], [976.5, 261.5], [1014.5, 261.5], [1019.5, 272.5], [975.5, 272.5]]}, {"id": "tx0ihm", "submitted_by": "TylerMcFluffBut", "name": "100 Gecs Tree", "description": "The tree featured on the cover of the 2019 album 1000 gecs. It features hyperpop duo Laura Les (left) and Dylan Brady (right) standing in front of a large tree.", "website": "https://en.wikipedia.org/wiki/1000_Gecs", "subreddit": "/r/100gecs", "center": [922.5, 914.5], "path": [[917.5, 923.5], [927.5, 923.5], [928.5, 920.5], [928.5, 917.5], [927.5, 914.5], [926.5, 913.5], [926.5, 908.5], [928.5, 906.5], [928.5, 905.5], [916.5, 905.5], [916.5, 908.5], [917.5, 910.5], [917.5, 914.5], [916.5, 914.5], [915.5, 917.5], [916.5, 918.5], [917.5, 919.5], [917.5, 923.5]]}, -{"id": "tx0hzv", "submitted_by": "Effective_Tangerine5", "name": "Blue Archive | LPOTL | MAIMAI", "description": "3 Groups that allied with each other that were in the Great War of the Canvas of 22'.", "website": "https://www.reddit.com/r/BlueArchive/ https://www.reddit.com/r/maimai/ https://www.reddit.com/r/LPOTL/", "subreddit": "/r/BlueArchive, /r/maimai, /r/LPOTL", "center": [25.5, 1004.5], "path": [[17.5, 945.5], [22.5, 945.5], [22.5, 946.5], [17.5, 946.5], [17.5, 947.5], [21.5, 947.5], [21.5, 950.5], [20.5, 950.5], [20.5, 948.5], [19.5, 948.5], [19.5, 950.5], [18.5, 950.5], [18.5, 948.5], [17.5, 948.5], [17.5, 950.5], [17.5, 951.5], [17.5, 952.5], [17.5, 953.5], [17.5, 954.5], [17.5, 955.5], [17.5, 956.5], [17.5, 957.5], [18.5, 957.5], [18.5, 951.5], [19.5, 951.5], [19.5, 957.5], [20.5, 957.5], [20.5, 951.5], [21.5, 957.5], [23.5, 957.5], [23.5, 958.5], [22.5, 958.5], [21.5, 958.5], [23.5, 958.5], [23.5, 959.5], [24.5, 959.5], [24.5, 960.5], [24.5, 959.5], [23.5, 959.5], [23.5, 958.5], [21.5, 958.5], [21.5, 957.5], [16.5, 957.5], [16.5, 961.5], [17.5, 961.5], [18.5, 961.5], [18.5, 962.5], [19.5, 962.5], [19.5, 963.5], [22.5, 963.5], [22.5, 968.5], [21.5, 968.5], [21.5, 964.5], [20.5, 964.5], [20.5, 968.5], [19.5, 968.5], [19.5, 964.5], [18.5, 963.5], [18.5, 968.5], [17.5, 968.5], [17.5, 962.5], [16.5, 969.5], [16.5, 969.5], [22.5, 969.5], [23.5, 970.5], [24.5, 970.5], [24.5, 967.5], [24.5, 970.5], [24.5, 970.5], [23.5, 970.5], [23.5, 973.5], [22.5, 973.5], [22.5, 974.5], [20.5, 974.5], [20.5, 975.5], [18.5, 975.5], [18.5, 974.5], [19.5, 974.5], [19.5, 973.5], [21.5, 973.5], [21.5, 972.5], [22.5, 972.5], [22.5, 970.5], [21.5, 970.5], [21.5, 971.5], [20.5, 972.5], [20.5, 970.5], [19.5, 970.5], [19.5, 972.5], [18.5, 970.5], [18.5, 973.5], [17.5, 970.5], [16.5, 945.5], [16.5, 972.5], [17.5, 972.5], [17.5, 991.5], [18.5, 991.5], [18.5, 988.5], [19.5, 988.5], [19.5, 991.5], [20.5, 991.5], [20.5, 988.5], [21.5, 989.5], [21.5, 991.5], [23.5, 991.5], [23.5, 989.5], [22.5, 989.5], [22.5, 990.5], [16.5, 992.5], [16.5, 992.5], [62.5, 992.5], [62.5, 982.5], [61.5, 982.5], [61.5, 945.5], [61.5, 982.5], [48.5, 982.5], [48.5, 981.5], [60.5, 981.5], [60.5, 980.5], [48.5, 980.5], [48.5, 979.5], [48.5, 976.5], [51.5, 975.5], [51.5, 974.5], [52.5, 974.5], [52.5, 975.5], [52.5, 976.5], [51.5, 976.5], [50.5, 976.5], [50.5, 977.5], [49.5, 977.5], [49.5, 979.5], [50.5, 979.5], [52.5, 979.5], [52.5, 978.5], [50.5, 978.5], [51.5, 977.5], [52.5, 977.5], [52.5, 974.5], [55.5, 974.5], [55.5, 973.5], [56.5, 973.5], [57.5, 973.5], [57.5, 972.5], [58.5, 972.5], [58.5, 968.5], [56.5, 968.5], [55.5, 968.5], [55.5, 969.5], [54.5, 969.5], [54.5, 966.5], [53.5, 966.5], [53.5, 966.5], [53.5, 964.5], [51.5, 964.5], [51.5, 966.5], [50.5, 966.5], [50.5, 968.5], [50.5, 968.5], [49.5, 968.5], [49.5, 965.5], [50.5, 965.5], [50.5, 964.5], [49.5, 964.5], [49.5, 963.5], [52.5, 963.5], [53.5, 963.5], [53.5, 958.5], [54.5, 958.5], [55.5, 958.5], [55.5, 957.5], [56.5, 957.5], [57.5, 957.5], [57.5, 956.5], [57.5, 955.5], [58.5, 955.5], [59.5, 955.5], [59.5, 945.5], [60.5, 945.5], [60.5, 955.5], [60.5, 956.5], [58.5, 956.5], [58.5, 957.5], [60.5, 957.5], [60.5, 958.5], [56.5, 958.5], [60.5, 958.5], [60.5, 959.5], [54.5, 959.5], [54.5, 965.5], [54.5, 967.5], [55.5, 967.5], [55.5, 960.5], [56.5, 960.5], [56.5, 967.5], [57.5, 967.5], [57.5, 960.5], [58.5, 960.5], [58.5, 967.5], [58.5, 960.5], [60.5, 960.5], [60.5, 961.5], [60.5, 973.5], [59.5, 973.5], [59.5, 961.5], [58.5, 961.5], [58.5, 973.5], [56.5, 974.5], [60.5, 974.5], [60.5, 945.5], [58.5, 945.5], [58.5, 949.5], [57.5, 948.5], [57.5, 947.5], [57.5, 945.5], [56.5, 945.5], [56.5, 947.5], [55.5, 947.5], [55.5, 945.5], [49.5, 945.5], [49.5, 947.5], [48.5, 947.5], [48.5, 948.5], [45.5, 948.5], [46.5, 947.5], [47.5, 947.5], [47.5, 946.5], [48.5, 946.5], [48.5, 945.5], [47.5, 945.5], [47.5, 946.5], [46.5, 946.5], [46.5, 945.5], [45.5, 945.5], [45.5, 946.5], [44.5, 946.5], [44.5, 945.5], [43.5, 945.5], [43.5, 946.5], [42.5, 946.5], [42.5, 945.5], [41.5, 945.5], [41.5, 946.5], [40.5, 946.5], [40.5, 945.5], [39.5, 945.5], [39.5, 946.5], [38.5, 946.5], [38.5, 945.5], [37.5, 945.5], [37.5, 946.5], [36.5, 946.5], [36.5, 945.5], [35.5, 945.5], [35.5, 946.5], [34.5, 946.5], [34.5, 945.5], [33.5, 945.5], [33.5, 946.5], [32.5, 946.5], [32.5, 945.5], [31.5, 945.5], [31.5, 946.5], [30.5, 946.5], [30.5, 945.5], [29.5, 945.5], [29.5, 946.5], [28.5, 946.5], [28.5, 945.5], [27.5, 945.5], [27.5, 946.5], [26.5, 946.5], [26.5, 945.5], [25.5, 945.5], [25.5, 946.5], [24.5, 946.5], [24.5, 945.5], [23.5, 945.5], [23.5, 946.5], [61.5, 945.5], [60.5, 962.5], [53.5, 962.5], [52.5, 962.5], [52.5, 958.5], [49.5, 958.5], [48.5, 958.5], [49.5, 957.5], [48.5, 957.5], [48.5, 957.5], [47.5, 957.5], [47.5, 955.5], [47.5, 949.5], [48.5, 950.5], [48.5, 956.5], [49.5, 956.5], [49.5, 948.5], [49.5, 947.5], [50.5, 947.5], [50.5, 952.5], [49.5, 952.5], [49.5, 954.5], [50.5, 954.5], [50.5, 957.5], [51.5, 957.5], [51.5, 956.5], [52.5, 956.5], [52.5, 957.5], [53.5, 957.5], [53.5, 956.5], [54.5, 956.5], [54.5, 957.5], [54.5, 956.5], [56.5, 956.5], [56.5, 955.5], [55.5, 955.5], [55.5, 954.5], [58.5, 954.5], [58.5, 953.5], [57.5, 953.5], [57.5, 952.5], [58.5, 952.5], [58.5, 950.5], [57.5, 950.5], [57.5, 951.5], [58.5, 947.5], [57.5, 947.5], [56.5, 952.5], [54.5, 952.5], [55.5, 953.5], [54.5, 953.5], [54.5, 951.5], [55.5, 951.5], [55.5, 948.5], [54.5, 948.5], [54.5, 946.5], [53.5, 946.5], [53.5, 948.5], [54.5, 949.5], [53.5, 953.5], [54.5, 945.5], [54.5, 953.5], [53.5, 953.5], [52.5, 953.5], [52.5, 947.5], [52.5, 953.5], [51.5, 953.5], [51.5, 946.5], [56.5, 945.5], [52.5, 947.5], [52.5, 953.5], [52.5, 954.5], [52.5, 953.5], [54.5, 953.5], [54.5, 954.5], [54.5, 953.5], [54.5, 953.5], [51.5, 953.5], [51.5, 954.5], [51.5, 955.5], [51.5, 956.5], [53.5, 956.5], [53.5, 955.5], [53.5, 956.5], [51.5, 956.5], [51.5, 945.5], [46.5, 945.5], [46.5, 957.5], [45.5, 945.5], [45.5, 956.5], [44.5, 955.5], [43.5, 955.5], [43.5, 952.5], [42.5, 952.5], [42.5, 955.5], [41.5, 955.5], [41.5, 953.5], [41.5, 955.5], [45.5, 955.5], [45.5, 947.5], [44.5, 947.5], [42.5, 947.5], [40.5, 950.5], [39.5, 953.5], [39.5, 955.5], [39.5, 945.5], [39.5, 953.5], [38.5, 953.5], [39.5, 952.5], [39.5, 951.5], [38.5, 951.5], [38.5, 950.5], [38.5, 950.5], [39.5, 950.5], [39.5, 948.5], [39.5, 947.5], [38.5, 947.5], [39.5, 953.5], [38.5, 953.5], [39.5, 953.5], [38.5, 953.5], [38.5, 955.5], [37.5, 955.5], [38.5, 955.5], [38.5, 952.5], [37.5, 952.5], [37.5, 951.5], [38.5, 951.5], [38.5, 948.5], [37.5, 948.5], [37.5, 947.5], [39.5, 946.5], [39.5, 956.5], [38.5, 956.5], [46.5, 956.5], [22.5, 956.5], [38.5, 956.5], [38.5, 947.5], [33.5, 947.5], [33.5, 948.5], [33.5, 955.5], [33.5, 947.5], [39.5, 947.5], [39.5, 951.5], [33.5, 951.5], [39.5, 951.5], [39.5, 952.5], [33.5, 952.5], [39.5, 952.5], [38.5, 946.5], [33.5, 946.5], [33.5, 948.5], [32.5, 948.5], [32.5, 955.5], [32.5, 948.5], [33.5, 948.5], [33.5, 946.5], [33.5, 949.5], [29.5, 949.5], [30.5, 950.5], [31.5, 950.5], [32.5, 950.5], [32.5, 956.5], [29.5, 956.5], [29.5, 955.5], [30.5, 955.5], [31.5, 955.5], [31.5, 954.5], [30.5, 954.5], [31.5, 954.5], [31.5, 953.5], [32.5, 954.5], [32.5, 948.5], [33.5, 948.5], [33.5, 950.5], [30.5, 950.5], [30.5, 951.5], [29.5, 951.5], [29.5, 953.5], [28.5, 953.5], [28.5, 955.5], [27.5, 955.5], [27.5, 956.5], [27.5, 955.5], [28.5, 955.5], [28.5, 953.5], [29.5, 953.5], [29.5, 949.5], [33.5, 949.5], [33.5, 947.5], [30.5, 947.5], [29.5, 948.5], [29.5, 947.5], [28.5, 947.5], [29.5, 947.5], [31.5, 947.5], [31.5, 948.5], [28.5, 948.5], [28.5, 950.5], [27.5, 950.5], [27.5, 946.5], [25.5, 945.5], [25.5, 952.5], [23.5, 952.5], [23.5, 956.5], [23.5, 945.5], [23.5, 955.5], [24.5, 955.5], [24.5, 945.5], [24.5, 945.5], [32.5, 945.5], [29.5, 945.5], [29.5, 952.5], [28.5, 952.5], [28.5, 953.5], [27.5, 953.5], [27.5, 955.5], [27.5, 953.5], [28.5, 953.5], [28.5, 952.5], [29.5, 952.5], [29.5, 945.5], [28.5, 946.5], [26.5, 946.5], [26.5, 950.5], [25.5, 950.5], [25.5, 956.5], [25.5, 945.5], [23.5, 945.5], [23.5, 950.5], [22.5, 950.5], [22.5, 958.5], [22.5, 950.5], [24.5, 950.5], [23.5, 948.5], [24.5, 948.5], [24.5, 947.5], [23.5, 947.5], [23.5, 946.5], [24.5, 946.5], [24.5, 945.5], [23.5, 949.5], [25.5, 949.5], [25.5, 945.5], [26.5, 945.5], [26.5, 946.5], [40.5, 946.5], [37.5, 945.5], [37.5, 947.5], [49.5, 947.5], [49.5, 945.5], [61.5, 945.5], [62.5, 982.5], [48.5, 982.5], [48.5, 976.5], [49.5, 976.5], [49.5, 974.5], [49.5, 973.5], [49.5, 972.5], [50.5, 972.5], [50.5, 969.5], [49.5, 969.5], [49.5, 972.5], [48.5, 972.5], [48.5, 966.5], [47.5, 966.5], [47.5, 963.5], [50.5, 962.5], [50.5, 960.5], [48.5, 960.5], [44.5, 958.5], [44.5, 959.5], [45.5, 959.5], [45.5, 960.5], [46.5, 960.5], [49.5, 961.5], [49.5, 961.5], [49.5, 962.5], [47.5, 962.5], [46.5, 962.5], [46.5, 961.5], [45.5, 961.5], [45.5, 962.5], [45.5, 963.5], [46.5, 963.5], [46.5, 963.5], [46.5, 965.5], [46.5, 965.5], [46.5, 969.5], [45.5, 968.5], [45.5, 970.5], [42.5, 970.5], [42.5, 968.5], [41.5, 968.5], [41.5, 963.5], [40.5, 963.5], [44.5, 963.5], [44.5, 960.5], [43.5, 960.5], [43.5, 957.5], [45.5, 957.5], [42.5, 957.5], [42.5, 961.5], [43.5, 961.5], [42.5, 961.5], [42.5, 962.5], [41.5, 962.5], [41.5, 957.5], [40.5, 957.5], [40.5, 962.5], [40.5, 961.5], [39.5, 961.5], [39.5, 957.5], [38.5, 957.5], [38.5, 960.5], [37.5, 961.5], [37.5, 958.5], [37.5, 957.5], [36.5, 957.5], [36.5, 961.5], [35.5, 961.5], [35.5, 957.5], [34.5, 957.5], [34.5, 961.5], [34.5, 964.5], [34.5, 963.5], [34.5, 968.5], [33.5, 968.5], [33.5, 969.5], [32.5, 969.5], [32.5, 970.5], [31.5, 970.5], [30.5, 969.5], [30.5, 968.5], [29.5, 967.5], [29.5, 966.5], [29.5, 963.5], [33.5, 963.5], [33.5, 962.5], [33.5, 957.5], [32.5, 957.5], [32.5, 962.5], [31.5, 962.5], [31.5, 957.5], [30.5, 957.5], [30.5, 962.5], [29.5, 962.5], [29.5, 957.5], [28.5, 958.5], [28.5, 969.5], [27.5, 969.5], [27.5, 957.5], [26.5, 957.5], [26.5, 971.5], [25.5, 970.5], [25.5, 971.5], [25.5, 957.5], [24.5, 957.5], [24.5, 960.5], [24.5, 967.5], [23.5, 967.5], [23.5, 960.5], [23.5, 969.5], [16.5, 969.5], [16.5, 991.5], [18.5, 991.5], [19.5, 977.5], [25.5, 974.5], [47.5, 975.5], [46.5, 976.5], [24.5, 976.5], [20.5, 978.5], [20.5, 981.5], [21.5, 980.5], [21.5, 978.5], [22.5, 978.5], [22.5, 982.5], [23.5, 982.5], [23.5, 977.5], [24.5, 977.5], [24.5, 981.5], [25.5, 981.5], [25.5, 977.5], [27.5, 977.5], [34.5, 977.5], [34.5, 976.5], [36.5, 976.5], [36.5, 977.5], [46.5, 977.5], [36.5, 977.5], [46.5, 977.5], [47.5, 976.5], [48.5, 977.5], [48.5, 979.5], [46.5, 978.5], [46.5, 980.5], [49.5, 979.5], [46.5, 979.5], [46.5, 979.5], [47.5, 979.5], [47.5, 983.5], [61.5, 982.5], [61.5, 991.5], [60.5, 991.5], [60.5, 984.5], [60.5, 983.5], [59.5, 983.5], [59.5, 989.5], [58.5, 989.5], [58.5, 985.5], [58.5, 984.5], [57.5, 984.5], [57.5, 990.5], [57.5, 984.5], [55.5, 984.5], [55.5, 991.5], [59.5, 991.5], [55.5, 991.5], [54.5, 990.5], [55.5, 990.5], [55.5, 988.5], [54.5, 988.5], [54.5, 984.5], [52.5, 984.5], [52.5, 988.5], [51.5, 988.5], [51.5, 990.5], [52.5, 990.5], [52.5, 991.5], [52.5, 991.5], [61.5, 991.5], [51.5, 991.5], [51.5, 985.5], [51.5, 984.5], [50.5, 984.5], [50.5, 985.5], [49.5, 985.5], [49.5, 984.5], [48.5, 984.5], [48.5, 985.5], [48.5, 991.5], [61.5, 991.5], [46.5, 991.5], [47.5, 989.5], [46.5, 988.5], [46.5, 991.5], [44.5, 991.5], [44.5, 985.5], [44.5, 984.5], [47.5, 984.5], [43.5, 984.5], [43.5, 990.5], [42.5, 990.5], [42.5, 985.5], [42.5, 983.5], [46.5, 983.5], [46.5, 982.5], [42.5, 982.5], [42.5, 981.5], [46.5, 981.5], [45.5, 981.5], [45.5, 978.5], [44.5, 978.5], [44.5, 981.5], [43.5, 981.5], [43.5, 978.5], [42.5, 978.5], [42.5, 990.5], [41.5, 990.5], [41.5, 986.5], [41.5, 978.5], [40.5, 979.5], [40.5, 984.5], [39.5, 984.5], [39.5, 991.5], [39.5, 991.5], [39.5, 991.5], [38.5, 991.5], [25.5, 991.5], [25.5, 990.5], [38.5, 990.5], [38.5, 989.5], [25.5, 989.5], [25.5, 988.5], [38.5, 988.5], [38.5, 987.5], [21.5, 987.5], [21.5, 986.5], [38.5, 986.5], [39.5, 987.5], [39.5, 978.5], [39.5, 987.5], [39.5, 985.5], [39.5, 982.5], [39.5, 981.5], [35.5, 981.5], [37.5, 981.5], [37.5, 982.5], [37.5, 981.5], [35.5, 981.5], [35.5, 978.5], [35.5, 979.5], [36.5, 979.5], [35.5, 979.5], [35.5, 981.5], [35.5, 983.5], [35.5, 982.5], [34.5, 982.5], [35.5, 982.5], [35.5, 981.5], [32.5, 981.5], [33.5, 981.5], [33.5, 980.5], [33.5, 981.5], [37.5, 981.5], [37.5, 982.5], [37.5, 981.5], [39.5, 981.5], [39.5, 987.5], [36.5, 985.5], [38.5, 986.5], [38.5, 985.5], [38.5, 985.5], [38.5, 984.5], [37.5, 984.5], [38.5, 984.5], [38.5, 983.5], [38.5, 985.5], [33.5, 985.5], [33.5, 984.5], [30.5, 982.5], [31.5, 981.5], [31.5, 980.5], [31.5, 979.5], [31.5, 979.5], [32.5, 979.5], [32.5, 979.5], [32.5, 979.5], [32.5, 978.5], [33.5, 978.5], [34.5, 978.5], [34.5, 976.5], [37.5, 976.5], [37.5, 978.5], [38.5, 978.5], [38.5, 979.5], [39.5, 975.5], [33.5, 975.5], [33.5, 978.5], [31.5, 977.5], [31.5, 979.5], [31.5, 978.5], [26.5, 978.5], [26.5, 979.5], [30.5, 979.5], [30.5, 980.5], [26.5, 980.5], [26.5, 981.5], [30.5, 981.5], [30.5, 982.5], [24.5, 982.5], [22.5, 982.5], [22.5, 985.5], [32.5, 985.5], [32.5, 984.5], [22.5, 984.5], [22.5, 983.5], [30.5, 983.5], [37.5, 987.5], [38.5, 992.5], [62.5, 992.5], [62.5, 944.5], [61.5, 947.5], [60.5, 947.5], [60.5, 948.5], [61.5, 948.5], [61.5, 949.5], [60.5, 949.5], [60.5, 950.5], [61.5, 950.5], [61.5, 951.5], [60.5, 951.5], [60.5, 952.5], [61.5, 952.5], [61.5, 953.5], [61.5, 953.5], [60.5, 953.5], [60.5, 954.5], [61.5, 954.5], [61.5, 955.5], [60.5, 955.5], [60.5, 956.5], [61.5, 956.5], [60.5, 957.5], [57.5, 957.5], [57.5, 958.5], [61.5, 958.5], [61.5, 959.5], [56.5, 959.5], [61.5, 960.5], [62.5, 974.5], [59.5, 974.5], [59.5, 975.5], [59.5, 974.5], [57.5, 974.5], [57.5, 976.5], [57.5, 979.5], [58.5, 979.5], [58.5, 979.5], [59.5, 979.5], [59.5, 978.5], [59.5, 977.5], [59.5, 981.5], [57.5, 980.5], [57.5, 972.5], [54.5, 973.5], [55.5, 974.5], [56.5, 974.5], [56.5, 976.5], [56.5, 974.5], [54.5, 974.5], [54.5, 976.5], [54.5, 977.5], [55.5, 977.5], [55.5, 978.5], [54.5, 978.5], [54.5, 977.5], [53.5, 977.5], [53.5, 976.5], [53.5, 975.5], [52.5, 975.5], [53.5, 974.5], [62.5, 974.5], [51.5, 974.5], [52.5, 982.5], [62.5, 982.5], [62.5, 991.5], [16.5, 992.5], [16.5, 944.5]]}, -{"id": "tx0hxw", "submitted_by": "ostensacken", "name": "Nigerian Flag", "description": "The Nigerian Flag, along with the blue butterfly. Created by r/Nigeria, and with a blue butterfly as a collaboration with r/lifeisstrange. Prior to the creation of this flag, r/Nigeria had multiple small flag-hearts but no definitive flag. This location was chosen after XQC damaged a previous flag location towards the south.", "website": "", "subreddit": "/r/Nigeria", "center": [0.5, 0.5], "path": []}, {"id": "tx0hxi", "submitted_by": "Samuel23341", "name": "Romania-chan", "description": "Romanian V-tuber", "website": "https://www.twitch.tv/romaniachan", "subreddit": "", "center": [1396.5, 1164.5], "path": [[1383.5, 1171.5], [1383.5, 1165.5], [1385.5, 1161.5], [1390.5, 1157.5], [1398.5, 1156.5], [1403.5, 1158.5], [1405.5, 1160.5], [1407.5, 1161.5], [1408.5, 1171.5], [1396.5, 1171.5]]}, {"id": "tx0hv1", "submitted_by": "DeadPieGamer", "name": "Erwin (Fowl Scourge)", "description": "The main character from Void Cup Games upcoming game, Fowl Scourge", "website": "https://justhellygar.itch.io/", "subreddit": "", "center": [1800.5, 331.5], "path": [[1793.5, 332.5], [1795.5, 330.5], [1796.5, 330.5], [1797.5, 329.5], [1799.5, 329.5], [1799.5, 328.5], [1800.5, 327.5], [1800.5, 326.5], [1804.5, 326.5], [1804.5, 330.5], [1806.5, 333.5], [1804.5, 335.5], [1794.5, 335.5], [1793.5, 333.5]]}, {"id": "tx0hst", "submitted_by": "Deccidie", "name": "MeMz Logo", "description": "Made by the user meshogang and some friends, they were in a three-way protective pact between themselves, and the nearby Echodolls and DB Logos.", "website": "", "subreddit": "", "center": [889.5, 1271.5], "path": [[874.5, 1268.5], [903.5, 1268.5], [903.5, 1273.5], [874.5, 1273.5], [874.5, 1268.5], [874.5, 1268.5]]}, {"id": "tx0hqf", "submitted_by": "zestychipmunk", "name": "Fable Smp", "description": "The Fable SMP is an SMP featuring the likes of Sherbertquake, heyhay, and many more", "website": "https://www.youtube.com/playlist?list=PLUkxwR2Eajacxw9-HlqS7hPyM3HMRSqy0", "subreddit": "/r/fablesmp", "center": [616.5, 1671.5], "path": [[605.5, 1662.5], [605.5, 1680.5], [627.5, 1680.5], [627.5, 1662.5]]}, -{"id": "tx0hle", "submitted_by": "reegalpat53", "name": "Virginia Tech", "description": "A University located in Blacksburg, VA. Home of the Virginia Tech Hokies!", "website": "vt.edu", "subreddit": "/r/VirginiaTech", "center": [977.5, 371.5], "path": [[965.5, 365.5], [965.5, 378.5], [990.5, 377.5], [990.5, 365.5], [990.5, 365.5]]}, +{"id": "tx0hle", "submitted_by": "reegalpat53", "name": "Virginia Tech", "description": "A University located in Blacksburg, VA. Home of the Virginia Tech Hokies!", "website": "https://vt.edu", "subreddit": "/r/VirginiaTech", "center": [977.5, 371.5], "path": [[965.5, 365.5], [965.5, 378.5], [990.5, 377.5], [990.5, 365.5], [990.5, 365.5]]}, {"id": "tx0h95", "submitted_by": "sodapone", "name": "Paul", "description": "In this area, a group of users were maintaining some light blue text that simply said 'PAUL'. What they were referring to was unknown, and they were ultimately overrun by the VA-11 HALL-A community, as they were in the exact spot where Jill's cat was going to be. Later however, the community members felt guilty about it, and, as an apology, integrated Paul into their art as a sticker on the wall.", "website": "", "subreddit": "", "center": [508.5, 1571.5], "path": [[505.5, 1567.5], [510.5, 1567.5], [510.5, 1574.5], [505.5, 1574.5]]}, {"id": "tx0h7u", "submitted_by": "zergtoshi", "name": "NANO website", "description": "The website of NANO, a green, instant & feeless digital currency", "website": "https://nano.org", "subreddit": "/r/nanocurrency", "center": [854.5, 1572.5], "path": [[821.5, 1564.5], [886.5, 1564.5], [886.5, 1580.5], [821.5, 1579.5]]}, {"id": "tx0gzu", "submitted_by": "MrTbags", "name": "Calgary Flames Logo", "description": "The logo of the NHL's Calgary Flames. The number 89 represents 1989, the year that the Flames won their first Stanley Cup.", "website": "", "subreddit": "/r/CalgaryFlames", "center": [932.5, 496.5], "path": [[912.5, 482.5], [913.5, 510.5], [953.5, 510.5], [952.5, 482.5], [952.5, 482.5], [912.5, 481.5]]}, {"id": "tx0gtp", "submitted_by": "Curious-Ad-5001", "name": "Frostpunk Faith flag", "description": "A pixelated rendition of the Faith flag from the game Frostpunk", "website": "", "subreddit": "/r/Frostpunk", "center": [1006.5, 420.5], "path": [[1001.5, 415.5], [1001.5, 423.5], [1004.5, 427.5], [1007.5, 427.5], [1010.5, 423.5], [1010.5, 415.5], [1001.5, 415.5]]}, {"id": "tx0gt3", "submitted_by": "Conycon", "name": "Dad Feels", "description": "Web series and arg Dad Feels, the best youtuber in all the universes", "website": "https://www.youtube.com/channel/UCFzpLhfgdPPVJ_7YrVO-GSw", "subreddit": "/r/DadFeels", "center": [208.5, 1116.5], "path": [[216.5, 1112.5], [216.5, 1120.5], [200.5, 1120.5], [200.5, 1112.5]]}, {"id": "tx0gpw", "submitted_by": "mc395686", "name": "Michaelmcchill Slyfoxhound", "description": "A collaboration from streamers Michaelmcchill and Slyfoxhound, featuring Michael's mascot Alesa", "website": "", "subreddit": "/r/Michaelmcchill", "center": [527.5, 1037.5], "path": [[513.5, 1030.5], [541.5, 1030.5], [541.5, 1044.5], [513.5, 1044.5], [513.5, 1030.5]]}, -{"id": "tx0gn6", "submitted_by": "bigbrother2030", "name": "Trans/UK heart", "description": "A symbol of unity between the UK and trans sections, following periods of expansion by both", "website": "", "subreddit": "", "center": [635.5, 476.5], "path": [[629.5, 476.5], [633.5, 481.5], [636.5, 481.5], [640.5, 476.5], [640.5, 474.5], [638.5, 472.5], [636.5, 472.5], [635.5, 473.5], [634.5, 473.5], [633.5, 472.5], [631.5, 472.5], [629.5, 475.5]]}, {"id": "tx0glg", "submitted_by": "D1551D3N7", "name": "Same Gaming", "description": "SG is an Irish League of Legends electronic sports organisational institute of gaming advancement.", "website": "", "subreddit": "", "center": [179.5, 719.5], "path": [[174.5, 715.5], [183.5, 715.5], [183.5, 723.5], [174.5, 723.5], [174.5, 715.5]]}, {"id": "tx0gkw", "submitted_by": "Skieblu", "name": "Roy", "description": "Roy is the protagonist of Fire Emblem: The Binding Blade, but his first game appearance was actually in Super Smash Bros. Melee. He is the son of Eliwood, one of the protagonists in the subsequent Fire Emblem game.", "website": "https://fireemblem.fandom.com/wiki/Roy", "subreddit": "/r/Fireemblem", "center": [1823.5, 792.5], "path": [[1828.5, 785.5], [1828.5, 784.5], [1825.5, 781.5], [1824.5, 781.5], [1822.5, 779.5], [1822.5, 780.5], [1819.5, 780.5], [1818.5, 781.5], [1819.5, 782.5], [1817.5, 784.5], [1817.5, 786.5], [1819.5, 788.5], [1815.5, 793.5], [1813.5, 793.5], [1813.5, 795.5], [1814.5, 795.5], [1815.5, 796.5], [1815.5, 797.5], [1816.5, 797.5], [1817.5, 798.5], [1818.5, 798.5], [1818.5, 799.5], [1817.5, 800.5], [1817.5, 803.5], [1819.5, 803.5], [1819.5, 801.5], [1823.5, 801.5], [1824.5, 802.5], [1828.5, 802.5], [1829.5, 801.5], [1829.5, 799.5], [1830.5, 797.5], [1835.5, 791.5], [1832.5, 791.5], [1830.5, 790.5], [1828.5, 789.5], [1827.5, 788.5], [1825.5, 788.5]]}, {"id": "tx0gjt", "submitted_by": "uciel33", "name": "Poro", "description": "Poros are the mysterious, magical, and much-loved creatures seemingly originating from the Freljord", "website": "", "subreddit": "", "center": [1210.5, 1147.5], "path": [[1204.5, 1145.5], [1204.5, 1150.5], [1205.5, 1150.5], [1205.5, 1151.5], [1205.5, 1152.5], [1206.5, 1152.5], [1206.5, 1153.5], [1207.5, 1153.5], [1207.5, 1152.5], [1208.5, 1152.5], [1209.5, 1152.5], [1209.5, 1153.5], [1210.5, 1153.5], [1211.5, 1153.5], [1211.5, 1152.5], [1212.5, 1152.5], [1213.5, 1152.5], [1213.5, 1153.5], [1214.5, 1153.5], [1214.5, 1152.5], [1215.5, 1152.5], [1215.5, 1150.5], [1216.5, 1150.5], [1216.5, 1149.5], [1216.5, 1148.5], [1216.5, 1147.5], [1216.5, 1146.5], [1216.5, 1145.5], [1215.5, 1145.5], [1215.5, 1144.5], [1215.5, 1143.5], [1216.5, 1143.5], [1216.5, 1142.5], [1216.5, 1141.5], [1217.5, 1141.5], [1216.5, 1140.5], [1215.5, 1140.5], [1215.5, 1141.5], [1214.5, 1141.5], [1214.5, 1142.5], [1213.5, 1142.5], [1212.5, 1142.5], [1211.5, 1142.5], [1211.5, 1141.5], [1210.5, 1141.5], [1209.5, 1141.5], [1208.5, 1141.5], [1208.5, 1142.5], [1207.5, 1142.5], [1206.5, 1142.5], [1206.5, 1141.5], [1205.5, 1140.5], [1204.5, 1140.5], [1204.5, 1142.5], [1204.5, 1143.5], [1205.5, 1144.5], [1204.5, 1145.5], [1204.5, 1146.5], [1204.5, 1146.5], [1204.5, 1146.5], [1204.5, 1147.5], [1205.5, 1149.5], [1204.5, 1149.5], [1204.5, 1147.5], [1204.5, 1148.5], [1204.5, 1149.5]]}, {"id": "tx0gjk", "submitted_by": "serillymc", "name": "Foolish Gamers shark", "description": "A pixel illustration of a shark that represents the streamer Foolish Gamers", "website": "https://www.twitch.tv/foolish_gamers", "subreddit": "/r/FoolishGamers", "center": [1263.5, 961.5], "path": [[1246.5, 989.5], [1251.5, 989.5], [1251.5, 988.5], [1252.5, 988.5], [1252.5, 987.5], [1258.5, 987.5], [1258.5, 986.5], [1262.5, 986.5], [1262.5, 985.5], [1266.5, 985.5], [1266.5, 993.5], [1265.5, 993.5], [1265.5, 994.5], [1265.5, 995.5], [1264.5, 995.5], [1265.5, 995.5], [1265.5, 996.5], [1265.5, 995.5], [1267.5, 995.5], [1267.5, 996.5], [1268.5, 996.5], [1268.5, 997.5], [1269.5, 997.5], [1269.5, 998.5], [1270.5, 998.5], [1270.5, 997.5], [1271.5, 997.5], [1271.5, 996.5], [1272.5, 996.5], [1272.5, 995.5], [1273.5, 995.5], [1273.5, 991.5], [1274.5, 991.5], [1274.5, 983.5], [1275.5, 983.5], [1275.5, 979.5], [1276.5, 979.5], [1276.5, 978.5], [1277.5, 978.5], [1277.5, 976.5], [1278.5, 976.5], [1278.5, 972.5], [1279.5, 972.5], [1279.5, 969.5], [1280.5, 969.5], [1280.5, 964.5], [1281.5, 964.5], [1281.5, 962.5], [1283.5, 962.5], [1283.5, 952.5], [1282.5, 952.5], [1282.5, 951.5], [1281.5, 951.5], [1281.5, 950.5], [1280.5, 950.5], [1280.5, 949.5], [1279.5, 949.5], [1279.5, 948.5], [1278.5, 948.5], [1278.5, 947.5], [1277.5, 947.5], [1276.5, 947.5], [1276.5, 946.5], [1274.5, 946.5], [1274.5, 945.5], [1272.5, 945.5], [1272.5, 944.5], [1271.5, 944.5], [1271.5, 943.5], [1270.5, 943.5], [1270.5, 942.5], [1269.5, 942.5], [1269.5, 941.5], [1268.5, 941.5], [1268.5, 940.5], [1266.5, 940.5], [1266.5, 939.5], [1265.5, 939.5], [1265.5, 938.5], [1264.5, 938.5], [1264.5, 937.5], [1262.5, 937.5], [1262.5, 936.5], [1261.5, 936.5], [1261.5, 935.5], [1259.5, 935.5], [1259.5, 934.5], [1245.5, 934.5], [1245.5, 936.5], [1243.5, 936.5], [1243.5, 937.5], [1239.5, 937.5], [1239.5, 942.5], [1241.5, 942.5], [1241.5, 943.5], [1242.5, 943.5], [1242.5, 946.5], [1241.5, 946.5], [1241.5, 947.5], [1242.5, 947.5], [1242.5, 948.5], [1244.5, 948.5], [1244.5, 949.5], [1245.5, 949.5], [1245.5, 950.5], [1246.5, 950.5], [1246.5, 952.5], [1249.5, 952.5], [1249.5, 953.5], [1250.5, 953.5], [1250.5, 954.5], [1250.5, 954.5], [1250.5, 954.5], [1252.5, 954.5], [1252.5, 955.5], [1252.5, 956.5], [1253.5, 956.5], [1253.5, 957.5], [1254.5, 956.5], [1254.5, 962.5], [1255.5, 962.5], [1255.5, 965.5], [1256.5, 965.5], [1256.5, 966.5], [1257.5, 966.5], [1257.5, 967.5], [1262.5, 967.5], [1262.5, 969.5], [1263.5, 969.5], [1263.5, 975.5], [1262.5, 975.5], [1262.5, 976.5], [1261.5, 976.5], [1261.5, 977.5], [1258.5, 977.5], [1258.5, 978.5], [1256.5, 978.5], [1256.5, 979.5], [1255.5, 979.5], [1255.5, 980.5], [1253.5, 980.5], [1253.5, 981.5], [1251.5, 981.5], [1251.5, 982.5], [1250.5, 982.5], [1250.5, 983.5], [1249.5, 983.5], [1249.5, 984.5], [1247.5, 984.5], [1247.5, 987.5], [1246.5, 987.5], [1246.5, 989.5]]}, {"id": "tx0ftr", "submitted_by": "Shigglefits", "name": "Sleeping Kirby", "description": "Kirby is the main protagonist of Nintendo's Kirby series of video games. Here Kirby is depicted sleeping, this sprite was added to the canvas by the /r/placekirby discord after an agreement was made with /r/worldflipper , who's art can be seen to the left and right of sleepy Kirby. The flowers on Sleepy Kirby's sleeping cap are a homage to the beautiful forest that Sleepy Kirby was placed in. This forest was eventually overrun, but Sleepy Kirby remained.", "website": "", "subreddit": "/r/placekirby", "center": [1864.5, 112.5], "path": [[1853.5, 117.5], [1853.5, 116.5], [1857.5, 108.5], [1862.5, 105.5], [1869.5, 105.5], [1874.5, 117.5]]}, -{"id": "tx0f02", "submitted_by": "Luislardar", "name": "Rubius minecraft skin", "description": "Representation of the skin used by the Spanish Streamer Rubius in Minecraft", "website": "[Twitch.tv/Rubius](https://Twitch.tv/Rubius)", "subreddit": "/r/ubius", "center": [1527.5, 650.5], "path": [[1491.5, 613.5], [1565.5, 613.5], [1563.5, 688.5], [1490.5, 688.5]]}, +{"id": "tx0f02", "submitted_by": "Luislardar", "name": "Rubius minecraft skin", "description": "Representation of the skin used by the Spanish Streamer Rubius in Minecraft", "website": "https://Twitch.tv/Rubius", "subreddit": "/r/ubius", "center": [1527.5, 650.5], "path": [[1491.5, 613.5], [1565.5, 613.5], [1563.5, 688.5], [1490.5, 688.5]]}, {"id": "tx0exy", "submitted_by": "Critfish", "name": "Portal 2: Desolation logo", "description": "The orange Omega logo used by the Desolation mod for Portal 2.", "website": "https://emberspark.games/desolation/", "subreddit": "", "center": [647.5, 1327.5], "path": [[644.5, 1324.5], [649.5, 1324.5], [649.5, 1329.5], [644.5, 1329.5]]}, {"id": "tx0etq", "submitted_by": "mskrs", "name": "Couriway", "description": "MCSR streamer/youtuber; 4x world record holder", "website": "https://linktr.ee/Couriway", "subreddit": "/r/couriway", "center": [1495.5, 1459.5], "path": [[1491.5, 1455.5], [1498.5, 1455.5], [1498.5, 1462.5], [1491.5, 1462.5]]}, {"id": "tx0eix", "submitted_by": "Titan5005", "name": "Night in the Woods", "description": "Characters from the indie game Night in the Woods", "website": "", "subreddit": "/r/NightInTheWoods", "center": [1479.5, 69.5], "path": [[1467.5, 51.5], [1466.5, 80.5], [1479.5, 80.5], [1495.5, 88.5], [1491.5, 63.5], [1480.5, 63.5], [1481.5, 51.5]]}, @@ -4372,31 +4065,27 @@ {"id": "tx0dkn", "submitted_by": "Small_Heath", "name": "Jack", "description": "The logo of Twitch streamer and GTA Roleplayer Jack.", "website": "https://www.twitch.tv/jack", "subreddit": "", "center": [353.5, 1024.5], "path": [[337.5, 1008.5], [368.5, 1008.5], [368.5, 1039.5], [337.5, 1039.5], [337.5, 1008.5]]}, {"id": "tx0dh3", "submitted_by": "nanopulga", "name": "Anne Boonchuy from Amphibia", "description": "Anne is the main protagonist in the Disney TV show, Amphibia. It chronicles the adventures of a Thai-American 13-year-old Anne Boonchuy, who is magically transported to the fantastical world of Amphibia, a rural marshland full of frog-people. There, she meets an excitable young frog named Sprig Plantar, his unpredictable sister Polly and overprotective grandpa Hop Pop. In here she appears with her gem powers.", "website": "https://discord.gg/DJUqDnE", "subreddit": "/r/amphibia", "center": [471.5, 917.5], "path": [[459.5, 905.5], [459.5, 928.5], [460.5, 928.5], [460.5, 929.5], [483.5, 929.5], [483.5, 928.5], [482.5, 927.5], [482.5, 926.5], [481.5, 925.5], [482.5, 924.5], [482.5, 923.5], [483.5, 922.5], [484.5, 921.5], [485.5, 921.5], [486.5, 920.5], [487.5, 921.5], [488.5, 921.5], [488.5, 913.5], [487.5, 913.5], [486.5, 914.5], [482.5, 914.5], [481.5, 913.5], [480.5, 912.5], [480.5, 908.5], [481.5, 907.5], [482.5, 906.5], [482.5, 905.5], [470.5, 905.5]]}, {"id": "tx0d4k", "submitted_by": "thrownaway12211", "name": "Flower", "description": "A happy flower, as a symbol of unity.", "website": "", "subreddit": "", "center": [1651.5, 1705.5], "path": [[1647.5, 1699.5], [1647.5, 1711.5], [1655.5, 1711.5], [1655.5, 1699.5], [1647.5, 1699.5]]}, -{"id": "tx0cxg", "submitted_by": "Greenhourglass", "name": "HoliHowls", "description": "A small canine started by friends and followers of Twitch streamer HoliHowls.", "website": "https://twitter.com/Weird_Romance_/status/1510504536053592064", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx0cvd", "submitted_by": "Obiejenkins", "name": "The Meat Man", "description": "In honor of a friend that recently passed away, a group called the Meat Men worked together with r/yourturntodie to place a Memoriam of their friend's icon.", "website": "", "subreddit": "/r/yourturntodie", "center": [428.5, 1859.5], "path": [[425.5, 1857.5], [431.5, 1857.5], [430.5, 1861.5], [426.5, 1861.5]]}, {"id": "tx0cv1", "submitted_by": "guromagala", "name": "Klonoa, Rayman and PaRappa", "description": "titular protagonists of each series", "website": "", "subreddit": "", "center": [1702.5, 188.5], "path": [[1707.5, 206.5], [1698.5, 206.5], [1698.5, 170.5], [1708.5, 170.5], [1707.5, 181.5], [1704.5, 181.5], [1705.5, 190.5]]}, {"id": "tx0clg", "submitted_by": "UnesourisVerte123", "name": "Chateau Frontenac", "description": "Chateau-style hotel built by Canadian railway companies in the late 19th and early 20th centuries to encourage tourists to travel on their railways. National historic site.", "website": "https://www.historichotels.org/hotels-resorts/fairmont-le-chateau-frontenac/history.php", "subreddit": "/r/Quebec", "center": [990.5, 995.5], "path": [[971.5, 1020.5], [976.5, 1013.5], [982.5, 1008.5], [986.5, 1007.5], [987.5, 1007.5], [996.5, 1007.5], [1000.5, 1006.5], [1004.5, 1009.5], [1008.5, 1015.5], [1008.5, 991.5], [1005.5, 986.5], [1004.5, 982.5], [1002.5, 975.5], [986.5, 975.5], [983.5, 982.5], [983.5, 985.5], [977.5, 985.5], [971.5, 992.5]]}, {"id": "tx0c9f", "submitted_by": "PaulMCDL", "name": "Romanian Community Flag", "description": "Originally meant to represent the Romanian Community of Risk Universalis III, this Romanian flag next to Jowee, PAO and Overwatch came to also represent the Romanian community as a whole.nn-Planned & executed by Drago\u0219, PaulMCDL, Duncan and AggressiveCat100", "website": "", "subreddit": "", "center": [1823.5, 133.5], "path": [[1819.5, 130.5], [1819.5, 130.5], [1819.5, 130.5], [1819.5, 135.5], [1827.5, 135.5], [1827.5, 130.5]]}, -{"id": "tx0c7e", "submitted_by": "Luislardar", "name": "Andynsane", "description": "A photo of a Peruvian streamer has invaded other Peruvian communities with little flags", "website": "https://www.youtube.com/c/Andynsane", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx0c08", "submitted_by": "Mayheem_", "name": "Mr. Robot", "description": "eps1.0_hellofriend.mov is the first episode of Mr. Robot and these are the first words spoken at the beginning of the series", "website": "", "subreddit": "/r/MrRobot", "center": [1075.5, 1626.5], "path": [[1043.5, 1632.5], [1106.5, 1632.5], [1106.5, 1620.5], [1043.5, 1620.5], [1043.5, 1632.5]]}, {"id": "tx0c03", "submitted_by": "niko601", "name": "fc barcelona", "description": "the logo from the spanish football team fc barcelona", "website": "", "subreddit": "/r/FCBarcelona", "center": [1466.5, 1682.5], "path": [[1442.5, 1660.5], [1491.5, 1660.5], [1489.5, 1704.5], [1441.5, 1704.5], [1442.5, 1660.5]]}, {"id": "tx0bxo", "submitted_by": "TOP_MCG", "name": "D12", "description": "D12 is an American Hip-Hop group", "website": "", "subreddit": "", "center": [900.5, 995.5], "path": [[901.5, 991.5], [901.5, 991.5], [901.5, 991.5], [901.5, 991.5], [901.5, 991.5], [901.5, 991.5], [901.5, 991.5], [898.5, 991.5], [898.5, 998.5], [901.5, 998.5]]}, {"id": "tx0bsv", "submitted_by": "GermanScientist", "name": "Vulfpeck", "description": "An American funk group.nFunky and low volume!", "website": "https://vulfpeck.com/", "subreddit": "/r/Vulfpeck", "center": [1158.5, 1854.5], "path": [[1153.5, 1850.5], [1162.5, 1850.5], [1162.5, 1857.5], [1153.5, 1857.5], [1153.5, 1850.5]]}, {"id": "tx0blr", "submitted_by": "Titan5005", "name": "Tennessee Titans", "description": "Led by members of r/Tennesseetitans, this features the Titans main and secondary logos as well the numbers for current Titans Derrick Henry(22), AJ Brown(11), and Kevin Byard(31). Tits is a funny nickname for Titans.", "website": "", "subreddit": "/r/Tennesseetitans", "center": [1211.5, 1202.5], "path": [[1201.5, 1175.5], [1201.5, 1247.5], [1203.5, 1238.5], [1216.5, 1220.5], [1218.5, 1206.5], [1232.5, 1204.5], [1233.5, 1199.5], [1224.5, 1199.5], [1223.5, 1189.5], [1218.5, 1187.5], [1217.5, 1178.5], [1223.5, 1175.5]]}, {"id": "tx0b4h", "submitted_by": "Netjakk", "name": "STAYC", "description": "STAYC (\u1109\u1173\u1110\u1166\u110b\u1175\u110a\u1175) is a 6-member girl group from South Korea under High Up Entertainment. They consist of: Sieun, Seeun, Sumin, J, Isa and Yoon. They debuted on November 12, 2020 with their first single album \u201cStar To A Young Culture\u201d.", "website": "", "subreddit": "", "center": [1516.5, 885.5], "path": [[1532.5, 889.5], [1532.5, 880.5], [1499.5, 880.5], [1499.5, 889.5]]}, -{"id": "tx0az9", "submitted_by": "LimitedShelf2", "name": "Ethiopian Flag", "description": "Ethiopia, officially the Federal Democratic Republic of Ethiopia, is a landlocked country in the Horn of Africa. It shares borders with Eritrea and Djibouti to the north, Somalia to the east and northeast, Kenya to the south, South Sudan to the west, and Sudan to the northwest.", "website": "https://visitethiopia.travel/", "subreddit": "/r/Ethiopia", "center": [0.5, 0.5], "path": []}, {"id": "tx0avo", "submitted_by": "desman735", "name": "Anthrofractal", "description": "An interactive webcomic story", "website": "https://anthrofractal.com/", "subreddit": "/r/ANTHROFRACTAL", "center": [1278.5, 898.5], "path": [[1276.5, 897.5], [1276.5, 898.5], [1277.5, 899.5], [1278.5, 899.5], [1279.5, 898.5], [1279.5, 897.5], [1278.5, 896.5], [1277.5, 896.5]]}, {"id": "tx0au6", "submitted_by": "serillymc", "name": "Skateboarding Sapnap", "description": "A pixel illustration of the streamer Sapnap on a skateboard.", "website": "https://twitch.tv/sapnap", "subreddit": "/r/sapnap", "center": [1230.5, 1089.5], "path": [[1245.5, 1089.5], [1243.5, 1089.5], [1243.5, 1088.5], [1242.5, 1088.5], [1242.5, 1087.5], [1240.5, 1087.5], [1241.5, 1086.5], [1240.5, 1086.5], [1240.5, 1085.5], [1238.5, 1085.5], [1238.5, 1086.5], [1237.5, 1086.5], [1237.5, 1088.5], [1235.5, 1088.5], [1235.5, 1089.5], [1235.5, 1090.5], [1236.5, 1090.5], [1236.5, 1091.5], [1237.5, 1091.5], [1237.5, 1092.5], [1238.5, 1092.5], [1238.5, 1093.5], [1237.5, 1093.5], [1237.5, 1099.5], [1236.5, 1099.5], [1236.5, 1100.5], [1234.5, 1100.5], [1234.5, 1109.5], [1234.5, 1110.5], [1241.5, 1110.5], [1241.5, 1109.5], [1242.5, 1109.5], [1242.5, 1108.5], [1242.5, 1109.5], [1241.5, 1109.5], [1241.5, 1110.5], [1240.5, 1110.5], [1240.5, 1111.5], [1238.5, 1111.5], [1238.5, 1113.5], [1236.5, 1113.5], [1236.5, 1111.5], [1225.5, 1111.5], [1225.5, 1113.5], [1223.5, 1113.5], [1223.5, 1111.5], [1221.5, 1111.5], [1221.5, 1110.5], [1220.5, 1110.5], [1220.5, 1109.5], [1219.5, 1109.5], [1219.5, 1108.5], [1219.5, 1109.5], [1224.5, 1109.5], [1224.5, 1108.5], [1224.5, 1106.5], [1223.5, 1106.5], [1224.5, 1106.5], [1224.5, 1101.5], [1223.5, 1101.5], [1222.5, 1101.5], [1222.5, 1100.5], [1221.5, 1100.5], [1221.5, 1093.5], [1222.5, 1093.5], [1222.5, 1091.5], [1223.5, 1091.5], [1223.5, 1090.5], [1225.5, 1090.5], [1225.5, 1088.5], [1224.5, 1088.5], [1224.5, 1087.5], [1223.5, 1087.5], [1223.5, 1086.5], [1222.5, 1086.5], [1222.5, 1085.5], [1221.5, 1085.5], [1220.5, 1085.5], [1220.5, 1084.5], [1219.5, 1084.5], [1219.5, 1083.5], [1218.5, 1083.5], [1218.5, 1079.5], [1217.5, 1079.5], [1217.5, 1078.5], [1218.5, 1078.5], [1218.5, 1077.5], [1219.5, 1077.5], [1219.5, 1075.5], [1220.5, 1075.5], [1220.5, 1074.5], [1221.5, 1074.5], [1221.5, 1073.5], [1223.5, 1073.5], [1223.5, 1072.5], [1224.5, 1072.5], [1224.5, 1071.5], [1228.5, 1071.5], [1229.5, 1071.5], [1229.5, 1070.5], [1230.5, 1070.5], [1230.5, 1071.5], [1234.5, 1071.5], [1234.5, 1072.5], [1235.5, 1072.5], [1235.5, 1073.5], [1236.5, 1073.5], [1236.5, 1074.5], [1237.5, 1074.5], [1237.5, 1075.5], [1238.5, 1075.5], [1238.5, 1076.5], [1239.5, 1076.5], [1239.5, 1077.5], [1240.5, 1077.5], [1241.5, 1081.5], [1243.5, 1081.5], [1243.5, 1082.5], [1244.5, 1082.5], [1244.5, 1083.5], [1244.5, 1084.5], [1245.5, 1084.5], [1245.5, 1085.5], [1246.5, 1085.5], [1246.5, 1086.5], [1245.5, 1086.5], [1245.5, 1087.5], [1245.5, 1086.5], [1244.5, 1086.5], [1244.5, 1085.5], [1243.5, 1085.5], [1243.5, 1083.5], [1242.5, 1083.5], [1241.5, 1083.5], [1241.5, 1083.5], [1241.5, 1085.5], [1241.5, 1086.5], [1242.5, 1086.5], [1242.5, 1087.5], [1243.5, 1087.5], [1243.5, 1088.5], [1244.5, 1088.5], [1244.5, 1089.5], [1245.5, 1089.5]]}, {"id": "tx0aou", "submitted_by": "Keqringe", "name": "Kotoha Tanaka", "description": "Character from iDOLM@STER Million Live!", "website": "", "subreddit": "/r/idolmaster", "center": [1726.5, 1741.5], "path": [[1719.5, 1746.5], [1719.5, 1744.5], [1720.5, 1744.5], [1720.5, 1742.5], [1719.5, 1742.5], [1719.5, 1738.5], [1720.5, 1737.5], [1721.5, 1736.5], [1722.5, 1735.5], [1730.5, 1734.5], [1731.5, 1735.5], [1732.5, 1736.5], [1733.5, 1737.5], [1733.5, 1740.5], [1734.5, 1740.5], [1734.5, 1746.5], [1734.5, 1747.5], [1719.5, 1747.5], [1719.5, 1744.5], [1720.5, 1744.5]]}, {"id": "tx0aic", "submitted_by": "Baron_Von_D", "name": "Nervyr", "description": "Path of Exile YouTube and streamer Nervyr, popular for the Before You Buy videos showcasing MTXs.", "website": "https://www.youtube.com/c/Nervyr", "subreddit": "", "center": [1388.5, 477.5], "path": [[1384.5, 473.5], [1392.5, 473.5], [1392.5, 481.5], [1384.5, 481.5]]}, {"id": "tx0a8a", "submitted_by": "birdie420fgt", "name": "fcfm", "description": "Logo of the Faculty of Physical and Mathematical Sciences of Universidad de Chile", "website": "https://ingenieria.uchile.cl/", "subreddit": "", "center": [1247.5, 1633.5], "path": [[1240.5, 1628.5], [1240.5, 1638.5], [1254.5, 1638.5], [1254.5, 1628.5], [1254.5, 1628.5], [1254.5, 1628.5]]}, -{"id": "tx0a13", "submitted_by": "Noirsam", "name": "OMOCAT", "description": "indie art studio (and sometimes person) | creator of OMORI GAMEn", "website": "https://www.omocat.com/", "subreddit": "/r/OMORI", "center": [0.5, 0.5], "path": []}, {"id": "tx09y8", "submitted_by": "oriscratch", "name": "Unsong Aleph", "description": "An aleph symbolizing Unsong, a fantasy web serial by Scott Alexander involving Judeo-Christian mythology, moral philosophy, theodicy, magical copyright law, and biblical whale puns.", "website": "https://unsongbook.com/", "subreddit": "/r/unsong", "center": [1728.5, 1259.5], "path": [[1724.5, 1255.5], [1724.5, 1263.5], [1732.5, 1263.5], [1732.5, 1255.5], [1724.5, 1255.5]]}, {"id": "tx09wu", "submitted_by": "moabmauler5000", "name": "Flagpole Glitch", "description": "The Flagpole glitch is a trick in Super Mario Bros. 1 speedrunning where the player skips the flag lowering animation by clipping sufficiently into the block at the base of the flagpole and touching the flagpole from there.", "website": "", "subreddit": "", "center": [1036.5, 483.5], "path": [[1020.5, 465.5], [1020.5, 501.5], [1051.5, 502.5], [1051.5, 465.5]]}, {"id": "tx09qo", "submitted_by": "ThyCheshireCat", "name": "It's SMORMU!!!!", "description": "If you want Smormu to be the fifth Smiling Friend, text SMORMU to 555-0100. And if you don't, text NO I REALLY REALLY REALLY DON'T WANT SMORMU to 555-0100.", "website": "https://www.adultswim.com/videos/smiling-friends", "subreddit": "/r/SmilingFriends", "center": [544.5, 906.5], "path": [[538.5, 908.5], [542.5, 904.5], [542.5, 902.5], [543.5, 901.5], [548.5, 901.5], [548.5, 903.5], [547.5, 904.5], [548.5, 905.5], [548.5, 908.5], [547.5, 909.5], [548.5, 910.5], [548.5, 911.5], [547.5, 912.5], [546.5, 911.5], [545.5, 911.5], [544.5, 910.5], [540.5, 910.5], [538.5, 908.5]]}, {"id": "tx099t", "submitted_by": "Skieblu", "name": "Marth", "description": "Marth is the protagonist of Fire Emblem: Shadow Dragon and the Blade of Light (first released in Japan in 1990) in addition to its sequel and remakes. He has also been a playable character in the Super Smash Bros. franchise since Melee.", "website": "https://fireemblem.fandom.com/wiki/Marth", "subreddit": "/r/Fireemblem", "center": [504.5, 695.5], "path": [[504.5, 683.5], [500.5, 683.5], [497.5, 686.5], [497.5, 690.5], [500.5, 693.5], [498.5, 695.5], [498.5, 697.5], [497.5, 698.5], [497.5, 699.5], [496.5, 700.5], [496.5, 702.5], [498.5, 702.5], [498.5, 703.5], [499.5, 704.5], [498.5, 705.5], [498.5, 706.5], [500.5, 706.5], [501.5, 704.5], [503.5, 704.5], [503.5, 705.5], [505.5, 707.5], [506.5, 707.5], [507.5, 706.5], [507.5, 704.5], [508.5, 704.5], [509.5, 703.5], [511.5, 703.5], [512.5, 702.5], [513.5, 702.5], [513.5, 701.5], [511.5, 699.5], [511.5, 697.5], [510.5, 696.5], [510.5, 687.5], [509.5, 686.5], [508.5, 687.5], [507.5, 686.5], [507.5, 685.5], [506.5, 685.5], [505.5, 684.5]]}, {"id": "tx0991", "submitted_by": "Synerabo", "name": "Niko", "description": "Niko is the main character from the game \u2033Oneshot\u2033 released on June 30th, 2014. The player is a \u2033god\u2033 that leads the protagonist Niko in a journey to bring the \u2033Sun\u2033 in the form of a big lightbulb to a spot where he then can save the world from eternal darkness.", "website": "https://store.steampowered.com/app/420530/OneShot/", "subreddit": "/r/oneshot", "center": [1090.5, 1650.5], "path": [[1075.5, 1666.5], [1075.5, 1665.5], [1075.5, 1663.5], [1076.5, 1662.5], [1076.5, 1661.5], [1075.5, 1660.5], [1062.5, 1650.5], [1080.5, 1632.5], [1114.5, 1637.5], [1113.5, 1665.5], [1121.5, 1661.5], [1115.5, 1653.5], [1113.5, 1665.5], [1107.5, 1665.5], [1101.5, 1665.5], [1096.5, 1666.5], [1094.5, 1667.5], [1095.5, 1669.5], [1090.5, 1668.5], [1087.5, 1669.5], [1085.5, 1670.5], [1082.5, 1670.5], [1079.5, 1668.5], [1077.5, 1668.5]]}, -{"id": "tx08us", "submitted_by": "skrillyd", "name": "Osu HitCircle and Gondola ([pxls.space](https://pxls.space))", "description": "This was a collab between Osu and [pxls.space](https://pxls.space). A gondola is a version of popular meme Spurdo Sp\u00e4rde", "website": "https://pxls.space", "subreddit": "/r/osuplace", "center": [738.5, 1712.5], "path": [[729.5, 1693.5], [729.5, 1692.5], [730.5, 1692.5], [731.5, 1691.5], [732.5, 1690.5], [732.5, 1686.5], [733.5, 1686.5], [733.5, 1685.5], [739.5, 1685.5], [739.5, 1686.5], [740.5, 1686.5], [740.5, 1690.5], [741.5, 1689.5], [740.5, 1691.5], [740.5, 1692.5], [746.5, 1692.5], [746.5, 1691.5], [747.5, 1692.5], [747.5, 1693.5], [748.5, 1693.5], [748.5, 1694.5], [749.5, 1694.5], [749.5, 1695.5], [750.5, 1695.5], [750.5, 1696.5], [754.5, 1696.5], [754.5, 1697.5], [755.5, 1697.5], [755.5, 1698.5], [755.5, 1698.5], [756.5, 1698.5], [756.5, 1699.5], [757.5, 1699.5], [757.5, 1701.5], [758.5, 1701.5], [758.5, 1703.5], [759.5, 1703.5], [759.5, 1722.5], [758.5, 1722.5], [758.5, 1723.5], [757.5, 1723.5], [757.5, 1724.5], [756.5, 1724.5], [756.5, 1725.5], [755.5, 1725.5], [755.5, 1726.5], [754.5, 1726.5], [753.5, 1726.5], [753.5, 1727.5], [753.5, 1728.5], [752.5, 1728.5], [752.5, 1731.5], [753.5, 1731.5], [753.5, 1732.5], [752.5, 1732.5], [751.5, 1731.5], [745.5, 1731.5], [744.5, 1731.5], [743.5, 1731.5], [743.5, 1732.5], [741.5, 1732.5], [741.5, 1733.5], [740.5, 1733.5], [740.5, 1734.5], [738.5, 1734.5], [738.5, 1735.5], [737.5, 1734.5], [727.5, 1734.5], [727.5, 1733.5], [726.5, 1733.5], [727.5, 1732.5], [727.5, 1731.5], [724.5, 1731.5], [724.5, 1730.5], [723.5, 1730.5], [723.5, 1729.5], [722.5, 1729.5], [722.5, 1728.5], [721.5, 1728.5], [721.5, 1727.5], [721.5, 1726.5], [720.5, 1725.5], [719.5, 1723.5], [718.5, 1721.5], [717.5, 1721.5], [717.5, 1720.5], [717.5, 1718.5], [716.5, 1718.5], [716.5, 1715.5], [716.5, 1710.5], [717.5, 1709.5], [717.5, 1706.5], [718.5, 1704.5], [717.5, 1705.5], [717.5, 1703.5], [718.5, 1703.5], [718.5, 1702.5], [719.5, 1702.5], [722.5, 1699.5], [721.5, 1699.5], [722.5, 1698.5], [723.5, 1698.5], [724.5, 1697.5], [726.5, 1697.5], [726.5, 1696.5], [727.5, 1695.5]]}, +{"id": "tx08us", "submitted_by": "skrillyd", "name": "osu! hitcircle and gondola", "description": "This was a collab between osu! and pxls.space. A hitcircle is one of the circles you click in osu! A gondola is a version of popular meme Spurdo Sp\u00e4rde.", "website": "https://pxls.space", "subreddit": "/r/osuplace", "center": [738.5, 1712.5], "path": [[729.5, 1693.5], [729.5, 1692.5], [730.5, 1692.5], [731.5, 1691.5], [732.5, 1690.5], [732.5, 1686.5], [733.5, 1686.5], [733.5, 1685.5], [739.5, 1685.5], [739.5, 1686.5], [740.5, 1686.5], [740.5, 1690.5], [741.5, 1689.5], [740.5, 1691.5], [740.5, 1692.5], [746.5, 1692.5], [746.5, 1691.5], [747.5, 1692.5], [747.5, 1693.5], [748.5, 1693.5], [748.5, 1694.5], [749.5, 1694.5], [749.5, 1695.5], [750.5, 1695.5], [750.5, 1696.5], [754.5, 1696.5], [754.5, 1697.5], [755.5, 1697.5], [755.5, 1698.5], [755.5, 1698.5], [756.5, 1698.5], [756.5, 1699.5], [757.5, 1699.5], [757.5, 1701.5], [758.5, 1701.5], [758.5, 1703.5], [759.5, 1703.5], [759.5, 1722.5], [758.5, 1722.5], [758.5, 1723.5], [757.5, 1723.5], [757.5, 1724.5], [756.5, 1724.5], [756.5, 1725.5], [755.5, 1725.5], [755.5, 1726.5], [754.5, 1726.5], [753.5, 1726.5], [753.5, 1727.5], [753.5, 1728.5], [752.5, 1728.5], [752.5, 1731.5], [753.5, 1731.5], [753.5, 1732.5], [752.5, 1732.5], [751.5, 1731.5], [745.5, 1731.5], [744.5, 1731.5], [743.5, 1731.5], [743.5, 1732.5], [741.5, 1732.5], [741.5, 1733.5], [740.5, 1733.5], [740.5, 1734.5], [738.5, 1734.5], [738.5, 1735.5], [737.5, 1734.5], [727.5, 1734.5], [727.5, 1733.5], [726.5, 1733.5], [727.5, 1732.5], [727.5, 1731.5], [724.5, 1731.5], [724.5, 1730.5], [723.5, 1730.5], [723.5, 1729.5], [722.5, 1729.5], [722.5, 1728.5], [721.5, 1728.5], [721.5, 1727.5], [721.5, 1726.5], [720.5, 1725.5], [719.5, 1723.5], [718.5, 1721.5], [717.5, 1721.5], [717.5, 1720.5], [717.5, 1718.5], [716.5, 1718.5], [716.5, 1715.5], [716.5, 1710.5], [717.5, 1709.5], [717.5, 1706.5], [718.5, 1704.5], [717.5, 1705.5], [717.5, 1703.5], [718.5, 1703.5], [718.5, 1702.5], [719.5, 1702.5], [722.5, 1699.5], [721.5, 1699.5], [722.5, 1698.5], [723.5, 1698.5], [724.5, 1697.5], [726.5, 1697.5], [726.5, 1696.5], [727.5, 1695.5]]}, {"id": "tx08nx", "submitted_by": "xRGTMX", "name": "Big Chungus", "description": "An image of the cartoon character Bugs Bunny, usually captioned with the phrase Big Chungus and presented as a game for PlayStation 4.nnThis version and shape of Bugs Bunny appeared in a Merrie Melodies cartoon short named Wabbit Trouble, which was first shown on December 20th, 1941. In the short, Bugs is mocking Elmer Fudd, who was made much more portly than his previous and more iconic design.nnWhile the term Big Chungus and the particular screenshot of Bugs Bunny circulated on Urban Dictionary and 4chan respectively, the meme gained ironic popularity on iFunny and certain parts of Reddit from late 2018 and early 2019. Big Chungus was briefly referenced in the 2021 movie Space Jam: A New Legacy.", "website": "", "subreddit": "", "center": [721.5, 1818.5], "path": [[717.5, 1801.5], [718.5, 1802.5], [718.5, 1804.5], [719.5, 1805.5], [719.5, 1817.5], [720.5, 1817.5], [721.5, 1816.5], [721.5, 1806.5], [722.5, 1805.5], [722.5, 1802.5], [723.5, 1801.5], [725.5, 1803.5], [725.5, 1813.5], [724.5, 1813.5], [724.5, 1818.5], [725.5, 1819.5], [725.5, 1820.5], [726.5, 1820.5], [726.5, 1821.5], [727.5, 1822.5], [727.5, 1824.5], [728.5, 1824.5], [728.5, 1830.5], [716.5, 1830.5], [716.5, 1802.5]]}, {"id": "tx08nr", "submitted_by": "UnesourisVerte123", "name": "Manic-5", "description": "The world\u2019s largest dam - Manic-5 symbolized a national achievement and a symbol of pride for Qu\u00e9bec francophones", "website": "https://www.historymuseum.ca/history-hall/manic-5-marvel-engineering/", "subreddit": "/r/Quebec", "center": [1066.5, 979.5], "path": [[1050.5, 974.5], [1051.5, 977.5], [1054.5, 980.5], [1056.5, 983.5], [1059.5, 985.5], [1061.5, 986.5], [1067.5, 985.5], [1073.5, 983.5], [1080.5, 980.5], [1082.5, 979.5], [1083.5, 975.5], [1083.5, 974.5]]}, {"id": "tx08lx", "submitted_by": "Exycusucyxe", "name": "D4DJ Groovy Mix", "description": "D4DJ Groovy Mix is a rhythm game developed by DONUTS and published by Bushiroad, based on the Dig Delight Direct Drive! (D4DJ) franchise.", "website": "https://en.d4dj-pj.com/game/", "subreddit": "/r/D4DJ", "center": [1535.5, 1752.5], "path": [[1539.5, 1745.5], [1538.5, 1744.5], [1532.5, 1744.5], [1527.5, 1749.5], [1527.5, 1757.5], [1531.5, 1761.5], [1538.5, 1761.5], [1541.5, 1758.5], [1540.5, 1757.5], [1541.5, 1756.5], [1542.5, 1755.5], [1542.5, 1754.5], [1541.5, 1753.5], [1541.5, 1750.5], [1544.5, 1747.5], [1544.5, 1745.5], [1543.5, 1744.5], [1542.5, 1744.5], [1541.5, 1745.5], [1540.5, 1745.5]]}, @@ -4417,47 +4106,38 @@ {"id": "tx05ky", "submitted_by": "MrMCO3", "name": "Raptoreum", "description": "A secure an ASIC/FPGA resistant Proof Of Work Cryptocurrency that also allows for asset creation, futures, and smart contracts, while remaining resistant to 51%/double spend attacks.", "website": "https://raptoreum.com/", "subreddit": "/r/raptoreum", "center": [1988.5, 492.5], "path": [[1977.5, 481.5], [1977.5, 481.5], [1977.5, 502.5], [1999.5, 502.5], [1999.5, 481.5], [1977.5, 481.5]]}, {"id": "tx05i2", "submitted_by": "kittykittycatnip", "name": "Sparklecare Logo", "description": "Logo of the eponymous hospital from the webcomic Sparklecare.", "website": "https://sparklecarehospital.com", "subreddit": "/r/sparklecarehospital", "center": [430.5, 1452.5], "path": [[425.5, 1447.5], [425.5, 1456.5], [434.5, 1456.5], [434.5, 1447.5]]}, {"id": "tx05d9", "submitted_by": "Djadri", "name": "The mandalorian", "description": "Little representation of Mando and Grogu. The Mandalorian is an American space Western television series. It is the first live-action series in the Star Wars franchise.", "website": "", "subreddit": "/r/TheMandalorianTV", "center": [695.5, 1724.5], "path": [[689.5, 1731.5], [700.5, 1731.5], [700.5, 1717.5], [690.5, 1717.5], [689.5, 1718.5], [689.5, 1731.5]]}, -{"id": "tx055p", "submitted_by": "Lord_DF_01", "name": "Chibidoki", "description": "Pixel art of cute gremlin Vtuber Chibidoki.nMade in collaboration with the Nagzz21 community", "website": "twitch.tv/chibidoki", "subreddit": "/r/chibidoki", "center": [763.5, 1111.5], "path": [[780.5, 1121.5], [780.5, 1100.5], [746.5, 1100.5], [746.5, 1121.5], [780.5, 1121.5]]}, +{"id": "tx055p", "submitted_by": "Lord_DF_01", "name": "Chibidoki", "description": "Pixel art of cute gremlin Vtuber Chibidoki.nMade in collaboration with the Nagzz21 community", "website": "https://twitch.tv/chibidoki", "subreddit": "/r/chibidoki", "center": [763.5, 1111.5], "path": [[780.5, 1121.5], [780.5, 1100.5], [746.5, 1100.5], [746.5, 1121.5], [780.5, 1121.5]]}, {"id": "tx052q", "submitted_by": "WalkerT1987", "name": "NYM", "description": "Nym Li is a small independent vtuber on the Youtube channel 'Nym Li Ch.'", "website": "https://www.youtube.com/c/nymlich", "subreddit": "/r/VirtualYoutubers", "center": [1093.5, 1042.5], "path": [[1086.5, 1039.5], [1099.5, 1039.5], [1099.5, 1044.5], [1086.5, 1044.5], [1086.5, 1039.5]]}, -{"id": "tx04xp", "submitted_by": "Queen_Grayhoof", "name": "Charlotte", "description": "The character Charlotte from the RPG Maker game Witch's Heart. Made by a small group with the help of r/NewYorkMets and r/NewYorkIslanders", "website": "", "subreddit": "/r/witchesheart", "center": [0.5, 0.5], "path": []}, {"id": "tx04t9", "submitted_by": "Walnut-Simulacrum", "name": "22", "description": "The number 22, placed here as a reference to the 22 minute time loop during which the video game Outer Wilds is set.", "website": "", "subreddit": "/r/OuterWilds", "center": [398.5, 930.5], "path": [[394.5, 927.5], [402.5, 927.5], [402.5, 933.5], [394.5, 933.5]]}, -{"id": "tx04ho", "submitted_by": "TwelthLife", "name": "Angry Birds", "description": "Angry Birds is a Finnish action-based media franchise created by Rovio Entertainment", "website": "https://www.angrybirds.com/", "subreddit": "/r/angrybirds", "center": [0.5, 0.5], "path": []}, {"id": "tx04h4", "submitted_by": "AnonymousRandPerson", "name": "Wonder Orb", "description": "A type of consumable item in the Pok\u00e9mon Mystery Dungeon games.", "website": "https://bulbapedia.bulbagarden.net/wiki/Wonder_Orb", "subreddit": "/r/MysteryDungeon", "center": [731.5, 800.5], "path": [[730.5, 798.5], [729.5, 799.5], [729.5, 801.5], [730.5, 802.5], [732.5, 802.5], [733.5, 801.5], [733.5, 799.5], [732.5, 798.5]]}, {"id": "tx04cn", "submitted_by": "ghsakjhkjad", "name": "2.2 When?", "description": "A running joke in the GD community about how update 2.2 has taken so long to come out.", "website": "", "subreddit": "/r/geometrydashplace", "center": [1518.5, 1576.5], "path": [[1503.5, 1568.5], [1532.5, 1568.5], [1532.5, 1583.5], [1503.5, 1583.5], [1503.5, 1568.5]]}, {"id": "tx04cj", "submitted_by": "RoLoLoLoLo", "name": "Chibidoki", "description": "VTuber streaming on Twitch.nBuilt in collaboration with Chibi's and Nagzz's communites.n1984 is an insdie joke of her Twitch chat.", "website": "https://www.twitch.tv/chibidoki", "subreddit": "/r/chibidoki", "center": [763.5, 1110.5], "path": [[781.5, 1122.5], [781.5, 1099.5], [745.5, 1099.5], [746.5, 1121.5], [745.5, 1121.5], [781.5, 1122.5]]}, {"id": "tx03os", "submitted_by": "AnonymousRandPerson", "name": "Seed", "description": "A type of consumable item in the Pok\u00e9mon Mystery Dungeon games.", "website": "https://bulbapedia.bulbagarden.net/wiki/Seed", "subreddit": "/r/MysteryDungeon", "center": [712.5, 800.5], "path": [[712.5, 797.5], [710.5, 799.5], [710.5, 803.5], [712.5, 803.5], [714.5, 801.5], [714.5, 797.5]]}, -{"id": "tx03n2", "submitted_by": "poodl3IsMe", "name": "The flag of the The S\u00e1mi", "description": "The flag of S\u00e1pmi and the S\u00e1mi (Saami) people, one of the indigenous people groups of the Nordic countries", "website": "", "subreddit": "", "center": [500.5, 63.5], "path": [[478.5, 50.5], [488.5, 59.5], [491.5, 63.5], [488.5, 65.5], [488.5, 68.5], [488.5, 76.5], [495.5, 79.5], [501.5, 78.5], [503.5, 76.5], [507.5, 70.5], [505.5, 64.5], [501.5, 61.5], [527.5, 36.5], [473.5, 35.5], [474.5, 91.5], [528.5, 91.5], [527.5, 36.5], [514.5, 45.5]]}, +{"id": "tx03n2", "submitted_by": "poodl3IsMe", "name": "Flag of the S\u00e1mi", "description": "The flag of S\u00e1pmi and the S\u00e1mi (Saami) people, one of the indigenous people groups of the Nordic countries.", "website": "https://en.wikipedia.org/wiki/S%C3%A1mi_people", "subreddit": "/r/place_nordicunion", "center": [500.5, 63.5], "path": [[478.5, 50.5], [488.5, 59.5], [491.5, 63.5], [488.5, 65.5], [488.5, 68.5], [488.5, 76.5], [495.5, 79.5], [501.5, 78.5], [503.5, 76.5], [507.5, 70.5], [505.5, 64.5], [501.5, 61.5], [527.5, 36.5], [473.5, 35.5], [474.5, 91.5], [528.5, 91.5], [527.5, 36.5], [514.5, 45.5]]}, {"id": "tx03jd", "submitted_by": "serillymc", "name": "Foolish Gamers", "description": "A pixel illustration of the streamer Foolish Gamers.", "website": "https://www.twitch.tv/foolish_gamers", "subreddit": "/r/FoolishGamers", "center": [1196.5, 1093.5], "path": [[1187.5, 1113.5], [1187.5, 1112.5], [1186.5, 1112.5], [1186.5, 1111.5], [1185.5, 1111.5], [1185.5, 1109.5], [1186.5, 1109.5], [1186.5, 1102.5], [1184.5, 1102.5], [1184.5, 1095.5], [1185.5, 1095.5], [1185.5, 1093.5], [1186.5, 1093.5], [1186.5, 1092.5], [1187.5, 1092.5], [1187.5, 1091.5], [1189.5, 1091.5], [1189.5, 1090.5], [1189.5, 1089.5], [1188.5, 1089.5], [1188.5, 1088.5], [1187.5, 1088.5], [1187.5, 1087.5], [1186.5, 1087.5], [1186.5, 1086.5], [1185.5, 1086.5], [1185.5, 1085.5], [1184.5, 1085.5], [1184.5, 1083.5], [1183.5, 1083.5], [1183.5, 1082.5], [1182.5, 1082.5], [1182.5, 1081.5], [1181.5, 1081.5], [1182.5, 1081.5], [1182.5, 1080.5], [1187.5, 1080.5], [1187.5, 1079.5], [1188.5, 1079.5], [1188.5, 1077.5], [1189.5, 1077.5], [1189.5, 1076.5], [1191.5, 1076.5], [1191.5, 1075.5], [1202.5, 1075.5], [1202.5, 1076.5], [1205.5, 1076.5], [1205.5, 1077.5], [1208.5, 1077.5], [1208.5, 1078.5], [1210.5, 1078.5], [1210.5, 1079.5], [1211.5, 1079.5], [1211.5, 1080.5], [1212.5, 1080.5], [1211.5, 1080.5], [1211.5, 1081.5], [1210.5, 1081.5], [1210.5, 1082.5], [1209.5, 1082.5], [1208.5, 1082.5], [1208.5, 1085.5], [1209.5, 1085.5], [1209.5, 1086.5], [1210.5, 1086.5], [1210.5, 1088.5], [1206.5, 1088.5], [1205.5, 1088.5], [1205.5, 1090.5], [1203.5, 1090.5], [1203.5, 1091.5], [1203.5, 1092.5], [1204.5, 1092.5], [1204.5, 1093.5], [1204.5, 1094.5], [1205.5, 1094.5], [1205.5, 1100.5], [1204.5, 1100.5], [1204.5, 1101.5], [1203.5, 1101.5], [1203.5, 1104.5], [1204.5, 1104.5], [1204.5, 1105.5], [1205.5, 1105.5], [1205.5, 1106.5], [1208.5, 1106.5], [1208.5, 1104.5], [1209.5, 1104.5], [1209.5, 1103.5], [1214.5, 1103.5], [1214.5, 1105.5], [1211.5, 1105.5], [1211.5, 1107.5], [1213.5, 1107.5], [1213.5, 1108.5], [1212.5, 1108.5], [1212.5, 1109.5], [1204.5, 1109.5], [1204.5, 1111.5], [1203.5, 1111.5], [1203.5, 1112.5], [1199.5, 1112.5], [1199.5, 1110.5], [1198.5, 1110.5], [1198.5, 1108.5], [1197.5, 1108.5], [1197.5, 1107.5], [1196.5, 1107.5], [1196.5, 1106.5], [1194.5, 1106.5], [1194.5, 1112.5], [1193.5, 1112.5], [1193.5, 1113.5], [1187.5, 1113.5]]}, {"id": "tx03i4", "submitted_by": "Luliame", "name": "Tiny 2-D Face", "description": "2-D is the main singer from the Gorillaz band", "website": "https://en.wikipedia.org/wiki/2-D_(character)", "subreddit": "/r/gorillaz", "center": [839.5, 1701.5], "path": [[837.5, 1706.5], [841.5, 1706.5], [842.5, 1705.5], [843.5, 1704.5], [844.5, 1703.5], [845.5, 1703.5], [846.5, 1703.5], [846.5, 1702.5], [846.5, 1701.5], [846.5, 1700.5], [845.5, 1700.5], [844.5, 1699.5], [843.5, 1698.5], [843.5, 1696.5], [839.5, 1696.5], [838.5, 1695.5], [837.5, 1696.5], [835.5, 1696.5], [834.5, 1697.5], [834.5, 1700.5], [833.5, 1701.5], [834.5, 1702.5], [837.5, 1706.5]]}, {"id": "tx6vkz", "submitted_by": "The_McTasty", "name": "The Eye of Sauron", "description": "The Eye of Sauron from the popular book and film series The Lord of the Rings. Part of the larger Sci-Fi Fantasy Alliance piece.", "website": "", "subreddit": "/r/SFFA", "center": [1669.5, 1420.5], "path": [[1654.5, 1419.5], [1661.5, 1413.5], [1670.5, 1410.5], [1678.5, 1414.5], [1685.5, 1420.5], [1678.5, 1426.5], [1671.5, 1429.5], [1667.5, 1429.5], [1660.5, 1426.5], [1656.5, 1422.5]]}, {"id": "tx6vkq", "submitted_by": "elvaro_idk", "name": "Natalan", "description": "Nataliers es el nombre de la comunidad del streamer Natalan", "website": "https://www.twitch.tv/natalan", "subreddit": "", "center": [566.5, 1029.5], "path": [[542.5, 1012.5], [542.5, 1012.5], [590.5, 1012.5], [590.5, 1045.5], [541.5, 1045.5]]}, {"id": "tx6vi9", "submitted_by": "FullMoon1108", "name": "RevScarecrow", "description": "Twitch streamer RevScarecrow. Part of the Vinesauce streaming team. Known for playing flash games, Winnie the Pooh Home Run Derby, and gremlin-esque games.", "website": "https://www.hotdicksporn.zone", "subreddit": "/r/Vinesauce", "center": [129.5, 1117.5], "path": [[124.5, 1113.5], [134.5, 1113.5], [134.5, 1116.5], [135.5, 1117.5], [135.5, 1118.5], [134.5, 1118.5], [134.5, 1119.5], [132.5, 1119.5], [132.5, 1121.5], [126.5, 1121.5], [126.5, 1119.5], [124.5, 1119.5], [124.5, 1118.5], [123.5, 1118.5], [123.5, 1117.5], [124.5, 1117.5], [124.5, 1113.5]]}, -{"id": "tx6vh9", "submitted_by": "lip0re", "name": "Rivers_gg", "description": "Creado y protegido durante el combate por la comunidad de rivers, gran streamer que en el poco tiempo que lleva en Twitch ha realizado un progreso bastante notorio, a veces dice que prende a tal hora pero llega a los 10 - 20 min tarde, siempre usa el mismo hoodie pero nos cae bn.nnTQM MENSITA", "website": "https://www.twitch.tv/rivers_gg", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "tx6vfl", "submitted_by": "Business-Whole1918", "name": "P\u00f4le3D", "description": "A stinky school, don't go there. Fuck Carlot.nn", "website": "", "subreddit": "", "center": [259.5, 1897.5], "path": [[251.5, 1890.5], [267.5, 1890.5], [267.5, 1904.5], [251.5, 1904.5], [251.5, 1890.5]]}, {"id": "tx6v2h", "submitted_by": "happyplace28", "name": "Jack Manifold", "description": "A Twitch Streamer and Youtuber, Jack's desire to put 3D glasses on various r/place pieces inadvertently led to a large conflict between XQC and France", "website": "https://www.twitch.tv/jackmanifoldtv", "subreddit": "/r/jackmanifold", "center": [160.5, 904.5], "path": [[156.5, 899.5], [164.5, 899.5], [164.5, 908.5], [155.5, 908.5], [155.5, 899.5], [156.5, 899.5]]}, {"id": "tx6v1i", "submitted_by": "Targed1", "name": "Curious George", "description": "A pixel drawing of the beloved children's book and TV show character, Curious George.", "website": "https://pbskids.org/curiousgeorge/", "subreddit": "/r/curiousgeorge", "center": [721.5, 1485.5], "path": [[700.5, 1464.5], [734.5, 1464.5], [744.5, 1478.5], [744.5, 1505.5], [699.5, 1505.5]]}, {"id": "tx6v1h", "submitted_by": "StarCiller03", "name": "Steve the Duck", "description": "Steven Duck is a little Duck made by some Duck-Enthusiast.", "website": "", "subreddit": "", "center": [954.5, 1502.5], "path": [[950.5, 1498.5], [957.5, 1498.5], [957.5, 1506.5], [950.5, 1506.5], [950.5, 1498.5], [957.5, 1498.5], [957.5, 1506.5], [950.5, 1506.5]]}, -{"id": "tx6umc", "submitted_by": "EphemeralChaos", "name": "Mariachi", "description": "Traditional mexican performer with typical attire (charro suit), Mariachis bands with several instruments are brought on special occasions to perform for someone else.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx6uiu", "submitted_by": "fryUaj", "name": "Xiu Xiu logo", "description": "Xiu Xiu is an American experimental band, formed in 2002 by singer-songwriter Jamie Stewart in San Jose, California.", "website": "https://en.wikipedia.org/wiki/Xiu_Xiu", "subreddit": "/r/xiuxiu", "center": [1104.5, 1568.5], "path": [[1091.5, 1555.5], [1091.5, 1581.5], [1117.5, 1581.5], [1117.5, 1555.5], [1092.5, 1555.5]]}, {"id": "tx6ucc", "submitted_by": "SuperRedditLand", "name": "Donda", "description": "The name of Kanye West's late mother, Donda West, as well as the name of his 10th solo LP Donda.", "website": "", "subreddit": "/r/WestSubEver", "center": [7.5, 804.5], "path": [[0.5, 782.5], [13.5, 782.5], [14.5, 826.5], [0.5, 826.5], [0.5, 826.5], [0.5, 826.5]]}, {"id": "tx6u9p", "submitted_by": "RoyRAmenH", "name": "Xuzhou chained woman incident", "description": "The Xuzhou chained woman incident (Chinese: \u5f90\u5dde\u94c1\u94fe\u5973\u4e8b\u4ef6), also known as the Xuzhou eight-child mother incident (Chinese: \u5f90\u5dde\u516b\u5b69\u6bcd\u4eb2\u4e8b\u4ef6), is a case of human trafficking, severe mistreatment, and subsequent events that came to light in late January 2022 in Feng County, Xuzhou, Jiangsu, People's Republic of China.", "website": "https://en.wikipedia.org/wiki/Xuzhou_chained_woman_incident#:~:text=The%20Xuzhou%20chained%20woman%20incident,Jiangsu%2C%20People's%20Republic%20of%20China.", "subreddit": "", "center": [921.5, 135.5], "path": [[893.5, 115.5], [949.5, 115.5], [949.5, 154.5], [893.5, 154.5]]}, {"id": "tx6u4t", "submitted_by": "SloGamersSi", "name": "Beekeeping", "description": "nSlovenia was labelled the \u201cheart and soul of beekeeping\u201d in Europe. The country is known for the quality of its honey and its long tradition of apiculture. One of the pioneers of apiculture on a global scale was Slovenian. Anton Jan\u0161a (1734-1773) is considered to be the first teacher of modern beekeeping at the Habsburg court in Vienna. Slovenia is also the only European Union Member State to have protected its native bee, the Carniolan bee (Apis mellifera carnica). The Carniolan bee is now the second most common honeybee in the world, famed for its docility, hard work, humility and excellent sense of orientation.", "website": "https://en.czs.si/", "subreddit": "/r/slovenia", "center": [243.5, 880.5], "path": [[239.5, 877.5], [235.5, 883.5], [245.5, 886.5], [249.5, 874.5], [243.5, 874.5], [238.5, 878.5]]}, -{"id": "tx6u37", "submitted_by": "Nepcen", "name": "Webtekno Logo", "description": "Turkish yotuube channel.", "website": "https://www.youtube.com/c/webteknotv", "subreddit": "", "center": [789.5, 801.5], "path": [[777.5, 788.5], [800.5, 788.5], [800.5, 814.5], [777.5, 814.5], [777.5, 788.5]]}, {"id": "tx6u2b", "submitted_by": "izohell", "name": "Momonkunn", "description": "Skin de Minecraft del streamer Momonkunn.", "website": "https://www.twitch.tv/momonkunn", "subreddit": "", "center": [1994.5, 1389.5], "path": [[1990.5, 1385.5], [1998.5, 1385.5], [1998.5, 1392.5], [1990.5, 1392.5], [1990.5, 1389.5]]}, {"id": "tx6u1h", "submitted_by": "Puzzleheaded_Guard96", "name": "LUZU", "description": "Minecraft face of the Spanish Youtuber Streamr LUZUGAMESnn", "website": "https://www.youtube.com/c/luzugames", "subreddit": "", "center": [1079.5, 1321.5], "path": [[1076.5, 1319.5], [1082.5, 1324.5], [1082.5, 1317.5], [1075.5, 1317.5], [1075.5, 1324.5], [1082.5, 1324.5], [1078.5, 1319.5], [1078.5, 1319.5], [1078.5, 1320.5], [1078.5, 1320.5], [1078.5, 1320.5], [1078.5, 1320.5]]}, {"id": "tx6tur", "submitted_by": "Chickenological", "name": "Dignitas", "description": "The logo for American eSports organization Team Dignitas.", "website": "https://dignitas.gg/", "subreddit": "/r/dignitas", "center": [650.5, 1532.5], "path": [[647.5, 1527.5], [651.5, 1527.5], [652.5, 1525.5], [654.5, 1527.5], [654.5, 1529.5], [655.5, 1530.5], [655.5, 1535.5], [652.5, 1538.5], [647.5, 1538.5], [644.5, 1535.5], [644.5, 1530.5], [647.5, 1527.5], [651.5, 1527.5]]}, -{"id": "tx6ttv", "submitted_by": "sammyisrandom", "name": "Chao", "description": "The Chao (\u30c1\u30e3\u30aa) are creatures that appear in the Sonic the Hedgehog series. The most well-known and notable Chao is named Cheese, the best friend of Cream the Rabbit.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "tx6tpq", "submitted_by": "jvdrummer1", "name": "Digimon", "description": "90's cartoon/game similar to Pokemon. This character is Gabumon", "website": "https://world.digimoncard.com/", "subreddit": "/r/digimon", "center": [0.5, 0.5], "path": []}, {"id": "tx6tlc", "submitted_by": "xyz246qwerty", "name": "XFCE", "description": "XFCE mouse or Xue is a mascot of the XFCE desktop environment.", "website": "https://xfce.org/", "subreddit": "/r/xfce", "center": [66.5, 754.5], "path": [[70.5, 751.5], [61.5, 752.5], [62.5, 757.5], [70.5, 757.5], [70.5, 754.5], [70.5, 751.5]]}, -{"id": "tx6tiz", "submitted_by": "No-Significance5766", "name": "MGB Teve", "description": "French WevTV on twitch", "website": "twitch.tv/mgbteve", "subreddit": "", "center": [388.5, 1787.5], "path": [[382.5, 1792.5], [394.5, 1792.5], [394.5, 1782.5], [383.5, 1782.5]]}, +{"id": "tx6tiz", "submitted_by": "No-Significance5766", "name": "MGB Teve", "description": "French WevTV on twitch", "website": "https://twitch.tv/mgbteve", "subreddit": "", "center": [388.5, 1787.5], "path": [[382.5, 1792.5], [394.5, 1792.5], [394.5, 1782.5], [383.5, 1782.5]]}, {"id": "tx6th2", "submitted_by": "colyn97x", "name": "Atarashi Kami x SplatFox", "description": "This is the place where rests the upcoming manga Atarashi Kami by Colyn, who was built in collaboration with the French artist, SplatFox.", "website": "", "subreddit": "", "center": [1140.5, 1905.5], "path": [[1128.5, 1904.5], [1128.5, 1904.5], [1128.5, 1908.5], [1151.5, 1908.5], [1151.5, 1902.5], [1146.5, 1902.5], [1146.5, 1903.5], [1128.5, 1903.5]]}, -{"id": "tx6te7", "submitted_by": "Kiselkoff", "name": "Hristo Botev", "description": "Hristo Botyov Petkov is a Bulgarian revolutionary and poet. Botev is considered by Bulgarians to be a symbolic historical figure and national hero.", "website": "https://en.wikipedia.org/wiki/Hristo_Botev", "subreddit": "/r/bulgaria", "center": [1646.5, 734.5], "path": [[1629.5, 711.5], [1631.5, 753.5], [1663.5, 756.5], [1663.5, 715.5], [1629.5, 711.5]]}, +{"id": "tx6te7", "submitted_by": "djulioo", "name": "Hristo Botev", "description": "Hristo Botev (Bulgarian: \u0425\u0440\u0438\u0441\u0442\u043e \u0411\u043e\u0442\u0435\u0432), was a Bulgarian revolutionary and poet. Botev is considered by Bulgarians to be a symbolic historical figure and national hero. His poetry is a prime example of the literature of the Bulgarian National Revival, though he is considered to be ahead of his contemporaries in his political, philosophical, and aesthetic views.", "website": "https://en.wikipedia.org/wiki/Hristo_Botev", "subreddit": "", "center": [1646.5, 743.5], "path": [[1627.5, 756.5], [1628.5, 757.5], [1629.5, 758.5], [1630.5, 759.5], [1631.5, 760.5], [1632.5, 761.5], [1634.5, 762.5], [1635.5, 763.5], [1636.5, 764.5], [1637.5, 765.5], [1638.5, 766.5], [1663.5, 766.5], [1663.5, 758.5], [1659.5, 758.5], [1659.5, 757.5], [1658.5, 756.5], [1658.5, 755.5], [1657.5, 754.5], [1656.5, 753.5], [1656.5, 752.5], [1655.5, 751.5], [1655.5, 749.5], [1656.5, 748.5], [1656.5, 743.5], [1657.5, 742.5], [1657.5, 741.5], [1658.5, 740.5], [1658.5, 738.5], [1659.5, 737.5], [1659.5, 734.5], [1660.5, 733.5], [1660.5, 725.5], [1659.5, 724.5], [1659.5, 723.5], [1658.5, 722.5], [1657.5, 721.5], [1656.5, 721.5], [1655.5, 720.5], [1654.5, 719.5], [1653.5, 719.5], [1652.5, 718.5], [1651.5, 717.5], [1649.5, 717.5], [1648.5, 716.5], [1643.5, 716.5], [1642.5, 717.5], [1641.5, 717.5], [1640.5, 718.5], [1639.5, 718.5], [1638.5, 719.5], [1636.5, 719.5], [1635.5, 720.5], [1634.5, 721.5], [1634.5, 725.5], [1633.5, 726.5], [1633.5, 733.5], [1634.5, 734.5], [1634.5, 738.5], [1633.5, 739.5], [1633.5, 746.5], [1632.5, 747.5], [1632.5, 754.5], [1631.5, 755.5], [1630.5, 756.5], [1627.5, 756.5]]}, {"id": "tx6tdx", "submitted_by": "HyperDash", "name": "Doug (Cascadian) Flag", "description": "A flag representing the bioregion of Cascadia, which contains British Columbia, Washington, Oregon, and other areas surrounding the Salish Sea and Cascade Range in the Pacific Northwest. The flag prominently and proudly features a Douglass Fir, native and common in the region.", "website": "https://cascadiabioregion.org/", "subreddit": "/r/cascadia", "center": [425.5, 1541.5], "path": [[409.5, 1532.5], [439.5, 1532.5], [439.5, 1552.5], [427.5, 1552.5], [426.5, 1551.5], [425.5, 1551.5], [424.5, 1550.5], [422.5, 1550.5], [421.5, 1549.5], [409.5, 1549.5], [409.5, 1532.5]]}, {"id": "tx6t0t", "submitted_by": "owl_avocado", "name": "Simple red square - Edge Case community", "description": "A simple 1x1 pixel red square , symbol of the community of YouTube streamer Edge Case", "website": "https://www.youtube.com/channel/UCiE5QLftk3_hF8xCcBweZVQ", "subreddit": "", "center": [0.5, 0.5], "path": [[1211.5, 1999.5], [1211.5, 2000.5]]}, {"id": "tx6suh", "submitted_by": "Dinamicpig", "name": "Rivers_gg", "description": "It's the logo of a Mexican streamer.nCAGADAA", "website": "https://www.twitch.tv/rivers_gg", "subreddit": "/r/rivers", "center": [1795.5, 58.5], "path": [[1790.5, 51.5], [1803.5, 49.5], [1802.5, 65.5], [1786.5, 65.5], [1790.5, 65.5], [1785.5, 65.5], [1785.5, 50.5], [1806.5, 49.5], [1806.5, 67.5], [1785.5, 67.5]]}, {"id": "tx6sqz", "submitted_by": "Speecker", "name": "Minecraft Sheep", "description": "This is the face of a (Vanilla) Minecraft Sheep", "website": "", "subreddit": "", "center": [1768.5, 135.5], "path": [[1764.5, 131.5], [1771.5, 131.5], [1771.5, 138.5], [1764.5, 138.5]]}, {"id": "tx6sos", "submitted_by": "Pipanaari", "name": "Fabio (Aladin and Fabio)", "description": "The fearless fairytale character hunter from Aladin and Fabio's hunting division. His buddy Aladin didn't make it unfortunately.", "website": "", "subreddit": "", "center": [798.5, 1824.5], "path": [[796.5, 1820.5], [796.5, 1827.5], [799.5, 1827.5], [799.5, 1820.5], [796.5, 1820.5]]}, -{"id": "tx6skl", "submitted_by": "EphemeralChaos", "name": "The mexican emblem", "description": "This mexican emblem appears in most versions of all flags, it is based on a legend where the people who funded the city of Tenochtitlan were told by a deity that they would roam the land until they found an eagle perched on top of a cacti eating a snake. The place where they supposedly found this sign is currently the capital of Mexico.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx6sgl", "submitted_by": "Jmang7", "name": "DEO x YRG", "description": "Streamer communities nBruceDropEmOff (DEO) and nyourragegaming (YRG).nn", "website": "https://www.twitch.tv/", "subreddit": "", "center": [700.5, 877.5], "path": [[630.5, 866.5], [769.5, 866.5], [769.5, 888.5], [630.5, 887.5], [630.5, 866.5]]}, {"id": "tx6sfu", "submitted_by": "NeelZilla", "name": "Godzilla Quebecois", "description": "A collaboration between r/Godzilla and r/Quebec. Depicts Godzilla with a toque and scarf coming out of the water and destroying the nearby bridge and JX van.nnDesign by u/NateZilla10000.", "website": "https://www.reddit.com/r/GODZILLA/comments/twih20/thanks_to_all_rplace_collaborators/", "subreddit": "/r/GODZILLA", "center": [1053.5, 1046.5], "path": [[1049.5, 1019.5], [1052.5, 1020.5], [1053.5, 1021.5], [1057.5, 1022.5], [1060.5, 1024.5], [1062.5, 1027.5], [1062.5, 1030.5], [1064.5, 1033.5], [1063.5, 1036.5], [1067.5, 1041.5], [1071.5, 1044.5], [1072.5, 1041.5], [1078.5, 1044.5], [1079.5, 1051.5], [1078.5, 1053.5], [1084.5, 1058.5], [1086.5, 1054.5], [1092.5, 1056.5], [1089.5, 1062.5], [1087.5, 1067.5], [1085.5, 1072.5], [1079.5, 1065.5], [1075.5, 1060.5], [1073.5, 1057.5], [1070.5, 1052.5], [1070.5, 1048.5], [1064.5, 1043.5], [1060.5, 1038.5], [1057.5, 1036.5], [1056.5, 1042.5], [1056.5, 1046.5], [1053.5, 1047.5], [1053.5, 1049.5], [1060.5, 1047.5], [1064.5, 1048.5], [1063.5, 1051.5], [1061.5, 1052.5], [1056.5, 1052.5], [1053.5, 1055.5], [1053.5, 1062.5], [1053.5, 1065.5], [1034.5, 1065.5], [1035.5, 1055.5], [1030.5, 1049.5], [1025.5, 1050.5], [1028.5, 1045.5], [1023.5, 1047.5], [1023.5, 1045.5], [1027.5, 1042.5], [1026.5, 1036.5], [1025.5, 1032.5], [1028.5, 1034.5], [1034.5, 1035.5], [1036.5, 1037.5], [1036.5, 1034.5], [1034.5, 1032.5], [1037.5, 1029.5], [1038.5, 1031.5], [1040.5, 1030.5], [1041.5, 1031.5], [1044.5, 1028.5], [1046.5, 1030.5], [1050.5, 1029.5], [1052.5, 1028.5], [1051.5, 1025.5], [1048.5, 1024.5], [1047.5, 1023.5]]}, {"id": "tx6sf8", "submitted_by": "Technobits", "name": "Mirai Akari", "description": "A small bear with a bow representing one of the pioneer vtubers Mirai Akari.", "website": "", "subreddit": "", "center": [196.5, 749.5], "path": [[194.5, 747.5], [193.5, 744.5], [200.5, 744.5], [198.5, 747.5], [200.5, 751.5], [198.5, 753.5], [193.5, 753.5], [192.5, 751.5], [192.5, 749.5]]}, @@ -4472,21 +4152,18 @@ {"id": "tx6r8b", "submitted_by": "qazx1234567891", "name": "Stress Level Zero", "description": "VR game development company.nCreators of Boneworks, Hover Junkers and Duck Season.nn", "website": "https://www.stresslevelzero.com", "subreddit": "", "center": [1540.5, 214.5], "path": [[1530.5, 205.5], [1530.5, 222.5], [1550.5, 222.5], [1550.5, 205.5]]}, {"id": "tx6qys", "submitted_by": "theweirdlobster", "name": "UQAT", "description": "Logo of Universit\u00e9 du Qu\u00e9bec en Abitibi-T\u00e9miscamingue, a uiniversity in Province of Quebec, Canada", "website": "https://www.uqat.ca/", "subreddit": "", "center": [1207.5, 1812.5], "path": [[1198.5, 1810.5], [1215.5, 1810.5], [1215.5, 1814.5], [1198.5, 1814.5]]}, {"id": "tx6qv1", "submitted_by": "Th3SharpShoot3r", "name": "TAJO Gaming", "description": "We TAJO it!", "website": "", "subreddit": "", "center": [809.5, 680.5], "path": [[805.5, 677.5], [812.5, 677.5], [812.5, 683.5], [807.5, 683.5], [807.5, 679.5], [805.5, 679.5], [805.5, 677.5]]}, -{"id": "tx6qrs", "submitted_by": "MoveOfTen", "name": "HEI Network", "description": "Logo for The HEI Network, home of On Cinema At The Cinema, a web series popular among film buffs, created by Tim Heidecker and Gregg Turkington.", "website": "heinetwork.tv", "subreddit": "/r/OnCinemaAtTheCinema", "center": [1825.5, 145.5], "path": [[1820.5, 143.5], [1829.5, 143.5], [1829.5, 147.5], [1820.5, 147.5]]}, +{"id": "tx6qrs", "submitted_by": "MoveOfTen", "name": "HEI Network", "description": "Logo for The HEI Network, home of On Cinema At The Cinema, a web series popular among film buffs, created by Tim Heidecker and Gregg Turkington.", "website": "https://heinetwork.tv", "subreddit": "/r/OnCinemaAtTheCinema", "center": [1825.5, 145.5], "path": [[1820.5, 143.5], [1829.5, 143.5], [1829.5, 147.5], [1820.5, 147.5]]}, {"id": "tx6qqz", "submitted_by": "et6239", "name": "Arknights", "description": "Drawing dedicated to mobile tower defense game Arknights. The drawing is of Amiya one of the main characters.", "website": "", "subreddit": "/r/arknights", "center": [1648.5, 1733.5], "path": [[1625.5, 1712.5], [1675.5, 1712.5], [1673.5, 1738.5], [1662.5, 1738.5], [1662.5, 1761.5], [1640.5, 1760.5], [1625.5, 1746.5]]}, {"id": "tx6qnf", "submitted_by": "Tomm_404", "name": "Leicester City F.C.", "description": "Leicester City Football Club is a professional football club based in Leicester in the East Midlands, England. The club competes in the Premier League, the top tier of England's football league system, and plays its home matches at the King Power Stadium. The club was founded in 1884 as Leicester Fosse F.C. and won the Premier League in the 2015-16 season, their first top tier title, starting the season as 5000/1 underdogs to take the title, having just survived a relegation battle the previous season. A number of newspapers described Leicester's title win as the greatest ever sporting shock, multiple bookmakers have never paid out such long odds for any sport. They are nicknamed 'The Foxes' after the city's association with the animal, and a fox is depicted on their badge as displayed here.", "website": "https://www.lcfc.com/", "subreddit": "https://www.lcfc.com/", "center": [615.5, 1729.5], "path": [[595.5, 1729.5], [600.5, 1729.5], [600.5, 1728.5], [602.5, 1728.5], [602.5, 1727.5], [603.5, 1727.5], [604.5, 1727.5], [604.5, 1726.5], [632.5, 1726.5], [632.5, 1731.5], [595.5, 1731.5]]}, {"id": "tx6qmb", "submitted_by": "SloGamersSi", "name": "Bojan the Bear", "description": "Bojan the Bear (Slovene: Medved Bojan) is the title and the protagonist of the Slovenian animation children's television series. It's the best-known and most successful Slovenian cartoon series.", "website": "https://www.youtube.com/watch?v=CeX4Nqz4uJQ", "subreddit": "/r/slovenia", "center": [343.5, 879.5], "path": [[338.5, 887.5], [338.5, 884.5], [339.5, 884.5], [336.5, 882.5], [335.5, 880.5], [334.5, 880.5], [336.5, 879.5], [337.5, 879.5], [338.5, 877.5], [340.5, 876.5], [339.5, 875.5], [339.5, 874.5], [339.5, 872.5], [340.5, 870.5], [342.5, 869.5], [346.5, 869.5], [348.5, 871.5], [348.5, 873.5], [344.5, 884.5], [348.5, 887.5], [353.5, 880.5], [356.5, 880.5], [350.5, 888.5], [338.5, 888.5], [338.5, 886.5]]}, {"id": "tx6qkr", "submitted_by": "Daioh33", "name": "Pixelkei", "description": "Logo of the YouTube and Twitch channel Pixelkei - a couple of friends that make stuff together.", "website": "https://www.youtube.com/user/Pixelkei", "subreddit": "", "center": [464.5, 1426.5], "path": [[454.5, 1419.5], [473.5, 1419.5], [473.5, 1433.5], [454.5, 1433.5]]}, -{"id": "tx6qhl", "submitted_by": "happyplace28", "name": "Boilermaker Special", "description": "The Boilermaker Special is the official mascot of Purdue University. Here it carries The World's Biggest Drum, proudly played by the school's marching band!", "website": "https://en.wikipedia.org/wiki/Boilermaker_Special", "subreddit": "/r/Purdue", "center": [1146.5, 1727.5], "path": [[1115.5, 1723.5], [1115.5, 1718.5], [1117.5, 1717.5], [1117.5, 1715.5], [1118.5, 1714.5], [1121.5, 1711.5], [1124.5, 1710.5], [1131.5, 1709.5], [1135.5, 1711.5], [1139.5, 1713.5], [1141.5, 1719.5], [1143.5, 1714.5], [1159.5, 1714.5], [1159.5, 1717.5], [1165.5, 1720.5], [1167.5, 1716.5], [1176.5, 1715.5], [1176.5, 1719.5], [1181.5, 1720.5], [1188.5, 1717.5], [1188.5, 1727.5], [1181.5, 1724.5], [1182.5, 1739.5], [1175.5, 1740.5], [1163.5, 1741.5], [1147.5, 1741.5], [1146.5, 1739.5], [1129.5, 1739.5], [1127.5, 1741.5], [1115.5, 1741.5], [1115.5, 1739.5], [1111.5, 1739.5], [1111.5, 1723.5]]}, +{"id": "tx6qhl", "submitted_by": "happyplace28", "name": "Boilermaker Special", "description": "The Boilermaker Special is the official mascot of Purdue University. Here it carries the Big Bass Drum or \"World's Largest Drum\", proudly played by the Purdue All-American Marching Band for over 100 years!", "website": "https://en.wikipedia.org/wiki/Boilermaker_Special", "subreddit": "/r/Purdue", "center": [1146.5, 1727.5], "path": [[1115.5, 1723.5], [1115.5, 1718.5], [1117.5, 1717.5], [1117.5, 1715.5], [1118.5, 1714.5], [1121.5, 1711.5], [1124.5, 1710.5], [1131.5, 1709.5], [1135.5, 1711.5], [1139.5, 1713.5], [1141.5, 1719.5], [1143.5, 1714.5], [1159.5, 1714.5], [1159.5, 1717.5], [1165.5, 1720.5], [1167.5, 1716.5], [1176.5, 1715.5], [1176.5, 1719.5], [1181.5, 1720.5], [1188.5, 1717.5], [1188.5, 1727.5], [1181.5, 1724.5], [1182.5, 1739.5], [1175.5, 1740.5], [1163.5, 1741.5], [1147.5, 1741.5], [1146.5, 1739.5], [1129.5, 1739.5], [1127.5, 1741.5], [1115.5, 1741.5], [1115.5, 1739.5], [1111.5, 1739.5], [1111.5, 1723.5]]}, {"id": "tx6qd4", "submitted_by": "hznyeo8", "name": "Kirby", "description": "Ateez Jung Wooyoung", "website": "", "subreddit": "", "center": [1846.5, 579.5], "path": [[1801.5, 541.5], [1801.5, 616.5], [1891.5, 616.5], [1889.5, 541.5]]}, -{"id": "tx6q0e", "submitted_by": "llauranne", "name": "AnthonyZ", "description": "Logo of popular gtaRP and variety streamer AnthonyZ, known as Tony Corleone/ Anthony Copleone in NoPixel", "website": "twitch. tv/anthonyz", "subreddit": "", "center": [1377.5, 772.5], "path": [[1363.5, 767.5], [1363.5, 778.5], [1391.5, 776.5], [1391.5, 766.5], [1363.5, 766.5]]}, -{"id": "tx6pzw", "submitted_by": "EphemeralChaos", "name": "Calaverita", "description": "A skull from the day of the dead (Dia de los muertos), celebration in mexico.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "tx6pwc", "submitted_by": "link_dead", "name": "Amongustrophine 100mg", "description": "Amongustrophine, the only known cure to an Among Us crewmate infection. This 100 milligram pill contains both red and yellow Among Us imposters, which once entering the blood stream wipe out any Among Us Crewmates that are infecting the host. Take with food and water. Contact a Doctor immediately if Among Us lasts longer than 4 hours.", "website": "", "subreddit": "", "center": [1252.5, 1391.5], "path": [[1277.5, 1411.5], [1277.5, 1405.5], [1276.5, 1399.5], [1271.5, 1391.5], [1248.5, 1368.5], [1243.5, 1367.5], [1231.5, 1367.5], [1223.5, 1377.5], [1224.5, 1380.5], [1254.5, 1414.5], [1263.5, 1417.5], [1268.5, 1418.5]]}, +{"id": "tx6q0e", "submitted_by": "llauranne", "name": "AnthonyZ", "description": "Logo of popular gtaRP and variety streamer AnthonyZ, known as Tony Corleone/ Anthony Copleone in NoPixel", "website": "https://twitch. tv/anthonyz", "subreddit": "", "center": [1377.5, 772.5], "path": [[1363.5, 767.5], [1363.5, 778.5], [1391.5, 776.5], [1391.5, 766.5], [1363.5, 766.5]]}, {"id": "tx6puu", "submitted_by": "Technobits", "name": "HydroHomies", "description": "A small logo representing the hydromie community. A community based on the love and memes about drinking water. H2O is the molecular composition of water. Stay hydrated homies!", "website": "", "subreddit": "/r/HydroHomies", "center": [190.5, 760.5], "path": [[184.5, 755.5], [184.5, 755.5], [188.5, 753.5], [195.5, 753.5], [198.5, 759.5], [198.5, 763.5], [194.5, 767.5], [188.5, 768.5], [184.5, 765.5], [183.5, 762.5]]}, {"id": "tx6pt8", "submitted_by": "sammyisrandom", "name": "Wooper", "description": "An almost entirely obscured picture of the Pokemon Wooper. Wooper (Japanese: \u30a6\u30d1\u30fc Upah) is a dual-type Water/Ground Pok\u00e9mon introduced in Generation II.nIt evolves into Quagsire starting at level 20.", "website": "", "subreddit": "", "center": [620.5, 1684.5], "path": [[613.5, 1680.5], [628.5, 1680.5], [631.5, 1685.5], [622.5, 1686.5], [620.5, 1693.5], [611.5, 1683.5]]}, {"id": "tx6piq", "submitted_by": "dannnnasp", "name": "Zorman <3", "description": "Logo del streamer m\u00e1s \u00e9pico jam\u00e1s creado, Zorman el grande.n<3", "website": "https://www.reddit.com/r/Zorman/", "subreddit": "", "center": [1822.5, 966.5], "path": [[1813.5, 952.5], [1830.5, 952.5], [1830.5, 980.5], [1814.5, 980.5], [1813.5, 979.5]]}, {"id": "tx6ph1", "submitted_by": "Psychological-Move-3", "name": "Friend's turtle :D", "description": "This little turtle was made by a little group of friends that just wanted to leave a memory in the canvas", "website": "", "subreddit": "/r/LittleCanvasTurtle", "center": [1184.5, 239.5], "path": [[1178.5, 238.5], [1178.5, 238.5], [1178.5, 238.5], [1179.5, 237.5], [1180.5, 236.5], [1181.5, 236.5], [1182.5, 236.5], [1183.5, 236.5], [1183.5, 237.5], [1183.5, 238.5], [1184.5, 238.5], [1185.5, 237.5], [1185.5, 238.5], [1186.5, 238.5], [1186.5, 239.5], [1187.5, 239.5], [1188.5, 239.5], [1188.5, 238.5], [1189.5, 238.5], [1189.5, 237.5], [1190.5, 238.5], [1191.5, 239.5], [1190.5, 239.5], [1189.5, 239.5], [1189.5, 240.5], [1188.5, 240.5], [1188.5, 241.5], [1187.5, 241.5], [1187.5, 242.5], [1187.5, 243.5], [1187.5, 244.5], [1186.5, 242.5], [1185.5, 242.5], [1184.5, 242.5], [1184.5, 243.5], [1183.5, 243.5], [1183.5, 244.5], [1184.5, 244.5], [1183.5, 242.5], [1182.5, 242.5], [1182.5, 241.5], [1181.5, 241.5], [1180.5, 241.5], [1180.5, 242.5], [1179.5, 241.5], [1179.5, 240.5], [1179.5, 239.5], [1179.5, 238.5], [1178.5, 238.5]]}, -{"id": "tx6p6z", "submitted_by": "EphemeralChaos", "name": "The unplanned flag expansion", "description": "The original flag design was smaller to the later one which is specially empty on the right side, the bigger mexican subreddits could not contain the expansion done by the masses who were excited to cooperate. Unaware of the alliances with both the Guatemalan and Swiss neighbors who lost their original designs.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx6oya", "submitted_by": "Aces4U", "name": "NC State University", "description": "Logo for North Carolina State University", "website": "https://ncsu.edu", "subreddit": "/r/ncsu", "center": [308.5, 1584.5], "path": [[300.5, 1574.5], [316.5, 1574.5], [316.5, 1594.5], [300.5, 1594.5], [300.5, 1574.5]]}, {"id": "tx6oq8", "submitted_by": "SloGamersSi", "name": "Olm", "description": "The olm or proteus is an aquatic salamander in the family Proteidae, the only exclusively cave-dwelling chordate species found in Europe. Olms can be found in Postojna Cave, Slovenia", "website": "https://www.postojnska-jama.eu/en/", "subreddit": "/r/slovenia", "center": [274.5, 883.5], "path": [[248.5, 885.5], [248.5, 879.5], [252.5, 877.5], [258.5, 879.5], [267.5, 884.5], [276.5, 886.5], [282.5, 885.5], [285.5, 883.5], [287.5, 882.5], [288.5, 880.5], [289.5, 882.5], [291.5, 879.5], [294.5, 877.5], [298.5, 875.5], [298.5, 879.5], [295.5, 883.5], [291.5, 885.5], [292.5, 885.5], [295.5, 887.5], [289.5, 886.5], [273.5, 890.5], [264.5, 887.5], [260.5, 885.5], [255.5, 886.5], [257.5, 883.5], [256.5, 881.5], [253.5, 880.5], [247.5, 885.5]]}, {"id": "tx6omn", "submitted_by": "MochiYuns", "name": "Project Miku Friend Group", "description": "Project Miku's two Mochis. PM is a discord group server established from VRChat.", "website": "", "subreddit": "", "center": [1011.5, 1841.5], "path": [[1002.5, 1835.5], [1006.5, 1835.5], [1006.5, 1839.5], [1005.5, 1839.5], [1005.5, 1841.5], [1006.5, 1841.5], [1006.5, 1844.5], [1008.5, 1844.5], [1008.5, 1841.5], [1009.5, 1841.5], [1009.5, 1839.5], [1008.5, 1839.5], [1008.5, 1834.5], [1019.5, 1834.5], [1018.5, 1847.5], [1002.5, 1847.5]]}, @@ -4494,14 +4171,13 @@ {"id": "tx6o7a", "submitted_by": "gulmat", "name": "XMOON", "description": "MOON is the official cryptocurrency of the r/Cryptocurrency subreddit", "website": "", "subreddit": "/r/cryptocurrency", "center": [0.5, 0.5], "path": [[1581.5, 458.5]]}, {"id": "tx6o69", "submitted_by": "Bl1nDSh00TeR", "name": "United Family", "description": "A french streaming community made up of friends, including the famous Asrhan971 and the notorious Bl1nDSh00TeR.", "website": "", "subreddit": "", "center": [185.5, 168.5], "path": [[181.5, 165.5], [188.5, 165.5], [188.5, 170.5], [181.5, 170.5], [181.5, 165.5]]}, {"id": "tx6o5v", "submitted_by": "astraldede", "name": "Cute Peepo", "description": "A cute drawing of peepo with a heart!", "website": "", "subreddit": "", "center": [1681.5, 316.5], "path": [[1672.5, 322.5], [1672.5, 309.5], [1690.5, 309.5], [1690.5, 322.5], [1672.5, 322.5]]}, -{"id": "tx6o4c", "submitted_by": "cathitalized", "name": "Shubble", "description": "Shubble is an American Minecraft Youtuber and Twitch streamer known for servers like the Empires and Origins SMPs. This spot was originally occupied by Dream SMP character Ghostbur, but after negotiations, Ghostbur was moved to another place on the map next to an image of creator Wilbur Soot, and Shubble replaced him.", "website": "https://www.youtube.com/c/Shubble", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx6o2u", "submitted_by": "Jennimiii", "name": "XTheFocuSx", "description": "A \u201cterrible\u201d Pixelito crow", "website": "https://www.twitch.tv/xxxthefocusxxx", "subreddit": "/r/xTheFocuSx", "center": [1582.5, 632.5], "path": [[1577.5, 627.5], [1587.5, 627.5], [1587.5, 636.5], [1577.5, 636.5]]}, {"id": "tx6o1m", "submitted_by": "lip0re", "name": "Rivers_gg", "description": "Created by the Hispanic community of rivers one great streamer who is giving something to talk about lately because of his great growth on twitchnnPD. toda mensita, toda panzonann", "website": "https://www.twitch.tv/rivers_gg", "subreddit": "", "center": [1796.5, 59.5], "path": [[1785.5, 51.5], [1785.5, 67.5], [1807.5, 67.5], [1807.5, 51.5]]}, {"id": "tx6o18", "submitted_by": "lopern", "name": "Foxhole.EXE", "description": "This is the Symbol of Foxhole. This is the 3rd Art they have on the board.", "website": "", "subreddit": "", "center": [1385.5, 1984.5], "path": [[1372.5, 1973.5], [1372.5, 1995.5], [1398.5, 1995.5], [1398.5, 1973.5], [1398.5, 1973.5], [1396.5, 1973.5]]}, {"id": "tx6nxi", "submitted_by": "TheEssemCraft", "name": "EndeavourOS", "description": "Arch-based Linux distribution; a terminal-centric distro with a vibrant and friendly community at its core", "website": "https://endeavouros.com", "subreddit": "/r/tuxplace", "center": [59.5, 705.5], "path": [[60.5, 702.5], [56.5, 706.5], [57.5, 707.5], [61.5, 707.5], [62.5, 706.5], [62.5, 704.5], [60.5, 702.5]]}, {"id": "tx6ntr", "submitted_by": "Rurush999", "name": "Code Geass", "description": "The symbol that appears in the eye of characters in the anime Code Geass when using their Geass abilities", "website": "", "subreddit": "/r/codegeass", "center": [1230.5, 1886.5], "path": [[1228.5, 1880.5], [1234.5, 1880.5], [1237.5, 1888.5], [1235.5, 1892.5], [1226.5, 1892.5], [1224.5, 1885.5], [1224.5, 1884.5]]}, -{"id": "tx6nen", "submitted_by": "dannnnasp", "name": "Logo de streamer Riversgg", "description": "Logo de la streamer mexicana revelaci\u00f3n Rivers. nGamer de cl\u00f3set (ya no tanto).", "website": "[twitch.tv/rivers_gg](https://twitch.tv/rivers_gg)", "subreddit": "", "center": [1797.5, 60.5], "path": [[1786.5, 52.5], [1807.5, 52.5], [1808.5, 67.5], [1786.5, 68.5]]}, -{"id": "tx6nbz", "submitted_by": "BerryPi", "name": "Beach Vaporeon", "description": "What a nice day at the beach! Vappy has a nice place to relax, with her Pina Colada on a bright day! \u2600\ufe0f \ud83c\udf79nnDid you know that in terms of human compatibility, Vaporeon is the best swimming partner at the beach?", "website": "", "subreddit": "/r/PlacePokemon2", "center": [1988.5, 1286.5], "path": [[1975.5, 1272.5], [1978.5, 1300.5], [1999.5, 1300.5], [1999.5, 1272.5], [1975.5, 1272.5]]}, +{"id": "tx6nen", "submitted_by": "dannnnasp", "name": "Logo de streamer Riversgg", "description": "Logo de la streamer mexicana revelaci\u00f3n Rivers. nGamer de cl\u00f3set (ya no tanto).", "website": "https://twitch.tv/rivers_gg", "subreddit": "", "center": [1797.5, 60.5], "path": [[1786.5, 52.5], [1807.5, 52.5], [1808.5, 67.5], [1786.5, 68.5]]}, +{"id": "tx6nbz", "submitted_by": "akvmq", "name": "Vaporeon Beach", "description": "What a nice day at the beach! Vappy has a nice place to relax, with her Pi\u00f1a Colada on a bright day! \u2600\ufe0f\ud83c\udf79 Did you know that in terms of human compatibility, Vaporeon is the best swimming partner at the beach? Made by the lovely people at the Pokemon in the Pokemon r/place Discord!", "website": "https://discord.gg/HEfADXQKs7", "subreddit": "", "center": [1986.5, 1286.5], "path": [[1999.5, 1273.5], [1999.5, 1300.5], [1973.5, 1300.5], [1973.5, 1272.5]]}, {"id": "tx6n5p", "submitted_by": "HauntingTone4210", "name": "team ducklings", "description": "minecraft skins from spanish streamers Perxitaa, VioletaG, Momonkunn and Carola.ncreated by their communities", "website": "", "subreddit": "", "center": [1989.5, 1393.5], "path": [[1980.5, 1402.5], [1999.5, 1402.5], [1999.5, 1384.5], [1979.5, 1384.5], [1979.5, 1402.5]]}, {"id": "tx6myu", "submitted_by": "_Asterios", "name": "2b4u", "description": "In memory of r/2 Balkan 4 u subreddit that was removed", "website": "", "subreddit": "/r/2b4y, (no, longer, exists)", "center": [1928.5, 328.5], "path": [[1937.5, 323.5], [1935.5, 335.5], [1919.5, 332.5], [1918.5, 322.5]]}, {"id": "tx6mx0", "submitted_by": "LeftEyeHole", "name": "Neema Dreamer", "description": "A staff member of r/transplace who played a major role in updating the overlay.", "website": "", "subreddit": "/r/transplace", "center": [574.5, 472.5], "path": [[571.5, 467.5], [573.5, 470.5], [574.5, 469.5], [576.5, 468.5], [577.5, 471.5], [577.5, 475.5], [570.5, 476.5]]}, @@ -4511,7 +4187,6 @@ {"id": "tx6m5o", "submitted_by": "CandiedMeow", "name": "Amitie", "description": "Amitie's sprite from Puyo Pop Fever for the DS from the Puyo Puyo series.", "website": "", "subreddit": "/r/puyopop", "center": [1951.5, 1148.5], "path": [[1958.5, 1156.5], [1938.5, 1156.5], [1938.5, 1140.5], [1963.5, 1140.5], [1963.5, 1156.5]]}, {"id": "tx6m54", "submitted_by": "SkylerWolf128", "name": "Early Gang Mug", "description": "A mug made by the offline chat community for Twitch streamer Philza. They are known as Philza's Early Gang Society, PEGS, peggers(cursed nickname), and Early gang. The mug is modeled after the mug featured in Philza's sub emote ph1lEarly as that emote was added for Early gang.", "website": "https://www.twitch.tv/philza", "subreddit": "", "center": [765.5, 1373.5], "path": [[762.5, 1364.5], [771.5, 1364.5], [772.5, 1365.5], [773.5, 1366.5], [773.5, 1381.5], [772.5, 1382.5], [761.5, 1382.5], [760.5, 1381.5], [760.5, 1379.5], [757.5, 1379.5], [756.5, 1378.5], [755.5, 1377.5], [755.5, 1372.5], [756.5, 1371.5], [757.5, 1370.5], [758.5, 1369.5], [760.5, 1369.5], [760.5, 1366.5], [761.5, 1365.5]]}, {"id": "tx6lpn", "submitted_by": "ostensacken", "name": "Changi Airport Control Tower", "description": "The control tower at the Changi Airport in Singapore.", "website": "", "subreddit": "/r/singapore", "center": [320.5, 966.5], "path": [[319.5, 971.5], [319.5, 968.5], [318.5, 968.5], [318.5, 967.5], [317.5, 967.5], [317.5, 965.5], [317.5, 964.5], [318.5, 964.5], [318.5, 963.5], [319.5, 963.5], [320.5, 962.5], [321.5, 963.5], [322.5, 964.5], [322.5, 968.5], [321.5, 968.5], [321.5, 972.5]]}, -{"id": "tx6lhi", "submitted_by": "link_dead", "name": "Vaporeon", "description": "Vaporeon a water type Pokemon #134. According to Professor Snuffy, in terms of male human and female pokemon breeding Vaporeon is the most compatible pokemon for humans. Not only are they in the field egg group which is mostly comprised of mammals but vaporeon are an average of 3 feet 3 inches tall and 63.9 pounds. This means they are large enough to handle human dicks and with their impressive base stats for hp and access to acid armor you can rough with one due to their mostly based water biology there's no doubt in my mind that an aroused vaporeon would be incredibly wet. So wet that you could easily have sex with one for hours without getting sore.", "website": "", "subreddit": "", "center": [1986.5, 1286.5], "path": [[1999.5, 1299.5], [2000.5, 1272.5], [1973.5, 1272.5], [1974.5, 1300.5]]}, {"id": "tx6lh3", "submitted_by": "TheZeldaDude", "name": "StarClan", "description": "This is the icon for the StarClan from the Warriors (also referred to as Warrior Cats) series.", "website": "https://warriors.fandom.com/wiki/StarClan", "subreddit": "/r/WarriorCats", "center": [1453.5, 800.5], "path": [[1449.5, 795.5], [1451.5, 797.5], [1455.5, 797.5], [1458.5, 794.5], [1458.5, 805.5], [1448.5, 805.5], [1448.5, 794.5]]}, {"id": "tx6lfn", "submitted_by": "Serious_Historian578", "name": "SLUT", "description": "This is a reference to a shirt in the game Va-11-Hall-A", "website": "https://www.reddit.com/r/waifubartending/comments/tua7tf/operation_bad_touch_was_a_success/", "subreddit": "/r/waifubartending", "center": [1773.5, 781.5], "path": [[1766.5, 779.5], [1766.5, 783.5], [1780.5, 783.5], [1780.5, 779.5]]}, {"id": "tx6l7a", "submitted_by": "djulioo", "name": "Vasil Levski", "description": "Vasil Levski (Bulgarian: \u0412\u0430\u0441\u0438\u043b \u041b\u0435\u0432\u0441\u043a\u0438) was a Bulgarian revolutionary who is, today, a national hero of Bulgaria. Dubbed the Apostle of Freedom, Levski ideologised and strategised a revolutionary movement to liberate Bulgaria from Ottoman rule. Levski founded the Internal Revolutionary Organisation, and sought to foment a nationwide uprising through a network of secret regional committees.", "website": "https://en.wikipedia.org/wiki/Vasil_Levski", "subreddit": "", "center": [1601.5, 732.5], "path": [[1578.5, 748.5], [1579.5, 747.5], [1580.5, 747.5], [1581.5, 746.5], [1579.5, 761.5], [1579.5, 767.5], [1592.5, 766.5], [1594.5, 765.5], [1636.5, 766.5], [1635.5, 765.5], [1634.5, 764.5], [1633.5, 763.5], [1632.5, 763.5], [1631.5, 762.5], [1630.5, 762.5], [1631.5, 762.5], [1630.5, 762.5], [1630.5, 762.5], [1629.5, 761.5], [1629.5, 761.5], [1628.5, 760.5], [1628.5, 759.5], [1627.5, 758.5], [1626.5, 758.5], [1624.5, 758.5], [1624.5, 757.5], [1623.5, 756.5], [1623.5, 755.5], [1622.5, 755.5], [1621.5, 754.5], [1620.5, 754.5], [1620.5, 754.5], [1619.5, 753.5], [1618.5, 752.5], [1617.5, 751.5], [1615.5, 751.5], [1614.5, 750.5], [1614.5, 749.5], [1613.5, 748.5], [1613.5, 747.5], [1612.5, 747.5], [1611.5, 746.5], [1611.5, 744.5], [1612.5, 743.5], [1612.5, 738.5], [1613.5, 737.5], [1613.5, 735.5], [1614.5, 734.5], [1614.5, 733.5], [1615.5, 733.5], [1616.5, 732.5], [1616.5, 730.5], [1617.5, 729.5], [1617.5, 728.5], [1618.5, 727.5], [1618.5, 724.5], [1619.5, 724.5], [1620.5, 723.5], [1620.5, 721.5], [1621.5, 720.5], [1621.5, 716.5], [1622.5, 716.5], [1622.5, 713.5], [1621.5, 712.5], [1621.5, 710.5], [1620.5, 709.5], [1620.5, 706.5], [1619.5, 705.5], [1619.5, 703.5], [1618.5, 702.5], [1617.5, 701.5], [1616.5, 700.5], [1615.5, 699.5], [1615.5, 698.5], [1614.5, 698.5], [1613.5, 697.5], [1612.5, 696.5], [1611.5, 696.5], [1610.5, 695.5], [1606.5, 695.5], [1606.5, 695.5], [1605.5, 694.5], [1594.5, 694.5], [1593.5, 695.5], [1589.5, 695.5], [1588.5, 696.5], [1587.5, 696.5], [1586.5, 697.5], [1585.5, 697.5], [1585.5, 700.5], [1584.5, 700.5], [1584.5, 701.5], [1583.5, 702.5], [1583.5, 703.5], [1582.5, 704.5], [1582.5, 705.5], [1581.5, 706.5], [1581.5, 707.5], [1580.5, 708.5], [1580.5, 708.5], [1579.5, 709.5], [1579.5, 711.5], [1580.5, 712.5], [1579.5, 713.5], [1579.5, 714.5], [1580.5, 715.5], [1581.5, 716.5], [1581.5, 716.5], [1582.5, 717.5], [1582.5, 726.5], [1583.5, 727.5], [1583.5, 732.5], [1584.5, 733.5], [1584.5, 736.5], [1585.5, 737.5], [1585.5, 738.5], [1586.5, 739.5], [1586.5, 742.5], [1585.5, 743.5], [1584.5, 744.5], [1583.5, 745.5], [1582.5, 746.5], [1580.5, 747.5], [1578.5, 748.5]]}, @@ -4522,17 +4197,14 @@ {"id": "tx6kq4", "submitted_by": "DoubleAAaron", "name": "Shadow of Israphel", "description": "A tribute to the popular Minecraft YouTube series Shadow of Israphel, created by the Yogscast. The last episode (Part 42) aired on July 27th, 2012. E.43 references the long awaited sequel episode after cancellation.", "website": "https://www.youtube.com/watch?v=oZezE9It6HE", "subreddit": "/r/yogscast", "center": [1508.5, 1809.5], "path": [[1503.5, 1800.5], [1513.5, 1800.5], [1513.5, 1817.5], [1503.5, 1817.5]]}, {"id": "tx6knm", "submitted_by": "terankl", "name": "Slackware", "description": "Icon of the Slackware Linux Distribution", "website": "http://www.slackware.com/", "subreddit": "/r/slackware", "center": [47.5, 684.5], "path": [[44.5, 687.5], [42.5, 685.5], [42.5, 683.5], [45.5, 680.5], [48.5, 680.5], [51.5, 683.5], [51.5, 685.5], [48.5, 688.5], [45.5, 688.5]]}, {"id": "tx6kmk", "submitted_by": "Hiptoe", "name": "Sub Rosa", "description": "A multiplayer first-person physics-based shooter about tense deals, double-crosses, and the occasional high-speed car chase.", "website": "https://store.steampowered.com/app/272230/Sub_Rosa/", "subreddit": "/r/subrosa", "center": [1804.5, 959.5], "path": [[1798.5, 953.5], [1798.5, 953.5], [1798.5, 953.5], [1799.5, 953.5], [1810.5, 953.5], [1810.5, 964.5], [1798.5, 964.5]]}, -{"id": "tx6klc", "submitted_by": "CactusKipic", "name": "Suspicious Tour de France", "description": "The famous bike race going all around France, but participants are suspiciously in vac suit (and that don't make you want to trust them)", "website": "https://www.letour.fr/fr/", "subreddit": "", "center": [117.5, 1962.5], "path": [[3.5, 1956.5], [148.5, 1956.5], [148.5, 1963.5], [195.5, 1963.5], [197.5, 1961.5], [219.5, 1960.5], [220.5, 1957.5], [227.5, 1956.5], [232.5, 1953.5], [246.5, 1952.5], [247.5, 1967.5], [3.5, 1967.5]]}, {"id": "tx6kgi", "submitted_by": "et6239", "name": "Hornet", "description": "A drawing of the main character of Silksong the upcoming sequel to the video game Hollow Knight.", "website": "", "subreddit": "/r/Hollowknight", "center": [261.5, 382.5], "path": [[225.5, 343.5], [298.5, 343.5], [298.5, 420.5], [225.5, 420.5], [225.5, 395.5], [214.5, 394.5], [215.5, 387.5], [225.5, 385.5]]}, {"id": "tx6kfb", "submitted_by": "derloulou", "name": "Heinrich-Hertz-Gymnasium", "description": "Berlin School", "website": "https://www.hhgym.de", "subreddit": "/r/hhgym", "center": [191.5, 760.5], "path": [[184.5, 756.5], [186.5, 753.5], [190.5, 752.5], [193.5, 752.5], [196.5, 753.5], [198.5, 755.5], [198.5, 757.5], [199.5, 760.5], [198.5, 764.5], [195.5, 768.5], [193.5, 769.5], [191.5, 769.5], [189.5, 769.5], [187.5, 768.5], [186.5, 768.5], [184.5, 766.5], [183.5, 765.5], [183.5, 761.5], [183.5, 757.5], [184.5, 755.5]]}, {"id": "tx6kdv", "submitted_by": "Ok_Quiet7627", "name": "Badawans", "description": "Peque\u00f1a comunidad con un gran coraz\u00f3n, cuidando a un conejito. <3", "website": "https://discord.gg/59bcg7SyeY", "subreddit": "", "center": [1586.5, 1069.5], "path": [[1582.5, 1065.5], [1591.5, 1074.5], [1591.5, 1065.5], [1582.5, 1074.5], [1582.5, 1065.5], [1591.5, 1065.5], [1591.5, 1074.5], [1582.5, 1074.5], [1582.5, 1065.5], [1591.5, 1065.5], [1591.5, 1074.5], [1591.5, 1074.5], [1591.5, 1074.5]]}, {"id": "tx6k74", "submitted_by": "Zekkenamyus", "name": "Queen's University", "description": "The logo of a Canadian University's athletics & recreation team, made to represent the university as a whole. This was maintained with the help of the MLP community and the University of Waterloo community.", "website": "https://gogaelsgo.com/index.aspx", "subreddit": "", "center": [1653.5, 201.5], "path": [[1647.5, 194.5], [1649.5, 194.5], [1649.5, 193.5], [1651.5, 193.5], [1651.5, 192.5], [1657.5, 192.5], [1657.5, 193.5], [1658.5, 193.5], [1658.5, 194.5], [1659.5, 194.5], [1659.5, 210.5], [1647.5, 210.5]]}, {"id": "tx6k42", "submitted_by": "trigger-fingerer", "name": "Jabroni Mike's Venetian Mask", "description": "The logo for Jabroni Mike, a good friend of the Vinesauce team.", "website": "https://cucking.men", "subreddit": "", "center": [128.5, 1103.5], "path": [[123.5, 1098.5], [132.5, 1098.5], [134.5, 1100.5], [134.5, 1106.5], [133.5, 1107.5], [123.5, 1107.5], [121.5, 1106.5], [121.5, 1104.5], [122.5, 1100.5]]}, {"id": "tx6jnh", "submitted_by": "DramaticServe4859", "name": "Flag of Lithuania", "description": "", "website": "", "subreddit": "/r/lithuania", "center": [625.5, 598.5], "path": [[600.5, 588.5], [600.5, 609.5], [649.5, 610.5], [649.5, 587.5], [600.5, 587.5]]}, -{"id": "tx6jjk", "submitted_by": "Infinite-Trade1058", "name": "El Demente", "description": "Logo en representaci\u00f3n a uno de los mejores youtubers de Argentina.", "website": "", "subreddit": "", "center": [1253.5, 1392.5], "path": [[1224.5, 1379.5], [1230.5, 1368.5], [1248.5, 1367.5], [1263.5, 1382.5], [1277.5, 1397.5], [1279.5, 1408.5], [1273.5, 1416.5], [1260.5, 1417.5], [1246.5, 1406.5], [1231.5, 1388.5], [1225.5, 1379.5]]}, {"id": "tx6j7y", "submitted_by": "mazra888", "name": "Brown University Logo", "description": "Athletic logo of Brown University", "website": "https://www.brown.edu/", "subreddit": "/r/BrownU", "center": [331.5, 1629.5], "path": [[325.5, 1623.5], [337.5, 1623.5], [337.5, 1634.5], [325.5, 1634.5]]}, -{"id": "tx6j2o", "submitted_by": "iLooh", "name": "Luh", "description": "Spanish Youtuber/streamer who creates VRChat and Minecraft content including EliteCraft and PermaDeath", "website": "htt", "subreddit": "/r/iluh", "center": [1965.5, 1470.5], "path": [[1960.5, 1465.5], [1960.5, 1474.5], [1969.5, 1474.5], [1969.5, 1465.5], [1969.5, 1465.5], [1969.5, 1465.5], [1969.5, 1465.5], [1967.5, 1465.5], [1966.5, 1465.5]]}, -{"id": "tx6j1f", "submitted_by": "Interesting_Idea_435", "name": "Zombie's Face", "description": "Zombie's Face from the game Unturned", "website": "", "subreddit": "/r/unturned", "center": [0.5, 0.5], "path": []}, +{"id": "tx6j2o", "submitted_by": "iLooh", "name": "Luh", "description": "Spanish Youtuber/streamer who creates VRChat and Minecraft content including EliteCraft and PermaDeath", "website": "https://htt", "subreddit": "/r/iluh", "center": [1965.5, 1470.5], "path": [[1960.5, 1465.5], [1960.5, 1474.5], [1969.5, 1474.5], [1969.5, 1465.5], [1969.5, 1465.5], [1969.5, 1465.5], [1969.5, 1465.5], [1967.5, 1465.5], [1966.5, 1465.5]]}, {"id": "tx6j0y", "submitted_by": "s__a__s__s", "name": "OG CUL", "description": "Premier territoire de la Nation du CUL, communaut\u00e9 du streamer qu\u00e9b\u00e9cois DomCass\u00e9 sur Twitch", "website": "https://www.twitch.tv/domcasse", "subreddit": "", "center": [1275.5, 669.5], "path": [[1260.5, 664.5], [1290.5, 664.5], [1290.5, 673.5], [1260.5, 673.5]]}, {"id": "tx6j0m", "submitted_by": "Serious_Historian578", "name": "Fire", "description": "Some guy wanted to add his fire to the Va-11-Hall-A area", "website": "https://redd.it/tvfm58", "subreddit": "", "center": [499.5, 1572.5], "path": [[495.5, 1567.5], [495.5, 1577.5], [503.5, 1577.5], [503.5, 1567.5]]}, {"id": "tx6ir2", "submitted_by": "TheLaughingPanda", "name": "Bear", "description": "A cute little brown bear made by /u/TheLaughingPanda and friends.", "website": "", "subreddit": "", "center": [699.5, 1704.5], "path": [[694.5, 1700.5], [703.5, 1700.5], [703.5, 1707.5], [694.5, 1707.5], [694.5, 1700.5]]}, @@ -4541,7 +4213,7 @@ {"id": "tx6i70", "submitted_by": "SpicyPeachCream", "name": "Juan Carlos Bodoque from 31 Minutos)", "description": "Juan Carlos Bodoque is a character from 31 minutos, a Chilean comedy television series and a children's music band", "website": "", "subreddit": "", "center": [1836.5, 527.5], "path": [[1843.5, 511.5], [1842.5, 513.5], [1841.5, 515.5], [1841.5, 516.5], [1840.5, 519.5], [1839.5, 520.5], [1838.5, 522.5], [1837.5, 523.5], [1837.5, 519.5], [1838.5, 517.5], [1839.5, 516.5], [1839.5, 513.5], [1836.5, 513.5], [1835.5, 514.5], [1834.5, 515.5], [1833.5, 516.5], [1832.5, 523.5], [1831.5, 524.5], [1830.5, 525.5], [1829.5, 525.5], [1828.5, 526.5], [1828.5, 528.5], [1826.5, 528.5], [1825.5, 528.5], [1825.5, 535.5], [1826.5, 535.5], [1828.5, 536.5], [1828.5, 537.5], [1827.5, 538.5], [1827.5, 539.5], [1843.5, 539.5], [1843.5, 538.5], [1843.5, 537.5], [1841.5, 537.5], [1840.5, 536.5], [1840.5, 534.5], [1842.5, 533.5], [1843.5, 532.5], [1843.5, 524.5], [1844.5, 521.5], [1845.5, 520.5], [1846.5, 519.5], [1846.5, 516.5], [1847.5, 510.5], [1846.5, 510.5]]}, {"id": "tx6htv", "submitted_by": "Armando-OuO", "name": "Minecraft Skin lLocochon", "description": "This is the minecraft skin of the Peruvian Youtuber/Streamer lLocochon, created by: OuO Community.", "website": "", "subreddit": "/r/Locochon", "center": [1993.5, 1341.5], "path": [[1987.5, 1321.5], [1987.5, 1361.5], [1999.5, 1361.5], [1999.5, 1321.5], [1987.5, 1321.5], [1987.5, 1321.5]]}, {"id": "tx6hn9", "submitted_by": "lunatonesyt", "name": "The Nerds", "description": "The Nerds (or The Guild) is a group of characters playing as roleplayers playing characters on GTA NoPixel", "website": "https://nopixel.fandom.com/wiki/The_Guild?so=search", "subreddit": "", "center": [1408.5, 665.5], "path": [[1375.5, 671.5], [1375.5, 658.5], [1441.5, 659.5], [1441.5, 671.5], [1375.5, 671.5]]}, -{"id": "tx6hmh", "submitted_by": "WasabiQueemin", "name": "BruceDropEmOff", "description": "The Realest's logo DEO4L", "website": "twitch.tv/brucedropemoff", "subreddit": "/r/BruceDropEmOff", "center": [656.5, 877.5], "path": [[630.5, 866.5], [630.5, 887.5], [682.5, 887.5], [682.5, 866.5]]}, +{"id": "tx6hmh", "submitted_by": "WasabiQueemin", "name": "BruceDropEmOff", "description": "The Realest's logo DEO4L", "website": "https://twitch.tv/brucedropemoff", "subreddit": "/r/BruceDropEmOff", "center": [656.5, 877.5], "path": [[630.5, 866.5], [630.5, 887.5], [682.5, 887.5], [682.5, 866.5]]}, {"id": "tx6hi7", "submitted_by": "archer_uwu", "name": "ROG Memorial.", "description": "A memorial to a deceased friend, who passed away due to Cancer in 2021. Fly High, Cooper! \ud83e\udd87\ud83d\udda4.", "website": "https://i.imgur.com/GvDM6cO.png", "subreddit": "", "center": [127.5, 705.5], "path": [[123.5, 701.5], [123.5, 701.5], [131.5, 701.5], [131.5, 701.5], [132.5, 711.5], [132.5, 711.5], [122.5, 711.5], [122.5, 711.5], [123.5, 701.5], [123.5, 701.5], [125.5, 699.5], [125.5, 699.5], [130.5, 699.5], [130.5, 699.5], [130.5, 701.5], [130.5, 701.5], [133.5, 707.5], [133.5, 707.5], [133.5, 709.5], [133.5, 709.5]]}, {"id": "tx6hfl", "submitted_by": "Gofawful6", "name": "Goffy", "description": "@Gofawful6's persona.", "website": "https://twitter.com/Gofawful6", "subreddit": "", "center": [601.5, 1614.5], "path": [[594.5, 1623.5], [594.5, 1619.5], [594.5, 1618.5], [593.5, 1618.5], [593.5, 1616.5], [594.5, 1616.5], [594.5, 1614.5], [595.5, 1614.5], [595.5, 1611.5], [595.5, 1610.5], [594.5, 1610.5], [594.5, 1609.5], [593.5, 1609.5], [594.5, 1609.5], [594.5, 1608.5], [594.5, 1607.5], [594.5, 1606.5], [593.5, 1606.5], [594.5, 1606.5], [594.5, 1605.5], [608.5, 1605.5], [608.5, 1606.5], [609.5, 1606.5], [608.5, 1606.5], [608.5, 1607.5], [608.5, 1615.5], [609.5, 1615.5], [609.5, 1617.5], [608.5, 1617.5], [608.5, 1620.5], [605.5, 1620.5], [605.5, 1621.5], [604.5, 1621.5], [604.5, 1622.5], [602.5, 1622.5], [601.5, 1622.5], [601.5, 1623.5]]}, {"id": "tx6hci", "submitted_by": "Waldos", "name": "Third World Tournament X", "description": "The Third World Tournament X is a battle music community based on mashups, covers, remixes with fictional or real character representations. The tournament is to decide who is the best representant with the best music supported by his/her/its/their community.", "website": "https://twitter.com/ttercermundo", "subreddit": "/r/ThirdWorldTournament", "center": [160.5, 1258.5], "path": [[152.5, 1251.5], [166.5, 1251.5], [166.5, 1265.5], [155.5, 1265.5], [155.5, 1264.5], [154.5, 1264.5], [154.5, 1257.5], [154.5, 1256.5], [153.5, 1256.5], [153.5, 1255.5], [152.5, 1255.5], [152.5, 1251.5]]}, @@ -4549,14 +4221,11 @@ {"id": "tx6gxm", "submitted_by": "ostensacken", "name": "Marina Bay Sands", "description": "An iconic resort in Singapore, opening in 2010. It has since become a national symbol of Singapore.", "website": "", "subreddit": "/r/singapore", "center": [293.5, 974.5], "path": [[287.5, 977.5], [287.5, 975.5], [288.5, 974.5], [288.5, 972.5], [287.5, 972.5], [286.5, 971.5], [300.5, 971.5], [300.5, 972.5], [299.5, 972.5], [299.5, 973.5], [299.5, 977.5], [295.5, 977.5], [296.5, 974.5], [296.5, 972.5], [295.5, 972.5], [295.5, 977.5]]}, {"id": "tx6gx1", "submitted_by": "TheSavageWalrus", "name": "Walrus", "description": "The walrus is a large flippered marine mammal with a discontinuous distribution about the North Pole in the Arctic Ocean and subarctic seas of the Northern Hemisphere. The walrus is the only living species in the family Odobenidae and genus Odobenus. Adult walrus are characterised by prominent tusks and whiskers, and their considerable bulk.", "website": "", "subreddit": "/r/walrus", "center": [428.5, 96.5], "path": [[425.5, 93.5], [425.5, 97.5], [424.5, 97.5], [424.5, 99.5], [427.5, 99.5], [428.5, 98.5], [429.5, 99.5], [432.5, 99.5], [432.5, 98.5], [431.5, 97.5], [432.5, 96.5], [433.5, 95.5], [433.5, 94.5], [432.5, 94.5], [431.5, 94.5], [431.5, 93.5]]}, {"id": "tx6gum", "submitted_by": "xRavenCrisx", "name": "Perxitaa's logo", "description": "Logo of spanish twitch streamer, Perxitaa.", "website": "https://www.twitch.tv/perxitaa", "subreddit": "", "center": [1100.5, 1609.5], "path": [[1109.5, 1597.5], [1091.5, 1597.5], [1091.5, 1620.5], [1109.5, 1620.5]]}, -{"id": "tx6gt7", "submitted_by": "s__a__s__s", "name": "CUL", "description": "Communaut\u00e9 du Streamer qu\u00e9b\u00e9cois DomCass\u00e9 sur Twitch n\u00ab On voulait juste \u00e9crire le mot CUL \u00bbnnCommunity of Qu\u00e9bec streamer DomCass\u00e9 on Twitch n\u00abWe just wanted to write the word Ass in french \u00bbnnComunidad de Qu\u00e9bec streamer DomCass\u00e9 en Twitchn\u00ab Solo quer\u00edamos escribir la palabra CULO en frances \u00bbn", "website": "https://www.twitch.tv/domcasse", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx6gpl", "submitted_by": "olaxe360", "name": "Potoo Project", "description": "If you don't know what's a potoo: it's a truly magnificent bird. If you really don\u2019t know google it, link bellow.nGot some problem with bots so only the head remain.nMade by an unknown group called Debilus.n", "website": "https://en.wikipedia.org/wiki/Potoo", "subreddit": "", "center": [386.5, 1571.5], "path": [[382.5, 1566.5], [390.5, 1566.5], [390.5, 1575.5], [382.5, 1575.5]]}, -{"id": "tx6gnk", "submitted_by": "washhy", "name": "YRG", "description": "Twitch community from Twitch streamer yourragegaming", "website": "https://www.twitch.tv/yourragegaming", "subreddit": "/r/YourRAGE", "center": [0.5, 0.5], "path": []}, {"id": "tx6gms", "submitted_by": "et6239", "name": "Atrioc", "description": "Drawings of inside jokes and references of the streamer Atrioc.", "website": "https://www.twitch.tv/atrioc", "subreddit": "", "center": [1832.5, 216.5], "path": [[1840.5, 158.5], [1821.5, 159.5], [1821.5, 192.5], [1806.5, 192.5], [1805.5, 249.5], [1813.5, 240.5], [1823.5, 231.5], [1828.5, 231.5], [1837.5, 238.5], [1837.5, 248.5], [1853.5, 279.5], [1866.5, 258.5], [1865.5, 245.5], [1859.5, 239.5], [1854.5, 241.5], [1846.5, 240.5], [1841.5, 234.5]]}, -{"id": "tx6g9s", "submitted_by": "cloblan", "name": "Luxembourg", "description": "Flag of Belgium's neighbouring country Luxembourg", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx6g5o", "submitted_by": "nesisma", "name": "Terere", "description": "Bebida refrescante, tipica de Paraguay.", "website": "", "subreddit": "", "center": [1054.5, 689.5], "path": [[1047.5, 685.5], [1047.5, 692.5], [1061.5, 692.5], [1061.5, 685.5]]}, {"id": "tx6g4s", "submitted_by": "Nat_Keely", "name": "Little penguin and mirrored penguin", "description": "A tiny penguin with it's mirrored version. Had this spot after a long and hard battle against a small stick man. The heart in the middle is a copy of the one below it made by @Nat_Keely and @The_Sheep_ when it was on the verge to disappear. Thanks to other heart enthousiast, it could resist.nnNo explaination for the PP tho.", "website": "", "subreddit": "", "center": [286.5, 1664.5], "path": [[281.5, 1650.5], [290.5, 1650.5], [290.5, 1678.5], [281.5, 1678.5], [281.5, 1650.5]]}, -{"id": "tx6g04", "submitted_by": "sammyisrandom", "name": "NCT banner", "description": "A mostly intact tribute to the kpop group NCT (an abbreviation of Neo Culture Technology), with a small pixel approximation of NCT's lightstick, known for its iconic brick/cube shape.", "website": "", "subreddit": "", "center": [1577.5, 255.5], "path": [[1564.5, 249.5], [1590.5, 249.5], [1590.5, 261.5], [1564.5, 261.5]]}, +{"id": "tx6g04", "submitted_by": "sammyisrandom", "name": "NCT", "description": "A mostly intact tribute to the K-pop group NCT (an abbreviation of Neo Culture Technology), with a small pixel approximation of NCT's lightstick, known for its iconic brick/cube shape.", "website": "https://en.wikipedia.org/wiki/NCT_(group)", "subreddit": "/r/NCT", "center": [1577.5, 255.5], "path": [[1564.5, 249.5], [1590.5, 249.5], [1590.5, 261.5], [1564.5, 261.5]]}, {"id": "tx6fmw", "submitted_by": "sunshinias", "name": "Stray Kids Bang Chan doodle (Chanosaur)", "description": "This critter is a doodle from Stray Kids' Bang Chan. The critter says trans rights! The 8 represents the 8 members of Stray Kids.", "website": "", "subreddit": "/r/straykids", "center": [1611.5, 228.5], "path": [[1604.5, 221.5], [1604.5, 236.5], [1615.5, 236.5], [1615.5, 234.5], [1617.5, 234.5], [1617.5, 230.5], [1616.5, 230.5], [1616.5, 227.5], [1621.5, 227.5], [1621.5, 221.5]]}, {"id": "tx6ffu", "submitted_by": "lunatonesyt", "name": "BlauLurk", "description": "Lurk emote from the Twitch streamer Blaustoise", "website": "https://www.twitch.tv/blaustoise", "subreddit": "", "center": [1428.5, 677.5], "path": [[1414.5, 672.5], [1442.5, 672.5], [1442.5, 681.5], [1414.5, 681.5], [1414.5, 672.5]]}, {"id": "tx6f9r", "submitted_by": "Atomoxetin", "name": "GIT GUD", "description": "A joint artwork between Elden ring and Hollow knight referencing the phrase popularised in the Soulsborne series of games referring to simply getting better at the game if the player is struggling. nThis is also a prominent phrase in the Hollow knight community due to the fact that in a cutscene featuring hornet, she shouts gikku, which was misheard by most players as git gud.", "website": "https://discord.gg/kbDYYPnP https://discord.gg/nYF5NNYU", "subreddit": "/r/Eldenring, /r/HKplace", "center": [226.5, 390.5], "path": [[213.5, 385.5], [237.5, 385.5], [237.5, 386.5], [238.5, 387.5], [239.5, 389.5], [239.5, 391.5], [236.5, 395.5], [213.5, 394.5], [213.5, 386.5]]}, @@ -4564,7 +4233,6 @@ {"id": "tx6f2y", "submitted_by": "ostensacken", "name": "Bengal Tiger", "description": "An endangered population of the Panthera tigris tigris subspecies. The national animal of Bangladesh.", "website": "", "subreddit": "/r/bangladesh", "center": [316.5, 997.5], "path": [[319.5, 1006.5], [318.5, 1005.5], [317.5, 1004.5], [317.5, 1003.5], [316.5, 1002.5], [315.5, 1001.5], [314.5, 1000.5], [314.5, 999.5], [311.5, 999.5], [310.5, 998.5], [310.5, 992.5], [311.5, 992.5], [311.5, 992.5], [311.5, 991.5], [312.5, 991.5], [312.5, 992.5], [316.5, 992.5], [316.5, 991.5], [317.5, 991.5], [317.5, 993.5], [317.5, 994.5], [321.5, 994.5], [321.5, 998.5], [320.5, 1000.5], [320.5, 1005.5]]}, {"id": "tx6f2m", "submitted_by": "s__a__s__s", "name": "La ligne verte", "description": "Territoire officiel du film La ligne verte, D\u00e9fendu fi\u00e8rement par La communaut\u00e9 CUL de DomCass\u00e9 \u00ab C'est un tr\u00e8s bon film. \u00bb", "website": "https://www.twitch.tv/domcasse", "subreddit": "", "center": [1242.5, 669.5], "path": [[1241.5, 665.5], [1243.5, 665.5], [1243.5, 673.5], [1241.5, 673.5]]}, {"id": "tx6ety", "submitted_by": "Piggy26YT", "name": "ARK Logo", "description": "The logo from the 2015 game Ark: Survival Evolved", "website": "https://cdn.cloudflare.steamstatic.com/steam/apps/346110/header.jpg?t=1644270935", "subreddit": "/r/ARK", "center": [1893.5, 1239.5], "path": [[1890.5, 1236.5], [1884.5, 1228.5], [1902.5, 1228.5], [1902.5, 1249.5], [1884.5, 1249.5], [1884.5, 1228.5], [1884.5, 1228.5]]}, -{"id": "tx6esc", "submitted_by": "washhy", "name": "DEO", "description": "Twitch community from Twitch streamer and member of OTK BruceDropEmOff nn", "website": "https://www.twitch.tv/brucedropemoff", "subreddit": "/r/BruceDropEmOff", "center": [0.5, 0.5], "path": []}, {"id": "tx6e7e", "submitted_by": "theSchlauch", "name": "Ray Gun", "description": "The iconic Ray Gun from the Call of Duty (Zombies) franchise", "website": "", "subreddit": "", "center": [733.5, 1137.5], "path": [[730.5, 1136.5], [726.5, 1140.5], [727.5, 1141.5], [731.5, 1145.5], [734.5, 1143.5], [741.5, 1145.5], [741.5, 1142.5], [742.5, 1142.5], [742.5, 1141.5], [738.5, 1140.5], [740.5, 1138.5], [739.5, 1136.5], [736.5, 1134.5], [731.5, 1133.5], [733.5, 1131.5], [730.5, 1122.5], [729.5, 1125.5], [729.5, 1129.5], [728.5, 1129.5], [729.5, 1133.5], [729.5, 1144.5], [731.5, 1140.5]]}, {"id": "tx6e0d", "submitted_by": "lunatonesyt", "name": "GTTC", "description": "Acronym which means 'Glory to the cock' the motto of the GTA business Roosters Rest", "website": "https://nopixel.fandom.com/wiki/Rooster's_Rest?so=search", "subreddit": "", "center": [1375.5, 695.5], "path": [[1378.5, 711.5], [1378.5, 679.5], [1372.5, 679.5], [1372.5, 711.5], [1378.5, 711.5]]}, {"id": "tx6dwo", "submitted_by": "514_Music", "name": "LOFI", "description": "r/lofihouse and r/lofihiphop communities collaborated together to represent the sound of lofi. lofi or low fedelity, is a music or production quality in which elements usually regarded as imperfections in the context of a recording or performance are present, sometimes as a deliberate choice. lofi hiphop is known for its chill vibes and calming sound. similar, lofi house can be calm and chill, but also is more upbeat and danceable", "website": "", "subreddit": "/r/lofihiphop, /r/lofihouse", "center": [1074.5, 1675.5], "path": [[1071.5, 1671.5], [1077.5, 1671.5], [1077.5, 1679.5], [1070.5, 1679.5], [1070.5, 1671.5], [1077.5, 1671.5]]}, @@ -4580,13 +4248,10 @@ {"id": "tx6coc", "submitted_by": "Luc40444", "name": "Nantes University", "description": "This is the symbol of the University of Nantes, in France. More specifically, it has been made by its computer science branch ( BUT INFO ) !", "website": "https://www.univ-nantes.fr", "subreddit": "", "center": [1936.5, 64.5], "path": [[1926.5, 73.5], [1946.5, 73.5], [1946.5, 54.5], [1926.5, 54.5], [1926.5, 73.5]]}, {"id": "tx6cl4", "submitted_by": "hznyeo8", "name": "ATEEZ", "description": "ATEEZ is a South Korean boy group formed by KQ Entertainment debuted in 2018. The group consists of eight members: Hongjoong, Seonghwa, Yunho, Yeosang, San, Mingi, Wooyoung and Jongho and they are known for their amazing live performances and stage presence.", "website": "https://twitter.com/ateezofficial", "subreddit": "/r/ATEEZ", "center": [1613.5, 209.5], "path": [[1620.5, 212.5], [1620.5, 206.5], [1606.5, 206.5], [1606.5, 212.5]]}, {"id": "tx6cl2", "submitted_by": "1983FNaF1987", "name": "Upside Down Amongus", "description": "An upside down amongus.", "website": "", "subreddit": "", "center": [907.5, 893.5], "path": [[904.5, 887.5], [909.5, 887.5], [909.5, 899.5], [904.5, 899.5]]}, -{"id": "tx6chx", "submitted_by": "Necessary-Water8704", "name": "Joeseppi_ Twitch Community", "description": "Community of joeseppi_ Known for the alliance with CUL and the phrase -CUL is getting F..K-", "website": "https://www.twitch.tv/joeseppi_", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "tx6cfx", "submitted_by": "drt0", "name": "Hristo Botev", "description": "Hristo Botev was a Bulgarian revolutionary, poet and national hero, who died fighting for Bulgarian liberation.", "website": "https://en.wikipedia.org/wiki/Hristo_Botev", "subreddit": "/r/Bulgaria", "center": [1646.5, 736.5], "path": [[1630.5, 755.5], [1661.5, 755.5], [1661.5, 716.5], [1630.5, 716.5], [1630.5, 755.5]]}, {"id": "tx6c9q", "submitted_by": "link_dead", "name": "Geass", "description": "The Power of Kings Geass allows Lelouch vi Britannia to command anyone to do whatever he wants only through direct eye contact.", "website": "", "subreddit": "/r/anime", "center": [1231.5, 1886.5], "path": [[1237.5, 1888.5], [1237.5, 1884.5], [1234.5, 1882.5], [1232.5, 1881.5], [1227.5, 1881.5], [1225.5, 1885.5], [1225.5, 1889.5], [1230.5, 1892.5], [1233.5, 1892.5], [1237.5, 1888.5]]}, {"id": "tx6bys", "submitted_by": "-Darako-", "name": "Chiva", "description": "A traditional bus from Colombia of artisanal origin for public transport, it is also used to hold parties while it runs through the streets of the cities of Colombia", "website": "https://es.wikipedia.org/wiki/Chiva_(veh%C3%ADculo)", "subreddit": "/r/Colombia", "center": [23.5, 1326.5], "path": [[35.5, 1344.5], [39.5, 1344.5], [40.5, 1343.5], [41.5, 1342.5], [41.5, 1341.5], [44.5, 1341.5], [44.5, 1332.5], [43.5, 1331.5], [43.5, 1328.5], [42.5, 1327.5], [41.5, 1327.5], [41.5, 1319.5], [40.5, 1319.5], [40.5, 1318.5], [38.5, 1318.5], [37.5, 1317.5], [36.5, 1316.5], [35.5, 1315.5], [34.5, 1314.5], [33.5, 1313.5], [32.5, 1312.5], [31.5, 1311.5], [30.5, 1310.5], [29.5, 1309.5], [28.5, 1308.5], [28.5, 1307.5], [34.5, 1307.5], [34.5, 1300.5], [25.5, 1300.5], [25.5, 1308.5], [11.5, 1308.5], [10.5, 1309.5], [9.5, 1310.5], [8.5, 1311.5], [8.5, 1312.5], [7.5, 1313.5], [6.5, 1314.5], [6.5, 1315.5], [6.5, 1316.5], [5.5, 1316.5], [5.5, 1317.5], [4.5, 1318.5], [3.5, 1319.5], [3.5, 1320.5], [2.5, 1321.5], [2.5, 1338.5], [3.5, 1339.5], [5.5, 1339.5], [6.5, 1343.5], [7.5, 1344.5], [11.5, 1344.5], [12.5, 1343.5], [13.5, 1342.5], [13.5, 1339.5], [21.5, 1339.5], [21.5, 1342.5], [22.5, 1343.5], [23.5, 1344.5], [27.5, 1344.5], [28.5, 1343.5], [29.5, 1342.5], [29.5, 1341.5], [33.5, 1341.5], [33.5, 1342.5], [34.5, 1343.5], [35.5, 1344.5]]}, {"id": "tx6bph", "submitted_by": "Ela25_", "name": "Flag of Corsica", "description": "The flag of Corsica was adopted by General of the Nation Pasquale Paoli in 1755 and was based on a traditional flag used previously. It portrays a Moor's head in black wearing a white bandana on a white background. It was built here by the r/Corsica reddit community.", "website": "", "subreddit": "/r/Corsica", "center": [1050.5, 1713.5], "path": [[1045.5, 1709.5], [1056.5, 1709.5], [1056.5, 1708.5], [1044.5, 1708.5], [1044.5, 1718.5], [1056.5, 1718.5], [1056.5, 1708.5], [1048.5, 1718.5], [1051.5, 1718.5], [1054.5, 1718.5], [1055.5, 1709.5]]}, {"id": "tx6bng", "submitted_by": "tuxtuxman", "name": "Flarpcord", "description": "Flarpcord is a small private Discord server with members known for going days without sleeping.", "website": "", "subreddit": "", "center": [645.5, 621.5], "path": [[642.5, 610.5], [642.5, 631.5], [648.5, 631.5], [648.5, 610.5]]}, -{"id": "tx6bkc", "submitted_by": "Oscar2504", "name": "GatoPoto", "description": "Logo of the most fantastic and cool discord group El Gato Poto VIP Club. People tried to destroy it but they fighted to death for the red kitty", "website": "https://www.instagram.com/gatopoto_/?hl=es", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx6bkb", "submitted_by": "Nat_Keely", "name": "Heart #1", "description": "A small heart, made by @Nat_Keely and @The_Sheep_ and other heart enthusiast wich had a long and steady friendly alliance to keep it alive aginst the flag next to it trying to expand the last day.", "website": "", "subreddit": "/r/placehearts", "center": [285.5, 1681.5], "path": [[285.5, 1685.5], [281.5, 1681.5], [281.5, 1680.5], [282.5, 1679.5], [283.5, 1678.5], [284.5, 1678.5], [285.5, 1679.5], [286.5, 1678.5], [287.5, 1678.5], [288.5, 1679.5], [289.5, 1680.5], [289.5, 1681.5], [285.5, 1685.5]]}, {"id": "tx6bgf", "submitted_by": "nahirblanco", "name": "Karchez\ud83d\udf32", "description": "Karchez is a Spanish streamer on Twitch. We see his logo, which its a crown because he likes to wear them, and his Minecraft skin. He is part of the KOI Squad as a content creator.", "website": "https://www.twitch.tv/karchez?lang=es", "subreddit": "/r/Karchezz", "center": [1780.5, 591.5], "path": [[1759.5, 605.5], [1759.5, 592.5], [1767.5, 580.5], [1768.5, 571.5], [1768.5, 569.5], [1774.5, 570.5], [1774.5, 578.5], [1800.5, 577.5], [1800.5, 605.5], [1798.5, 606.5], [1777.5, 606.5], [1769.5, 606.5], [1761.5, 606.5], [1759.5, 606.5]]}, {"id": "tx6b8b", "submitted_by": "porthos3", "name": "Texas Longhorns", "description": "Imagery representing Texas Longhorns sporting teams from the University of Texas at Austin", "website": "https://en.wikipedia.org/wiki/Texas_Longhorns", "subreddit": "/r/UTAustin", "center": [1273.5, 1854.5], "path": [[1256.5, 1844.5], [1256.5, 1864.5], [1291.5, 1865.5], [1290.5, 1844.5]]}, @@ -4595,10 +4260,9 @@ {"id": "tx6aw6", "submitted_by": "PM_ME_UR_FINGER_GUNS", "name": "Harvard", "description": "This pennant represents a college in Boston. Well, not in Boston, but nearby. No, not Tufts! Harvard.", "website": "", "subreddit": "/r/Harvard", "center": [363.5, 1544.5], "path": [[359.5, 1538.5], [359.5, 1550.5], [367.5, 1550.5], [367.5, 1538.5]]}, {"id": "tx6atc", "submitted_by": "MiiWii3dsfan912", "name": "7 GRAND DAD", "description": "The main meme featured on SiIvaGunner. The character is from a chinese bootleg of the NES game, The Flintstones: Rescue of Dino and Hoppy, titled 7 GRAND DAD. It is most often referenced through the insertion of the flintstones melody into SiIvaGunner\u2019s remixes.", "website": "https://siivagunner.fandom.com/wiki/7_GRAND_DAD?so=search", "subreddit": "/r/GiIvaSunner", "center": [75.5, 972.5], "path": [[70.5, 983.5], [80.5, 981.5], [85.5, 979.5], [84.5, 971.5], [83.5, 964.5], [73.5, 961.5], [65.5, 964.5], [67.5, 981.5]]}, {"id": "tx6aio", "submitted_by": "sammyisrandom", "name": "BEE!", "description": "A minecraft bee, with the caption BEE!", "website": "", "subreddit": "", "center": [1762.5, 716.5], "path": [[1757.5, 706.5], [1768.5, 706.5], [1769.5, 726.5], [1754.5, 723.5], [1754.5, 718.5], [1757.5, 717.5]]}, -{"id": "tx6adn", "submitted_by": "MrToball", "name": "Mukai Mei", "description": "Mukai es VTuber streamer en Twitch. La mejor comunidad :D", "website": "www.twitch.tv/mukaimei/", "subreddit": "", "center": [1075.5, 1969.5], "path": [[1058.5, 1966.5], [1058.5, 1972.5], [1091.5, 1972.5], [1091.5, 1966.5], [1059.5, 1966.5]]}, +{"id": "tx6adn", "submitted_by": "MrToball", "name": "Mukai Mei", "description": "Mukai es VTuber streamer en Twitch. La mejor comunidad :D", "website": "https://www.twitch.tv/mukaimei/", "subreddit": "", "center": [1075.5, 1969.5], "path": [[1058.5, 1966.5], [1058.5, 1972.5], [1091.5, 1972.5], [1091.5, 1966.5], [1059.5, 1966.5]]}, {"id": "tx6abc", "submitted_by": "PAVITAP", "name": "eldemente", "description": "El Demente logo.Currently streamer with a large community in Argentina", "website": "https://www.twitch.tv/eldemente", "subreddit": "", "center": [1252.5, 1392.5], "path": [[1261.5, 1381.5], [1253.5, 1373.5], [1246.5, 1367.5], [1236.5, 1366.5], [1231.5, 1367.5], [1228.5, 1371.5], [1225.5, 1375.5], [1224.5, 1378.5], [1227.5, 1383.5], [1235.5, 1393.5], [1243.5, 1402.5], [1251.5, 1410.5], [1257.5, 1415.5], [1263.5, 1417.5], [1269.5, 1417.5], [1272.5, 1416.5], [1277.5, 1413.5], [1278.5, 1408.5], [1279.5, 1403.5], [1275.5, 1396.5], [1262.5, 1382.5]]}, {"id": "tx6a2c", "submitted_by": "lunatonesyt", "name": "Pezz", "description": "Place created for the Twitch streamer Pezz", "website": "https://www.twitch.tv/pezz", "subreddit": "", "center": [1990.5, 1653.5], "path": [[1980.5, 1648.5], [1999.5, 1648.5], [1999.5, 1657.5], [1980.5, 1657.5], [1980.5, 1648.5]]}, -{"id": "tx69v2", "submitted_by": "boogaloogadoo", "name": "FAT", "description": "Footballers Against Terrorism", "website": "", "subreddit": "", "center": [397.5, 950.5], "path": [[391.5, 946.5], [403.5, 946.5], [403.5, 954.5], [391.5, 954.5]]}, {"id": "tx69si", "submitted_by": "__pacha__", "name": "Greek olive tree", "description": "Olive tree is the typic mediterranean tree. it's very frequent in Tunisia, Italy, and Greece, as you can see. nGreece is also well-known for its olive oil: Kalamata oil is the most famous one", "website": "", "subreddit": "", "center": [1488.5, 1961.5], "path": [[1481.5, 1969.5], [1482.5, 1966.5], [1478.5, 1963.5], [1480.5, 1954.5], [1490.5, 1952.5], [1494.5, 1953.5], [1497.5, 1957.5], [1497.5, 1962.5], [1496.5, 1965.5], [1493.5, 1966.5], [1489.5, 1968.5], [1489.5, 1970.5], [1484.5, 1970.5]]}, {"id": "tx69jn", "submitted_by": "SpicyPeachCream", "name": "Typical Colombian cumbia dress", "description": "Often used on typical dances, mostly cumbia", "website": "", "subreddit": "", "center": [127.5, 1335.5], "path": [[125.5, 1325.5], [124.5, 1324.5], [123.5, 1323.5], [122.5, 1324.5], [121.5, 1325.5], [122.5, 1326.5], [123.5, 1327.5], [123.5, 1328.5], [122.5, 1329.5], [122.5, 1330.5], [122.5, 1331.5], [121.5, 1331.5], [121.5, 1332.5], [121.5, 1334.5], [121.5, 1335.5], [120.5, 1336.5], [120.5, 1340.5], [121.5, 1340.5], [122.5, 1341.5], [123.5, 1342.5], [124.5, 1343.5], [123.5, 1344.5], [123.5, 1345.5], [126.5, 1345.5], [128.5, 1345.5], [129.5, 1344.5], [128.5, 1343.5], [128.5, 1342.5], [129.5, 1342.5], [130.5, 1341.5], [131.5, 1341.5], [132.5, 1340.5], [133.5, 1339.5], [133.5, 1338.5], [135.5, 1337.5], [136.5, 1336.5], [135.5, 1335.5], [134.5, 1334.5], [133.5, 1333.5], [132.5, 1332.5], [131.5, 1331.5], [130.5, 1330.5], [129.5, 1329.5], [130.5, 1329.5], [130.5, 1328.5], [129.5, 1327.5], [129.5, 1326.5], [128.5, 1325.5], [128.5, 1324.5], [127.5, 1324.5], [126.5, 1324.5], [125.5, 1324.5]]}, {"id": "tx69i7", "submitted_by": "xRavenCrisx", "name": "Horacio's Butterfly", "description": "A blue butterfly with the bisexual flag that represents Horacio P\u00e9rez, character from a GTAV Roleplay series played by Perxitaa, a spanish twitch streamer.", "website": "https://www.twitch.tv/perxitaa", "subreddit": "", "center": [1889.5, 752.5], "path": [[1874.5, 744.5], [1904.5, 744.5], [1904.5, 760.5], [1874.5, 760.5]]}, @@ -4607,8 +4271,7 @@ {"id": "tx69c9", "submitted_by": "lalagartijaplayera", "name": "Aroyitt", "description": "Aroyitt is one of the most famous spanish streamers. The image shows Aroyitt's pig named Jamon, two among us characters that represent Aroyitt and Alexby.n t", "website": "", "subreddit": "/r/Aroyitt", "center": [1986.5, 1416.5], "path": [[1975.5, 1402.5], [1975.5, 1429.5], [1998.5, 1429.5], [1998.5, 1403.5]]}, {"id": "tx69bx", "submitted_by": "CholitoVillegas", "name": "Rivers_gg", "description": "Mexican Twitch streamer icon named Rivers.", "website": "https://www.twitch.tv/rivers_gg", "subreddit": "", "center": [1796.5, 59.5], "path": [[1806.5, 67.5], [1806.5, 50.5], [1785.5, 50.5], [1785.5, 67.5], [1790.5, 67.5], [1806.5, 67.5]]}, {"id": "tx69a4", "submitted_by": "lennielennlenn", "name": "Volkacio", "description": "Representation of two characters from gta roleplay known as Volkov (vodka bottle) and Horacio (blue butterfly). The 17 calendar is a date to commemorate their reunion back in 2021 july 17th.", "website": "", "subreddit": "", "center": [1886.5, 746.5], "path": [[1874.5, 725.5], [1874.5, 760.5], [1904.5, 760.5], [1904.5, 745.5], [1882.5, 744.5], [1882.5, 732.5], [1891.5, 732.5], [1891.5, 725.5], [1874.5, 725.5], [1874.5, 760.5]]}, -{"id": "tx6985", "submitted_by": "link_dead", "name": "F-22 Air Superiority Fighter", "description": "The F-22 Air Superiority Fighter jet. The most advanced 5th generation fighter aircraft ever constructed. Easily capable of destroying any JAS-39 Gripens deployed to the northern regions of the canvas, from well beyond visual line of site.", "website": "", "subreddit": "/r/airforce", "center": [1815.5, 1823.5], "path": [[1826.5, 1834.5], [1826.5, 1837.5], [1822.5, 1835.5], [1817.5, 1839.5], [1806.5, 1825.5], [1796.5, 1821.5], [1781.5, 1813.5], [1779.5, 1809.5], [1790.5, 1809.5], [1798.5, 1813.5], [1805.5, 1807.5], [1814.5, 1815.5], [1819.5, 1811.5], [1822.5, 1823.5], [1827.5, 1823.5], [1859.5, 1837.5], [1859.5, 1838.5]]}, -{"id": "tx6966", "submitted_by": "MeteoFur", "name": "Faroeese Flag", "description": "The flag of the Faroe Islands which is a territory of Denmark located north of Britain.", "website": "", "subreddit": "/r/faroe", "center": [0.5, 0.5], "path": []}, +{"id": "tx6985", "submitted_by": "link_dead", "name": "F-22 air superiority fighter", "description": "The F-22 Air Superiority Fighter jet. The most advanced 5th generation fighter aircraft ever constructed.", "website": "https://en.wikipedia.org/wiki/Lockheed_Martin_F-22_Raptor", "subreddit": "/r/AmericanFlagInPlace", "center": [1815.5, 1823.5], "path": [[1826.5, 1834.5], [1826.5, 1837.5], [1822.5, 1835.5], [1817.5, 1839.5], [1806.5, 1825.5], [1796.5, 1821.5], [1781.5, 1813.5], [1779.5, 1809.5], [1790.5, 1809.5], [1798.5, 1813.5], [1805.5, 1807.5], [1814.5, 1815.5], [1819.5, 1811.5], [1822.5, 1823.5], [1827.5, 1823.5], [1859.5, 1837.5], [1859.5, 1838.5]]}, {"id": "tx693p", "submitted_by": "sketchyswirl", "name": "Dream Face", "description": "The face of minecrafter Dream's Minecraft skin, with one erroneous white pixeln", "website": "https://www.youtube.com/user/DreamTraps", "subreddit": "/r/DreamWasTaken", "center": [187.5, 949.5], "path": [[183.5, 945.5], [190.5, 945.5], [190.5, 952.5], [183.5, 952.5]]}, {"id": "tx68z3", "submitted_by": "lunatonesyt", "name": "UwU Cafe", "description": "The UwU Cafe is a buisness run by Ash Ketchup on GTA NoPixel", "website": "https://nopixel.fandom.com/wiki/UwU_Caf%C3%A9", "subreddit": "", "center": [1945.5, 1653.5], "path": [[1908.5, 1649.5], [1980.5, 1648.5], [1980.5, 1657.5], [1909.5, 1657.5], [1908.5, 1649.5]]}, {"id": "tx68ts", "submitted_by": "Yrense", "name": "Minecraft commands", "description": "Sbu-comunity of the adventure-sandbox game Minecraft, focussing on the more technical side of the game (including commands, command blocks, structure blocks, datapacks and more)", "website": "", "subreddit": "/r/MinecraftCommands", "center": [337.5, 1590.5], "path": [[322.5, 1580.5], [352.5, 1580.5], [352.5, 1599.5], [322.5, 1599.5], [322.5, 1580.5]]}, @@ -4620,7 +4283,6 @@ {"id": "tx684t", "submitted_by": "cgarros", "name": "Flag of Alberta", "description": "Flag of the western Canadian province of Alberta which became a province in 1905. It is Canada's 4th largest province and is home to six UNESCO world heritage sites.", "website": "", "subreddit": "/r/alberta", "center": [183.5, 475.5], "path": [[175.5, 470.5], [175.5, 479.5], [191.5, 480.5], [191.5, 471.5], [175.5, 471.5]]}, {"id": "tx684s", "submitted_by": "Spekulatiu5", "name": "Onigiri", "description": "An onigiri (Japanese rice ball), which is a symbol for Hololive-affiliated VTuber Nekomata Okayu", "website": "https://en.hololive.tv/portfolio/items/nekomata-okayu", "subreddit": "/r/Okayu", "center": [1398.5, 952.5], "path": [[1397.5, 948.5], [1394.5, 954.5], [1403.5, 955.5], [1401.5, 951.5], [1398.5, 948.5]]}, {"id": "tx683c", "submitted_by": "CisproEquis", "name": "Flag of San Vicente", "description": "The flag of San Vicente del Raspeig, a small town in the province of Alicante.", "website": "https://www.raspeig.es/", "subreddit": "", "center": [896.5, 1206.5], "path": [[894.5, 1202.5], [898.5, 1202.5], [898.5, 1209.5], [894.5, 1209.5], [894.5, 1202.5]]}, -{"id": "tx6805", "submitted_by": "Necessary-Water8704", "name": "Heart Flag Italy or Mexico", "description": "The heart of the fight between Italy and Mexico.", "website": "https://www.twitch.tv/domcasse", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx67uf", "submitted_by": "dreipoloski", "name": "Slut Shirt", "description": "The character Jill in the Game Va11 Hall-A has a shirt with this exact Logo on it. Evident in the scenes where her room is displayed.", "website": "", "subreddit": "", "center": [1773.5, 781.5], "path": [[1766.5, 779.5], [1780.5, 779.5], [1780.5, 783.5], [1766.5, 783.5]]}, {"id": "tx67sf", "submitted_by": "Soybip", "name": "@Jinxdesuu", "description": "Heroic site for @Jinxdesuu Streamer from her community.", "website": "https://www.twitch.tv/jinxdesuu", "subreddit": "", "center": [29.5, 1025.5], "path": [[25.5, 1021.5], [33.5, 1021.5], [33.5, 1028.5], [25.5, 1028.5]]}, {"id": "tx67n4", "submitted_by": "sketchyswirl", "name": "Number 1 Potato Sign", "description": "The sign for the #1 Rank in potatoes harvested on the multiplayer Minecraft server Hypixel, a record fought for between two Minecraft players, Technoblade and Im_A_Squid_Kid", "website": "https://www.youtube.com/watch?v=5qjnDd1rsII", "subreddit": "", "center": [198.5, 897.5], "path": [[182.5, 891.5], [214.5, 891.5], [214.5, 902.5], [182.5, 902.5]]}, @@ -4636,11 +4298,11 @@ {"id": "tx66x4", "submitted_by": "Natysapoconcho", "name": "Zorman", "description": "Logo del streamer de twitch Zormanworld", "website": "", "subreddit": "", "center": [1822.5, 966.5], "path": [[1817.5, 958.5], [1814.5, 953.5], [1830.5, 980.5], [1814.5, 978.5], [1813.5, 953.5], [1829.5, 953.5], [1830.5, 981.5]]}, {"id": "tx66og", "submitted_by": "MeteoFur", "name": "Furry Snoo", "description": "The reddit snoo in the form of a screaming furry. It was built by Furry_irl and was destroyed and rebuilt 8 times.", "website": "", "subreddit": "/r/furry_irl", "center": [912.5, 92.5], "path": [[894.5, 114.5], [894.5, 69.5], [930.5, 69.5], [930.5, 114.5]]}, {"id": "tx66o6", "submitted_by": "LeftEyeHole", "name": "Game Pal", "description": "A Gameboy featuring a non-binary flag heart over a trans flag on its screen.", "website": "", "subreddit": "/r/transplace", "center": [646.5, 444.5], "path": [[641.5, 451.5], [642.5, 451.5], [638.5, 455.5], [642.5, 458.5], [654.5, 450.5], [654.5, 433.5], [638.5, 433.5], [637.5, 450.5]]}, -{"id": "tx66fb", "submitted_by": "AlexUnderscore", "name": "Football Against Terrorism", "description": "A small discord server of friends who love football and hate terrorism", "website": "", "subreddit": "", "center": [397.5, 950.5], "path": [[391.5, 946.5], [391.5, 954.5], [402.5, 954.5], [402.5, 946.5], [392.5, 946.5]]}, +{"id": "tx66fb", "submitted_by": "AlexUnderscore", "name": "Footballers Against Terrorism", "description": "I never eat, I always FAT", "website": "", "subreddit": "", "center": [397.5, 950.5], "path": [[391.5, 946.5], [391.5, 954.5], [402.5, 954.5], [402.5, 946.5], [392.5, 946.5]]}, {"id": "tx66c6", "submitted_by": "Scharnvirk", "name": "Ular", "description": "Character from etherane's Mr.Rainer's Solve-it Service", "website": "https://etherane.itch.io/", "subreddit": "", "center": [828.5, 1798.5], "path": [[823.5, 1788.5], [833.5, 1788.5], [833.5, 1807.5], [823.5, 1807.5], [823.5, 1788.5]]}, {"id": "tx6692", "submitted_by": "Aserratoo", "name": "Rivers", "description": "The Best Regia Streamer on that moment Long live the Pollitos de colores And TQM All worldnSaludos Aserratoo <3", "website": "https://www.twitch.tv/rivers_gg", "subreddit": "/r/rivers_gg", "center": [1796.5, 59.5], "path": [[1784.5, 50.5], [1807.5, 50.5], [1807.5, 67.5], [1784.5, 67.5], [1784.5, 50.5]]}, {"id": "tx667z", "submitted_by": "Cyclopse215", "name": "Violet Evergarden", "description": "A chibi version of the anime character Violet Evergarden, a letter and her emerald brooch.", "website": "", "subreddit": "/r/VioletEvergarden", "center": [583.5, 1512.5], "path": [[574.5, 1502.5], [591.5, 1502.5], [591.5, 1521.5], [574.5, 1521.5]]}, -{"id": "tx665n", "submitted_by": "HorsePie1", "name": "The blue man", "description": "The mascot for the blue man community, led by the Youtuber Mattchu", "website": "youtube.com/mattchu", "subreddit": "/r/Mattchu", "center": [450.5, 1366.5], "path": [[446.5, 1361.5], [455.5, 1361.5], [456.5, 1362.5], [456.5, 1365.5], [455.5, 1366.5], [454.5, 1367.5], [453.5, 1372.5], [448.5, 1372.5], [448.5, 1369.5], [447.5, 1368.5], [445.5, 1368.5], [444.5, 1367.5], [444.5, 1363.5], [445.5, 1362.5], [446.5, 1361.5], [446.5, 1361.5]]}, +{"id": "tx665n", "submitted_by": "HorsePie1", "name": "The blue man", "description": "The mascot for the blue man community, led by the Youtuber Mattchu", "website": "https://youtube.com/mattchu", "subreddit": "/r/Mattchu", "center": [450.5, 1366.5], "path": [[446.5, 1361.5], [455.5, 1361.5], [456.5, 1362.5], [456.5, 1365.5], [455.5, 1366.5], [454.5, 1367.5], [453.5, 1372.5], [448.5, 1372.5], [448.5, 1369.5], [447.5, 1368.5], [445.5, 1368.5], [444.5, 1367.5], [444.5, 1363.5], [445.5, 1362.5], [446.5, 1361.5], [446.5, 1361.5]]}, {"id": "tx6618", "submitted_by": "naseweis520", "name": "Lang & Schwarz", "description": "Lang & Schwarz, a company which provides financial services that is often mentioned in /r/mauerstrassenwetten .", "website": "", "subreddit": "", "center": [991.5, 1147.5], "path": [[987.5, 1143.5], [995.5, 1143.5], [996.5, 1144.5], [996.5, 1150.5], [997.5, 1151.5], [997.5, 1152.5], [994.5, 1152.5], [993.5, 1151.5], [987.5, 1151.5], [986.5, 1150.5], [986.5, 1144.5]]}, {"id": "tx65x6", "submitted_by": "S3b4Sr", "name": "Bandeja Paisa", "description": "The Bandeja Paisa is a typical meal popular in Colombian cuisine, especially of the Antioquia department and the Paisa Region", "website": "", "subreddit": "", "center": [272.5, 1328.5], "path": [[265.5, 1315.5], [256.5, 1320.5], [252.5, 1325.5], [255.5, 1328.5], [254.5, 1332.5], [261.5, 1338.5], [282.5, 1339.5], [283.5, 1338.5], [285.5, 1337.5], [288.5, 1336.5], [290.5, 1333.5], [292.5, 1329.5], [290.5, 1325.5], [284.5, 1320.5], [274.5, 1318.5], [274.5, 1317.5], [266.5, 1316.5], [266.5, 1315.5]]}, {"id": "tx65wv", "submitted_by": "Rakovick", "name": "Salvadoran Flag", "description": "El Salvadors Flag created and held by Salvadoran Community on Reedit.", "website": "https://en.wikipedia.org/wiki/El_Salvador", "subreddit": "/r/ElSalvador", "center": [1119.5, 1392.5], "path": [[1082.5, 1369.5], [1156.5, 1370.5], [1154.5, 1415.5], [1083.5, 1414.5], [1082.5, 1369.5]]}, @@ -4658,7 +4320,7 @@ {"id": "tx6531", "submitted_by": "AlliePingu", "name": "Siro Chibi", "description": "A chibi of the Japanese Vtuber Dennou Shojo Siro.", "website": "https://www.youtube.com/channel/UCLhUvJ_wO9hOvv_yYENu4fQ", "subreddit": "/r/VirtualYoutubers", "center": [1469.5, 1069.5], "path": [[1466.5, 1064.5], [1465.5, 1070.5], [1465.5, 1074.5], [1473.5, 1074.5], [1473.5, 1066.5], [1470.5, 1064.5]]}, {"id": "tx6521", "submitted_by": "Maiamai44", "name": "Symbol from the Sapphic Flag", "description": "A pixelated version of the symbol from the sapphic pride flag, meant to represent lesbianism.", "website": "https://lgbtqia.fandom.com/wiki/Sapphic", "subreddit": "", "center": [761.5, 453.5], "path": [[754.5, 449.5], [768.5, 449.5], [768.5, 456.5], [754.5, 456.5]]}, {"id": "tx6516", "submitted_by": "i_have_scurvy", "name": "Smol Ame", "description": "Character from game Smol Ame", "website": "https://moocow-games.itch.io/smol-ame", "subreddit": "/r/Hololive", "center": [1339.5, 939.5], "path": [[1337.5, 929.5], [1341.5, 929.5], [1334.5, 933.5], [1334.5, 939.5], [1335.5, 939.5], [1335.5, 944.5], [1336.5, 944.5], [1336.5, 946.5], [1337.5, 948.5], [1341.5, 948.5], [1343.5, 944.5], [1345.5, 938.5], [1344.5, 933.5], [1341.5, 929.5]]}, -{"id": "tx64zv", "submitted_by": "NiahShadows", "name": "Zorman", "description": "ZormanVideos is a twitch streamer and youtube spanish legend, his logo was made by his community.nnZormanvideos es un streamer de twitch y una leyenda de youtube espa\u00f1ol, su logo fue hecho por su comunidad.", "website": "[twitch.tv/zormanworld](https://twitch.tv/zormanworld)", "subreddit": "/r/zorman", "center": [1822.5, 966.5], "path": [[1813.5, 952.5], [1830.5, 952.5], [1830.5, 979.5], [1813.5, 979.5]]}, +{"id": "tx64zv", "submitted_by": "NiahShadows", "name": "Zorman", "description": "ZormanVideos is a twitch streamer and youtube spanish legend, his logo was made by his community.nnZormanvideos es un streamer de twitch y una leyenda de youtube espa\u00f1ol, su logo fue hecho por su comunidad.", "website": "https://twitch.tv/zormanworld", "subreddit": "/r/zorman", "center": [1822.5, 966.5], "path": [[1813.5, 952.5], [1830.5, 952.5], [1830.5, 979.5], [1813.5, 979.5]]}, {"id": "tx64zh", "submitted_by": "2magooba", "name": "Turnip Boy", "description": "Turnip boy from the indie game Turnip Boy Commits Tax Evasion, organized by the Snoozy Kazoo discord server.", "website": "https://snoozykazoo.com/", "subreddit": "/r/snoozykazoo", "center": [537.5, 7.5], "path": [[529.5, 13.5], [529.5, 11.5], [530.5, 10.5], [530.5, 9.5], [531.5, 8.5], [532.5, 7.5], [531.5, 6.5], [529.5, 6.5], [528.5, 5.5], [530.5, 2.5], [532.5, 2.5], [533.5, 1.5], [534.5, 0.5], [536.5, 0.5], [540.5, 0.5], [542.5, 1.5], [545.5, 1.5], [549.5, 13.5], [534.5, 14.5], [528.5, 14.5], [528.5, 1.5], [532.5, 1.5], [532.5, 1.5]]}, {"id": "tx64yk", "submitted_by": "macarroncit0", "name": "FapParaMoarr", "description": "He is a cool mexican streamer and mod.nnHe tried to leave his small footprint on r/place and although it disappeared more than one time, he and his community succeeded to make it to the end. <3", "website": "https://www.twitch.tv/fapparamoarr", "subreddit": "", "center": [1506.5, 147.5], "path": [[1494.5, 132.5], [1518.5, 132.5], [1518.5, 134.5], [1520.5, 135.5], [1520.5, 139.5], [1519.5, 140.5], [1519.5, 143.5], [1519.5, 143.5], [1519.5, 147.5], [1518.5, 148.5], [1518.5, 163.5], [1494.5, 163.5], [1494.5, 132.5]]}, {"id": "tx64vy", "submitted_by": "zeK0II", "name": "Line For Unreasonably Small Community Triptic", "description": "An undisputed forgoten line, divided in 3px canvas for unreasonably small community. A place to create a small triptic. A place to have the opportunity to be part of the r/place, having your pixel under control, and enjoy a funny Colored Trio Rotation.", "website": "", "subreddit": "", "center": [941.5, 420.5], "path": [[922.5, 419.5], [960.5, 419.5], [960.5, 421.5], [922.5, 421.5]]}, @@ -4669,18 +4331,11 @@ {"id": "tx64np", "submitted_by": "Misicks0349", "name": "OpenSUSE", "description": "A small depiction of OpenSUSE's green chameleon mascot.", "website": "https://www.opensuse.org/", "subreddit": "/r/openSUSE", "center": [26.5, 721.5], "path": [[24.5, 717.5], [28.5, 717.5], [28.5, 718.5], [30.5, 718.5], [31.5, 719.5], [31.5, 721.5], [30.5, 722.5], [30.5, 724.5], [23.5, 724.5], [23.5, 723.5], [22.5, 723.5], [22.5, 719.5], [24.5, 719.5]]}, {"id": "tx64kz", "submitted_by": "Living_Beyond_8047", "name": "Queraft", "description": "German streamer who sympathizes with the Peruvian public living in the capital of his country", "website": "https://trovo.live/ANTONIcra", "subreddit": "", "center": [1611.5, 1654.5], "path": [[1607.5, 1650.5], [1614.5, 1650.5], [1614.5, 1657.5], [1607.5, 1657.5]]}, {"id": "tx64hs", "submitted_by": "KrishenKTulipe", "name": "ESAIP", "description": "ESAIP (\u00c9cole sup\u00e9rieure angevine d'informatique et de productique) is a French computer science engineering and environnement school.", "website": "https://www.esaip.org/", "subreddit": "", "center": [1763.5, 422.5], "path": [[1758.5, 417.5], [1767.5, 417.5], [1767.5, 426.5], [1758.5, 426.5], [1758.5, 417.5]]}, -{"id": "tx64cf", "submitted_by": "Alert_Vermicelli_624", "name": "ElDemente", "description": "Argentinian streamer and youtuber.", "website": "https://www.twitch.tv/eldemente", "subreddit": "", "center": [1252.5, 1392.5], "path": [[1224.5, 1379.5], [1228.5, 1370.5], [1232.5, 1367.5], [1239.5, 1367.5], [1248.5, 1367.5], [1259.5, 1380.5], [1271.5, 1392.5], [1277.5, 1400.5], [1278.5, 1409.5], [1274.5, 1415.5], [1267.5, 1418.5], [1261.5, 1417.5], [1255.5, 1414.5], [1237.5, 1395.5]]}, -{"id": "tx64ae", "submitted_by": "Cheesy_beanie", "name": "Rocher Perc\u00e9", "description": "The Rocher Perc\u00e9 is a famous rock formation with a hole in it and is situated at the tip of Gasp\u00e9sie region in Gasp\u00e9 city, Qc, CAN.", "website": "", "subreddit": "/r/Quebec", "center": [0.5, 0.5], "path": []}, {"id": "tx647h", "submitted_by": "GreyfoXMP", "name": "Mars Base", "description": "The Mars Base is a discord community who decided to put something small onto r/place with the intention of appearing on the time-lapse. Somehow the sign survived until it was claimed by the white void at the end. The Non-Binary flag was added to the design later on into day 2.", "website": "", "subreddit": "", "center": [1639.5, 199.5], "path": [[1633.5, 195.5], [1633.5, 203.5], [1645.5, 203.5], [1645.5, 195.5]]}, -{"id": "tx645h", "submitted_by": "ExtentOk5024", "name": "Oui", "description": "A simple OUI (meaning Yes in french). Oui is a little community based around Minecraft. This also refers to a sentence in our community : I do not thank Hale. (The most famous person of the community).", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "tx642w", "submitted_by": "domo-drama", "name": "Frank", "description": "The teddy bear Domo gave as a present to his girlfriend Alizka", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx63z1", "submitted_by": "lunatonesyt", "name": "ESV", "description": "A block representing the East Side Vagos, a renowned gang on GTA. Created by the NoPixel community", "website": "https://nopixel.fandom.com/wiki/Vagos", "subreddit": "", "center": [1348.5, 786.5], "path": [[1334.5, 778.5], [1362.5, 778.5], [1362.5, 794.5], [1334.5, 794.5], [1334.5, 778.5]]}, -{"id": "tx63wb", "submitted_by": "fightsthumbs", "name": "L. L. Zamenhof", "description": "Also known as Dr. Esperanto, was a polish ophthalmologist who created the Esperanto Language, the most widely used constructed international auxiliary language.n", "website": "", "subreddit": "/r/Esperanto", "center": [0.5, 0.5], "path": []}, -{"id": "tx63rn", "submitted_by": "Sourscorpio2", "name": "Nct", "description": "NCT is a South Korean boy band formed by SM Entertainment and introduced in January 2016. The group consists of 23 members as of April 2021, ranging in age from late teens to mid-twenties and divided into four different sub-units", "website": "", "subreddit": "/r/NCT", "center": [1615.5, 238.5], "path": [[1583.5, 257.5], [1680.5, 256.5], [1589.5, 205.5], [1582.5, 202.5]]}, {"id": "tx63qc", "submitted_by": "CandZola", "name": "DAY6", "description": "DAY6 has no bad songs... A K-band with one of the most all-rounder members in the industry. They can do it all. From pop, rock, ballads and almost everything else you can think of. Once you listen to one of their songs, you wont be able to forget it.", "website": "", "subreddit": "", "center": [1616.5, 217.5], "path": [[1603.5, 212.5], [1626.5, 212.5], [1626.5, 217.5], [1628.5, 217.5], [1628.5, 224.5], [1622.5, 224.5], [1622.5, 220.5], [1603.5, 220.5], [1603.5, 213.5]]}, {"id": "tx63oo", "submitted_by": "Elios4Freedom", "name": "Pisa Baptistery", "description": "The Pisa Baptistery of St. John (Italian: Battistero di San Giovanni) is a Roman Catholic ecclesiastical building in Pisa, Italy. Construction started in 1152 to replace an older baptistery, and when it was completed in 1363, it became the second building, in chronological order, in the Piazza dei Miracoli, near the Duomo di Pisa and the cathedral's free-standing campanile, the famous Leaning Tower of Pisa.", "website": "https://en.m.wikipedia.org/wiki/Pisa_Baptistery", "subreddit": "/r/italy", "center": [793.5, 1053.5], "path": [[796.5, 1034.5], [797.5, 1031.5], [801.5, 1036.5], [800.5, 1039.5], [804.5, 1045.5], [804.5, 1070.5], [783.5, 1071.5], [782.5, 1035.5]]}, -{"id": "tx63np", "submitted_by": "OutrageousSauce", "name": "Mac Miller (92 Til' infinity)", "description": "Ttribute to Mac Miller", "website": "", "subreddit": "/r/MacMiller", "center": [0.5, 0.5], "path": []}, -{"id": "tx63kh", "submitted_by": "link_dead", "name": "Site of the infamous 2b butt censorship", "description": "During an incursion in to the French controlled corner. North American Twitch streamers XQC and Mizkif deployed their communities to construct a gigantic tribute to the glorious android booty of 2b. During the construction of this effigy Reddit Admins censored the image using gigantic black box. Not deterred the community again built the effigy to once again be censored by Reddit Admins. The was the largest abuse of power by Reddit Admins caught live on stream in front of millions of viewers. During construction many members of both North American communities received 15 year bans on placing pixels. Up to 20 percent of Mizkif's 80,000 live viewers were banned during this attack.", "website": "", "subreddit": "", "center": [130.5, 1766.5], "path": [[185.5, 1928.5], [183.5, 1602.5], [76.5, 1600.5], [75.5, 1930.5]]}, +{"id": "tx63kh", "submitted_by": "link_dead", "name": "2B butt censorship", "description": "During an incursion into the French-controlled corner. North American Twitch streamers xQc and Mizkif deployed their communities to construct a gigantic tribute to the android booty of 2B from Nier: Automata. During the construction of this effigy, Reddit admins censored the image using a gigantic black box. Not deterred, the community again built the effigy to once again be censored by Reddit admins. During construction many members of both North American communities received 15-year bans on placing pixels. Up to 20 percent of Mizkif's 80,000 live viewers were banned during this attack.", "website": "https://en.wikipedia.org/wiki/2B_(Nier:_Automata)", "subreddit": "", "center": [130.5, 1766.5], "path": [[185.5, 1928.5], [183.5, 1602.5], [76.5, 1600.5], [75.5, 1930.5]]}, {"id": "tx63je", "submitted_by": "p_a_b", "name": "Quebec Nordiques", "description": "An old professional ice hockey team based in Quebec City", "website": "https://en.wikipedia.org/wiki/Quebec_Nordiques", "subreddit": "/r/Nordiques", "center": [953.5, 1012.5], "path": [[937.5, 1000.5], [968.5, 1000.5], [968.5, 1024.5], [937.5, 1024.5], [937.5, 1000.5], [968.5, 1000.5]]}, {"id": "tx63fj", "submitted_by": "pvlsars", "name": "Baby Chickens", "description": "Small but important to someone. My wonderful husband doodled these on day 2, and I kept them alive till the end. There were once 5-7 chicks and a mother chicken someone drew alongside them", "website": "", "subreddit": "", "center": [1750.5, 601.5], "path": [[1742.5, 596.5], [1746.5, 594.5], [1751.5, 599.5], [1753.5, 600.5], [1754.5, 599.5], [1758.5, 594.5], [1758.5, 605.5], [1744.5, 605.5], [1742.5, 602.5], [1743.5, 595.5]]}, {"id": "tx63cn", "submitted_by": "DonkFest1", "name": "Xuzhou chained woman incident", "description": "Xuzhou eight-child mother incident, is a case of human trafficking, severe mistreatment, and subsequent events that came to light in late January 2022 in Feng County, Xuzhou, Jiangsu, People's Republic of China. The video of a mentally disturbed and imprisoned woman who was chained to a wall and who gave birth to eight children went viral on China's internet and sparked a huge public outcry.", "website": "https://en.wikipedia.org/wiki/Xuzhou_chained_woman_incident", "subreddit": "/r/cltv", "center": [921.5, 141.5], "path": [[894.5, 116.5], [948.5, 116.5], [948.5, 165.5], [894.5, 165.5]]}, @@ -4692,14 +4347,13 @@ {"id": "tx632b", "submitted_by": "ADIOP55550", "name": "r/MinecraftCommands", "description": "r/MinecraftCommands artworknTheir description:nA place for all things about commands and command blocks in vanilla Minecraft; to share, to question, to discuss, and more!", "website": "https://discord.com/invite/9wNcfsH", "subreddit": "/r/MinecraftCommands", "center": [337.5, 1589.5], "path": [[322.5, 1579.5], [352.5, 1579.5], [352.5, 1600.5], [324.5, 1600.5], [324.5, 1596.5], [322.5, 1593.5]]}, {"id": "tx6318", "submitted_by": "DrDariusWhite", "name": "Ark: Survival Evolved Logo", "description": "The logo for the hit game Ark: Survival Evolved", "website": "", "subreddit": "/r/ARK", "center": [1893.5, 1239.5], "path": [[1884.5, 1228.5], [1902.5, 1228.5], [1902.5, 1249.5], [1884.5, 1249.5]]}, {"id": "tx62wq", "submitted_by": "ItsDeKrep", "name": "Emiru's Kirby & Bun", "description": "WICKED Kirby & emiruPEEPO emote from Emiru's channel. Emiru is a twitch streamer who lies constantly about being from a fictional place called KANSAS and actually thinks Valkyrae is coming to cosplay with her.", "website": "https://www.twitch.tv/emiru", "subreddit": "/r/emiru", "center": [1281.5, 477.5], "path": [[1259.5, 467.5], [1259.5, 487.5], [1304.5, 487.5], [1305.5, 474.5], [1299.5, 474.5], [1299.5, 467.5], [1259.5, 467.5]]}, -{"id": "tx62rz", "submitted_by": "Yvouuu", "name": "S.P.Q.R. - Roman Republic", "description": "SPQR is an abbreviation for Sen\u0101tus Populusque R\u014dm\u0101nus -> The Senate and People of Rome.nTt's an emblematic abbreviated phrase referring to the government of the ancient Roman Republicn", "website": "https://en.wikipedia.org/wiki/SPQR", "subreddit": "/r/SPQr", "center": [1628.5, 493.5], "path": [[1605.5, 486.5], [1605.5, 499.5], [1650.5, 499.5], [1650.5, 486.5], [1605.5, 486.5]]}, {"id": "tx62o9", "submitted_by": "sankel", "name": "HQ Headquarters", "description": "Group of friends from The Netherlands. Feel free to join!", "website": "", "subreddit": "/r/hqcrew", "center": [1470.5, 210.5], "path": [[1459.5, 206.5], [1481.5, 206.5], [1481.5, 214.5], [1459.5, 214.5]]}, {"id": "tx6251", "submitted_by": "Lost_Cucumber", "name": "Lethal League Blaze", "description": "Lethal League Blaze is an intense, high speed ball game, with unique characters, out of sight sounds and none of that weak shit.nThe goal is to hit your opponent with an anti-gravity ball using strikes, bunts, parries, throws and special abilities. The balls speeds up on every hit, up to reality-breaking velocities.", "website": "http://lethalleagueblaze.com/", "subreddit": "/r/LethalLeague", "center": [1040.5, 406.5], "path": [[1032.5, 396.5], [1034.5, 413.5], [1049.5, 413.5], [1049.5, 402.5]]}, {"id": "tx622y", "submitted_by": "lunatonesyt", "name": "AnthonyZ", "description": "Logo for Twitch streamer AnthonyZ", "website": "https://www.twitch.tv/anthonyz", "subreddit": "", "center": [1377.5, 772.5], "path": [[1363.5, 766.5], [1391.5, 766.5], [1391.5, 778.5], [1363.5, 778.5], [1363.5, 778.5], [1363.5, 766.5]]}, {"id": "tx620r", "submitted_by": "ostensacken", "name": "Nelson Mandela", "description": "Nelson Mandela was the first Black president of South Africa, and a key leader of the anti-apartheid movement.", "website": "", "subreddit": "/r/southafrica", "center": [750.5, 1035.5], "path": [[721.5, 1064.5], [724.5, 1063.5], [726.5, 1062.5], [727.5, 1061.5], [729.5, 1060.5], [730.5, 1059.5], [731.5, 1057.5], [732.5, 1055.5], [733.5, 1053.5], [733.5, 1051.5], [732.5, 1049.5], [732.5, 1044.5], [731.5, 1043.5], [731.5, 1042.5], [730.5, 1042.5], [730.5, 1041.5], [729.5, 1041.5], [729.5, 1032.5], [729.5, 1031.5], [728.5, 1031.5], [728.5, 1027.5], [729.5, 1028.5], [729.5, 1024.5], [730.5, 1024.5], [730.5, 1021.5], [731.5, 1021.5], [731.5, 1019.5], [731.5, 1019.5], [731.5, 1019.5], [731.5, 1018.5], [732.5, 1018.5], [732.5, 1017.5], [733.5, 1017.5], [733.5, 1013.5], [734.5, 1013.5], [734.5, 1012.5], [735.5, 1012.5], [735.5, 1009.5], [735.5, 1009.5], [736.5, 1009.5], [736.5, 1008.5], [737.5, 1008.5], [738.5, 1006.5], [738.5, 1007.5], [742.5, 1006.5], [742.5, 1005.5], [743.5, 1005.5], [746.5, 1004.5], [747.5, 1004.5], [747.5, 1003.5], [746.5, 1003.5], [757.5, 1003.5], [757.5, 1004.5], [759.5, 1004.5], [759.5, 1005.5], [762.5, 1005.5], [762.5, 1006.5], [763.5, 1006.5], [763.5, 1007.5], [765.5, 1007.5], [765.5, 1008.5], [766.5, 1008.5], [766.5, 1009.5], [769.5, 1009.5], [768.5, 1010.5], [770.5, 1010.5], [770.5, 1012.5], [771.5, 1013.5], [772.5, 1013.5], [772.5, 1014.5], [773.5, 1014.5], [773.5, 1016.5], [774.5, 1016.5], [774.5, 1022.5], [775.5, 1030.5], [774.5, 1031.5], [774.5, 1032.5], [773.5, 1033.5], [773.5, 1037.5], [772.5, 1037.5], [772.5, 1044.5], [769.5, 1046.5], [766.5, 1046.5], [766.5, 1048.5], [764.5, 1049.5], [763.5, 1050.5], [763.5, 1052.5], [762.5, 1052.5], [762.5, 1059.5], [763.5, 1059.5], [763.5, 1062.5], [764.5, 1062.5], [764.5, 1063.5], [765.5, 1063.5], [765.5, 1064.5], [769.5, 1064.5], [769.5, 1065.5], [771.5, 1065.5], [773.5, 1066.5], [721.5, 1066.5]]}, {"id": "tx61ut", "submitted_by": "GNamimates18", "name": "Figura", "description": "Figura is a Minecraft mod that lets you create dynamic custom avatars.", "website": "https://modrinth.com/mod/figura", "subreddit": "/r/Figura", "center": [756.5, 950.5], "path": [[739.5, 954.5], [739.5, 947.5], [742.5, 944.5], [743.5, 944.5], [749.5, 944.5], [749.5, 947.5], [775.5, 947.5], [775.5, 954.5]]}, {"id": "tx61tl", "submitted_by": "Excellent-Stomach296", "name": "UCLM Clown", "description": "This Clown was created by u/dvan56, in an offensive attacking the high-school logo of the UCLM in Spain, winning this position in the last hours of the canvas", "website": "", "subreddit": "", "center": [1603.5, 318.5], "path": [[1598.5, 314.5], [1598.5, 322.5], [1608.5, 322.5], [1608.5, 314.5]]}, -{"id": "tx61p3", "submitted_by": "davianho", "name": "SlaixGG", "description": "A rat, an eel, a command (!AAL) and the initials of famous streamer SlaixGG. The eel and the rat are commonly used animals in the stream of SlaixGG", "website": "twitch.tv/slaixgg", "subreddit": "", "center": [445.5, 1185.5], "path": [[439.5, 1172.5], [462.5, 1172.5], [462.5, 1178.5], [451.5, 1178.5], [451.5, 1188.5], [447.5, 1188.5], [441.5, 1200.5], [445.5, 1206.5], [438.5, 1214.5], [438.5, 1172.5], [440.5, 1172.5], [445.5, 1172.5]]}, +{"id": "tx61p3", "submitted_by": "davianho", "name": "SlaixGG", "description": "A rat, an eel, a command (!AAL) and the initials of famous streamer SlaixGG. The eel and the rat are commonly used animals in the stream of SlaixGG", "website": "https://twitch.tv/slaixgg", "subreddit": "", "center": [445.5, 1185.5], "path": [[461.5, 1172.5], [461.5, 1178.5], [451.5, 1178.5], [451.5, 1188.5], [448.5, 1188.5], [442.5, 1199.5], [445.5, 1202.5], [445.5, 1208.5], [441.5, 1208.5], [441.5, 1212.5], [439.5, 1212.5], [439.5, 1172.5]]}, {"id": "tx61kn", "submitted_by": "__pacha__", "name": "Greek village", "description": "This is a typical coastal greek village, with blue and white walls, like in Santorini.nThe crosses on top of the church and above the houses represent Greece's main religion, the Orthodox religion", "website": "https://en.wikipedia.org/wiki/Santorini", "subreddit": "", "center": [1426.5, 1955.5], "path": [[1400.5, 1969.5], [1453.5, 1970.5], [1448.5, 1950.5], [1443.5, 1942.5], [1435.5, 1942.5], [1428.5, 1934.5], [1419.5, 1946.5], [1413.5, 1932.5], [1405.5, 1949.5], [1400.5, 1960.5], [1400.5, 1969.5]]}, {"id": "tx61fj", "submitted_by": "PM_ME_UR_FINGER_GUNS", "name": "Enough Sanders Spam", "description": "The ESS of BLESS is highlighted in red, representing the Enough Sanders Spam subreddit. Formed during the 2016 Democratic primary the sub is devoted to complaining about left-populism from a generally left-wing or left-leaning perspective.", "website": "", "subreddit": "/r/Enough_Sanders_Spam", "center": [823.5, 134.5], "path": [[800.5, 137.5], [800.5, 130.5], [846.5, 130.5], [846.5, 137.5]]}, {"id": "tx61eq", "submitted_by": "auronpleis", "name": "Rubius", "description": "Logo of one the largest creators of Spanish-speaking content nicknamed La Leyenda del Gaming aka elRubius, along with his community and the entire Spanish-speaking community, next to it the well-know bear skin that he used is his multiple minecraft series like Karmaland, sigo?", "website": "https://www.twitch.tv/rubius", "subreddit": "/r/ubius", "center": [1527.5, 650.5], "path": [[1490.5, 612.5], [1563.5, 612.5], [1563.5, 688.5], [1490.5, 688.5]]}, @@ -4711,20 +4365,17 @@ {"id": "tx60ep", "submitted_by": "lunatonesyt", "name": "CB", "description": "The logo for the GTA Family CleanBois", "website": "https://nopixel.fandom.com/wiki/Cleanbois", "subreddit": "", "center": [1353.5, 693.5], "path": [[1337.5, 677.5], [1336.5, 709.5], [1371.5, 709.5], [1370.5, 678.5]]}, {"id": "tx60bn", "submitted_by": "sammyisrandom", "name": "Cleffa", "description": "Cleffa (Japanese: \u30d4\u30a3 Py) is a Fairy-type baby Pok\u00e9mon introduced in Generation II. Prior to Generation VI, it was a Normal-type Pok\u00e9mon. It is the baby evolution of Clefairy.", "website": "", "subreddit": "/r/pokemon", "center": [1556.5, 1540.5], "path": [[1551.5, 1548.5], [1558.5, 1549.5], [1565.5, 1544.5], [1565.5, 1535.5], [1554.5, 1531.5], [1546.5, 1534.5], [1548.5, 1538.5], [1548.5, 1543.5]]}, {"id": "tx5zl9", "submitted_by": "Ra1nb0wK", "name": "Unturned Griefer Face", "description": "A face you can use in the zombie indie game Unturned.", "website": "https://smartlydressedgames.com/", "subreddit": "/r/unturned", "center": [670.5, 566.5], "path": [[662.5, 558.5], [677.5, 558.5], [677.5, 573.5], [662.5, 573.5]]}, -{"id": "tx5zhk", "submitted_by": "S3b4Sr", "name": "El Demente Pill", "description": "The pill of the famous Argentine streamer in Twitch El Demente", "website": "", "subreddit": "", "center": [1252.5, 1391.5], "path": [[1266.5, 1418.5], [1273.5, 1418.5], [1280.5, 1407.5], [1276.5, 1394.5], [1247.5, 1365.5], [1229.5, 1366.5], [1221.5, 1379.5], [1257.5, 1417.5]]}, {"id": "tx5zbm", "submitted_by": "bostero2", "name": "CABJ", "description": "Initials of Club Atletico Boca Juniors done by r/BocaJuniors after fighting a battle for space against bots.", "website": "", "subreddit": "/r/BocaJuniors", "center": [1886.5, 68.5], "path": [[1880.5, 64.5], [1880.5, 72.5], [1892.5, 72.5], [1893.5, 64.5]]}, {"id": "tx5zb9", "submitted_by": "AvokadoGato", "name": "WachiTutis", "description": "Escudo de guerra de los valientes wachitos que pelearon contra los bots franceses por el honor de la Tutis.", "website": "https://www.twitch.tv/tutisvalentine", "subreddit": "/r/Tutisvalentine", "center": [1121.5, 1687.5], "path": [[1112.5, 1677.5], [1115.5, 1672.5], [1129.5, 1671.5], [1132.5, 1677.5], [1135.5, 1674.5], [1140.5, 1700.5], [1105.5, 1699.5], [1101.5, 1691.5], [1107.5, 1677.5], [1113.5, 1676.5]]}, {"id": "tx5zb4", "submitted_by": "DrDariusWhite", "name": "NC State Logo", "description": "The logo for North Carolina State University", "website": "", "subreddit": "/r/ncsu", "center": [308.5, 1584.5], "path": [[301.5, 1576.5], [314.5, 1577.5], [314.5, 1592.5], [302.5, 1592.5], [301.5, 1587.5]]}, {"id": "tx5zai", "submitted_by": "PanzerSoldier", "name": "Mariachi", "description": "Representation of a mariachi musician.", "website": "https://en.wikipedia.org/wiki/Mariachi", "subreddit": "https://dm./r/mexico", "center": [852.5, 500.5], "path": [[842.5, 520.5], [842.5, 480.5], [861.5, 480.5], [862.5, 519.5], [860.5, 519.5], [856.5, 519.5]]}, {"id": "tx5z60", "submitted_by": "HikariAnti", "name": "Cinnabar", "description": "Cinnabar is character from Houseki no Kuni", "website": "", "subreddit": "/r/LandoftheLustrous", "center": [1581.5, 474.5], "path": [[1575.5, 468.5], [1575.5, 480.5], [1587.5, 480.5], [1588.5, 468.5]]}, -{"id": "tx5z3c", "submitted_by": "domcasse", "name": "CUL", "description": "Communaut\u00e9 du Streamer qu\u00e9b\u00e9cois DomCass\u00e9 sur Twitch n-On voulait juste \u00e9crire le mot CULn-nCommunity of Qu\u00e9bec streamer DomCass\u00e9 on Twitch n-We just wanted to write the word Ass in frenchn-nComunidad de Qu\u00e9bec streamer DomCass\u00e9 en Twitchn-Solo quer\u00edamos escribir la palabra CULO en frances", "website": "https://www.twitch.tv/domcasse", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx5z2m", "submitted_by": "lognes", "name": "JummBox", "description": "A popular mod of BeepBox, an online chiptune DAW.", "website": "https://jummbus.bitbucket.io", "subreddit": "/r/BeepBox", "center": [597.5, 1720.5], "path": [[588.5, 1715.5], [588.5, 1725.5], [589.5, 1725.5], [595.5, 1728.5], [598.5, 1728.5], [604.5, 1725.5], [605.5, 1725.5], [605.5, 1714.5], [603.5, 1714.5], [597.5, 1711.5], [596.5, 1711.5]]}, {"id": "tx5z19", "submitted_by": "420conradical69", "name": "r/truscum", "description": "Truscum, or transmedicalists, are a group of trans people who believe the condition of gender dysphoria is a necessary prerequisite to being transgender.", "website": "", "subreddit": "/r/truscum", "center": [1014.5, 1908.5], "path": [[1012.5, 1906.5], [1016.5, 1906.5], [1016.5, 1910.5], [1012.5, 1910.5], [1012.5, 1906.5]]}, -{"id": "tx5yex", "submitted_by": "NovaStorm93", "name": "Shapes.io", "description": "Shapez.io is an indie game by tobspr focused on automation and mass production by painting, stacking, and cutting shapes to form certain designs.", "website": "shapez.io", "subreddit": "/r/shapezio", "center": [1536.5, 790.5], "path": [[1525.5, 804.5], [1525.5, 803.5], [1542.5, 804.5], [1542.5, 788.5], [1553.5, 787.5], [1552.5, 780.5], [1524.5, 780.5]]}, +{"id": "tx5yex", "submitted_by": "NovaStorm93", "name": "Shapes.io", "description": "Shapez.io is an indie game by tobspr focused on automation and mass production by painting, stacking, and cutting shapes to form certain designs.", "website": "https://shapez.io", "subreddit": "/r/shapezio", "center": [1536.5, 790.5], "path": [[1525.5, 804.5], [1525.5, 803.5], [1542.5, 804.5], [1542.5, 788.5], [1553.5, 787.5], [1552.5, 780.5], [1524.5, 780.5]]}, {"id": "tx5ybu", "submitted_by": "porthos3", "name": "Flag of the Netherlands", "description": "The flag of the Netherlands", "website": "https://en.wikipedia.org/wiki/Netherlands", "subreddit": "/r/Netherlands", "center": [1080.5, 1617.5], "path": [[1069.5, 1614.5], [1069.5, 1619.5], [1090.5, 1619.5], [1090.5, 1614.5]]}, {"id": "tx5y1s", "submitted_by": "BedeviciKutupAyisi", "name": "Violet Evergarden", "description": "Violet Evergarden's chibi portrait her emerald broch and a CH postal marked letter under her name", "website": "", "subreddit": "/r/VioletEvergarden", "center": [583.5, 1512.5], "path": [[574.5, 1502.5], [574.5, 1522.5], [592.5, 1522.5], [592.5, 1502.5]]}, {"id": "tx5xv6", "submitted_by": "buddireddit", "name": "Edge-Symbol", "description": "Symbol of the radio standard EDGE (Enhanced Data Rates for GSM Evolution). It represents the slow internet connection as well as the general lack of digitalization in germany.", "website": "", "subreddit": "/r/placede", "center": [327.5, 849.5], "path": [[323.5, 844.5], [331.5, 844.5], [331.5, 853.5], [323.5, 853.5], [323.5, 844.5]]}, -{"id": "tx5xr4", "submitted_by": "HCCXtra2", "name": "Chase's Storm Heart", "description": "A heart for the Chase's Storm community.", "website": "", "subreddit": "", "center": [1721.5, 606.5], "path": [[1722.5, 604.5], [1723.5, 606.5], [1721.5, 608.5], [1719.5, 606.5], [1719.5, 605.5], [1720.5, 604.5], [1721.5, 605.5], [1722.5, 604.5]]}, {"id": "tx5xo5", "submitted_by": "samg10018", "name": "Red B emoji", "description": "The red B emoji \ud83c\udd71\ufe0f, Originally made to represent the blood type B but then it turned into a meme.", "website": "", "subreddit": "", "center": [1010.5, 1874.5], "path": [[1017.5, 1867.5], [1003.5, 1867.5], [1003.5, 1881.5], [1017.5, 1881.5], [1017.5, 1867.5]]}, {"id": "tx5xmj", "submitted_by": "ostensacken", "name": "Braai", "description": "A braai is a barbecue grill traditionally used in South Africa as a communal gathering spot.", "website": "", "subreddit": "/r/southafrica", "center": [774.5, 998.5], "path": [[768.5, 1008.5], [769.5, 1007.5], [770.5, 1006.5], [770.5, 1004.5], [769.5, 1004.5], [768.5, 1003.5], [768.5, 1001.5], [768.5, 1000.5], [769.5, 999.5], [770.5, 998.5], [771.5, 996.5], [773.5, 994.5], [774.5, 994.5], [774.5, 994.5], [775.5, 994.5], [775.5, 996.5], [776.5, 996.5], [777.5, 995.5], [778.5, 995.5], [778.5, 994.5], [777.5, 993.5], [776.5, 993.5], [775.5, 992.5], [775.5, 991.5], [774.5, 991.5], [776.5, 990.5], [777.5, 989.5], [778.5, 989.5], [776.5, 988.5], [778.5, 988.5], [777.5, 987.5], [776.5, 987.5], [779.5, 988.5], [780.5, 986.5], [780.5, 990.5], [779.5, 991.5], [779.5, 993.5], [778.5, 995.5], [777.5, 998.5], [776.5, 1001.5], [776.5, 1003.5], [774.5, 1005.5], [774.5, 1006.5], [775.5, 1007.5], [776.5, 1008.5], [776.5, 1008.5], [775.5, 1007.5], [774.5, 1006.5], [774.5, 1005.5], [772.5, 1005.5], [772.5, 1011.5], [772.5, 1005.5], [770.5, 1005.5], [770.5, 1006.5]]}, {"id": "tx5x58", "submitted_by": "FuzI0nk", "name": "Lucio (Overwatch)", "description": "Lucio is an Overwatch character, this one was made by FDgod's community (former french proplayer)", "website": "https://twitter.com/FDGod_OW/status/1510975206696882181?s=20&t=KQPseE2uKN2LmzYAGHi53g", "subreddit": "", "center": [1489.5, 1771.5], "path": [[1489.5, 1768.5], [1484.5, 1771.5], [1483.5, 1760.5], [1496.5, 1761.5], [1495.5, 1782.5], [1482.5, 1781.5], [1483.5, 1769.5], [1483.5, 1761.5], [1490.5, 1770.5], [1486.5, 1765.5]]}, @@ -4737,22 +4388,17 @@ {"id": "tx5wa6", "submitted_by": "ADIOP55550", "name": "Kapitan Bomba (unfinished)", "description": "Face of Kapitan Bomba, the character from polish animated series with the same title. nThe series was produced by Git Produkcja and was released in 2007.n(caution: this series contains profanity)", "website": "", "subreddit": "", "center": [1157.5, 1799.5], "path": [[1165.5, 1801.5], [1161.5, 1804.5], [1152.5, 1803.5], [1147.5, 1803.5], [1152.5, 1798.5], [1150.5, 1796.5], [1152.5, 1794.5], [1165.5, 1794.5]]}, {"id": "tx5w1i", "submitted_by": "PuffballPilot", "name": "Counter-Strike Man's Johnson", "description": "A frequent target for vandalism and heatmap staple.", "website": "", "subreddit": "/r/GlobalOffensive", "center": [19.5, 125.5], "path": [[17.5, 129.5], [18.5, 119.5], [22.5, 127.5], [20.5, 128.5], [19.5, 128.5]]}, {"id": "tx5vy0", "submitted_by": "lawliih", "name": "Juice WRLD'S NLMB", "description": "Artwork representing the group which Juice was part of, NLMB (no limit muskegon boys) which can also mean never leave my brothers, followed by three nines, his iconic number.", "website": "", "subreddit": "/r/JuiceWRLD", "center": [1698.5, 920.5], "path": [[1687.5, 911.5], [1687.5, 927.5], [1707.5, 928.5], [1707.5, 926.5], [1710.5, 926.5], [1709.5, 913.5], [1696.5, 914.5], [1696.5, 910.5], [1687.5, 910.5]]}, -{"id": "tx5v6w", "submitted_by": "Morgentau7", "name": "Grogu", "description": "Grogu aka Baby Yoda is a famous character from the series The Mandalorian", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx5v38", "submitted_by": "Slinger_TV", "name": "Utah U", "description": "The Block U logo for the University of Utah plus feathers.", "website": "https://www.utah.edu/", "subreddit": "/r/uofu", "center": [1574.5, 1408.5], "path": [[1563.5, 1397.5], [1563.5, 1416.5], [1575.5, 1416.5], [1575.5, 1421.5], [1580.5, 1421.5], [1581.5, 1422.5], [1582.5, 1422.5], [1583.5, 1421.5], [1583.5, 1397.5], [1563.5, 1397.5]]}, {"id": "tx5u7b", "submitted_by": "porthos3", "name": "The Flag of Costa Rica", "description": "The flag of Costa Rica", "website": "https://en.wikipedia.org/wiki/Costa_Rica", "subreddit": "/r/costa_rica", "center": [1080.5, 1610.5], "path": [[1069.5, 1607.5], [1069.5, 1612.5], [1090.5, 1612.5], [1090.5, 1607.5]]}, -{"id": "tx5tzu", "submitted_by": "Nastibe", "name": "FSE", "description": "FSE is a IRL graffiti crew, but also a group of players on games.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx5tiz", "submitted_by": "Maiamai44", "name": "Neema / Nuchuu", "description": "A transgender music producer and digital artist who worked with r/transplace to maintain an overlay for r/transplace and all allied factions.", "website": "https://twitter.com/Neema_Dreamer", "subreddit": "", "center": [573.5, 471.5], "path": [[570.5, 467.5], [574.5, 467.5], [574.5, 468.5], [577.5, 468.5], [577.5, 475.5], [570.5, 475.5]]}, {"id": "tx5tf3", "submitted_by": "Maolagin", "name": "Hackmud", "description": "Hackmud is a cyberpunk online multiplayer text-based hacking simulator game", "website": "https://www.hackmud.com/", "subreddit": "/r/hackmud", "center": [1750.5, 113.5], "path": [[1730.5, 116.5], [1730.5, 123.5], [1760.5, 123.5], [1760.5, 116.5], [1764.5, 108.5], [1764.5, 100.5], [1748.5, 100.5], [1743.5, 109.5], [1743.5, 111.5], [1744.5, 111.5], [1744.5, 116.5], [1730.5, 116.5]]}, {"id": "tx5sxn", "submitted_by": "toastedmousemat", "name": "Wolverhampton Wonderers F.C.", "description": "WWFC, known commonly as wolves, are an English football team in the premier league", "website": "", "subreddit": "/r/WWFC", "center": [619.5, 1721.5], "path": [[607.5, 1718.5], [608.5, 1725.5], [632.5, 1725.5], [632.5, 1718.5], [605.5, 1718.5], [605.5, 1724.5], [608.5, 1724.5], [608.5, 1719.5], [608.5, 1719.5]]}, -{"id": "tx5sg1", "submitted_by": "Speecker", "name": "Speecker's Face", "description": "This is Speecker's Logo representing his head's face from his Minecraft Skin", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "tx5scw", "submitted_by": "link_dead", "name": "Tribute to Total Biscuit", "description": "Art of John Bain aka Total Biscuit created on stream by Asmongold's community.", "website": "twitch.tv/asmongold", "subreddit": "", "center": [994.5, 1252.5], "path": [[953.5, 1338.5], [976.5, 1309.5], [1024.5, 1295.5], [1056.5, 1227.5], [1071.5, 1211.5], [1040.5, 1178.5], [1006.5, 1182.5], [1001.5, 1189.5], [989.5, 1191.5], [945.5, 1245.5], [936.5, 1281.5], [920.5, 1312.5]]}, -{"id": "tx5scu", "submitted_by": "Corne2Plum3", "name": "osu! gamemode icons", "description": "The icons of the 4 gamemodes of the rythm game osu!. From left to right: Standard (also just called 'osu!'), Taiko, Catch The Beat and Mania.", "website": "https://osu.ppy.sh/home", "subreddit": "/r/osugame", "center": [0.5, 0.5], "path": []}, +{"id": "tx5scw", "submitted_by": "link_dead", "name": "Tribute to Total Biscuit", "description": "Art of John Bain aka Total Biscuit created on stream by Asmongold's community.", "website": "https://twitch.tv/asmongold", "subreddit": "", "center": [994.5, 1252.5], "path": [[953.5, 1338.5], [976.5, 1309.5], [1024.5, 1295.5], [1056.5, 1227.5], [1071.5, 1211.5], [1040.5, 1178.5], [1006.5, 1182.5], [1001.5, 1189.5], [989.5, 1191.5], [945.5, 1245.5], [936.5, 1281.5], [920.5, 1312.5]]}, {"id": "tx5s5x", "submitted_by": "Phlummp", "name": "South Park bus stop", "description": "A previous version of the South Park sign, but with 2 less characters. It was destroyed by the logo of a Latin American streamer.", "website": "", "subreddit": "", "center": [1767.5, 96.5], "path": [[1749.5, 92.5], [1784.5, 92.5], [1784.5, 99.5], [1749.5, 99.5]]}, -{"id": "tx5s2r", "submitted_by": "ModerateKnowledge", "name": "Hristo Botev", "description": "Bulgarian national hero, revolutionary poet warrior.", "website": "", "subreddit": "", "center": [1646.5, 742.5], "path": [[1630.5, 718.5], [1664.5, 717.5], [1664.5, 766.5], [1627.5, 765.5], [1628.5, 736.5], [1629.5, 727.5]]}, {"id": "tx5ryl", "submitted_by": "porthos3", "name": "Flag of Venezuala", "description": "The flag of Venezuala", "website": "https://en.wikipedia.org/wiki/Venezuela", "subreddit": "/r/vzla", "center": [1078.5, 1602.5], "path": [[1065.5, 1598.5], [1065.5, 1605.5], [1090.5, 1605.5], [1090.5, 1598.5]]}, {"id": "tx5ro4", "submitted_by": "elprolito", "name": "Chopper's crack", "description": "A long battle took place here to try to draw Chopper's crack on this beautiful One piece Drawing", "website": "", "subreddit": "/r/OnePiece", "center": [55.5, 1451.5], "path": [[52.5, 1448.5], [59.5, 1448.5], [58.5, 1454.5], [52.5, 1454.5], [52.5, 1448.5], [52.5, 1448.5]]}, {"id": "tx5rnn", "submitted_by": "IntroductionFun7984", "name": "Skull of dia de muertos", "description": "A skull made by the Mexican wich represents the Mexican D\u00eda de los Muertos holiday-", "website": "https://en.wikipedia.org/wiki/Day_of_the_Dead", "subreddit": "/r/Mexico", "center": [664.5, 1196.5], "path": [[643.5, 1194.5], [644.5, 1183.5], [652.5, 1174.5], [678.5, 1174.5], [685.5, 1186.5], [684.5, 1208.5], [668.5, 1223.5], [660.5, 1223.5], [645.5, 1207.5]]}, -{"id": "tx5qkx", "submitted_by": "link_dead", "name": "Berserk Tribute", "description": "Art created on stream by twitch streamer Asmongold. Many bronies were slaughtered to create this art, the survivors migrated east.", "website": "twitch.tv/asmongold", "subreddit": "", "center": [642.5, 241.5], "path": [[694.5, 276.5], [693.5, 220.5], [682.5, 220.5], [676.5, 214.5], [676.5, 203.5], [595.5, 203.5], [595.5, 277.5]]}, +{"id": "tx5qkx", "submitted_by": "link_dead", "name": "Berserk Tribute", "description": "Art created on stream by twitch streamer Asmongold. Many bronies were slaughtered to create this art, the survivors migrated east.", "website": "https://twitch.tv/asmongold", "subreddit": "", "center": [642.5, 241.5], "path": [[694.5, 276.5], [693.5, 220.5], [682.5, 220.5], [676.5, 214.5], [676.5, 203.5], [595.5, 203.5], [595.5, 277.5]]}, {"id": "tx5qi4", "submitted_by": "Hallownest_Citizen1", "name": "Nubert", "description": "The character Nubert from the game Deltarune by Toby Fox", "website": "", "subreddit": "/r/deltarune", "center": [1829.5, 1688.5], "path": [[1834.5, 1692.5], [1824.5, 1692.5], [1824.5, 1686.5], [1825.5, 1686.5], [1825.5, 1684.5], [1825.5, 1683.5], [1833.5, 1683.5], [1833.5, 1686.5], [1834.5, 1686.5], [1834.5, 1692.5]]}, {"id": "tx5qfh", "submitted_by": "DualPlay-Mapping", "name": "Mametchi", "description": "Mametchi is a character from Tamagotchi", "website": "", "subreddit": "/r/tamagotchi", "center": [568.5, 1512.5], "path": [[564.5, 1515.5], [564.5, 1514.5], [565.5, 1514.5], [565.5, 1513.5], [565.5, 1512.5], [564.5, 1512.5], [564.5, 1511.5], [565.5, 1511.5], [565.5, 1508.5], [567.5, 1508.5], [567.5, 1509.5], [570.5, 1509.5], [570.5, 1508.5], [572.5, 1508.5], [572.5, 1510.5], [572.5, 1511.5], [573.5, 1511.5], [573.5, 1512.5], [572.5, 1512.5], [572.5, 1515.5], [571.5, 1515.5], [571.5, 1516.5], [570.5, 1516.5], [570.5, 1517.5], [570.5, 1516.5], [567.5, 1516.5], [567.5, 1517.5], [567.5, 1516.5], [566.5, 1516.5], [566.5, 1515.5], [565.5, 1515.5]]}, {"id": "tx5qcy", "submitted_by": "sodapone", "name": "Bad Touch (VA-11 HALL-A)", "description": "A drink from the video game VA-11 HALL-A, named after the song by the Bloodhound Gang. Its placement on Jill's kotatsu serves as an emblem for the Operation Bad Touch group, who created the assorted VA-11 HALL-A murals on this canvas.", "website": "", "subreddit": "", "center": [507.5, 1581.5], "path": [[505.5, 1577.5], [509.5, 1577.5], [509.5, 1585.5], [505.5, 1585.5]]}, @@ -4765,35 +4411,32 @@ {"id": "tx5oui", "submitted_by": "irradiatedquartz", "name": "Los Angeles Kings", "description": "Logo for the LA Kings, a team in the National Hockey League", "website": "", "subreddit": "", "center": [322.5, 1257.5], "path": [[316.5, 1248.5], [327.5, 1248.5], [328.5, 1265.5], [316.5, 1265.5]]}, {"id": "tx5oof", "submitted_by": "PuffballPilot", "name": "Bandana Waddle Dee", "description": "A Bandana Waddle Dee, a reoccurring sidekick from the Kirby franchise. Created by YouTuber Schaffrillas Productions and his community to 'defend Brazil with his dying breath'.", "website": "https://twitter.com/Schaffrillas/status/1510843409250062338", "subreddit": "", "center": [1494.5, 1812.5], "path": [[1488.5, 1805.5], [1487.5, 1805.5], [1484.5, 1812.5], [1487.5, 1818.5], [1502.5, 1818.5], [1502.5, 1805.5], [1494.5, 1807.5]]}, {"id": "tx5ohq", "submitted_by": "Cocoa_pow_", "name": "Hitotsume logo", "description": "The Japanese music producer, Eve's mascot logo, hitotsume.", "website": "", "subreddit": "/r/E_ve", "center": [1159.5, 1710.5], "path": [[1156.5, 1706.5], [1156.5, 1706.5], [1155.5, 1706.5], [1163.5, 1706.5], [1163.5, 1713.5], [1155.5, 1713.5], [1155.5, 1706.5], [1155.5, 1713.5], [1155.5, 1712.5], [1155.5, 1713.5], [1155.5, 1713.5]]}, -{"id": "tx5ofl", "submitted_by": "SpiritNecessary2830", "name": "Shiny Charizard with KCorp logo", "description": "A shiny charizard with the KC logo on his stomach ( Kameto's esport team )", "website": "", "subreddit": "", "center": [81.5, 1921.5], "path": [[70.5, 1952.5], [76.5, 1952.5], [88.5, 1952.5], [95.5, 1942.5], [97.5, 1934.5], [104.5, 1929.5], [97.5, 1908.5], [93.5, 1906.5], [109.5, 1886.5], [103.5, 1869.5], [71.5, 1908.5], [76.5, 1916.5], [76.5, 1922.5], [64.5, 1922.5], [62.5, 1911.5], [53.5, 1919.5], [52.5, 1931.5], [56.5, 1939.5], [48.5, 1942.5], [56.5, 1952.5], [66.5, 1951.5], [70.5, 1952.5]]}, {"id": "tx5ocg", "submitted_by": "ostensacken", "name": "Quantum Minibus Taxi", "description": "A Toyota Quantum minibus taxi, one of the most common varieties of taxis in South Africa.", "website": "", "subreddit": "/r/southafrica", "center": [724.5, 1014.5], "path": [[721.5, 1024.5], [723.5, 1025.5], [723.5, 1025.5], [725.5, 1024.5], [725.5, 1023.5], [727.5, 1023.5], [728.5, 1022.5], [728.5, 1010.5], [724.5, 1010.5], [723.5, 1010.5], [723.5, 1008.5], [724.5, 1007.5], [725.5, 1006.5], [723.5, 1004.5], [724.5, 1003.5], [725.5, 1002.5], [724.5, 1000.5], [723.5, 999.5], [723.5, 998.5], [724.5, 998.5], [722.5, 997.5], [722.5, 999.5], [722.5, 1001.5], [722.5, 1002.5], [722.5, 1004.5], [722.5, 1010.5], [721.5, 1010.5]]}, {"id": "tx5o3h", "submitted_by": "querkmachine", "name": "100 gecs", "description": "Representing the noisepop duo formed of Laura Les and Dylan Brady, 100 gecs.", "website": "https://100gecs.com", "subreddit": "/r/100gecs", "center": [1598.5, 493.5], "path": [[1591.5, 486.5], [1604.5, 486.5], [1604.5, 499.5], [1591.5, 499.5]]}, {"id": "tx5o2b", "submitted_by": "cuddle_curve", "name": "Chai symbol", "description": "Chai (Hebrew: \u05d7\u05d9 meaning living) figures prominently in modern Jewish culture; the Hebrew letters of the word are often used as a visual symbol.", "website": "https://en.wikipedia.org/wiki/Chai_(symbol)", "subreddit": "", "center": [1553.5, 465.5], "path": [[1557.5, 461.5], [1557.5, 462.5], [1557.5, 468.5], [1549.5, 468.5], [1549.5, 461.5]]}, {"id": "tx5o20", "submitted_by": "Zengoku", "name": "Amano Pikamee", "description": "Pikamee is a vtuber from the VOMS vtuber group .", "website": "https://www.youtube.com/channel/UCajhBT4nMrg3DLS-bLL2RCg", "subreddit": "/r/VOMS", "center": [1479.5, 1069.5], "path": [[1475.5, 1064.5], [1475.5, 1074.5], [1483.5, 1074.5], [1483.5, 1064.5]]}, -{"id": "tx5o1j", "submitted_by": "Pikotaropen", "name": "Dr. Pepper", "description": "A Steins;Gate reference (MC loves Dr. Pepper)", "website": "", "subreddit": "/r/SteinsGate", "center": [0.5, 0.5], "path": []}, -{"id": "tx5nw4", "submitted_by": "gutta-percha", "name": "#100Devs", "description": "Goomba is a mushroom-like character in the Mario franchise. nWe have built our 10Devs - Saul 'Stu' Goombman\u00a0for the 6-year-old son of our dear moderator Barbara Law, who has invested so much of her time and energy in helping us succeed.n100Devs\u00a0is a free software engineering training program for those laid off by the pandemic.", "website": "https://leonnoel.com/100devs/", "subreddit": "", "center": [892.5, 1253.5], "path": [[882.5, 1238.5], [882.5, 1267.5], [901.5, 1267.5], [901.5, 1238.5]]}, -{"id": "tx5ntx", "submitted_by": "GrinkStone", "name": "Vaporeon", "description": "Vaporeon, the most compatible Pok\u00e9mon for humans.", "website": "https://pokemon.fandom.com/wiki/Vaporeon", "subreddit": "/r/Vaporeon", "center": [1986.5, 1286.5], "path": [[1974.5, 1299.5], [1973.5, 1273.5], [1999.5, 1273.5], [1998.5, 1300.5], [1974.5, 1300.5]]}, -{"id": "tx5nnx", "submitted_by": "Be_More_Duck", "name": "Be More Business Duck", "description": "A small duck wearing a very nice suit! Made in alliance with r/Belgium", "website": "", "subreddit": "/r/Duck_Place", "center": [264.5, 685.5], "path": [[270.5, 682.5], [269.5, 690.5], [266.5, 691.5], [261.5, 691.5], [259.5, 690.5], [259.5, 680.5], [261.5, 679.5], [261.5, 678.5], [267.5, 678.5], [269.5, 679.5]]}, +{"id": "tx5nw4", "submitted_by": "gutta-percha", "name": "#100Devs", "description": "Goomba is a mushroom-like character in the Mario franchise. We have built our #100Devs - Saul 'Stu' Goombman\u00a0for the 6-year-old son of our dear moderator Barbara Law, who has invested so much of her time and energy in helping us succeed. #100Devs\u00a0is a free software engineering training program for those laid off by the pandemic.", "website": "https://leonnoel.com/100devs/", "subreddit": "", "center": [892.5, 1253.5], "path": [[882.5, 1238.5], [882.5, 1267.5], [901.5, 1267.5], [901.5, 1238.5]]}, +{"id": "tx5nnx", "submitted_by": "Be_More_Duck", "name": "Be More Business Duck", "description": "A small duck wearing a very nice suit! Made in alliance with r/Belgium", "website": "", "subreddit": "/r/Duck_Place", "center": [264.5, 685.5], "path": [[268.5, 679.5], [264.5, 679.5], [264.5, 680.5], [263.5, 680.5], [263.5, 683.5], [262.5, 683.5], [262.5, 682.5], [260.5, 682.5], [260.5, 687.5], [261.5, 687.5], [262.5, 688.5], [260.5, 689.5], [260.5, 690.5], [263.5, 690.5], [264.5, 688.5], [265.5, 690.5], [268.5, 690.5], [268.5, 688.5], [266.5, 688.5], [267.5, 687.5], [268.5, 687.5], [268.5, 684.5], [267.5, 684.5], [266.5, 683.5], [269.5, 683.5], [269.5, 681.5], [268.5, 681.5], [268.5, 679.5]]}, {"id": "tx5ngg", "submitted_by": "Lambientan", "name": "Night In The Woods", "description": "Initials for Night In The Woods, an adventure indie game released in 2017", "website": "", "subreddit": "/r/NightInTheWoods", "center": [1758.5, 1992.5], "path": [[1749.5, 1989.5], [1767.5, 1989.5], [1766.5, 1996.5], [1749.5, 1996.5]]}, {"id": "tx5nfw", "submitted_by": "Dayvklar", "name": "Chiva", "description": "Is an artisan rustic bus used in rural Colombia. Chivas are adapted to rural public transport, especially considering the mountainous geography of the Andean region of these countries.", "website": "", "subreddit": "", "center": [23.5, 1327.5], "path": [[1.5, 1308.5], [45.5, 1308.5], [45.5, 1346.5], [1.5, 1345.5], [1.5, 1313.5], [1.5, 1308.5], [45.5, 1308.5]]}, {"id": "tx5nd2", "submitted_by": "AwayNefariousness442", "name": "Bell", "description": "Bells are a set of obtainable end-game abilities in Deepwoken. LUCK DOESN'T COUNT AS BELL PROGRESSION! GET THAT IDEA OUT OF YOUR HEAD!", "website": "", "subreddit": "", "center": [373.5, 1367.5], "path": [[373.5, 1357.5], [374.5, 1358.5], [375.5, 1359.5], [375.5, 1360.5], [376.5, 1361.5], [377.5, 1362.5], [378.5, 1363.5], [378.5, 1366.5], [379.5, 1367.5], [379.5, 1368.5], [380.5, 1370.5], [380.5, 1370.5], [380.5, 1371.5], [379.5, 1372.5], [376.5, 1372.5], [375.5, 1373.5], [374.5, 1374.5], [373.5, 1375.5], [372.5, 1374.5], [371.5, 1373.5], [370.5, 1373.5], [369.5, 1372.5], [368.5, 1372.5], [367.5, 1372.5], [366.5, 1371.5], [366.5, 1367.5], [367.5, 1366.5], [368.5, 1365.5], [368.5, 1364.5], [368.5, 1363.5], [369.5, 1362.5], [370.5, 1361.5], [371.5, 1360.5], [371.5, 1359.5], [372.5, 1358.5]]}, {"id": "tx5nbv", "submitted_by": "sarahboodle42069", "name": "Dominion & Nebula | Minecraft", "description": "Dominion SMP Minecraft server Project Nebula Minecraft server.", "website": "https://dominionserver.net/", "subreddit": "", "center": [1114.5, 1210.5], "path": [[1109.5, 1207.5], [1109.5, 1208.5], [1109.5, 1212.5], [1119.5, 1212.5], [1119.5, 1207.5]]}, {"id": "tx5nb9", "submitted_by": "porthos3", "name": "The Flag of Spain", "description": "A depiction of the flag of Spain. There is normally a crest in the center of the flag, but it was likely omitted due to lack of space. Variants of the flag exist without a crest or with alternative imagery over the center of the flag.", "website": "https://en.wikipedia.org/wiki/Flag_of_Spain", "subreddit": "/r/spain", "center": [1076.5, 1593.5], "path": [[1062.5, 1590.5], [1062.5, 1596.5], [1090.5, 1596.5], [1090.5, 1590.5]]}, -{"id": "tx5nal", "submitted_by": "link_dead", "name": "Shylily", "description": "Art of twitch streamer Shylily, created by her community on stream during the final 2 hours.", "website": "twitch.tv/shylily", "subreddit": "/r/shylily", "center": [1951.5, 1228.5], "path": [[1943.5, 1220.5], [1959.5, 1220.5], [1959.5, 1236.5], [1943.5, 1236.5]]}, +{"id": "tx5nal", "submitted_by": "link_dead", "name": "Shylily", "description": "Art of twitch streamer Shylily, created by her community on stream during the final 2 hours.", "website": "https://twitch.tv/shylily", "subreddit": "/r/shylily", "center": [1951.5, 1228.5], "path": [[1943.5, 1220.5], [1959.5, 1220.5], [1959.5, 1236.5], [1943.5, 1236.5]]}, {"id": "tx5mrs", "submitted_by": "Vortx44", "name": "Boston Mural (extension)", "description": "An extension of the original Boston Mural (left), with Tufts University again, Harvard University, and allied Whitney Young high school.", "website": "", "subreddit": "", "center": [354.5, 1537.5], "path": [[345.5, 1521.5], [346.5, 1550.5], [367.5, 1550.5], [367.5, 1538.5], [358.5, 1537.5], [358.5, 1521.5], [345.5, 1521.5], [346.5, 1523.5]]}, {"id": "tx5mqq", "submitted_by": "sammyisrandom", "name": "Shiny Mew and Goomy", "description": "A color variation (shiny) of the Pokemon Mew, and a small Goomy.", "website": "", "subreddit": "/r/pokemon", "center": [1400.5, 744.5], "path": [[1387.5, 733.5], [1393.5, 730.5], [1400.5, 730.5], [1393.5, 734.5], [1389.5, 736.5], [1389.5, 738.5], [1395.5, 737.5], [1401.5, 741.5], [1412.5, 739.5], [1418.5, 747.5], [1416.5, 752.5], [1393.5, 752.5], [1386.5, 744.5], [1384.5, 735.5]]}, {"id": "tx5mi7", "submitted_by": "Super_toto", "name": "ARK: Survival Evolved logo", "description": "ARK: Survival Evolved is a video game with dinosaurs and sci fi elements", "website": "https://store.steampowered.com/app/346110/ARK_Survival_Evolved/", "subreddit": "/r/playark", "center": [1893.5, 1239.5], "path": [[1884.5, 1228.5], [1884.5, 1249.5], [1902.5, 1249.5], [1902.5, 1228.5]]}, -{"id": "tx5mg9", "submitted_by": "Graaxes", "name": "Pixel Art Dofus", "description": "Sprite made by Haykira, a pixel artist during the Dofus Retro Temporis server's start.", "website": "https://www.reddit.com/r/Dofus/comments/j2q60t/oc_some_of_my_favorite_dofus_made_as_pixel_art/", "subreddit": "/r/dofus", "center": [178.5, 1765.5], "path": [[175.5, 1752.5], [167.5, 1764.5], [168.5, 1775.5], [175.5, 1778.5], [181.5, 1777.5], [186.5, 1774.5], [187.5, 1765.5], [188.5, 1759.5], [185.5, 1752.5], [180.5, 1749.5], [180.5, 1750.5], [179.5, 1750.5], [180.5, 1749.5]]}, +{"id": "tx5mg9", "submitted_by": "Graaxes", "name": "Dofus", "description": "Dofus is a famous children's game in France. It was created in 2004 by French studio Ankama.\n\nSprite made by Haykira, a pixel artist during the Dofus Retro Temporis server's start.", "website": "https://www.dofus.com/", "subreddit": "/r/france", "center": [178.5, 1765.5], "path": [[175.5, 1752.5], [167.5, 1764.5], [168.5, 1775.5], [175.5, 1778.5], [181.5, 1777.5], [186.5, 1774.5], [187.5, 1765.5], [188.5, 1759.5], [185.5, 1752.5], [180.5, 1749.5], [180.5, 1750.5], [179.5, 1750.5], [180.5, 1749.5]]}, {"id": "tx5mcl", "submitted_by": "link_dead", "name": "Froot", "description": "A tribute to Vtuber Froot created by Zentreya's community on stream", "website": "", "subreddit": "", "center": [775.5, 1094.5], "path": [[781.5, 1099.5], [781.5, 1088.5], [775.5, 1088.5], [768.5, 1095.5], [768.5, 1099.5], [776.5, 1098.5]]}, {"id": "tx5m3q", "submitted_by": "Glacier092", "name": "Black Bauhinia flag", "description": "Variant of the flag of Hong Kong often displayed by pro-democracy protestors", "website": "", "subreddit": "/r/HongKong", "center": [816.5, 1689.5], "path": [[795.5, 1671.5], [795.5, 1696.5], [802.5, 1697.5], [804.5, 1700.5], [799.5, 1709.5], [799.5, 1712.5], [816.5, 1710.5], [822.5, 1710.5], [826.5, 1714.5], [830.5, 1707.5], [835.5, 1692.5], [838.5, 1691.5], [838.5, 1671.5]]}, {"id": "tx5lf6", "submitted_by": "PwrHngry5", "name": "Donkey Kong aka The Dong", "description": "Popular Nintendo character Donkey Kong that was made by popular Twitch streamer Mizkif and his community. Mizkif's community referred to the pixel art as The Dong, and protected him from numerous attacks from popular Twitch Streamer xQc and the French, Spanish, and Russian Twitch communities.", "website": "https://www.twitch.tv/mizkif", "subreddit": "/r/Mizkif", "center": [1293.5, 442.5], "path": [[1260.5, 421.5], [1261.5, 445.5], [1282.5, 445.5], [1282.5, 467.5], [1315.5, 466.5], [1315.5, 457.5], [1316.5, 457.5], [1316.5, 453.5], [1317.5, 453.5], [1317.5, 432.5], [1317.5, 426.5], [1304.5, 426.5], [1299.5, 416.5], [1296.5, 416.5], [1296.5, 414.5], [1293.5, 414.5], [1293.5, 415.5], [1283.5, 426.5], [1265.5, 426.5], [1265.5, 421.5]]}, {"id": "tx5lej", "submitted_by": "querkmachine", "name": "Goomy", "description": "The Pok\u00e9mon Goomy.", "website": "", "subreddit": "/r/pokemon", "center": [1411.5, 747.5], "path": [[1408.5, 741.5], [1407.5, 742.5], [1407.5, 744.5], [1408.5, 745.5], [1407.5, 746.5], [1407.5, 748.5], [1405.5, 750.5], [1406.5, 751.5], [1416.5, 751.5], [1416.5, 747.5], [1414.5, 744.5], [1412.5, 741.5], [1410.5, 744.5]]}, {"id": "tx5l87", "submitted_by": "eXpVeno", "name": "Bullet Club", "description": "Bullet Club is the community of the streamer RatedEpicz. He is part of the NoPixel RP community and a member of Chang Gang.", "website": "https://www.facebook.com/RatedEpicz", "subreddit": "/r/Chang_Gang", "center": [460.5, 1116.5], "path": [[448.5, 1104.5], [473.5, 1104.5], [473.5, 1128.5], [446.5, 1127.5]]}, -{"id": "tx5kth", "submitted_by": "blubfishblue2", "name": "ImpulseSV", "description": "Impulse is a youtuber and twitch streamer who has played on hermitcraft since season 3.", "website": "https://www.youtube.com/c/impulseSV", "subreddit": "/r/hermitcraft", "center": [874.5, 611.5], "path": [[870.5, 608.5], [877.5, 608.5], [877.5, 614.5], [870.5, 614.5]]}, +{"id": "tx5kth", "submitted_by": "blubfishblue2", "name": "ImpulseSV", "description": "Impulse is a YouTuber and Twitch streamer who has played on Hermitcraft since Season 3.", "website": "https://www.youtube.com/c/impulseSV", "subreddit": "/r/hermitcraft", "center": [874.5, 611.5], "path": [[870.5, 608.5], [877.5, 608.5], [877.5, 614.5], [870.5, 614.5]]}, {"id": "tx5kes", "submitted_by": "Baatouu", "name": "ZzzSoftware", "description": "Automation software", "website": "https://twitter.com/Zzz_Software", "subreddit": "", "center": [1463.5, 1984.5], "path": [[1427.5, 1973.5], [1499.5, 1973.5], [1499.5, 1995.5], [1427.5, 1995.5], [1428.5, 1974.5], [1428.5, 1974.5]]}, -{"id": "tx5k90", "submitted_by": "link_dead", "name": "Projekt Melody T1M", "description": "A tribute to Projekt Melody's camera robot named T1M. Created on Zentreya's twitch stream.", "website": "twitch.tv/projektmelody", "subreddit": "", "center": [751.5, 1079.5], "path": [[745.5, 1074.5], [762.5, 1074.5], [762.5, 1077.5], [756.5, 1078.5], [754.5, 1085.5], [745.5, 1086.5], [745.5, 1080.5]]}, +{"id": "tx5k90", "submitted_by": "link_dead", "name": "Projekt Melody T1M", "description": "A tribute to Projekt Melody's camera robot named T1M. Created on Zentreya's twitch stream.", "website": "https://twitch.tv/projektmelody", "subreddit": "", "center": [751.5, 1079.5], "path": [[745.5, 1074.5], [762.5, 1074.5], [762.5, 1077.5], [756.5, 1078.5], [754.5, 1085.5], [745.5, 1086.5], [745.5, 1080.5]]}, {"id": "tx5k6w", "submitted_by": "querkmachine", "name": "Shiny Mew", "description": "Shiny version of the Pok\u00e9mon, Mew.", "website": "", "subreddit": "/r/pokemon", "center": [1395.5, 743.5], "path": [[1398.5, 730.5], [1392.5, 730.5], [1392.5, 731.5], [1391.5, 732.5], [1390.5, 732.5], [1389.5, 733.5], [1386.5, 733.5], [1386.5, 744.5], [1393.5, 752.5], [1399.5, 752.5], [1404.5, 750.5], [1406.5, 747.5], [1405.5, 745.5], [1403.5, 742.5], [1400.5, 741.5], [1396.5, 740.5], [1395.5, 737.5], [1390.5, 737.5], [1389.5, 736.5], [1393.5, 735.5], [1398.5, 730.5]]}, -{"id": "tx5k3g", "submitted_by": "sammyisrandom", "name": "Mr. Mime", "description": "A Mr. Mime from the Pokemon universe can be seen here, holding what looks to be knives.", "website": "", "subreddit": "/r/pokemon", "center": [1539.5, 1808.5], "path": [[1514.5, 1799.5], [1565.5, 1800.5], [1564.5, 1817.5], [1514.5, 1818.5]]}, +{"id": "tx5k3g", "submitted_by": "PlatinumSpaceBar", "name": "Blebs Mr. Mime", "description": "A Mr. Mime used by the blebs community in emotes.", "website": "https://gunt.tv", "subreddit": "/r/hrry", "center": [1539.5, 1808.5], "path": [[1514.5, 1799.5], [1565.5, 1800.5], [1564.5, 1817.5], [1514.5, 1818.5]]}, {"id": "tx5jzx", "submitted_by": "207nbrown", "name": "savathun, the witch queen", "description": "the logo for destiny 2's latest expansion, the witch queen", "website": "", "subreddit": "/r/destinythegame", "center": [496.5, 977.5], "path": [[511.5, 991.5], [511.5, 962.5], [480.5, 962.5], [480.5, 991.5]]}, {"id": "tx5jw3", "submitted_by": "Verminion777", "name": "Calavera", "description": "A calavera is a representation of a human skull. The term is most often applied to edible or decorative skulls made (usually by hand) from either sugar or clay that are used in the Mexican celebration of the Day of the Dead (Spanish: D\u00eda de Muertos) and the Roman Catholic holiday All Souls' Day.", "website": "", "subreddit": "", "center": [664.5, 1195.5], "path": [[658.5, 1174.5], [653.5, 1174.5], [646.5, 1182.5], [644.5, 1188.5], [644.5, 1195.5], [646.5, 1193.5], [646.5, 1199.5], [648.5, 1208.5], [662.5, 1221.5], [667.5, 1221.5], [681.5, 1205.5], [680.5, 1201.5], [683.5, 1194.5], [683.5, 1185.5], [680.5, 1180.5], [674.5, 1174.5]]}, {"id": "tx5jt8", "submitted_by": "Maiamai44", "name": "Lily Hoshikawa", "description": "A canonically trans anime character from the series Zombie Land Saga.", "website": "https://zombieland-saga.fandom.com/wiki/Lily_Hoshikawa", "subreddit": "/r/ZombielandSaga", "center": [552.5, 472.5], "path": [[547.5, 475.5], [547.5, 469.5], [556.5, 469.5], [556.5, 475.5], [547.5, 475.5]]}, @@ -4806,24 +4449,20 @@ {"id": "tx5ibg", "submitted_by": "TheGuildknight", "name": "Luca POG", "description": "Luca Kaneshiro is a virtual youtuber affiliated with Nijisanji English's fourth wave Luxiem. He says POG a lot", "website": "https://www.youtube.com/channel/UC7Gb7Uawe20QyFibhLl1lzA", "subreddit": "", "center": [202.5, 718.5], "path": [[184.5, 715.5], [218.5, 715.5], [218.5, 721.5], [184.5, 720.5], [184.5, 715.5]]}, {"id": "tx5hz6", "submitted_by": "querkmachine", "name": "Flag of Lithuania", "description": "National flag of Lithuania.", "website": "", "subreddit": "/r/lithuania", "center": [625.5, 599.5], "path": [[601.5, 588.5], [601.5, 609.5], [649.5, 609.5], [649.5, 588.5]]}, {"id": "tx5hwp", "submitted_by": "Aigle13", "name": "Accipiter13 Minecraft skin", "description": "Thanks to lucheug, Pollo66, ZeroColor and LadySophie17's crew for helping me!", "website": "", "subreddit": "", "center": [1445.5, 332.5], "path": [[1440.5, 336.5], [1440.5, 327.5], [1449.5, 327.5], [1449.5, 336.5], [1440.5, 336.5]]}, -{"id": "tx5huy", "submitted_by": "NyksWyldMynd", "name": "Mizkif on Dedo", "description": "A replica of the huge picture that twitch streamer Mizkif has of him riding his rabbit Dedo. Insoired by the Napoleon painting.", "website": "Twitch.tv/mizkif", "subreddit": "/r/Mizkif", "center": [1385.5, 1425.5], "path": [[1425.5, 1359.5], [1339.5, 1356.5], [1343.5, 1490.5], [1434.5, 1493.5]]}, +{"id": "tx5huy", "submitted_by": "NyksWyldMynd", "name": "Mizkif on Dedo", "description": "A replica of the huge picture that twitch streamer Mizkif has of him riding his rabbit Dedo. Insoired by the Napoleon painting.", "website": "https://Twitch.tv/mizkif", "subreddit": "/r/Mizkif", "center": [1385.5, 1425.5], "path": [[1425.5, 1359.5], [1339.5, 1356.5], [1343.5, 1490.5], [1434.5, 1493.5]]}, {"id": "tx5hoc", "submitted_by": "MarcBeard", "name": "The nantarena", "description": "A french video game competition organized by the students of polytech nantes.", "website": "https://nantarena.net/", "subreddit": "", "center": [902.5, 1752.5], "path": [[897.5, 1754.5], [898.5, 1749.5], [906.5, 1749.5], [906.5, 1755.5]]}, {"id": "tx5h51", "submitted_by": "Able-Cost-2991", "name": "WICKED and EmiruPeepo emote", "description": "Just a cute emote from Emiru stremer... wtf he looks so gud and Kirbo WICKEDnnFOK.", "website": "https://www.twitch.tv/emiru", "subreddit": "/r/emiru", "center": [1280.5, 477.5], "path": [[1259.5, 467.5], [1259.5, 487.5], [1302.5, 486.5], [1300.5, 468.5], [1259.5, 467.5]]}, -{"id": "tx5h3v", "submitted_by": "sammyisrandom", "name": "Vaporeon", "description": "A cute pixel art of a Vaporeon on a beach. contributors unknown, likely r/pokemon.", "website": "", "subreddit": "/r/pokemon", "center": [1987.5, 1286.5], "path": [[1974.5, 1272.5], [1999.5, 1273.5], [2000.5, 1301.5], [1974.5, 1299.5]]}, {"id": "tx5h0j", "submitted_by": "GrinkStone", "name": "Terrarian Goldfish", "description": "A Goldfish from the game: Terraria.", "website": "https://terraria.fandom.com/wiki/Goldfish", "subreddit": "/r/Terraria", "center": [617.5, 30.5], "path": [[610.5, 30.5], [610.5, 27.5], [615.5, 27.5], [615.5, 26.5], [622.5, 26.5], [622.5, 27.5], [623.5, 27.5], [623.5, 28.5], [624.5, 28.5], [624.5, 33.5], [622.5, 33.5], [622.5, 34.5], [610.5, 34.5], [610.5, 30.5]]}, -{"id": "tx5gqx", "submitted_by": "Reasonable_Use_171", "name": "The flag of Sweden", "description": "Created by the Nordicunion", "website": "", "subreddit": "/r/place_nordicunion", "center": [656.5, 79.5], "path": [[496.5, 103.5], [496.5, 35.5], [707.5, 35.5], [707.5, 70.5], [840.5, 70.5], [840.5, 67.5], [886.5, 67.5], [886.5, 69.5], [893.5, 69.5], [893.5, 89.5], [799.5, 89.5], [799.5, 120.5], [591.5, 120.5], [591.5, 103.5], [539.5, 103.5], [539.5, 120.5], [525.5, 120.5], [525.5, 103.5], [496.5, 103.5]]}, {"id": "tx5goa", "submitted_by": "Monstrax02", "name": "ICE vs TGV", "description": "This pixel art shows the german highspeed train 'ICE' and the french highsoeed train 'TGV' come out of the EU flag. The E Symbole above the ICE symbolises the bad german WiFi whislt the 9G above the TGV represents the good french WiFI.", "website": "", "subreddit": "", "center": [399.5, 855.5], "path": [[326.5, 866.5], [325.5, 857.5], [322.5, 852.5], [321.5, 843.5], [435.5, 843.5], [472.5, 843.5], [480.5, 866.5], [325.5, 867.5], [326.5, 865.5]]}, {"id": "tx5gbz", "submitted_by": "querkmachine", "name": "Pensexual pride flag", "description": "Pansexuality pride flag, overlaid with a pen.", "website": "", "subreddit": "", "center": [1861.5, 720.5], "path": [[1832.5, 716.5], [1890.5, 716.5], [1890.5, 724.5], [1832.5, 724.5]]}, {"id": "tx5gah", "submitted_by": "MariusNeu95", "name": "Pikachu Spain", "description": "Pikachu made Velooser", "website": "", "subreddit": "", "center": [968.5, 304.5], "path": [[966.5, 300.5], [966.5, 305.5], [966.5, 306.5], [966.5, 306.5], [966.5, 306.5], [970.5, 305.5], [970.5, 302.5], [970.5, 300.5], [965.5, 306.5], [964.5, 305.5], [963.5, 303.5], [967.5, 307.5], [966.5, 307.5], [969.5, 307.5], [970.5, 302.5]]}, {"id": "tx5g7o", "submitted_by": "M4s7erp1ec3", "name": "XuZhou Chained woman incident", "description": "a reference of a human traffic case that exposed in Xuzhou, China, in 2022 feb. 8th", "website": "https://en.wikipedia.org/wiki/Xuzhou_chained_woman_incident", "subreddit": "", "center": [921.5, 141.5], "path": [[895.5, 118.5], [894.5, 116.5], [948.5, 116.5], [948.5, 165.5], [894.5, 165.5], [894.5, 138.5], [894.5, 117.5], [905.5, 124.5], [905.5, 126.5], [900.5, 119.5]]}, {"id": "tx5g7b", "submitted_by": "nahhhhh7878", "name": "Streamer's raid", "description": "An image made by a streamer to anger communities, as he constantly destroyed art thinking it was fun during the whole r/place.nThis is one of his doing, that destroyed lots of artwork made in hours in just a few seconds, thanks to his followers.", "website": "", "subreddit": "", "center": [1223.5, 1761.5], "path": [[1190.5, 1728.5], [1183.5, 1781.5], [1212.5, 1802.5], [1253.5, 1799.5], [1267.5, 1783.5], [1265.5, 1766.5], [1232.5, 1714.5], [1218.5, 1713.5]]}, -{"id": "tx5g1u", "submitted_by": "teddyator", "name": "RaceTrackDesigns", "description": "a Subreddit involved with the design and redesign of motorsport racetracks; the art depicts a street circuit near Palanga in Lithuania, as well as the letters 'RTD' in the colours of the flag of Lithuania", "website": "", "subreddit": "/r/racetrackdesigns", "center": [0.5, 0.5], "path": []}, -{"id": "tx5g0x", "submitted_by": "porthos3", "name": "The Flag of Mexico", "description": "The Flag of Mexico", "website": "https://en.wikipedia.org/wiki/Mexico", "subreddit": "/r/mexico", "center": [0.5, 0.5], "path": []}, {"id": "tx5ftz", "submitted_by": "ostensacken", "name": "Koala riding a Kangaroo", "description": "A small Koala riding a Kangaroo. Both are international icons of Australia and are recognized around the world.", "website": "", "subreddit": "/r/straya", "center": [691.5, 682.5], "path": [[681.5, 683.5], [686.5, 683.5], [686.5, 686.5], [688.5, 686.5], [687.5, 687.5], [687.5, 691.5], [686.5, 695.5], [683.5, 695.5], [683.5, 696.5], [681.5, 696.5], [680.5, 696.5], [680.5, 695.5], [675.5, 695.5], [675.5, 697.5], [679.5, 697.5], [680.5, 700.5], [682.5, 704.5], [683.5, 701.5], [686.5, 700.5], [685.5, 697.5], [686.5, 696.5], [696.5, 687.5], [697.5, 687.5], [697.5, 686.5], [699.5, 686.5], [699.5, 685.5], [700.5, 685.5], [701.5, 684.5], [701.5, 681.5], [701.5, 680.5], [702.5, 679.5], [704.5, 678.5], [707.5, 678.5], [705.5, 678.5], [705.5, 676.5], [705.5, 675.5], [703.5, 675.5], [703.5, 674.5], [702.5, 674.5], [701.5, 671.5], [700.5, 671.5], [700.5, 670.5], [699.5, 670.5], [699.5, 669.5], [698.5, 671.5], [697.5, 671.5], [697.5, 670.5], [697.5, 669.5], [696.5, 671.5], [696.5, 669.5], [695.5, 672.5], [693.5, 671.5], [692.5, 672.5], [690.5, 672.5], [689.5, 671.5], [686.5, 671.5], [686.5, 675.5], [685.5, 675.5], [684.5, 675.5], [684.5, 676.5], [683.5, 676.5], [682.5, 677.5], [682.5, 679.5], [681.5, 679.5], [681.5, 683.5]]}, {"id": "tx5fte", "submitted_by": "iVectorzz", "name": "Cleanbois", "description": "The Cleanbois (CB) are a major criminal syndicate/ family in the GTA V roleplay server on NoPixeln", "website": "", "subreddit": "", "center": [1354.5, 694.5], "path": [[1337.5, 678.5], [1370.5, 678.5], [1370.5, 709.5], [1337.5, 709.5]]}, {"id": "tx5fpn", "submitted_by": "ConceptsYep", "name": "Amogus on the bird", "description": "Amogus on a bird that was fought for for a while. Due to a missing pixel, he looks like he has a big dumpy.nThis amogus itself was placed here in honor of Tingle, which never made it to his promised place.", "website": "", "subreddit": "", "center": [1379.5, 65.5], "path": [[1377.5, 62.5], [1377.5, 64.5], [1376.5, 64.5], [1376.5, 67.5], [1377.5, 67.5], [1377.5, 68.5], [1381.5, 68.5], [1381.5, 62.5], [1377.5, 62.5]]}, {"id": "tx5foc", "submitted_by": "CBRPLX", "name": "JoyinTV & Tree heart", "description": "Symbolize the friendship between the tree builders and the JoyinTV community.nnUsed to be a red heart but turns out french at some point.", "website": "", "subreddit": "", "center": [1570.5, 1430.5], "path": [[1570.5, 1429.5], [1571.5, 1428.5], [1573.5, 1430.5], [1570.5, 1433.5], [1567.5, 1430.5], [1569.5, 1428.5], [1570.5, 1429.5]]}, -{"id": "tx5fo4", "submitted_by": "blubfishblue2", "name": "Cubfan135", "description": "Cubfan135 is a youtuber and twitch streamer who plays on Hermitcraft.", "website": "https://www.youtube.com/c/cubfan135", "subreddit": "/r/hermitcraft", "center": [865.5, 627.5], "path": [[861.5, 624.5], [868.5, 624.5], [868.5, 630.5], [861.5, 630.5]]}, +{"id": "tx5fo4", "submitted_by": "blubfishblue2", "name": "Cubfan135", "description": "Cubfan135 is a YouTuber and Twitch streamer who plays on Hermitcraft.", "website": "https://www.youtube.com/c/cubfan135", "subreddit": "/r/hermitcraft", "center": [865.5, 627.5], "path": [[861.5, 624.5], [868.5, 624.5], [868.5, 630.5], [861.5, 630.5]]}, {"id": "tx5fm3", "submitted_by": "eXpVeno", "name": "ARK: Survival Evolved", "description": "action-adventure survival game developed by Studio Wildcard", "website": "https://survivetheark.com/", "subreddit": "/r/playark", "center": [1892.5, 1239.5], "path": [[1893.5, 1237.5], [1901.5, 1237.5], [1885.5, 1245.5], [1884.5, 1228.5], [1902.5, 1228.5], [1902.5, 1250.5], [1884.5, 1250.5], [1884.5, 1229.5]]}, {"id": "tx5fi5", "submitted_by": "sodapone", "name": "Rainbow Slime", "description": "Created by a close-knit group of friends, and integrated into the VA-11 HALL-A mural by being put under the kotatsu. The gray portions, combined with the negative space in its eyes, make the numbers 1406--a symbol of where this friend group first met.", "website": "", "subreddit": "", "center": [531.5, 1595.5], "path": [[535.5, 1592.5], [535.5, 1598.5], [527.5, 1598.5], [527.5, 1594.5], [529.5, 1592.5]]}, {"id": "tx5ey3", "submitted_by": "Healthy-Split-3197", "name": "Hyperdub", "description": "British electronic music record label formed in 2004. Logo is slightly vandalized.", "website": "https://hyperdub.net", "subreddit": "", "center": [1300.5, 531.5], "path": [[1297.5, 529.5], [1297.5, 529.5], [1297.5, 529.5], [1297.5, 529.5], [1297.5, 529.5], [1297.5, 529.5], [1297.5, 529.5], [1297.5, 529.5], [1297.5, 530.5], [1297.5, 532.5], [1297.5, 533.5], [1298.5, 533.5], [1299.5, 533.5], [1300.5, 533.5], [1302.5, 533.5], [1304.5, 533.5], [1304.5, 532.5], [1304.5, 531.5], [1302.5, 531.5], [1303.5, 530.5], [1301.5, 530.5], [1301.5, 529.5], [1302.5, 529.5], [1300.5, 529.5]]}, @@ -4833,17 +4472,14 @@ {"id": "tx5eb7", "submitted_by": "SoloFaustoo", "name": "Chivito", "description": "Uruguay's national dish", "website": "https://en.wikipedia.org/wiki/Chivito_(sandwich)", "subreddit": "", "center": [1145.5, 676.5], "path": [[1137.5, 683.5], [1153.5, 683.5], [1152.5, 669.5], [1137.5, 669.5], [1137.5, 683.5]]}, {"id": "tx5e8d", "submitted_by": "itsw0lftv", "name": "Sound Space", "description": "A small, 3-D scrolling rhythm game on Roblox.", "website": "https://www.roblox.com/games/2677609345/", "subreddit": "/r/Soundspace", "center": [1802.5, 1265.5], "path": [[1793.5, 1255.5], [1793.5, 1257.5], [1792.5, 1257.5], [1792.5, 1258.5], [1791.5, 1258.5], [1791.5, 1272.5], [1792.5, 1272.5], [1792.5, 1273.5], [1794.5, 1273.5], [1794.5, 1274.5], [1801.5, 1274.5], [1801.5, 1275.5], [1808.5, 1275.5], [1808.5, 1274.5], [1809.5, 1273.5], [1810.5, 1273.5], [1810.5, 1272.5], [1812.5, 1272.5], [1812.5, 1258.5], [1811.5, 1258.5], [1811.5, 1256.5], [1809.5, 1256.5], [1809.5, 1255.5], [1793.5, 1255.5]]}, {"id": "tx5e6o", "submitted_by": "porthos3", "name": "Flag of Argentina", "description": "The flag of Argentina", "website": "https://en.wikipedia.org/wiki/Argentina", "subreddit": "/r/argentina", "center": [1076.5, 1584.5], "path": [[1062.5, 1579.5], [1062.5, 1588.5], [1090.5, 1588.5], [1090.5, 1579.5]]}, -{"id": "tx5e34", "submitted_by": "blubfishblue2", "name": "Welsknight", "description": "Welsknight is a youtuber & twitch streamer who plays on Hermitcraft. he also posts videos of Pixelmon and the Binding of Issac.", "website": "https://www.youtube.com/c/welsknightgaming", "subreddit": "/r/hermitcraft", "center": [883.5, 619.5], "path": [[879.5, 616.5], [886.5, 616.5], [886.5, 622.5], [879.5, 622.5], [879.5, 616.5]]}, +{"id": "tx5e34", "submitted_by": "blubfishblue2", "name": "Welsknight", "description": "Welsknight is a YouTuber & Twitch streamer who plays on Hermitcraft. he also posts videos of Pixelmon and the Binding of Isaac.", "website": "https://www.youtube.com/c/welsknightgaming", "subreddit": "/r/hermitcraft", "center": [883.5, 619.5], "path": [[879.5, 616.5], [886.5, 616.5], [886.5, 622.5], [879.5, 622.5], [879.5, 616.5]]}, {"id": "tx5dw4", "submitted_by": "FlashStash98", "name": "The A", "description": "It represents the first letter of my name", "website": "", "subreddit": "", "center": [1962.5, 1551.5], "path": [[1960.5, 1548.5], [1960.5, 1548.5], [1964.5, 1548.5], [1964.5, 1553.5], [1960.5, 1553.5], [1960.5, 1548.5]]}, {"id": "tx5dro", "submitted_by": "JujuGokham", "name": "ENTPE", "description": "A French engineering school", "website": "", "subreddit": "", "center": [1281.5, 1224.5], "path": [[1276.5, 1221.5], [1276.5, 1227.5], [1285.5, 1227.5], [1285.5, 1221.5]]}, {"id": "tx5dod", "submitted_by": "ostensacken", "name": "ANZAC Poppy", "description": "Flanders poppies are worn on November 11 (Remembrance Day) and April 25 (ANZAC Day) to commemorate Australian soldiers who died in World War 1.", "website": "", "subreddit": "/r/straya", "center": [708.5, 666.5], "path": [[702.5, 673.5], [702.5, 673.5], [704.5, 672.5], [705.5, 671.5], [705.5, 666.5], [705.5, 665.5], [704.5, 664.5], [705.5, 663.5], [706.5, 664.5], [705.5, 665.5], [705.5, 671.5], [706.5, 671.5], [708.5, 671.5], [709.5, 667.5], [708.5, 666.5], [709.5, 664.5], [709.5, 663.5], [707.5, 663.5], [707.5, 662.5], [707.5, 661.5], [708.5, 660.5], [709.5, 660.5], [710.5, 661.5], [710.5, 662.5], [709.5, 663.5], [709.5, 665.5], [710.5, 665.5], [709.5, 667.5], [710.5, 668.5], [710.5, 671.5]]}, {"id": "tx5dlt", "submitted_by": "ringo_best_beatle", "name": "Donda memorial", "description": "A memorial to Donda West, the deceased mother of musician Kanye West.", "website": "", "subreddit": "/r/westsubever", "center": [7.5, 804.5], "path": [[0.5, 782.5], [14.5, 782.5], [14.5, 826.5], [0.5, 826.5]]}, -{"id": "tx5djs", "submitted_by": "CrisperThanRain", "name": "Ganyu from Genshin Impact by Ganyu mains", "description": "The remnants of a small chibi Ganyu drawn by the Ganyu mains community of Genshin Impact", "website": "discord.gg/ganyumains", "subreddit": "/r/Ganyu", "center": [316.5, 1701.5], "path": [[308.5, 1695.5], [308.5, 1707.5], [323.5, 1707.5], [323.5, 1695.5], [314.5, 1695.5]]}, +{"id": "tx5djs", "submitted_by": "CrisperThanRain", "name": "Ganyu from Genshin Impact by Ganyu mains", "description": "The remnants of a small chibi Ganyu drawn by the Ganyu mains community of Genshin Impact", "website": "https://discord.gg/ganyumains", "subreddit": "/r/Ganyu", "center": [316.5, 1701.5], "path": [[308.5, 1695.5], [308.5, 1707.5], [323.5, 1707.5], [323.5, 1695.5], [314.5, 1695.5]]}, {"id": "tx5dfs", "submitted_by": "Eggy216", "name": "Quebec Nordiques logo", "description": "The logo of the Quebec Nordiques, an NHL team in Quebec City until 1995.", "website": "", "subreddit": "", "center": [951.5, 1012.5], "path": [[941.5, 1002.5], [937.5, 1006.5], [937.5, 1022.5], [969.5, 1021.5], [968.5, 1014.5], [966.5, 1010.5], [961.5, 1011.5], [956.5, 1000.5], [945.5, 1000.5]]}, {"id": "tx5d89", "submitted_by": "Colouss", "name": "\u00c6sir Logo", "description": "The logo of \u00c6sir from Cytus 2. Unfinished due to it being moved from next to KeqingLove after a raid by a streamer", "website": "https://play.google.com/store/apps/details?id=com.rayark.cytus2&hl=en_US&gl=US", "subreddit": "/r/cytus", "center": [1849.5, 1654.5], "path": [[1845.5, 1650.5], [1845.5, 1653.5], [1845.5, 1654.5], [1848.5, 1657.5], [1848.5, 1658.5], [1849.5, 1659.5], [1852.5, 1659.5], [1852.5, 1651.5], [1852.5, 1650.5]]}, -{"id": "tx5d3f", "submitted_by": "stylographique", "name": "Git gub", "description": "Cooperation between the hollow knight and elden ring communities. Git gud is both a common meme in the souls game communities and one of the sounds hornet makes when fighting.", "website": "https://knowyourmeme.com/memes/git-gud", "subreddit": "/r/EldenRing, /r/HollowKnight", "center": [0.5, 0.5], "path": []}, -{"id": "tx5d0o", "submitted_by": "altan4444_", "name": "Dog?", "description": "Dog?", "website": "", "subreddit": "", "center": [260.5, 435.5], "path": [[253.5, 423.5], [267.5, 423.5], [270.5, 429.5], [280.5, 437.5], [276.5, 444.5], [273.5, 441.5], [275.5, 439.5], [274.5, 436.5], [271.5, 438.5], [270.5, 443.5], [274.5, 449.5], [268.5, 448.5], [265.5, 444.5], [257.5, 445.5], [252.5, 449.5], [247.5, 449.5], [253.5, 444.5], [251.5, 440.5], [249.5, 437.5], [244.5, 432.5], [243.5, 429.5], [245.5, 423.5], [251.5, 421.5], [248.5, 427.5], [249.5, 429.5], [250.5, 429.5], [254.5, 423.5]]}, -{"id": "tx5cfy", "submitted_by": "GrinkStone", "name": "Terrarian bunnies", "description": "Bunnies From the game: Terraria.", "website": "https://terraria.fandom.com/wiki/Bunny", "subreddit": "/r/Terraria", "center": [411.5, 7.5], "path": [[396.5, 1.5], [396.5, 15.5], [427.5, 13.5], [426.5, 0.5], [396.5, 1.5]]}, {"id": "tx5cfw", "submitted_by": "CBRPLX", "name": "JoyinTV", "description": "Joy is a french streamer who sells 3D printed mokokos online", "website": "https://www.twitch.tv/joyintv", "subreddit": "", "center": [1563.5, 1425.5], "path": [[1570.5, 1422.5], [1556.5, 1422.5], [1556.5, 1429.5], [1569.5, 1428.5], [1570.5, 1427.5], [1570.5, 1422.5]]}, {"id": "tx5caj", "submitted_by": "sammyisrandom", "name": "Sleepy Pikachu", "description": "prior to being attacked by the void, there was a Pikachu resting behind and on top of some of the surrounding blocks. It is possible that the creators and contributors came from r/pokemon.", "website": "https://imgur.com/6YO3WS3", "subreddit": "/r/pokemon", "center": [1065.5, 1305.5], "path": [[1053.5, 1300.5], [1071.5, 1295.5], [1081.5, 1304.5], [1082.5, 1311.5], [1069.5, 1310.5], [1051.5, 1317.5]]}, {"id": "tx5c81", "submitted_by": "MickeyZe", "name": "LFI (Far Left) / Z (Far Right) Last hour REKT", "description": "LFI (a French Far Left party) logo present from Saturday afternoon got REKT in the last hour on Monday night by Z (a French Right party)", "website": "", "subreddit": "", "center": [1677.5, 743.5], "path": [[1665.5, 723.5], [1665.5, 765.5], [1688.5, 765.5], [1688.5, 758.5], [1687.5, 755.5], [1687.5, 738.5], [1688.5, 737.5], [1688.5, 733.5], [1690.5, 731.5], [1690.5, 727.5], [1694.5, 723.5], [1665.5, 723.5]]}, @@ -4856,17 +4492,15 @@ {"id": "tx5bix", "submitted_by": "kayyrens", "name": "ATEEZ Logo", "description": "ATEEZ (Hangul: \uc5d0\uc774\ud2f0\uc988) is a South Korean boy band under KQ Entertainment. The group consisting of members Hongjoong, Seonghwa, Yunho, Yeosang, San, Mingi, Wooyoung, and Jongho. They debuted on October 24th, 2018 with Treasure Ep.1: All to Zero.nn", "website": "", "subreddit": "/r/ATEEZ", "center": [1613.5, 208.5], "path": [[1606.5, 204.5], [1606.5, 211.5], [1619.5, 211.5], [1619.5, 204.5]]}, {"id": "tx5bfr", "submitted_by": "PooFreak", "name": "PEPE & YEE", "description": "PEPE being placed to the left symbolizing him always coming first. YEE to the right, synonym to 'yes', agreeing to the fact that PEPE always comes first.", "website": "https://youtu.be/tZ_gn0E87Qo", "subreddit": "/r/destiny", "center": [1588.5, 92.5], "path": [[1561.5, 69.5], [1615.5, 69.5], [1615.5, 114.5], [1560.5, 114.5], [1561.5, 69.5]]}, {"id": "tx5b7t", "submitted_by": "Garrorr", "name": "San Jose Shark", "description": "The mascot of the San Jose Sharks hockey team.", "website": "", "subreddit": "/r/SJSharks_place", "center": [687.5, 1561.5], "path": [[675.5, 1551.5], [698.5, 1551.5], [698.5, 1570.5], [675.5, 1570.5]]}, -{"id": "tx5b78", "submitted_by": "GNamimates18", "name": "Amogus Pill", "description": "Swallow the Pill, you will turn ill, and become sus.", "website": "", "subreddit": "", "center": [1252.5, 1391.5], "path": [[1250.5, 1367.5], [1277.5, 1398.5], [1279.5, 1407.5], [1273.5, 1416.5], [1265.5, 1418.5], [1255.5, 1415.5], [1223.5, 1379.5], [1229.5, 1367.5], [1250.5, 1367.5]]}, {"id": "tx5b3f", "submitted_by": "Resident-Ad1976", "name": "Shelp", "description": "A flag dedicated to a long-lasting friend group. He managed to hold off the invasion from the Void for just over 20 minutes, ensuring the safety of r/SimDemocracy", "website": "", "subreddit": "", "center": [1120.5, 1288.5], "path": [[1113.5, 1285.5], [1113.5, 1291.5], [1126.5, 1291.5], [1126.5, 1285.5]]}, {"id": "tx5b1i", "submitted_by": "zombie-rat", "name": "Among Us crewmates in love", "description": "Love blooms even on the battlefield", "website": "", "subreddit": "/r/AmongUs", "center": [1441.5, 150.5], "path": [[1439.5, 145.5], [1440.5, 145.5], [1441.5, 146.5], [1442.5, 145.5], [1443.5, 145.5], [1443.5, 149.5], [1445.5, 150.5], [1445.5, 151.5], [1444.5, 153.5], [1438.5, 153.5], [1437.5, 151.5], [1438.5, 149.5], [1439.5, 145.5]]}, {"id": "tx5awk", "submitted_by": "PartyPat2704", "name": "Alfred Ginzel", "description": "Alfred Ginzel", "website": "", "subreddit": "/r/UngiBungi", "center": [1808.5, 801.5], "path": [[1804.5, 799.5], [1810.5, 799.5], [1810.5, 800.5], [1810.5, 801.5], [1810.5, 802.5], [1810.5, 803.5], [1809.5, 803.5], [1808.5, 803.5], [1807.5, 803.5], [1806.5, 803.5], [1805.5, 803.5], [1805.5, 800.5], [1806.5, 800.5], [1807.5, 800.5], [1808.5, 800.5], [1809.5, 800.5], [1809.5, 801.5]]}, -{"id": "tx5ams", "submitted_by": "BraianL0302", "name": "El Demente Logo", "description": "This pill represents the community of a famous Argentine streamer called El Demente", "website": "", "subreddit": "", "center": [1252.5, 1391.5], "path": [[1224.5, 1378.5], [1230.5, 1387.5], [1236.5, 1391.5], [1237.5, 1392.5], [1237.5, 1394.5], [1239.5, 1398.5], [1258.5, 1415.5], [1254.5, 1413.5], [1246.5, 1403.5], [1246.5, 1406.5], [1247.5, 1407.5], [1249.5, 1407.5], [1259.5, 1415.5], [1260.5, 1416.5], [1264.5, 1416.5], [1265.5, 1415.5], [1266.5, 1418.5], [1267.5, 1417.5], [1268.5, 1416.5], [1271.5, 1415.5], [1273.5, 1414.5], [1275.5, 1412.5], [1276.5, 1410.5], [1277.5, 1408.5], [1278.5, 1406.5], [1278.5, 1405.5], [1277.5, 1401.5], [1275.5, 1398.5], [1272.5, 1393.5], [1269.5, 1391.5], [1269.5, 1389.5], [1265.5, 1386.5], [1262.5, 1383.5], [1259.5, 1382.5], [1260.5, 1380.5], [1250.5, 1371.5], [1248.5, 1368.5], [1247.5, 1367.5], [1230.5, 1368.5], [1229.5, 1370.5], [1228.5, 1371.5], [1227.5, 1374.5], [1226.5, 1376.5], [1225.5, 1377.5], [1225.5, 1379.5], [1224.5, 1378.5], [1224.5, 1377.5], [1236.5, 1392.5], [1236.5, 1392.5], [1237.5, 1395.5], [1238.5, 1396.5]]}, {"id": "tx5amd", "submitted_by": "querkmachine", "name": "Trans Twitch logo", "description": "Logo of the streaming service Twitch.tv, coloured in transgender pride flag colours.", "website": "http://twitch.tv", "subreddit": "", "center": [693.5, 1546.5], "path": [[698.5, 1541.5], [687.5, 1541.5], [687.5, 1551.5], [698.5, 1551.5], [698.5, 1541.5]]}, {"id": "tx5akf", "submitted_by": "Wolglow", "name": "Pirate101", "description": "A mmorpg made by KingsIsle", "website": "https://www.pirate101.com/", "subreddit": "/r/Pirate101", "center": [1182.5, 427.5], "path": [[1172.5, 417.5], [1173.5, 440.5], [1178.5, 437.5], [1189.5, 438.5], [1192.5, 438.5], [1192.5, 417.5]]}, {"id": "tx5akc", "submitted_by": "LineOfPixels", "name": "The Mandem", "description": "The Mandem are a criminal gang on the GTA5 Roleplaying Server NoPixel.", "website": "https://nopixel.fandom.com/wiki/The_Mandem", "subreddit": "", "center": [1984.5, 1636.5], "path": [[1968.5, 1623.5], [1999.5, 1623.5], [1999.5, 1648.5], [1968.5, 1648.5]]}, {"id": "tx5akb", "submitted_by": "nipweed", "name": "tbh", "description": "The artist behind the original drawing of this creature calls it a 'tbh'. Originally drawn by @acmeiku on twitter / princestarangel on tumblr.", "website": "", "subreddit": "", "center": [288.5, 1612.5], "path": [[296.5, 1624.5], [288.5, 1622.5], [280.5, 1624.5], [279.5, 1601.5], [296.5, 1602.5], [296.5, 1623.5]]}, {"id": "tx5aeb", "submitted_by": "DualPlay-Mapping", "name": "SMG3", "description": "SMG3 is a character from the SMG4 universe. At the same time, it can also mean a YouTuber who records general content, but it is not canonical in SMG4.", "website": "https://smg3-snitchprod.website", "subreddit": "/r/SMG4", "center": [954.5, 1671.5], "path": [[948.5, 1663.5], [960.5, 1663.5], [960.5, 1678.5], [948.5, 1678.5]]}, -{"id": "tx5acw", "submitted_by": "UHavinAGiggleTherM8", "name": "Duodji (craft)", "description": "Duodji, the S\u00e1mi handicraft, include the Niibi (knife) and Guksi (burl cup).nnDuodji are typically made from wood, bone, antlers, and leather.", "website": "https://en.wikipedia.org/wiki/S%C3%A1mi_people#Duodji_(craft)", "subreddit": "/r/place_nordicunion", "center": [481.5, 82.5], "path": [[476.5, 67.5], [476.5, 90.5], [492.5, 90.5], [492.5, 85.5], [480.5, 85.5], [480.5, 67.5], [476.5, 67.5]]}, +{"id": "tx5acw", "submitted_by": "UHavinAGiggleTherM8", "name": "Duodji (craft)", "description": "Duodji, the S\u00e1mi handicraft, include the Niibi (knife) and Guksi (burl cup).\n\nDuodji are typically made from wood, bone, antlers, and leather.", "website": "https://en.wikipedia.org/wiki/S%C3%A1mi_people#Duodji_(craft)", "subreddit": "/r/place_nordicunion", "center": [481.5, 82.5], "path": [[476.5, 67.5], [476.5, 90.5], [492.5, 90.5], [492.5, 85.5], [480.5, 85.5], [480.5, 67.5], [476.5, 67.5]]}, {"id": "tx5ac5", "submitted_by": "MightyWalrusss", "name": "Mug Moment", "description": "A reference to the meme by Streamer/Youtuber Vargskelethor Joel (A.K.A. Vinesauce), built by r/196", "website": "", "subreddit": "/r/196, /r/vinesauce", "center": [668.5, 1706.5], "path": [[643.5, 1688.5], [677.5, 1686.5], [690.5, 1687.5], [693.5, 1693.5], [693.5, 1701.5], [693.5, 1712.5], [691.5, 1720.5], [681.5, 1722.5], [681.5, 1723.5], [680.5, 1728.5], [661.5, 1729.5], [651.5, 1729.5], [649.5, 1728.5], [648.5, 1720.5], [646.5, 1718.5], [644.5, 1716.5], [643.5, 1715.5], [643.5, 1699.5], [645.5, 1688.5], [648.5, 1687.5], [657.5, 1687.5], [643.5, 1689.5]]}, {"id": "tx5aam", "submitted_by": "ButThatsJustATheory", "name": "100 Gecs", "description": "100 Gecs is a hyperpop duo that consists of Dylan Brady and Laura Les.", "website": "https://www.100gecs.com/", "subreddit": "/r/100gecs", "center": [1598.5, 493.5], "path": [[1603.5, 498.5], [1603.5, 487.5], [1592.5, 487.5], [1592.5, 498.5], [1603.5, 498.5]]}, {"id": "tx59s0", "submitted_by": "RedKingOsu", "name": "Mouse City", "description": "A depiction of the mouse from the osu website representing the mouse only community | MC stands for the official discord of Mouse City", "website": "https://docs.google.com/spreadsheets/d/10tzxu_mvysFg47WptB-AgPNvyVk9MVht8yobuom76ps/edit#gid=1651202259", "subreddit": "https://osu.ppy.sh/wiki/en/Play_style", "center": [1699.5, 703.5], "path": [[1703.5, 690.5], [1687.5, 690.5], [1688.5, 695.5], [1703.5, 717.5], [1702.5, 716.5], [1703.5, 715.5], [1703.5, 710.5], [1703.5, 697.5], [1703.5, 690.5], [1695.5, 718.5], [1700.5, 719.5], [1703.5, 718.5], [1703.5, 691.5], [1697.5, 709.5], [1695.5, 702.5], [1688.5, 694.5], [1699.5, 707.5], [1703.5, 718.5]]}, @@ -4884,7 +4518,6 @@ {"id": "tx5741", "submitted_by": "mitchrogoff", "name": "Kissing Jumbos W/ Heart", "description": "Jumbo the elephant, the mascot of Tufts University (featured below), was graciously hosted and maintained by r/196 who in addition to the original design put a 2ns jumbo and a heart above the two", "website": "", "subreddit": "/r/196, /r/tufts", "center": [184.5, 693.5], "path": [[175.5, 697.5], [175.5, 697.5], [175.5, 692.5], [182.5, 688.5], [184.5, 688.5], [193.5, 693.5], [193.5, 697.5]]}, {"id": "tx56yt", "submitted_by": "ShadowsBan", "name": "Pixel War Between Two Politics Class", "description": "A War Between a left Politic Class (LFI) and right Politic Class (Reconquete), 10 april french people have to vote for next french president for the next 5 years. A the END, Reconquete win this pixel war before the Reddit snap. (Z0ZZ)nnn", "website": "https://www.parti-reconquete.fr/", "subreddit": "/r/Reconquete", "center": [1678.5, 744.5], "path": [[1664.5, 722.5], [1664.5, 766.5], [1691.5, 766.5], [1694.5, 722.5]]}, {"id": "tx56hk", "submitted_by": "Ratman258258", "name": "Ikutsen", "description": "A famous french minecraft youtuber with 40k subscribers", "website": "https://www.youtube.com/c/Ikutsen", "subreddit": "", "center": [335.5, 1919.5], "path": [[330.5, 1914.5], [339.5, 1914.5], [339.5, 1923.5], [330.5, 1923.5]]}, -{"id": "tx55vj", "submitted_by": "JasonLavaa", "name": "Emiru", "description": "Created by Emiru's community, this creation displays a kirby that shows her addiction, the word FOK which is a popular saying she says, and a bunny which she owns alot of them.", "website": "https://www.twitch.tv/emiru", "subreddit": "/r/Emiru", "center": [0.5, 0.5], "path": []}, {"id": "tx55b0", "submitted_by": "sammyisrandom", "name": "Lucario", "description": "Prior to the Chelsea Football Club flag getting attacked by a square of yellow, a brave Lucario stood in the top left corner. This was likely the dedicated work of some members of r/pokemon.", "website": "https://imgur.com/hyusTPQ", "subreddit": "/r/pokemon", "center": [1169.5, 1821.5], "path": [[1165.5, 1810.5], [1178.5, 1810.5], [1177.5, 1833.5], [1159.5, 1830.5], [1159.5, 1824.5], [1159.5, 1816.5]]}, {"id": "tx557o", "submitted_by": "Lalo2795", "name": "Kirby NES", "description": "a Redux of Kirby's Adventure Sprite with a Royal Crown included", "website": "", "subreddit": "/r/Kirby", "center": [1822.5, 765.5], "path": [[1813.5, 772.5], [1814.5, 762.5], [1822.5, 754.5], [1823.5, 754.5], [1832.5, 765.5], [1832.5, 772.5], [1813.5, 772.5]]}, {"id": "tx555u", "submitted_by": "Ratman258258", "name": "Multicort", "description": "A french minecraft Youtuber with 200k subscribers renown for being the owner of the minecraft serv craftok.fr (the logo of the server is on top of him)", "website": "https://www.youtube.com/c/MulticortT", "subreddit": "", "center": [336.5, 1911.5], "path": [[331.5, 1914.5], [331.5, 1906.5], [340.5, 1906.5], [340.5, 1915.5], [331.5, 1915.5]]}, @@ -4898,11 +4531,11 @@ {"id": "tx54e4", "submitted_by": "PwrHngry5", "name": "Mizkif Ego Portrait", "description": "The pixelated version of an art piece depicting popular Twitch streamer Mizkif riding his pet rabbit (Dedo) while dressed as former French military leader Napoleon Bonaparte. The name Ego Portrait comes from the fact that the non-pixelated version of this art piece is displayed in Mizkif's own home and is almost 2x larger than Mizkif himself.", "website": "https://twitter.com/realmizkif/status/1406056913654190082", "subreddit": "/r/Mizkif", "center": [1384.5, 1426.5], "path": [[1332.5, 1354.5], [1436.5, 1353.5], [1436.5, 1499.5], [1332.5, 1498.5]]}, {"id": "tx540v", "submitted_by": "Admirable-Highlight1", "name": "Patito Squad", "description": "Minecraft skins of the streamers Perxitaa, Momonkunn, Violeta G and Carola", "website": "", "subreddit": "", "center": [1989.5, 1393.5], "path": [[1979.5, 1384.5], [1979.5, 1402.5], [1999.5, 1402.5], [1999.5, 1384.5], [1999.5, 1384.5]]}, {"id": "tx53rx", "submitted_by": "atoverlook", "name": "Les Bourses Molles", "description": "Cooperative Logo of the best french community, Les Bourses Molles, famous for their BourseLan.", "website": "", "subreddit": "", "center": [1115.5, 1324.5], "path": [[1099.5, 1320.5], [1131.5, 1320.5], [1131.5, 1327.5], [1099.5, 1327.5], [1099.5, 1327.5]]}, -{"id": "tx53nv", "submitted_by": "ostensacken", "name": "Tech Tower", "description": "Officially known as Lettie Pate Whitehead Evans Administration Building, but commonly known as Tech Tower, is a historic tower located at Georgia Tech.", "website": "bit.ly/gtplace", "subreddit": "", "center": [1669.5, 466.5], "path": [[1651.5, 496.5], [1685.5, 496.5], [1685.5, 486.5], [1689.5, 486.5], [1689.5, 469.5], [1689.5, 468.5], [1685.5, 468.5], [1683.5, 468.5], [1683.5, 428.5], [1663.5, 429.5], [1664.5, 430.5], [1666.5, 432.5], [1666.5, 432.5], [1667.5, 439.5], [1666.5, 440.5], [1665.5, 441.5], [1664.5, 442.5], [1663.5, 443.5], [1661.5, 444.5], [1655.5, 444.5], [1654.5, 444.5], [1653.5, 443.5], [1652.5, 443.5], [1652.5, 442.5], [1651.5, 442.5], [1651.5, 441.5], [1651.5, 428.5], [1651.5, 428.5]]}, +{"id": "tx53nv", "submitted_by": "ostensacken", "name": "Tech Tower", "description": "Officially known as Lettie Pate Whitehead Evans Administration Building, but commonly known as Tech Tower, is a historic tower located at Georgia Tech.", "website": "https://bit.ly/gtplace", "subreddit": "", "center": [1669.5, 466.5], "path": [[1651.5, 496.5], [1685.5, 496.5], [1685.5, 486.5], [1689.5, 486.5], [1689.5, 469.5], [1689.5, 468.5], [1685.5, 468.5], [1683.5, 468.5], [1683.5, 428.5], [1663.5, 429.5], [1664.5, 430.5], [1666.5, 432.5], [1666.5, 432.5], [1667.5, 439.5], [1666.5, 440.5], [1665.5, 441.5], [1664.5, 442.5], [1663.5, 443.5], [1661.5, 444.5], [1655.5, 444.5], [1654.5, 444.5], [1653.5, 443.5], [1652.5, 443.5], [1652.5, 442.5], [1651.5, 442.5], [1651.5, 441.5], [1651.5, 428.5], [1651.5, 428.5]]}, {"id": "tx53me", "submitted_by": "ishzlle", "name": "Tibetan Flag", "description": "Collaboration between PlaceTibet and /r/IndiaPlace.", "website": "", "subreddit": "/r/IndiaPlace", "center": [327.5, 1189.5], "path": [[311.5, 1172.5], [342.5, 1172.5], [342.5, 1205.5], [311.5, 1205.5]]}, {"id": "tx53hp", "submitted_by": "Ratman258258", "name": "AzpazTv", "description": "A French minecraft youtuber with 200k subscribers renown for being the owner of nulcraft.fr", "website": "https://www.youtube.com/c/AzpazTv", "subreddit": "", "center": [326.5, 1919.5], "path": [[321.5, 1914.5], [330.5, 1914.5], [330.5, 1923.5], [321.5, 1923.5]]}, {"id": "tx52p4", "submitted_by": "Infrastation", "name": "The Cascadia Alliance", "description": "Cornerstoned by the Cascadia group, this area was also home to the Grinfolk, Chippy Gaming, Tierzoo, Northern Lion, the Faces Crew, and the Voidpunks. On the night of the 3rd, the streamer XQC replaced the entire corner with an image of the Joker, which was then annexed by Iran. After the smoke cleared, each member of the alliance split apart, but most helped each other rebuild: Northern Lion moved down slightly to make room for Iran, the Grinfolk fought in the BARI\u015e peace sign to rebuild, and the Cascadians would place a new, bigger Doug flag with the help of PayMoneyWubby and his fanbase.", "website": "https://discord.gg/wHcy9C9TCJ", "subreddit": "/r/Cascadia", "center": [25.5, 323.5], "path": [[0.5, 338.5], [0.5, 310.5], [63.5, 310.5], [63.5, 317.5], [52.5, 317.5], [52.5, 325.5], [50.5, 327.5], [36.5, 327.5], [36.5, 338.5], [32.5, 341.5], [21.5, 341.5], [18.5, 338.5]]}, -{"id": "tx52im", "submitted_by": "UHavinAGiggleTherM8", "name": "Lavvu", "description": "A Lavvu is a temporary dwelling used by the Sami people that enables them to follow their reindeer herds.", "website": "https://en.wikipedia.org/wiki/Lavvu", "subreddit": "/r/place_nordicunion", "center": [514.5, 84.5], "path": [[507.5, 93.5], [521.5, 93.5], [521.5, 75.5], [507.5, 75.5], [507.5, 93.5]]}, +{"id": "tx52im", "submitted_by": "UHavinAGiggleTherM8", "name": "Lavvu", "description": "A Lavvu is a temporary dwelling used by the S\u00e1mi people that enables them to follow their reindeer herds.", "website": "https://en.wikipedia.org/wiki/Lavvu", "subreddit": "/r/place_nordicunion", "center": [514.5, 84.5], "path": [[507.5, 93.5], [521.5, 93.5], [521.5, 75.5], [507.5, 75.5], [507.5, 93.5]]}, {"id": "tx524k", "submitted_by": "Orangebluefruits", "name": "Toph and Zuko", "description": "Two shiba dogs belonging to streamer Buddha. Made by his discord community.", "website": "https://buddha.gg/", "subreddit": "", "center": [1435.5, 630.5], "path": [[1382.5, 613.5], [1485.5, 612.5], [1487.5, 650.5], [1383.5, 646.5]]}, {"id": "tx522s", "submitted_by": "yinwa333", "name": "One More Multiverse", "description": "One More Multiverse is an online virtual tabletop to play, share, and stream your next tabletop roleplaying game. With a massive and ever-growing pixel art library collection, in OMM create a level that changes as quickly as your story.", "website": "https://multiverse.com/", "subreddit": "/r/OneMoreMultiverse", "center": [899.5, 1134.5], "path": [[902.5, 1133.5], [902.5, 1131.5], [899.5, 1129.5], [895.5, 1133.5], [895.5, 1136.5], [899.5, 1138.5], [903.5, 1135.5], [904.5, 1133.5], [902.5, 1132.5], [901.5, 1130.5]]}, {"id": "tx51ux", "submitted_by": "kylmao", "name": "Ugly", "description": "Jackass", "website": "", "subreddit": "", "center": [639.5, 926.5], "path": [[622.5, 909.5], [655.5, 909.5], [655.5, 943.5], [622.5, 943.5]]}, @@ -4920,7 +4553,6 @@ {"id": "tx4xkf", "submitted_by": "Morbinion", "name": "Sakura Gakuin logo", "description": "School-themed Japanese pop group. Metal dance group BABYMETAL started out as a sub-unit of Sakura Gakuin.", "website": "", "subreddit": "/r/SakuraGakuin", "center": [1121.5, 506.5], "path": [[1117.5, 503.5], [1124.5, 503.5], [1124.5, 509.5], [1117.5, 509.5], [1117.5, 503.5]]}, {"id": "tx4x1l", "submitted_by": "4nt0n1m0", "name": "Pikachu", "description": "After many hours of internal discussions trying to choose a drawing worthy of being in this magnificient piece of art, we settled on allocating this 10x10 space nto one of the most iconic and representative entities of the fucking internet. After an intense nsearch of space worthy of pikachu, we finally found this sacred place next to our beloved Mona Lisa (La Gioconda, in Italian). Right after this discovery, we searched far and beyond for this Mona Lisa community so our diplomatic representative could come to an agreement with them. Once they were nfound, both parts in an effort of displaying their honor and good faith came to a non-aggression and mutual protection pact. Subsequently, meanwhile pikachu was being nfinished, both sides fought together to defend the dignity of Mona Lisa. Despite the damage inflicted by the constant attacks from the eastern and western borders, as well as griefers attempting to deface Mona into a nursing mommy or a badass stoner, we managed to protect her and pikachu thanks to our fierceness and alliance.n.n.n.nAlso thanks to all the people who participated in making this pikachu and improving him, even without having a reference.nHe's cute.", "website": "", "subreddit": "", "center": [1568.5, 1328.5], "path": [[1562.5, 1322.5], [1573.5, 1322.5], [1573.5, 1333.5], [1562.5, 1333.5]]}, {"id": "tx4vy6", "submitted_by": "YummyShapes", "name": "Sakura Tree", "description": "Small project originally suggested by LovelyLaurbug#8027", "website": "", "subreddit": "/r/placetrees", "center": [1066.5, 912.5], "path": [[1065.5, 907.5], [1068.5, 907.5], [1068.5, 908.5], [1069.5, 908.5], [1069.5, 909.5], [1070.5, 909.5], [1070.5, 910.5], [1071.5, 910.5], [1071.5, 911.5], [1071.5, 912.5], [1072.5, 912.5], [1072.5, 913.5], [1072.5, 914.5], [1072.5, 913.5], [1071.5, 913.5], [1070.5, 913.5], [1069.5, 913.5], [1069.5, 914.5], [1068.5, 914.5], [1068.5, 915.5], [1067.5, 915.5], [1067.5, 916.5], [1067.5, 917.5], [1067.5, 918.5], [1067.5, 919.5], [1067.5, 920.5], [1066.5, 920.5], [1066.5, 921.5], [1066.5, 922.5], [1067.5, 922.5], [1068.5, 922.5], [1064.5, 922.5], [1065.5, 921.5], [1066.5, 920.5], [1066.5, 918.5], [1065.5, 918.5], [1065.5, 917.5], [1064.5, 917.5], [1064.5, 916.5], [1063.5, 916.5], [1063.5, 915.5], [1062.5, 915.5], [1062.5, 914.5], [1061.5, 914.5], [1060.5, 914.5], [1060.5, 913.5], [1062.5, 913.5], [1061.5, 911.5], [1062.5, 910.5], [1063.5, 909.5], [1064.5, 908.5], [1065.5, 907.5]]}, -{"id": "tx4vwq", "submitted_by": "VampiRose_", "name": "DNF Flag", "description": "A flag that represents the ship of content creators Dream and GeorgeNotFound", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx4vvu", "submitted_by": "DPanther_", "name": "JJBA To Be Continued Arrows", "description": "A graphic from the JoJo's Bizzare Adventure anime/manga series. It is often added to videos for comedic effect while the song 'Roundabout' by Yes plays.", "website": "", "subreddit": "/r/ShitPostCrusaders", "center": [80.5, 890.5], "path": [[0.5, 883.5], [28.5, 883.5], [28.5, 875.5], [42.5, 889.5], [56.5, 875.5], [56.5, 883.5], [161.5, 883.5], [161.5, 897.5], [56.5, 897.5], [56.5, 905.5], [42.5, 891.5], [28.5, 905.5], [28.5, 897.5], [0.5, 897.5], [0.5, 883.5]]}, {"id": "tx4vuu", "submitted_by": "ishzlle", "name": "/r/place Windows Frame", "description": "A Windows 98-style window frame and buttons. Graciously provided refuge by the Great Wave after losing their spot in the top right of the canvas to the Dutch flag.", "website": "", "subreddit": "", "center": [1959.5, 772.5], "path": [[1919.5, 769.5], [1999.5, 769.5], [1999.5, 775.5], [1920.5, 775.5]]}, {"id": "tx4vr1", "submitted_by": "WasteOfAtoms", "name": "Q and Tom", "description": "Faces representing the fursonas of Q and Tom.", "website": "", "subreddit": "", "center": [451.5, 1528.5], "path": [[443.5, 1524.5], [459.5, 1524.5], [459.5, 1532.5], [443.5, 1532.5], [443.5, 1524.5]]}, @@ -4932,7 +4564,7 @@ {"id": "tx4tl2", "submitted_by": "UHavinAGiggleTherM8", "name": "Northern Lights", "description": "The Northern Lights, also known as the Aurora Borealis, is a natural light display in Earth's sky, commonly seen in the S\u00e1pmi region situated in the Arctic.", "website": "", "subreddit": "/r/place_nordicunion", "center": [514.5, 67.5], "path": [[498.5, 81.5], [526.5, 81.5], [526.5, 48.5], [517.5, 48.5], [516.5, 54.5], [498.5, 63.5], [498.5, 81.5]]}, {"id": "tx4tfq", "submitted_by": "tracerreddit", "name": "Bavarian flag", "description": "", "website": "", "subreddit": "/r/placede", "center": [1350.5, 1131.5], "path": [[1345.5, 1125.5], [1345.5, 1135.5], [1346.5, 1135.5], [1346.5, 1136.5], [1347.5, 1136.5], [1347.5, 1137.5], [1353.5, 1137.5], [1353.5, 1136.5], [1354.5, 1136.5], [1354.5, 1135.5], [1355.5, 1135.5], [1355.5, 1125.5], [1345.5, 1125.5]]}, {"id": "tx4tan", "submitted_by": "porthos3", "name": "Ark Game", "description": "Ark: Survival Evolved is a action-adventure survival video game published by Studio Wildcard that was released in 2017.nnThe players must survive being stranded in a map filled with roaming dinosaurs and prehistoric animals, hazards, fictional fantasy creatures.", "website": "https://en.wikipedia.org/wiki/Ark:_Survival_Evolved", "subreddit": "/r/ARK", "center": [1893.5, 1239.5], "path": [[1884.5, 1228.5], [1884.5, 1249.5], [1902.5, 1249.5], [1902.5, 1228.5]]}, -{"id": "tx4sy5", "submitted_by": "MangoInfinity1", "name": "Comedy Club Sofia", "description": "Bulgarian based comedy club", "website": "comedy.bg", "subreddit": "", "center": [1993.5, 874.5], "path": [[1998.5, 869.5], [1998.5, 879.5], [1987.5, 879.5], [1987.5, 869.5], [1987.5, 869.5]]}, +{"id": "tx4sy5", "submitted_by": "MangoInfinity1", "name": "Comedy Club Sofia", "description": "Bulgarian based comedy club", "website": "https://comedy.bg", "subreddit": "", "center": [1993.5, 874.5], "path": [[1998.5, 869.5], [1998.5, 879.5], [1987.5, 879.5], [1987.5, 869.5], [1987.5, 869.5]]}, {"id": "tx4stg", "submitted_by": "Slick10000", "name": "Lelouch vi Britannia's Geass", "description": "Lelouch's eye containing his Power of Absolute Obedience Geass from the anime Code Geass.", "website": "https://codegeass.fandom.com/wiki/Geass#Lelouch_vi_Britannia.27s_Geass", "subreddit": "/r/CodeGeass", "center": [1231.5, 1886.5], "path": [[1229.5, 1881.5], [1233.5, 1881.5], [1233.5, 1882.5], [1235.5, 1882.5], [1235.5, 1884.5], [1236.5, 1884.5], [1236.5, 1888.5], [1235.5, 1888.5], [1235.5, 1890.5], [1233.5, 1890.5], [1233.5, 1891.5], [1229.5, 1891.5], [1229.5, 1890.5], [1227.5, 1890.5], [1227.5, 1888.5], [1226.5, 1888.5], [1226.5, 1884.5], [1227.5, 1884.5], [1227.5, 1882.5], [1229.5, 1882.5]]}, {"id": "tx4slo", "submitted_by": "PumFlamingo", "name": "Claire", "description": "The protagonist of the beautiful game a short hike.", "website": "", "subreddit": "/r/aShortHike", "center": [1008.5, 880.5], "path": [[1006.5, 875.5], [1008.5, 875.5], [1008.5, 876.5], [1009.5, 876.5], [1009.5, 877.5], [1010.5, 877.5], [1010.5, 878.5], [1012.5, 878.5], [1012.5, 879.5], [1013.5, 879.5], [1012.5, 879.5], [1012.5, 880.5], [1011.5, 880.5], [1010.5, 880.5], [1010.5, 881.5], [1009.5, 881.5], [1009.5, 882.5], [1009.5, 883.5], [1010.5, 883.5], [1010.5, 884.5], [1011.5, 884.5], [1012.5, 884.5], [1012.5, 883.5], [1012.5, 884.5], [1013.5, 884.5], [1013.5, 885.5], [1006.5, 885.5], [1006.5, 884.5], [1005.5, 884.5], [1005.5, 883.5], [1004.5, 883.5], [1005.5, 883.5], [1005.5, 882.5], [1005.5, 881.5], [1004.5, 881.5], [1004.5, 880.5], [1003.5, 880.5], [1003.5, 878.5], [1004.5, 878.5], [1004.5, 877.5], [1005.5, 877.5], [1005.5, 876.5], [1006.5, 876.5], [1006.5, 875.5]]}, {"id": "tx4s8o", "submitted_by": "Will_McBride_", "name": "W", "description": "a W for u/Will_McBride_", "website": "", "subreddit": "/u/Will_McBride_", "center": [479.5, 1496.5], "path": [[475.5, 1493.5], [482.5, 1493.5], [482.5, 1494.5], [483.5, 1494.5], [483.5, 1497.5], [483.5, 1499.5], [475.5, 1499.5]]}, @@ -4943,7 +4575,6 @@ {"id": "tx4ri9", "submitted_by": "woodsballnc", "name": "UWU CAFE", "description": "Fictional RP Cafe in NoPixel GTA RP owned by Ash.", "website": "https://nopixel.fandom.com/wiki/UwU_Caf%C3%A9", "subreddit": "", "center": [1944.5, 1653.5], "path": [[1907.5, 1648.5], [1907.5, 1658.5], [1980.5, 1658.5], [1980.5, 1648.5]]}, {"id": "tx4rhx", "submitted_by": "Dez789", "name": "DEO X AMP X YRG", "description": "2 of the biggest black twitch communities representing BruceDropEmOff and Yourage supporting one another with the lightning bolt representing AMP", "website": "", "subreddit": "/r/brucedropemoff", "center": [700.5, 877.5], "path": [[631.5, 886.5], [631.5, 867.5], [770.5, 868.5], [769.5, 886.5], [677.5, 887.5], [702.5, 888.5], [644.5, 886.5], [644.5, 886.5]]}, {"id": "tx4rcf", "submitted_by": "woodsballnc", "name": "BazzaGazza", "description": "GTA RP Twitch Streamer", "website": "https://www.twitch.tv/bazzagazza", "subreddit": "", "center": [1890.5, 1617.5], "path": [[1907.5, 1633.5], [1907.5, 1601.5], [1873.5, 1600.5], [1873.5, 1634.5], [1907.5, 1633.5]]}, -{"id": "tx4r85", "submitted_by": "DiConti_", "name": "S.P.Q.R", "description": "Senatus Populusque Romanus, the slogan of the Roman empire", "website": "", "subreddit": "", "center": [1627.5, 493.5], "path": [[1604.5, 486.5], [1604.5, 499.5], [1650.5, 499.5], [1650.5, 486.5], [1604.5, 486.5]]}, {"id": "tx4qxs", "submitted_by": "Sandwich_S", "name": "Xuzhou chained woman incident", "description": "The Xuzhou chained woman incident (Chinese: \u5f90\u5dde\u94c1\u94fe\u5973\u4e8b\u4ef6), also known as the Xuzhou eight-child mother incident (Chinese: \u5f90\u5dde\u516b\u5b69\u6bcd\u4eb2\u4e8b\u4ef6), is a case of human trafficking, severe mistreatment, and subsequent events that came to light in late January 2022 in Feng County, Xuzhou, Jiangsu, People's Republic of China. The video of a mentally disturbed and imprisoned woman who was chained to a wall and who gave birth to eight children went viral on China's internet and sparked a huge public outcry.", "website": "https://en.wikipedia.org/wiki/Xuzhou_chained_woman_incident", "subreddit": "/r/China_irl", "center": [921.5, 141.5], "path": [[894.5, 116.5], [948.5, 116.5], [948.5, 165.5], [894.5, 165.5]]}, {"id": "tx4qu4", "submitted_by": "ostensacken", "name": "Pisa Cathedral", "description": "The Pisa Cathedral is a medieval Catholic cathedral in Pisa Italy. It is famously located next to the Leaning Tower of Pisa.", "website": "https://en.wikipedia.org/wiki/Pisa_Cathedral", "subreddit": "", "center": [792.5, 1053.5], "path": [[782.5, 1032.5], [794.5, 1032.5], [795.5, 1031.5], [795.5, 1032.5], [796.5, 1032.5], [797.5, 1033.5], [798.5, 1034.5], [798.5, 1036.5], [799.5, 1036.5], [799.5, 1041.5], [799.5, 1042.5], [800.5, 1042.5], [800.5, 1043.5], [801.5, 1043.5], [802.5, 1043.5], [802.5, 1044.5], [803.5, 1044.5], [803.5, 1045.5], [804.5, 1046.5], [805.5, 1046.5], [805.5, 1047.5], [804.5, 1048.5], [803.5, 1053.5], [804.5, 1058.5], [803.5, 1059.5], [803.5, 1061.5], [804.5, 1061.5], [804.5, 1072.5], [782.5, 1072.5]]}, {"id": "tx4qdr", "submitted_by": "foxie8m", "name": "2B4U Anarchy Server", "description": "Name of an anarchy minecraft server.", "website": "", "subreddit": "/r/2b4u", "center": [1928.5, 329.5], "path": [[1919.5, 333.5], [1919.5, 324.5], [1936.5, 324.5], [1936.5, 333.5], [1919.5, 333.5]]}, @@ -4957,23 +4588,21 @@ {"id": "tx4nhv", "submitted_by": "Cvbby", "name": "SimRC", "description": "SimRC is a German SimRacing community in the F1 games, IRacing and Assetto Corsa Competizione.", "website": "https://simrc.de/forum/", "subreddit": "", "center": [1709.5, 1678.5], "path": [[1704.5, 1675.5], [1714.5, 1675.5], [1714.5, 1681.5], [1704.5, 1681.5], [1704.5, 1675.5]]}, {"id": "tx4mog", "submitted_by": "Netjakk", "name": "WJSN Logo", "description": "WJSN (\uc6b0\uc8fc\uc18c\ub140; Uju Sonyeo; \u5b87\u5b99\u5c11\u5973), also known as Cosmic Girls, is a South Korean-Chinese girl group formed by Starship Entertainment and Yuehua Entertainment on February 25, 2016", "website": "", "subreddit": "", "center": [1518.5, 874.5], "path": [[1512.5, 878.5], [1513.5, 870.5], [1523.5, 870.5], [1523.5, 878.5]]}, {"id": "tx4mkb", "submitted_by": "Syberboi", "name": "Pop!OS logo", "description": "Pop!OS is a Linux distribution based on Ubuntu", "website": "", "subreddit": "", "center": [24.5, 736.5], "path": [[21.5, 733.5], [27.5, 733.5], [27.5, 739.5], [21.5, 739.5]]}, -{"id": "tx4mf6", "submitted_by": "UHavinAGiggleTherM8", "name": "Reindeer antlers", "description": "Reindeer husbandry has been and still is an important aspect of S\u00e1mi culture. Traditionally the S\u00e1mi lived and worked in reindeer herding groups which consist of several families and their herds.", "website": "", "subreddit": "/r/place_nordicunion", "center": [496.5, 51.5], "path": [[476.5, 38.5], [477.5, 52.5], [491.5, 62.5], [500.5, 62.5], [514.5, 53.5], [516.5, 39.5], [496.5, 50.5], [495.5, 50.5], [476.5, 38.5]]}, -{"id": "tx4m3d", "submitted_by": "DiConti_", "name": "A Vaporeon on the beach", "description": "A Vaporeon with a pretty flower in the head who spends his time sunbathing on the beach", "website": "", "subreddit": "", "center": [1988.5, 1286.5], "path": [[1976.5, 1273.5], [1980.5, 1300.5], [1999.5, 1300.5], [1999.5, 1273.5], [1976.5, 1273.5]]}, +{"id": "tx4mf6", "submitted_by": "UHavinAGiggleTherM8", "name": "Reindeer antlers", "description": "Reindeer husbandry has been and still is an important aspect of S\u00e1mi culture. Traditionally the S\u00e1mi lived and worked in reindeer-herding groups which consist of several families and their herds.", "website": "https://en.wikipedia.org/wiki/Reindeer_herding", "subreddit": "/r/place_nordicunion", "center": [496.5, 51.5], "path": [[476.5, 38.5], [477.5, 52.5], [491.5, 62.5], [500.5, 62.5], [514.5, 53.5], [516.5, 39.5], [496.5, 50.5], [495.5, 50.5], [476.5, 38.5]]}, {"id": "tx4lh7", "submitted_by": "Tijex10", "name": "sonic little and little knuckles", "description": "sonic and knuckles, this art represents the love between the Colombian Youtuber Tijex and her boyfriend", "website": "", "subreddit": "", "center": [290.5, 1232.5], "path": [[297.5, 1226.5], [297.5, 1238.5], [282.5, 1238.5], [282.5, 1226.5]]}, {"id": "tx4leh", "submitted_by": "PROPLAYEN", "name": "Terraria Gold Bunny", "description": "The Gold Bunny is a harmless Critter. It is a recolor of an ordinary Bunny, with a 1/400 chance of spawning in place of the ordinary version.nAs with all other gold critters, it can be caught with a Bug Net and sold for 10 gold.", "website": "https://terraria.fandom.com/wiki/Gold_Bunny", "subreddit": "/r/Terraria", "center": [418.5, 8.5], "path": [[416.5, 13.5], [414.5, 13.5], [412.5, 9.5], [412.5, 6.5], [415.5, 1.5], [417.5, 1.5], [418.5, 5.5], [421.5, 6.5], [425.5, 8.5], [425.5, 10.5], [424.5, 13.5]]}, {"id": "tx4ldt", "submitted_by": "Xengui", "name": "Lil Darkie/Brahman", "description": "Lil Darkie/Brahman is a music artist making experimental trap metal and rap.", "website": "https://soundcloud.com/lildvrkie", "subreddit": "/r/lildarkie", "center": [1596.5, 1392.5], "path": [[1592.5, 1387.5], [1600.5, 1387.5], [1600.5, 1396.5], [1592.5, 1396.5]]}, -{"id": "tx4lcr", "submitted_by": "Karyllon", "name": "Sen\u0101tus Populusque R\u014dm\u0101nus (SPQR)", "description": "SPQR, an abbreviation for Sen\u0101tus Populusque R\u014dm\u0101nus, is an emblematic abbreviated phrase referring to the government of the ancient Roman Republic. It appears on Roman currency, at the end of documents made public by an inscription in stone or metal, and in dedications of monuments and public and civil works.", "website": "https://en.wikipedia.org/wiki/SPQR", "subreddit": "/r/SPQr", "center": [1627.5, 493.5], "path": [[1605.5, 487.5], [1605.5, 498.5], [1649.5, 498.5], [1649.5, 487.5]]}, {"id": "tx4lam", "submitted_by": "Funneko", "name": "Minecraft commands", "description": "A community dedicated to help people with commands problems.", "website": "", "subreddit": "/r/MinecraftCommands", "center": [337.5, 1589.5], "path": [[323.5, 1580.5], [351.5, 1580.5], [351.5, 1599.5], [325.5, 1599.5], [325.5, 1595.5], [324.5, 1595.5], [324.5, 1594.5], [323.5, 1594.5], [323.5, 1580.5]]}, -{"id": "tx4l4i", "submitted_by": "NoMaans", "name": "Banano", "description": "A 4 panel collection of(top to bottom) Folding at Home x Cryptomonkeys, BananoChan and a parrot with the potassium elemental symbol and weight, the Banano Logos with a monkey on a vine, and a shoutout to jungletv.live", "website": "banano.cc", "subreddit": "/r/banano", "center": [824.5, 1405.5], "path": [[810.5, 1369.5], [809.5, 1439.5], [838.5, 1439.5], [838.5, 1384.5], [836.5, 1384.5], [836.5, 1369.5], [827.5, 1369.5]]}, -{"id": "tx4l2t", "submitted_by": "JOEBOBOBOB", "name": "Destroy The Godmodder II Logo", "description": "This logo represents the Destroy The Godmodder series of Forum Games, where generally-invulnerable players traditionally attempt to deal chip damage to the antagonist Godmodder 100 times despite all the Godmodding the Godmodder does in response. most prominent is the Destroy The Godmodder 2 Logo, this being the orange D, grey T, blue G, and Yellow II. obliquely are represented several other games, including destroy the godmodder, destroy the godmodder 2, destroy the godmodder 0rigins, destroy the godmodder tvtropes, Destroy the Godmodder: Chaos, Project Thymium, Defeat The Godmodder, and Destroy The Godmodder: MSPAradox. also represented at points is Confront The Godmodder, by way of the cyan line on the right which is also part of Shark Pog.", "website": "https://tvtropes.org/pmwiki/pmwiki.php/Roleplay/DestroyTheGodmodder", "subreddit": "", "center": [701.5, 242.5], "path": [[694.5, 234.5], [708.5, 234.5], [708.5, 250.5], [694.5, 250.5]]}, +{"id": "tx4l4i", "submitted_by": "NoMaans", "name": "Banano", "description": "A 4 panel collection of(top to bottom) Folding at Home x Cryptomonkeys, BananoChan and a parrot with the potassium elemental symbol and weight, the Banano Logos with a monkey on a vine, and a shoutout to jungletv.live", "website": "https://banano.cc", "subreddit": "/r/banano", "center": [824.5, 1405.5], "path": [[810.5, 1369.5], [809.5, 1439.5], [838.5, 1439.5], [838.5, 1384.5], [836.5, 1384.5], [836.5, 1369.5], [827.5, 1369.5]]}, +{"id": "tx4l2t", "submitted_by": "operation_urus", "name": "Destroy The Godmodder 2 Logo", "description": "The logo of Destroy the Godmodder 2: Operator, the second of a series of play-by-post games hosted on various forums. Players must devise ways to defeat a godmodder, who can block nearly any attack thrown at him. The series is a large crossover, with the godmodder and players able to summon or use anything from any fictional universe in their fight.\n\nAlso included in the logo are pixels symbolizing other entries in the series. From top to bottom, left to right: DTG1, DTG2, DTG: 0rigins, DTG: TVTropes, DTG: Chaos, Project Thymium, Defeat the Godmodder, and DTG: MSPAradox.", "website": "https://tvtropes.org/pmwiki/pmwiki.php/Roleplay/DestroyTheGodmodder", "subreddit": "", "center": [701.5, 242.5], "path": [[694.5, 234.5], [708.5, 234.5], [708.5, 250.5], [694.5, 250.5]]}, {"id": "tx4kzm", "submitted_by": "Xooris_", "name": "Team [RAGDL]", "description": "French Discord community of friends based on Apex, LOL and Dayz ;)", "website": "", "subreddit": "", "center": [1065.5, 1899.5], "path": [[1057.5, 1896.5], [1073.5, 1896.5], [1073.5, 1896.5], [1073.5, 1901.5], [1073.5, 1901.5], [1057.5, 1901.5], [1057.5, 1901.5], [1057.5, 1896.5], [1057.5, 1896.5]]}, {"id": "tx4kqu", "submitted_by": "Xorit_", "name": "Lorde - Melodrama", "description": "Album cover from 'Melodrama' by Lorde", "website": "https://www.lorde.co.nz/", "subreddit": "/r/lorde", "center": [955.5, 1637.5], "path": [[941.5, 1625.5], [941.5, 1648.5], [969.5, 1648.5], [969.5, 1625.5], [941.5, 1625.5]]}, {"id": "tx4kpb", "submitted_by": "Forsaken_Engine_8363", "name": "Senatus Populusque Romanus (Roman Empire)", "description": "Banner of the Senatus Populusque Romanus, more commonly known as the Roman Empire. After being sacked by XqC, the SPQR managed to make a comeback, securing their position on r/place.", "website": "", "subreddit": "/r/SPQRposting", "center": [1627.5, 493.5], "path": [[1604.5, 487.5], [1604.5, 499.5], [1650.5, 499.5], [1650.5, 487.5]]}, {"id": "tx4kiv", "submitted_by": "RickDoesntCare", "name": "Free Hong Kong", "description": "The white Bauhinia flower built on Obi Wan's cloak is the Honk Kong national flower.", "website": "", "subreddit": "/r/HongKong", "center": [815.5, 1694.5], "path": [[817.5, 1673.5], [839.5, 1685.5], [825.5, 1715.5], [797.5, 1710.5], [794.5, 1683.5]]}, {"id": "tx4kht", "submitted_by": "CookiezFort", "name": "University of Manchester", "description": "A small logo made by the esports soc of university of manchester in the UK", "website": "https://uomesports.co.uk/", "subreddit": "", "center": [1345.5, 1911.5], "path": [[1326.5, 1906.5], [1363.5, 1906.5], [1364.5, 1916.5], [1326.5, 1915.5], [1326.5, 1910.5], [1326.5, 1906.5]]}, {"id": "tx4jvh", "submitted_by": "Prior_Gate_9909", "name": "Los Angeles Kings", "description": "The Kings are a professional Ice Hockey team based out of Los Angeles. The Kings are apart of of the NHL, and play in the Pacific Divison.", "website": "https://www.nhl.com/kings", "subreddit": "/r/losangeleskings", "center": [322.5, 1255.5], "path": [[327.5, 1251.5], [325.5, 1251.5], [325.5, 1248.5], [322.5, 1247.5], [319.5, 1248.5], [317.5, 1251.5], [317.5, 1260.5], [321.5, 1264.5], [323.5, 1264.5], [327.5, 1260.5]]}, -{"id": "tx4juz", "submitted_by": "skenderleet", "name": "TH Aschaffenburg", "description": "The Technical University of Aschaffenburg is a university of applied sciences in Aschaffenburg, Bavaria, which was founded in 1995.", "website": "th-ab.de", "subreddit": "", "center": [979.5, 1173.5], "path": [[969.5, 1171.5], [988.5, 1171.5], [988.5, 1175.5], [969.5, 1175.5]]}, -{"id": "tx4jt8", "submitted_by": "Kunuc", "name": "The Gateway Arch", "description": "The Gateway Arch is a 630-foot tall monument in St. Louis, Missouri, United States. The Gateway Arch reflects St. Louis' role in the Westward Expansion of the United States during the nineteenth century.", "website": "https://en.wikipedia.org/wiki/Gateway_Arch", "subreddit": "", "center": [1843.5, 1855.5], "path": [[1829.5, 1867.5], [1830.5, 1860.5], [1831.5, 1856.5], [1831.5, 1855.5], [1832.5, 1853.5], [1833.5, 1850.5], [1835.5, 1848.5], [1837.5, 1845.5], [1841.5, 1843.5], [1844.5, 1842.5], [1847.5, 1843.5], [1848.5, 1846.5], [1850.5, 1847.5], [1852.5, 1851.5], [1854.5, 1854.5], [1855.5, 1858.5], [1857.5, 1862.5], [1857.5, 1867.5], [1849.5, 1867.5], [1849.5, 1861.5], [1848.5, 1858.5], [1846.5, 1854.5], [1845.5, 1850.5], [1843.5, 1849.5], [1841.5, 1850.5], [1838.5, 1855.5], [1837.5, 1859.5], [1836.5, 1861.5], [1836.5, 1864.5], [1836.5, 1867.5]]}, +{"id": "tx4juz", "submitted_by": "skenderleet", "name": "TH Aschaffenburg", "description": "The Technical University of Aschaffenburg is a university of applied sciences in Aschaffenburg, Bavaria, which was founded in 1995.", "website": "https://th-ab.de", "subreddit": "", "center": [979.5, 1173.5], "path": [[969.5, 1171.5], [988.5, 1171.5], [988.5, 1175.5], [969.5, 1175.5]]}, +{"id": "tx4jt8", "submitted_by": "Kunuc", "name": "The Gateway Arch", "description": "The Gateway Arch is a 630-foot tall monument in St. Louis, Missouri, United States. Clad in stainless steel and built in the form of a weighted catenary arch, it is the world's tallest arch. The Gateway Arch reflects St. Louis's role in the westward expansion of the United States during the nineteenth century.", "website": "https://www.gatewayarch.com/", "subreddit": "/r/AmericanFlagInPlace", "center": [1843.5, 1855.5], "path": [[1829.5, 1867.5], [1830.5, 1860.5], [1831.5, 1856.5], [1831.5, 1855.5], [1832.5, 1853.5], [1833.5, 1850.5], [1835.5, 1848.5], [1837.5, 1845.5], [1841.5, 1843.5], [1844.5, 1842.5], [1847.5, 1843.5], [1848.5, 1846.5], [1850.5, 1847.5], [1852.5, 1851.5], [1854.5, 1854.5], [1855.5, 1858.5], [1857.5, 1862.5], [1857.5, 1867.5], [1849.5, 1867.5], [1849.5, 1861.5], [1848.5, 1858.5], [1846.5, 1854.5], [1845.5, 1850.5], [1843.5, 1849.5], [1841.5, 1850.5], [1838.5, 1855.5], [1837.5, 1859.5], [1836.5, 1861.5], [1836.5, 1864.5], [1836.5, 1867.5]]}, {"id": "tx4jgr", "submitted_by": "Karyllon", "name": "Flag of Argentina", "description": "", "website": "https://en.wikipedia.org/wiki/Argentina", "subreddit": "/r/argentina", "center": [1779.5, 1116.5], "path": [[1769.5, 1111.5], [1769.5, 1121.5], [1789.5, 1121.5], [1789.5, 1111.5]]}, {"id": "tx4j5h", "submitted_by": "PROPLAYEN", "name": "Terraria Bunny", "description": "Bunnies are harmless critters that can be caught with a Bug Net and do not normally interact with the player in any other way. They usually serve as ambient entities in Terraria.", "website": "https://terraria.fandom.com/wiki/Bunny", "subreddit": "/r/Terraria", "center": [404.5, 8.5], "path": [[397.5, 10.5], [397.5, 8.5], [404.5, 5.5], [405.5, 1.5], [407.5, 1.5], [410.5, 6.5], [410.5, 9.5], [407.5, 10.5], [408.5, 13.5], [398.5, 13.5]]}, {"id": "tx4j5f", "submitted_by": "Tijex10", "name": "sonic and knuckles", "description": "sonic and knuckles, this art represents the love between the Colombian Youtuber Tijex and her boyfriend", "website": "", "subreddit": "", "center": [290.5, 1232.5], "path": [[282.5, 1226.5], [297.5, 1226.5], [297.5, 1238.5], [282.5, 1238.5]]}, @@ -4981,19 +4610,17 @@ {"id": "tx4isr", "submitted_by": "immanoel", "name": "Nijisanji and Hololive Heart", "description": "NIJISANJI project is a VTuber group featuring a variety of talented influencers who create exciting content. The objective of this project is to accelerate the beginning of the next generation of entertainment through various activities and services such as events, goods and digital content, original music, etc. Currently, over a hundred VTubers are active, regularly creating unique content on various video streaming platforms, such as YouTube.nHololive Production is a virtual YouTuber agency owned by Japanese tech entertainment company Cover Corporation. In addition to acting as a multi-channel network, Hololive Production also handles merchandising especially in music production and concert organization", "website": "https://www.nijisanji.jp/en https://en.hololive.tv/", "subreddit": "/r/nijisanji, /r/hololive", "center": [196.5, 719.5], "path": [[191.5, 715.5], [201.5, 715.5], [201.5, 720.5], [196.5, 725.5], [191.5, 720.5]]}, {"id": "tx4ipd", "submitted_by": "KassXWolfXTigerXFox", "name": "Menacing Symbol", "description": "The Japanese katakana for the syllable go, used in the manga and anime of JoJo's Bizarre Adventure to present danger: menacing.", "website": "", "subreddit": "", "center": [70.5, 909.5], "path": [[62.5, 918.5], [73.5, 916.5], [74.5, 908.5], [75.5, 907.5], [75.5, 905.5], [78.5, 901.5], [77.5, 899.5], [75.5, 901.5], [74.5, 899.5], [72.5, 899.5], [71.5, 902.5], [72.5, 903.5], [71.5, 904.5], [69.5, 904.5], [66.5, 902.5], [62.5, 910.5], [63.5, 911.5], [63.5, 911.5], [69.5, 908.5], [71.5, 908.5], [71.5, 910.5], [70.5, 913.5], [64.5, 913.5], [62.5, 915.5], [62.5, 918.5]]}, {"id": "tx4igv", "submitted_by": "crowlily", "name": "Brave Girls", "description": "Brave Girls is a South Korean girl group, currently consisting of members Minyoung, Yujeong, Eunji and Yuna. Their 2017 song Rollin' unexpectedly went viral in 2021, leading to a massive chart resurgence and propelling them to household names. As of April 2022 they are on the reality competition show Queendom 2, where six rising female acts compete to determine the real queen.", "website": "https://www.youtube.com/playlist?list=PLW6Zv3RcLxTDhF1TqJ50lpgshE3P6ojLL", "subreddit": "/r/bravegirls", "center": [1689.5, 885.5], "path": [[1680.5, 879.5], [1697.5, 879.5], [1697.5, 891.5], [1680.5, 891.5], [1680.5, 879.5]]}, -{"id": "tx4idf", "submitted_by": "Mightfr", "name": "France Tour de France", "description": "The Tour de France is an annual men multiple-stage bicycle race primarily held in France, while also occasionally passing through nearby countries. It consists of 21 stages, each a day long, over the course of 23 days.", "website": "", "subreddit": "", "center": [105.5, 1963.5], "path": [[0.5, 1968.5], [249.5, 1968.5], [247.5, 1961.5], [198.5, 1961.5], [194.5, 1964.5], [178.5, 1964.5], [177.5, 1960.5], [175.5, 1960.5], [173.5, 1964.5], [149.5, 1963.5], [149.5, 1958.5], [69.5, 1957.5], [1.5, 1955.5], [0.5, 1969.5], [11.5, 1971.5]]}, +{"id": "tx4idf", "submitted_by": "Mightfr", "name": "Tour de France", "description": "The Tour de France is an annual men multiple-stage bicycle race primarily held in France, while also occasionally passing through nearby countries. It consists of 21 stages, each a day long, over the course of 23 days.", "website": "https://en.wikipedia.org/wiki/Tour_de_France", "subreddit": "/r/placefrance", "center": [105.5, 1963.5], "path": [[0.5, 1968.5], [249.5, 1968.5], [247.5, 1961.5], [198.5, 1961.5], [194.5, 1964.5], [178.5, 1964.5], [177.5, 1960.5], [175.5, 1960.5], [173.5, 1964.5], [149.5, 1963.5], [149.5, 1958.5], [69.5, 1957.5], [1.5, 1955.5], [0.5, 1969.5], [11.5, 1971.5]]}, {"id": "tx4i99", "submitted_by": "Karyllon", "name": "Flag of Peru", "description": "", "website": "https://en.wikipedia.org/wiki/Peru", "subreddit": "/r/PERU", "center": [1779.5, 1082.5], "path": [[1769.5, 1064.5], [1769.5, 1099.5], [1789.5, 1099.5], [1789.5, 1064.5]]}, {"id": "tx4i0r", "submitted_by": "IMPOSSABLANK", "name": "Ghost Trick: Phantom Detective", "description": "The small remains of Sissel.", "website": "", "subreddit": "/r/GhostTrick", "center": [1319.5, 457.5], "path": [[1319.5, 449.5], [1314.5, 461.5], [1324.5, 461.5], [1321.5, 451.5]]}, {"id": "tx4geb", "submitted_by": "RUB_23", "name": "Pal\u00e1cio da Pena", "description": "The National Pena Palace, normally called Pal\u00e1cio da Pena, is a palace located in Sintra, Portugal", "website": "", "subreddit": "/r/Portugal", "center": [957.5, 345.5], "path": [[921.5, 359.5], [928.5, 359.5], [964.5, 359.5], [980.5, 359.5], [992.5, 359.5], [995.5, 359.5], [994.5, 357.5], [990.5, 354.5], [992.5, 346.5], [989.5, 344.5], [987.5, 342.5], [986.5, 342.5], [986.5, 332.5], [981.5, 332.5], [980.5, 331.5], [973.5, 331.5], [973.5, 324.5], [968.5, 324.5], [968.5, 331.5], [967.5, 331.5], [967.5, 335.5], [959.5, 335.5], [952.5, 334.5], [952.5, 337.5], [944.5, 337.5], [944.5, 330.5], [942.5, 326.5], [939.5, 324.5], [936.5, 324.5], [934.5, 326.5], [932.5, 328.5], [931.5, 330.5], [931.5, 343.5], [927.5, 343.5], [927.5, 338.5], [924.5, 337.5], [923.5, 356.5], [922.5, 357.5], [921.5, 358.5]]}, {"id": "tx4gdt", "submitted_by": "DiConti_", "name": "Lithuania", "description": "The flag of Lithuania", "website": "", "subreddit": "", "center": [625.5, 599.5], "path": [[601.5, 588.5], [601.5, 609.5], [648.5, 609.5], [648.5, 588.5], [601.5, 588.5]]}, {"id": "tx4fgt", "submitted_by": "pi_squared_over6", "name": "Streamer BazzaGazza", "description": "Brodey Rogan de Meur, better known online as Bazza Gazza, is an Australian YouTuber, Twitch streamer and member of BBMC best known for his gaming content", "website": "https://www.twitch.tv/bazzagazza", "subreddit": "/r/BazzaGazza", "center": [1890.5, 1617.5], "path": [[1874.5, 1600.5], [1907.5, 1600.5], [1907.5, 1634.5], [1873.5, 1634.5], [1873.5, 1601.5], [1874.5, 1600.5]]}, -{"id": "tx4fb6", "submitted_by": "NowThisNameIsTaken", "name": "The University of Manchester", "description": "The University of Manchester acronym next to the Manchester bee.", "website": "https://www.manchester.ac.uk/", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx4f7r", "submitted_by": "fdgfchgvjhbk", "name": "Toontown Quackity", "description": "the Toontown avatar and old profile picture of the streamer Quackity. Made by the quacktwt, patitotwt and organized by SleepyStufful", "website": "", "subreddit": "", "center": [1770.5, 447.5], "path": [[1759.5, 437.5], [1759.5, 459.5], [1782.5, 459.5], [1782.5, 435.5], [1760.5, 434.5], [1760.5, 434.5]]}, -{"id": "tx4ezm", "submitted_by": "Mediaflow", "name": "Kcorp logo", "description": "Karmine Corp is a french structur based in Paris, centered on e-sport, made by Kameto", "website": "", "subreddit": "", "center": [83.5, 1940.5], "path": [[81.5, 1933.5], [77.5, 1936.5], [77.5, 1940.5], [82.5, 1948.5], [85.5, 1945.5], [88.5, 1944.5], [89.5, 1938.5]]}, +{"id": "tx4ezm", "submitted_by": "Mediaflow", "name": "Karmine Corp logo", "description": "Karmine Corp is a French e-sports organization based in Paris, made by Kameto.", "website": "https://en.wikipedia.org/wiki/Karmine_Corp", "subreddit": "/r/placefrance", "center": [83.5, 1940.5], "path": [[81.5, 1933.5], [77.5, 1936.5], [77.5, 1940.5], [82.5, 1948.5], [85.5, 1945.5], [88.5, 1944.5], [89.5, 1938.5]]}, {"id": "tx4evl", "submitted_by": "Tijex10", "name": "Venezuela's flag", "description": "Venezuela is a very beautiful South American country neighboring Colombia, Guayana and Brazil", "website": "", "subreddit": "", "center": [1116.5, 1333.5], "path": [[1099.5, 1327.5], [1132.5, 1327.5], [1132.5, 1339.5], [1099.5, 1339.5]]}, {"id": "tx4ejd", "submitted_by": "P_MOVIE", "name": "TBE", "description": "The inside joke from an English rock band, black midi. It's the phase that their frontman, Geordie Greep, keeps using during his Instagram live. And now it's become a famously phase among the fan.", "website": "https://bmblackmidi.com/", "subreddit": "/r/bmbmbm", "center": [1090.5, 1807.5], "path": [[1085.5, 1804.5], [1085.5, 1810.5], [1093.5, 1810.5], [1097.5, 1804.5]]}, {"id": "tx4e9n", "submitted_by": "MrDaweed2", "name": "Joyintv Community", "description": "A contribution of the community of Joyin from Twitch", "website": "https://www.twitch.tv/joyintv", "subreddit": "", "center": [1563.5, 1426.5], "path": [[1556.5, 1422.5], [1570.5, 1422.5], [1570.5, 1429.5], [1556.5, 1429.5], [1556.5, 1422.5]]}, -{"id": "tx4dcr", "submitted_by": "Galestar", "name": "FagPoo", "description": "Original griefers of the Canadian Flag. Pretty terrible web-based game.", "website": "https://www.reddit.com/r/Fagpoo/", "subreddit": "/r/Fagpoo", "center": [1753.5, 1935.5], "path": [[1732.5, 1919.5], [1732.5, 1951.5], [1773.5, 1951.5], [1773.5, 1919.5]]}, {"id": "tx4d88", "submitted_by": "TheBelzeGuy", "name": "U-cursin", "description": "Character from u-cursos, a university platform and forum in Chile", "website": "https://www.u-cursos.cl", "subreddit": "", "center": [1278.5, 1638.5], "path": [[1286.5, 1647.5], [1270.5, 1647.5], [1270.5, 1628.5], [1286.5, 1628.5]]}, {"id": "tx4cfm", "submitted_by": "HayWeeME", "name": "RV-PV (Remnants of the Void - Phantom Vanguard)", "description": "RV and PV are 2 sister clans from the free to play MMORPG Warframe and are one of the top clans in the game. The name RV-PV is an abbreviation for the name of the clan (Remnants of the Void) and it's sister clan (Phantom Vanguard) respectfully. (Pictured is also a small rendition of RV's logo to the right of the text)", "website": "https://discord.gg/rv-pv", "subreddit": "/r/warframe", "center": [607.5, 1600.5], "path": [[621.5, 1604.5], [592.5, 1604.5], [592.5, 1596.5], [621.5, 1596.5]]}, {"id": "tx4cb3", "submitted_by": "doluclicksheads", "name": "Omega Sweats Official Logo", "description": "Omega Sweats is a discord server created by CardBoardy. The server is known for it's many pro players in various online games. The small group fought off many attackers to keep their land eventually leading to an alliance with the /r/sixers group creating Joel Embiid , pictured to the left.", "website": "https://twitter.com/omegasweats", "subreddit": "/r/Omega_sweats", "center": [1383.5, 1301.5], "path": [[1379.5, 1306.5], [1379.5, 1306.5], [1379.5, 1306.5], [1379.5, 1306.5], [1387.5, 1306.5], [1387.5, 1295.5], [1379.5, 1295.5]]}, @@ -5011,59 +4638,50 @@ {"id": "tx4a0u", "submitted_by": "TheBelzeGuy", "name": "Inserter", "description": "Inserter from factorio", "website": "https://www.factorio.com", "subreddit": "/r/factorio", "center": [1569.5, 560.5], "path": [[1567.5, 566.5], [1567.5, 566.5], [1567.5, 567.5], [1566.5, 566.5], [1564.5, 566.5], [1564.5, 553.5], [1574.5, 553.5], [1574.5, 566.5]]}, {"id": "tx49uu", "submitted_by": "Mediaflow", "name": "Lancer", "description": "Lancer is an important character from toby fox game Deltarune", "website": "", "subreddit": "", "center": [1509.5, 1554.5], "path": [[1507.5, 1536.5], [1498.5, 1545.5], [1498.5, 1567.5], [1522.5, 1567.5], [1522.5, 1558.5], [1516.5, 1553.5], [1517.5, 1545.5]]}, {"id": "tx49su", "submitted_by": "theatomicwhale", "name": "Donda", "description": "Created by members of r/WestSubEver to commemorate Kanye West's 10th studio album, named after his mother.", "website": "", "subreddit": "/r/WestSubEver", "center": [8.5, 807.5], "path": [[14.5, 783.5], [15.5, 829.5], [0.5, 829.5], [2.5, 782.5], [2.5, 783.5]]}, -{"id": "tx49f5", "submitted_by": "Vesper0906", "name": "Plan P", "description": "Plan P was origannally a effort to help save Pewdiepies Subcount, in his war against T-Series, which developed a community, who later made this.", "website": "[discord.gg/planp](https://discord.gg/planp)", "subreddit": "", "center": [1353.5, 452.5], "path": [[1343.5, 446.5], [1363.5, 446.5], [1363.5, 457.5], [1343.5, 457.5]]}, +{"id": "tx49f5", "submitted_by": "Vesper0906", "name": "Plan P", "description": "Plan P was origannally a effort to help save Pewdiepies Subcount, in his war against T-Series, which developed a community, who later made this.", "website": "https://discord.gg/planp", "subreddit": "", "center": [1353.5, 452.5], "path": [[1343.5, 446.5], [1363.5, 446.5], [1363.5, 457.5], [1343.5, 457.5]]}, {"id": "tx49cv", "submitted_by": "Notberrysubtle", "name": "Ho-kago Tea Time", "description": "The logo for the fictional band Ho-kago Tea Time in the anime series K-on!", "website": "", "subreddit": "/r/k_on", "center": [1500.5, 905.5], "path": [[1491.5, 898.5], [1491.5, 912.5], [1508.5, 912.5], [1508.5, 898.5], [1491.5, 898.5], [1491.5, 912.5]]}, {"id": "tx497z", "submitted_by": "JudyJudyBoBooty", "name": "Former Location of the Portugal-Lattice Treaty Tile", "description": "The Portugal-Lattice treaty tile was created by one Green Lattice member and was a memorialised sign of peace between the members of r/GreenLattice and r/Portugal, who before the first expansion of the canvas fought a major conflict that almost wiped r/GreenLattice from the Canvas. The tile was in the same style as the Portuguese tiles to the west, however was coloured in the same manner as the Lattice's Green Hues and Black. This was wiped from the canvas after streamer Asmongold replaced the area with a new piece. After the piece had gone, it was not rebuilt, although the Lattice had promised to restore the piece.", "website": "", "subreddit": "/r/GreenLattice", "center": [1017.5, 462.5], "path": [[1021.5, 457.5], [1021.5, 466.5], [1012.5, 466.5], [1012.5, 457.5]]}, {"id": "tx48mx", "submitted_by": "Kimori09", "name": "Overgamers", "description": "Little group of friends trying to have a corner in the history of internetnJorge, Elias, Nico y Santi <3", "website": "", "subreddit": "", "center": [83.5, 987.5], "path": [[72.5, 982.5], [93.5, 982.5], [93.5, 992.5], [72.5, 992.5]]}, {"id": "tx48jq", "submitted_by": "Daggy1234", "name": "Duke Logo", "description": "Part of the ACC alliance shoutout to the Duke alliance, we were small, but we survived UNC raids, relocations and more to defend our spot.", "website": "https://duke.edu", "subreddit": "/r/duke", "center": [345.5, 1642.5], "path": [[339.5, 1636.5], [339.5, 1647.5], [351.5, 1647.5], [351.5, 1636.5]]}, {"id": "tx48fo", "submitted_by": "AerospaceTechNerd", "name": "Coats of arms of the regions of Austria", "description": "The coats of arms of Burgenland, Lower Austria, Vienna, Styria, Corinthia, Upper Austria, Salzburg, Tyrol ,and Voararlberg", "website": "", "subreddit": "/r/Austria", "center": [1035.5, 254.5], "path": [[997.5, 258.5], [1072.5, 258.5], [1072.5, 249.5], [997.5, 249.5]]}, -{"id": "tx48d4", "submitted_by": "PROPLAYEN", "name": "Nether Portals", "description": "A nether portal is a manufactured structure that acts as a gateway between the Overworld and the Nether dimensions in the game Minecraft.nThis pair of Nether portals allows for the GME Stock price line to pass the Hermitcraft logo without interference.", "website": "https://minecraft.fandom.com/wiki/Nether_portal", "subreddit": "/r/minecraft", "center": [908.5, 588.5], "path": [[909.5, 596.5], [906.5, 596.5], [906.5, 579.5], [909.5, 579.5]]}, +{"id": "tx48d4", "submitted_by": "PROPLAYEN", "name": "Nether portals", "description": "A nether portal is a manufactured structure that acts as a gateway between the Overworld and the Nether dimensions in the game Minecraft.\n\nThis pair of Nether portals allows for the GME stock price line to pass the Hermitcraft logo without interference.", "website": "https://minecraft.fandom.com/wiki/Nether_portal", "subreddit": "/r/minecraft, /r/hermitcraft, /r/superstonk", "center": [908.5, 588.5], "path": [[909.5, 596.5], [906.5, 596.5], [906.5, 579.5], [909.5, 579.5]]}, {"id": "tx47pq", "submitted_by": "P_MOVIE", "name": "Donda", "description": "The name of the tenth studio album by American rapper Kanye West", "website": "", "subreddit": "/r/kanye", "center": [7.5, 805.5], "path": [[0.5, 782.5], [0.5, 827.5], [14.5, 827.5], [14.5, 782.5]]}, {"id": "tx47p4", "submitted_by": "Siegessch", "name": "SpleefLeague", "description": "Minecraft Server mainly dedicated to the minigame Spleef. The letters SL represent the server name. The diamond shovel is the most important tool used for Spleef.", "website": "https://spleefleague.com/", "subreddit": "", "center": [1738.5, 351.5], "path": [[1731.5, 360.5], [1731.5, 354.5], [1741.5, 342.5], [1746.5, 342.5], [1747.5, 346.5], [1738.5, 354.5], [1738.5, 360.5]]}, -{"id": "tx47gx", "submitted_by": "TiredLaureb", "name": "The Spiral Mural", "description": "A collaborative mural made by the members of multiple communities, with references to content creators such as: Foolish Gamers, Tina Kitten, Karl Jacobs, Punz, Sapnap, Corpse Husband, and others. References to games such as Hollow Knight and Everybody Wham Wham are also pictured alongside a popular chat emote, Jammies", "website": "", "subreddit": "", "center": [1216.5, 1026.5], "path": [[1160.5, 928.5], [1284.5, 928.5], [1285.5, 1115.5], [1130.5, 1114.5], [1130.5, 1039.5], [1161.5, 1038.5], [1160.5, 929.5]]}, {"id": "tx47dm", "submitted_by": "ckjaver", "name": "ESIEA", "description": "ESIEA (\u00c9cole sup\u00e9rieure d'informatique \u00e9lectronique automatique) is a French computer engineering school", "website": "https://www.esiea.fr/", "subreddit": "", "center": [1679.5, 42.5], "path": [[1663.5, 36.5], [1663.5, 47.5], [1694.5, 47.5], [1694.5, 36.5], [1663.5, 36.5]]}, -{"id": "tx47cg", "submitted_by": "Tijex10", "name": "The friendly little amongus", "description": "A little amongus art made by tijex and his partner, there are many others all over pixel art", "website": "", "subreddit": "", "center": [64.5, 1928.5], "path": [[70.5, 1933.5], [70.5, 1923.5], [57.5, 1925.5], [57.5, 1932.5]]}, {"id": "tx477w", "submitted_by": "Hello_Wordluwu", "name": "DNF Flag", "description": "Flag of the ship DreamNotFound, betwen content creators Dream and GeorgeNotFound.", "website": "", "subreddit": "", "center": [1100.5, 1108.5], "path": [[1083.5, 1101.5], [1116.5, 1101.5], [1116.5, 1114.5], [1083.5, 1114.5]]}, -{"id": "tx474f", "submitted_by": "jumAf97", "name": "Ark Survival Evolveld logo", "description": "Ark: Survival Evolved is an Action-Adventure, Survival, and Multiplayer video game developed and published by Studio Wildcard.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx46vy", "submitted_by": "Patitodelamoruwu", "name": "Neon Glory", "description": "Neon glory initials. The worldwide famous esports team.", "website": "https://youtu.be/Ky09Y7whoAA", "subreddit": "", "center": [1282.5, 1370.5], "path": [[1278.5, 1367.5], [1278.5, 1367.5], [1278.5, 1367.5], [1285.5, 1367.5], [1285.5, 1372.5], [1278.5, 1372.5], [1278.5, 1372.5]]}, {"id": "tx46k2", "submitted_by": "Falxo7326", "name": "Mariners", "description": "The Seattle Mariners trident that was previously used as the team's logo, with an extended handle. On the right are the numbers of some of the best player's from the team's history. From top to bottom, Julio Rodr\u00edguez(44), Dan Wilson(6), Kyle Seager(15), Jay Buhner(19), Felix Hernandez(34), Randy Johnson/Ichiro Suzuki(Both wore 51), Edgar Martinez(11), Ken Griffey Jr.(24)", "website": "https://www.mlb.com/mariners", "subreddit": "/r/Mariners", "center": [1568.5, 689.5], "path": [[1576.5, 728.5], [1557.5, 728.5], [1554.5, 725.5], [1555.5, 724.5], [1555.5, 714.5], [1558.5, 711.5], [1563.5, 711.5], [1563.5, 613.5], [1565.5, 613.5], [1565.5, 638.5], [1567.5, 638.5], [1567.5, 653.5], [1576.5, 653.5]]}, {"id": "tx46c5", "submitted_by": "foxie8m", "name": "Trans-British Heart", "description": "A symbol of love meant to show solidarity between trans people and british people, built to combat the infamous transphobia that has been rampant in British news media.", "website": "https://www.bbc.com/", "subreddit": "/r/transplace", "center": [635.5, 476.5], "path": [[635.5, 482.5], [640.5, 477.5], [640.5, 474.5], [637.5, 472.5], [635.5, 473.5], [632.5, 472.5], [629.5, 474.5], [629.5, 477.5], [635.5, 482.5]]}, -{"id": "tx467v", "submitted_by": "LHPN", "name": "French snail", "description": "Snail is a french specialty, cooked with garlic butter sauce in the most of cases.", "website": "", "subreddit": "", "center": [27.5, 1774.5], "path": [[25.5, 1767.5], [30.5, 1764.5], [39.5, 1766.5], [41.5, 1775.5], [41.5, 1779.5], [48.5, 1779.5], [51.5, 1782.5], [18.5, 1783.5], [10.5, 1772.5], [8.5, 1762.5], [11.5, 1761.5], [14.5, 1765.5], [17.5, 1760.5], [19.5, 1765.5], [18.5, 1772.5], [20.5, 1777.5], [22.5, 1770.5]]}, {"id": "tx465v", "submitted_by": "Crafty-Ambition-9168", "name": "Karby", "description": "A guy who tried to build Kirby got griefed multiple times. Until he got in touch with ALTV.MP. They protected 'Karby' and built a street for him.", "website": "https://www.reddit.com/r/place/comments/tx3igh/the_rplace_kirby_car_saga/", "subreddit": "", "center": [516.5, 1419.5], "path": [[507.5, 1414.5], [525.5, 1414.5], [524.5, 1423.5], [524.5, 1424.5], [510.5, 1423.5], [507.5, 1424.5]]}, {"id": "tx4614", "submitted_by": "Sun1ght", "name": "Asoul Emotes", "description": "A collection of emotes for the members of Chinese Vtuber group Asoul", "website": "https://space.bilibili.com/703007996", "subreddit": "/r/ASOUL", "center": [1229.5, 1290.5], "path": [[1179.5, 1280.5], [1179.5, 1301.5], [1280.5, 1300.5], [1279.5, 1279.5]]}, {"id": "tx45sf", "submitted_by": "hu-ry", "name": "Technical University of Darmstadt", "description": "University of Darmstadt (Germany). Made in part of the effort from the tud_geekhub community also located in the top right corner of r/place with their logo ''. The chosen colors where inspired by the original colors of the tud_geekhub logo.", "website": "https://www.tu-darmstadt.de", "subreddit": "/r/TU_Darmstadt", "center": [936.5, 1730.5], "path": [[889.5, 1725.5], [889.5, 1735.5], [983.5, 1735.5], [983.5, 1725.5], [889.5, 1725.5]]}, {"id": "tx45p8", "submitted_by": "the_waifu_translator", "name": "Onigiri", "description": "The onigiri is the oshi mark (fan symbol) of Hololiver Nekomata Okayu, which fans commonly put after their nicknames on Twitter or other social media to show their support for her.", "website": "", "subreddit": "/r/hololive", "center": [1399.5, 952.5], "path": [[1395.5, 955.5], [1395.5, 952.5], [1396.5, 952.5], [1396.5, 950.5], [1397.5, 950.5], [1397.5, 949.5], [1398.5, 949.5], [1398.5, 948.5], [1399.5, 948.5], [1399.5, 949.5], [1400.5, 949.5], [1400.5, 950.5], [1401.5, 950.5], [1401.5, 952.5], [1402.5, 952.5], [1402.5, 955.5], [1395.5, 955.5]]}, {"id": "tx45ka", "submitted_by": "KaiserreichBayern", "name": "Bavarian Flag", "description": "Placed on the Brandenburg Gate to symbolize the deep friendship between Berlin and Munich", "website": "https://en.wikipedia.org/wiki/Brandenburg_Gate", "subreddit": "/r/placede", "center": [704.5, 851.5], "path": [[703.5, 847.5], [706.5, 847.5], [706.5, 855.5], [703.5, 855.5]]}, -{"id": "tx458s", "submitted_by": "Vesper0906", "name": "Plan P", "description": "Plan P was origannally a effort to help save Pewdiepies Subcount, in his war against T-Series, which developed a community, who later made this.", "website": "[discord.gg/planp](https://discord.gg/planp)", "subreddit": "", "center": [1353.5, 452.5], "path": [[1343.5, 446.5], [1363.5, 446.5], [1363.5, 457.5], [1343.5, 457.5]]}, +{"id": "tx458s", "submitted_by": "Vesper0906", "name": "Plan P", "description": "Plan P was origannally a effort to help save Pewdiepies Subcount, in his war against T-Series, which developed a community, who later made this.", "website": "https://discord.gg/planp", "subreddit": "", "center": [1353.5, 452.5], "path": [[1343.5, 446.5], [1363.5, 446.5], [1363.5, 457.5], [1343.5, 457.5]]}, {"id": "tx44wm", "submitted_by": "CatPower12", "name": "Gun", "description": "this is a gun", "website": "", "subreddit": "/r/196", "center": [200.5, 678.5], "path": [[198.5, 666.5], [199.5, 666.5], [200.5, 666.5], [201.5, 667.5], [202.5, 668.5], [202.5, 669.5], [203.5, 669.5], [203.5, 670.5], [203.5, 671.5], [203.5, 672.5], [203.5, 673.5], [202.5, 674.5], [202.5, 675.5], [202.5, 676.5], [202.5, 677.5], [202.5, 678.5], [203.5, 678.5], [204.5, 678.5], [204.5, 679.5], [204.5, 680.5], [204.5, 681.5], [204.5, 682.5], [204.5, 683.5], [205.5, 684.5], [205.5, 685.5], [205.5, 686.5], [204.5, 686.5], [203.5, 686.5], [202.5, 685.5], [202.5, 684.5], [201.5, 683.5], [200.5, 683.5], [199.5, 683.5], [199.5, 684.5], [199.5, 685.5], [198.5, 686.5], [198.5, 687.5], [197.5, 688.5], [197.5, 689.5], [197.5, 690.5], [196.5, 691.5], [195.5, 690.5], [194.5, 689.5], [195.5, 688.5], [195.5, 687.5], [195.5, 686.5], [195.5, 685.5], [196.5, 684.5], [196.5, 683.5], [196.5, 682.5], [196.5, 681.5], [196.5, 680.5], [197.5, 679.5], [197.5, 678.5], [197.5, 677.5], [197.5, 676.5], [198.5, 675.5], [197.5, 674.5], [197.5, 673.5], [197.5, 672.5], [197.5, 671.5], [197.5, 670.5], [197.5, 669.5], [198.5, 669.5], [198.5, 668.5], [198.5, 667.5]]}, {"id": "tx44uw", "submitted_by": "P_MOVIE", "name": "Xiu Xiu", "description": "The logo from an American experimental band, Xiu Xiu", "website": "http://www.xiuxiu.org/", "subreddit": "/r/xiuxiu", "center": [1104.5, 1567.5], "path": [[1092.5, 1554.5], [1092.5, 1580.5], [1116.5, 1580.5], [1116.5, 1556.5]]}, -{"id": "tx44qf", "submitted_by": "NonsenseForLife", "name": "r/realms", "description": "logo of the r/realms subreddit. a subreddit dedicated for minecraft's realms map submission programme.", "website": "https://atlas.minecraft.net/guidelines", "subreddit": "/r/realms", "center": [0.5, 0.5], "path": []}, -{"id": "tx44ax", "submitted_by": "PROPLAYEN", "name": "Vaporeon", "description": "Vaporeon is a Water-type Pok\u00e9mon introduced in Generation I.nIt evolves from Eevee when exposed to a Water Stone. It is one of Eevee's final forms, the others being Jolteon, Flareon, Espeon, Umbreon, Leafeon, Glaceon, and Sylveon.", "website": "https://bulbapedia.bulbagarden.net/wiki/Vaporeon_(Pok%C3%A9mon)", "subreddit": "/r/pokemon", "center": [1986.5, 1286.5], "path": [[1974.5, 1273.5], [1998.5, 1273.5], [1998.5, 1299.5], [1974.5, 1299.5]]}, {"id": "tx43nk", "submitted_by": "jonple", "name": "WSU", "description": "Washington State University is a public land-grant research university with its flagship, and oldest, campus in Pullman, Washington.", "website": "https://wsu.edu/", "subreddit": "/r/wsu", "center": [881.5, 527.5], "path": [[874.5, 521.5], [874.5, 533.5], [888.5, 533.5], [888.5, 521.5], [875.5, 521.5], [874.5, 521.5]]}, {"id": "tx43jh", "submitted_by": "MavisEmily1983", "name": "The fargo sign", "description": "The Fargo sign from Downtown Fargo ND's theatre", "website": "https://fargotheatre.org/", "subreddit": "/r/Fargo", "center": [1486.5, 1321.5], "path": [[1488.5, 1304.5], [1484.5, 1304.5], [1484.5, 1337.5], [1488.5, 1337.5], [1488.5, 1304.5]]}, {"id": "tx43c3", "submitted_by": "jkirstyn", "name": "Jimmy", "description": "Jimmy the Wooper is the mascot of the Banana Cult. This is a small community of 30~ members.", "website": "", "subreddit": "/r/JimmyResistance", "center": [618.5, 1684.5], "path": [[613.5, 1681.5], [627.5, 1681.5], [627.5, 1683.5], [619.5, 1683.5], [619.5, 1690.5], [615.5, 1687.5], [612.5, 1683.5], [612.5, 1681.5]]}, {"id": "tx4343", "submitted_by": "Kyrtaax", "name": "Fountain Pen", "description": "A fountain pen to represent the reddit fountain pen community. After conflict with the pansexual flag, a truce was reached, allowing them to build their flag behind our pen.", "website": "", "subreddit": "/r/fountainpens", "center": [1859.5, 720.5], "path": [[1832.5, 719.5], [1832.5, 718.5], [1834.5, 718.5], [1834.5, 717.5], [1839.5, 717.5], [1839.5, 718.5], [1840.5, 718.5], [1840.5, 717.5], [1860.5, 717.5], [1860.5, 716.5], [1882.5, 716.5], [1882.5, 717.5], [1883.5, 717.5], [1883.5, 723.5], [1882.5, 723.5], [1882.5, 724.5], [1860.5, 724.5], [1860.5, 723.5], [1840.5, 723.5], [1840.5, 722.5], [1839.5, 722.5], [1839.5, 723.5], [1834.5, 723.5], [1834.5, 722.5], [1832.5, 722.5], [1832.5, 721.5], [1831.5, 721.5], [1831.5, 720.5], [1832.5, 719.5]]}, -{"id": "tx42tf", "submitted_by": "iKunX", "name": "MrGreen", "description": "Art made by the Etterna Community based in MrGreen.svg", "website": "etternaonline.com", "subreddit": "/r/Stepmania", "center": [1263.5, 62.5], "path": [[1261.5, 55.5], [1266.5, 55.5], [1266.5, 56.5], [1267.5, 56.5], [1268.5, 57.5], [1269.5, 59.5], [1270.5, 59.5], [1270.5, 64.5], [1269.5, 65.5], [1269.5, 66.5], [1268.5, 67.5], [1267.5, 68.5], [1266.5, 68.5], [1264.5, 68.5], [1259.5, 68.5], [1258.5, 67.5], [1257.5, 66.5], [1257.5, 65.5], [1256.5, 64.5], [1256.5, 63.5], [1256.5, 64.5], [1256.5, 60.5], [1257.5, 59.5], [1257.5, 58.5], [1258.5, 57.5], [1259.5, 56.5], [1260.5, 56.5], [1260.5, 55.5], [1266.5, 55.5]]}, +{"id": "tx42tf", "submitted_by": "iKunX", "name": "MrGreen", "description": "Art made by the Etterna Community based in MrGreen.svg", "website": "https://etternaonline.com", "subreddit": "/r/Stepmania", "center": [1263.5, 62.5], "path": [[1261.5, 55.5], [1266.5, 55.5], [1266.5, 56.5], [1267.5, 56.5], [1268.5, 57.5], [1269.5, 59.5], [1270.5, 59.5], [1270.5, 64.5], [1269.5, 65.5], [1269.5, 66.5], [1268.5, 67.5], [1267.5, 68.5], [1266.5, 68.5], [1264.5, 68.5], [1259.5, 68.5], [1258.5, 67.5], [1257.5, 66.5], [1257.5, 65.5], [1256.5, 64.5], [1256.5, 63.5], [1256.5, 64.5], [1256.5, 60.5], [1257.5, 59.5], [1257.5, 58.5], [1258.5, 57.5], [1259.5, 56.5], [1260.5, 56.5], [1260.5, 55.5], [1266.5, 55.5]]}, {"id": "tx42rr", "submitted_by": "Tanamition", "name": "Magmite", "description": "A small creature called a magmite, from the Starlight River mod for Terraria.", "website": "", "subreddit": "", "center": [5.5, 708.5], "path": [[0.5, 702.5], [10.5, 702.5], [10.5, 713.5], [0.5, 713.5], [0.5, 702.5]]}, {"id": "tx42p4", "submitted_by": "DenzelKorma", "name": "Azumanga Daioh", "description": "best slice of life anime eva", "website": "", "subreddit": "not, affiliated, with, /r/azudaioh, made, this, on, my, own", "center": [844.5, 1944.5], "path": [[840.5, 1947.5], [847.5, 1947.5], [847.5, 1940.5], [840.5, 1940.5]]}, {"id": "tx42lo", "submitted_by": "thekoboy", "name": "ZORMAN", "description": "The Z of one of the most famous hispanic streamers and youtubers, Zorman.nIt remains there thanks to his powerful hands.nnInfo by: @neurotyc on TW", "website": "", "subreddit": "", "center": [1822.5, 966.5], "path": [[1813.5, 952.5], [1830.5, 952.5], [1830.5, 979.5], [1813.5, 979.5], [1813.5, 952.5]]}, -{"id": "tx42bk", "submitted_by": "notdeedee", "name": "Streamer Mural", "description": "Collaborative streamer mural featuring art representing twitch streamers Foolish_Gamers, Punz, Karljacobs, TinaKitten, Sapnap, Aipha, Corpse_Husband, 5up, Nihachu, and Michaelmcchill", "website": "", "subreddit": "", "center": [1216.5, 1026.5], "path": [[1286.5, 925.5], [1160.5, 926.5], [1160.5, 1038.5], [1129.5, 1038.5], [1129.5, 1117.5], [1287.5, 1115.5], [1287.5, 924.5]]}, {"id": "tx42aj", "submitted_by": "Deyc2", "name": "xFaRgAnx", "description": "A small contribution from the community of the funniest Spanish-speaking streamer / youtuber", "website": "https://youtube.com/c/xFaRgAnxYTube", "subreddit": "", "center": [1582.5, 621.5], "path": [[1578.5, 617.5], [1586.5, 617.5], [1586.5, 625.5], [1577.5, 625.5], [1577.5, 617.5]]}, {"id": "tx428c", "submitted_by": "throwaway_ghast", "name": "Nightmare", "description": "A face drawn by VTuber Nanashi Mumei of Hololive EN Council during a Passpartout stream. Originally meant to be a drawing of Hoshimachi Suisei, it quickly morphed into something far less idol-like. The face, now known as Nightmare, is used as an emote in Mumei's chat, to depict her dark thoughts.", "website": "", "subreddit": "/r/Hololive", "center": [228.5, 764.5], "path": [[234.5, 757.5], [229.5, 759.5], [221.5, 763.5], [221.5, 766.5], [223.5, 768.5], [226.5, 770.5], [229.5, 768.5], [234.5, 764.5]]}, {"id": "tx41v5", "submitted_by": "Huugiinn", "name": "ESMA Logo", "description": "Logo from a french 3D and vfx school", "website": "", "subreddit": "", "center": [1733.5, 255.5], "path": [[1726.5, 249.5], [1727.5, 261.5], [1739.5, 261.5], [1738.5, 249.5], [1733.5, 249.5]]}, {"id": "tx41us", "submitted_by": "P_ablo24", "name": "Nimu skin head", "description": "Minecraft Nimu Skin Head.", "website": "https://www.twitch.tv/nimuvt", "subreddit": "", "center": [1589.5, 648.5], "path": [[1579.5, 657.5], [1599.5, 657.5], [1599.5, 638.5], [1579.5, 638.5]]}, {"id": "tx41tl", "submitted_by": "P_MOVIE", "name": "Melodrama", "description": "The cover from Melodrama, the 2nd album by New Zealand singer-songwriter Lorde", "website": "https://www.lorde.co.nz/", "subreddit": "/r/lorde", "center": [952.5, 1636.5], "path": [[941.5, 1624.5], [941.5, 1648.5], [964.5, 1648.5], [964.5, 1625.5]]}, {"id": "tx41pk", "submitted_by": "mendelsfruityfly", "name": "Foolish_Gamers", "description": "Art of the shark character associated with streamer Foolish_Gamers, real name Noah Brown, known for his variety streams and his builds on the Dream SMP.", "website": "", "subreddit": "/r/FoolishGamers", "center": [1980.5, 750.5], "path": [[1962.5, 732.5], [1999.5, 732.5], [1999.5, 768.5], [1962.5, 769.5]]}, -{"id": "tx41k8", "submitted_by": "Pururoo", "name": "Streamers collaborative mural", "description": "Streamers Karl Jacobs, Punz, FoolishGamers, TinaKitten and Sapnap and their communities used the original design by @EeveePach to mark their spot, and later expanded upon the mural with various pixelarts with Corpse, Aipha, Nihachu and 5up.", "website": "", "subreddit": "", "center": [1208.5, 1024.5], "path": [[1284.5, 928.5], [1284.5, 1003.5], [1234.5, 1006.5], [1233.5, 1042.5], [1226.5, 1055.5], [1226.5, 1068.5], [1243.5, 1079.5], [1255.5, 1080.5], [1261.5, 1071.5], [1284.5, 1071.5], [1285.5, 1123.5], [1285.5, 1113.5], [1285.5, 1114.5], [1274.5, 1113.5], [1251.5, 1113.5], [1216.5, 1114.5], [1188.5, 1114.5], [1153.5, 1113.5], [1130.5, 1114.5], [1130.5, 1061.5], [1130.5, 1038.5], [1161.5, 1037.5], [1161.5, 1002.5], [1162.5, 971.5], [1161.5, 928.5]]}, {"id": "tx41jb", "submitted_by": "Gorgumbus", "name": "Yuzusoft and Murasame", "description": "Operation YuzuArt--This art created by Yuzusoft Fan Server on discord.", "website": "https://discord.gg/jJRNgzh", "subreddit": "", "center": [1445.5, 504.5], "path": [[1426.5, 508.5], [1472.5, 508.5], [1472.5, 502.5], [1432.5, 502.5], [1432.5, 492.5], [1426.5, 492.5], [1426.5, 508.5]]}, {"id": "tx41gk", "submitted_by": "JosephDaGenius1215", "name": "Blue Portal", "description": "A blue portal, a reference to the Portal games. It was built by the Germans and the Portal community to connect the split flags after the first canvas expansion because they didn't want to destroy the artworks in between.", "website": "https://www.thinkwithportals.com/", "subreddit": "/r/placeDE, /r/portal", "center": [1063.5, 825.5], "path": [[1067.5, 829.5], [1066.5, 828.5], [1064.5, 828.5], [1062.5, 829.5], [1061.5, 831.5], [1060.5, 833.5], [1059.5, 838.5], [1058.5, 839.5], [1057.5, 845.5], [1057.5, 850.5], [1058.5, 853.5], [1059.5, 854.5], [1060.5, 856.5], [1061.5, 860.5], [1062.5, 863.5], [1069.5, 869.5], [1063.5, 869.5], [1062.5, 868.5], [1061.5, 867.5], [1060.5, 865.5], [1058.5, 863.5], [1057.5, 861.5], [1056.5, 857.5], [1056.5, 855.5], [1056.5, 845.5], [1064.5, 863.5], [1062.5, 861.5], [1067.5, 829.5]]}, -{"id": "tx41ep", "submitted_by": "essokinesis1", "name": "Autechre Logo", "description": "Logo of English IDM duo Autechre", "website": "", "subreddit": "", "center": [1293.5, 506.5], "path": [[1288.5, 504.5], [1298.5, 504.5], [1298.5, 508.5], [1288.5, 508.5], [1288.5, 506.5]]}, {"id": "tx41dx", "submitted_by": "Ghostieclone", "name": "Pac-Man Ghost", "description": "Is a small version of the famous ghosts in the video game Pac-Man. Made by u/Ghostieclone and friends.", "website": "", "subreddit": "", "center": [1039.5, 1118.5], "path": [[1041.5, 1115.5], [1038.5, 1115.5], [1036.5, 1115.5], [1036.5, 1120.5], [1041.5, 1120.5]]}, {"id": "tx40ya", "submitted_by": "Thelucky7players", "name": "2balkan4you", "description": "A subreddit banned by u/Chtorrr beginning 2022 where people from the balkans could joke together. nMany new subreddits have tried to reconstruct the community of arround 200k members, but a majority are empty.", "website": "https://subredditstats.com/r/2balkan4you", "subreddit": "", "center": [1927.5, 329.5], "path": [[1920.5, 326.5], [1920.5, 332.5], [1934.5, 332.5], [1934.5, 326.5], [1920.5, 326.5]]}, {"id": "tx40nh", "submitted_by": "fe80--", "name": "Void Linux", "description": "Void Linux is a Linux distribution built around the XBPS package manager, and with runit instead of systemd as the init system. Its community is small but loyal.", "website": "https://voidlinux.org/", "subreddit": "/r/voidlinux", "center": [25.5, 729.5], "path": [[24.5, 726.5], [26.5, 726.5], [28.5, 728.5], [28.5, 730.5], [26.5, 732.5], [24.5, 732.5], [22.5, 730.5], [22.5, 728.5], [24.5, 726.5]]}, {"id": "tx40kq", "submitted_by": "epicperson8987", "name": "Dragon Quest", "description": "A slime stack from the game Dragon Quest", "website": "", "subreddit": "/r/dragonquest", "center": [65.5, 548.5], "path": [[57.5, 534.5], [58.5, 534.5], [58.5, 533.5], [58.5, 533.5], [59.5, 533.5], [59.5, 532.5], [71.5, 532.5], [71.5, 533.5], [72.5, 533.5], [72.5, 534.5], [73.5, 534.5], [73.5, 562.5], [72.5, 562.5], [72.5, 563.5], [71.5, 563.5], [71.5, 564.5], [59.5, 564.5], [59.5, 563.5], [58.5, 563.5], [58.5, 562.5], [57.5, 562.5], [57.5, 534.5]]}, {"id": "tx40b2", "submitted_by": "_JustinTheGreat_", "name": "Los Angeles Rams", "description": "The Los Angeles (LA) Rams are an American Football Team in the NFL.", "website": "", "subreddit": "", "center": [888.5, 1890.5], "path": [[906.5, 1886.5], [906.5, 1886.5], [906.5, 1894.5], [906.5, 1894.5], [870.5, 1894.5], [870.5, 1885.5], [885.5, 1885.5]]}, -{"id": "tx3zy5", "submitted_by": "TwentyDaysOfMay", "name": "o kama pona, ale li pona (tonsi)", "description": "a row of text in sitelen pona, a writing system for the language. translated to English, it roughly means 'welcome, everything is good' or 'welcome, everything will be okay'. the last glyph represents the word 'tonsi', which can mean 'transgender', 'nonbinary', or just 'non-cisgender' in general.", "website": "https://tokipona.org/", "subreddit": "/r/tokipona", "center": [763.5, 352.5], "path": [[740.5, 347.5], [786.5, 347.5], [786.5, 356.5], [740.5, 356.5]]}, +{"id": "tx3zy5", "submitted_by": "TwentyDaysOfMay", "name": "o kama pona, ale li pona (tonsi)", "description": "A row of text in sitelen pona, a writing system for the language. Translated to English, it roughly means 'welcome, everything is good' or 'welcome, everything will be okay'. The last glyph represents the word 'tonsi', which can mean 'transgender', 'nonbinary', or just 'non-cisgender' in general.", "website": "https://tokipona.org/", "subreddit": "/r/tokipona", "center": [763.5, 352.5], "path": [[740.5, 347.5], [786.5, 347.5], [786.5, 356.5], [740.5, 356.5]]}, {"id": "tx3zwj", "submitted_by": "skinner1818", "name": "Dinklebean", "description": "Artwork of the Twitch streamer Dinklebean, designed and built by the Dinklebean Community with help from Wubby!", "website": "https://www.twitch.tv/dinklebean", "subreddit": "", "center": [388.5, 1542.5], "path": [[369.5, 1533.5], [369.5, 1552.5], [403.5, 1552.5], [407.5, 1549.5], [408.5, 1549.5], [408.5, 1532.5], [369.5, 1532.5], [369.5, 1532.5]]}, {"id": "tx3zub", "submitted_by": "Tuyer_219", "name": "This is my duty", "description": "During 1989 Tiananmen Square protests, a student riding a bike, interviewed by a journalist :nDuring 1989 Tiananmen Square protests, a student riding a bike, interviewed by a journalist :nn-Where you going?n-To protest, to TiananmenSquaren-Why?n-Because this is my DUTY!nnNo one see this young man afterward.", "website": "https://www.youtube.com/watch?v=21BDAPg403M", "subreddit": "", "center": [921.5, 160.5], "path": [[893.5, 154.5], [949.5, 155.5], [949.5, 166.5], [893.5, 165.5], [893.5, 154.5]]}, {"id": "tx3zts", "submitted_by": "Biiirdo", "name": "Onutrem seashell", "description": "The community of Onutrem called: La plage, this French streamer is also the developer of Undercards.", "website": "https://www.twitch.tv/onutrem", "subreddit": "https://www.reddit.com/use/r/Onutrem", "center": [264.5, 1547.5], "path": [[262.5, 1545.5], [262.5, 1545.5], [262.5, 1545.5], [262.5, 1549.5], [267.5, 1549.5], [266.5, 1544.5]]}, @@ -5078,7 +4696,6 @@ {"id": "tx3xxj", "submitted_by": "PROPLAYEN", "name": "King Knight..?", "description": "King Knight is one of eight Knights of the Order of No Quarter who serves the Enchantress. He rules over Pridemoor Keep.nThough this version of King Knight appears to be wearing clothing similar to that of The Enchantress.", "website": "https://shovelknight.fandom.com/wiki/King_Knight", "subreddit": "/r/ShovelKnight", "center": [1808.5, 345.5], "path": [[1805.5, 343.5], [1805.5, 343.5], [1805.5, 338.5], [1808.5, 336.5], [1811.5, 338.5], [1811.5, 343.5], [1815.5, 346.5], [1815.5, 347.5], [1811.5, 351.5], [1805.5, 351.5], [1801.5, 347.5]]}, {"id": "tx3xs9", "submitted_by": "P_ablo24", "name": "Fargan Skin head", "description": "Minecraft xFaRgAnx Skin Head.", "website": "https://www.twitch.tv/xfarganx", "subreddit": "/r/xFaRgAnx", "center": [1582.5, 622.5], "path": [[1578.5, 618.5], [1578.5, 625.5], [1585.5, 625.5], [1585.5, 618.5]]}, {"id": "tx3xq6", "submitted_by": "Sad_Bank9388", "name": "Lain Meth bear", "description": "Logo representing Lain's bear suit from the anime Serial Experiments LainnnReferred to as 'Meth Bear' due to its location in space previously owned by the streamer Myth, whose name slowly evolved into 'METH' on the canvas.nnLet's all love Lain", "website": "https://www.reddit.com/r/Lain/comments/twfrgl/and_with_that_we_have_the_final_lain_art_that/", "subreddit": "/r/Lain", "center": [1556.5, 1065.5], "path": [[1544.5, 1050.5], [1544.5, 1079.5], [1568.5, 1079.5], [1568.5, 1050.5]]}, -{"id": "tx3x7s", "submitted_by": "Quick_Spread150", "name": "Coney", "description": "A streamer who loves watchmojo and Toad. Smash Commentator. On a journey to see every single website. He is 5'9 (short)", "website": "[twitch.tv/coney](https://twitch.tv/coney)", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx3x3x", "submitted_by": "Manipendeh", "name": "Emily the Frog", "description": "A little frog drawn by a couple who love each other very much.", "website": "", "subreddit": "u/Manipendeh, ;, u/altermace", "center": [1766.5, 691.5], "path": [[1763.5, 688.5], [1769.5, 688.5], [1769.5, 694.5], [1763.5, 694.5], [1763.5, 688.5]]}, {"id": "tx3x1s", "submitted_by": "xiomtt15", "name": "EXO's logo", "description": "Logo created for the 10 years of the kpop group EXO.", "website": "", "subreddit": "", "center": [1409.5, 558.5], "path": [[1394.5, 561.5], [1423.5, 561.5], [1423.5, 555.5], [1394.5, 555.5], [1394.5, 561.5]]}, {"id": "tx3wp3", "submitted_by": "scraf23", "name": "Open Suse", "description": "openSUSE is a Linux-based, open, free and secure operating system for PC, laptops, servers and ARM devices.", "website": "", "subreddit": "/r/openSUSE", "center": [26.5, 721.5], "path": [[21.5, 716.5], [29.5, 716.5], [32.5, 722.5], [30.5, 725.5], [21.5, 725.5], [21.5, 716.5]]}, @@ -5087,8 +4704,8 @@ {"id": "tx3wjx", "submitted_by": "1983FNaF1987", "name": "Hidden Amogus in Void Mother", "description": "An Amogus that has slipped into the grasp of the Void Mother.", "website": "", "subreddit": "", "center": [970.5, 1382.5], "path": [[967.5, 1377.5], [973.5, 1377.5], [973.5, 1387.5], [966.5, 1386.5]]}, {"id": "tx3wg3", "submitted_by": "W1Lito", "name": "ANDY ZEIN (FRENTE ARMY)", "description": "Frenton peruano tremendamente enamorado de star yuki, la frente army lucho hasta el final para que no sea destruido por el nacionalismo peruano.", "website": "", "subreddit": "", "center": [1829.5, 1084.5], "path": [[1793.5, 1047.5], [1791.5, 1120.5], [1868.5, 1118.5], [1869.5, 1043.5], [1794.5, 1045.5], [1791.5, 1120.5], [1768.5, 1046.5], [1796.5, 1045.5], [1769.5, 1099.5], [1790.5, 1100.5], [1768.5, 1046.5], [1770.5, 1099.5], [1790.5, 1100.5]]}, {"id": "tx3wbj", "submitted_by": "P_MOVIE", "name": "Weezer", "description": "Weezer is an American rock band. The picture above is from their famously first 1994 self-titled album, better known as 'Blue Album'. The under picture is their logo and the color depicts of each of their self-titled albums: blue ('94), green ('01), red ('08), white ('16), teal, and black ('19)", "website": "https://weezer.com/", "subreddit": "/r/weezer", "center": [1428.5, 137.5], "path": [[1420.5, 125.5], [1420.5, 148.5], [1436.5, 148.5], [1436.5, 126.5]]}, -{"id": "tx3wab", "submitted_by": "Falxo7326", "name": "Seattle Sports", "description": "After failing to defend its original location the r/mariners subreddit built at the bottom of the canvas. User u/YOYAidan successfully allied the r/NewZealand in hopes of staying where they were, sadly a streamer soon attacked the Mariners and New Zealand. After the canvas expanded they built close to each other. After another streamer destroyed the trident it was moved above New Zealand where it stayed until the end. After a discord server was created to better defend the trident more Seattle logos were made to the left of it. In the end Seahawk, Sounders, and a Kraken logo were also made with the help of r/SeattleKraken r/Seahawks and r/SoundersFC", "website": "discord.gg/seattlesportsreddit", "subreddit": "/r/Mariners", "center": [1583.5, 672.5], "path": [[1576.5, 728.5], [1557.5, 728.5], [1554.5, 725.5], [1555.5, 724.5], [1555.5, 714.5], [1558.5, 711.5], [1563.5, 711.5], [1563.5, 612.5], [1567.5, 612.5], [1567.5, 638.5], [1577.5, 638.5], [1577.5, 659.5], [1600.5, 659.5], [1600.5, 636.5], [1618.5, 636.5], [1618.5, 675.5], [1580.5, 675.5], [1580.5, 689.5], [1576.5, 689.5]]}, -{"id": "tx3w9v", "submitted_by": "Slylle", "name": "Jinx with Blue flare and Kcorp", "description": "This character is Jinx from Arcane. A Netflix series produce by League of Legends and Fortiche Studio (A French studio who also work on K/DA PoPstar clip).nKCorp, a French team launch by Kameto have a famous emote of a supporter with a blue flare. So, when Arcane come out with this Jinx\u2019s scene, they associate Jinx with this blue flare, and they emote. That is why a Karmine-Corp logo is in the blue smoke.n", "website": "https://twitter.com/netflixfr/status/1460580879810674693?lang=en", "subreddit": "/r/place", "center": [41.5, 1571.5], "path": [[59.5, 1691.5], [4.5, 1660.5], [26.5, 1474.5], [91.5, 1469.5], [87.5, 1507.5], [57.5, 1522.5], [53.5, 1549.5]]}, +{"id": "tx3wab", "submitted_by": "Falxo7326", "name": "Seattle Sports", "description": "After failing to defend its original location the r/mariners subreddit built at the bottom of the canvas. User u/YOYAidan successfully allied the r/NewZealand in hopes of staying where they were, sadly a streamer soon attacked the Mariners and New Zealand. After the canvas expanded they built close to each other. After another streamer destroyed the trident it was moved above New Zealand where it stayed until the end. After a discord server was created to better defend the trident more Seattle logos were made to the left of it. In the end Seahawk, Sounders, and a Kraken logo were also made with the help of r/SeattleKraken r/Seahawks and r/SoundersFC", "website": "https://discord.gg/seattlesportsreddit", "subreddit": "/r/Mariners", "center": [1583.5, 672.5], "path": [[1576.5, 728.5], [1557.5, 728.5], [1554.5, 725.5], [1555.5, 724.5], [1555.5, 714.5], [1558.5, 711.5], [1563.5, 711.5], [1563.5, 612.5], [1567.5, 612.5], [1567.5, 638.5], [1577.5, 638.5], [1577.5, 659.5], [1600.5, 659.5], [1600.5, 636.5], [1618.5, 636.5], [1618.5, 675.5], [1580.5, 675.5], [1580.5, 689.5], [1576.5, 689.5]]}, +{"id": "tx3w9v", "submitted_by": "Slylle", "name": "Jinx with blue flare and Karmine Corp.", "description": "This character is Jinx from Arcane, a Netflix series produced by League of Legends and Fortiche Studio (a French studio who also worked on K/DA Pop/Stars).\nKarmine Corp, a French team launched by Kameto, has a famous emote of a supporter with a blue flare. So, when Arcane came out with this Jinx's scene, they associated Jinx with this blue flare and the emote. That is why a Karmine Corp logo is in the blue smoke.", "website": "https://twitter.com/netflixfr/status/1460580879810674693?lang=en", "subreddit": "/r/placefrance", "center": [41.5, 1571.5], "path": [[59.5, 1691.5], [4.5, 1660.5], [26.5, 1474.5], [91.5, 1469.5], [87.5, 1507.5], [57.5, 1522.5], [53.5, 1549.5]]}, {"id": "tx3w2t", "submitted_by": "MajoraJoestar", "name": "Fitz deer emblem", "description": "The emblem of the character Fitzchivalry Farseer, from the saga books Realm of the Elderlings, written by Robin Hobb", "website": "", "subreddit": "/r/robinhobb", "center": [1658.5, 1380.5], "path": [[1657.5, 1387.5], [1650.5, 1381.5], [1653.5, 1373.5], [1662.5, 1373.5], [1666.5, 1379.5], [1665.5, 1385.5], [1660.5, 1388.5]]}, {"id": "tx3w2h", "submitted_by": "redfiveee", "name": "Hidilyn Diaz", "description": "Weightlifter Hidilyn Diaz, the first ever Filipino to win an Olympic gold medal, is portrayed pulling a jeepney.", "website": "", "subreddit": "/r/Philippines", "center": [367.5, 1654.5], "path": [[357.5, 1645.5], [354.5, 1639.5], [354.5, 1638.5], [358.5, 1636.5], [363.5, 1636.5], [365.5, 1643.5], [375.5, 1644.5], [377.5, 1647.5], [376.5, 1649.5], [370.5, 1650.5], [370.5, 1653.5], [385.5, 1672.5], [384.5, 1673.5], [378.5, 1673.5], [369.5, 1661.5], [363.5, 1668.5], [357.5, 1668.5], [357.5, 1665.5], [362.5, 1661.5], [356.5, 1648.5], [356.5, 1644.5]]}, {"id": "tx3vs6", "submitted_by": "moonshadow264", "name": "DreamNotFound", "description": "Ship art for Dream and GeorgeNotFound, with the dreamnotfound flag in the background.nnLook, SOMEBODY had to label it. I'm just here to preserve the history.", "website": "", "subreddit": "", "center": [1143.5, 908.5], "path": [[1133.5, 899.5], [1162.5, 899.5], [1162.5, 904.5], [1149.5, 904.5], [1149.5, 919.5], [1133.5, 919.5], [1133.5, 899.5]]}, @@ -5110,7 +4727,6 @@ {"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]]}, {"id": "tx3rc7", "submitted_by": "Mutorials", "name": "$11 Crab Rave Protest", "description": "A common meme on the 2007scape sub-reddit, where people address issues about the game using the Crab Rave music video and complain about the $11 dollar membership cost.", "website": "", "subreddit": "/r/2007scape", "center": [90.5, 53.5], "path": [[63.5, 51.5], [63.5, 54.5], [117.5, 54.5], [117.5, 51.5]]}, -{"id": "tx3rba", "submitted_by": "FloridaballWasTaken", "name": "Kenny holding the German Flag", "description": "Kenny from South Park holding the German flag up. He still lurks behind and might come back from behind in the next r/place, who knows.", "website": "", "subreddit": "/r/KennyHoldingFlags", "center": [0.5, 0.5], "path": []}, {"id": "tx3r9m", "submitted_by": "Temporary-Swim-1459", "name": "Johannes Schepputat", "description": "Image of a stoned teacher at the Kreisgymnasium Riedlingen. Hand-made by 4 brain-damaged friends.", "website": "", "subreddit": "", "center": [546.5, 1691.5], "path": [[541.5, 1698.5], [541.5, 1698.5], [541.5, 1684.5], [550.5, 1684.5], [550.5, 1698.5]]}, {"id": "tx3qwl", "submitted_by": "matots", "name": "Coney, Twitch god in the making", "description": "Enthusiastic streamer/youtuber that focuses on fighting games, miscellaneous reacts, and has an undenying passion for ruining kids parties and small tournaments", "website": "https://www.twitch.tv/coney", "subreddit": "/r/Coney", "center": [67.5, 1083.5], "path": [[41.5, 1069.5], [41.5, 1096.5], [92.5, 1096.5], [92.5, 1069.5], [41.5, 1069.5]]}, {"id": "tx3qq9", "submitted_by": "Sarinyann", "name": "Towa's Hat", "description": "Tokoyami Towa's Hat from Hololive 4th JP Gen", "website": "", "subreddit": "", "center": [1439.5, 1070.5], "path": [[1429.5, 1072.5], [1430.5, 1072.5], [1430.5, 1070.5], [1431.5, 1070.5], [1431.5, 1067.5], [1433.5, 1067.5], [1433.5, 1066.5], [1434.5, 1066.5], [1434.5, 1067.5], [1443.5, 1067.5], [1443.5, 1066.5], [1444.5, 1066.5], [1444.5, 1067.5], [1446.5, 1067.5], [1446.5, 1070.5], [1447.5, 1070.5], [1447.5, 1072.5], [1448.5, 1072.5], [1429.5, 1072.5]]}, @@ -5119,7 +4735,7 @@ {"id": "tx3q53", "submitted_by": "Plane_Ad_6662", "name": "El Salvador", "description": "Una peque\u00f1a bandera del pulgarcito de Am\u00e9rica (El Salvador). Se agradece a todas las personas que aguantaron al final apoyando cada minutos, cada pixel. Nos vemos en el futuro.", "website": "https://es.wikipedia.org/wiki/El_Salvador", "subreddit": "/r/ElSalvador", "center": [1119.5, 1393.5], "path": [[1082.5, 1371.5], [1155.5, 1371.5], [1155.5, 1415.5], [1083.5, 1414.5], [1083.5, 1371.5]]}, {"id": "tx3prq", "submitted_by": "Mutorials", "name": "Vegan Frog", "description": "A tribute to the K31 Pepe that was in the frog's place before the Pepe moved left outside of the banner.", "website": "", "subreddit": "/r/vegan_place", "center": [1844.5, 1606.5], "path": [[1837.5, 1600.5], [1837.5, 1611.5], [1850.5, 1611.5], [1850.5, 1600.5]]}, {"id": "tx3pol", "submitted_by": "D1scoball_", "name": "Minccino In a suit", "description": "The Pokemon Minccino In a suit artwork that seems to have originated from an artist on amino", "website": "https://aminoapps.com/c/pokemon/page/blog/minccino-in-a-suit/bzho_u0oVGrEj4b30eM5ebWZE6K3Xv", "subreddit": "", "center": [632.5, 1554.5], "path": [[637.5, 1544.5], [637.5, 1530.5], [643.5, 1530.5], [644.5, 1538.5], [649.5, 1541.5], [648.5, 1549.5], [641.5, 1554.5], [640.5, 1573.5], [623.5, 1573.5], [620.5, 1564.5], [614.5, 1554.5], [614.5, 1545.5]]}, -{"id": "tx3ple", "submitted_by": "sonicatdrpepper", "name": "Drehmal", "description": "Drehmal: PRIMORDIAL is a massive, one of a kind Minecraft survival/adventure map with a heavy emphasis on exploration. Featuring fantastical custom biomes, unique weapons with incredible abilities, thirteen custom villages, towns, and cities, over 400 loot-filled structures, new advancements, special traders, tons of dungeons, a fast travel system, and a nonlinear main quest.", "website": "drehmal.net", "subreddit": "/r/drehmal", "center": [484.5, 1430.5], "path": [[473.5, 1416.5], [473.5, 1444.5], [495.5, 1444.5], [495.5, 1416.5]]}, +{"id": "tx3ple", "submitted_by": "sonicatdrpepper", "name": "Drehmal", "description": "Drehmal: PRIMORDIAL is a massive, one of a kind Minecraft survival/adventure map with a heavy emphasis on exploration. Featuring fantastical custom biomes, unique weapons with incredible abilities, thirteen custom villages, towns, and cities, over 400 loot-filled structures, new advancements, special traders, tons of dungeons, a fast travel system, and a nonlinear main quest.", "website": "https://drehmal.net", "subreddit": "/r/drehmal", "center": [484.5, 1430.5], "path": [[473.5, 1416.5], [473.5, 1444.5], [495.5, 1444.5], [495.5, 1416.5]]}, {"id": "tx3pih", "submitted_by": "deJessias", "name": "r/fuckcars", "description": "r/fuckcars is a subreddit dedicated to car dependent society that has been build. To show this, they created a giant parking lot and roads on the canvas. They aspire towards more sustainable and effective alternatives like mass transit and improved pedestrian and cycling infrastructure.", "website": "", "subreddit": "/r/fuckcars", "center": [1020.5, 758.5], "path": [[910.5, 715.5], [910.5, 715.5], [1130.5, 715.5], [1128.5, 802.5], [909.5, 800.5], [910.5, 721.5], [901.5, 721.5], [902.5, 716.5], [1120.5, 715.5]]}, {"id": "tx3pdq", "submitted_by": "_JustinTheGreat_", "name": "NOAA (Meteorology)", "description": "Built by the weather community, NOAA is a government organization that produces weather forecasts.", "website": "", "subreddit": "", "center": [1732.5, 598.5], "path": [[1721.5, 588.5], [1737.5, 589.5], [1743.5, 599.5], [1738.5, 607.5], [1738.5, 607.5], [1728.5, 609.5], [1722.5, 600.5], [1722.5, 600.5], [1725.5, 591.5], [1725.5, 591.5], [1724.5, 592.5], [1731.5, 590.5], [1725.5, 590.5]]}, {"id": "tx3pdm", "submitted_by": "TheCelephais", "name": "YGO", "description": "Back of a Yu=Gi-Oh! card", "website": "", "subreddit": "/r/yugioh", "center": [994.5, 1638.5], "path": [[978.5, 1658.5], [1009.5, 1658.5], [1008.5, 1618.5], [979.5, 1619.5]]}, @@ -5130,10 +4746,8 @@ {"id": "tx3opn", "submitted_by": "goodmorningprince", "name": "DNF Blobs", "description": "Originally a blob depicting the profile picture of YouTuber Dream, a blob of fellow YouTuber friend and partner GeorgeNotFound wearing clout glasses has been added to form a pair of DreamNotFound blobs next to the r/PlaceTrees grove.", "website": "", "subreddit": "", "center": [1146.5, 908.5], "path": [[1133.5, 899.5], [1161.5, 899.5], [1163.5, 907.5], [1150.5, 919.5], [1133.5, 919.5]]}, {"id": "tx3onp", "submitted_by": "whateryond", "name": "Bandeja paisa", "description": "This dish comes from the Antioquia region (located in the northwest of Colombia). It always features beef, rice, black beans, fried plantains, chorizo, avocado and an egg for the most common form.nIt's also well known for the quantity you have to eat, because there's a lot to eat", "website": "https://en.wikipedia.org/wiki/Bandeja_paisa", "subreddit": "", "center": [271.5, 1328.5], "path": [[256.5, 1334.5], [254.5, 1331.5], [254.5, 1330.5], [255.5, 1329.5], [255.5, 1328.5], [252.5, 1325.5], [252.5, 1322.5], [253.5, 1322.5], [261.5, 1316.5], [262.5, 1316.5], [262.5, 1315.5], [266.5, 1315.5], [266.5, 1316.5], [274.5, 1316.5], [274.5, 1318.5], [280.5, 1318.5], [280.5, 1319.5], [283.5, 1319.5], [283.5, 1320.5], [285.5, 1320.5], [285.5, 1321.5], [286.5, 1321.5], [292.5, 1327.5], [292.5, 1330.5], [286.5, 1337.5], [284.5, 1337.5], [283.5, 1338.5], [282.5, 1339.5], [262.5, 1339.5], [256.5, 1334.5]]}, {"id": "tx3onk", "submitted_by": "timnoot", "name": "Purple Guy", "description": "Purple guy from five nights at freddy's.", "website": "", "subreddit": "", "center": [1278.5, 881.5], "path": [[1275.5, 878.5], [1281.5, 878.5], [1281.5, 883.5], [1275.5, 883.5]]}, -{"id": "tx3ogc", "submitted_by": "angekle", "name": "BennyGee_", "description": "BennyGee_ is a german twitch streamer who uses a shiba inu as an avatar.", "website": "https://www.twitch.tv/bennygee_", "subreddit": "/r/BennyGee_", "center": [0.5, 0.5], "path": []}, {"id": "tx3ofo", "submitted_by": "P_ablo24", "name": "El Rubius skin head", "description": "Minecraft Rubius Skin Head.", "website": "https://www.twitch.tv/rubius", "subreddit": "/r/ubius", "center": [1527.5, 650.5], "path": [[1491.5, 687.5], [1491.5, 613.5], [1562.5, 613.5], [1562.5, 687.5], [1562.5, 687.5], [1525.5, 687.5], [1522.5, 687.5]]}, {"id": "tx3o0d", "submitted_by": "DivingDruid", "name": "Porto Rico Flag", "description": "Flag of Porto Rico", "website": "", "subreddit": "", "center": [775.5, 514.5], "path": [[786.5, 507.5], [787.5, 521.5], [764.5, 521.5], [764.5, 508.5]]}, -{"id": "tx3nyu", "submitted_by": "moonshadow264", "name": "TommyInnit", "description": "Minecraft Youtuber and streamer Tommy didn't let his child status keep him from success.nnTommy is best known for his humor and his roleplaying on the Dream SMP.nnThe white streak in his hair is a nod to his death in the Dream SMP plotline.", "website": "https://www.youtube.com/c/TommyInnit", "subreddit": "/r/tommyinnit", "center": [0.5, 0.5], "path": []}, {"id": "tx3nx4", "submitted_by": "EnderCreeper121", "name": "Endermen Eyes", "description": "Two cars altered to look like the current eye texture of the Minecraft Endermen. One of a set of 4 that can be seen among the parking lot including green eyes resembling the original eye texture in the bottom left of the lot, an orange variant in the right of the lot, and a blue variant in the top left. All four were fully constructed by the end of the event.", "website": "", "subreddit": "", "center": [958.5, 733.5], "path": [[954.5, 732.5], [961.5, 732.5], [961.5, 734.5], [954.5, 734.5]]}, {"id": "tx3nsh", "submitted_by": "3V1L5H0073r", "name": "VA-11 Hall-A", "description": "VA-11 HALL-A: Cyberpunk Bartender Action is an indie bartender simulation game developed by Sukeban Games.", "website": "https://store.steampowered.com/app/447530/VA11_HallA_Cyberpunk_Bartender_Action/", "subreddit": "/r/waifubartending", "center": [1526.5, 478.5], "path": [[1502.5, 474.5], [1502.5, 482.5], [1549.5, 482.5], [1549.5, 474.5], [1502.5, 474.5]]}, {"id": "tx3no0", "submitted_by": "Bunnies2000", "name": "OniGiri", "description": "Representation of the VTuber on Twitch that goes by OniGiriEN", "website": "https://www.twitch.tv/onigirien", "subreddit": "", "center": [789.5, 1082.5], "path": [[781.5, 1074.5], [796.5, 1074.5], [796.5, 1089.5], [781.5, 1089.5], [781.5, 1075.5]]}, @@ -5141,16 +4755,12 @@ {"id": "tx3nl9", "submitted_by": "Dry-Acanthopterygii9", "name": "FC BARCELONA", "description": "Bar\u00e7a's shield, just below Auronplay. He is a strong FC Barcelona supporter. The shield is not perfect beacuse it was made in the last moment, but S\u00daBANSE A LA XAVINETA PERROSSS", "website": "https://www.fcbarcelona.com/en/", "subreddit": "/r/barca", "center": [1465.5, 1682.5], "path": [[1440.5, 1659.5], [1440.5, 1704.5], [1491.5, 1704.5], [1491.5, 1659.5], [1467.5, 1660.5], [1490.5, 1659.5], [1470.5, 1659.5]]}, {"id": "tx3n7i", "submitted_by": "dasbp", "name": "Mizkif riding his bunny, Dedo, into battle", "description": "Created by Mizkif's community depicting himself riding atop the back of his bunny, Dedo. Although using the famous Napoleon image, this represent's Mizkif", "website": "https://www.twitch.tv/mizkif", "subreddit": "/r/Mizkif", "center": [1384.5, 1426.5], "path": [[1332.5, 1354.5], [1436.5, 1354.5], [1436.5, 1498.5], [1332.5, 1498.5]]}, {"id": "tx3n1a", "submitted_by": "bunnybri_", "name": "Crumb Cuptoast", "description": "Minecraft head of the streamer CupToast, also known as Crumb. She is known for her animations and art.", "website": "", "subreddit": "", "center": [1718.5, 360.5], "path": [[1714.5, 356.5], [1721.5, 356.5], [1721.5, 363.5], [1714.5, 363.5]]}, -{"id": "tx3mum", "submitted_by": "tyttuutface", "name": "Starbound Artifacts Logo", "description": "Starbound's logo, a star rising over a planet. Each one of the six colored squares represents a race's artifact. From top to bottom: Avian, Glitch, Human, Floran, Apex, and Hylotl.", "website": "playstarbound.com", "subreddit": "/r/starbound", "center": [1113.5, 1793.5], "path": [[1104.5, 1787.5], [1113.5, 1786.5], [1116.5, 1786.5], [1120.5, 1791.5], [1120.5, 1794.5], [1119.5, 1797.5], [1117.5, 1802.5], [1112.5, 1800.5], [1111.5, 1798.5], [1104.5, 1789.5], [1104.5, 1787.5]]}, {"id": "tx3mh4", "submitted_by": "Prior_Gate_9909", "name": "My Beautiful Dark Twisted Fantasy", "description": "My Beautiful Dark Twisted Fantasy is an album from Kanye West. The album released in 2010 and was received pretty well.n", "website": "https://open.spotify.com/album/20r762YmB5HeofjMCiPMLv", "subreddit": "/r/Kanye", "center": [1789.5, 1010.5], "path": [[1798.5, 1019.5], [1798.5, 1000.5], [1779.5, 1000.5], [1779.5, 1019.5]]}, -{"id": "tx3mdc", "submitted_by": "juan4815", "name": "Moai and bodoque", "description": "Chilean flag, with a moai from Easter Island and Bodoque from 31 minutos TV show", "website": "", "subreddit": "/r/chile", "center": [1853.5, 519.5], "path": [[1822.5, 499.5], [1884.5, 500.5], [1884.5, 539.5], [1822.5, 539.5], [1822.5, 500.5]]}, -{"id": "tx3m5h", "submitted_by": "Captaincow285", "name": "University of Massachusetts Amherst", "description": "The flagship campus of the University of Massachusetts public university system.", "website": "https://www.umass.edu/", "subreddit": "/r/umass", "center": [0.5, 0.5], "path": []}, {"id": "tx3m50", "submitted_by": "Mole2003", "name": "Figure Skate", "description": "A representation of a figure skate on ice, the design was initially a small skate but was updated after an invasion to the more accurate design seen", "website": "", "subreddit": "/r/figureskating", "center": [276.5, 975.5], "path": [[269.5, 967.5], [269.5, 984.5], [284.5, 983.5], [284.5, 967.5], [269.5, 967.5]]}, {"id": "tx3m37", "submitted_by": "Molina201", "name": "Chile", "description": "Chilean flag with a Moai head (from the Easter Island, that are chilean) and Juan Carlos Bodoque (the red rabbit is a character from the chilean show 31 minutos)", "website": "", "subreddit": "", "center": [1853.5, 519.5], "path": [[1822.5, 499.5], [1822.5, 539.5], [1884.5, 539.5], [1884.5, 499.5], [1822.5, 499.5]]}, {"id": "tx3llo", "submitted_by": "Lord_Shinyeyes", "name": "Romanian flag(former)", "description": "Formerly the Romanian flag, got removed by polish streamers multiple times. Contained art of the Peles Castle, the Romanian and Moldovan coats of arms, Half-life 3, Alice Margatroid from Touhou Project and a large amount of Adventure Time characters.", "website": "", "subreddit": "/r/Romania", "center": [731.5, 178.5], "path": [[634.5, 138.5], [634.5, 201.5], [679.5, 202.5], [680.5, 200.5], [682.5, 194.5], [686.5, 194.5], [688.5, 196.5], [689.5, 193.5], [693.5, 194.5], [694.5, 197.5], [699.5, 201.5], [701.5, 201.5], [702.5, 203.5], [703.5, 213.5], [710.5, 220.5], [710.5, 234.5], [709.5, 235.5], [709.5, 237.5], [780.5, 237.5], [780.5, 197.5], [825.5, 197.5], [824.5, 139.5], [635.5, 138.5]]}, {"id": "tx3lha", "submitted_by": "soaidaika", "name": "Violet Evergarden", "description": "The main character of the Violet Evergarden light novel and anime television series. On top of the letter is the protagonist herself. Next to her is an emerald brooch, which is a gift she received from her beloved major, Gilbert.", "website": "http://tv.violet-evergarden.jp/", "subreddit": "/r/VioletEvergarden", "center": [583.5, 1512.5], "path": [[574.5, 1502.5], [592.5, 1502.5], [591.5, 1522.5], [574.5, 1521.5]]}, {"id": "tx3ldj", "submitted_by": "aprilfool420", "name": "Corn Crab", "description": "A well-known Nuclear Throne player who is often active in the official Discord", "website": "https://discord.gg/9ZVGGDAvD9", "subreddit": "/r/nuclearthrone", "center": [188.5, 333.5], "path": [[185.5, 335.5], [191.5, 335.5], [191.5, 330.5], [185.5, 330.5]]}, -{"id": "tx3l72", "submitted_by": "WindogeFromYoutube", "name": "Bong Fish", "description": "Its a fish smoking a bong.", "website": "", "subreddit": "", "center": [143.5, 683.5], "path": [[123.5, 696.5], [123.5, 670.5], [163.5, 670.5], [163.5, 696.5]]}, {"id": "tx3kow", "submitted_by": "PoliticsIsCool13", "name": "Extreme E Logo", "description": "The Extreme E community and helpers from the wider motorsport community came together to immortalise Extreme E on r/place!", "website": "https://discord.gg/54gctnPFTE", "subreddit": "/r/ExtremeE", "center": [418.5, 1826.5], "path": [[424.5, 1820.5], [424.5, 1820.5], [424.5, 1832.5], [412.5, 1832.5], [412.5, 1820.5], [418.5, 1820.5]]}, {"id": "tx3khx", "submitted_by": "Just_Aori", "name": "Kel", "description": "A main character in indie game Omori. Initially was attacked and need do another Kel. Legends eats sand.", "website": "https://www.omori-game.com/en", "subreddit": "/r/omori", "center": [1418.5, 1150.5], "path": [[1417.5, 1147.5], [1418.5, 1155.5], [1409.5, 1141.5], [1415.5, 1137.5], [1421.5, 1137.5], [1426.5, 1141.5], [1426.5, 1143.5], [1427.5, 1146.5], [1427.5, 1143.5], [1427.5, 1149.5], [1428.5, 1147.5], [1428.5, 1149.5], [1423.5, 1156.5], [1426.5, 1159.5], [1422.5, 1167.5], [1419.5, 1168.5], [1418.5, 1166.5], [1413.5, 1168.5], [1410.5, 1160.5], [1409.5, 1159.5], [1412.5, 1155.5], [1407.5, 1148.5], [1407.5, 1147.5], [1409.5, 1141.5], [1412.5, 1138.5], [1415.5, 1137.5], [1423.5, 1137.5], [1426.5, 1143.5], [1426.5, 1141.5], [1426.5, 1141.5], [1427.5, 1144.5], [1428.5, 1150.5], [1423.5, 1155.5], [1426.5, 1158.5], [1426.5, 1158.5], [1425.5, 1159.5], [1409.5, 1161.5], [1409.5, 1157.5], [1415.5, 1168.5], [1409.5, 1160.5], [1409.5, 1151.5], [1415.5, 1150.5]]}, {"id": "tx3kgu", "submitted_by": "ComparisonBrief3310", "name": "ARK: Survival Evolved", "description": "The logo of ARK which is an action-adventure survival focused game.", "website": "http://playark.com/ark-survival-evolved/", "subreddit": "/r/ARK", "center": [1893.5, 1239.5], "path": [[1884.5, 1228.5], [1902.5, 1228.5], [1902.5, 1249.5], [1884.5, 1250.5]]}, @@ -5159,36 +4769,33 @@ {"id": "tx3k1h", "submitted_by": "ergepard", "name": "Sz\u00e9chenyi Chain Bridge", "description": "Sz\u00e9chenyi Chain Bridge is a bridge in Hungary, Budapest crossing over the Danube between Buda and Pest.", "website": "", "subreddit": "/r/hungary", "center": [1401.5, 263.5], "path": [[1391.5, 278.5], [1390.5, 278.5], [1390.5, 277.5], [1391.5, 277.5], [1391.5, 269.5], [1392.5, 269.5], [1392.5, 268.5], [1393.5, 268.5], [1393.5, 259.5], [1392.5, 258.5], [1391.5, 258.5], [1392.5, 258.5], [1392.5, 257.5], [1393.5, 257.5], [1394.5, 257.5], [1394.5, 256.5], [1398.5, 256.5], [1398.5, 250.5], [1397.5, 250.5], [1397.5, 249.5], [1396.5, 249.5], [1397.5, 249.5], [1397.5, 248.5], [1398.5, 248.5], [1398.5, 247.5], [1408.5, 247.5], [1408.5, 248.5], [1410.5, 248.5], [1410.5, 250.5], [1409.5, 250.5], [1409.5, 251.5], [1408.5, 251.5], [1408.5, 257.5], [1410.5, 257.5], [1410.5, 260.5], [1409.5, 260.5], [1409.5, 262.5], [1412.5, 262.5], [1411.5, 265.5], [1411.5, 266.5], [1403.5, 266.5], [1403.5, 268.5], [1404.5, 268.5], [1404.5, 269.5], [1405.5, 269.5], [1405.5, 270.5], [1404.5, 270.5], [1404.5, 273.5], [1406.5, 273.5], [1406.5, 274.5], [1407.5, 274.5], [1407.5, 275.5], [1406.5, 275.5], [1406.5, 276.5], [1405.5, 276.5], [1405.5, 277.5], [1404.5, 277.5], [1404.5, 278.5], [1391.5, 278.5]]}, {"id": "tx3jyp", "submitted_by": "NagaSquad", "name": "ENSEIRB MATMECA", "description": "ENSEIRB ENSEIRB ON S'ENCULE", "website": "https://enseirb-matmeca.bordeaux-inp.fr/fr", "subreddit": "", "center": [713.5, 1119.5], "path": [[707.5, 1114.5], [719.5, 1115.5], [719.5, 1123.5], [707.5, 1123.5], [707.5, 1114.5]]}, {"id": "tx3jy9", "submitted_by": "halcyondays-", "name": "Christ the Redeemer", "description": "An Art Deco statue of Jesus Christ in Rio de Janeiro, Brazil, constructed between 1922 and 1931.", "website": "https://en.wikipedia.org/wiki/Christ_the_Redeemer_(statue)", "subreddit": "/r/brasil", "center": [1092.5, 595.5], "path": [[1080.5, 619.5], [1103.5, 618.5], [1102.5, 615.5], [1098.5, 611.5], [1096.5, 608.5], [1097.5, 594.5], [1098.5, 593.5], [1099.5, 585.5], [1112.5, 581.5], [1110.5, 578.5], [1108.5, 577.5], [1105.5, 578.5], [1095.5, 578.5], [1094.5, 574.5], [1090.5, 574.5], [1091.5, 578.5], [1074.5, 577.5], [1071.5, 577.5], [1073.5, 580.5], [1085.5, 585.5], [1085.5, 593.5], [1087.5, 596.5], [1085.5, 609.5], [1082.5, 613.5]]}, -{"id": "tx3jxr", "submitted_by": "Ok-Act6377", "name": "Dabney House", "description": "DEI, the trigraph associated with Dabney House, a House at the California Institute of Technology.", "website": "dabney.caltech.edu", "subreddit": "", "center": [910.5, 1173.5], "path": [[904.5, 1170.5], [916.5, 1170.5], [916.5, 1176.5], [916.5, 1176.5], [904.5, 1176.5], [904.5, 1170.5]]}, +{"id": "tx3jxr", "submitted_by": "Ok-Act6377", "name": "Dabney House", "description": "DEI, the trigraph associated with Dabney House, a House at the California Institute of Technology.", "website": "https://dabney.caltech.edu", "subreddit": "", "center": [910.5, 1173.5], "path": [[904.5, 1170.5], [916.5, 1170.5], [916.5, 1176.5], [916.5, 1176.5], [904.5, 1176.5], [904.5, 1170.5]]}, {"id": "tx3jk3", "submitted_by": "azeex_gaming", "name": "Fire Truck", "description": "Fire truck is here because Notre Dame de Paris caught fire between April 15 and 16, 2019", "website": "https://fr.wikipedia.org/wiki/Incendie_de_Notre-Dame_de_Paris", "subreddit": "", "center": [1163.5, 1265.5], "path": [[1143.5, 1252.5], [1183.5, 1252.5], [1184.5, 1254.5], [1184.5, 1258.5], [1183.5, 1260.5], [1182.5, 1265.5], [1179.5, 1269.5], [1186.5, 1269.5], [1185.5, 1277.5], [1179.5, 1278.5], [1177.5, 1278.5], [1174.5, 1280.5], [1170.5, 1279.5], [1157.5, 1279.5], [1152.5, 1280.5], [1150.5, 1278.5], [1145.5, 1278.5], [1145.5, 1269.5], [1146.5, 1268.5], [1146.5, 1264.5], [1147.5, 1264.5], [1146.5, 1260.5], [1142.5, 1259.5], [1138.5, 1259.5], [1137.5, 1251.5], [1142.5, 1251.5]]}, {"id": "txabty", "submitted_by": "MattedCrow", "name": "Secret Ranboo", "description": "A more hidden head of the Minecraft skin of Twitch streamer Ranboo.", "website": "", "subreddit": "/r/Ranboo", "center": [885.5, 1456.5], "path": [[881.5, 1454.5], [881.5, 1458.5], [888.5, 1458.5], [888.5, 1454.5], [881.5, 1454.5]]}, {"id": "txabsx", "submitted_by": "AnubisWeeb", "name": "Buster Sword (Final Fantasy 7)", "description": "The iconic weapon wielded by Cloud Strife and Zack Fair from Square Enix's Compilation of Final Fantasy VII.", "website": "", "subreddit": "/r/FinalFantasyVII", "center": [1805.5, 1663.5], "path": [[1785.5, 1677.5], [1785.5, 1676.5], [1807.5, 1655.5], [1809.5, 1656.5], [1813.5, 1653.5], [1814.5, 1653.5], [1815.5, 1646.5], [1816.5, 1646.5], [1819.5, 1649.5], [1824.5, 1644.5], [1824.5, 1642.5], [1827.5, 1642.5], [1827.5, 1645.5], [1825.5, 1645.5], [1820.5, 1650.5], [1824.5, 1654.5], [1824.5, 1655.5], [1819.5, 1655.5], [1817.5, 1659.5], [1815.5, 1659.5], [1811.5, 1663.5], [1809.5, 1665.5], [1809.5, 1663.5], [1807.5, 1663.5], [1807.5, 1666.5], [1801.5, 1671.5], [1800.5, 1674.5], [1800.5, 1677.5], [1785.5, 1677.5]]}, {"id": "txabmn", "submitted_by": "Mr_Quote", "name": "Simon Belmont", "description": "Simon Belmont, the main character of the first Castlevania game.", "website": "https://en.wikipedia.org/wiki/Simon_Belmont", "subreddit": "/r/castlevania", "center": [1323.5, 1039.5], "path": [[1331.5, 1054.5], [1326.5, 1054.5], [1326.5, 1052.5], [1327.5, 1051.5], [1326.5, 1050.5], [1326.5, 1046.5], [1325.5, 1045.5], [1324.5, 1044.5], [1323.5, 1045.5], [1322.5, 1047.5], [1320.5, 1049.5], [1319.5, 1052.5], [1320.5, 1053.5], [1320.5, 1054.5], [1316.5, 1054.5], [1316.5, 1049.5], [1317.5, 1048.5], [1318.5, 1047.5], [1319.5, 1046.5], [1319.5, 1042.5], [1318.5, 1042.5], [1318.5, 1040.5], [1319.5, 1039.5], [1319.5, 1038.5], [1319.5, 1037.5], [1318.5, 1037.5], [1318.5, 1035.5], [1316.5, 1035.5], [1316.5, 1033.5], [1317.5, 1032.5], [1318.5, 1030.5], [1319.5, 1029.5], [1322.5, 1029.5], [1322.5, 1027.5], [1323.5, 1026.5], [1324.5, 1025.5], [1327.5, 1025.5], [1328.5, 1026.5], [1328.5, 1031.5], [1326.5, 1031.5], [1326.5, 1032.5], [1326.5, 1033.5], [1327.5, 1033.5], [1327.5, 1034.5], [1328.5, 1034.5], [1329.5, 1034.5], [1330.5, 1034.5], [1331.5, 1035.5], [1331.5, 1036.5], [1330.5, 1037.5], [1329.5, 1038.5], [1326.5, 1038.5], [1325.5, 1038.5], [1325.5, 1039.5], [1324.5, 1040.5], [1325.5, 1041.5], [1326.5, 1042.5], [1327.5, 1043.5], [1328.5, 1044.5], [1329.5, 1045.5], [1329.5, 1046.5], [1329.5, 1051.5], [1330.5, 1052.5], [1331.5, 1053.5]]}, {"id": "txab7a", "submitted_by": "galactich", "name": "Intersex miniflag", "description": "Intersex is an umbrella term meant to describe anyone who innately has sex characteristics that do not fall into what is typically considered male or female.", "website": "", "subreddit": "", "center": [461.5, 631.5], "path": [[458.5, 629.5], [464.5, 629.5], [464.5, 633.5], [458.5, 633.5]]}, {"id": "txab6f", "submitted_by": "WildControl1", "name": "Simpleflips Rainbow Star", "description": "A rainbow super star representing the popular streamer Simpleflips", "website": "", "subreddit": "/r/Simpleflips", "center": [1150.5, 377.5], "path": [[1150.5, 368.5], [1154.5, 373.5], [1158.5, 373.5], [1155.5, 377.5], [1157.5, 383.5], [1152.5, 383.5], [1150.5, 381.5], [1147.5, 383.5], [1142.5, 383.5], [1145.5, 377.5], [1142.5, 373.5], [1147.5, 372.5], [1150.5, 368.5]]}, -{"id": "txab4p", "submitted_by": "lchi123", "name": "3rd Life SMP / Last Life SMP", "description": "3rd Life and Last Life were two SMPs featuring multiple Minecraft youtubers. Players had a limited amount of lives, color-coded by quantity (dark green = 4+, light green = 3, yellow = 2, red = 1). 'Red lives' or players with only one life, were killers, while players with 2 or more lives were peaceful. Last player standing was the winner.", "website": "", "subreddit": "", "center": [865.5, 589.5], "path": [[857.5, 587.5], [873.5, 587.5], [873.5, 591.5], [857.5, 591.5]]}, {"id": "txab0x", "submitted_by": "BossZeroko", "name": "Neco Arc", "description": "Jan jajan\nDori dori dori", "website": "", "subreddit": "/r/necoarc", "center": [463.5, 1087.5], "path": [[449.5, 1071.5], [476.5, 1071.5], [476.5, 1103.5], [449.5, 1103.5], [449.5, 1087.5]]}, {"id": "txab0m", "submitted_by": "BudderBroHam", "name": "Shigure Ui", "description": "Japanese illustrator turned independent VTuber. She is also known for designing Hololive's Oozora Subaru's character model.", "website": "https://www.youtube.com/channel/UCt30jJgChL8qeT9VPadidSw", "subreddit": "/r/ShigureUi", "center": [1460.5, 1087.5], "path": [[1455.5, 1084.5], [1465.5, 1084.5], [1465.5, 1090.5], [1455.5, 1091.5]]}, {"id": "txaamv", "submitted_by": "migbossofficial", "name": "migboss", "description": "migboss's username in pixel art!", "website": "https://www.twitch.tv/migboss", "subreddit": "/r/migboss", "center": [1095.5, 387.5], "path": [[1081.5, 385.5], [1081.5, 389.5], [1108.5, 390.5], [1108.5, 385.5]]}, {"id": "txa9rq", "submitted_by": "Ph4nt0m_Hydra1", "name": "Bonaire", "description": "A flag map of Bonaire, a small island in the Leeward Antilles which is also an overseas territory of the Kingdom of the Netherlands. Bonaire is known for its beaches and shore diving destinations.", "website": "https://www.tourismbonaire.com/about-bonaire", "subreddit": "/r/Bonaire", "center": [867.5, 12.5], "path": [[858.5, 5.5], [858.5, 7.5], [859.5, 8.5], [859.5, 9.5], [861.5, 9.5], [862.5, 10.5], [863.5, 9.5], [864.5, 10.5], [865.5, 10.5], [867.5, 12.5], [867.5, 13.5], [868.5, 14.5], [868.5, 15.5], [867.5, 16.5], [867.5, 18.5], [868.5, 19.5], [868.5, 21.5], [869.5, 21.5], [869.5, 22.5], [870.5, 23.5], [871.5, 23.5], [871.5, 20.5], [870.5, 19.5], [870.5, 18.5], [871.5, 17.5], [872.5, 17.5], [873.5, 16.5], [873.5, 15.5], [872.5, 14.5], [872.5, 11.5], [873.5, 10.5], [873.5, 9.5], [872.5, 9.5], [871.5, 10.5], [870.5, 9.5], [868.5, 9.5], [867.5, 8.5], [866.5, 8.5], [865.5, 7.5], [864.5, 7.5], [863.5, 6.5], [863.5, 5.5], [862.5, 5.5], [861.5, 4.5], [859.5, 4.5], [858.5, 5.5]]}, {"id": "txa9om", "submitted_by": "NowWeAreJebaited", "name": "Pomu Rainpuff", "description": "Pomu Rainpuff (\u307d\u3080 \u308c\u3044\u3093\u3071\u3075) is an English female Virtual YouTuber affiliated with NIJISANJI EN's first wave LazuLight.", "website": "", "subreddit": "/r/Nijisanji", "center": [1352.5, 1051.5], "path": [[1346.5, 1044.5], [1346.5, 1057.5], [1347.5, 1057.5], [1347.5, 1058.5], [1348.5, 1058.5], [1348.5, 1059.5], [1357.5, 1059.5], [1357.5, 1057.5], [1358.5, 1057.5], [1358.5, 1044.5]]}, -{"id": "txa9l1", "submitted_by": "HammerToenail", "name": "Pokelawls pepeSmoke", "description": "A variation of an emote from streamer Pokelawl's twitch chat.", "website": "twitch.tv/pokelawls", "subreddit": "/r/pokelawls", "center": [703.5, 950.5], "path": [[695.5, 944.5], [695.5, 956.5], [711.5, 956.5], [710.5, 944.5], [695.5, 944.5]]}, +{"id": "txa9l1", "submitted_by": "HammerToenail", "name": "Pokelawls pepeSmoke", "description": "A variation of an emote from streamer Pokelawl's twitch chat.", "website": "https://twitch.tv/pokelawls", "subreddit": "/r/pokelawls", "center": [703.5, 950.5], "path": [[695.5, 944.5], [695.5, 956.5], [711.5, 956.5], [710.5, 944.5], [695.5, 944.5]]}, {"id": "txa9cg", "submitted_by": "platypus_4", "name": "Crystal Gems", "description": "Depictions of some gems from Steven Universe. From left to right: Pearl, Garnet, Amethyst, Lapis Lazuli, and Peridot.", "website": "", "subreddit": "/r/stevenuniverse", "center": [1348.5, 425.5], "path": [[1334.5, 423.5], [1361.5, 423.5], [1361.5, 426.5], [1334.5, 426.5], [1334.5, 423.5]]}, -{"id": "txa9a7", "submitted_by": "SJFree", "name": "CU Boulder", "description": "The letters \"C\" and \"U\" combine to form the logo of the University of Colorado Boulder. Sko Buffs!", "website": "colorado.edu", "subreddit": "/r/CUBoulder", "center": [16.5, 726.5], "path": [[12.5, 723.5], [12.5, 723.5], [12.5, 723.5], [12.5, 723.5], [12.5, 723.5], [19.5, 723.5], [19.5, 729.5], [12.5, 729.5], [12.5, 723.5]]}, -{"id": "txa93k", "submitted_by": "KingDominoIII", "name": "Ramiel", "description": "The Fifth Angel, Ramiel, from the anime Neon Genesis Evangelion.", "website": "https://evangelion.fandom.com/wiki/Ramiel", "subreddit": "/r/evangelion", "center": [0.5, 0.5], "path": []}, +{"id": "txa9a7", "submitted_by": "SJFree", "name": "CU Boulder", "description": "The letters \"C\" and \"U\" combine to form the logo of the University of Colorado Boulder. Sko Buffs!", "website": "https://colorado.edu", "subreddit": "/r/CUBoulder", "center": [16.5, 726.5], "path": [[12.5, 723.5], [12.5, 723.5], [12.5, 723.5], [12.5, 723.5], [12.5, 723.5], [19.5, 723.5], [19.5, 729.5], [12.5, 729.5], [12.5, 723.5]]}, {"id": "txa91a", "submitted_by": "ostensacken", "name": "Warrior on a Horse", "description": "The Warrior of a Horse statue was unveiled in central Skopje on September 8th, 2011.", "website": "", "subreddit": "/r/mkd", "center": [1170.5, 534.5], "path": [[1168.5, 549.5], [1168.5, 546.5], [1167.5, 545.5], [1167.5, 542.5], [1166.5, 541.5], [1166.5, 537.5], [1165.5, 537.5], [1164.5, 536.5], [1163.5, 535.5], [1162.5, 534.5], [1161.5, 533.5], [1160.5, 532.5], [1158.5, 531.5], [1170.5, 531.5], [1171.5, 530.5], [1171.5, 528.5], [1170.5, 526.5], [1169.5, 526.5], [1169.5, 525.5], [1169.5, 525.5], [1168.5, 525.5], [1167.5, 525.5], [1168.5, 528.5], [1167.5, 528.5], [1167.5, 525.5], [1165.5, 525.5], [1166.5, 527.5], [1165.5, 527.5], [1165.5, 524.5], [1166.5, 523.5], [1168.5, 523.5], [1168.5, 521.5], [1169.5, 521.5], [1169.5, 519.5], [1166.5, 519.5], [1168.5, 518.5], [1170.5, 519.5], [1170.5, 517.5], [1171.5, 520.5], [1172.5, 519.5], [1172.5, 520.5], [1172.5, 520.5], [1173.5, 520.5], [1175.5, 520.5], [1174.5, 514.5], [1174.5, 521.5], [1172.5, 521.5], [1172.5, 525.5], [1173.5, 526.5], [1173.5, 527.5], [1175.5, 527.5], [1175.5, 529.5], [1176.5, 529.5], [1175.5, 529.5], [1173.5, 526.5], [1173.5, 530.5], [1181.5, 531.5], [1179.5, 532.5], [1178.5, 533.5], [1177.5, 534.5], [1176.5, 535.5], [1175.5, 536.5], [1174.5, 537.5], [1173.5, 541.5], [1172.5, 545.5], [1171.5, 549.5]]}, -{"id": "txa8z5", "submitted_by": "Coolguy51839", "name": "Space Shuttle", "description": "The Space Shuttle was a launch vehicle that crewed upwards to 7 astronauts. It famously did in flight repairs of the Hubble Space telescope, and docked to the International Space Station multiple times. Out of the hundreds of launches, the Space Shuttle program saw two complete losses of shuttle and crew, on the flights of STS-51 and STS-107, or more commonly known as the Challenger and Columbia disaster respectively. The program was retired in 2011, and didn't see Americans fly into space in America until 2020 via a SpaceX Crew Dragon on top of a Falcon 9.", "website": "", "subreddit": "", "center": [1920.5, 1840.5], "path": [[1923.5, 1786.5], [1918.5, 1795.5], [1917.5, 1809.5], [1916.5, 1815.5], [1919.5, 1818.5], [1919.5, 1837.5], [1915.5, 1842.5], [1912.5, 1852.5], [1889.5, 1861.5], [1890.5, 1868.5], [1935.5, 1867.5], [1939.5, 1866.5], [1938.5, 1858.5], [1933.5, 1855.5], [1931.5, 1838.5], [1929.5, 1816.5], [1931.5, 1814.5], [1931.5, 1811.5], [1929.5, 1809.5], [1930.5, 1803.5], [1930.5, 1800.5], [1929.5, 1794.5], [1926.5, 1790.5]]}, +{"id": "txa8z5", "submitted_by": "Coolguy51839", "name": "Space Shuttle", "description": "The Space Shuttle was a launch vehicle that crewed upwards to 7 astronauts. It famously did in-flight repairs of the Hubble Space Telescope and docked to the International Space Station multiple times. Out of the hundreds of launches, the Space Shuttle program saw two complete losses of shuttle and crew, on the flights of STS-51 and STS-107, more commonly known as the Challenger and Columbia disasters respectively. The program was retired in 2011, and didn't see Americans fly into space in America until 2020 via a SpaceX Crew Dragon on top of a Falcon 9.", "website": "https://en.wikipedia.org/wiki/Space_Shuttle", "subreddit": "/r/AmericanFlagInPlace", "center": [1920.5, 1840.5], "path": [[1923.5, 1786.5], [1918.5, 1795.5], [1917.5, 1809.5], [1916.5, 1815.5], [1919.5, 1818.5], [1919.5, 1837.5], [1915.5, 1842.5], [1912.5, 1852.5], [1889.5, 1861.5], [1890.5, 1868.5], [1935.5, 1867.5], [1939.5, 1866.5], [1938.5, 1858.5], [1933.5, 1855.5], [1931.5, 1838.5], [1929.5, 1816.5], [1931.5, 1814.5], [1931.5, 1811.5], [1929.5, 1809.5], [1930.5, 1803.5], [1930.5, 1800.5], [1929.5, 1794.5], [1926.5, 1790.5]]}, {"id": "txa8ho", "submitted_by": "franciscopizzaro", "name": "The flag of Rhodesia", "description": "The flag of the Republic of Rhodesia, an historic peaceful and successful country in Africa. Collaboration between r/Rhodesia and r/RightistVexillology", "website": "", "subreddit": "/r/Rhodesia", "center": [1995.5, 1472.5], "path": [[1990.5, 1469.5], [1990.5, 1475.5], [2000.5, 1475.5], [2000.5, 1469.5], [1999.5, 1469.5], [1999.5, 1469.5], [2000.5, 1469.5]]}, {"id": "txa8ct", "submitted_by": "30chad03", "name": "CommanderVideo from BIT.TRIP", "description": "BIT.TRIP is a series of rhythm games that vary in genre with each game, ranging from Pong-like (BIT.TRIP BEAT) to platforming (BIT.TRIP RUNNER). Each game shows a stage in the life of the protagonist, CommanderVideo, from birth to death. There are six main games in the series (BEAT, CORE, VOID, RUNNER, FATE, and FLUX (all released from 2009-2011)) with two non-canonical spinoffs being released afterwards (Runner2 (2013) and Runner3 (2018)).", "website": "", "subreddit": "/r/BITTRIP", "center": [58.5, 1052.5], "path": [[56.5, 1054.5], [56.5, 1048.5], [57.5, 1049.5], [58.5, 1050.5], [59.5, 1051.5], [60.5, 1051.5], [61.5, 1052.5], [61.5, 1053.5], [61.5, 1054.5], [56.5, 1054.5]]}, -{"id": "txa8ci", "submitted_by": "Polar_Vortx", "name": "lturepublic Mug (Operation Thunderclap)", "description": "A beer mug symbolizing Lithuanian streamer lturepublic. At the time of the screenshot, it was under attack by a combined coalition of r/BABYMETAL, r/foxholegame, r/sabaton, r/rust, r/DeepRockGalactic r/redrising, and scattered members of r/osugame and BTMC's twitch chat. This attack, known as Operation Thunderclap, was a revenge action for lturepublic raiding r/BABYMETAL's discord. The mug was replaced by pixel art (linked below) of Joakim, lead singer of Sabaton.", "website": "https://imgur.com/a/fS8XmjJ", "subreddit": "/r/ltu_republic", "center": [579.5, 1610.5], "path": [[566.5, 1597.5], [566.5, 1623.5], [591.5, 1623.5], [591.5, 1597.5], [566.5, 1597.5]]}, +{"id": "txa8ci", "submitted_by": "Polar_Vortx", "name": "Sabaton (Joakim)", "description": "Joakim Brod\u00e9n from Sabaton, a Swedish Heavy Metal band with historical lyrics. It was placed by a combined coalition of r/BABYMETAL, r/foxholegame, r/sabaton, r/rust, r/DeepRockGalactic r/redrising, and scattered members of r/osugame and BTMC's twitch chat. This attack, known as Operation Thunderclap, was a revenge action against twitch streamer lturepublic who raided r/BABYMETAL's discord.", "website": "https://www.sabaton.net/", "subreddit": "/r/sabaton", "center": [579.5, 1610.5], "path": [[566.5, 1597.5], [566.5, 1623.5], [591.5, 1623.5], [591.5, 1597.5], [566.5, 1597.5]]}, {"id": "txa89m", "submitted_by": "Sheep_Commander", "name": "Takanashi Kiara (hololive)", "description": "A 8bit portrait of VTuber Takanashi Kiara from the agency Hololive", "website": "https://youtube.fandom.com/wiki/Takanashi_Kiara_Ch._hololive-EN", "subreddit": "/r/hololive", "center": [1340.5, 1051.5], "path": [[1333.5, 1044.5], [1333.5, 1058.5], [1346.5, 1058.5], [1346.5, 1044.5]]}, {"id": "txa853", "submitted_by": "Fak3_Simp", "name": "Spiderman Face", "description": "Spider-Man is a superhero appearing in American comic books published by Marvel Comics.", "website": "", "subreddit": "", "center": [747.5, 1738.5], "path": [[744.5, 1732.5], [744.5, 1733.5], [741.5, 1734.5], [741.5, 1742.5], [747.5, 1745.5], [748.5, 1745.5], [753.5, 1741.5], [753.5, 1734.5], [748.5, 1732.5]]}, {"id": "txa83k", "submitted_by": "JohannesSpiderwick", "name": "meowwwdotcom", "description": "Meow is a player on the relatively small Nintendo Black Crisis Minecraft Zelda Server, the IP to which is mc.nintblkc.com .\nWhile this face is not from her current skin it is from her by far most iconic skin", "website": "https://nbc-zelda-mcserver.fandom.com/wiki/Home", "subreddit": "", "center": [1036.5, 1746.5], "path": [[1032.5, 1742.5], [1039.5, 1742.5], [1039.5, 1749.5], [1032.5, 1749.5], [1032.5, 1749.5]]}, {"id": "txa7z4", "submitted_by": "Snoo_69649", "name": "Getting Over It", "description": "Getting over It is a video game where the objective is to clear a variety of obstacles while only being mobilized with a sledge hammer.", "website": "https://en.wikipedia.org/wiki/Getting_Over_It_with_Bennett_Foddy", "subreddit": "/r/GettingOverItGame", "center": [1209.5, 814.5], "path": [[1201.5, 822.5], [1216.5, 822.5], [1216.5, 805.5], [1201.5, 805.5], [1201.5, 822.5]]}, {"id": "txa7yk", "submitted_by": "Statik81", "name": "HNT Helium Crypto", "description": "Powered by the Helium Blockchain, The People\u2019s Network represents a paradigm shift for decentralized wireless infrastructure.\n", "website": "https://www.helium.com/", "subreddit": "/r/HeliumNetwork", "center": [1271.5, 460.5], "path": [[1260.5, 454.5], [1279.5, 455.5], [1283.5, 466.5], [1261.5, 466.5]]}, -{"id": "txa7el", "submitted_by": "TheWalkingDictionary", "name": "Johns Hopkins University Blue Jay", "description": "A logo of a blue jay facing right, the mascot for Johns Hopkins University", "website": "https://www.jhu.edu/", "subreddit": "/r/jhu", "center": [443.5, 1216.5], "path": [[440.5, 1213.5], [447.5, 1213.5], [447.5, 1218.5], [439.5, 1218.5], [439.5, 1213.5]]}, +{"id": "txa7el", "submitted_by": "TheWalkingDictionary", "name": "Johns Hopkins University Blue Jay", "description": "A logo of a blue jay facing right, the mascot for Johns Hopkins University", "website": "https://www.jhu.edu/", "subreddit": "/r/jhu", "center": [443.5, 1215.5], "path": [[439.5, 1219.5], [447.5, 1219.5], [447.5, 1213.5], [444.5, 1213.5], [444.5, 1211.5], [441.5, 1211.5], [441.5, 1212.5], [439.5, 1212.5]]}, {"id": "txa6ya", "submitted_by": "JoelRamosG5", "name": "Chile", "description": "This is the chilean flag, very nice country but they are not going to the World Cup ctm weon", "website": "", "subreddit": "", "center": [262.5, 533.5], "path": [[251.5, 528.5], [272.5, 529.5], [273.5, 537.5], [251.5, 537.5]]}, -{"id": "txa6ka", "submitted_by": "Ziraic", "name": "The United States", "description": "The united states is a war mongering imperialist capitalist nation, known for oppression, imperialism, fascism, and bigotry over seas and at home too", "website": "", "subreddit": "", "center": [1886.5, 1810.5], "path": [[1777.5, 1752.5], [1775.5, 1753.5], [1773.5, 1752.5], [1775.5, 1869.5], [1999.5, 1867.5], [1999.5, 1751.5]]}, {"id": "txa6hj", "submitted_by": "KingDominoIII", "name": "Sachiel Face", "description": "One of the faces of Sachiel, the Third Angel from the anime Neon Genesis Evangelion.", "website": "https://evangelion.fandom.com/wiki/Sachiel", "subreddit": "/r/evangelion", "center": [646.5, 1420.5], "path": [[646.5, 1419.5], [646.5, 1419.5], [646.5, 1419.5], [652.5, 1424.5], [651.5, 1416.5], [646.5, 1414.5], [640.5, 1416.5], [640.5, 1421.5], [644.5, 1426.5], [646.5, 1428.5], [652.5, 1423.5], [648.5, 1418.5]]}, {"id": "txa67t", "submitted_by": "HonestPollution623", "name": "Starter Pokemon First Gen", "description": "In the first set of games for Game Boy (Pok\u00e9mon Red, Green and Blue), trainers could take home either a Bulbasaur, Charmander or Squirtle from Professor Oak's laboratory.", "website": "", "subreddit": "", "center": [1835.5, 17.5], "path": [[1812.5, 2.5], [1857.5, 2.5], [1857.5, 33.5], [1813.5, 33.5]]}, {"id": "txa64n", "submitted_by": "FullyK", "name": "Feh the owl", "description": "Feh is the owl mascot of Fire Emblem Heroes, a gacha game based on the T-RPG series Fire Emblem", "website": "", "subreddit": "/r/fireemblemheroes", "center": [1843.5, 766.5], "path": [[1838.5, 759.5], [1838.5, 759.5], [1834.5, 765.5], [1837.5, 771.5], [1850.5, 771.5], [1853.5, 769.5], [1848.5, 761.5]]}, @@ -5200,11 +4807,8 @@ {"id": "txa5i2", "submitted_by": "KerosineCat", "name": "Eye of Senri", "description": "Originating from the len'en project, a game series heavily inspired by touhou, the Eye of Senri is an important though enigmatic symbol that recurs throughout the series. \nIn universe it is closely associated with the Shrine of senri and has come to represent the len'en project as a whole.", "website": "http://lenen.shoutwiki.com/wiki/Len%27en_Wiki", "subreddit": "/r/lenen", "center": [1755.5, 809.5], "path": [[1753.5, 804.5], [1756.5, 804.5], [1757.5, 805.5], [1758.5, 806.5], [1759.5, 807.5], [1759.5, 808.5], [1759.5, 809.5], [1759.5, 810.5], [1758.5, 811.5], [1757.5, 812.5], [1756.5, 813.5], [1755.5, 813.5], [1754.5, 813.5], [1753.5, 813.5], [1752.5, 812.5], [1751.5, 811.5], [1750.5, 810.5], [1750.5, 809.5], [1750.5, 808.5], [1750.5, 807.5], [1751.5, 806.5], [1752.5, 805.5]]}, {"id": "txa51r", "submitted_by": "JoahTheron", "name": "Cloudless Summer Day", "description": "On the top right you see a \"Joja rat\". Joja is a company in the game Stardew Valley and Blue is its theme. At the bottom we have a beautiful farm with an apple tree, some lovely flowers, our short name (LTZ for LagerTeilZeit) and a charming butterfly with a little sun to brighten up the skies. Last but not least, the gorgeous crow. It was originally drawn by /u/ilovewoofwoofs but I liked it so much that I adopted it and made a little worm in his mouth. In the sky we have 2 bees from the beehive beneath.", "website": "https://greekgodgear.eu/", "subreddit": "/r/GreekGodGear", "center": [1731.5, 983.5], "path": [[1708.5, 963.5], [1741.5, 963.5], [1741.5, 978.5], [1731.5, 978.5], [1731.5, 989.5], [1768.5, 989.5], [1768.5, 999.5], [1708.5, 999.5], [1708.5, 989.5], [1721.5, 989.5], [1721.5, 978.5], [1708.5, 978.5]]}, {"id": "txa4yi", "submitted_by": "ostensacken", "name": "Bear and Magpie", "description": "A Formosan black bear, an endemic subspecies of Asiatic black bear. The bear is holding a Taiwan blue magpie, another endemic species of Taiwan.", "website": "", "subreddit": "/r/taiwan", "center": [966.5, 558.5], "path": [[962.5, 566.5], [962.5, 552.5], [961.5, 552.5], [961.5, 551.5], [962.5, 550.5], [963.5, 550.5], [964.5, 552.5], [967.5, 552.5], [967.5, 550.5], [968.5, 550.5], [969.5, 551.5], [969.5, 552.5], [968.5, 553.5], [968.5, 557.5], [968.5, 558.5], [969.5, 558.5], [970.5, 557.5], [971.5, 557.5], [972.5, 557.5], [972.5, 556.5], [972.5, 555.5], [971.5, 555.5], [971.5, 551.5], [972.5, 551.5], [972.5, 550.5], [973.5, 550.5], [973.5, 551.5], [975.5, 551.5], [973.5, 551.5], [973.5, 553.5], [974.5, 554.5], [975.5, 555.5], [975.5, 560.5], [974.5, 557.5], [973.5, 556.5], [971.5, 557.5], [971.5, 559.5], [970.5, 560.5], [968.5, 560.5], [968.5, 566.5]]}, -{"id": "txa4xi", "submitted_by": "coulgath", "name": "Botting accusations", "description": "The french community building and maintaining this area was accused by the spanish twitch community of using Bots to build it. These accusations stemmed mainly from the disbelief of the spanish community seeing the french overcoming every attack on such large scales and the misunderstanding of french sentences by spanish streamers, such as : 17k upvotes->17k bots; overlays->bots. However no empirical evidence of botting was ever brought by the spanish side. Spanish viewers continued to accuse the french community of botting after the end of the event despite the amount of post (dynamic heat maps, chronological timelines) on r/place and twitch clips indicating all spanish accusations were false ones. However, many clips surfaced showing the spanish leader Ibai using a script auto placing pixels on the french flags and many spanish accounts were banned by the subreddit's mods. In the end, this conflict only showcased the outstanding organisation and implication of the french community and its allies under the leadership of Kameto against the salty spanich. \n", "website": "", "subreddit": "", "center": [125.5, 1718.5], "path": [[2.5, 1470.5], [246.5, 1470.5], [247.5, 1967.5], [3.5, 1966.5], [3.5, 1966.5]]}, {"id": "txa4xh", "submitted_by": "lilihahattl", "name": "Former Alice pixel art", "description": "Alice Margatroid is a character from the Touhou Project. The Touhou r/place 2022 group had a deal with r/Romania to put her in their flag because the name of her music theme suggested Romanian heritage. A Polish streamer raided the flag and the art piece twice, finally destroying her for good on the second attempt", "website": "https://en.touhouwiki.net/wiki/Alice_Margatroid", "subreddit": "/r/Romania, &, /r/touhou", "center": [778.5, 158.5], "path": [[794.5, 146.5], [762.5, 146.5], [762.5, 170.5], [794.5, 170.5]]}, -{"id": "txa4wy", "submitted_by": "_PrincessIrene_", "name": "Lil B", "description": "This is Lil B, the mascot of twitch streamer and the community of APLATYPUSS.", "website": "twitch.com/aplatypuss", "subreddit": "/r/Aplatypuss", "center": [1037.5, 434.5], "path": [[1038.5, 424.5], [1043.5, 424.5], [1043.5, 425.5], [1044.5, 425.5], [1044.5, 426.5], [1045.5, 426.5], [1045.5, 427.5], [1046.5, 427.5], [1046.5, 440.5], [1045.5, 440.5], [1045.5, 441.5], [1044.5, 441.5], [1044.5, 442.5], [1043.5, 442.5], [1043.5, 443.5], [1039.5, 443.5], [1039.5, 442.5], [1038.5, 442.5], [1038.5, 441.5], [1032.5, 441.5], [1033.5, 442.5], [1030.5, 442.5], [1030.5, 441.5], [1029.5, 441.5], [1029.5, 440.5], [1028.5, 440.5], [1028.5, 437.5], [1027.5, 437.5], [1027.5, 430.5], [1028.5, 430.5], [1028.5, 429.5], [1031.5, 429.5], [1031.5, 430.5], [1034.5, 430.5], [1034.5, 427.5], [1035.5, 427.5], [1035.5, 426.5], [1036.5, 426.5], [1036.5, 425.5], [1038.5, 425.5], [1038.5, 424.5], [1043.5, 424.5], [1040.5, 424.5]]}, -{"id": "txa4im", "submitted_by": "Silversoal", "name": "Vintagebeef", "description": "A member of Hermitcraft and inactive member of Mindcrack.", "website": "https://youtube.com/vintagebeef", "subreddit": "", "center": [901.5, 611.5], "path": [[896.5, 607.5], [896.5, 607.5], [896.5, 615.5], [905.5, 615.5], [905.5, 607.5]]}, -{"id": "txa4ik", "submitted_by": "RenkoSTG", "name": "Game Maker 8.2", "description": "A community mod of Game Maker 8.1 that fixes most outstanding bugs and faults. Used primarily by the I Wanna Community to maintain and update GM8 games for modern Windows systems.", "website": "https://github.com/omicronrex", "subreddit": "", "center": [0.5, 0.5], "path": []}, +{"id": "txa4wy", "submitted_by": "_PrincessIrene_", "name": "Lil B", "description": "This is Lil B, the mascot of twitch streamer and the community of APLATYPUSS.", "website": "https://twitch.com/aplatypuss", "subreddit": "/r/Aplatypuss", "center": [1037.5, 434.5], "path": [[1038.5, 424.5], [1043.5, 424.5], [1043.5, 425.5], [1044.5, 425.5], [1044.5, 426.5], [1045.5, 426.5], [1045.5, 427.5], [1046.5, 427.5], [1046.5, 440.5], [1045.5, 440.5], [1045.5, 441.5], [1044.5, 441.5], [1044.5, 442.5], [1043.5, 442.5], [1043.5, 443.5], [1039.5, 443.5], [1039.5, 442.5], [1038.5, 442.5], [1038.5, 441.5], [1032.5, 441.5], [1033.5, 442.5], [1030.5, 442.5], [1030.5, 441.5], [1029.5, 441.5], [1029.5, 440.5], [1028.5, 440.5], [1028.5, 437.5], [1027.5, 437.5], [1027.5, 430.5], [1028.5, 430.5], [1028.5, 429.5], [1031.5, 429.5], [1031.5, 430.5], [1034.5, 430.5], [1034.5, 427.5], [1035.5, 427.5], [1035.5, 426.5], [1036.5, 426.5], [1036.5, 425.5], [1038.5, 425.5], [1038.5, 424.5], [1043.5, 424.5], [1040.5, 424.5]]}, {"id": "txa4i6", "submitted_by": "okillgoawaynow", "name": "Norm Macdonald Tribute", "description": "A tribute to the late comedian Norm Macdonald. To the left, the logo for his video podcast Norm Macdonald Live, which ran from 2013 to 2017 and hosted guests such as David Letterman, Bob Saget, and Superdave Osborne. To the right, a pixel rendition of Turd Ferguson, one of Macdonald's most famous SNL characters, featured in the sketch series he created: Celebrity Jeopardy. We love you and miss you, Norm.", "website": "https://en.wikipedia.org/wiki/Norm_Macdonald", "subreddit": "/r/NormMacdonald", "center": [557.5, 1722.5], "path": [[542.5, 1712.5], [572.5, 1712.5], [572.5, 1731.5], [542.5, 1731.5], [542.5, 1731.5], [542.5, 1731.5]]}, {"id": "txa4h5", "submitted_by": "Slight-Hurry-9293", "name": "Moth and Crab From SKY: COTL", "description": "The default character for new players from the video game, Sky: Children of The Light. It has been lovingly named Moth by the community.", "website": "", "subreddit": "/r/SkyChildrenOfLight", "center": [1125.5, 1662.5], "path": [[1118.5, 1654.5], [1132.5, 1654.5], [1132.5, 1669.5], [1109.5, 1668.5], [1122.5, 1662.5]]}, {"id": "txa49c", "submitted_by": "logicalspark", "name": "Mexican-Italian alliance", "description": "After Italy and Mexico won the war against the trans and were able to merge, they decided to create these heart symbols as a show of their friendship.", "website": "", "subreddit": "/r/Mexico", "center": [824.5, 454.5], "path": [[824.5, 463.5], [836.5, 450.5], [812.5, 450.5]]}, @@ -5212,8 +4816,6 @@ {"id": "txa3s1", "submitted_by": "Snoo_69649", "name": "Yin Yang", "description": "Yin Yang is a ancient Chinese Symbol used to depict peace and harmony.", "website": "https://en.wikipedia.org/wiki/Yin_and_yang", "subreddit": "", "center": [1591.5, 319.5], "path": [[1584.5, 309.5], [1584.5, 329.5], [1597.5, 329.5], [1597.5, 309.5], [1584.5, 309.5]]}, {"id": "txa3o2", "submitted_by": "Flat-Newspaper-2704", "name": "Illimani", "description": "El Illimani, con 6.460 metros sobre el nivel del mar, es una monta\u00f1a de Bolivia, ubicada cerca de la ciudad de La Paz. Es la mayor altura de la Cordillera Real y la segunda de Bolivia.", "website": "", "subreddit": "/r/BOLIVIA", "center": [1421.5, 1226.5], "path": [[1390.5, 1232.5], [1450.5, 1233.5], [1440.5, 1223.5], [1437.5, 1222.5], [1429.5, 1215.5], [1425.5, 1217.5], [1417.5, 1215.5], [1413.5, 1219.5], [1409.5, 1216.5], [1392.5, 1231.5]]}, {"id": "txa3nn", "submitted_by": "rotoculteur", "name": "The Cuke", "description": "A cucumber commemorating Marshall's World X stream and his watchers.", "website": "https://www.twitch.tv/marshallsworldx", "subreddit": "/r/none", "center": [525.5, 1502.5], "path": [[529.5, 1495.5], [520.5, 1495.5], [520.5, 1497.5], [517.5, 1498.5], [517.5, 1500.5], [522.5, 1508.5], [524.5, 1508.5], [527.5, 1507.5], [528.5, 1507.5], [528.5, 1510.5], [527.5, 1510.5], [527.5, 1512.5], [531.5, 1512.5], [531.5, 1510.5], [531.5, 1500.5], [530.5, 1500.5], [529.5, 1500.5], [529.5, 1499.5], [528.5, 1498.5], [528.5, 1497.5], [528.5, 1496.5], [528.5, 1496.5]]}, -{"id": "txa3if", "submitted_by": "Chilichongoes", "name": "Raising the Flag on Iwo Jima", "description": "An iconic photograph of six United States Marines raising the U.S. flag atop Mount Suribachi during the Battle of Iwo Jima in the final stages of the Pacific War", "website": "", "subreddit": "/r/AmericanFlagInPlace", "center": [1947.5, 1854.5], "path": [[1938.5, 1867.5], [1938.5, 1864.5], [1940.5, 1860.5], [1941.5, 1855.5], [1941.5, 1854.5], [1942.5, 1853.5], [1944.5, 1852.5], [1945.5, 1852.5], [1946.5, 1852.5], [1931.5, 1838.5], [1935.5, 1838.5], [1943.5, 1839.5], [1946.5, 1840.5], [1948.5, 1841.5], [1949.5, 1842.5], [1950.5, 1843.5], [1951.5, 1844.5], [1952.5, 1846.5], [1953.5, 1849.5], [1950.5, 1850.5], [1947.5, 1851.5], [1946.5, 1852.5], [1949.5, 1855.5], [1950.5, 1855.5], [1950.5, 1856.5], [1951.5, 1857.5], [1953.5, 1858.5], [1958.5, 1854.5], [1959.5, 1853.5], [1961.5, 1854.5], [1961.5, 1855.5], [1960.5, 1858.5], [1961.5, 1859.5], [1960.5, 1861.5], [1962.5, 1863.5], [1957.5, 1862.5], [1956.5, 1862.5], [1960.5, 1866.5], [1956.5, 1863.5], [1955.5, 1865.5], [1957.5, 1867.5]]}, -{"id": "txa3gs", "submitted_by": "troyofathens", "name": "Jhay", "description": "A speedrunner who primarily plays Super Mario Galaxy.", "website": "twitch.tv/jhay", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "txa37g", "submitted_by": "Slick1059", "name": "Bear emoticon", "description": "A classic bear emoticon, which was a form of emotive text faces from before emojis were a thing. A pencil lays beside it.", "website": "https://cutekaomoji.com/animals/bears/", "subreddit": "", "center": [1388.5, 1812.5], "path": [[1376.5, 1808.5], [1376.5, 1815.5], [1399.5, 1815.5], [1399.5, 1808.5]]}, {"id": "txa35o", "submitted_by": "Fak3_Simp", "name": "Argentinian Mate", "description": "Mate is an infusion made with yerba mate leaves (Ilex paraguariensis), a plant native to the Argentina and Paran\u00e1 river basins.", "website": "https://es.wikipedia.org/wiki/Mate_(infusi%C3%B3n)", "subreddit": "/r/TheVirginZone", "center": [1049.5, 143.5], "path": [[1026.5, 121.5], [1071.5, 121.5], [1071.5, 165.5], [1026.5, 165.5], [1026.5, 165.5]]}, {"id": "txa340", "submitted_by": "wildlifegoddess2409", "name": "Nonbinary flag", "description": "small pride flag representing nonbinary people", "website": "", "subreddit": "", "center": [1704.5, 620.5], "path": [[1699.5, 619.5], [1699.5, 621.5], [1708.5, 621.5], [1709.5, 620.5], [1707.5, 619.5], [1700.5, 619.5]]}, @@ -5224,8 +4826,7 @@ {"id": "txa292", "submitted_by": "TheGoldMustache", "name": "TGM", "description": "A joint effort between u/TheGoldMustache and students at Technologisches Gewerbemuseum, an Austrian high school with the same initials.", "website": "https://de.wikipedia.org/wiki/Technologisches_Gewerbemuseum", "subreddit": "/r/TheGoldMustache", "center": [1623.5, 1924.5], "path": [[1612.5, 1918.5], [1612.5, 1930.5], [1634.5, 1930.5], [1634.5, 1918.5]]}, {"id": "txa1up", "submitted_by": "Undead_Hunter03", "name": "desktop icon for Black Desert Online", "description": "The desktop icon of Black Spirit from Black Desert Online", "website": "", "subreddit": "/r/BlackDesertOnline", "center": [1594.5, 1993.5], "path": [[1602.5, 2000.5], [1602.5, 1986.5], [1586.5, 1986.5], [1586.5, 1999.5]]}, {"id": "txa1p3", "submitted_by": "Undead_Hunter03", "name": "Demolition Lovers", "description": "the cover of Three Cheers for Sweet Revenge by My Chemical Romance", "website": "", "subreddit": "/r/MyChemicalRomance", "center": [1739.5, 1343.5], "path": [[1723.5, 1329.5], [1755.5, 1329.5], [1754.5, 1357.5], [1723.5, 1356.5]]}, -{"id": "txa1gn", "submitted_by": "moon_dark", "name": "Constantiam", "description": "Smaller version of Constantiam \"semi-vanilla\" Minecraft server logo (bigger one at X34 Y1014)\nThis place became a \"homeland\" we protected at all costs after our team had to move for the first and only time during the 1-2 days of event", "website": "https://constantiam.net/", "subreddit": "/r/constantiam", "center": [1800.5, 42.5], "path": [[1787.5, 37.5], [1787.5, 35.5], [1798.5, 35.5], [1798.5, 34.5], [1814.5, 34.5], [1814.5, 48.5], [1794.5, 48.5], [1794.5, 50.5], [1787.5, 50.5], [1787.5, 48.5], [1785.5, 48.5], [1785.5, 37.5]]}, -{"id": "txa0rb", "submitted_by": "Chilichongoes", "name": "Washington Momument", "description": "The Washington Monument is an obelisk within the National Mall in Washington, D.C., built to commemorate George Washington", "website": "", "subreddit": "/r/AmericanFlagInPlace", "center": [1875.5, 1853.5], "path": [[1875.5, 1838.5], [1877.5, 1841.5], [1877.5, 1867.5], [1873.5, 1867.5], [1873.5, 1841.5]]}, +{"id": "txa1gn", "submitted_by": "moon_dark", "name": "Constantiam", "description": "Constantiam - \"semi-vanilla\"/anarchy Minecraft server created and inhabited by former 2b2t players in February 2016\n\nBigger alternative logo was made at X34 Y1014 by the same team\n\nThis place became a \"homeland\" we protected at all costs after our team had to move for the first and only time during the 1-2 days of event", "website": "https://constantiam.net/", "subreddit": "/r/constantiam", "center": [1800.5, 42.5], "path": [[1787.5, 37.5], [1787.5, 35.5], [1798.5, 35.5], [1798.5, 34.5], [1814.5, 34.5], [1814.5, 48.5], [1794.5, 48.5], [1794.5, 50.5], [1787.5, 50.5], [1787.5, 48.5], [1785.5, 48.5], [1785.5, 37.5]]}, {"id": "txa0er", "submitted_by": "jimmydv6", "name": "Mizkif Peepo", "description": "Mizkif's first contribution to the r/Place Canvas.\nStood strong for the entirety of the event, despite being attacked multiple times by both other streamers & rivaling subreddits.", "website": "https://twitch.tv/mizkif", "subreddit": "/r/Mizkif", "center": [645.5, 971.5], "path": [[624.5, 943.5], [659.5, 943.5], [666.5, 943.5], [666.5, 999.5], [624.5, 999.5]]}, {"id": "txa089", "submitted_by": "Jillingfromafar", "name": "Studio Gohan", "description": "Studio Gohan is a small independent animation studio founded in 2019 by Harumaki Gohan and other vocaloid producers. Their first project is Reunion MV, a song produced by Harumaki Gohan.", "website": "https://harumakigohan.com/studiogohan/", "subreddit": "", "center": [1132.5, 1703.5], "path": [[1125.5, 1698.5], [1138.5, 1698.5], [1138.5, 1699.5], [1139.5, 1699.5], [1139.5, 1707.5], [1125.5, 1707.5]]}, {"id": "txa064", "submitted_by": "only2ndplace", "name": "TU Dresden", "description": "The logo of the technical university Dresden in Saxony, Germany", "website": "https://tu-dresden.de/", "subreddit": "", "center": [244.5, 1248.5], "path": [[239.5, 1243.5], [248.5, 1243.5], [248.5, 1252.5], [239.5, 1252.5], [239.5, 1243.5]]}, @@ -5241,7 +4842,6 @@ {"id": "tx9ykp", "submitted_by": "Melon-lord10", "name": "Nepal", "description": "Nepal flag with Buddha, mountains and temple.", "website": "", "subreddit": "/r/nepal", "center": [1496.5, 964.5], "path": [[1478.5, 943.5], [1508.5, 943.5], [1508.5, 949.5], [1510.5, 949.5], [1510.5, 962.5], [1512.5, 963.5], [1525.5, 964.5], [1524.5, 972.5], [1517.5, 973.5], [1517.5, 981.5], [1482.5, 981.5], [1481.5, 997.5], [1482.5, 997.5], [1482.5, 998.5], [1479.5, 998.5], [1478.5, 998.5], [1478.5, 943.5]]}, {"id": "tx9yji", "submitted_by": "gr3nk", "name": "Araguaney Tree", "description": "The Araguaney or Tebehuia Chrisantha was declared National Tree of Venezuela on May 29, 1948.", "website": "https://www.google.com/search?gs_ssp=eJzj4tLP1TcwKsrLTikwYPTiTCxKTC9NzEutBABVUQei&q=araguaney&oq=arag&aqs=chrome.1.69i57j46i512j0i10j46i512j0i10j0i512j46i512j0i10j46i512.2504j0j4&sourceid=chrome&ie=UTF-8", "subreddit": "/r/vnzla", "center": [1236.5, 796.5], "path": [[1231.5, 790.5], [1238.5, 788.5], [1244.5, 795.5], [1240.5, 799.5], [1247.5, 804.5], [1242.5, 805.5], [1239.5, 800.5], [1234.5, 801.5], [1233.5, 802.5], [1228.5, 802.5], [1228.5, 800.5], [1235.5, 798.5], [1229.5, 797.5], [1229.5, 794.5], [1229.5, 792.5]]}, {"id": "tx9yj7", "submitted_by": "ComprehensiveCat5032", "name": "Kim Dokja", "description": "The main character of Omniscient Reader Viewpoint", "website": "https://m.webtoons.com/en/action/omniscient-reader/list?title_no=2154&page=1", "subreddit": "/r/OmniscientReader", "center": [36.5, 1076.5], "path": [[31.5, 1072.5], [31.5, 1076.5], [33.5, 1080.5], [33.5, 1081.5], [40.5, 1082.5], [41.5, 1072.5], [40.5, 1071.5], [32.5, 1071.5]]}, -{"id": "tx9y5a", "submitted_by": "Omweyland", "name": "\u00b5-Ziq / Planet Mu", "description": "Logo for the IDM artist \u00b5-Ziq and his label Planet Mu", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": [[1327.5, 504.5], [1331.5, 508.5], [1331.5, 504.5], [1327.5, 508.5]]}, {"id": "tx9y2t", "submitted_by": "Art_Beats", "name": "\u00dc's tribute", "description": "A medal with an \u00dc which represents a smiley face and happiness to our group of friends.", "website": "", "subreddit": "", "center": [668.5, 1557.5], "path": [[674.5, 1551.5], [674.5, 1563.5], [661.5, 1563.5], [661.5, 1553.5]]}, {"id": "tx9y15", "submitted_by": "AnonaMan7", "name": "AroAllo Arrows", "description": "a series of arrows in the colors of the Aromantic Allosexual flag", "website": "", "subreddit": "/r/AroAllo", "center": [525.5, 657.5], "path": [[460.5, 648.5], [458.5, 652.5], [458.5, 654.5], [460.5, 654.5], [460.5, 660.5], [458.5, 662.5], [458.5, 666.5], [592.5, 666.5], [592.5, 662.5], [590.5, 660.5], [590.5, 655.5], [592.5, 654.5], [592.5, 652.5], [590.5, 648.5]]}, {"id": "tx9xyj", "submitted_by": "depressionchan", "name": "Automod Heart", "description": "To show the love and appreciation we have for our one and only bot who writes a kind message on every single one of our posts without fail. Automod, our beloved. We dedicate this green heart to you.", "website": "", "subreddit": "", "center": [702.5, 425.5], "path": [[705.5, 428.5], [705.5, 421.5], [699.5, 421.5], [699.5, 428.5]]}, @@ -5253,34 +4853,29 @@ {"id": "tx9wmb", "submitted_by": "Maybe_An_Alt", "name": "Getting Over It", "description": "The main character of Getting Over It with Bennett Foddy, Diogenes.", "website": "", "subreddit": "/r/GettingOverItGame", "center": [1209.5, 814.5], "path": [[1201.5, 805.5], [1216.5, 805.5], [1216.5, 822.5], [1201.5, 822.5]]}, {"id": "tx9we8", "submitted_by": "EnderCreeper121", "name": "Enderman Eyes 3", "description": "Two cars altered to look like an orange version of the eye texture of the Minecraft Endermen. One of a set of 4 that can be seen among the parking lot including purple eyes resembling the current eye texture in the top left of the lot, green eyes resembling the original eye texture in the bottom left of the lot, and a blue variant in the top right. All four were fully constructed by the end of the event", "website": "", "subreddit": "", "center": [1110.5, 749.5], "path": [[1105.5, 748.5], [1114.5, 748.5], [1114.5, 750.5], [1105.5, 750.5]]}, {"id": "tx9w8x", "submitted_by": "Vinnyblavord", "name": "Vinny", "description": "Small area where remnants are of the name Vinny. Hard fought spot by me and my sister but sadly not on this canvas.", "website": "", "subreddit": "", "center": [1068.5, 1906.5], "path": [[1060.5, 1904.5], [1076.5, 1904.5], [1076.5, 1908.5], [1060.5, 1908.5], [1060.5, 1906.5]]}, -{"id": "tx9w5k", "submitted_by": "mmnkiuns", "name": "Perxitaa", "description": "Minecraft skin used by Perxitaa in series like TortillaLand and Minecraft Extremo.\nCreated by perxeros!", "website": "twitch.tv/perxitaa", "subreddit": "", "center": [1994.5, 1398.5], "path": [[1990.5, 1394.5], [1990.5, 1401.5], [1998.5, 1401.5], [1998.5, 1394.5], [1990.5, 1394.5]]}, -{"id": "tx9vvv", "submitted_by": "shrtbusdrivr", "name": "Gabumon", "description": "Reptile Digimon. Evolves into Garurumon. Partner of Matt Ishida in Digimon Adventure.", "website": "", "subreddit": "/r/digimon", "center": [1331.5, 117.5], "path": [[1322.5, 104.5], [1338.5, 104.5], [1338.5, 106.5], [1346.5, 123.5], [1342.5, 126.5], [1333.5, 126.5], [1332.5, 126.5], [1333.5, 130.5], [1328.5, 130.5], [1320.5, 129.5], [1320.5, 116.5], [1319.5, 114.5], [1322.5, 110.5], [1322.5, 103.5], [1326.5, 103.5]]}, +{"id": "tx9w5k", "submitted_by": "mmnkiuns", "name": "Perxitaa", "description": "Minecraft skin used by Perxitaa in series like TortillaLand and Minecraft Extremo.\nCreated by perxeros!", "website": "https://twitch.tv/perxitaa", "subreddit": "", "center": [1994.5, 1398.5], "path": [[1990.5, 1394.5], [1990.5, 1401.5], [1998.5, 1401.5], [1998.5, 1394.5], [1990.5, 1394.5]]}, {"id": "tx9vdf", "submitted_by": "cobblecatt_", "name": "PepeD", "description": "An animated twitch emote, depicting Pepe the Frog dancing, is commonly used in the chatbox when there's music playing on stream.", "website": "", "subreddit": "", "center": [6.5, 82.5], "path": [[0.5, 85.5], [0.5, 82.5], [1.5, 84.5], [3.5, 80.5], [4.5, 79.5], [6.5, 79.5], [6.5, 80.5], [7.5, 80.5], [8.5, 80.5], [8.5, 79.5], [9.5, 79.5], [10.5, 80.5], [9.5, 83.5], [12.5, 81.5], [8.5, 85.5], [1.5, 85.5], [0.5, 84.5]]}, -{"id": "tx9v9q", "submitted_by": "mmnkiuns", "name": "Carola", "description": "Minecraft skin used by Carola in TortillaLand.\n\nSpanish streamer.", "website": "twitch.tv/carola", "subreddit": "/r/Carola", "center": [1984.5, 1398.5], "path": [[1980.5, 1394.5], [1980.5, 1401.5], [1988.5, 1401.5], [1988.5, 1394.5], [1980.5, 1394.5]]}, +{"id": "tx9v9q", "submitted_by": "mmnkiuns", "name": "Carola", "description": "Minecraft skin used by Carola in TortillaLand.\n\nSpanish streamer.", "website": "https://twitch.tv/carola", "subreddit": "/r/Carola", "center": [1984.5, 1398.5], "path": [[1980.5, 1394.5], [1980.5, 1401.5], [1988.5, 1401.5], [1988.5, 1394.5], [1980.5, 1394.5]]}, {"id": "tx9v0d", "submitted_by": "energetichydrogens", "name": "2022 Touhou Hijack", "description": "Clockwise, from top left: Flandre Scarlet, Sakuya Izayoi, Kasane Teto (of Vocaloid), Shinmyoumaru Sukuna, Utsuho Reiuji, Koishi Komeiji.", "website": "https://touhou-project.news/", "subreddit": "/r/touhou", "center": [1654.5, 1504.5], "path": [[1621.5, 1451.5], [1620.5, 1557.5], [1687.5, 1557.5], [1686.5, 1451.5], [1686.5, 1451.5], [1621.5, 1451.5]]}, {"id": "tx9uzc", "submitted_by": "BudderBroHam", "name": "Getting Over It", "description": "Video game Getting Over It with Bennett Foddy made in 2017", "website": "http://www.foddy.net/2017/09/getting-over-it/", "subreddit": "/r/GettingOverItGame", "center": [1209.5, 813.5], "path": [[1201.5, 822.5], [1216.5, 822.5], [1216.5, 804.5], [1201.5, 804.5]]}, -{"id": "tx9up4", "submitted_by": "Spritch", "name": "\u00b5-Ziq", "description": "Michael Paradinas, better known by his stage name \u03bc-Ziq (pronounced music or mu-zik), is an English electronic musician. He was associated with the electronic style intelligent dance music (IDM) during the 1990s, and recorded on Rephlex Records and Reflective Records. His critically acclaimed 1997 album, Lunatic Harness, helped define the drill n bass subgenre and was also his most successful release, selling over 100,000 copies. Paradinas founded the record label Planet Mu, begun in 1995, where he has championed genres such as juke and footwork.", "website": "https://www.youtube.com/watch?v=UN_9nB37O_U", "subreddit": "/r/idm", "center": [1329.5, 506.5], "path": [[1327.5, 503.5], [1327.5, 508.5], [1331.5, 508.5], [1331.5, 503.5], [1327.5, 503.5]]}, +{"id": "tx9up4", "submitted_by": "Spritch", "name": "\u00b5-Ziq", "description": "Michael Paradinas, better known by his stage name \u03bc-Ziq (pronounced music or mu-zik), is an English electronic musician. He was associated with the electronic style intelligent dance music (IDM) during the 1990s, and recorded on Rephlex Records and Reflective Records. His critically acclaimed 1997 album, Lunatic Harness, helped define the drill n bass subgenre and was also his most successful release, selling over 100,000 copies. Paradinas founded the record label Planet Mu, begun in 1995, where he has championed genres such as juke and footwork.", "website": "https://planet.mu/artists/u-ziq/", "subreddit": "/r/idm", "center": [1329.5, 506.5], "path": [[1327.5, 503.5], [1327.5, 508.5], [1331.5, 508.5], [1331.5, 503.5], [1327.5, 503.5]]}, {"id": "tx9ua0", "submitted_by": "Eternity303", "name": "The original Starwalker", "description": "This place is Pissing me off... I'm the original Starwalker.", "website": "", "subreddit": "/r/Deltarune", "center": [1819.5, 1685.5], "path": [[1818.5, 1687.5], [1818.5, 1679.5], [1819.5, 1680.5], [1820.5, 1681.5], [1821.5, 1681.5], [1822.5, 1681.5], [1822.5, 1682.5], [1823.5, 1682.5], [1824.5, 1682.5], [1824.5, 1683.5], [1824.5, 1684.5], [1824.5, 1685.5], [1823.5, 1686.5], [1822.5, 1687.5], [1821.5, 1688.5], [1821.5, 1689.5], [1822.5, 1690.5], [1823.5, 1691.5], [1822.5, 1691.5], [1821.5, 1691.5], [1820.5, 1691.5], [1819.5, 1691.5], [1818.5, 1691.5], [1817.5, 1691.5], [1816.5, 1691.5], [1815.5, 1691.5], [1814.5, 1691.5], [1815.5, 1690.5], [1816.5, 1689.5], [1816.5, 1688.5], [1815.5, 1687.5], [1814.5, 1686.5], [1813.5, 1685.5], [1813.5, 1684.5], [1813.5, 1683.5], [1813.5, 1682.5], [1814.5, 1682.5], [1815.5, 1682.5], [1815.5, 1681.5], [1816.5, 1681.5], [1816.5, 1680.5], [1817.5, 1680.5]]}, -{"id": "tx9u9v", "submitted_by": "oldtrain1", "name": "Simo H\u00e4yh\u00e4", "description": "A depiction of a sniper invisible to the naked eye, being a direct reference to the legendary White Death, Simo H\u00e4yh\u00e4. A Finnish Sniper with over 500 confirmed kills during the Winter War, which lasted the beginning of WW2 (1939 - 1940), while only using a Mosin Nagant rifle without a scope.", "website": "", "subreddit": "", "center": [570.5, 244.5], "path": [[561.5, 254.5], [570.5, 254.5], [581.5, 251.5], [584.5, 246.5], [581.5, 237.5], [572.5, 232.5], [567.5, 231.5], [562.5, 235.5], [560.5, 240.5], [556.5, 242.5], [558.5, 253.5]]}, +{"id": "tx9u9v", "submitted_by": "oldtrain1", "name": "Simo H\u00e4yh\u00e4", "description": "A depiction of a sniper invisible to the naked eye, being a direct reference to the legendary White Death, Simo H\u00e4yh\u00e4. A Finnish sniper with over 500 confirmed kills during the Winter War, which lasted the beginning of World War II (1939 - 1940), while only using a Mosin Nagant rifle without a scope. He is estimated to have been the deadliest sniper in history.", "website": "https://en.wikipedia.org/wiki/Simo_H%C3%A4yh%C3%A4", "subreddit": "/r/Suomi", "center": [570.5, 244.5], "path": [[561.5, 254.5], [570.5, 254.5], [581.5, 251.5], [584.5, 246.5], [581.5, 237.5], [572.5, 232.5], [567.5, 231.5], [562.5, 235.5], [560.5, 240.5], [556.5, 242.5], [558.5, 253.5]]}, {"id": "tx9ty2", "submitted_by": "supapizamin", "name": "Border of bratishkinoff and the blue corner", "description": "The border seprating bratishkinoff and the blue corner is significant because before there was no border and bratishkinoffs background was blue until an unorganized group of blue corner people who branched off from the organized groups alliance forced the streamer to make a border intrstingly enough it moved right a few pixels from where the border first was", "website": "https://www.twitch.tv/bratishkinoff", "subreddit": "/r/thebluecorner", "center": [1923.5, 1907.5], "path": [[1919.5, 2000.5], [1924.5, 1871.5], [1925.5, 1869.5], [1923.5, 2000.5], [1917.5, 1871.5], [1916.5, 1870.5], [1921.5, 1870.5], [1923.5, 1869.5], [1922.5, 1999.5], [1924.5, 1999.5], [1916.5, 1870.5], [1920.5, 1999.5], [1922.5, 1998.5], [1923.5, 1998.5], [1918.5, 1870.5], [1925.5, 2000.5], [1921.5, 2000.5], [1921.5, 2000.5], [1922.5, 1871.5]]}, -{"id": "tx9tqh", "submitted_by": "mmnkiuns", "name": "Momonkun", "description": "Momonkun's minecraft skin\nHe is a spanish streamer known by GTA Roleplay and other games.\nCreated by fandom otakil!", "website": "twitch.tv/momonkunn", "subreddit": "", "center": [1994.5, 1389.5], "path": [[1990.5, 1385.5], [1990.5, 1392.5], [1998.5, 1392.5], [1998.5, 1385.5], [1990.5, 1385.5]]}, +{"id": "tx9tqh", "submitted_by": "mmnkiuns", "name": "Momonkun", "description": "Momonkun's minecraft skin\nHe is a spanish streamer known by GTA Roleplay and other games.\nCreated by fandom otakil!", "website": "https://twitch.tv/momonkunn", "subreddit": "", "center": [1994.5, 1389.5], "path": [[1990.5, 1385.5], [1990.5, 1392.5], [1998.5, 1392.5], [1998.5, 1385.5], [1990.5, 1385.5]]}, {"id": "tx9top", "submitted_by": "EnderCreeper121", "name": "Enderman Eyes 2", "description": "Two cars altered to look like the former 1.8 pre-release eye texture of the Minecraft Endermen. One of a set of 4 that can be seen among the parking lot including purple eyes resembling the current eye texture in the top left of the lot, an orange variant in the right of the lot, and a blue variant in the top right. All four were fully constructed by the end of the event.\"", "website": "", "subreddit": "", "center": [942.5, 793.5], "path": [[937.5, 792.5], [946.5, 792.5], [946.5, 794.5], [937.5, 794.5], [937.5, 794.5]]}, {"id": "tx9tdi", "submitted_by": "TemporaryAccount-tem", "name": "Weirdcore", "description": "Weirdcore, a community dedicated to creating pixelated, low-quality images without context that are sometimes unnerving. The O is stylized to look like a lens glare, a very common theme in Weirdcore images.", "website": "", "subreddit": "/r/Weirdcore", "center": [1469.5, 245.5], "path": [[1497.5, 242.5], [1497.5, 249.5], [1439.5, 248.5], [1439.5, 242.5]]}, {"id": "tx9sys", "submitted_by": "gr3nk", "name": "Jump King", "description": "A small drawing of the helmet of the knight protagonist of the JumpKing game.", "website": "", "subreddit": "", "center": [1234.5, 824.5], "path": [[1230.5, 819.5], [1237.5, 819.5], [1237.5, 820.5], [1238.5, 820.5], [1238.5, 827.5], [1237.5, 827.5], [1237.5, 828.5], [1236.5, 828.5], [1236.5, 829.5], [1232.5, 829.5], [1232.5, 828.5], [1231.5, 828.5], [1231.5, 827.5], [1230.5, 827.5], [1230.5, 826.5], [1229.5, 826.5], [1229.5, 820.5], [1230.5, 820.5]]}, {"id": "tx9suv", "submitted_by": "tanithkane", "name": "Blurryface", "description": "A simplified version of the cover of Blurryface, Twenty One Pilots's 2016 album.", "website": "", "subreddit": "/r/twentyonepilots", "center": [398.5, 1588.5], "path": [[394.5, 1584.5], [394.5, 1584.5], [394.5, 1584.5], [394.5, 1584.5], [394.5, 1584.5], [402.5, 1584.5], [402.5, 1592.5], [394.5, 1592.5]]}, -{"id": "tx9sqa", "submitted_by": "IcyUnderstanding7287", "name": "Flag of Malaysia", "description": "", "website": "", "subreddit": "/r/malaysia", "center": [358.5, 977.5], "path": [[323.5, 961.5], [393.5, 961.5], [393.5, 992.5], [323.5, 992.5], [323.5, 961.5]]}, {"id": "tx9sne", "submitted_by": "JT0219", "name": "Sanbaka", "description": "A unit from the main Japanese branch of Nijisanji that debuted during the first quarter of 2019. From left to right: Ange Katrina, Lize Helesta, Inui Toko.", "website": "https://www.nijisanji.jp/en/members", "subreddit": "/r/Nijisanji", "center": [1936.5, 749.5], "path": [[1920.5, 745.5], [1920.5, 752.5], [1952.5, 752.5], [1952.5, 745.5]]}, {"id": "tx9sle", "submitted_by": "the_piro", "name": "Michelle Puttini", "description": "MichellePuttini, is an Italian streamer on Twitch, her community is called Sommelier.", "website": "https://linktr.ee/MichellePuttini", "subreddit": "", "center": [1543.5, 1767.5], "path": [[1537.5, 1761.5], [1537.5, 1765.5], [1539.5, 1768.5], [1539.5, 1776.5], [1546.5, 1776.5], [1546.5, 1767.5], [1550.5, 1764.5], [1550.5, 1761.5]]}, -{"id": "tx9sfr", "submitted_by": "Chilichongoes", "name": "Freedom Tower", "description": "One World Trade Center is the main building of the rebuilt World Trade Center complex in Lower Manhattan, New York City", "website": "", "subreddit": "", "center": [1960.5, 1833.5], "path": [[1960.5, 1764.5], [1960.5, 1800.5], [1965.5, 1803.5], [1967.5, 1867.5], [1958.5, 1867.5], [1958.5, 1863.5], [1959.5, 1863.5], [1959.5, 1864.5], [1963.5, 1864.5], [1963.5, 1862.5], [1961.5, 1860.5], [1962.5, 1859.5], [1961.5, 1858.5], [1962.5, 1854.5], [1959.5, 1852.5], [1958.5, 1853.5], [1957.5, 1855.5], [1955.5, 1856.5], [1953.5, 1857.5], [1955.5, 1804.5], [1960.5, 1800.5]]}, -{"id": "tx9seg", "submitted_by": "White_Otaku", "name": "Gabumon", "description": "A dog-like creature from the Digimon series, partner to the DigiDestined Yamato \"Matt\" Ishida", "website": "https://digimon.fandom.com/wiki/Gabumon_(Adventure)", "subreddit": "/r/digimon", "center": [1332.5, 117.5], "path": [[1322.5, 103.5], [1320.5, 129.5], [1348.5, 127.5], [1336.5, 104.5], [1336.5, 104.5], [1336.5, 104.5]]}, -{"id": "tx9se8", "submitted_by": "mmnkiuns", "name": "VioletaG", "description": "Skin from an adorablisima!\nUn sol de persona", "website": "twitch.tv/violetag", "subreddit": "", "center": [1984.5, 1389.5], "path": [[1980.5, 1385.5], [1980.5, 1392.5], [1988.5, 1392.5], [1988.5, 1385.5], [1980.5, 1385.5]]}, +{"id": "tx9se8", "submitted_by": "mmnkiuns", "name": "VioletaG", "description": "Skin from an adorablisima!\nUn sol de persona", "website": "https://twitch.tv/violetag", "subreddit": "", "center": [1984.5, 1389.5], "path": [[1980.5, 1385.5], [1980.5, 1392.5], [1988.5, 1392.5], [1988.5, 1385.5], [1980.5, 1385.5]]}, {"id": "tx9s51", "submitted_by": "250301ben", "name": "the SAI logo", "description": "The logo for Twenty One Pilots newest album in the Blurryface album colors", "website": "", "subreddit": "/r/twentyonepilots", "center": [751.5, 660.5], "path": [[748.5, 654.5], [748.5, 667.5], [753.5, 667.5], [753.5, 666.5], [754.5, 666.5], [754.5, 654.5], [748.5, 654.5]]}, {"id": "tx9rze", "submitted_by": "Slurptrucked", "name": "Nami's...Treasures...", "description": "The remnants of a consistent effort to try and give Nami a pair of tig ol bitties despite not being part of the original template.", "website": "", "subreddit": "/r/OnePiece", "center": [178.5, 1432.5], "path": [[172.5, 1437.5], [172.5, 1426.5], [184.5, 1426.5], [184.5, 1437.5], [172.5, 1437.5]]}, {"id": "tx9rvc", "submitted_by": "Zedia_", "name": "Juice WRLD NLMB", "description": "Produced by the Juice WRLD community, this may the only gang related art piece. No Limit Muskegon Boys or Never Leave My Brothers is a Chicago based gang which was repped by Juice WRLD. 999 represents turning 666 upside down (opposite of evil). NLMB shit 999 s/o Archive Hub and everyone who worked on Juice WRLD pieces. Aquafina >", "website": "", "subreddit": "/r/juicewrld", "center": [1698.5, 921.5], "path": [[1687.5, 928.5], [1687.5, 914.5], [1709.5, 914.5], [1709.5, 928.5]]}, {"id": "tx9rro", "submitted_by": "EpicrockerTT", "name": "YAND", "description": "YAND is a group of friends who had a goal of leaving their small mark on the massive landscape of the internet. But alas, this is simply Yet Another Normal Description", "website": "", "subreddit": "/r/YANDITES", "center": [1510.5, 1275.5], "path": [[1498.5, 1271.5], [1498.5, 1271.5], [1498.5, 1271.5], [1522.5, 1271.5], [1522.5, 1279.5], [1498.5, 1279.5], [1498.5, 1271.5]]}, -{"id": "tx9rrm", "submitted_by": "sourceres", "name": "DFTBA/Crank Green", "description": "A slogan of the Nerdfighters, the community surrounding the vlogbrothers Hank and John Green, which stands for 'don't forget to be awesome.' The sign is held by Crank Green, a meme spawned during the 2022 Project For Awesome charity livestream.", "website": "", "subreddit": "/r/nerdfighters", "center": [149.5, 702.5], "path": [[133.5, 695.5], [164.5, 695.5], [164.5, 707.5], [156.5, 707.5], [154.5, 712.5], [144.5, 712.5], [141.5, 707.5], [133.5, 707.5]]}, +{"id": "tx9rrm", "submitted_by": "sourceres", "name": "DFTBA", "description": "'Don't Forget To Be Awesome' (DFTBA) is a slogan of the Nerdfighters, the community surrounding the vlogbrothers Hank and John Green. The sign is held by Crank Green, a meme spawned during the 2022 Project For Awesome charity livestream.", "website": "https://nerdfighteria.com", "subreddit": "/r/nerdfighters", "center": [149.5, 702.5], "path": [[133.5, 695.5], [164.5, 695.5], [164.5, 707.5], [156.5, 707.5], [154.5, 712.5], [144.5, 712.5], [141.5, 707.5], [133.5, 707.5]]}, {"id": "tx9rgt", "submitted_by": "mmnkiuns", "name": "Volkacio references", "description": "References about Viktor Volkov and Horacio Perez. Both are fictional characters from GTA Roleplay in InfamesRp.\nYou can see their story in Perxitaa or Momonkunn Twitch channels.", "website": "", "subreddit": "/r/volkacio", "center": [1886.5, 746.5], "path": [[1874.5, 726.5], [1874.5, 760.5], [1904.5, 760.5], [1904.5, 744.5], [1882.5, 744.5], [1882.5, 733.5], [1882.5, 732.5], [1891.5, 732.5], [1891.5, 725.5], [1874.5, 725.5], [1874.5, 744.5]]}, -{"id": "tx9rf9", "submitted_by": "Bossboy_42", "name": "FEH", "description": "FEH is the owl mascot from the Nintendo mobile game Fire Emblem Heroes.", "website": "https://fire-emblem-heroes.com/en/", "subreddit": "", "center": [1843.5, 766.5], "path": [[1848.5, 760.5], [1848.5, 765.5], [1854.5, 771.5], [1837.5, 771.5], [1835.5, 769.5], [1835.5, 764.5], [1836.5, 761.5], [1837.5, 760.5], [1848.5, 760.5]]}, {"id": "tx9r1y", "submitted_by": "SolarRad75", "name": "P*rn", "description": "Basically a giant advertisement of p*rn that is actually just 4 teams in B1G. Amazing.", "website": "", "subreddit": "/r/theb1g", "center": [204.5, 594.5], "path": [[164.5, 582.5], [151.5, 611.5], [179.5, 611.5], [181.5, 600.5], [257.5, 605.5], [256.5, 583.5]]}, {"id": "tx9qm5", "submitted_by": "quantanaut", "name": "LEGO Classic Tahu", "description": "A representation of the Bionicle character Toa Tahu in the LEGO Classic set '90 Years of Play'", "website": "", "subreddit": "/r/bioniclememes", "center": [1141.5, 457.5], "path": [[1138.5, 460.5], [1144.5, 460.5], [1144.5, 453.5], [1138.5, 453.5]]}, {"id": "tx9qk2", "submitted_by": "cobbleman4", "name": "Usada Pekora", "description": "Usada Pekora is a vtuber apart of Hololive Gen 3. She is a bunny who is often refered to as a war criminal", "website": "https://www.youtube.com/channel/UC1DCedRgGHBdm81E1llLhOQ", "subreddit": "", "center": [1370.5, 994.5], "path": [[1376.5, 999.5], [1366.5, 999.5], [1366.5, 997.5], [1367.5, 997.5], [1367.5, 996.5], [1366.5, 996.5], [1366.5, 993.5], [1366.5, 996.5], [1365.5, 996.5], [1365.5, 999.5], [1363.5, 999.5], [1363.5, 997.5], [1362.5, 997.5], [1362.5, 993.5], [1363.5, 993.5], [1363.5, 991.5], [1364.5, 991.5], [1364.5, 990.5], [1365.5, 990.5], [1365.5, 989.5], [1377.5, 989.5], [1377.5, 990.5], [1378.5, 990.5], [1378.5, 991.5], [1379.5, 991.5], [1379.5, 994.5], [1378.5, 994.5], [1378.5, 996.5], [1377.5, 996.5], [1376.5, 996.5], [1376.5, 993.5], [1376.5, 996.5], [1375.5, 996.5], [1375.5, 997.5], [1376.5, 997.5], [1376.5, 998.5], [1376.5, 999.5]]}, @@ -5289,8 +4884,7 @@ {"id": "tx9q54", "submitted_by": "cchikara", "name": "Chao (SA2)", "description": "A mini drawing of a Chao (virtual pet) from Sonic Adventure 2", "website": "", "subreddit": "", "center": [770.5, 1733.5], "path": [[768.5, 1723.5], [768.5, 1726.5], [769.5, 1727.5], [768.5, 1728.5], [766.5, 1730.5], [765.5, 1730.5], [766.5, 1736.5], [766.5, 1740.5], [773.5, 1741.5], [774.5, 1739.5], [774.5, 1735.5], [775.5, 1734.5], [775.5, 1731.5], [771.5, 1727.5], [772.5, 1725.5], [772.5, 1723.5]]}, {"id": "tx9q4j", "submitted_by": "ostensacken", "name": "Yellow LEGO brick", "description": "A yellow Lego brick.", "website": "", "subreddit": "/r/lego", "center": [623.5, 296.5], "path": [[611.5, 292.5], [611.5, 299.5], [612.5, 300.5], [613.5, 300.5], [614.5, 301.5], [615.5, 301.5], [616.5, 302.5], [617.5, 302.5], [618.5, 303.5], [619.5, 303.5], [620.5, 304.5], [621.5, 304.5], [622.5, 305.5], [623.5, 305.5], [624.5, 306.5], [625.5, 306.5], [626.5, 305.5], [627.5, 305.5], [628.5, 304.5], [629.5, 304.5], [630.5, 303.5], [631.5, 303.5], [632.5, 302.5], [633.5, 302.5], [634.5, 301.5], [634.5, 294.5], [633.5, 293.5], [632.5, 293.5], [631.5, 292.5], [629.5, 292.5], [629.5, 291.5], [628.5, 291.5], [627.5, 291.5], [627.5, 290.5], [626.5, 289.5], [624.5, 289.5], [623.5, 288.5], [622.5, 288.5], [621.5, 287.5], [619.5, 287.5], [618.5, 288.5], [618.5, 289.5], [616.5, 289.5], [616.5, 290.5], [614.5, 290.5]]}, {"id": "tx9q3w", "submitted_by": "MercenaryLarry", "name": "what have i done", "description": "A Discord server of friends who play games and make the highest-effort shitposts. Catch some of our best content on our website!", "website": "https://whid.live", "subreddit": "/r/whid", "center": [848.5, 980.5], "path": [[844.5, 982.5], [846.5, 977.5], [852.5, 977.5], [852.5, 982.5], [844.5, 983.5]]}, -{"id": "tx9q3u", "submitted_by": "Wikirojo", "name": "#REDINSTEAD", "description": "A slogan and movement that supports autistic people and their acceptance. It advocates for autistic people to express themselves and be proud of who they are!", "website": "", "subreddit": "", "center": [277.5, 1855.5], "path": [[250.5, 1850.5], [304.5, 1850.5], [304.5, 1859.5], [250.5, 1860.5]]}, -{"id": "tx9q16", "submitted_by": "mmnkiuns", "name": "DessT3", "description": "Minecraft skin used by Dess in TortillaLand. Spanish streamer known for Gta Roleplay.", "website": "twitch.tv/desst3", "subreddit": "", "center": [1572.5, 632.5], "path": [[1567.5, 628.5], [1567.5, 636.5], [1576.5, 636.5], [1576.5, 628.5], [1567.5, 628.5]]}, +{"id": "tx9q16", "submitted_by": "mmnkiuns", "name": "DessT3", "description": "Minecraft skin used by Dess in TortillaLand. Spanish streamer known for Gta Roleplay.", "website": "https://twitch.tv/desst3", "subreddit": "", "center": [1572.5, 632.5], "path": [[1567.5, 628.5], [1567.5, 636.5], [1576.5, 636.5], [1576.5, 628.5], [1567.5, 628.5]]}, {"id": "tx9pvm", "submitted_by": "Hot_Disaster_1997", "name": "SKZOO", "description": "Kpop group Stray Kids' cartoon animal representations SKZOO with an LGBT flag because the gays love Stray Kids", "website": "", "subreddit": "/r/straykids", "center": [1489.5, 1054.5], "path": [[1479.5, 1045.5], [1498.5, 1045.5], [1498.5, 1063.5], [1479.5, 1063.5], [1479.5, 1062.5], [1479.5, 1059.5]]}, {"id": "tx9pl6", "submitted_by": "Human_no_4815162342", "name": "Lovegang 126", "description": "Logo of the Roman pop rap crew Lovegang 126 also known as CXXVI Lovegang or 126 crew", "website": "", "subreddit": "", "center": [763.5, 284.5], "path": [[756.5, 280.5], [756.5, 288.5], [770.5, 288.5], [770.5, 280.5], [756.5, 280.5]]}, {"id": "tx9pit", "submitted_by": "Fishes_Glubs", "name": "Ramiel", "description": "Ramiel from Japanese manga and anime Neon Genesis Evangelion. The fifth angel", "website": "https://www.evangelion.co.jp/", "subreddit": "/r/evangelion", "center": [645.5, 1388.5], "path": [[645.5, 1383.5], [644.5, 1383.5], [639.5, 1388.5], [645.5, 1394.5], [650.5, 1389.5], [648.5, 1386.5]]}, @@ -5299,7 +4893,6 @@ {"id": "tx9oy7", "submitted_by": "pepper0427", "name": "CWRU", "description": "An abbreviation for Case Western Reserve University.", "website": "https://case.edu/", "subreddit": "/r/cwru", "center": [332.5, 1577.5], "path": [[322.5, 1574.5], [322.5, 1574.5], [322.5, 1574.5], [341.5, 1574.5], [341.5, 1579.5], [322.5, 1579.5]]}, {"id": "tx9on6", "submitted_by": "JudgeMagisterBellum", "name": "2hu", "description": "Streamer name of denerate gacha gamer, Vtuber addict, and Tamamo no Mae simper.", "website": "", "subreddit": "", "center": [1401.5, 997.5], "path": [[1396.5, 998.5], [1396.5, 997.5], [1404.5, 996.5], [1404.5, 998.5], [1401.5, 998.5], [1404.5, 997.5], [1400.5, 998.5], [1396.5, 995.5], [1398.5, 995.5], [1396.5, 996.5], [1397.5, 996.5], [1398.5, 998.5], [1404.5, 997.5], [1400.5, 998.5], [1399.5, 995.5], [1404.5, 995.5]]}, {"id": "tx9omd", "submitted_by": "GamerRighway", "name": "Tairitsu's Bow", "description": "The bow from one of two main characters of Arcaea 'Tairitsu'; representing 'Conflict'", "website": "https://arcaea.lowiro.com/en", "subreddit": "/r/arcaea", "center": [1832.5, 1654.5], "path": [[1831.5, 1650.5], [1830.5, 1651.5], [1829.5, 1652.5], [1829.5, 1653.5], [1830.5, 1654.5], [1830.5, 1655.5], [1829.5, 1656.5], [1830.5, 1657.5], [1829.5, 1658.5], [1830.5, 1659.5], [1831.5, 1658.5], [1832.5, 1657.5], [1833.5, 1656.5], [1834.5, 1656.5], [1835.5, 1655.5], [1836.5, 1654.5], [1836.5, 1653.5], [1835.5, 1652.5], [1834.5, 1652.5], [1833.5, 1651.5], [1832.5, 1650.5], [1831.5, 1650.5]]}, -{"id": "tx9oid", "submitted_by": "Apprehensive-Pop-76", "name": "Chilean huemul", "description": "a yellowish-brown deer of the genus Hippocamelus, of South America", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx9o5x", "submitted_by": "the_piro", "name": "LucillaJiggly", "description": "Lucillajiggly, Lucilla Materazzi, is an Italian model and streamer on Twitch, her community is called Tortelloti, inspired by Tortello a typical Italian dish. His community is proud to be part of the history of the Internet.", "website": "https://linktr.ee/lucillajiggly", "subreddit": "/r/LucillaJigglyTwitch", "center": [1531.5, 1764.5], "path": [[1525.5, 1761.5], [1537.5, 1761.5], [1537.5, 1767.5], [1525.5, 1767.5]]}, {"id": "tx9nqi", "submitted_by": "One_Solution7089", "name": "The 0,589 Alliance", "description": "An alliance between the teams of BuildTheEarth, Eagles, Root, UF, UFC, Malta, 5UP, and A2B2", "website": "", "subreddit": "", "center": [33.5, 623.5], "path": [[0.5, 687.5], [20.5, 687.5], [20.5, 643.5], [20.5, 642.5], [59.5, 642.5], [59.5, 631.5], [61.5, 631.5], [62.5, 632.5], [70.5, 632.5], [71.5, 631.5], [72.5, 631.5], [73.5, 630.5], [74.5, 630.5], [75.5, 629.5], [76.5, 628.5], [77.5, 627.5], [78.5, 626.5], [79.5, 625.5], [80.5, 624.5], [80.5, 622.5], [81.5, 621.5], [81.5, 620.5], [82.5, 619.5], [82.5, 612.5], [81.5, 611.5], [81.5, 609.5], [80.5, 608.5], [80.5, 589.5], [0.5, 589.5], [0.5, 589.5]]}, {"id": "tx9nqh", "submitted_by": "Andrealphus_", "name": "DomCasse Logo", "description": "Logo of qu\u00e9becois twitch streamer DomCasse", "website": "https://www.twitch.tv/domcasse", "subreddit": "", "center": [894.5, 1044.5], "path": [[886.5, 1016.5], [901.5, 1016.5], [901.5, 1072.5], [886.5, 1072.5], [886.5, 1016.5]]}, @@ -5313,43 +4906,38 @@ {"id": "tx9mcn", "submitted_by": "supapizamin", "name": "r/thebluecorner logo", "description": "The logo of the blue corner representing the name of the subreddit", "website": "", "subreddit": "/r/thebluecorner", "center": [1961.5, 1989.5], "path": [[1926.5, 1985.5], [1926.5, 1984.5], [1999.5, 1985.5], [1999.5, 1984.5], [1999.5, 1994.5], [1925.5, 1994.5], [1925.5, 1984.5], [1999.5, 1984.5]]}, {"id": "tx9mbz", "submitted_by": "eldigg", "name": "Usada Pekora", "description": "Pekora is a Hololive Vtuber known for her distinctive laugh.", "website": "https://en.hololive.tv/", "subreddit": "/r/hololive", "center": [1371.5, 993.5], "path": [[1367.5, 986.5], [1362.5, 995.5], [1364.5, 998.5], [1378.5, 998.5], [1379.5, 993.5], [1377.5, 991.5], [1375.5, 986.5], [1373.5, 986.5], [1373.5, 990.5], [1369.5, 990.5], [1369.5, 986.5], [1367.5, 986.5]]}, {"id": "tx9mbt", "submitted_by": "ostensacken", "name": "Mute Swan", "description": "The mute swan is the national bird of Denmark. Here, it is shown in love with the Indian elephant. Drawn as a display of friendship between the two nations.", "website": "", "subreddit": "/r/denmark", "center": [550.5, 333.5], "path": [[539.5, 338.5], [539.5, 332.5], [540.5, 331.5], [541.5, 329.5], [542.5, 328.5], [543.5, 327.5], [543.5, 324.5], [542.5, 324.5], [541.5, 325.5], [539.5, 325.5], [538.5, 324.5], [537.5, 323.5], [538.5, 322.5], [539.5, 321.5], [540.5, 320.5], [541.5, 319.5], [543.5, 319.5], [544.5, 318.5], [545.5, 319.5], [545.5, 320.5], [546.5, 320.5], [546.5, 321.5], [548.5, 323.5], [548.5, 327.5], [547.5, 328.5], [547.5, 329.5], [546.5, 330.5], [547.5, 331.5], [550.5, 329.5], [554.5, 328.5], [556.5, 327.5], [558.5, 325.5], [559.5, 326.5], [560.5, 327.5], [561.5, 330.5], [560.5, 331.5], [561.5, 332.5], [561.5, 334.5], [562.5, 334.5], [562.5, 337.5], [562.5, 339.5], [561.5, 340.5], [561.5, 341.5], [558.5, 342.5], [547.5, 342.5], [547.5, 341.5], [544.5, 341.5], [542.5, 341.5], [541.5, 340.5], [539.5, 339.5]]}, -{"id": "tx9m1a", "submitted_by": "HonestPollution623", "name": "Mobile Games", "description": "Several mobile games \n-Angry Bird, Pou, Brawl Stars", "website": "", "subreddit": "", "center": [585.5, 173.5], "path": [[634.5, 141.5], [537.5, 140.5], [537.5, 205.5], [634.5, 204.5]]}, {"id": "tx9lyn", "submitted_by": "BigCommunication6657", "name": "Tiny Mexican Flag", "description": "Just a tiny mexican flag", "website": "", "subreddit": "/r/Mexico", "center": [1124.5, 1355.5], "path": [[1121.5, 1355.5], [1117.5, 1351.5], [1131.5, 1351.5], [1131.5, 1359.5], [1117.5, 1359.5], [1117.5, 1351.5], [1117.5, 1351.5], [1117.5, 1351.5]]}, {"id": "tx9lvj", "submitted_by": "Slurptrucked", "name": "Roger's Hat", "description": "Roger's pirate hat depicting his Jolly Roger. Repeatedly given blue eyes as a reference to Sans despite efforts to subdue it.", "website": "", "subreddit": "/r/OnePiece", "center": [1686.5, 1208.5], "path": [[1670.5, 1201.5], [1702.5, 1200.5], [1703.5, 1216.5], [1670.5, 1216.5], [1670.5, 1202.5]]}, {"id": "tx9ltz", "submitted_by": "Ksdew562", "name": "jschlatt", "description": "Popular YouTuber/Twitch Streamer known for, among other things, his hit video A Tribute to Minecraft. He has a cat, Jambo, and currently resides in Austin, Texas. A lot of his general brand revolves around bits, including his bits about the two women he killed in 1999 (obviously this is fake..right?) and hating DreamSMP fans despite the fact that he used to be part of the DreamSMP himself.", "website": "https://www.youtube.com/c/jschlattLIVE", "subreddit": "/r/jschlatt", "center": [187.5, 922.5], "path": [[182.5, 917.5], [191.5, 917.5], [191.5, 926.5], [182.5, 926.5], [182.5, 921.5], [182.5, 918.5]]}, {"id": "tx9lh4", "submitted_by": "SchemingPaladin", "name": "Qynoa's Whelp", "description": "A dragon whelp, representing the community of twitch streamer Qynoa (pictured above, right).", "website": "https://www.twitch.tv/qynoa", "subreddit": "", "center": [1632.5, 1934.5], "path": [[1628.5, 1931.5], [1634.5, 1931.5], [1634.5, 1939.5], [1631.5, 1939.5], [1631.5, 1935.5], [1628.5, 1935.5]]}, -{"id": "tx9leu", "submitted_by": "loonarmyrights", "name": "#REDINSTEAD", "description": "autism awareness campaign in ligh of autism awareness month (april) \n", "website": "https://themomkind.com/redinstead-not-autism-speaks/", "subreddit": "", "center": [278.5, 1855.5], "path": [[250.5, 1850.5], [305.5, 1850.5], [305.5, 1860.5], [250.5, 1860.5], [250.5, 1850.5]]}, {"id": "tx9laf", "submitted_by": "PickPig", "name": "Don-chans", "description": "Two conjoined Dons, the protagonist from the Taiko no Tatsujin series", "website": "", "subreddit": "/r/taikonotatsujin", "center": [1420.5, 1346.5], "path": [[1412.5, 1341.5], [1415.5, 1339.5], [1426.5, 1339.5], [1429.5, 1344.5], [1429.5, 1352.5], [1425.5, 1353.5], [1415.5, 1353.5], [1411.5, 1350.5], [1411.5, 1345.5], [1410.5, 1347.5]]}, -{"id": "tx9l37", "submitted_by": "Kevun_the_potato", "name": "Mr Tayto", "description": "Mr Tayto is the mascot for Tayto Crisps. He is also the national animal of Ireland", "website": "", "subreddit": "/r/PlaceIreland", "center": [138.5, 591.5], "path": [[130.5, 607.5], [137.5, 607.5], [137.5, 602.5], [137.5, 607.5], [144.5, 607.5], [145.5, 606.5], [144.5, 605.5], [143.5, 604.5], [143.5, 602.5], [144.5, 601.5], [145.5, 600.5], [146.5, 594.5], [147.5, 593.5], [148.5, 591.5], [149.5, 590.5], [150.5, 588.5], [151.5, 587.5], [152.5, 586.5], [152.5, 581.5], [147.5, 581.5], [146.5, 583.5], [145.5, 585.5], [144.5, 583.5], [143.5, 580.5], [145.5, 580.5], [145.5, 577.5], [143.5, 577.5], [142.5, 575.5], [132.5, 575.5], [131.5, 577.5], [129.5, 578.5], [129.5, 580.5], [131.5, 580.5], [130.5, 583.5], [129.5, 588.5], [128.5, 589.5], [128.5, 599.5], [129.5, 600.5], [130.5, 601.5], [131.5, 602.5], [131.5, 604.5], [129.5, 606.5]]}, -{"id": "tx9kwl", "submitted_by": "SniperDonut", "name": "University of Chicago", "description": "The Coat of Arms of the University of Chicago", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_the_University_of_Chicago", "subreddit": "/r/uchicago", "center": [0.5, 0.5], "path": []}, {"id": "tx9kwf", "submitted_by": "Fishes_Glubs", "name": "Penpen", "description": "Penguin pet of Misato Katsuragi from Japanese manga and anime Neon Genesis Evangelion", "website": "https://www.evangelion.co.jp/", "subreddit": "/r/evangelion", "center": [694.5, 1418.5], "path": [[691.5, 1415.5], [691.5, 1421.5], [697.5, 1421.5], [697.5, 1415.5]]}, {"id": "tx9kc8", "submitted_by": "Impressive_Water8018", "name": "Purple goose", "description": "A purple goose created by Twitch streamer UniqueGeese and his community.", "website": "https://twitter.com/UniqueGeese/status/1510826919033516033", "subreddit": "", "center": [987.5, 1913.5], "path": [[982.5, 1908.5], [988.5, 1908.5], [995.5, 1917.5], [982.5, 1917.5], [982.5, 1908.5]]}, {"id": "tx9kc4", "submitted_by": "to_thy_macintosh", "name": "Solus", "description": "Solus is an independently developed Linux distribution showcasing the Budgie desktop environment.", "website": "https://getsol.us", "subreddit": "/r/SolusProject", "center": [51.5, 691.5], "path": [[49.5, 690.5], [50.5, 689.5], [52.5, 689.5], [53.5, 690.5], [53.5, 691.5], [53.5, 692.5], [52.5, 693.5], [50.5, 693.5], [49.5, 692.5], [49.5, 690.5], [50.5, 689.5], [52.5, 689.5], [53.5, 690.5], [53.5, 692.5], [52.5, 693.5], [50.5, 693.5], [49.5, 692.5], [49.5, 691.5], [49.5, 690.5], [50.5, 689.5], [52.5, 689.5], [52.5, 689.5], [53.5, 690.5]]}, -{"id": "tx9k8c", "submitted_by": "ostensiblyokay", "name": "Twenty One Pilots - Blurryface", "description": "The cover of the 2015 album Blurryface by the band twenty one pilots.", "website": "twentyonepilots.com", "subreddit": "/r/twentyonepilots", "center": [398.5, 1588.5], "path": [[394.5, 1584.5], [402.5, 1584.5], [402.5, 1592.5], [394.5, 1592.5]]}, +{"id": "tx9k8c", "submitted_by": "ostensiblyokay", "name": "Twenty One Pilots - Blurryface", "description": "The cover of the 2015 album Blurryface by the band twenty one pilots.", "website": "https://twentyonepilots.com", "subreddit": "/r/twentyonepilots", "center": [398.5, 1588.5], "path": [[394.5, 1584.5], [402.5, 1584.5], [402.5, 1592.5], [394.5, 1592.5]]}, {"id": "tx9k5p", "submitted_by": "ChromaPixels", "name": "Countless Worlds", "description": "The Countless Worlds are a collection of different planets, dimensions, spaces, and dreams compressed in one singular instance that holds the fabric of reality together. Going beyond these Worlds is practically impossible, and can result in dire consequences. It is your job to maintain peace in these different realms.", "website": "https://web.roblox.com/games/6900861054/Countless-Worlds", "subreddit": "/r/RobloxCountlessWorlds", "center": [307.5, 1487.5], "path": [[294.5, 1486.5], [314.5, 1486.5], [314.5, 1499.5], [294.5, 1499.5], [294.5, 1514.5], [299.5, 1514.5], [299.5, 1499.5], [294.5, 1499.5]]}, {"id": "tx9k2y", "submitted_by": "ostensacken", "name": "Jhool", "description": "An ornate jhool, or saddlecloth, is worn by the Indian elephant.", "website": "", "subreddit": "/r/indiaplace", "center": [502.5, 321.5], "path": [[493.5, 334.5], [511.5, 334.5], [511.5, 308.5], [496.5, 308.5], [495.5, 309.5], [494.5, 309.5], [493.5, 312.5], [493.5, 311.5]]}, {"id": "tx9jyg", "submitted_by": "chururiri", "name": "MILGRAM", "description": "Logo of the interactive music project MILGRAM, created by VOCALOID song producer DECO*27 and writer Takuya Yamanaka.", "website": "https://milgram.jp/", "subreddit": "", "center": [1914.5, 1237.5], "path": [[1905.5, 1227.5], [1923.5, 1227.5], [1923.5, 1247.5], [1904.5, 1247.5], [1904.5, 1227.5], [1906.5, 1227.5]]}, {"id": "tx9jwp", "submitted_by": "fordpaulfect", "name": "Tohru", "description": "A small pixel art of Tohru from the Manga/Anime Miss Kobayashi's Dragon Maid.", "website": "", "subreddit": "", "center": [1145.5, 1851.5], "path": [[1141.5, 1845.5], [1154.5, 1845.5], [1154.5, 1847.5], [1152.5, 1847.5], [1152.5, 1856.5], [1138.5, 1856.5], [1138.5, 1848.5], [1141.5, 1845.5]]}, {"id": "tx9jwl", "submitted_by": "Wikirojo", "name": "Trans, Italian and Mexican Heart", "description": "This heart used to be between the three flags but was removed and then done in a higher position. Although it isn't in the Mexican flag territory anymore, i believe it still symbolizes a union between the three flags <3", "website": "", "subreddit": "", "center": [787.5, 439.5], "path": [[786.5, 436.5], [785.5, 435.5], [784.5, 435.5], [784.5, 436.5], [783.5, 436.5], [782.5, 437.5], [782.5, 439.5], [783.5, 440.5], [784.5, 441.5], [785.5, 442.5], [786.5, 443.5], [788.5, 443.5], [789.5, 442.5], [790.5, 441.5], [791.5, 441.5], [791.5, 440.5], [791.5, 438.5], [791.5, 436.5], [790.5, 435.5], [789.5, 435.5], [788.5, 436.5], [787.5, 436.5], [786.5, 436.5]]}, -{"id": "tx9jko", "submitted_by": "7qrt", "name": "Kobe Bryant jersey", "description": "An homage to legendary NBA player Kobe Bryant, who passed away tragically in 2020. This jersey, with its purple, gold, and number 24, is heavily associated with Bryant and his career with the Los Angeles Lakers.", "website": "r/nba", "subreddit": "", "center": [775.5, 1506.5], "path": [[770.5, 1500.5], [770.5, 1511.5], [780.5, 1511.5], [780.5, 1500.5], [770.5, 1500.5]]}, +{"id": "tx9jko", "submitted_by": "7qrt", "name": "Kobe Bryant jersey", "description": "An homage to legendary NBA player Kobe Bryant, who passed away tragically in 2020. This jersey, with its purple, gold, and number 24, is heavily associated with Bryant and his career with the Los Angeles Lakers.", "website": "https://r/nba", "subreddit": "", "center": [775.5, 1506.5], "path": [[770.5, 1500.5], [770.5, 1511.5], [780.5, 1511.5], [780.5, 1500.5], [770.5, 1500.5]]}, {"id": "tx9jhn", "submitted_by": "SteepAtticStairs", "name": "SteepAtticStairs Logo", "description": "The logo of SteepAtticStairs", "website": "https://github.com/SteepAtticStairs", "subreddit": "", "center": [1166.5, 1807.5], "path": [[1164.5, 1805.5], [1167.5, 1805.5], [1167.5, 1808.5], [1164.5, 1808.5], [1164.5, 1808.5]]}, {"id": "tx9j9i", "submitted_by": "Borby13579", "name": "Connor Eats Pants", "description": "Connor Eats Pants's minecraft skin. Connor does not like being associated with the dream smp and whenever he logs in he runs laps around the server.", "website": "", "subreddit": "", "center": [187.5, 911.5], "path": [[183.5, 909.5], [190.5, 909.5], [190.5, 916.5], [183.5, 916.5], [183.5, 909.5], [190.5, 909.5], [183.5, 916.5], [190.5, 916.5], [190.5, 916.5]]}, {"id": "tx9j2c", "submitted_by": "ostensacken", "name": "Indian Elephant", "description": "An Indian elephant, which, along with the Danish swan became a symbol of friendship between the two nations.", "website": "", "subreddit": "/r/placeindia", "center": [511.5, 323.5], "path": [[482.5, 324.5], [482.5, 327.5], [486.5, 327.5], [491.5, 322.5], [491.5, 335.5], [492.5, 336.5], [494.5, 336.5], [495.5, 336.5], [495.5, 341.5], [496.5, 342.5], [504.5, 342.5], [505.5, 341.5], [507.5, 341.5], [507.5, 338.5], [506.5, 337.5], [510.5, 337.5], [510.5, 341.5], [512.5, 342.5], [520.5, 342.5], [521.5, 341.5], [522.5, 340.5], [530.5, 340.5], [531.5, 339.5], [531.5, 331.5], [534.5, 331.5], [534.5, 322.5], [532.5, 322.5], [532.5, 326.5], [531.5, 327.5], [531.5, 307.5], [530.5, 306.5], [494.5, 306.5], [494.5, 307.5], [493.5, 307.5], [492.5, 309.5], [491.5, 309.5], [491.5, 316.5], [491.5, 316.5]]}, {"id": "tx9izt", "submitted_by": "OhioStateGuy", "name": "Columbus Blue Jackets abbreviation and #80 (Mat\u012bss Kivlenieks memorial)", "description": "The Columbus Blue Jackets (often simply referred to as the Jackets) are a professional ice hockey team based in Columbus, Ohio. \nThe number 80 is used as a memorial for Mat\u012bss Kivlenieks, who played for the team and was tragically killed in 2021", "website": "https://www.nhl.com/bluejackets", "subreddit": "/r/BlueJackets", "center": [564.5, 1380.5], "path": [[561.5, 1367.5], [560.5, 1368.5], [560.5, 1391.5], [568.5, 1392.5], [567.5, 1368.5]]}, {"id": "tx9ix5", "submitted_by": "carrier3rd", "name": "The First Appearance of a White Hole", "description": "An artist's depiction of what a white hole might look like if compressed to small space amidst other art pieces.", "website": "https://www.reddit.com/r/whiteholesarereal", "subreddit": "/r/whiteholesarereal", "center": [398.5, 1871.5], "path": [[377.5, 1887.5], [418.5, 1887.5], [418.5, 1856.5], [387.5, 1855.5], [387.5, 1857.5], [377.5, 1857.5]]}, -{"id": "tx9il2", "submitted_by": "ostensiblyokay", "name": "Twenty One Pilots - Trench", "description": "A tribute to the 2018 album Trench by the band twenty one pilots. Features the Compass E Pitchfork, also known as the \"East is Up\" symbol, and a small yellow flower.\n\nThe yellow trident was originally a blue Sai on a pink background (the logo for the 2021 album Scaled and Icy) but it was transformed into a tribute to Trench once the much larger tribute to Scaled and Icy, featuring the SAI logo and Ned, had been erected elsewhere.", "website": "twentyonepilots.com", "subreddit": "/r/twentyonepilots", "center": [752.5, 660.5], "path": [[748.5, 654.5], [759.5, 654.5], [759.5, 659.5], [754.5, 659.5], [754.5, 667.5], [748.5, 667.5], [748.5, 659.5], [748.5, 655.5], [748.5, 654.5], [748.5, 654.5], [748.5, 654.5]]}, +{"id": "tx9il2", "submitted_by": "ostensiblyokay", "name": "Twenty One Pilots - Trench", "description": "A tribute to the 2018 album Trench by the band twenty one pilots. Features the Compass E Pitchfork, also known as the \"East is Up\" symbol, and a small yellow flower.\n\nThe yellow trident was originally a blue Sai on a pink background (the logo for the 2021 album Scaled and Icy) but it was transformed into a tribute to Trench once the much larger tribute to Scaled and Icy, featuring the SAI logo and Ned, had been erected elsewhere.", "website": "https://twentyonepilots.com", "subreddit": "/r/twentyonepilots", "center": [752.5, 660.5], "path": [[748.5, 654.5], [759.5, 654.5], [759.5, 659.5], [754.5, 659.5], [754.5, 667.5], [748.5, 667.5], [748.5, 659.5], [748.5, 655.5], [748.5, 654.5], [748.5, 654.5], [748.5, 654.5]]}, {"id": "tx9ig9", "submitted_by": "PickPig", "name": "Pleadfish", "description": "An emote from the Celeste community, depicting a pufferfish from Celeste's chapter 9 in its blown up state, with an eye from the pleading emoji.", "website": "", "subreddit": "/r/celestegame", "center": [1227.5, 1182.5], "path": [[1217.5, 1179.5], [1222.5, 1175.5], [1224.5, 1173.5], [1231.5, 1173.5], [1234.5, 1175.5], [1237.5, 1179.5], [1238.5, 1182.5], [1237.5, 1186.5], [1234.5, 1189.5], [1230.5, 1190.5], [1224.5, 1190.5], [1221.5, 1187.5], [1220.5, 1186.5], [1218.5, 1187.5], [1217.5, 1186.5], [1217.5, 1182.5], [1217.5, 1182.5]]}, {"id": "tx9hiq", "submitted_by": "NorskDaedalus", "name": "House Foundling Banner", "description": "Silver scales weighing a sword and a crown. When coupled with the phrase 'Justifications only matter to the just' this forms the emblem of the royal House Foundling.", "website": "", "subreddit": "", "center": [949.5, 528.5], "path": [[941.5, 521.5], [957.5, 521.5], [958.5, 522.5], [958.5, 533.5], [957.5, 534.5], [941.5, 534.5], [940.5, 533.5], [940.5, 522.5]]}, {"id": "tx9hie", "submitted_by": "TonyMart", "name": "Infoman Logo", "description": "Satirical TV show hosted by Jean-Ren\u00e9 Dufort", "website": "", "subreddit": "", "center": [1070.5, 1023.5], "path": [[1069.5, 1031.5], [1061.5, 1022.5], [1066.5, 1017.5], [1074.5, 1017.5], [1079.5, 1022.5], [1076.5, 1023.5], [1068.5, 1023.5], [1079.5, 1022.5]]}, {"id": "tx9hel", "submitted_by": "chronically_tired_", "name": "Philza's Hat", "description": "A hat that is a reference to Twitch streamer Philza", "website": "", "subreddit": "", "center": [1183.5, 1112.5], "path": [[1180.5, 1113.5], [1181.5, 1113.5], [1182.5, 1113.5], [1183.5, 1113.5], [1184.5, 1113.5], [1185.5, 1113.5], [1186.5, 1113.5], [1185.5, 1113.5], [1185.5, 1112.5], [1184.5, 1112.5], [1184.5, 1111.5], [1183.5, 1111.5], [1183.5, 1112.5], [1182.5, 1112.5], [1182.5, 1111.5], [1181.5, 1111.5], [1181.5, 1112.5], [1181.5, 1113.5]]}, {"id": "tx9h75", "submitted_by": "Fun_Requirement_", "name": "ShiaBun", "description": "", "website": "https://www.twitch.tv/shiabun", "subreddit": "", "center": [1977.5, 1224.5], "path": [[1973.5, 1219.5], [1973.5, 1228.5], [1981.5, 1228.5], [1981.5, 1219.5], [1977.5, 1219.5], [1973.5, 1219.5], [1973.5, 1219.5], [1977.5, 1220.5]]}, {"id": "tx9h71", "submitted_by": "Bambega", "name": "Small Q", "description": "With dedication to the QA guys from Q-loc\n", "website": "https://q-loc.com/", "subreddit": "", "center": [1648.5, 1644.5], "path": [[1645.5, 1644.5], [1648.5, 1647.5], [1651.5, 1647.5], [1651.5, 1644.5], [1648.5, 1641.5], [1645.5, 1644.5]]}, -{"id": "tx9h4s", "submitted_by": "teejay_bloke", "name": "Planet Mu", "description": "Logo of the English eclectic Record Label, Planet Mu, run by Mike Paradinas.\nThe logo came from the project, \u03bc-Ziq, which was also created and run Mike Paradinas", "website": "https://planet.mu/", "subreddit": "", "center": [1329.5, 506.5], "path": [[1328.5, 504.5], [1328.5, 507.5], [1330.5, 507.5], [1330.5, 504.5], [1328.5, 504.5]]}, {"id": "tx9h3q", "submitted_by": "ostensacken", "name": "Taj Mahal", "description": "The Taj Mahal is a mausoleum located in the Indian city of Agra. Commissioned in 1632 by the emperor Shah Jahan, it has since become an iconic landmark of India.", "website": "", "subreddit": "/r/indiaplace", "center": [438.5, 325.5], "path": [[416.5, 342.5], [417.5, 341.5], [418.5, 340.5], [420.5, 338.5], [422.5, 336.5], [422.5, 334.5], [407.5, 334.5], [407.5, 330.5], [408.5, 328.5], [409.5, 328.5], [409.5, 312.5], [410.5, 311.5], [410.5, 310.5], [411.5, 307.5], [411.5, 309.5], [412.5, 310.5], [412.5, 311.5], [413.5, 312.5], [414.5, 327.5], [417.5, 327.5], [417.5, 321.5], [418.5, 320.5], [419.5, 320.5], [419.5, 318.5], [420.5, 319.5], [421.5, 318.5], [422.5, 318.5], [422.5, 316.5], [425.5, 316.5], [425.5, 314.5], [426.5, 313.5], [427.5, 312.5], [430.5, 312.5], [430.5, 308.5], [431.5, 308.5], [432.5, 307.5], [438.5, 301.5], [438.5, 300.5], [440.5, 300.5], [439.5, 301.5], [440.5, 302.5], [441.5, 302.5], [441.5, 303.5], [442.5, 303.5], [442.5, 304.5], [443.5, 304.5], [443.5, 305.5], [444.5, 305.5], [444.5, 306.5], [445.5, 306.5], [445.5, 307.5], [446.5, 307.5], [446.5, 308.5], [446.5, 309.5], [447.5, 308.5], [447.5, 312.5], [449.5, 312.5], [451.5, 313.5], [452.5, 316.5], [455.5, 316.5], [455.5, 319.5], [458.5, 319.5], [459.5, 319.5], [459.5, 321.5], [460.5, 321.5], [460.5, 328.5], [464.5, 328.5], [464.5, 312.5], [465.5, 311.5], [465.5, 310.5], [466.5, 310.5], [466.5, 308.5], [467.5, 310.5], [467.5, 311.5], [468.5, 312.5], [468.5, 327.5], [469.5, 328.5], [470.5, 328.5], [470.5, 332.5], [468.5, 333.5], [452.5, 333.5], [454.5, 335.5], [455.5, 336.5], [456.5, 337.5], [457.5, 338.5], [458.5, 339.5], [459.5, 340.5], [460.5, 341.5], [461.5, 342.5]]}, {"id": "tx9gnu", "submitted_by": "Sciencraft", "name": "Molly Blyndeff", "description": "One of the main characters from the animated series Epithet Erased by Jello Apocalypse", "website": "", "subreddit": "/r/epithet_erased", "center": [1019.5, 1671.5], "path": [[1017.5, 1667.5], [1023.5, 1666.5], [1023.5, 1675.5], [1017.5, 1675.5], [1017.5, 1675.5], [1015.5, 1674.5], [1015.5, 1668.5], [1017.5, 1667.5]]}, {"id": "tx9gjn", "submitted_by": "_SkedeX_", "name": "ConnorEatsPants", "description": "Connor (born: August 26, 1999 [age 22]), better known online as ConnorEatsPants, is an American YouTuber known for playing and live streaming games with other YouTubers such as Quackity, CallMeCarson, and TommyInnit. He is also known for previously being \u201cbusiness partners\u201d with Jschlatt on SMPLive and playing on the Dream SMP with other YouTubers and streamers such as Dream, Technoblade, and Wilbur Soot.", "website": "https://www.twitch.tv/ConnorEatsPants", "subreddit": "/r/ConnorEatsPants", "center": [187.5, 913.5], "path": [[182.5, 908.5], [182.5, 908.5], [182.5, 908.5], [182.5, 917.5], [191.5, 917.5], [191.5, 908.5]]}, {"id": "tx9gff", "submitted_by": "Goyeeto", "name": "Violet Vibers", "description": "Violet Vibers is a small discord friend group that spawned from the mcc community.", "website": "", "subreddit": "", "center": [1337.5, 959.5], "path": [[1333.5, 948.5], [1342.5, 948.5], [1342.5, 970.5], [1333.5, 970.5], [1332.5, 970.5]]}, -{"id": "tx9gdb", "submitted_by": "SirTractor45", "name": "Biyoo", "description": "Charcter from Korean web novel and comic Omniscient Reader's Viewpoint", "website": "", "subreddit": "/r/OmniscientReader", "center": [573.5, 179.5], "path": [[567.5, 174.5], [579.5, 174.5], [578.5, 185.5], [570.5, 185.5]]}, +{"id": "tx9gdb", "submitted_by": "SirTractor45", "name": "Biyoo", "description": "Character from Korean web novel and comic Omniscient Reader's Viewpoint", "website": "", "subreddit": "/r/OmniscientReader", "center": [573.5, 179.5], "path": [[567.5, 174.5], [579.5, 174.5], [578.5, 185.5], [570.5, 185.5]]}, {"id": "tx9gbo", "submitted_by": "Kevun_the_potato", "name": "Aston Villa Football Club", "description": "This was an unfinished secondary banner for Aston Villa Football Club.\nThe partially written \"82\" on the right of this banner alludes to their European Cup win in 1982, where they beat Bayern Munich 1\u20130 at De Kuip in Rotterdam", "website": "", "subreddit": "/r/avfc", "center": [1235.5, 1808.5], "path": [[1214.5, 1815.5], [1255.5, 1815.5], [1255.5, 1801.5], [1214.5, 1801.5]]}, {"id": "tx9g9c", "submitted_by": "loonarmyrights", "name": "jopping", "description": "the title of superm's debut, jopping means to jump and pop at the same time\n", "website": "https://youtu.be/pAnK1y7qjuE", "subreddit": "", "center": [1406.5, 565.5], "path": [[1390.5, 561.5], [1422.5, 561.5], [1422.5, 569.5], [1390.5, 569.5], [1390.5, 561.5]]}, {"id": "tx9g3k", "submitted_by": "Zedia_", "name": "Juice WRLD", "description": "Juice WRLD community from r/juicewrld and Juice Archive discord came together to form the GBGR car (destroyed but was on the left), 999, and a rendition of the Legends Never Die Album cover. 999", "website": "", "subreddit": "/r/juicewrld", "center": [1986.5, 1536.5], "path": [[1974.5, 1529.5], [1974.5, 1543.5], [1999.5, 1542.5], [1998.5, 1528.5]]}, @@ -5366,21 +4954,19 @@ {"id": "tx9dve", "submitted_by": "Are5cmNormal", "name": "Jesus Juice", "description": "This is an Item from the Game The Binding of Isaac", "website": "https://bindingofisaacrebirth.fandom.com/wiki/Jesus_Juice", "subreddit": "/r/thebindingofisaac", "center": [505.5, 1102.5], "path": [[497.5, 1095.5], [497.5, 1109.5], [512.5, 1109.5], [511.5, 1092.5], [505.5, 1093.5], [503.5, 1096.5], [497.5, 1096.5]]}, {"id": "tx9dig", "submitted_by": "MissLayria", "name": "Mundo Pixelmon 3 logo", "description": "Just before the huge battle between France and Spain, here was the Mundo Pixelmon 3 logo, a spanish twitch series featuring Minecraft and Pok\u00e9mon, from the streamers @FolagoR and @FrigoAdri that is currently having his 3rd season ongoing with 40 famous spanish-speaker streamers. Logo was made by @Layxent, head of staff from the series", "website": "https://twitter.com/Mundo_Pixelmon/status/1510783415913791490?s=20&t=Fwdf5ZwZ4Fjlt6rMdYt5Cw", "subreddit": "", "center": [1943.5, 1112.5], "path": [[1956.5, 1119.5], [1956.5, 1105.5], [1929.5, 1106.5], [1930.5, 1118.5]]}, {"id": "tx9deb", "submitted_by": "noremmi", "name": "German heart flag", "description": "A little German heart flag in the ukrainian flag.", "website": "", "subreddit": "/r/placeDE", "center": [297.5, 193.5], "path": [[296.5, 191.5], [296.5, 192.5], [297.5, 192.5], [298.5, 192.5], [298.5, 191.5], [299.5, 191.5], [299.5, 195.5], [298.5, 195.5], [297.5, 195.5], [297.5, 196.5], [297.5, 195.5], [296.5, 195.5], [296.5, 194.5], [295.5, 194.5], [295.5, 193.5], [294.5, 193.5], [294.5, 192.5], [295.5, 192.5], [295.5, 191.5], [296.5, 191.5], [296.5, 192.5], [297.5, 192.5]]}, -{"id": "tx9ddh", "submitted_by": "ajfrs", "name": "Chumbles", "description": "A 5x5 gray block defended by the small discord group of friends known as Chumbles", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx9d6f", "submitted_by": "Slurptrucked", "name": "Chopper's Hat", "description": "Much like the Chopper's Crack battle, a battle took place here to try and turn Chopper's hat into a phallus with the addition of a urethra", "website": "", "subreddit": "/r/OnePiece", "center": [54.5, 1421.5], "path": [[50.5, 1418.5], [58.5, 1418.5], [57.5, 1424.5], [50.5, 1425.5], [50.5, 1418.5]]}, {"id": "tx9d52", "submitted_by": "Komrade__Kalashnikov", "name": "Rhodesian Flag", "description": "A flag of Rhodesia, made by \nKacynskist_zelot\nGerry\nCommenderCody/U/Exotic_Orange8686\nAlabaster/ZandoZando\nRhodie15\nKomrade__Kalashnikov\nploppydroppy\nKacynskist_zelot_fc\n", "website": "", "subreddit": "/r/BringBackRhodesia", "center": [1995.5, 1472.5], "path": [[1991.5, 1470.5], [1991.5, 1474.5], [1999.5, 1474.5], [1999.5, 1470.5]]}, {"id": "tx9d1d", "submitted_by": "Sinew3", "name": "zentreTogether", "description": "Vtuber Zentreya's \"zentreTogether\" emote, 2 hands holding over a heart background.", "website": "", "subreddit": "/r/Zentreya", "center": [763.5, 1087.5], "path": [[745.5, 1099.5], [745.5, 1086.5], [755.5, 1086.5], [756.5, 1076.5], [780.5, 1074.5], [780.5, 1086.5], [774.5, 1088.5], [769.5, 1093.5], [767.5, 1098.5]]}, {"id": "tx9cz2", "submitted_by": "lotsarice", "name": "Jopping", "description": "The debut song of SM Entertainment's supergroup SuperM", "website": "https://shop.supermofficial.com", "subreddit": "/r/superm", "center": [1406.5, 565.5], "path": [[1390.5, 561.5], [1422.5, 561.5], [1422.5, 568.5], [1390.5, 569.5], [1390.5, 561.5], [1390.5, 561.5]]}, {"id": "tx9cvz", "submitted_by": "SirTractor45", "name": "Kim Dokja", "description": "Character from Korean web novel and comic Omniscient Reader's Viewpoint. This is QRja.", "website": "", "subreddit": "/r/OmniscientReader", "center": [1860.5, 98.5], "path": [[1849.5, 95.5], [1849.5, 101.5], [1870.5, 102.5], [1870.5, 94.5], [1849.5, 94.5]]}, {"id": "tx9cui", "submitted_by": "irradiatedquartz", "name": "House Stark", "description": "The crest of House Stark, and by extension the city of Winterfell from George R. R. Martin's A song of Ice and Fire.", "website": "", "subreddit": "", "center": [1669.5, 1346.5], "path": [[1650.5, 1339.5], [1668.5, 1332.5], [1685.5, 1343.5], [1683.5, 1357.5], [1677.5, 1362.5], [1671.5, 1354.5], [1656.5, 1352.5]]}, -{"id": "tx9csq", "submitted_by": "Silversoal", "name": "GeminiTay", "description": "A member of Hermitcraft that joined in Season 8. She has been on several other SMPs including Legacy, X-Life, Empires, and ALsmp", "website": "https://www.youtube.com/geminitaymc", "subreddit": "", "center": [901.5, 595.5], "path": [[897.5, 592.5], [897.5, 598.5], [904.5, 598.5], [904.5, 592.5]]}, {"id": "tx9co8", "submitted_by": "dershadow100", "name": "Grave of mini-Daiyousei", "description": "former area of mini-Daiyousei which has been wiped by Denmark when the subreddit was written over the area", "website": "https://en.touhouwiki.net/wiki/Daiyousei", "subreddit": "/r/touhou", "center": [405.5, 164.5], "path": [[399.5, 161.5], [411.5, 161.5], [411.5, 166.5], [399.5, 167.5]]}, {"id": "tx9ci4", "submitted_by": "Training-Mushroom923", "name": "Laval city", "description": "Laval city logo", "website": "https://www.laval.ca", "subreddit": "", "center": [912.5, 1064.5], "path": [[903.5, 1056.5], [910.5, 1056.5], [915.5, 1063.5], [921.5, 1062.5], [923.5, 1071.5], [910.5, 1071.5], [908.5, 1070.5], [902.5, 1063.5]]}, -{"id": "tx9c64", "submitted_by": "Gekyyy", "name": "Wheatzies", "description": "Wheatzies is an Instagram meme page focusing on vtuber/anime content. Pictured is the page's mascot, Wheat-chan, next to wheat.", "website": "", "subreddit": "/r/wheatzies", "center": [1289.5, 554.5], "path": [[1276.5, 563.5], [1295.5, 563.5], [1298.5, 553.5], [1304.5, 552.5], [1303.5, 545.5], [1288.5, 544.5], [1275.5, 557.5], [1275.5, 563.5], [1275.5, 563.5]]}, +{"id": "tx9c64", "submitted_by": "Gekyyy", "name": "Wheatzies", "description": "Wheatzies is an Instagram meme page focusing on vtuber/anime content. Pictured is the page's mascot, Wheat-chan, next to wheat.", "website": "https://www.instagram.com/wheatzies/", "subreddit": "/r/wheatzies", "center": [1289.5, 554.5], "path": [[1276.5, 563.5], [1295.5, 563.5], [1298.5, 553.5], [1304.5, 552.5], [1303.5, 545.5], [1288.5, 544.5], [1275.5, 557.5], [1275.5, 563.5], [1275.5, 563.5]]}, {"id": "tx9bxe", "submitted_by": "ILikeMyComputer", "name": "Mini Steve", "description": "A tiny recreation of Minecraft's main character Steve.\n\nMini Steve had had diplomatic connections to the Flower underneath.\nDuring the last hours of r/place, both communities helped each other to finish their projects. Under constant invasion of the Mexican Flag.\nUnfortunately in the last moments of r/place, the Flower vanished but Mini Steve survived until the destruction of the canvas.", "website": "", "subreddit": "/r/ministeveplace", "center": [552.5, 1177.5], "path": [[554.5, 1180.5], [554.5, 1173.5], [549.5, 1173.5], [549.5, 1180.5]]}, {"id": "tx9bt6", "submitted_by": "CreatPearloid", "name": "Ranma 1/2", "description": "An homage to Ranma 1/2, a popular manga and anime debuting in 1987.", "website": "https://www.viz.com/ranma-1-2", "subreddit": "/r/ranma", "center": [1129.5, 1754.5], "path": [[1101.5, 1750.5], [1156.5, 1750.5], [1156.5, 1757.5], [1101.5, 1757.5], [1101.5, 1750.5]]}, {"id": "tx9bg0", "submitted_by": "Howisthisaname", "name": "Gyraf", "description": "The Gyraf here is a creature that not much is known about. What is known is that it was built here by a few people before the surrounding Isaac area was built. It was originally in a different location nearby, but due to the approach of other art on the canvas, had to finally be moved to where it resides now. The Isaac discord working on the surrounding area were contacted by the Gyraf crew to help preserve it, and thus an alliance was born.", "website": "", "subreddit": "", "center": [525.5, 1763.5], "path": [[518.5, 1761.5], [517.5, 1762.5], [517.5, 1763.5], [518.5, 1764.5], [519.5, 1765.5], [520.5, 1764.5], [521.5, 1764.5], [522.5, 1763.5], [523.5, 1763.5], [524.5, 1763.5], [525.5, 1764.5], [525.5, 1765.5], [525.5, 1766.5], [525.5, 1767.5], [525.5, 1768.5], [526.5, 1769.5], [527.5, 1769.5], [528.5, 1769.5], [529.5, 1768.5], [528.5, 1767.5], [529.5, 1766.5], [528.5, 1765.5], [529.5, 1764.5], [528.5, 1763.5], [529.5, 1762.5], [528.5, 1761.5], [529.5, 1760.5], [528.5, 1759.5], [527.5, 1759.5], [526.5, 1759.5], [525.5, 1760.5], [524.5, 1761.5], [523.5, 1761.5], [522.5, 1761.5], [521.5, 1761.5], [520.5, 1761.5], [519.5, 1761.5], [519.5, 1761.5], [518.5, 1761.5]]}, -{"id": "tx9bb4", "submitted_by": "BurningBannas", "name": "Czech Your Privilege", "description": "A small gaming group of players, originally Czech/Swedish ones, formed for CS:GO. The group has since gained many more international members whom enjoy a large variety of different games.", "website": "https://www.facebook.com/czechyourprivilege", "subreddit": "", "center": [887.5, 79.5], "path": [[893.5, 85.5], [893.5, 72.5], [880.5, 72.5], [880.5, 86.5], [893.5, 86.5], [893.5, 84.5]]}, +{"id": "tx9bb4", "submitted_by": "BurningBannas", "name": "Czech Your Privilege", "description": "A small gaming group of players, originally Czech/Swedish ones, formed for Counter-Strike: Global Offensive. The group has since gained many more international members who enjoy a large variety of different games.", "website": "https://www.facebook.com/czechyourprivilege", "subreddit": "/r/sweden", "center": [887.5, 79.5], "path": [[893.5, 85.5], [893.5, 72.5], [880.5, 72.5], [880.5, 86.5], [893.5, 86.5], [893.5, 84.5]]}, {"id": "tx9baw", "submitted_by": "TimeWandrer", "name": "Goblins Live Long and Prosper", "description": "A collaboration between Star Trek and The Wandering Inn web serial. The Wandering Inn section features Apista the smoking and eternally high bee, an acid jar, and teh face of a goblin. Goblins are one of the first races one of the main characters of the series befriends and are initially hated by most other races due to bigotry.", "website": "https://wanderinginn.com/", "subreddit": "/r/WanderingInn", "center": [1881.5, 379.5], "path": [[1852.5, 372.5], [1852.5, 389.5], [1877.5, 389.5], [1877.5, 382.5], [1893.5, 382.5], [1918.5, 382.5], [1918.5, 372.5]]}, {"id": "tx9b5c", "submitted_by": "Training-Mushroom923", "name": "Sherbrooke University", "description": "Sherbrooke university logo", "website": "https://www.usherbrooke.ca/", "subreddit": "", "center": [1033.5, 1022.5], "path": [[1039.5, 1027.5], [1039.5, 1020.5], [1039.5, 1017.5], [1039.5, 1015.5], [1027.5, 1016.5], [1027.5, 1028.5], [1040.5, 1028.5], [1040.5, 1015.5]]}, {"id": "tx9ay9", "submitted_by": "krmihaly42", "name": "Leveszoldseg", "description": "Its a carrot (r\u00e9pa), a soup vegetable, made by a small group of friends.", "website": "", "subreddit": "", "center": [1274.5, 1618.5], "path": [[1270.5, 1614.5], [1270.5, 1614.5], [1277.5, 1614.5], [1277.5, 1621.5], [1270.5, 1621.5], [1270.5, 1614.5]]}, @@ -5396,7 +4982,6 @@ {"id": "tx99bx", "submitted_by": "averyunusualhead", "name": "May the Traveler be with you!", "description": "A hidden dick in the Critical Role logo representing the Traveler, god of pranks, trickery, mischief, and casual vandalism", "website": "", "subreddit": "/r/criticalrole", "center": [520.5, 968.5], "path": [[519.5, 966.5], [522.5, 966.5], [522.5, 970.5], [518.5, 970.5], [518.5, 969.5], [518.5, 970.5], [518.5, 966.5], [518.5, 966.5], [518.5, 966.5]]}, {"id": "tx998z", "submitted_by": "cobbleman4", "name": "Sakura Miko", "description": "Sakura Miko is a vtuber apart of Hololive Gen 0. She is often called Elite Miko", "website": "https://www.youtube.com/channel/UC-hM6YJuNYVAmUWxeIr9FeA", "subreddit": "", "center": [1371.5, 984.5], "path": [[1376.5, 990.5], [1376.5, 991.5], [1372.5, 991.5], [1372.5, 990.5], [1370.5, 990.5], [1370.5, 991.5], [1366.5, 991.5], [1366.5, 979.5], [1367.5, 979.5], [1367.5, 978.5], [1370.5, 978.5], [1370.5, 976.5], [1373.5, 976.5], [1373.5, 977.5], [1373.5, 978.5], [1372.5, 978.5], [1375.5, 978.5], [1375.5, 979.5], [1376.5, 980.5]]}, {"id": "tx98q6", "submitted_by": "lerruisq", "name": "Zorin OS", "description": "Logo of Zorin OS, an Ubuntu based Linux distribution.", "website": "https://zorinos.com/", "subreddit": "/r/placetux", "center": [67.5, 705.5], "path": [[64.5, 704.5], [64.5, 706.5], [65.5, 708.5], [68.5, 708.5], [69.5, 706.5], [69.5, 704.5], [68.5, 702.5], [65.5, 702.5]]}, -{"id": "tx98nd", "submitted_by": "Accomplished-Age-875", "name": "Space shuttle", "description": "On April 12, 1981, NASA launched the world's first reusable manned spacecraft. In the minutes before takeoff, Kennedy Space Center launch control communicates with astronauts John Young and Robert Crippen as they prepare to take Columbia on its first test flight into space and back.", "website": "", "subreddit": "/r/americanflaginplace", "center": [1924.5, 1812.5], "path": [[1918.5, 1787.5], [1916.5, 1834.5], [1933.5, 1834.5], [1930.5, 1786.5]]}, {"id": "tx98gb", "submitted_by": "ard0ise", "name": "Remains Brittany flag", "description": "last remains of the Brittany flag, after losing the war to the German flag.The Bretons are a Celtic ethnic group native to the Brittany region of France. Their flag was designed in 1923 by Morvan Marchal.\n\n", "website": "", "subreddit": "", "center": [1209.5, 1172.5], "path": [[1198.5, 1167.5], [1198.5, 1174.5], [1200.5, 1174.5], [1200.5, 1175.5], [1223.5, 1175.5], [1221.5, 1172.5], [1221.5, 1171.5], [1220.5, 1170.5], [1217.5, 1170.5], [1216.5, 1169.5], [1210.5, 1169.5], [1210.5, 1167.5], [1208.5, 1168.5], [1207.5, 1169.5], [1206.5, 1169.5], [1205.5, 1170.5], [1204.5, 1169.5], [1203.5, 1168.5], [1202.5, 1167.5], [1198.5, 1167.5]]}, {"id": "tx988v", "submitted_by": "Necessary-Water8704", "name": "Heart Flag Italy VS Mexico", "description": "The fight to appropriate the heart. Italy or Mexico.\n\n", "website": "https://www.twitch.tv/domcasse", "subreddit": "", "center": [893.5, 1056.5], "path": [[886.5, 1049.5], [901.5, 1049.5], [900.5, 1062.5], [886.5, 1062.5], [884.5, 1061.5]]}, {"id": "tx983x", "submitted_by": "DoragonSubbing", "name": "L \u039b W - Tutorial", "description": "L \u039b W - Tutorial is a well-known tutorial based YouTube channel.", "website": "https://www.youtube.com/c/laaw_tutorials", "subreddit": "", "center": [368.5, 1680.5], "path": [[360.5, 1675.5], [360.5, 1684.5], [375.5, 1684.5], [375.5, 1675.5]]}, @@ -5410,22 +4995,14 @@ {"id": "tx9728", "submitted_by": "ostensacken", "name": "Peacock", "description": "The national bird of India, the Indian Pacock. Native throughout India and commonly found in Hindu mythology.", "website": "", "subreddit": "/r/placeindia", "center": [293.5, 320.5], "path": [[294.5, 342.5], [292.5, 342.5], [291.5, 341.5], [289.5, 340.5], [288.5, 339.5], [286.5, 337.5], [285.5, 336.5], [284.5, 335.5], [283.5, 334.5], [282.5, 333.5], [280.5, 332.5], [280.5, 329.5], [282.5, 328.5], [282.5, 327.5], [283.5, 326.5], [283.5, 324.5], [284.5, 324.5], [284.5, 321.5], [283.5, 322.5], [283.5, 320.5], [282.5, 320.5], [281.5, 320.5], [281.5, 321.5], [281.5, 311.5], [283.5, 311.5], [283.5, 300.5], [282.5, 299.5], [286.5, 299.5], [285.5, 305.5], [288.5, 303.5], [289.5, 303.5], [289.5, 301.5], [288.5, 301.5], [287.5, 299.5], [293.5, 299.5], [292.5, 301.5], [291.5, 302.5], [292.5, 304.5], [292.5, 306.5], [292.5, 307.5], [295.5, 307.5], [295.5, 308.5], [295.5, 309.5], [297.5, 309.5], [296.5, 310.5], [297.5, 311.5], [298.5, 311.5], [299.5, 313.5], [299.5, 313.5], [300.5, 313.5], [300.5, 315.5], [301.5, 314.5], [302.5, 314.5], [301.5, 315.5], [304.5, 315.5], [305.5, 315.5], [302.5, 315.5], [302.5, 317.5], [303.5, 317.5], [305.5, 314.5], [305.5, 311.5], [307.5, 311.5], [307.5, 300.5], [306.5, 299.5], [310.5, 299.5], [309.5, 300.5], [309.5, 311.5], [311.5, 311.5], [311.5, 322.5], [310.5, 320.5], [307.5, 320.5], [304.5, 321.5], [303.5, 322.5], [301.5, 324.5], [300.5, 325.5], [299.5, 326.5], [298.5, 327.5], [297.5, 328.5], [296.5, 328.5], [296.5, 331.5], [296.5, 333.5], [296.5, 334.5], [297.5, 334.5], [297.5, 336.5], [298.5, 335.5], [298.5, 337.5], [299.5, 338.5], [299.5, 342.5]]}, {"id": "tx96n2", "submitted_by": "pepe8080", "name": "Shigure Ui", "description": "A chibi art of a Japanese VTuber Shigure Ui", "website": "", "subreddit": "/r/VirtualYoutubers", "center": [1460.5, 1087.5], "path": [[1455.5, 1084.5], [1464.5, 1084.5], [1464.5, 1089.5], [1455.5, 1089.5], [1455.5, 1084.5]]}, {"id": "tx95uk", "submitted_by": "SoanKintero_L", "name": "Flag of M\u00e9xico", "description": "The national flag of Mexico.", "website": "https://en.wikipedia.org/wiki/Flag_of_Mexico", "subreddit": "", "center": [1077.5, 1559.5], "path": [[1063.5, 1566.5], [1090.5, 1566.5], [1091.5, 1551.5], [1063.5, 1551.5], [1062.5, 1566.5]]}, -{"id": "tx95sx", "submitted_by": "temporary-cervidae", "name": "Stand Arrow", "description": "One of the Stand Arrows featured during Parts 4-6 of Jojo's Bizarre Adventure. This specific depiction is of the beetle design featured prominently in Part 5, Golden Wind, and briefly in Part 6, Stone Ocean.", "website": "", "subreddit": "/r/StardustCrusaders", "center": [0.5, 0.5], "path": []}, -{"id": "tx95ph", "submitted_by": "AuldMelder", "name": "Album Cover for", "description": "The album cover of the band The Front Bottoms self-titled album", "website": "https://en.wikipedia.org/wiki/The_Front_Bottoms_(album)", "subreddit": "/r/theFrontBottoms", "center": [1730.5, 618.5], "path": [[1722.5, 609.5], [1722.5, 627.5], [1737.5, 627.5], [1737.5, 609.5]]}, {"id": "tx95mw", "submitted_by": "_SkedeX_", "name": "Jschlatt", "description": "Jschlatt, also known as jschlattLIVE or Schlatt, is an American YouTuber and Twitch streamer who makes variety content. He is most well-known for playing on SMPLive, where he often talked with Wilbur Soot, and for being a member of the now-defunct Lunch Club. He has a distinct over-the-top and crass persona. He first interacted with the Dream Team when he joined the Dream SMP without Dream's permission and was subsequently banned. He later became friends with Dream through playing Among Us games and chatting on TommyInnit's streams. He was unbanned from the Dream SMP on September 20, 2020 for the SWAG2020 vs POG2020 Election, and became a major part of the Manberg Rebellion arc.", "website": "https://www.youtube.com/channel/UC2mP7il3YV7TxM_3m6U0bwA", "subreddit": "/r/jschlatt", "center": [187.5, 922.5], "path": [[182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 917.5], [182.5, 926.5], [191.5, 926.5], [191.5, 917.5]]}, -{"id": "tx95lc", "submitted_by": "MostAncientDreamer", "name": "Biyoo (ORV)", "description": "A character from the Korean web novel Omniscient Reader\u2019s Viewpoint", "website": "", "subreddit": "", "center": [574.5, 181.5], "path": [[570.5, 179.5], [573.5, 176.5], [577.5, 179.5], [577.5, 182.5], [576.5, 184.5], [572.5, 184.5], [570.5, 182.5]]}, {"id": "tx95g2", "submitted_by": "ThatEndGuy1", "name": "Angie V.", "description": "Angie, thank you so very much for all that you've done for me. It means the world to me, and so do you. I hope that this officially makes you a part of internet history and you'll be remembered.<3\nTo the strangers who helped me create and preserve this, like those at r/greenlattice and r/avali, thank you. To the Astroneer discord server, thank you. And to u/skylerroan especially, thank you so very much.", "website": "", "subreddit": "", "center": [1112.5, 495.5], "path": [[1116.5, 492.5], [1116.5, 497.5], [1108.5, 497.5], [1108.5, 492.5], [1112.5, 492.5]]}, {"id": "tx95cl", "submitted_by": "BeatMastaD", "name": "Aphex Twin", "description": "Aphex Twin is an Irish-born British musician, composer and DJ.", "website": "", "subreddit": "", "center": [1309.5, 500.5], "path": [[1287.5, 496.5], [1330.5, 496.5], [1330.5, 503.5], [1287.5, 503.5]]}, {"id": "tx952y", "submitted_by": "arcanistzed", "name": "Crrowd", "description": "Crrowd is a tech review community and mobile app.\nCome join us on Discord: https://discord.gg/avCPQFqwbE", "website": "https://www.crrowd.com/", "subreddit": "", "center": [1762.5, 779.5], "path": [[1765.5, 774.5], [1765.5, 783.5], [1759.5, 783.5], [1759.5, 777.5], [1762.5, 774.5]]}, {"id": "tx9519", "submitted_by": "Heeeky", "name": "1HP CLUB", "description": "A comic about the daily life of dungeon boys. Slaying the city, saving the dragons... or something like that.", "website": "https://www.webtoons.com/en/fantasy/1hp-club/list?title_no=2960", "subreddit": "", "center": [558.5, 1118.5], "path": [[564.5, 1112.5], [553.5, 1112.5], [552.5, 1124.5], [564.5, 1123.5], [564.5, 1112.5]]}, {"id": "tx94zt", "submitted_by": "UnNecessary_XP", "name": "VD Virtual Dystopia", "description": "A small Virtual Reality discord group initially started as a space to organize drinking times within VR that slowly grew into a tight-knit family from all corners of the world.", "website": "https://discord.gg/virtualdystopia", "subreddit": "", "center": [737.5, 1851.5], "path": [[733.5, 1848.5], [741.5, 1848.5], [742.5, 1853.5], [733.5, 1853.5]]}, -{"id": "tx94zr", "submitted_by": "RegularTrevor", "name": "US flag on Iwo Jima", "description": "United States Marines raising the American flag during the Battle of Iwo Jima", "website": "https://en.wikipedia.org/wiki/Raising_the_Flag_on_Iwo_Jima", "subreddit": "/r/AmericanFlaginPlace", "center": [1948.5, 1855.5], "path": [[1961.5, 1854.5], [1961.5, 1867.5], [1937.5, 1867.5], [1944.5, 1851.5], [1931.5, 1837.5], [1947.5, 1840.5], [1954.5, 1848.5], [1946.5, 1852.5], [1953.5, 1858.5]]}, -{"id": "tx94u2", "submitted_by": "Causemufins", "name": "Gabumon", "description": "Gabumon is a rookie digimon from the digimon franchise, well known as being the partner to one of the main characters of the original digimon anime.", "website": "", "subreddit": "/r/digimon", "center": [1329.5, 118.5], "path": [[1322.5, 103.5], [1337.5, 104.5], [1335.5, 107.5], [1333.5, 107.5], [1334.5, 109.5], [1335.5, 110.5], [1338.5, 117.5], [1344.5, 116.5], [1341.5, 123.5], [1342.5, 126.5], [1338.5, 127.5], [1337.5, 130.5], [1327.5, 131.5], [1320.5, 130.5], [1318.5, 126.5], [1320.5, 119.5], [1317.5, 113.5], [1321.5, 108.5]]}, {"id": "tx94qh", "submitted_by": "deerparticle", "name": "Snufkin and Little My", "description": "Snufkin and Little My are two characters that appear in The Moomins. They were created by Finnish illustrator Tove Jansson.", "website": "", "subreddit": "/r/Moomins", "center": [1246.5, 1349.5], "path": [[1230.5, 1361.5], [1245.5, 1362.5], [1246.5, 1353.5], [1253.5, 1355.5], [1253.5, 1362.5], [1263.5, 1362.5], [1262.5, 1338.5], [1230.5, 1337.5]]}, -{"id": "tx94og", "submitted_by": "link_dead", "name": "Try Fingers, but hole", "description": "", "website": "", "subreddit": "", "center": [262.5, 435.5], "path": [[298.5, 449.5], [298.5, 420.5], [224.5, 421.5], [226.5, 449.5]]}, {"id": "tx94l5", "submitted_by": "loonarmyrights", "name": "SKZOO", "description": "the animal characters of the group stray kids!", "website": "", "subreddit": "/r/straykids", "center": [1488.5, 1054.5], "path": [[1479.5, 1045.5], [1479.5, 1063.5], [1497.5, 1063.5], [1497.5, 1045.5]]}, -{"id": "tx94fp", "submitted_by": "greenwarpy", "name": "colossal dreadmaw", "description": "A card from the TCG Magic the gathering that became a meme in the community. The art depicts a massive dinosaur sneaking up behind a boat.", "website": "", "subreddit": "/r/magicthecirclejerking", "center": [1703.5, 484.5], "path": [[1714.5, 467.5], [1714.5, 467.5], [1714.5, 467.5], [1714.5, 474.5], [1716.5, 477.5], [1718.5, 483.5], [1719.5, 491.5], [1718.5, 495.5], [1718.5, 501.5], [1701.5, 501.5], [1698.5, 495.5], [1685.5, 495.5], [1685.5, 487.5], [1690.5, 487.5], [1690.5, 467.5]]}, -{"id": "tx944p", "submitted_by": "teejay_bloke", "name": "\u00b5-Ziq Logo", "description": "\u00b5-Ziq is a British electronic project by Mike Paradinas since 1992.\n\nIt was originally a group project with Mike and Francis Naughton but Francis left late 1993.", "website": "https://planet.mu/artists/u-ziq/", "subreddit": "", "center": [1329.5, 505.5], "path": [[1328.5, 504.5], [1328.5, 507.5], [1328.5, 506.5], [1330.5, 506.5], [1330.5, 506.5], [1330.5, 504.5], [1330.5, 504.5], [1328.5, 504.5]]}, {"id": "tx9400", "submitted_by": "Grillard_La", "name": "Al-Shaheed Monument", "description": "A monument dedicated to the Iraqi soldiers who died in the Iran\u2013Iraq War. However, now it is generally considered by Iraqis to be a commemoration of all of Iraq's martyrs not just of the Iran\u2013Iraq War.", "website": "https://en.wikipedia.org/wiki/Al-Shaheed_Monument", "subreddit": "/r/Iraq", "center": [582.5, 1361.5], "path": [[590.5, 1366.5], [590.5, 1355.5], [574.5, 1355.5], [574.5, 1366.5]]}, {"id": "tx93wd", "submitted_by": "Adventurous-Lawyer29", "name": "Vanillaworks", "description": "A group of GTA modders who specialize in cars meant to fit the fictional ones made for the game", "website": "https://twitter.com/Vanillaworks_tw", "subreddit": "", "center": [1755.5, 1374.5], "path": [[1744.5, 1371.5], [1765.5, 1371.5], [1765.5, 1378.5], [1745.5, 1378.5]]}, {"id": "tx93v6", "submitted_by": "Keigun_Spark", "name": "In honour of Holly", "description": "A 17 year old fan by the name of Holly 'Moofy', of 'The Stanley Parable' and game developer sadly passed away on October 6th 2021. This flower, together with the blue one was made to mourn her death. May she rest in peace.", "website": "https://moofemp.com/", "subreddit": "", "center": [530.5, 526.5], "path": [[527.5, 522.5], [533.5, 522.5], [533.5, 530.5], [527.5, 530.5]]}, @@ -5435,7 +5012,6 @@ {"id": "tx93li", "submitted_by": "_DC003_", "name": "BU Logo", "description": "The logo of Boston University", "website": "https://www.bu.edu/", "subreddit": "/r/bostonu", "center": [315.5, 1529.5], "path": [[301.5, 1521.5], [329.5, 1521.5], [329.5, 1536.5], [301.5, 1536.5]]}, {"id": "tx93hm", "submitted_by": "BeatMastaD", "name": "Glory to Heros", "description": "\u0413\u0404\u0420\u041e\u042f\u041c \u0421\u0418\u0410\u0412\u0410, translated to english: Glory to Heros, referencing the Ukrainian military and resistance fighters in the war against Russia.", "website": "", "subreddit": "", "center": [353.5, 189.5], "path": [[338.5, 182.5], [367.5, 182.5], [366.5, 196.5], [339.5, 196.5]]}, {"id": "tx93ez", "submitted_by": "Zacdavis137", "name": "Tridon Flag", "description": "The Tridon flag represents a private minecraft server called Tridon created in 2016 by SolitaryBoot248, UntouchedSix614, and ThoricJuggler43. The tricolor has a pickaxe emblem and was originally created in game using the map feature on the bedrock edition.", "website": "", "subreddit": "", "center": [1573.5, 1069.5], "path": [[1570.5, 1067.5], [1575.5, 1067.5], [1575.5, 1070.5], [1570.5, 1070.5], [1570.5, 1067.5]]}, -{"id": "tx9353", "submitted_by": "Causemufins", "name": "Last Life Hearts", "description": "Hearts representing the life system and logo for the Last Life SMP series, a sequel to Third Life", "website": "", "subreddit": "/r/ThirdLifeSMP", "center": [865.5, 589.5], "path": [[858.5, 590.5], [858.5, 588.5], [872.5, 588.5], [872.5, 590.5]]}, {"id": "tx92z9", "submitted_by": "pepperidgefarmmemo", "name": "Corinthian Helmet", "description": "A helmet design that was widely used in ancient Greek warfare.", "website": "https://en.wikipedia.org/wiki/Corinthian_helmet", "subreddit": "", "center": [1509.5, 1955.5], "path": [[1509.5, 1931.5], [1506.5, 1937.5], [1506.5, 1943.5], [1506.5, 1945.5], [1501.5, 1950.5], [1500.5, 1959.5], [1501.5, 1960.5], [1501.5, 1966.5], [1504.5, 1969.5], [1514.5, 1970.5], [1517.5, 1967.5], [1517.5, 1961.5], [1518.5, 1961.5], [1518.5, 1951.5], [1513.5, 1946.5], [1512.5, 1942.5], [1512.5, 1938.5]]}, {"id": "tx92sw", "submitted_by": "_DC003_", "name": "MIT", "description": "Logo for Massachusetts Institute of Technology", "website": "https://www.mit.edu/", "subreddit": "/r/mit", "center": [331.5, 1546.5], "path": [[319.5, 1538.5], [343.5, 1538.5], [343.5, 1553.5], [319.5, 1553.5]]}, {"id": "tx92kd", "submitted_by": "CatGamez", "name": "The Front Bottoms", "description": "Logo of the band The Front Bottoms", "website": "https://www.thefrontbottoms.com/", "subreddit": "/r/TheFrontBottoms", "center": [1714.5, 614.5], "path": [[1711.5, 607.5], [1717.5, 607.5], [1721.5, 611.5], [1721.5, 616.5], [1717.5, 620.5], [1711.5, 620.5], [1707.5, 616.5], [1707.5, 611.5], [1711.5, 607.5]]}, @@ -5446,7 +5022,7 @@ {"id": "tx91q7", "submitted_by": "cobbleman4", "name": "Hololive Indenesia Gen 1", "description": "These are the members of the first generation of Holive Indonesia.from bottom to top the members are Moona Hoshinova, Airani Iofifteen and Ayunda Risu", "website": "https://www.youtube.com/c/hololiveIndonesia", "subreddit": "", "center": [1383.5, 987.5], "path": [[1378.5, 998.5], [1378.5, 995.5], [1379.5, 995.5], [1379.5, 990.5], [1378.5, 990.5], [1378.5, 987.5], [1378.5, 991.5], [1377.5, 991.5], [1376.5, 991.5], [1376.5, 984.5], [1377.5, 984.5], [1377.5, 983.5], [1380.5, 983.5], [1379.5, 983.5], [1379.5, 978.5], [1379.5, 977.5], [1380.5, 977.5], [1380.5, 974.5], [1382.5, 974.5], [1382.5, 975.5], [1383.5, 975.5], [1383.5, 976.5], [1385.5, 976.5], [1385.5, 975.5], [1386.5, 975.5], [1386.5, 974.5], [1388.5, 974.5], [1388.5, 977.5], [1389.5, 977.5], [1389.5, 983.5], [1387.5, 983.5], [1388.5, 983.5], [1388.5, 989.5], [1388.5, 990.5], [1387.5, 990.5], [1388.5, 990.5], [1388.5, 992.5], [1389.5, 992.5], [1389.5, 996.5], [1390.5, 996.5], [1390.5, 998.5]]}, {"id": "tx91nv", "submitted_by": "NeBz_1", "name": "inabakumori symbol", "description": "inabakumori is a Japanese musician (vocaloid producer). mainly uses Kaai Yuki, and the representative songs are Lost Umbrella and Lagtrain.", "website": "https://www.youtube.com/c/inabakumori", "subreddit": "", "center": [1158.5, 1683.5], "path": [[1156.5, 1675.5], [1156.5, 1677.5], [1153.5, 1677.5], [1153.5, 1690.5], [1152.5, 1677.5], [1152.5, 1691.5], [1152.5, 1690.5], [1162.5, 1690.5], [1162.5, 1675.5], [1156.5, 1675.5], [1156.5, 1677.5], [1153.5, 1677.5], [1152.5, 1677.5], [1152.5, 1675.5], [1152.5, 1676.5], [1156.5, 1675.5], [1153.5, 1675.5], [1152.5, 1676.5], [1152.5, 1675.5], [1156.5, 1675.5]]}, {"id": "tx91nh", "submitted_by": "Zamalor090", "name": "UBI", "description": "Log\u00f3tipo da Universidade da Beira Interior", "website": "https://www.ubi.pt/", "subreddit": "", "center": [885.5, 1617.5], "path": [[879.5, 1611.5], [890.5, 1611.5], [890.5, 1622.5], [879.5, 1622.5], [879.5, 1611.5]]}, -{"id": "tx91mw", "submitted_by": "SoanKintero_L", "name": "DeqiuV", "description": "Spanish streamer with more than 300,000 followers. Stream games like: Minecraft, Grand Theft Auto, Valorant, Fornite.", "website": "www.twitch.tv/deqiuv", "subreddit": "", "center": [1107.5, 1308.5], "path": [[1083.5, 1303.5], [1131.5, 1303.5], [1131.5, 1312.5], [1083.5, 1312.5], [1083.5, 1303.5], [1083.5, 1303.5], [1083.5, 1303.5]]}, +{"id": "tx91mw", "submitted_by": "SoanKintero_L", "name": "DeqiuV", "description": "Spanish streamer with more than 300,000 followers. Stream games like: Minecraft, Grand Theft Auto, Valorant, Fornite.", "website": "https://www.twitch.tv/deqiuv", "subreddit": "", "center": [1107.5, 1308.5], "path": [[1083.5, 1303.5], [1131.5, 1303.5], [1131.5, 1312.5], [1083.5, 1312.5], [1083.5, 1303.5], [1083.5, 1303.5], [1083.5, 1303.5]]}, {"id": "tx91iz", "submitted_by": "Seaplant13", "name": "Grateful Dead Logo", "description": "The Grateful Dead's logo, nicknamed 'Stealie'. Both the Grateful Dead and Phish are well-known jam bands with large followings, hence the collaboration on r/place.", "website": "https://dead.net", "subreddit": "/r/gratefuldead", "center": [13.5, 916.5], "path": [[10.5, 930.5], [16.5, 930.5], [23.5, 924.5], [26.5, 917.5], [25.5, 910.5], [19.5, 904.5], [11.5, 903.5], [6.5, 904.5], [1.5, 909.5], [0.5, 917.5], [1.5, 923.5], [7.5, 928.5]]}, {"id": "tx90yt", "submitted_by": "FishNChips657", "name": "fromis_9 Logo", "description": "Logo of the kpop girl group fromis_9 formed by CJ E&M through the 2017 reality show Idol School.", "website": "", "subreddit": "/r/Fromis", "center": [1509.5, 894.5], "path": [[1505.5, 890.5], [1505.5, 897.5], [1513.5, 897.5], [1513.5, 890.5]]}, {"id": "tx90yr", "submitted_by": "_DC003_", "name": "WPI Logo", "description": "Logo of Worcester Polytechnic Institute", "website": "https://www.wpi.edu/", "subreddit": "/r/wpi", "center": [318.5, 1559.5], "path": [[310.5, 1554.5], [325.5, 1554.5], [325.5, 1564.5], [310.5, 1564.5]]}, @@ -5461,32 +5037,27 @@ {"id": "tx8zx3", "submitted_by": "MoreOfaLurker", "name": "Pittsburgh Professional Football (US), Ice Hockey, and Baseball Teams", "description": "From left to right: 1) Pittsburgh Steelers of the NFL with iconic 'Steelmark' triple hypocycloid logo 2) 412, Pittsburgh's area code | 3) Pittsburgh Penguins of the NHL with '90s \"robopenguin\" logo design | Pittsburgh Pirates (nicknamed Buccos) of the MLB with classic yellow-on-black 'P'", "website": "", "subreddit": "/r/steelers, /r/penguins, /r/buccos", "center": [1775.5, 651.5], "path": [[1807.5, 664.5], [1743.5, 664.5], [1743.5, 637.5], [1809.5, 638.5], [1809.5, 638.5]]}, {"id": "tx8zww", "submitted_by": "temporary-cervidae", "name": "Soft & Wet's Bubbles", "description": "Bubbles created by Josuke Higashikata's Stand, Soft & Wet, from the manga JoJo's Bizarre Adventure, Part 8: Jojolion.", "website": "", "subreddit": "/r/StardustCrusaders", "center": [92.5, 902.5], "path": [[86.5, 898.5], [98.5, 898.5], [98.5, 905.5], [86.5, 905.5]]}, {"id": "tx8zsf", "submitted_by": "thereallavaxio", "name": "Amogus", "description": "more amogus", "website": "", "subreddit": "", "center": [1448.5, 1997.5], "path": [[1375.5, 1999.5], [1498.5, 2000.5], [1497.5, 1994.5], [1428.5, 1995.5], [1404.5, 1997.5], [1383.5, 1997.5], [1376.5, 1998.5], [1372.5, 1999.5]]}, -{"id": "tx8zs8", "submitted_by": "_SkedeX_", "name": "EthosLab", "description": "EthosLab (born: August 20, 1986 [age 35]), or simply Etho, is a Canadian gaming YouTuber who primarily uploads Minecraft gameplay videos. He was a member of the once-popular MindCrack server and is currently a member of the also popular Hermitcraft server. He is best known though for his single player Minecraft let's play series that started December 17, 2010 (over 11 years ago) and is still going on with 566 episodes as of March 25, 2022.", "website": "https://www.youtube.com/user/EthosLab", "subreddit": "/r/ethoslab", "center": [874.5, 603.5], "path": [[869.5, 599.5], [869.5, 599.5], [869.5, 599.5], [869.5, 599.5], [869.5, 607.5], [878.5, 607.5], [878.5, 599.5]]}, +{"id": "tx8zs8", "submitted_by": "_SkedeX_", "name": "EthosLab", "description": "EthosLab (born: August 20, 1986, age 35), or simply Etho, is a Canadian gaming YouTuber who primarily uploads Minecraft gameplay videos. He was a member of the once-popular Mindcrack server and is currently a member of the also-popular Hermitcraft server. He is best known though for his single-player Minecraft Let's Play series that started December 17, 2010 (over 11 years ago) and is still going on with 566 episodes as of March 25, 2022.", "website": "https://www.youtube.com/user/EthosLab", "subreddit": "/r/ethoslab", "center": [874.5, 603.5], "path": [[869.5, 599.5], [869.5, 599.5], [869.5, 599.5], [869.5, 599.5], [869.5, 607.5], [878.5, 607.5], [878.5, 599.5]]}, {"id": "tx8zof", "submitted_by": "Gandalorian_314", "name": "UdeS", "description": "The University of Sherbrooke is a large public French-language university in Quebec, Canada", "website": "https://www.usherbrooke.ca/", "subreddit": "", "center": [1032.5, 1022.5], "path": [[1038.5, 1028.5], [1025.5, 1015.5], [1040.5, 1016.5], [1039.5, 1028.5], [1025.5, 1028.5], [1025.5, 1015.5]]}, {"id": "tx8zlw", "submitted_by": "noobcake01", "name": "Rice University", "description": "The Rice University R logo alongside a bowl of rice.", "website": "", "subreddit": "/r/riceuniversity", "center": [362.5, 1595.5], "path": [[353.5, 1599.5], [370.5, 1599.5], [370.5, 1591.5], [353.5, 1591.5], [353.5, 1599.5]]}, -{"id": "tx8zl8", "submitted_by": "ProWizardKing", "name": "OSU! Border", "description": "Border of the OSU", "website": "https://osu.ppy.sh/home", "subreddit": "/r/osuplace", "center": [678.5, 727.5], "path": [[677.5, 727.5], [677.5, 727.5], [677.5, 727.5], [678.5, 728.5], [678.5, 727.5], [678.5, 730.5], [677.5, 729.5], [677.5, 730.5], [678.5, 730.5]]}, -{"id": "tx8zfu", "submitted_by": "anonboxis", "name": "Playdate", "description": "Handheld video game console by Panic.", "website": "https://play.date/", "subreddit": "/r/PlaydateConsole", "center": [746.5, 1821.5], "path": [[740.5, 1816.5], [740.5, 1825.5], [741.5, 1825.5], [741.5, 1826.5], [741.5, 1827.5], [751.5, 1827.5], [751.5, 1816.5]]}, -{"id": "tx8zed", "submitted_by": "Roro_Egg", "name": "Mugiwara Flag", "description": "It's the Mugiwara Flag of the popular anime and manga series One Piece. \nUnderneath, three devil fruits have been added. From left to right, the gomu gomu no mi, the ope ope no mi, and the mera mera no mi.", "website": "", "subreddit": "/r/onepiece", "center": [354.5, 571.5], "path": [[330.5, 528.5], [378.5, 528.5], [378.5, 613.5], [330.5, 613.5]]}, +{"id": "tx8zfu", "submitted_by": "anonboxis", "name": "Playdate", "description": "Handheld video game console by Panic.", "website": "https://play.date/", "subreddit": "/r/PlaydateConsole", "center": [746.5, 1821.5], "path": [[751.5, 1816.5], [740.5, 1816.5], [740.5, 1827.5], [751.5, 1827.5], [751.5, 1823.5], [752.5, 1823.5], [752.5, 1820.5], [753.5, 1820.5], [753.5, 1817.5], [751.5, 1817.5], [751.5, 1816.5]]}, {"id": "tx8zb7", "submitted_by": "TheHolyTacoEmperor", "name": "Molly Blyndeff", "description": "Molly Blyndeff is the main protagonist of the Museum Arc in the first season of Epithet Erased", "website": "", "subreddit": "/r/Epithet_Erased", "center": [1019.5, 1670.5], "path": [[1016.5, 1675.5], [1023.5, 1675.5], [1022.5, 1674.5], [1022.5, 1672.5], [1023.5, 1671.5], [1023.5, 1668.5], [1021.5, 1666.5], [1017.5, 1666.5], [1017.5, 1668.5], [1015.5, 1668.5], [1015.5, 1671.5], [1016.5, 1672.5], [1017.5, 1673.5], [1017.5, 1674.5], [1016.5, 1675.5]]}, {"id": "tx8yoq", "submitted_by": "PickPig", "name": "Burgy", "description": "Two (partially griefed) kirbys in burger buns, with a trans flag heart between them.\n", "website": "", "subreddit": "/r/Burgy", "center": [1815.5, 631.5], "path": [[1801.5, 624.5], [1830.5, 624.5], [1830.5, 637.5], [1800.5, 637.5], [1800.5, 624.5]]}, {"id": "tx8ynp", "submitted_by": "winterlyparsley", "name": "Irish Fish", "description": "Fish pixel art created by a lone user in the early hours of Place. As the Irish flag expanded and reached the fish , it was voted to leave the fish alone and incorporate it into the flag", "website": "", "subreddit": "/r/PlaceIreland", "center": [135.5, 773.5], "path": [[132.5, 765.5], [139.5, 765.5], [139.5, 770.5], [132.5, 770.5], [132.5, 772.5], [135.5, 773.5], [137.5, 774.5], [139.5, 774.5], [141.5, 773.5], [141.5, 779.5], [129.5, 779.5], [129.5, 774.5], [132.5, 773.5], [132.5, 767.5]]}, {"id": "tx8yf4", "submitted_by": "XiaXosie", "name": "WAH", "description": "A group of friends banded under the name, wah. Also based on luigi doing a funny pose.", "website": "", "subreddit": "", "center": [1253.5, 1625.5], "path": [[1245.5, 1623.5], [1246.5, 1623.5], [1248.5, 1623.5], [1251.5, 1623.5], [1252.5, 1623.5], [1260.5, 1623.5], [1260.5, 1626.5], [1245.5, 1626.5]]}, -{"id": "tx8xw7", "submitted_by": "Causemufins", "name": "Hidden Evil Xisuma", "description": "A character made as the evil clone of Xisuma from Hermitcraft, hidden behind Ruby to not damage her artwork", "website": "", "subreddit": "/r/hermitcraft", "center": [864.5, 634.5], "path": [[861.5, 638.5], [861.5, 632.5], [868.5, 632.5], [868.5, 634.5], [865.5, 635.5], [862.5, 638.5]]}, {"id": "tx8xsk", "submitted_by": "JohnCasper", "name": "Chicago White Sox - Old Logo", "description": "An old logo of the Chicago White Sox baseball team. This logo was originally used in 1912 and was retired in 1918. It has been brought back occasionally.", "website": "", "subreddit": "", "center": [1591.5, 319.5], "path": [[1583.5, 308.5], [1583.5, 330.5], [1598.5, 330.5], [1598.5, 308.5], [1583.5, 308.5]]}, {"id": "tx8xgq", "submitted_by": "ostensacken", "name": "Orthodox church", "description": "An Orthodox church, not believed to be any specific one.", "website": "", "subreddit": "/r/placeukraine", "center": [359.5, 233.5], "path": [[348.5, 251.5], [348.5, 237.5], [347.5, 237.5], [347.5, 234.5], [348.5, 233.5], [351.5, 233.5], [351.5, 231.5], [350.5, 231.5], [350.5, 225.5], [351.5, 225.5], [351.5, 224.5], [352.5, 224.5], [352.5, 223.5], [353.5, 223.5], [353.5, 222.5], [354.5, 222.5], [354.5, 221.5], [355.5, 221.5], [355.5, 219.5], [354.5, 219.5], [354.5, 212.5], [355.5, 212.5], [356.5, 211.5], [355.5, 211.5], [356.5, 210.5], [357.5, 210.5], [357.5, 203.5], [358.5, 202.5], [359.5, 201.5], [360.5, 202.5], [361.5, 203.5], [361.5, 210.5], [362.5, 210.5], [362.5, 211.5], [363.5, 211.5], [364.5, 212.5], [364.5, 219.5], [363.5, 219.5], [363.5, 222.5], [364.5, 221.5], [364.5, 223.5], [365.5, 222.5], [366.5, 223.5], [366.5, 224.5], [367.5, 224.5], [367.5, 225.5], [368.5, 225.5], [368.5, 231.5], [367.5, 231.5], [367.5, 233.5], [371.5, 233.5], [371.5, 237.5], [370.5, 237.5], [370.5, 251.5]]}, {"id": "tx8xfw", "submitted_by": "commandopro96", "name": "Benni", "description": "A white letter B representing the first letter of my dog's name, Benni. He passed away on April 2nd, 2022 and he will always be remembered. I love you, Benni.", "website": "", "subreddit": "", "center": [1640.5, 1812.5], "path": [[1638.5, 1809.5], [1638.5, 1815.5], [1642.5, 1815.5], [1642.5, 1809.5], [1638.5, 1809.5]]}, -{"id": "tx8x2d", "submitted_by": "3H3NK1SS", "name": "Duval/Jaguars", "description": "Originally, the mascot of the Jacksonville Jaguars, with the team chant,\"DUUUVAL\" over its head, ended up as the chant.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx8wxa", "submitted_by": "_-ph-_", "name": "Collab - Web Serials", "description": "Created by enthusiasts of literature, published online, incrementally.\n\nRepresented here are Pact (rose + shears), Pale (blood moon), Twig (syringe and jar), a Practical Guide to Evil (Sve Noc's crow forms), Katalepsis (rainbow tentacle), the Wandering Inn (duck), the webcomic Kill Six Billion Demons (Jagganoth), and more!", "website": "", "subreddit": "", "center": [1757.5, 1292.5], "path": [[1724.5, 1254.5], [1790.5, 1256.5], [1791.5, 1328.5], [1724.5, 1329.5], [1723.5, 1286.5]]}, {"id": "tx8wpz", "submitted_by": "Goodlookingipromise", "name": "Jopping", "description": "A reference to the first song by popular kpop boy group SuperM titled 'Jopping' (jumping and popping)", "website": "", "subreddit": "", "center": [1406.5, 565.5], "path": [[1390.5, 562.5], [1391.5, 568.5], [1421.5, 568.5], [1422.5, 562.5]]}, {"id": "tx8wl2", "submitted_by": "tricksurf", "name": "Beetle179", "description": "Woah, Fishoo, hold on a second buddy. You wanna talk about something? You have a 572 units per second startzone. Now, I'm gonna have to explain something to you here, if I pop up my show velocity on the startzone as I fall out I get a 442 Z units, right? That's consistent. Because its a fall zone - it's consistent 100% of the time BUT RIGHT THERE I got 454, that's a LAG. Now, actually if we do a little pythagorean theorem if I open my Google Chrome and I do square root of 350, which is the maximum horizontal units per second, squared, plus.. what was it.. 454.. squared - THEN we get 573. YOU just LAGGED startzone my buddy, oooh. Thats an ouch right there.", "website": "", "subreddit": "", "center": [275.5, 855.5], "path": [[254.5, 830.5], [296.5, 830.5], [296.5, 874.5], [295.5, 874.5], [294.5, 875.5], [293.5, 876.5], [292.5, 877.5], [291.5, 878.5], [290.5, 878.5], [289.5, 878.5], [288.5, 879.5], [287.5, 879.5], [286.5, 880.5], [285.5, 880.5], [284.5, 880.5], [283.5, 880.5], [282.5, 880.5], [281.5, 881.5], [280.5, 881.5], [279.5, 882.5], [278.5, 882.5], [277.5, 883.5], [273.5, 883.5], [272.5, 882.5], [271.5, 882.5], [270.5, 881.5], [269.5, 881.5], [268.5, 880.5], [264.5, 880.5], [263.5, 879.5], [262.5, 879.5], [261.5, 878.5], [259.5, 878.5], [258.5, 877.5], [257.5, 876.5], [257.5, 875.5], [257.5, 875.5], [256.5, 875.5], [255.5, 874.5], [254.5, 874.5], [254.5, 830.5]]}, {"id": "tx8w9u", "submitted_by": "NorskDaedalus", "name": "Sve Noc", "description": "Twin crow godesses from the web serial a Practical Guide to Evil", "website": "https://practicalguidetoevil.wordpress.com/", "subreddit": "/r/PracticalGuidetoEvil", "center": [1747.5, 1294.5], "path": [[1762.5, 1287.5], [1733.5, 1288.5], [1730.5, 1292.5], [1735.5, 1294.5], [1734.5, 1301.5], [1758.5, 1302.5], [1761.5, 1288.5]]}, {"id": "tx8w9b", "submitted_by": "ostensacken", "name": "Saint Sophia Cathedral", "description": "Saint Sophia Cathedral is a historical cathedral located in Kyiv, Ukraine. It is one of the Seven Wonders of Ukraine.", "website": "", "subreddit": "/r/placeukraine", "center": [391.5, 237.5], "path": [[374.5, 251.5], [374.5, 242.5], [376.5, 242.5], [376.5, 236.5], [375.5, 236.5], [375.5, 233.5], [378.5, 231.5], [378.5, 227.5], [379.5, 225.5], [385.5, 221.5], [385.5, 219.5], [384.5, 219.5], [384.5, 218.5], [384.5, 217.5], [385.5, 216.5], [387.5, 216.5], [388.5, 217.5], [388.5, 219.5], [387.5, 221.5], [388.5, 221.5], [388.5, 222.5], [389.5, 222.5], [389.5, 223.5], [390.5, 223.5], [390.5, 224.5], [391.5, 224.5], [392.5, 224.5], [392.5, 221.5], [393.5, 220.5], [395.5, 220.5], [396.5, 221.5], [396.5, 224.5], [398.5, 224.5], [398.5, 222.5], [399.5, 221.5], [402.5, 222.5], [402.5, 225.5], [403.5, 226.5], [404.5, 227.5], [404.5, 230.5], [404.5, 231.5], [405.5, 231.5], [405.5, 232.5], [406.5, 232.5], [407.5, 232.5], [407.5, 237.5], [407.5, 237.5], [408.5, 237.5], [408.5, 242.5], [409.5, 242.5], [409.5, 251.5]]}, {"id": "tx8w8i", "submitted_by": "RaoulWB", "name": "Fech", "description": "Protagonist of a small indie game called Fech The Ferret. This cute pink ferret was drawn by its discord community with the help of r/inscription and approval of r/bindingofisaac late into the first day after seeing two bigger attempts being overrun by the quick expansion of Iran. Fech luckily survived the following 3 days", "website": "https://playfe.ch/", "subreddit": "/r/fech", "center": [99.5, 324.5], "path": [[98.5, 319.5], [100.5, 319.5], [101.5, 328.5], [96.5, 328.5], [96.5, 328.5]]}, -{"id": "tx8w6a", "submitted_by": "imagindom", "name": "Benny the Spaceman", "description": "Benny, a spaceman and a main character in The LEGO Movie. One of the first ever LEGO minifigure designs to be manufactured.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx8w3r", "submitted_by": "Liancadu", "name": "Deqiuv", "description": "Deqiuv is a twitch streamer, he is known for being a monster lover and being a very good role player and valorant player", "website": "https://www.twitch.tv/deqiuv", "subreddit": "/r/deqiuv", "center": [1107.5, 1307.5], "path": [[1081.5, 1302.5], [1081.5, 1302.5], [1131.5, 1302.5], [1131.5, 1302.5], [1131.5, 1302.5], [1132.5, 1313.5], [1082.5, 1312.5]]}, {"id": "tx8vw6", "submitted_by": "NicholasV1725", "name": "Cory Kenshin", "description": "The Samurai SHOGUN himself...Cory X Kenshin.", "website": "https://www.youtube.com/c/CoryxKenshin", "subreddit": "/r/CoryxKenshin", "center": [894.5, 888.5], "path": [[904.5, 898.5], [884.5, 898.5], [884.5, 877.5], [904.5, 877.5], [904.5, 877.5]]}, -{"id": "tx8vgm", "submitted_by": "tortuguitado", "name": "Green Little Cross", "description": "A project from u/CoLLiNePhILLCollinS to gift to his newborn baby in the future. Can't get cuter than this!\nHelped by r/httyd, r/LoveLive and r/nanocurrency", "website": "https://www.reddit.com/r/httyd/comments/tx2560/little_green_cross_rplace_project_for_my_son/", "subreddit": "/r/httyd", "center": [865.5, 670.5], "path": [[859.5, 668.5], [871.5, 668.5], [871.5, 672.5], [859.5, 672.5]]}, -{"id": "tx8vf8", "submitted_by": "Akeltheoracle", "name": "Oil platform", "description": "An oil platform, referencing Norway's large oil and gas industry in the north sea.", "website": "https://en.wikipedia.org/wiki/Oil_platform", "subreddit": "/r/place_nordicunion", "center": [417.5, 83.5], "path": [[404.5, 69.5], [432.5, 70.5], [424.5, 99.5], [405.5, 97.5], [406.5, 81.5]]}, +{"id": "tx8vgm", "submitted_by": "tortuguitado", "name": "Green Little Cross", "description": "A project from u/CoLLiNePhILLCollinS to gift to his newborn baby in the future. Can't get cuter than this!\nHelped by r/httyd, r/LoveLive and r/nanocurrency", "website": "https://www.reddit.com/r/httyd/comments/tx2560/little_green_cross_rplace_project_for_my_son/", "subreddit": "/r/httyd", "center": [863.5, 670.5], "path": [[859.5, 668.5], [859.5, 672.5], [867.5, 672.5], [867.5, 668.5]]}, +{"id": "tx8vf8", "submitted_by": "Akeltheoracle", "name": "Oil platform", "description": "An oil platform, referencing Norway's large oil and gas industry in the North Sea.", "website": "https://en.wikipedia.org/wiki/Oil_platform", "subreddit": "/r/place_nordicunion", "center": [417.5, 83.5], "path": [[404.5, 69.5], [432.5, 70.5], [424.5, 99.5], [405.5, 97.5], [406.5, 81.5]]}, {"id": "tx8vf5", "submitted_by": "TheyCallMeSmokeO", "name": "Random Mischief", "description": "Logo of a small gaming discord. Also created the trans/non-binary heart underneath the logo.", "website": "", "subreddit": "", "center": [1133.5, 1837.5], "path": [[1127.5, 1833.5], [1127.5, 1833.5], [1139.5, 1833.5], [1139.5, 1841.5], [1127.5, 1841.5], [1127.5, 1833.5]]}, {"id": "tx8vah", "submitted_by": "SteQuu", "name": "Reksio", "description": "A reference to a widely known cartoon show in Poland, featuring a dog called \"Reksio\".", "website": "https://en.wikipedia.org/wiki/Reksio", "subreddit": "/r/Poland", "center": [630.5, 360.5], "path": [[620.5, 349.5], [631.5, 349.5], [643.5, 356.5], [642.5, 371.5], [625.5, 371.5], [617.5, 366.5], [616.5, 357.5]]}, {"id": "tx8v8r", "submitted_by": "Improbability--Drive", "name": "Loky Ronin", "description": "Ronin style portrait of Loky, cat of the popular Turkish streamer Videoyun", "website": "", "subreddit": "/r/videoyun", "center": [772.5, 1421.5], "path": [[735.5, 1403.5], [809.5, 1403.5], [809.5, 1439.5], [735.5, 1439.5]]}, @@ -5495,7 +5066,6 @@ {"id": "tx8up4", "submitted_by": "tint0f", "name": "Bill Kerman", "description": "Bill Kerman is one of the 4 default kerbals in Kerbal Space Program. He is also used as an emote by Twitch streamer and YouTuber, Robbaz.", "website": "https://www.kerbalspaceprogram.com", "subreddit": "/r/Robbaz", "center": [392.5, 1177.5], "path": [[387.5, 1181.5], [387.5, 1173.5], [396.5, 1173.5], [396.5, 1181.5]]}, {"id": "tx8ug7", "submitted_by": "UvaCbW", "name": "u/UvaCBW's avatar", "description": "My fourth attempt to recreate my avatar.\n\nWould be later griefed.", "website": "", "subreddit": "", "center": [115.5, 779.5], "path": [[114.5, 778.5], [116.5, 778.5], [116.5, 780.5], [114.5, 780.5]]}, {"id": "tx8ubs", "submitted_by": "Causemufins", "name": "Purple Pickles alliance area", "description": "the area with groups from Sank, Phoenotopia and Warhammer40k, name deriving from the positioning of the Dreadnaught and Gail being reminiscent of the 'he ask for no pickles' meme, and Sank being done in mostly purple pixels", "website": "", "subreddit": "/r/phoenotopia, /r/warhammer40k", "center": [1869.5, 1239.5], "path": [[1856.5, 1231.5], [1858.5, 1229.5], [1882.5, 1229.5], [1882.5, 1249.5], [1856.5, 1249.5]]}, -{"id": "tx8u8s", "submitted_by": "leahspidey", "name": "Xenbe", "description": "Minecraft Bedwars streamer Xenbe, also known as xenbandz or leahspideys biggest hater, has his minecraft head placed amongst his friends.", "website": "https://www.twitch.tv/xenbe", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx8u6l", "submitted_by": "slejhammr", "name": "Queer Amongus", "description": "Four small amongi crewmates created with the colours of, from left to right, the lesbian flag, the bisexual flag, the trans flag and the classic gay rainbow flag. Probably created by independent reddit users without a connection to a larger subreddit.", "website": "", "subreddit": "", "center": [299.5, 988.5], "path": [[269.5, 985.5], [269.5, 989.5], [284.5, 985.5], [284.5, 990.5]]}, {"id": "tx8u25", "submitted_by": "MrMcFudge", "name": "SOMETHING", "description": "SOMETHING taunts _____ as he falls.\nSOMETHING listens to _____'s struggle.\nSOMETHING is trying to talk to you...\n\n(link below contains massive spoilers for OMORI)", "website": "https://omori.fandom.com/wiki/SOMETHING", "subreddit": "/r/omori", "center": [992.5, 824.5], "path": [[980.5, 841.5], [985.5, 803.5], [998.5, 802.5], [1003.5, 831.5], [1003.5, 844.5], [999.5, 833.5], [993.5, 856.5], [987.5, 833.5], [986.5, 833.5], [980.5, 841.5]]}, {"id": "tx8u1j", "submitted_by": "derparchivist", "name": "Level1Techs", "description": "https://www.youtube.com/c/Level1Techs", "website": "https://level1techs.com/", "subreddit": "", "center": [122.5, 772.5], "path": [[116.5, 764.5], [116.5, 783.5], [123.5, 778.5], [129.5, 778.5], [129.5, 764.5], [129.5, 764.5], [124.5, 764.5], [116.5, 764.5]]}, @@ -5509,15 +5079,12 @@ {"id": "tx8s0b", "submitted_by": "gabycazbet", "name": "bysTaXx", "description": "Spanish streamer, he plays CS:GO most of the time. \n\n- A qui\u00e9n no le mola abrir cajas chicos ten\u00e9is !skinclub, una p\u00e1gina donde pod\u00e9is conseguir cuchillos pepinos, guantes tochos, dragolores, adem\u00e1s ten\u00e9is un 10% de bonus en las primeras cajas as\u00ed que ya sab\u00e9is darle ah\u00ed - \n\nWe love you Tait <3", "website": "https://www.twitch.tv/bystaxx", "subreddit": "", "center": [875.5, 1656.5], "path": [[871.5, 1653.5], [878.5, 1653.5], [878.5, 1659.5], [871.5, 1659.5]]}, {"id": "tx8ryo", "submitted_by": "LiThiuMElectro", "name": "TABARNAK Qu\u00e9becois for Tabernacle", "description": "Tabarnak, is a slang version of Tabernacle. Qu\u00e9becois uses Tabarnak as a swear word. It is the equivalent of \"fuck\" for american, you can use it as a transitive verb, adjective, adverb etc...\n", "website": "", "subreddit": "", "center": [1052.5, 1011.5], "path": [[1031.5, 1008.5], [1072.5, 1008.5], [1072.5, 1014.5], [1032.5, 1014.5], [1032.5, 1008.5]]}, {"id": "tx8rsu", "submitted_by": "giuz09", "name": "The flag of Boquita", "description": "Boquita the biggest. BOCA BOCA BOCA BOCA. BOCA BOCA.\n\n", "website": "https://discord.gg/duende", "subreddit": "/r/LaComerca", "center": [1348.5, 1821.5], "path": [[1346.5, 1820.5], [1346.5, 1824.5], [1346.5, 1822.5], [1350.5, 1822.5], [1350.5, 1820.5], [1346.5, 1820.5], [1346.5, 1822.5], [1346.5, 1822.5]]}, -{"id": "tx8rsg", "submitted_by": "AllOutOfFucks", "name": "Mr. Tayto", "description": "Mascot of Irish founded company Tayto Crisps", "website": "https://taytocrisps.ie/", "subreddit": "/r/ireland", "center": [140.5, 587.5], "path": [[157.5, 570.5], [127.5, 570.5], [126.5, 606.5], [151.5, 606.5]]}, {"id": "tx8rqf", "submitted_by": "Akeltheoracle", "name": "Norwegian coat of arms", "description": "The lion featured on the Norwegian coat of arms", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_Norway", "subreddit": "/r/place_nordicunion", "center": [385.5, 58.5], "path": [[374.5, 46.5], [397.5, 48.5], [392.5, 69.5], [384.5, 74.5], [377.5, 66.5], [373.5, 50.5]]}, {"id": "tx8rnw", "submitted_by": "LucasBolognesi", "name": "Cangaceiros Hat", "description": "A half-moon shaped hat, used by a famous bandit group in the 20s and 30s. Used today to represent the northeast region of Brazil", "website": "", "subreddit": "", "center": [1091.5, 572.5], "path": [[1083.5, 573.5], [1089.5, 569.5], [1093.5, 568.5], [1100.5, 574.5], [1097.5, 574.5], [1097.5, 578.5], [1095.5, 572.5], [1089.5, 572.5], [1089.5, 578.5], [1088.5, 578.5], [1087.5, 575.5], [1085.5, 574.5], [1083.5, 573.5]]}, {"id": "tx8rit", "submitted_by": "winterlyparsley", "name": "Pint of Guinness", "description": "A pint of Guinness , opposite the French wine as a symbol of friendship and our shared love of alcohol", "website": "", "subreddit": "/r/PlaceIreland", "center": [143.5, 509.5], "path": [[136.5, 520.5], [151.5, 520.5], [151.5, 510.5], [150.5, 510.5], [150.5, 507.5], [149.5, 508.5], [149.5, 498.5], [149.5, 497.5], [142.5, 497.5], [138.5, 497.5], [138.5, 505.5], [137.5, 506.5], [137.5, 510.5], [136.5, 510.5], [136.5, 520.5], [143.5, 520.5]]}, {"id": "tx8rgm", "submitted_by": "bonbonni", "name": "Neopets Classic Kiko Jr.", "description": "A Kiko Jr. from Neopets fan-recreation Neopets Classic", "website": "https://neopetsclassic.com/", "subreddit": "", "center": [306.5, 730.5], "path": [[302.5, 726.5], [302.5, 734.5], [310.5, 734.5], [310.5, 726.5], [309.5, 726.5]]}, -{"id": "tx8r23", "submitted_by": "ChasmoLuke", "name": "Crowny from Prehistoric Kingdom Logo", "description": "The beloved mascot of the indie game Prehistoric Kingdom. Long may she reign!", "website": "https://www.prehistorickingdom.com/", "subreddit": "/r/pkgame", "center": [1740.5, 1706.5], "path": [[1733.5, 1712.5], [1733.5, 1700.5], [1747.5, 1700.5], [1747.5, 1712.5]]}, {"id": "tx8r1y", "submitted_by": "AdRoyal2925", "name": "DCC mascot 'Panda Rojo'", "description": "Furry mascot of University of Chile's Computer Science Department", "website": "https://www.dcc.uchile.cl/", "subreddit": "/r/Beauchef", "center": [1247.5, 1642.5], "path": [[1240.5, 1639.5], [1254.5, 1639.5], [1254.5, 1644.5], [1240.5, 1644.5]]}, {"id": "tx8r1m", "submitted_by": "wonhoppa", "name": "MONSTA X", "description": "Logo of the K-pop boy group MONSTA X\u00a0(\ubaac\uc2a4\ud0c0\uc5d1\uc2a4), under Starship Entertainment. They debuted on May 14, 2015 with the mini album\u00a0Trespass.", "website": "", "subreddit": "/r/MonstaX", "center": [1725.5, 914.5], "path": [[1720.5, 909.5], [1720.5, 919.5], [1730.5, 919.5], [1730.5, 909.5], [1729.5, 909.5]]}, -{"id": "tx8qop", "submitted_by": "CatGamez", "name": "The Front Bottoms' Album", "description": "Album cover for the album by The Front Bottoms under the same name.", "website": "https://tfb.lnk.to/TheFrontBottoms", "subreddit": "/r/TheFrontBottoms", "center": [1730.5, 618.5], "path": [[1723.5, 610.5], [1736.5, 610.5], [1736.5, 626.5], [1723.5, 626.5], [1723.5, 610.5]]}, {"id": "tx8qns", "submitted_by": "tricksurf", "name": "SourceJump", "description": "Source for Counter-Strike: Source bunnyhop/bhop speedrunning videos.", "website": "https://www.youtube.com/c/SourceJump", "subreddit": "", "center": [1450.5, 118.5], "path": [[1462.5, 92.5], [1437.5, 92.5], [1437.5, 144.5], [1464.5, 143.5]]}, {"id": "tx8qnq", "submitted_by": "Fat_melt", "name": "Hoppou", "description": "Shortly after the Polish flag was griefed by among us, the Hoppou Foundation would declare war on among us and tried to build a hoppou on the right side of the flag, though the attempt was unsuccessful due to heavy griefing, and the location was taken over by the duck flag.\n\n The Hoppou Foundation are a VRChat raiding and content creation community, who specialise in a form of raiding which involves avatars that are \u200bdifferent variations of a unity model of the Kantai Collection Northern Princess, with the model being cute to some, but scary to others due to the trademark expressionless stare that would go on to be the backbone of hoppou raiding. A hoppou raid is usually performed with around 5-20 people in a hoppou avatar who silently go around public lobbies, until someone in the public lobby reacts to their presence, at which point the person becomes a target and all the hoppous would silently crowd the target in question or chase them if they run. As a result, hoppou avatars have become popular outside of raiding communities and have even been base models for Vtubers like Kromia", "website": "", "subreddit": "/r/HoppouFoundation", "center": [1925.5, 220.5], "path": [[1914.5, 232.5], [1914.5, 207.5], [1936.5, 207.5], [1936.5, 232.5]]}, {"id": "tx8qka", "submitted_by": "AcceptableMarch2737", "name": "Mexico flag", "description": "Smol", "website": "", "subreddit": "", "center": [1077.5, 1559.5], "path": [[1090.5, 1566.5], [1090.5, 1552.5], [1066.5, 1552.5], [1063.5, 1565.5], [1064.5, 1566.5]]}, @@ -5528,28 +5095,22 @@ {"id": "tx8pyh", "submitted_by": "AcceptableMarch2737", "name": "Failed Green N for the word Narf from pinky and the brain", "description": "N", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": [[827.5, 1604.5], [827.5, 1603.5], [827.5, 1603.5]]}, {"id": "tx8pu0", "submitted_by": "Palpy_Bean", "name": "Grogu", "description": "Grogu, also known as baby yoda, is a character that appears in the ongoing Disney show, The Mandalorian.", "website": "", "subreddit": "/r/StarWars_Place", "center": [752.5, 1660.5], "path": [[727.5, 1642.5], [748.5, 1663.5], [748.5, 1668.5], [761.5, 1668.5], [760.5, 1666.5], [759.5, 1665.5], [759.5, 1664.5], [761.5, 1664.5], [761.5, 1661.5], [758.5, 1659.5], [759.5, 1658.5], [763.5, 1653.5], [761.5, 1653.5], [759.5, 1654.5], [747.5, 1654.5], [745.5, 1652.5], [744.5, 1653.5], [743.5, 1653.5], [745.5, 1655.5], [745.5, 1656.5], [746.5, 1657.5], [747.5, 1658.5], [748.5, 1659.5], [748.5, 1661.5], [747.5, 1660.5]]}, {"id": "tx8p20", "submitted_by": "Necessary-Water8704", "name": "Rocher Perc\u00e9", "description": "Le Rocher Perc\u00e9 est un \u00eelot rocheux aux falaises escarp\u00e9es poss\u00e9dant une arche naturelle et spectaculaire. Il se trouve dans le golfe du Saint-Laurent, \u00e0 l\u2019extr\u00eame est de la Gasp\u00e9sie, face au village de Perc\u00e9, au Qu\u00e9bec.\n\nLe Rocher Perc\u00e9 is a rocky islet with steep cliffs with a natural and spectacular arch. It is located in the Gulf of St. Lawrence, at the extreme east of Gasp\u00e9sie, opposite the village of Perc\u00e9, in Quebec.\n", "website": "", "subreddit": "/r/quebec", "center": [919.5, 1003.5], "path": [[903.5, 991.5], [935.5, 992.5], [935.5, 1015.5], [903.5, 1015.5], [903.5, 1013.5]]}, -{"id": "tx8ovw", "submitted_by": "winterlyparsley", "name": "Mr. Tayto", "description": "Mascot of iconic Irish crisps brand Taytos", "website": "https://taytosnacks.ie/", "subreddit": "/r/PlaceIreland", "center": [139.5, 589.5], "path": [[132.5, 575.5], [141.5, 575.5], [142.5, 577.5], [144.5, 579.5], [144.5, 583.5], [148.5, 580.5], [148.5, 570.5], [157.5, 570.5], [157.5, 576.5], [149.5, 576.5], [150.5, 580.5], [152.5, 581.5], [153.5, 585.5], [152.5, 586.5], [150.5, 588.5], [149.5, 590.5], [148.5, 591.5], [147.5, 593.5], [146.5, 594.5], [145.5, 600.5], [144.5, 601.5], [143.5, 602.5], [143.5, 604.5], [144.5, 605.5], [145.5, 606.5], [145.5, 607.5], [128.5, 607.5], [129.5, 606.5], [130.5, 605.5], [131.5, 604.5], [131.5, 602.5], [130.5, 601.5], [129.5, 600.5], [128.5, 599.5], [127.5, 598.5], [127.5, 590.5], [128.5, 589.5], [129.5, 584.5], [130.5, 581.5], [131.5, 580.5], [129.5, 579.5], [130.5, 578.5], [131.5, 577.5], [131.5, 575.5], [133.5, 575.5], [136.5, 575.5], [136.5, 575.5]]}, {"id": "tx8od4", "submitted_by": "PotatiumPro", "name": "Konata Izumi", "description": "Replaced by Konata waiting for ramen image, near the end", "website": "https://i.redd.it/tpx8x5jsblr81.png", "center": [112.5, 1259.5], "path": [[120.5, 1253.5], [120.5, 1265.5], [104.5, 1265.5], [104.5, 1253.5]]}, {"id": "tx8o7v", "submitted_by": "AcceptableMarch2737", "name": "Chile flag", "description": "Smol", "website": "", "subreddit": "", "center": [261.5, 533.5], "path": [[251.5, 528.5], [272.5, 528.5], [272.5, 537.5], [253.5, 538.5], [251.5, 549.5], [251.5, 528.5]]}, {"id": "tx8o6w", "submitted_by": "ARL1509", "name": "Scoot", "description": "The duck Animal Crossing Villager turned meme beloved by the fans of Vinny Vinesauce", "website": "", "subreddit": "r//Vinesauce", "center": [114.5, 1078.5], "path": [[111.5, 1064.5], [106.5, 1066.5], [105.5, 1061.5], [103.5, 1062.5], [102.5, 1066.5], [103.5, 1072.5], [105.5, 1076.5], [106.5, 1080.5], [104.5, 1084.5], [105.5, 1087.5], [107.5, 1089.5], [108.5, 1091.5], [110.5, 1093.5], [117.5, 1093.5], [120.5, 1092.5], [122.5, 1094.5], [118.5, 1096.5], [120.5, 1098.5], [124.5, 1098.5], [124.5, 1096.5], [123.5, 1093.5], [122.5, 1091.5], [124.5, 1087.5], [124.5, 1084.5], [121.5, 1080.5], [123.5, 1076.5], [125.5, 1071.5], [126.5, 1067.5], [126.5, 1066.5], [124.5, 1064.5], [124.5, 1062.5], [121.5, 1062.5], [121.5, 1065.5], [120.5, 1066.5], [118.5, 1066.5], [118.5, 1065.5], [114.5, 1065.5], [113.5, 1065.5], [112.5, 1065.5], [112.5, 1065.5], [112.5, 1065.5], [111.5, 1065.5]]}, {"id": "tx8nvo", "submitted_by": "Cuffuffles", "name": "Lore", "description": "Greatest Krunker.io clan of all time", "website": "https://krunker.io", "subreddit": "", "center": [1689.5, 277.5], "path": [[1684.5, 275.5], [1684.5, 279.5], [1693.5, 279.5], [1693.5, 275.5]]}, -{"id": "tx8nrf", "submitted_by": "Palpy_Bean", "name": "Statue of Liberty", "description": "A statue depicting Lady Liberty, that stands on Liberty Island. Built in 1876 by the French as a gift to the United States. It is a symbol of peace and freedom", "website": "", "subreddit": "/r/MURICA", "center": [1977.5, 1844.5], "path": [[1971.5, 1803.5], [1970.5, 1806.5], [1970.5, 1810.5], [1969.5, 1810.5], [1969.5, 1811.5], [1969.5, 1812.5], [1970.5, 1813.5], [1970.5, 1824.5], [1971.5, 1825.5], [1971.5, 1828.5], [1970.5, 1829.5], [1970.5, 1831.5], [1971.5, 1833.5], [1972.5, 1839.5], [1972.5, 1851.5], [1971.5, 1851.5], [1970.5, 1852.5], [1970.5, 1859.5], [1969.5, 1861.5], [1968.5, 1864.5], [1968.5, 1867.5], [1989.5, 1867.5], [1989.5, 1865.5], [1985.5, 1865.5], [1985.5, 1862.5], [1984.5, 1863.5], [1984.5, 1853.5], [1983.5, 1853.5], [1983.5, 1849.5], [1984.5, 1849.5], [1986.5, 1848.5], [1983.5, 1848.5], [1983.5, 1843.5], [1984.5, 1843.5], [1984.5, 1840.5], [1985.5, 1840.5], [1985.5, 1839.5], [1986.5, 1839.5], [1986.5, 1838.5], [1988.5, 1838.5], [1987.5, 1832.5], [1983.5, 1832.5], [1983.5, 1831.5], [1981.5, 1831.5], [1981.5, 1830.5], [1980.5, 1829.5], [1980.5, 1828.5], [1979.5, 1827.5], [1979.5, 1824.5], [1980.5, 1824.5], [1980.5, 1818.5], [1979.5, 1817.5], [1977.5, 1818.5], [1973.5, 1822.5], [1972.5, 1822.5], [1972.5, 1822.5]]}, {"id": "tx8nmc", "submitted_by": "Clay_Pigeon", "name": "Grapu", "description": "The mascot of the Green Lattice. It was drawn on the original /r/place by an ally of the lattice.", "website": "", "subreddit": "/r/green_lattice", "center": [1098.5, 427.5], "path": [[1089.5, 423.5], [1090.5, 422.5], [1095.5, 418.5], [1102.5, 418.5], [1108.5, 423.5], [1108.5, 432.5], [1102.5, 437.5], [1095.5, 437.5], [1089.5, 432.5]]}, {"id": "tx8ndn", "submitted_by": "Vivi-ctor", "name": "TENTACREW", "description": "A small community when it comes to numbers, but giant when it comes to heart. We represent our favorite streamer, SmellyOctopus. We fought for a place to keep our mark and after some failed attempts, we finally managed to leave our biggest representative, a cute octopus full of love!", "website": "https://www.twitch.tv/smellyoctopus?sr=a", "subreddit": "", "center": [1336.5, 1350.5], "path": [[1331.5, 1354.5], [1331.5, 1346.5], [1341.5, 1346.5], [1341.5, 1354.5]]}, {"id": "tx8mz7", "submitted_by": "CosmicAndTitties", "name": "Birch Tree", "description": "Birch tree originally made by r/placetrees and when r/quebec took over the corner, they agreed to keep the tree", "website": "", "subreddit": "/r/PlaceTrees", "center": [1019.5, 981.5], "path": [[1012.5, 918.5], [1024.5, 917.5], [1038.5, 975.5], [1026.5, 1023.5], [1026.5, 1020.5], [1022.5, 1052.5], [1015.5, 1054.5], [1003.5, 1006.5], [1005.5, 978.5], [1006.5, 937.5]]}, -{"id": "tx8myo", "submitted_by": "Necessary-Water8704", "name": "Super-C", "description": "Super C, formerly Super Carnaval, is a Quebec discount store chain owned by Metro Inc., specializing in the retail sale of low-cost food products", "website": "", "subreddit": "/r/quebec", "center": [0.5, 0.5], "path": []}, {"id": "tx8myg", "submitted_by": "Rickmaster2002", "name": "Portuguese Guitar", "description": "This is a tradicional guitar from portugal, there are two vatiants, the Lisbon Guitar and the Coimbra Guitar, the difference can mainly be seen in the head of the guitar, the one depicted here can't be specified, so it just represents the Portuguese Guitar as a whole", "website": "", "subreddit": "/r/portugal", "center": [1045.5, 328.5], "path": [[1039.5, 344.5], [1048.5, 344.5], [1048.5, 343.5], [1050.5, 341.5], [1051.5, 337.5], [1051.5, 336.5], [1050.5, 334.5], [1053.5, 333.5], [1055.5, 333.5], [1058.5, 333.5], [1058.5, 331.5], [1058.5, 330.5], [1058.5, 328.5], [1057.5, 323.5], [1057.5, 320.5], [1057.5, 318.5], [1055.5, 317.5], [1053.5, 316.5], [1052.5, 315.5], [1050.5, 314.5], [1047.5, 314.5], [1044.5, 316.5], [1042.5, 316.5], [1043.5, 315.5], [1041.5, 315.5], [1038.5, 317.5], [1040.5, 316.5], [1036.5, 317.5], [1034.5, 321.5], [1033.5, 325.5], [1033.5, 328.5], [1034.5, 332.5], [1036.5, 337.5], [1035.5, 339.5], [1037.5, 341.5], [1039.5, 342.5], [1040.5, 345.5], [1046.5, 344.5], [1046.5, 344.5]]}, {"id": "tx8msm", "submitted_by": "OneShotMason", "name": "Hidden OneShotMason", "description": "A hidden logo of youtube OneShotMason inside of the Moon Lord from game Terraria", "website": "https://www.youtube.com/channel/UCYgAOUxIlYOywb4aSG161nA", "subreddit": "", "center": [1744.5, 367.5], "path": [[1740.5, 369.5], [1749.5, 369.5], [1748.5, 365.5], [1740.5, 365.5], [1740.5, 369.5], [1749.5, 369.5], [1749.5, 365.5], [1740.5, 365.5]]}, {"id": "tx8msh", "submitted_by": "Pro_Wizard", "name": "NixOS", "description": "NixOS is a Linux distrobution with a declarative configuration and package manager", "website": "https://nixos.org/", "subreddit": "/r/NixOS", "center": [33.5, 708.5], "path": [[30.5, 705.5], [36.5, 705.5], [36.5, 711.5], [30.5, 711.5]]}, {"id": "tx8mmi", "submitted_by": "EeveeA_", "name": "", "description": "Calcifer is a fire demon that fuels Howl's Castle in the movie Howl's Moving Castle", "website": "https://ghibli.fandom.com/wiki/Calcifer", "subreddit": "", "center": [1777.5, 696.5], "path": [[1771.5, 704.5], [1771.5, 688.5], [1783.5, 688.5], [1783.5, 704.5]]}, -{"id": "tx8mj6", "submitted_by": "link_dead", "name": "15 year ban glitch", "description": "Due to a really strange glitch, placing a black pixel in this area resulted in a 15 year ban from Reddit.", "website": "", "subreddit": "", "center": [629.5, 453.5], "path": [[787.5, 475.5], [787.5, 429.5], [471.5, 430.5], [469.5, 476.5]]}, {"id": "tx8mdq", "submitted_by": "Flashtirade", "name": "Pomu Rainpuff", "description": "A member of Nijisanji's 1st generation of English vtubers, Lazulight", "website": "", "subreddit": "/r/Nijisanji", "center": [1352.5, 1051.5], "path": [[1346.5, 1045.5], [1346.5, 1044.5], [1358.5, 1044.5], [1358.5, 1057.5], [1357.5, 1059.5], [1347.5, 1059.5], [1346.5, 1045.5]]}, -{"id": "tx8m7b", "submitted_by": "PopLadd", "name": "Gabumon", "description": "A child-level digimon seen in the Digimon Adventure series", "website": "", "subreddit": "", "center": [1329.5, 118.5], "path": [[1322.5, 103.5], [1325.5, 105.5], [1328.5, 103.5], [1329.5, 106.5], [1337.5, 104.5], [1334.5, 109.5], [1339.5, 117.5], [1343.5, 117.5], [1341.5, 124.5], [1342.5, 127.5], [1339.5, 127.5], [1338.5, 125.5], [1337.5, 127.5], [1333.5, 127.5], [1333.5, 131.5], [1320.5, 129.5], [1319.5, 128.5], [1319.5, 122.5], [1321.5, 119.5], [1318.5, 114.5], [1321.5, 108.5]]}, {"id": "tx8m2q", "submitted_by": "teztez79", "name": "DreamNotFound", "description": "A flag representing the relationship of the couple Dream and GeorgeNotFound.", "website": "", "subreddit": "", "center": [1100.5, 1108.5], "path": [[1084.5, 1102.5], [1084.5, 1113.5], [1115.5, 1113.5], [1115.5, 1102.5]]}, {"id": "tx8ltq", "submitted_by": "7qrt", "name": "Grateful Dead bears", "description": "Iconic bears associated with the Grateful Dead and first designed for their 1973 album \"History of the Grateful Dead, Volume One (Bear's Choice).", "website": "https://www.dead.net", "subreddit": "/r/gratefuldead", "center": [42.5, 890.5], "path": [[35.5, 877.5], [35.5, 881.5], [37.5, 881.5], [37.5, 883.5], [38.5, 883.5], [38.5, 884.5], [39.5, 884.5], [39.5, 886.5], [40.5, 886.5], [40.5, 887.5], [41.5, 887.5], [41.5, 893.5], [40.5, 893.5], [40.5, 894.5], [39.5, 894.5], [39.5, 896.5], [38.5, 896.5], [38.5, 897.5], [37.5, 897.5], [37.5, 899.5], [35.5, 899.5], [35.5, 903.5], [36.5, 903.5], [36.5, 904.5], [39.5, 904.5], [39.5, 903.5], [45.5, 903.5], [45.5, 904.5], [48.5, 904.5], [48.5, 903.5], [49.5, 903.5], [49.5, 899.5], [47.5, 899.5], [47.5, 898.5], [47.5, 897.5], [46.5, 897.5], [46.5, 896.5], [45.5, 896.5], [45.5, 894.5], [44.5, 894.5], [44.5, 893.5], [43.5, 893.5], [43.5, 887.5], [44.5, 887.5], [44.5, 886.5], [45.5, 886.5], [45.5, 884.5], [46.5, 884.5], [46.5, 883.5], [47.5, 883.5], [47.5, 881.5], [49.5, 881.5], [49.5, 877.5], [48.5, 877.5], [48.5, 876.5], [45.5, 876.5], [45.5, 877.5], [39.5, 877.5], [39.5, 876.5], [36.5, 876.5], [36.5, 877.5]]}, {"id": "tx8lg7", "submitted_by": "WeAreGoingToMarz", "name": "Flag of the Dominican Republic", "description": "Mangu Power", "website": "", "subreddit": "/r/Dominican", "center": [961.5, 1616.5], "path": [[969.5, 1611.5], [951.5, 1611.5], [951.5, 1621.5], [969.5, 1621.5], [969.5, 1611.5], [969.5, 1621.5], [969.5, 1611.5], [969.5, 1621.5], [971.5, 1621.5], [971.5, 1611.5]]}, {"id": "tx8krs", "submitted_by": "Nyarull", "name": "Biyoo (Omniscient Reader's Viewpoint)", "description": "A small dokkaebi named Biyoo from the popular Korean webnovel Omniscient Reader's Viewpoint by Sing Shong.", "website": "", "subreddit": "/r/OmniscientReader", "center": [864.5, 1489.5], "path": [[863.5, 1485.5], [860.5, 1488.5], [864.5, 1494.5], [868.5, 1489.5], [865.5, 1487.5]]}, -{"id": "tx8kiy", "submitted_by": "ShitbullsThrowaway", "name": "Trans Minecraft Bee", "description": "A transgender Minecraft bee. You will be blocked if you ask \"How?\"", "website": "", "subreddit": "", "center": [715.5, 464.5], "path": [[702.5, 459.5], [702.5, 460.5], [704.5, 462.5], [704.5, 471.5], [709.5, 471.5], [710.5, 472.5], [711.5, 471.5], [712.5, 470.5], [713.5, 469.5], [714.5, 470.5], [715.5, 472.5], [716.5, 471.5], [718.5, 471.5], [718.5, 473.5], [719.5, 472.5], [721.5, 471.5], [722.5, 472.5], [723.5, 473.5], [724.5, 471.5], [726.5, 471.5], [727.5, 458.5], [726.5, 457.5]]}, {"id": "tx8kif", "submitted_by": "SylpheedW", "name": "Whitepot Studios", "description": "Game Dev Studio based in Ireland", "website": "https://whitepotstudios.com/", "subreddit": "/r/whitepotstudios", "center": [1091.5, 1226.5], "path": [[1083.5, 1219.5], [1099.5, 1219.5], [1099.5, 1232.5], [1083.5, 1232.5]]}, {"id": "tx8kbk", "submitted_by": "skippermatt", "name": "WVU Logo (Incomplete)", "description": "This was the \"Flying WV\" of West Virginia University. The logo was seemingly mistaken as an incomplete checkerboard, which some strangers helpfully completed.", "website": "", "subreddit": "/r/WVU", "center": [1740.5, 634.5], "path": [[1737.5, 631.5], [1743.5, 631.5], [1743.5, 637.5], [1737.5, 637.5]]}, {"id": "tx8ju0", "submitted_by": "Comprehensive-Ad7005", "name": "Countless worlds", "description": "A currently closed roblox game that works as a unique rpg -- The Countless Worlds are a collection of different planets, dimensions, spaces, and dreams compressed in one singular instance that holds the fabric of reality together. Going beyond these Worlds is practically impossible, and can result in dire consequences. It is your job to maintain peace in these different realms.", "website": "https://www.roblox.com/games/6900861054/Countless-Worlds", "subreddit": "", "center": [306.5, 1487.5], "path": [[293.5, 1486.5], [294.5, 1487.5], [314.5, 1487.5], [314.5, 1499.5], [294.5, 1499.5], [294.5, 1514.5], [299.5, 1514.5], [299.5, 1500.5], [293.5, 1498.5], [293.5, 1498.5]]}, @@ -5565,16 +5126,14 @@ {"id": "tx8i0t", "submitted_by": "Santaturtle", "name": "Villanova", "description": "Villanova is a private university in Pennsylvania. They are well known for their basketball programs. Their Men's team recently made the 2022 Final Four.", "website": "", "subreddit": "/r/Villanova", "center": [1505.5, 1658.5], "path": [[1497.5, 1658.5], [1497.5, 1663.5], [1510.5, 1663.5], [1510.5, 1651.5], [1504.5, 1651.5], [1504.5, 1658.5], [1497.5, 1658.5], [1497.5, 1663.5]]}, {"id": "tx8hy5", "submitted_by": "PotatiumPro", "name": "University of Santo Tomas", "description": "The University of Santo Tomas is a private, Catholic research university in Manila, Philippines. Founded on April 28, 1611", "website": "https://www.ust.edu.ph/", "subreddit": "", "center": [428.5, 1672.5], "path": [[422.5, 1670.5], [433.5, 1670.5], [433.5, 1674.5], [422.5, 1674.5]]}, {"id": "tx8hrm", "submitted_by": "Cyd3rMann", "name": "Pat & Mat", "description": "A Czechoslovakian stop-motion animated series that centres on the titular handymen attempting to solve their problems, leading to more problems.", "website": "", "subreddit": "", "center": [1290.5, 234.5], "path": [[1285.5, 235.5], [1283.5, 234.5], [1284.5, 232.5], [1288.5, 232.5], [1300.5, 232.5], [1300.5, 238.5], [1280.5, 238.5], [1281.5, 231.5], [1300.5, 231.5]]}, -{"id": "tx8hmw", "submitted_by": "hypered0100", "name": "The ToastieLabs logo", "description": "The logo of the UK based ToastieLabs game developers, creators of Coloring Pixels and hexceed.", "website": "www.ToastieLabs.co.uk", "subreddit": "", "center": [1388.5, 1813.5], "path": [[1374.5, 1806.5], [1401.5, 1806.5], [1401.5, 1819.5], [1374.5, 1819.5]]}, +{"id": "tx8hmw", "submitted_by": "hypered0100", "name": "The ToastieLabs logo", "description": "The logo of the UK based ToastieLabs game developers, creators of Coloring Pixels and hexceed.", "website": "https://www.ToastieLabs.co.uk", "subreddit": "", "center": [1388.5, 1813.5], "path": [[1374.5, 1806.5], [1401.5, 1806.5], [1401.5, 1819.5], [1374.5, 1819.5]]}, {"id": "tx8hfe", "submitted_by": "Drn202", "name": "Funghi", "description": "The mascot of the touch detective/mushroom garden games. Organized and kept up by a small private community.", "website": "", "subreddit": "", "center": [509.5, 1352.5], "path": [[504.5, 1359.5], [514.5, 1359.5], [514.5, 1346.5], [503.5, 1345.5]]}, {"id": "tx8h36", "submitted_by": "ostensacken", "name": "Asexual flag", "description": "The flag of the asexual community. Asexuals do not experience sexual attraction.", "website": "", "subreddit": "/r/asexuality", "center": [523.5, 675.5], "path": [[449.5, 669.5], [449.5, 680.5], [597.5, 680.5], [597.5, 669.5]]}, -{"id": "tx8gyn", "submitted_by": "fluteamahoot", "name": "Gabumon", "description": "One of the more well known digimon", "website": "https://world.digimoncard.com/", "subreddit": "/r/digimon", "center": [1330.5, 118.5], "path": [[1321.5, 103.5], [1321.5, 109.5], [1317.5, 114.5], [1319.5, 131.5], [1335.5, 131.5], [1342.5, 128.5], [1345.5, 117.5], [1341.5, 116.5], [1339.5, 117.5], [1336.5, 108.5], [1340.5, 104.5], [1337.5, 102.5]]}, {"id": "tx8gu8", "submitted_by": "CosmicAndTitties", "name": "Jacques Cartier Bridge", "description": "A bridge in Montreal, Qu\u00e9bec", "website": "", "subreddit": "", "center": [1075.5, 1043.5], "path": [[1076.5, 1059.5], [1053.5, 1081.5], [1035.5, 1096.5], [1031.5, 1067.5], [1059.5, 1050.5], [1065.5, 1031.5], [1089.5, 1040.5], [1085.5, 1050.5], [1081.5, 1054.5], [1056.5, 1078.5], [1034.5, 1096.5], [1029.5, 1069.5], [1017.5, 1085.5], [1021.5, 1115.5], [1037.5, 1098.5]]}, {"id": "tx8gp0", "submitted_by": "JoeSlick75", "name": "Norm Macdonald tribute", "description": "A tribute to comedian Norm Macdonald. It showcases the logo of his podcast, Norm Macdonald Live, along with a popular SNL character of his, Turd Furgeson.", "website": "", "subreddit": "/r/NormMacdonald", "center": [557.5, 1722.5], "path": [[542.5, 1712.5], [572.5, 1712.5], [572.5, 1731.5], [542.5, 1731.5]]}, {"id": "tx8gg7", "submitted_by": "DvR_Angel", "name": "673", "description": "The \"funny number\" of the online friend group TMCCHub. It doesn't have a sophisticated story or meaning however, it's used as an addon when creating new usernames or is the go-to number when numerals are required. Due to it being 3 digits it can be easily recognized and tends to be everywhere in help with the frequency illusion. First popularised/used by Moaty as a Minecraft username (Moaty673) in ~2015.", "website": "https://www.youtube.com/channel/UCjEnlwqqmzHca6CPjHO6ovw", "subreddit": "", "center": [1775.5, 787.5], "path": [[1769.5, 784.5], [1769.5, 790.5], [1781.5, 790.5], [1781.5, 784.5], [1781.5, 784.5], [1781.5, 784.5]]}, {"id": "tx8gaz", "submitted_by": "ostensacken", "name": "Aromantic flag", "description": "The flag of the Aromantic people. Aromantic people do not experience romantic attraction.", "website": "", "subreddit": "/r/aromantic", "center": [523.5, 663.5], "path": [[449.5, 657.5], [449.5, 668.5], [597.5, 668.5], [597.5, 657.5]]}, {"id": "tx8g93", "submitted_by": "SylpheedW", "name": "BlueDrool Company", "description": "A small german gaming community founded in 2017", "website": "https://bluedrool.company", "subreddit": "/r/bluedroolcompany", "center": [1104.5, 1223.5], "path": [[1099.5, 1216.5], [1109.5, 1216.5], [1109.5, 1228.5], [1104.5, 1231.5], [1099.5, 1227.5]]}, -{"id": "tx8g7b", "submitted_by": "LineOfSteam", "name": "Emotiguy wearing Luffy's Straw Hat", "description": "Emotiguy, also known as \"Joe\", \"Almond\", \"Stare\", and \"Picardia\", raising his signature thumbs up while holding his glasses. He is wearing the same straw hat as Luffy, the protagonist of the lengthy manga an anime, \"One Piece\".", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx8g5e", "submitted_by": "Anthenumcharlie", "name": "The exclamation point on SKOL", "description": "A notable story from the vikings logo is the tale of u/Anthenumcharlie and his seemingly never ending quest to claim the exclamation point. He rewrote every pixel to have his name on it day in and out.", "website": "", "subreddit": "/r/minnesotavikings", "center": [1330.5, 656.5], "path": [[1328.5, 659.5], [1328.5, 651.5], [1332.5, 651.5], [1332.5, 660.5], [1328.5, 660.5]]}, {"id": "tx8fov", "submitted_by": "ostensacken", "name": "Aroace flag", "description": "The flag of the Aroace (Aromantic, asexual) community.", "website": "", "subreddit": "/r/aromanticasexual", "center": [523.5, 652.5], "path": [[449.5, 647.5], [449.5, 656.5], [597.5, 656.5], [597.5, 647.5]]}, {"id": "tx8flq", "submitted_by": "Slipfix", "name": "CGP Grey Logo", "description": "Logo of the YouTuber and podcaster CGP Grey", "website": "https://www.cgpgrey.com/", "subreddit": "/r/CGPGrey", "center": [85.5, 813.5], "path": [[81.5, 809.5], [88.5, 809.5], [88.5, 816.5], [81.5, 816.5]]}, @@ -5585,7 +5144,7 @@ {"id": "tx8eoa", "submitted_by": "Penguinjaa", "name": "FrogueLike Frog", "description": "The frog from LOEVI's upcoming game FrogueLike.", "website": "https://www.youtube.com/c/LOEVI", "subreddit": "/r/LOEVI", "center": [334.5, 1221.5], "path": [[331.5, 1220.5], [336.5, 1218.5], [338.5, 1220.5], [336.5, 1224.5], [330.5, 1224.5], [330.5, 1221.5], [331.5, 1220.5], [332.5, 1219.5], [333.5, 1219.5], [334.5, 1218.5], [335.5, 1218.5], [336.5, 1218.5], [336.5, 1218.5], [337.5, 1219.5], [338.5, 1220.5], [338.5, 1220.5], [337.5, 1221.5], [337.5, 1222.5], [336.5, 1223.5], [336.5, 1224.5], [335.5, 1224.5], [334.5, 1224.5], [333.5, 1224.5], [332.5, 1224.5], [331.5, 1224.5], [333.5, 1221.5], [335.5, 1221.5], [335.5, 1220.5]]}, {"id": "tx8enx", "submitted_by": "Appropriate-Trick-69", "name": "Rhulk, Disciple of the Witness", "description": "The final raid boss of the Vow of the Disciple raid that came along with the Witch Queen expansion for Destiny 2. He is the first disiple of the Witness, the entinty behind the Darkness are pyramid ships.", "website": "https://www.destinypedia.com/Rhulk,_Disciple_of_the_Witness", "subreddit": "/r/destiny2", "center": [514.5, 1018.5], "path": [[503.5, 1016.5], [515.5, 1016.5], [516.5, 1015.5], [518.5, 1012.5], [519.5, 1015.5], [520.5, 1018.5], [519.5, 1023.5], [518.5, 1024.5], [516.5, 1022.5], [516.5, 1018.5], [504.5, 1018.5], [503.5, 1017.5], [504.5, 1016.5]]}, {"id": "tx8el1", "submitted_by": "LiThiuMElectro", "name": "Patriots' War", "description": "the Patriots' War (Guerre des patriotes) in French, is the name given to the armed conflict in 1837\u201338 between rebels and the colonial government of Lower Canada (now southern Quebec). Together with the simultaneous rebellion in the neighbouring colony of Upper Canada (now southern Ontario), it formed the Rebellions of 1837\u201338 (r\u00e9bellions de 1837\u201338).", "website": "https://en.wikipedia.org/wiki/Lower_Canada_Rebellion", "subreddit": "", "center": [911.5, 952.5], "path": [[904.5, 942.5], [907.5, 948.5], [907.5, 955.5], [906.5, 961.5], [914.5, 962.5], [913.5, 955.5], [923.5, 944.5], [919.5, 943.5], [913.5, 951.5], [904.5, 938.5], [904.5, 943.5]]}, -{"id": "tx8eju", "submitted_by": "ostensacken", "name": "Fly agaric mushsroom", "description": "A fairly common mushroom throughout Sweden and greater Scandinavia.", "website": "", "subreddit": "", "center": [676.5, 84.5], "path": [[670.5, 91.5], [670.5, 88.5], [673.5, 88.5], [674.5, 88.5], [674.5, 84.5], [669.5, 84.5], [669.5, 80.5], [670.5, 79.5], [671.5, 78.5], [672.5, 78.5], [673.5, 77.5], [680.5, 77.5], [681.5, 79.5], [681.5, 78.5], [682.5, 78.5], [683.5, 79.5], [684.5, 80.5], [684.5, 84.5], [679.5, 84.5], [679.5, 89.5], [683.5, 89.5], [683.5, 91.5]]}, +{"id": "tx8eju", "submitted_by": "ostensacken", "name": "Fly agaric mushsroom", "description": "A fairly common mushroom throughout Sweden and greater Scandinavia.", "website": "https://en.wikipedia.org/wiki/Amanita_muscaria", "subreddit": "/r/sweden", "center": [676.5, 84.5], "path": [[670.5, 91.5], [670.5, 88.5], [673.5, 88.5], [674.5, 88.5], [674.5, 84.5], [669.5, 84.5], [669.5, 80.5], [670.5, 79.5], [671.5, 78.5], [672.5, 78.5], [673.5, 77.5], [680.5, 77.5], [681.5, 79.5], [681.5, 78.5], [682.5, 78.5], [683.5, 79.5], [684.5, 80.5], [684.5, 84.5], [679.5, 84.5], [679.5, 89.5], [683.5, 89.5], [683.5, 91.5]]}, {"id": "tx8ejp", "submitted_by": "Capn_Wing_Ding", "name": "Brad's B & MySpace2.0's :]", "description": "a collab between MySpace2.0 [a small discord server] and a reddit user named u/Bradapiller . Brad started the lower project, a golden B in a sea of dark purple, and the MySpace2.0 users created the upper, a black :] in an area bathed with teal. Flowers were added soon after, all of differing colors. \nShoutouts to our neighbors, FTP, Madeon, & Don't Panic - Inside Bo, who helped us when we were too weak to help ourselves.", "website": "", "subreddit": "", "center": [1338.5, 1309.5], "path": [[1331.5, 1299.5], [1350.5, 1299.5], [1350.5, 1303.5], [1348.5, 1303.5], [1348.5, 1302.5], [1347.5, 1302.5], [1347.5, 1301.5], [1345.5, 1301.5], [1345.5, 1300.5], [1341.5, 1300.5], [1341.5, 1301.5], [1339.5, 1301.5], [1339.5, 1302.5], [1338.5, 1302.5], [1338.5, 1303.5], [1337.5, 1303.5], [1337.5, 1305.5], [1336.5, 1305.5], [1336.5, 1309.5], [1337.5, 1309.5], [1337.5, 1311.5], [1338.5, 1311.5], [1338.5, 1312.5], [1339.5, 1312.5], [1339.5, 1313.5], [1341.5, 1313.5], [1341.5, 1314.5], [1345.5, 1314.5], [1345.5, 1313.5], [1347.5, 1313.5], [1347.5, 1312.5], [1348.5, 1312.5], [1348.5, 1311.5], [1350.5, 1311.5], [1350.5, 1317.5], [1331.5, 1317.5]]}, {"id": "tx8ejk", "submitted_by": "AdictusOutRi", "name": "Jeffar Vlogs", "description": "Peruvian Streamer", "website": "https://www.twitch.tv/Jeffarlandia", "subreddit": "", "center": [1925.5, 203.5], "path": [[1913.5, 171.5], [1916.5, 171.5], [1916.5, 173.5], [1918.5, 173.5], [1918.5, 174.5], [1920.5, 174.5], [1920.5, 175.5], [1922.5, 175.5], [1922.5, 176.5], [1927.5, 176.5], [1928.5, 176.5], [1928.5, 175.5], [1930.5, 175.5], [1931.5, 174.5], [1932.5, 174.5], [1933.5, 173.5], [1933.5, 172.5], [1934.5, 171.5], [1935.5, 171.5], [1935.5, 170.5], [1936.5, 171.5], [1937.5, 172.5], [1937.5, 232.5], [1914.5, 232.5], [1913.5, 184.5], [1913.5, 171.5]]}, {"id": "tx8ed2", "submitted_by": "keithisonfire", "name": "Vancouver Canucks", "description": "Pixer art of retired Canucks jerseys.\nL-R: Stan Smyl, Trevor Linden, Pavel Bure, Markus Naslund, Daniel Sedin, & Henrick Sedin", "website": "", "subreddit": "/r/Canucks", "center": [894.5, 453.5], "path": [[911.5, 450.5], [877.5, 450.5], [877.5, 456.5], [911.5, 456.5]]}, @@ -5595,19 +5154,16 @@ {"id": "tx8dqj", "submitted_by": "Catsuuuu", "name": "SFC", "description": "SFC, short for Sans Fan Club, is a friend group. It has been working with r/LandoftheLustrous in an alliance since the beginning of their build and stayed right above them. This is the 3rd iteration of the design in watermelon colors.", "website": "https://twitter.com/sans_club", "subreddit": "", "center": [1583.5, 484.5], "path": [[1577.5, 481.5], [1589.5, 481.5], [1589.5, 487.5], [1577.5, 487.5]]}, {"id": "tx8dd9", "submitted_by": "blu-487", "name": "Bedrock Linux", "description": "A meta Linux distribution designed for mix-and-matching components from various other distributions.", "website": "https://bedrocklinux.org", "subreddit": "/r/bedrocklinux", "center": [68.5, 738.5], "path": [[65.5, 736.5], [66.5, 737.5], [66.5, 739.5], [67.5, 740.5], [68.5, 741.5], [69.5, 741.5], [70.5, 740.5], [69.5, 738.5], [68.5, 737.5], [67.5, 736.5], [66.5, 735.5]]}, {"id": "tx8dal", "submitted_by": "HeroOfOldIron", "name": "Web Serial Pale", "description": "The bloody moon from Pale, the latest and currently ongoing web serial written by Wildbow.", "website": "https://palewebserial.wordpress.com/", "subreddit": "/r/Parahumans", "center": [1746.5, 1283.5], "path": [[1737.5, 1276.5], [1734.5, 1282.5], [1737.5, 1288.5], [1740.5, 1291.5], [1749.5, 1291.5], [1755.5, 1288.5], [1758.5, 1282.5], [1756.5, 1278.5], [1754.5, 1276.5]]}, -{"id": "tx8dac", "submitted_by": "Venus_OfMilo", "name": "Desst3", "description": "Minecraft skin of a Spanish streamer and roleplayer originally from Galicia. Its main content focuses on GTA V", "website": "https://www.twitch.tv/desst3", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx8d8n", "submitted_by": "GamEsnitzhel", "name": "Sectors Edge", "description": "The Sectors Edge community worked together to try and spell 'Sectors Edge is F2P'", "website": "https://sectorsedge.com/", "subreddit": "/r/sectorsedge", "center": [1020.5, 1928.5], "path": [[1011.5, 1919.5], [1012.5, 1944.5], [1019.5, 1942.5], [1026.5, 1924.5], [1038.5, 1924.5], [1038.5, 1919.5], [1011.5, 1919.5]]}, {"id": "tx8d2y", "submitted_by": "adriblep", "name": "Dream (Fan lead Art)", "description": "This art of Dream/Dreamwastaken was started and maintained by fans on (mostly) Twitter. However, was helped by Dream himself later during a stream. It's an example of the support from his fandom even when he is offline.", "website": "", "subreddit": "/r/dreamwastaken", "center": [163.5, 1049.5], "path": [[137.5, 1015.5], [137.5, 1015.5], [188.5, 1015.5], [188.5, 1083.5], [137.5, 1083.5], [137.5, 1015.5]]}, -{"id": "tx8cwv", "submitted_by": "orionspazio", "name": "Autism Pride", "description": "#RedInstead banner and the Neurodiversity flag created by the Autistic community.", "website": "", "subreddit": "/r/AutisticLiberation", "center": [284.5, 1860.5], "path": [[250.5, 1850.5], [305.5, 1850.5], [305.5, 1876.5], [281.5, 1876.5], [281.5, 1860.5], [250.5, 1860.5]]}, {"id": "tx8c83", "submitted_by": "djulioo", "name": "Svoboda ili smart (\u0421\u0432\u043e\u0431\u043e\u0434\u0430 \u0438\u043b\u0438 \u0441\u043c\u044a\u0440\u0442\u044c)", "description": "'Svoboda ili smart' (Bulgarian: \u0421\u0432\u043e\u0431\u043e\u0434\u0430 \u0438\u043b\u0438 \u0441\u043c\u044a\u0440\u0442, lit.\u2009'Freedom or Death', written in pre-1945 Bulgarian orthography: '\u0421\u0432\u043e\u0431\u043e\u0434\u0430 \u0438\u043b\u0438 \u0441\u043c\u044a\u0440\u0442\u044c' and before 1899: '\u0421\u0432\u043e\u0431\u043e\u0434\u0430 \u0438\u043b\u0438 \u0441\u043c\u044a\u0440\u0442\u044a', was a revolutionary slogan used during the national-liberation struggles by the Bulgarian revolutionaries, called comitadjis. The slogan was in use during the second half of the 19th and the first half of the 20th centuries", "website": "https://en.wikipedia.org/wiki/Svoboda_ili_smart", "subreddit": "", "center": [1618.5, 760.5], "path": [[1580.5, 756.5], [1580.5, 764.5], [1659.5, 763.5], [1659.5, 757.5], [1580.5, 756.5]]}, {"id": "tx8c5x", "submitted_by": "ChaseADuck", "name": "Chase's Storm Logo", "description": "The official logo of Chase's Storm.", "website": "", "subreddit": "", "center": [1714.5, 614.5], "path": [[1710.5, 620.5], [1706.5, 616.5], [1706.5, 611.5], [1711.5, 606.5], [1717.5, 606.5], [1721.5, 610.5], [1722.5, 611.5], [1722.5, 616.5], [1717.5, 621.5], [1711.5, 621.5], [1710.5, 620.5]]}, {"id": "tx8c1t", "submitted_by": "fluteamahoot", "name": "hat mouse", "description": "\"Me sell hats. Okay, poke?\"\nThe hat vender from Stardew Valley", "website": "https://www.stardewvalley.net/", "subreddit": "/r/StardewValley", "center": [1734.5, 970.5], "path": [[1741.5, 963.5], [1741.5, 977.5], [1727.5, 977.5], [1727.5, 963.5]]}, {"id": "tx8bx5", "submitted_by": "InitialParsnip", "name": "Among Us Heart", "description": "The universal symbol of love decorated with three Among Us crewmates.", "website": "", "subreddit": "", "center": [1024.5, 1900.5], "path": [[1019.5, 1894.5], [1022.5, 1894.5], [1024.5, 1897.5], [1023.5, 1895.5], [1024.5, 1897.5], [1025.5, 1895.5], [1029.5, 1894.5], [1032.5, 1897.5], [1024.5, 1910.5], [1016.5, 1899.5], [1016.5, 1897.5], [1019.5, 1894.5]]}, -{"id": "tx8bjm", "submitted_by": "I_Eat_Pork", "name": "NATO flag (vandalised)", "description": "Flag of the North Atlantic Treaty Organisation (NATO).\nCought in the crossfire of Mizkif's artwork.", "website": "reddit.com/r/NonCredibleDefense", "subreddit": "/r/neoliberal", "center": [1451.5, 1418.5], "path": [[1465.5, 1401.5], [1465.5, 1435.5], [1436.5, 1434.5], [1437.5, 1401.5]]}, +{"id": "tx8bjm", "submitted_by": "I_Eat_Pork", "name": "NATO flag (vandalised)", "description": "Flag of the North Atlantic Treaty Organisation (NATO).\nCought in the crossfire of Mizkif's artwork.", "website": "https://reddit.com/r/NonCredibleDefense", "subreddit": "/r/neoliberal", "center": [1451.5, 1418.5], "path": [[1465.5, 1401.5], [1465.5, 1435.5], [1436.5, 1434.5], [1437.5, 1401.5]]}, {"id": "tx8bfu", "submitted_by": "FlyingCow343", "name": "Saint Piran's Flag", "description": "The Flag of Cornwall. Cornwall is county in England's southwestern tip, some Cornish people believe Cornwall should be it's own country.", "website": "", "subreddit": "", "center": [627.5, 554.5], "path": [[624.5, 556.5], [624.5, 552.5], [630.5, 552.5], [630.5, 556.5]]}, {"id": "tx8baa", "submitted_by": "TheGamseum", "name": "Jamel", "description": "Jamel is a popular meme inside joke on the Marioverse Discord server, where fans of the Super Mario franchise can discuss Mario lore. Somebody wanted to type \"Kamek\" but it autocorrected to \"Jamel\", and a new character was born.", "website": "", "subreddit": "/r/Marioverse", "center": [1400.5, 373.5], "path": [[1395.5, 368.5], [1395.5, 378.5], [1405.5, 378.5], [1405.5, 372.5], [1403.5, 368.5], [1403.5, 368.5], [1403.5, 368.5]]}, {"id": "tx8b70", "submitted_by": "ChaseADuck", "name": "Chase's Storm Purple Guy", "description": "A meme referencing purple guy in Chase. Made with the help of Storm's Edge", "website": "", "subreddit": "", "center": [1730.5, 618.5], "path": [[1736.5, 627.5], [1722.5, 627.5], [1722.5, 609.5], [1737.5, 609.5], [1737.5, 627.5], [1736.5, 627.5]]}, -{"id": "tx8b2s", "submitted_by": "mahokame", "name": "Feh (Fire Emblem Heroes)", "description": "A messenger owl named Feh, from the mobile game Fire Emblem Heroes. Delivers messages and daily gifts to players.", "website": "", "subreddit": "/r/fireemblem", "center": [1844.5, 766.5], "path": [[1854.5, 772.5], [1836.5, 772.5], [1835.5, 760.5], [1849.5, 759.5]]}, {"id": "tx8azx", "submitted_by": "Slipfix", "name": "CGP Grey the Lady Penguin", "description": "A female African penguin from the Bristol Zoo, adopted by Vice Host of the Hello Internet podcast Brady Haran and named after CGP Grey, the other host of the podcast.\n\nCGP Grey the Penguin died in a transfer to Tblisi Zoo in early 2017.", "website": "https://hellointernet.fm/", "subreddit": "/r/HelloInternet", "center": [85.5, 785.5], "path": [[81.5, 778.5], [88.5, 778.5], [88.5, 791.5], [81.5, 791.5]]}, {"id": "tx8awo", "submitted_by": "PurplePurps", "name": "CipherHunt Bill Cipher statue", "description": "The statue of Bill Cipher at the end of the TV series Gravity Falls, made by a group particularly dedicated to finding it.", "website": "", "subreddit": "", "center": [596.5, 1347.5], "path": [[591.5, 1340.5], [601.5, 1340.5], [601.5, 1352.5], [602.5, 1352.5], [602.5, 1354.5], [591.5, 1354.5], [591.5, 1340.5]]}, {"id": "tx8arl", "submitted_by": "Rimsita", "name": "This was a kiwi", "description": "There was a time that this was a kiwi made just for fun with some friends but sadly someone covered it with yellow", "website": "https://mequuwi.carrd.co", "subreddit": "", "center": [1709.5, 1168.5], "path": [[1705.5, 1171.5], [1705.5, 1167.5], [1708.5, 1165.5], [1712.5, 1166.5], [1712.5, 1171.5], [1705.5, 1171.5]]}, @@ -5619,18 +5175,14 @@ {"id": "tx8agq", "submitted_by": "ilovemyneckbeard", "name": "Pest", "description": "From the TLC show 19kids and counting, josh molested his sisters and another non relative.\n\nhe is convicted of downloading CSAM. \n First born son of jim bob and michelle duggar. Married to Anna nee Kellar and has 7 children all with names starting with the letter M. currently in jail awaiting sentencing on may 25th.", "website": "", "subreddit": "/r/DuggarsSnark", "center": [590.5, 1118.5], "path": [[609.5, 1122.5], [609.5, 1116.5], [569.5, 1117.5], [560.5, 1112.5], [565.5, 1118.5], [612.5, 1116.5], [556.5, 1105.5], [556.5, 1127.5], [627.5, 1127.5], [627.5, 1111.5], [562.5, 1109.5]]}, {"id": "tx8aag", "submitted_by": "Flashtirade", "name": "Shigure Ui chibi", "description": "A chibi of the indie Japanese vtuber and professional illustrator Shigure Ui", "website": "", "subreddit": "/r/VirtualYoutubers", "center": [1460.5, 1087.5], "path": [[1458.5, 1084.5], [1462.5, 1084.5], [1464.5, 1086.5], [1464.5, 1088.5], [1462.5, 1089.5], [1456.5, 1089.5], [1455.5, 1088.5], [1458.5, 1084.5]]}, {"id": "tx8a59", "submitted_by": "9chan_Crossover", "name": "Hot air balloon", "description": "The hot air balloon was invented by two French brothers in 1782 : les fr\u00e8res Montgolfier", "website": "", "subreddit": "/r/rance", "center": [153.5, 419.5], "path": [[136.5, 398.5], [131.5, 400.5], [129.5, 405.5], [130.5, 413.5], [132.5, 419.5], [139.5, 419.5], [162.5, 447.5], [168.5, 447.5], [172.5, 437.5], [173.5, 427.5], [169.5, 423.5], [162.5, 403.5], [143.5, 399.5], [143.5, 399.5]]}, -{"id": "tx8a0u", "submitted_by": "StickyGuns", "name": "Mr Tayto", "description": "Mascot of the iconic Irish crisp brand, Tayto", "website": "", "subreddit": "", "center": [141.5, 588.5], "path": [[128.5, 575.5], [138.5, 572.5], [146.5, 574.5], [150.5, 567.5], [159.5, 568.5], [160.5, 579.5], [154.5, 585.5], [148.5, 596.5], [146.5, 606.5], [145.5, 609.5], [127.5, 609.5]]}, {"id": "tx89wk", "submitted_by": "Venus_OfMilo", "name": "Desst3", "description": "Minecraft skin of a Spanish streamer and roleplayer originally from Galicia. Its main content focuses on GTA V", "website": "https://www.twitch.tv/desst3", "subreddit": "", "center": [1103.5, 1255.5], "path": [[1105.5, 1255.5], [1104.5, 1255.5], [1107.5, 1252.5], [1108.5, 1251.5], [1099.5, 1251.5], [1099.5, 1259.5], [1108.5, 1259.5], [1108.5, 1253.5]]}, {"id": "tx89w3", "submitted_by": "Valtarg", "name": "Azki's logo", "description": "Logo of Vsinger now member of hololive since the 1th april of 2022. \n", "website": "https://hololive.hololivepro.com/en/talents/azki/", "subreddit": "/r/hololive", "center": [1396.5, 930.5], "path": [[1391.5, 925.5], [1402.5, 925.5], [1402.5, 935.5], [1391.5, 936.5]]}, -{"id": "tx89v0", "submitted_by": "_Clever_Username", "name": "Fluffhead", "description": "Fluffhead is a popular Phish song that its fans will write on signs and attempt to get on TV, often at sporting events. When spotted, fans will typically accompany the phrase 'we are everywhere' when posted to social media/message boards.", "website": "https://www.youtube.com/watch?v=8M9PtqpNUQY", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx89uf", "submitted_by": "leahspidey", "name": "Krinios", "description": "Minecraft content creator Ryan Krinios has his Minecraft head placed here by Krinnies upon request via Twitter and Discord", "website": "https://www.twitch.tv/krinios", "subreddit": "/r/Krinios", "center": [205.5, 913.5], "path": [[201.5, 909.5], [208.5, 909.5], [208.5, 916.5], [201.5, 916.5], [201.5, 909.5]]}, {"id": "tx89tq", "submitted_by": "Enaphael", "name": "ABR", "description": "The first letters of a French online community, les Abrutis. With a French flag as background.", "website": "", "subreddit": "", "center": [1119.5, 853.5], "path": [[1117.5, 844.5], [1121.5, 844.5], [1121.5, 862.5], [1117.5, 862.5], [1117.5, 844.5]]}, -{"id": "tx89ry", "submitted_by": "ChaseADuck", "name": "Chase's Storm Heart", "description": "A heart made by Chase's Storm People resembling weather.", "website": "", "subreddit": "", "center": [1721.5, 606.5], "path": [[1720.5, 603.5], [1719.5, 604.5], [1718.5, 606.5], [1721.5, 609.5], [1724.5, 606.5], [1722.5, 603.5], [1721.5, 604.5]]}, {"id": "tx89pg", "submitted_by": "flaberpengu", "name": "GDS (Game Development Society)", "description": "GDS is a society at the University of Birmingham dedicated to learning to create video games and helping one another through the process.", "website": "https://www.birmingham.ac.uk/university/colleges/eps/eps-community/students/societies/games-development.aspx", "subreddit": "", "center": [12.5, 1239.5], "path": [[8.5, 1237.5], [15.5, 1237.5], [15.5, 1240.5], [8.5, 1240.5], [8.5, 1237.5]]}, {"id": "tx89mn", "submitted_by": "ANKLEFUCKER", "name": "Fuck Josh Duggar!!!!!!", "description": "A project by r/duggarssnark, a subreddit dedicated to snarking on the Duggar family of 17/18/19 Kids and Counting fame. As of April 2022, eldest son Joshua James Duggar is awaiting sentencing for possessing child sexual abuse material. \n\n\n", "website": "", "subreddit": "/r/duggarssnark", "center": [594.5, 1120.5], "path": [[564.5, 1111.5], [624.5, 1111.5], [624.5, 1128.5], [563.5, 1128.5], [564.5, 1111.5]]}, {"id": "tx89h8", "submitted_by": "Voxeltheslime", "name": "Voxel's Face", "description": "Credit to the boys for getting my avatar on the taskbar", "website": "", "subreddit": "", "center": [352.5, 1999.5], "path": [[349.5, 1998.5], [355.5, 1998.5], [355.5, 1999.5], [349.5, 1999.5]]}, -{"id": "tx88uo", "submitted_by": "kassmastertm", "name": "Snufkin and Little My", "description": "Snufkin/Nuuskamuikkunen and Little My are characters from The Moomins, a book series/cartoon created by Tove Jansson.\n\nr/place ended before we finished the mural, and it suffered a lot of vandalism that we did not have time to fix, but we are proud to leave our mark on the canvas!", "website": "", "subreddit": "/r/Moomins", "center": [0.5, 0.5], "path": []}, -{"id": "tx88ue", "submitted_by": "morihladko", "name": "Slovak University of Technology", "description": "Logo of Slovak University of Technology, Faculty of Informatics and Information Technologies and Faculty of Electrical Engineering and Information Technology.", "website": "https://www.stuba.sk", "subreddit": "", "center": [539.5, 1657.5], "path": [[529.5, 1647.5], [549.5, 1647.5], [549.5, 1667.5], [528.5, 1668.5], [529.5, 1647.5]]}, +{"id": "tx88ue", "submitted_by": "Marcopolo11111", "name": "Logo of Slovak University of Technology", "description": "This is logo of Slovak University of Technology (STU - Slovensk\u00e1 Technick\u00e1 Univerzita) and few of its faculties.\n\nFIIT - Faculty of Informatics and Information Technology\n\nFEI - Faculty of Electrical engineering and Information technology\n\nThey were created and defended by us students and with the help and in coalition with r/Slovakia, #dc Slovakia Place 2022 and its allies.\n\nWe are happy that we made it onto the canvas :).\n\nUvid\u00edme sa nabud\u00face! \nSee you next time!", "website": "https://www.stuba.sk/english.html?page_id=132", "subreddit": "/r/Slovakia", "center": [539.5, 1657.5], "path": [[528.5, 1646.5], [550.5, 1646.5], [550.5, 1668.5], [528.5, 1668.5], [528.5, 1646.5]]}, {"id": "tx88pq", "submitted_by": "europhilic", "name": "Colorado State University", "description": "Colorado State University (Colorado State or CSU) is a public university in Fort Collins, Colorado. It is the flagship university of the Colorado State University System. Colorado State's athletic teams compete in the Mountain West Conference and are nicknamed the Rams.", "website": "https://www.colostate.edu/", "subreddit": "/r/CSUFoCo", "center": [1274.5, 1810.5], "path": [[1258.5, 1808.5], [1279.5, 1808.5], [1279.5, 1802.5], [1286.5, 1802.5], [1286.5, 1815.5], [1258.5, 1815.5], [1258.5, 1808.5]]}, {"id": "tx88pl", "submitted_by": "throwaway1167348", "name": "Flag of Guinea", "description": "The national flag for the country of Guinea.", "website": "", "subreddit": "", "center": [1778.5, 1105.5], "path": [[1769.5, 1100.5], [1787.5, 1110.5], [1769.5, 1110.5], [1769.5, 1100.5], [1785.5, 1100.5], [1788.5, 1110.5]]}, {"id": "tx88n1", "submitted_by": "Bookmark_Object", "name": "Sus Jerma Face", "description": "The Sus Jerma Face was a meme portraying the streamer Jerma with a funny face alteration that shows that he may have done particularly suspicious behavior.", "website": "https://www.twitch.tv/jerma985", "subreddit": "", "center": [114.5, 974.5], "path": [[99.5, 959.5], [100.5, 988.5], [127.5, 989.5], [128.5, 960.5], [128.5, 960.5]]}, @@ -5644,19 +5196,17 @@ {"id": "tx87by", "submitted_by": "oForce21o", "name": "Eric Johnson", "description": "Twitch Livestreamer EJ_SA, educational streamer teaches people about space and science while playing games.", "website": "https://www.twitch.tv/ej_sa", "subreddit": "", "center": [810.5, 632.5], "path": [[808.5, 636.5], [806.5, 633.5], [805.5, 629.5], [812.5, 628.5], [814.5, 631.5], [813.5, 636.5]]}, {"id": "tx877z", "submitted_by": "ToastyKoishi", "name": "Tairitsu's bow", "description": "Asset of one of the two main characters of Arcaea (Tairitsu), representing Conflict.", "website": "https://arcaea.lowiro.com/en", "subreddit": "/r/arcaea", "center": [1832.5, 1654.5], "path": [[1831.5, 1650.5], [1832.5, 1650.5], [1833.5, 1652.5], [1834.5, 1653.5], [1835.5, 1653.5], [1836.5, 1654.5], [1834.5, 1654.5], [1835.5, 1655.5], [1833.5, 1656.5], [1831.5, 1657.5], [1830.5, 1658.5], [1830.5, 1659.5], [1829.5, 1658.5], [1830.5, 1657.5], [1829.5, 1656.5], [1830.5, 1655.5], [1830.5, 1654.5], [1832.5, 1654.5], [1832.5, 1656.5], [1830.5, 1653.5], [1829.5, 1653.5], [1829.5, 1652.5], [1830.5, 1651.5], [1832.5, 1654.5], [1832.5, 1655.5], [1831.5, 1654.5], [1832.5, 1653.5], [1832.5, 1654.5], [1835.5, 1653.5], [1835.5, 1652.5], [1834.5, 1652.5], [1836.5, 1653.5], [1833.5, 1656.5], [1832.5, 1653.5], [1831.5, 1654.5], [1830.5, 1653.5], [1830.5, 1654.5], [1831.5, 1654.5]]}, {"id": "tx875t", "submitted_by": "AndyRV_", "name": "pepeD", "description": "PepeD is an animated BetterTTV extension Twitch emote of pixel art animation of Pepe the Frog dancing by turning left and right and raising and lowering his left and right arms. After the emoji was enabled by a number of popular streamers, it became a popular way of expressing approval of the music which is being played, or expressing joy.", "website": "", "subreddit": "", "center": [1780.5, 1601.5], "path": [[1773.5, 1604.5], [1773.5, 1597.5], [1786.5, 1597.5], [1786.5, 1604.5]]}, -{"id": "tx8727", "submitted_by": "SpikeX", "name": "Tesla Logo", "description": "The Tesla Motors T logo, coordinated by /r/teslamotors with assistance from /r/spacex.", "website": "https://tesla.com", "subreddit": "/r/TeslaMotors", "center": [862.5, 1596.5], "path": [[845.5, 1580.5], [879.5, 1580.5], [879.5, 1612.5], [845.5, 1612.5], [845.5, 1580.5]]}, {"id": "tx8707", "submitted_by": "CMDR_TheDedicatedBNG", "name": "Borb", "description": "The fourth and final location of Borb, a character from Painting With Borb, a show by Animator and Streamer Tomthinks", "website": "https://www.twitch.tv/tomthinks", "subreddit": "/r/place_borbpaints", "center": [1276.5, 1209.5], "path": [[1285.5, 1201.5], [1285.5, 1219.5], [1274.5, 1219.5], [1274.5, 1215.5], [1273.5, 1215.5], [1272.5, 1214.5], [1272.5, 1211.5], [1270.5, 1211.5], [1270.5, 1210.5], [1269.5, 1210.5], [1269.5, 1209.5], [1264.5, 1209.5], [1263.5, 1209.5], [1262.5, 1211.5], [1262.5, 1201.5]]}, {"id": "tx86qc", "submitted_by": "hugodevezas", "name": "Los Carry (LC)", "description": "A group of friends from Portugal :)", "website": "", "subreddit": "", "center": [1971.5, 1253.5], "path": [[1974.5, 1250.5], [1974.5, 1256.5], [1968.5, 1256.5], [1968.5, 1250.5], [1974.5, 1250.5], [1968.5, 1250.5], [1968.5, 1256.5], [1974.5, 1256.5], [1974.5, 1250.5], [1974.5, 1250.5], [1974.5, 1256.5], [1968.5, 1256.5], [1968.5, 1250.5]]}, {"id": "tx86h9", "submitted_by": "Tea_Reckz", "name": "Simon Belmont - Casltevania", "description": "One of the many protagonists from the Castlevania franchise, Simon Belmont stands tall as one of the Belmont Clan\u2019s strongest and most iconic vampire hunters. Seeking representation for our community on r/Place, our team of Castlevania fans worked to create and protect Simon\u2019s sprite from the original NES Castlevania. Thank you to r/Belgium for letting us draw him here!", "website": "", "subreddit": "/r/castlevania", "center": [1324.5, 1041.5], "path": [[1315.5, 1056.5], [1315.5, 1048.5], [1318.5, 1045.5], [1317.5, 1038.5], [1314.5, 1035.5], [1323.5, 1023.5], [1329.5, 1024.5], [1333.5, 1036.5], [1333.5, 1055.5]]}, {"id": "tx86fp", "submitted_by": "Revolutionary_Tie614", "name": "Ukraine Flag", "description": "Flag of Ukraine that made a lot of controversy in the first hours of the canvas because it took up a lot of space.\n", "website": "", "subreddit": "/r/placeukraine", "center": [214.5, 210.5], "path": [[432.5, 251.5], [0.5, 251.5], [0.5, 167.5], [433.5, 172.5], [432.5, 251.5]]}, -{"id": "tx86fe", "submitted_by": "oogabagabooga", "name": "Western University Crest", "description": "The crest of Western University, located in London, Ontario, Canada.", "website": "uwo.ca", "subreddit": "/r/uwo", "center": [421.5, 1932.5], "path": [[419.5, 1945.5], [423.5, 1945.5], [423.5, 1944.5], [425.5, 1943.5], [429.5, 1940.5], [431.5, 1937.5], [430.5, 1922.5], [426.5, 1919.5], [417.5, 1919.5], [411.5, 1922.5], [411.5, 1939.5], [418.5, 1946.5], [423.5, 1946.5], [431.5, 1939.5], [431.5, 1936.5]]}, +{"id": "tx86fe", "submitted_by": "oogabagabooga", "name": "Western University Crest", "description": "The crest of Western University, located in London, Ontario, Canada.", "website": "https://uwo.ca", "subreddit": "/r/uwo", "center": [421.5, 1932.5], "path": [[419.5, 1945.5], [423.5, 1945.5], [423.5, 1944.5], [425.5, 1943.5], [429.5, 1940.5], [431.5, 1937.5], [430.5, 1922.5], [426.5, 1919.5], [417.5, 1919.5], [411.5, 1922.5], [411.5, 1939.5], [418.5, 1946.5], [423.5, 1946.5], [431.5, 1939.5], [431.5, 1936.5]]}, {"id": "tx86ew", "submitted_by": "keeper_of_fidra", "name": "Qu\u00e9bec Patriote", "description": "November 1837: Patriote rebels fought trained British regulars and anglophone volunteers in a series of skirmishes.", "website": "https://www.thecanadianencyclopedia.ca/en/article/rebellions-of-1837", "subreddit": "", "center": [912.5, 944.5], "path": [[902.5, 962.5], [923.5, 962.5], [924.5, 943.5], [916.5, 924.5], [902.5, 924.5]]}, {"id": "tx86e2", "submitted_by": "Just__Kamil", "name": "Red Vox Band", "description": "This is a band that was founded by Vinny, Mike, Joe, and Bill. Both Vinny And Mike have a spot on the mural.", "website": "https://www.redvoxband.com/", "subreddit": "/r/RedVox", "center": [100.5, 1103.5], "path": [[95.5, 1109.5], [99.5, 1110.5], [100.5, 1109.5], [99.5, 1108.5], [106.5, 1108.5], [107.5, 1106.5], [108.5, 1105.5], [108.5, 1103.5], [107.5, 1102.5], [107.5, 1100.5], [106.5, 1100.5], [106.5, 1099.5], [104.5, 1098.5], [102.5, 1097.5], [99.5, 1097.5], [98.5, 1098.5], [97.5, 1098.5], [96.5, 1099.5], [95.5, 1099.5], [94.5, 1101.5], [94.5, 1102.5], [93.5, 1103.5], [93.5, 1105.5], [95.5, 1110.5]]}, {"id": "tx86d4", "submitted_by": "FlyingCow343", "name": "Y Ddraig Goch", "description": "Y Ddraig Goch (The Red Dragon) is the national flag of Wales", "website": "", "subreddit": "", "center": [611.5, 554.5], "path": [[608.5, 556.5], [608.5, 552.5], [614.5, 552.5], [614.5, 556.5]]}, {"id": "tx86ad", "submitted_by": "ostensacken", "name": "Chuck", "description": "Chuck is the partial owner of Sneed's Feed and Seed. After selling the store to Chuck, he mostly hangs out with Chuck on the porch.", "website": "", "subreddit": "/r/sneedposting", "center": [1757.5, 883.5], "path": [[1764.5, 893.5], [1756.5, 893.5], [1756.5, 890.5], [1755.5, 890.5], [1754.5, 891.5], [1753.5, 891.5], [1753.5, 890.5], [1753.5, 889.5], [1753.5, 888.5], [1752.5, 887.5], [1752.5, 881.5], [1751.5, 881.5], [1750.5, 880.5], [1749.5, 880.5], [1749.5, 877.5], [1750.5, 876.5], [1751.5, 875.5], [1752.5, 874.5], [1753.5, 874.5], [1754.5, 873.5], [1759.5, 873.5], [1760.5, 874.5], [1761.5, 875.5], [1763.5, 876.5], [1765.5, 876.5], [1765.5, 877.5], [1764.5, 878.5], [1762.5, 878.5], [1761.5, 879.5], [1761.5, 880.5], [1762.5, 880.5], [1762.5, 882.5], [1763.5, 882.5], [1764.5, 885.5], [1764.5, 886.5], [1763.5, 886.5], [1763.5, 888.5], [1764.5, 888.5], [1763.5, 890.5], [1762.5, 891.5], [1763.5, 892.5], [1764.5, 892.5]]}, {"id": "tx8658", "submitted_by": "rcmast3r", "name": "KSU EVT", "description": "Kennesaw State University's Electric Vehicle Team", "website": "https://ksuevt.com/", "subreddit": "", "center": [541.5, 404.5], "path": [[509.5, 400.5], [509.5, 400.5], [509.5, 399.5], [572.5, 399.5], [572.5, 408.5], [509.5, 408.5]]}, {"id": "tx85yd", "submitted_by": "Last_Ingenuity_2158", "name": "SAQ", "description": "Our liquor store in Quebec", "website": "https://www.saq.com/", "subreddit": "", "center": [1078.5, 1005.5], "path": [[1073.5, 999.5], [1083.5, 999.5], [1083.5, 1011.5], [1073.5, 1011.5], [1073.5, 999.5]]}, -{"id": "tx85ge", "submitted_by": "draxei", "name": "Eventyrslottet", "description": "This is one of the attractions in Hundrefossen a amusement park north of Lillehammer in Norway.", "website": "https://hunderfossen.no/", "subreddit": "", "center": [255.5, 109.5], "path": [[244.5, 123.5], [244.5, 97.5], [273.5, 95.5], [274.5, 128.5], [230.5, 126.5], [244.5, 90.5], [274.5, 92.5]]}, {"id": "tx85g0", "submitted_by": "Alas-I-Cannot-Swim", "name": "T", "description": "A community member reached out to the Outer Wilds discord and asked if they could make the letter T for their friend who was in the hospital. \nThe T was maintained for the duration of r/place. \nGet well, T!", "website": "", "subreddit": "/r/outerwilds", "center": [388.5, 948.5], "path": [[386.5, 945.5], [390.5, 945.5], [390.5, 950.5], [386.5, 950.5]]}, {"id": "tx8595", "submitted_by": "Zombieattackr", "name": "Former Calgary Flames", "description": "The Calgary Flames held this portion of the canvas. They had strong ties to CSGO, Froggy Chair, and Dota2 before being taken over by the Egyptian flag on the second day.", "website": "", "subreddit": "/r/CalgaryFlames", "center": [43.5, 137.5], "path": [[33.5, 147.5], [33.5, 127.5], [52.5, 127.5], [53.5, 147.5]]}, {"id": "tx852n", "submitted_by": "Tenant1", "name": "Bidoof", "description": "The Normal-type Plump Mouse Pok\u00e9mon introduced in the games Pok\u00e9mon Diamond & Pearl. A variety of factors like its common nature, its oft-used convenience as an 'HM Slave' in teams, and its goofy name have given it a memetic status and adoration from Pok\u00e9mon fans. Its heart-shaped nose shown here is not characteristic of its usual appearance.", "website": "https://bulbapedia.bulbagarden.net/wiki/Bidoof_(Pok%C3%A9mon)", "subreddit": "", "center": [569.5, 1480.5], "path": [[553.5, 1467.5], [549.5, 1471.5], [551.5, 1476.5], [546.5, 1480.5], [547.5, 1488.5], [555.5, 1500.5], [560.5, 1499.5], [560.5, 1497.5], [566.5, 1497.5], [568.5, 1499.5], [574.5, 1499.5], [573.5, 1496.5], [578.5, 1492.5], [580.5, 1495.5], [587.5, 1495.5], [590.5, 1465.5], [584.5, 1460.5], [577.5, 1459.5], [567.5, 1465.5], [558.5, 1469.5]]}, @@ -5670,22 +5220,18 @@ {"id": "tx84eb", "submitted_by": "S1R", "name": "The Cornfield", "description": "Land Granted to us from mooncord after the alliance formed in battle.", "website": "", "subreddit": "", "center": [1648.5, 940.5], "path": [[1645.5, 956.5], [1645.5, 919.5], [1648.5, 917.5], [1650.5, 932.5], [1649.5, 943.5], [1654.5, 942.5], [1654.5, 955.5], [1645.5, 956.5]]}, {"id": "tx84dc", "submitted_by": "Letartean", "name": "C.G.P Grey the penguin", "description": "A representation of the now deceased penguin of the Bristol Zoo that was sponsored by the Hello Internet podcast. His' was a tragic death.", "website": "https://www.bradyharanblog.com/blog/2015/5/11/cgp-grey-the-penguin", "subreddit": "/r/Hellointernet", "center": [85.5, 785.5], "path": [[80.5, 777.5], [80.5, 792.5], [89.5, 792.5], [89.5, 777.5]]}, {"id": "tx84d2", "submitted_by": "FlyingCow343", "name": "St Andrew's Cross", "description": "The National flag of Scotland", "website": "", "subreddit": "", "center": [603.5, 554.5], "path": [[600.5, 556.5], [600.5, 552.5], [606.5, 552.5], [606.5, 556.5]]}, -{"id": "tx84b7", "submitted_by": "leahspidey", "name": "hannahxxrose", "description": "Minecraft Twitch streamer hannahxxrose has her head placed amongst fellow DreamSMP members", "website": "https://www.twitch.tv/hannahxxrose", "subreddit": "/r/Hannahxxrose", "center": [0.5, 0.5], "path": []}, {"id": "tx849j", "submitted_by": "ostensacken", "name": "Al Sneed", "description": "Al Sneed is the owner of Sneed's Feed and Seed, the popular meme featured in Season 11 Episode 5 of The Simpsons.", "website": "", "subreddit": "/r/sneedposting", "center": [1775.5, 880.5], "path": [[1768.5, 893.5], [1769.5, 892.5], [1769.5, 891.5], [1770.5, 890.5], [1771.5, 889.5], [1771.5, 888.5], [1771.5, 887.5], [1770.5, 887.5], [1770.5, 886.5], [1769.5, 886.5], [1769.5, 885.5], [1768.5, 885.5], [1768.5, 883.5], [1767.5, 882.5], [1767.5, 881.5], [1768.5, 880.5], [1768.5, 876.5], [1768.5, 875.5], [1767.5, 874.5], [1766.5, 874.5], [1766.5, 873.5], [1765.5, 873.5], [1765.5, 871.5], [1766.5, 870.5], [1780.5, 870.5], [1781.5, 872.5], [1782.5, 873.5], [1782.5, 884.5], [1783.5, 888.5], [1782.5, 889.5], [1781.5, 890.5], [1780.5, 891.5], [1779.5, 890.5], [1779.5, 889.5], [1774.5, 889.5], [1773.5, 890.5], [1772.5, 891.5], [1771.5, 892.5], [1771.5, 893.5]]}, {"id": "tx847m", "submitted_by": "ProChameleons", "name": "ProChameleons' Fish", "description": "A fish made by u/ProChameleons and the Fish Cult subreddit", "website": "", "subreddit": "/r/FSSH", "center": [493.5, 903.5], "path": [[491.5, 902.5], [491.5, 904.5], [494.5, 904.5], [494.5, 902.5]]}, {"id": "tx83yp", "submitted_by": "AwesomePlaysAP", "name": "Nuker", "description": "The face of a nuker, an enemy in the ROBLOX game 'Minime's House: Nuked 2'", "website": "https://www.roblox.com/games/7274560382/Minimes-house-nuked-2-2X2-UPDATE", "subreddit": "", "center": [614.5, 1566.5], "path": [[612.5, 1561.5], [619.5, 1564.5], [617.5, 1571.5], [611.5, 1571.5], [608.5, 1561.5]]}, {"id": "tx83wv", "submitted_by": "Slipfix", "name": "Episode 137", "description": "Roman numerals for 137, which would (as of April 2022) be the next episode number if the Hello Internet podcast returns from its indefinite HIatus. Roman numerals are a running theme in the podcast.", "website": "http://www.hellointernet.fm/", "subreddit": "/r/HelloInternet", "center": [70.5, 828.5], "path": [[59.5, 827.5], [59.5, 829.5], [80.5, 829.5], [80.5, 827.5]]}, {"id": "tx83kd", "submitted_by": "keeper_of_fidra", "name": "Maple Syrup", "description": "Regardless of brand / producer, most maple syrup in Quebec comes in the same type of can.", "website": "", "subreddit": "", "center": [1025.5, 1061.5], "path": [[1016.5, 1051.5], [1023.5, 1049.5], [1031.5, 1049.5], [1034.5, 1052.5], [1034.5, 1073.5], [1016.5, 1073.5]]}, {"id": "tx83k5", "submitted_by": "CCheese3", "name": "Franco-Ontarian Flag", "description": "Flag of the French-speaking people of Ontario.", "website": "", "subreddit": "", "center": [1011.5, 982.5], "path": [[1006.5, 978.5], [1016.5, 978.5], [1016.5, 985.5], [1006.5, 985.5]]}, -{"id": "tx83ds", "submitted_by": "Drewsufer", "name": "St. Louis Arch", "description": "The Arch in St Louis Missouri - gateway to the west", "website": "", "subreddit": "", "center": [1841.5, 1857.5], "path": [[1826.5, 1867.5], [1855.5, 1866.5], [1851.5, 1852.5], [1846.5, 1844.5], [1840.5, 1841.5], [1834.5, 1848.5], [1832.5, 1854.5], [1829.5, 1861.5]]}, {"id": "tx832e", "submitted_by": "Last_Ingenuity_2158", "name": "Tipi", "description": "Conical tent used by some native peoples throughout North America", "website": "", "subreddit": "", "center": [941.5, 1068.5], "path": [[935.5, 1073.5], [935.5, 1071.5], [936.5, 1070.5], [936.5, 1069.5], [937.5, 1069.5], [937.5, 1067.5], [938.5, 1067.5], [938.5, 1065.5], [939.5, 1065.5], [939.5, 1063.5], [940.5, 1063.5], [940.5, 1062.5], [941.5, 1062.5], [941.5, 1060.5], [940.5, 1060.5], [939.5, 1057.5], [943.5, 1057.5], [941.5, 1060.5], [941.5, 1062.5], [942.5, 1062.5], [943.5, 1065.5], [944.5, 1067.5], [945.5, 1069.5], [946.5, 1070.5], [947.5, 1073.5], [935.5, 1073.5]]}, {"id": "tx830d", "submitted_by": "CCheese3", "name": "Acadian Flag", "description": "Flag of the French-speaking people of Nova Scotia, New Brunswick and Prince Edward Island.", "website": "", "subreddit": "", "center": [974.5, 978.5], "path": [[969.5, 974.5], [978.5, 974.5], [978.5, 981.5], [969.5, 981.5], [969.5, 974.5]]}, {"id": "tx82pt", "submitted_by": "phenomist", "name": "/r/PictureGame bird", "description": "/r/PictureGame is a subreddit where the goal is to find the answer (usually identifying the location) to a picture and the winner posts the next picture. Our subreddit logo is a picture of some mountains, a blue sky, green grass, and a question mark. The bird has become a symbol of the subreddit as a result of a user having that as their avatar (which is inspired by Mogura in Nichijou).", "website": "", "subreddit": "/r/PictureGame", "center": [917.5, 825.5], "path": [[908.5, 825.5], [910.5, 826.5], [911.5, 827.5], [911.5, 828.5], [912.5, 829.5], [912.5, 832.5], [913.5, 833.5], [913.5, 836.5], [914.5, 837.5], [914.5, 841.5], [915.5, 842.5], [915.5, 844.5], [916.5, 845.5], [916.5, 846.5], [918.5, 848.5], [920.5, 848.5], [921.5, 849.5], [925.5, 849.5], [926.5, 848.5], [927.5, 848.5], [929.5, 846.5], [928.5, 844.5], [927.5, 843.5], [927.5, 841.5], [926.5, 840.5], [926.5, 835.5], [925.5, 834.5], [925.5, 830.5], [924.5, 829.5], [924.5, 827.5], [923.5, 826.5], [923.5, 825.5], [921.5, 823.5], [920.5, 823.5], [920.5, 807.5], [919.5, 800.5], [909.5, 800.5], [909.5, 824.5], [908.5, 825.5]]}, {"id": "tx82nv", "submitted_by": "Hedemod", "name": "The First Serbian Flag", "description": "During its construction process there were multiple attempts from uneducated Ukraine sympathizers to turn the Serbian flag into Ukrainian flag due to it being misidentified as an Russian flag. French community came to aid with its members contributing to the flags survival. Aforementioned events led to construction of Tesla portrait as a way to distinguish the flag with this famous Serbian inventor. Another notable mention is conflict with Silksong community which was quickly solved with a peace treaty symbolized with shared hearts. (Same method was applied to commemorate the Serbo/French alliance)\n\n\n\n\n", "website": "", "subreddit": "", "center": [200.5, 364.5], "path": [[175.5, 343.5], [225.5, 343.5], [225.5, 385.5], [175.5, 385.5], [175.5, 362.5], [175.5, 343.5]]}, {"id": "tx82lw", "submitted_by": "WildMinchi", "name": "The Skephalo Flag", "description": "a flag that represents the youtubers BadBoyHalo and Skeppy", "website": "", "subreddit": "", "center": [1151.5, 1118.5], "path": [[1148.5, 1115.5], [1148.5, 1120.5], [1153.5, 1120.5], [1153.5, 1115.5]]}, {"id": "tx82jd", "submitted_by": "FlyingCow343", "name": "St George's cross", "description": "The National flag of England", "website": "", "subreddit": "", "center": [595.5, 554.5], "path": [[592.5, 556.5], [592.5, 552.5], [598.5, 552.5], [598.5, 556.5]]}, -{"id": "tx82fj", "submitted_by": "keeper_of_fidra", "name": "SAQ", "description": "Soci\u00e9t\u00e9 des alcools du Qu\u00e9bec - Quebec provincial liquor stores", "website": "saq.com", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "tx82ah", "submitted_by": "polybius1201", "name": "Beach Vapeoreon", "description": "A vapeoreon on the beach. This was part of r/pokemon's eevelutions project. Initially, this was next to 5up's leafling scarft area, and under a small Steve Suptic rat peeing. the pee enveloped the vapeoreon's area, and thus was transformed into a beach. After being destroyed by a polish streamer, beach vapeoreon was moved here with the help of the 5up community.", "website": "", "subreddit": "/r/pokemon", "center": [1986.5, 1286.5], "path": [[1973.5, 1272.5], [1973.5, 1300.5], [1999.5, 1300.5], [1999.5, 1272.5]]}, {"id": "tx827r", "submitted_by": "scpalpha", "name": "University at Buffalo", "description": "The logo for State University of New York at Buffalo", "website": "https://www.buffalo.edu/", "subreddit": "/r/UBreddit", "center": [1026.5, 218.5], "path": [[1024.5, 215.5], [1037.5, 215.5], [1037.5, 222.5], [1024.5, 222.5]]}, {"id": "tx8216", "submitted_by": "Fat_melt", "name": "Pixel art duck", "description": "What had originally been the Polish flag, was first raided by among us, with the characters being drawn all over the flag. Around this time, the Hoppou Foundation had declared war on among us and started to (unsuccessfully) try build a hoppou on the right side of the flag whilst battling other griefers as the left section of the flag was taken over by the portrait of Mehmet the concourer. The Hoppou was abandoned after only part of the face was built due to excessive griefing, and The place was quickly taken over by the pixel art of a duck, and the section was heavily defended until the end", "website": "", "subreddit": "", "center": [1925.5, 213.5], "path": [[1938.5, 192.5], [1937.5, 233.5], [1913.5, 233.5], [1913.5, 193.5]]}, {"id": "tx81qj", "submitted_by": "AdParking9347", "name": "Fantastic Contraption", "description": "Fantastic Contraption is a 2008 physics puzzle Flash game that received a Steam re-release in 2020. This is the game's icon, the clockwise wheel.", "website": "http://fantasticcontraption.com/original/", "subreddit": "", "center": [1645.5, 422.5], "path": [[1638.5, 423.5], [1638.5, 419.5], [1643.5, 415.5], [1646.5, 415.5], [1651.5, 419.5], [1651.5, 424.5], [1647.5, 428.5], [1643.5, 428.5], [1638.5, 423.5]]}, @@ -5695,7 +5241,7 @@ {"id": "tx80oz", "submitted_by": "Tertiary1234", "name": "808s Era Kanye", "description": "A small depiction of Kanye West from the era of his 2008 album \"808s and Heartbreak\". Beside him are a line of various colors, like on the cover of \"808s\".", "website": "https://i.pinimg.com/originals/da/03/4f/da034f2e7e2cd11d2d7567bef61e77f8.jpg", "subreddit": "/r/westsubever", "center": [1773.5, 1010.5], "path": [[1769.5, 1000.5], [1777.5, 1000.5], [1777.5, 1019.5], [1769.5, 1019.5], [1769.5, 1000.5]]}, {"id": "tx80ge", "submitted_by": "pitittico", "name": "Erobb221", "description": "That Ellie girl, in the game I was playing, bro, if she 15 I'm 15 ya feel me", "website": "https://www.youtube.com/watch?v=4gnzrWGFBvs", "subreddit": "/r/emoney", "center": [638.5, 926.5], "path": [[621.5, 909.5], [655.5, 909.5], [655.5, 943.5], [622.5, 943.5], [622.5, 911.5], [621.5, 909.5]]}, {"id": "tx805a", "submitted_by": "Last_Ingenuity_2158", "name": "Traffic cones", "description": "Symbol of our terrible roads", "website": "", "subreddit": "", "center": [993.5, 1069.5], "path": [[903.5, 1072.5], [1082.5, 1072.5], [1082.5, 1066.5], [903.5, 1066.5]]}, -{"id": "tx7zyv", "submitted_by": "moistmaster690", "name": "midsummer pole", "description": "In Sweden there is a tradition of erecting a decorated pole during midsummer which people dance and sing around.", "website": "", "subreddit": "", "center": [688.5, 64.5], "path": [[690.5, 90.5], [690.5, 63.5], [696.5, 64.5], [691.5, 68.5], [694.5, 74.5], [696.5, 74.5], [699.5, 73.5], [702.5, 71.5], [702.5, 66.5], [700.5, 64.5], [704.5, 62.5], [704.5, 62.5], [704.5, 59.5], [690.5, 46.5], [686.5, 46.5], [672.5, 61.5], [672.5, 63.5], [677.5, 64.5], [673.5, 69.5], [673.5, 72.5], [677.5, 75.5], [680.5, 74.5], [683.5, 70.5], [682.5, 67.5], [680.5, 64.5], [685.5, 64.5], [685.5, 92.5], [690.5, 93.5]]}, +{"id": "tx7zyv", "submitted_by": "moistmaster690", "name": "Midsummer pole", "description": "In Sweden there is a tradition of erecting a decorated pole during midsummer which people dance and sing around.", "website": "https://en.wikipedia.org/wiki/Maypole", "subreddit": "/r/sweden", "center": [688.5, 64.5], "path": [[690.5, 90.5], [690.5, 63.5], [696.5, 64.5], [691.5, 68.5], [694.5, 74.5], [696.5, 74.5], [699.5, 73.5], [702.5, 71.5], [702.5, 66.5], [700.5, 64.5], [704.5, 62.5], [704.5, 62.5], [704.5, 59.5], [690.5, 46.5], [686.5, 46.5], [672.5, 61.5], [672.5, 63.5], [677.5, 64.5], [673.5, 69.5], [673.5, 72.5], [677.5, 75.5], [680.5, 74.5], [683.5, 70.5], [682.5, 67.5], [680.5, 64.5], [685.5, 64.5], [685.5, 92.5], [690.5, 93.5]]}, {"id": "tx7zt6", "submitted_by": "uberlydian", "name": "Laval", "description": "Canadian city north of Montreal, QC, Canada. Montreal's largest suburb.", "website": "https://www.laval.ca/Pages/Fr/accueil.aspx", "subreddit": "/r/laval", "center": [917.5, 1063.5], "path": [[904.5, 1053.5], [943.5, 1053.5], [898.5, 1077.5], [898.5, 1077.5], [900.5, 1064.5], [903.5, 1056.5], [944.5, 1053.5], [916.5, 1079.5], [909.5, 1078.5], [900.5, 1056.5]]}, {"id": "tx7zsv", "submitted_by": "Nyveon", "name": "Chad/CaDCC", "description": "Chad: The friendly red panda mascot of the Computer Science student council at the University of Chile (CaDCC) in the foreground. The colors of the logo in the background.", "website": "https://cadcc.cl/", "subreddit": "", "center": [1247.5, 1642.5], "path": [[1240.5, 1639.5], [1240.5, 1644.5], [1254.5, 1644.5], [1254.5, 1639.5]]}, {"id": "tx7zs5", "submitted_by": "Ruminiuss", "name": "N Deluxe Community", "description": "the flag of the discord n deluxe community, , which represents the 8 regions and the main color, the group was originated by the N Deluxe channel and over time has taken freedom of action and autonomy as a community.", "website": "", "subreddit": "", "center": [1898.5, 494.5], "path": [[1893.5, 490.5], [1903.5, 490.5], [1903.5, 498.5], [1893.5, 498.5], [1893.5, 491.5]]}, @@ -5716,60 +5262,47 @@ {"id": "tx7ws1", "submitted_by": "Speed_Wielder", "name": "Paruko", "description": "Custom pixel art of Paruko, a character from the Splatoon franchise. Paruko is the vocalist and synth player of The Chirpy Chips, (stylized as ABXY in Japan,) a splatband that canonically performs some of the game's multiplayer mode music. Before her official name was confirmed, she also went by the fan name 'Glenna Nalira'. Built and maintained with help from BKFAD, Duck World, and r/Splatoon.", "website": "", "subreddit": "/r/Splatoon", "center": [905.5, 1450.5], "path": [[891.5, 1450.5], [891.5, 1447.5], [893.5, 1445.5], [894.5, 1445.5], [895.5, 1444.5], [896.5, 1444.5], [897.5, 1443.5], [898.5, 1443.5], [898.5, 1442.5], [899.5, 1441.5], [899.5, 1440.5], [902.5, 1437.5], [908.5, 1437.5], [912.5, 1441.5], [912.5, 1444.5], [913.5, 1444.5], [914.5, 1445.5], [914.5, 1446.5], [915.5, 1447.5], [915.5, 1449.5], [914.5, 1450.5], [914.5, 1451.5], [917.5, 1454.5], [917.5, 1455.5], [916.5, 1456.5], [915.5, 1456.5], [914.5, 1457.5], [913.5, 1458.5], [913.5, 1460.5], [912.5, 1461.5], [911.5, 1461.5], [910.5, 1462.5], [906.5, 1462.5], [905.5, 1461.5], [904.5, 1461.5], [903.5, 1460.5], [902.5, 1460.5], [901.5, 1459.5], [898.5, 1459.5], [896.5, 1457.5], [896.5, 1456.5], [895.5, 1455.5], [895.5, 1453.5], [894.5, 1452.5], [894.5, 1450.5]]}, {"id": "tx7wpp", "submitted_by": "Emerald_Pick", "name": "FOSO", "description": "FOSO is a men's floor in Gerig Hall at Taylor University in Upland, Indiana. FOSO is short for \"Forth South,\" since Gerig Hall was previously called South Hall. \n\nPeace, Love, FOSO.", "website": "", "subreddit": "", "center": [10.5, 698.5], "path": [[0.5, 695.5], [20.5, 695.5], [20.5, 701.5], [0.5, 701.5]]}, {"id": "tx7win", "submitted_by": "phoenixprophet", "name": "Bob(s)", "description": "A pattern depicting Bob, a lazy cat villager from Animal Crossing, on a trans flag. Coordinated by the instagram meme account Big_Chungles.", "website": "https://instagram.com/big_chungles", "subreddit": "", "center": [1060.5, 1906.5], "path": [[1041.5, 1904.5], [1078.5, 1904.5], [1081.5, 1908.5], [1041.5, 1908.5]]}, -{"id": "tx7wgk", "submitted_by": "Clarky1979", "name": "VintageBeef", "description": "Member of the Hermitcraft Minecraft Server. Also known for being a member of Mindcrack in the past as well as Team Canada with Etho and PauseUnpause", "website": "https://hermitcraft.com/", "subreddit": "/r/hermitcraft", "center": [900.5, 611.5], "path": [[896.5, 607.5], [896.5, 614.5], [904.5, 614.5], [904.5, 608.5], [904.5, 607.5]]}, +{"id": "tx7wgk", "submitted_by": "Clarky1979", "name": "VintageBeef", "description": "Member of the Hermitcraft Minecraft Server. Also known for being a member of Mindcrack in the past as well as Team Canada with Etho and PauseUnpause", "website": "https://www.youtube.com/user/VintageBeef/", "subreddit": "/r/hermitcraft", "center": [900.5, 611.5], "path": [[896.5, 607.5], [896.5, 614.5], [904.5, 614.5], [904.5, 608.5], [904.5, 607.5]]}, {"id": "tx7w3q", "submitted_by": "BasedRequiem", "name": "Narcor", "description": "A pixel art depiction of one of Starscape's several ores, Narcor.", "website": "https://www.roblox.com/games/679715583/Starscape-Beta", "subreddit": "/r/starscaperoblox", "center": [1638.5, 837.5], "path": [[1633.5, 833.5], [1643.5, 833.5], [1643.5, 841.5], [1633.5, 841.5]]}, -{"id": "tx7vzu", "submitted_by": "wailingduck", "name": "Liberty Leading the People", "description": "This is a famous Romantic painting created by the French painter Eug\u00e8ne Delacroix. It commemorates the July Revolution of 1830. The figure of Liberty - often considered a symbol of France - holds the tricolor as she leads the people forward.", "website": "", "subreddit": "/r/placefrance", "center": [206.5, 1725.5], "path": [[167.5, 1758.5], [167.5, 1695.5], [246.5, 1697.5], [247.5, 1750.5], [167.5, 1757.5]]}, +{"id": "tx7vzu", "submitted_by": "wailingduck", "name": "Liberty Leading the People", "description": "This is a famous Romantic painting created by the French painter Eug\u00e8ne Delacroix. It commemorates the July Revolution of 1830. The figure of Liberty - often considered a symbol of France - holds the tricolor as she leads the people forward.", "website": "https://en.wikipedia.org/wiki/Liberty_Leading_the_People", "subreddit": "/r/placefrance", "center": [206.5, 1725.5], "path": [[167.5, 1758.5], [167.5, 1695.5], [246.5, 1697.5], [247.5, 1750.5], [167.5, 1757.5]]}, {"id": "tx7vq8", "submitted_by": "The_McTasty", "name": "Split Circle of the OPA", "description": "From the Sci-Fi book and television series The Expanse by James S.A. Corey(pen name of authors Daniel Abraham and Ty Franck). The Split Circle of the OPA is a symbol used by the Outer Planets Alliance, which is a loosely affiliated network of smaller organizations. The OPA is a combination of a labor union and advocacy group, terrorist organization(if you listen to the media of Earth and Mars), and a newly beginning government of the Outer Planets. It represents Belters, who are the decedents of workers sent out to the Outer Planets to work and build the infrastructure of the solar system but are not granted self governance by the inner planets Earth and Mars. It is the goal of the OPA to change that. \nPart of a larger piece by the Sci-Fi Fantasy Alliance.", "website": "", "subreddit": "/r/SFFA, /r/TheExpanse", "center": [1633.5, 1417.5], "path": [[1630.5, 1414.5], [1628.5, 1416.5], [1629.5, 1421.5], [1637.5, 1422.5], [1639.5, 1416.5], [1636.5, 1413.5], [1631.5, 1413.5]]}, {"id": "tx7vjy", "submitted_by": "znienacka", "name": "Tayto's Mascot", "description": "A mascot of Tayto Crisps - a beloved Irish brand. According to Wikipedia, Tayto produced the world's first seasoned chips: Cheese & Onion and Salt & Vinegar.", "website": "https://taytocrisps.ie/", "subreddit": "", "center": [141.5, 587.5], "path": [[132.5, 575.5], [129.5, 579.5], [131.5, 583.5], [130.5, 588.5], [128.5, 590.5], [128.5, 598.5], [129.5, 606.5], [144.5, 606.5], [143.5, 604.5], [144.5, 600.5], [146.5, 592.5], [152.5, 585.5], [157.5, 576.5], [157.5, 570.5], [149.5, 570.5], [141.5, 575.5], [132.5, 575.5]]}, -{"id": "tx7vhc", "submitted_by": "jjfajen", "name": "American Bison", "description": "In 2016, the American bison became the national mammal of the United States. Among many Native American tribes, especially the Plains Indians, the bison is considered a sacred animal and religious symbol.", "website": "", "subreddit": "/r/americanflaginplace", "center": [1842.5, 1863.5], "path": [[1844.5, 1867.5], [1844.5, 1865.5], [1845.5, 1865.5], [1847.5, 1867.5], [1849.5, 1867.5], [1849.5, 1865.5], [1845.5, 1860.5], [1844.5, 1860.5], [1843.5, 1859.5], [1841.5, 1859.5], [1840.5, 1858.5], [1836.5, 1862.5], [1835.5, 1862.5], [1835.5, 1864.5], [1836.5, 1865.5], [1837.5, 1866.5], [1838.5, 1865.5], [1838.5, 1867.5], [1840.5, 1867.5], [1840.5, 1866.5], [1842.5, 1866.5], [1842.5, 1867.5]]}, +{"id": "tx7vhc", "submitted_by": "jjfajen", "name": "American bison", "description": "In 2016, the American bison became the national mammal of the United States. Among many Native American tribes, especially the Plains Indians, the bison is considered a sacred animal and religious symbol.", "website": "https://en.wikipedia.org/wiki/American_bison", "subreddit": "/r/americanflaginplace", "center": [1842.5, 1863.5], "path": [[1844.5, 1867.5], [1844.5, 1865.5], [1845.5, 1865.5], [1847.5, 1867.5], [1849.5, 1867.5], [1849.5, 1865.5], [1845.5, 1860.5], [1844.5, 1860.5], [1843.5, 1859.5], [1841.5, 1859.5], [1840.5, 1858.5], [1836.5, 1862.5], [1835.5, 1862.5], [1835.5, 1864.5], [1836.5, 1865.5], [1837.5, 1866.5], [1838.5, 1865.5], [1838.5, 1867.5], [1840.5, 1867.5], [1840.5, 1866.5], [1842.5, 1866.5], [1842.5, 1867.5]]}, {"id": "tx7vdo", "submitted_by": "BasedRequiem", "name": "Stratos", "description": "The old/retro version of the game's starter ship. The stratos. It holds a special place in the community.", "website": "https://www.roblox.com/games/679715583/Starscape-Beta", "subreddit": "/r/starscaperoblox", "center": [1685.5, 837.5], "path": [[1679.5, 832.5], [1691.5, 832.5], [1691.5, 842.5], [1679.5, 842.5]]}, -{"id": "tx7us7", "submitted_by": "Liv_kodocha-o-o", "name": "Inuyasha", "description": "Inuyasha, the name of the main character in the anime Inuyasha.", "website": "", "subreddit": "/r/Inuyasha", "center": [1582.5, 38.5], "path": [[1568.5, 35.5], [1568.5, 40.5], [1598.5, 40.5], [1599.5, 34.5], [1568.5, 34.5], [1568.5, 41.5], [1599.5, 41.5], [1599.5, 41.5]]}, {"id": "tx7uop", "submitted_by": "Efficient-Roof-6797", "name": "Kevin Lafontaine-Durand", "description": "2nd Territory of the ASS community by the Quebec Streamer DomCasse on Twitch. ---- 2e T\u00e9rritoire de la communaut\u00e9 CUL par le Streamer Qu\u00e9b\u00e9cois DomCasse sur Twitch.", "website": "", "subreddit": "", "center": [894.5, 1045.5], "path": [[886.5, 1017.5], [886.5, 1072.5], [901.5, 1072.5], [901.5, 1017.5]]}, {"id": "tx7um2", "submitted_by": "E1eventeen", "name": "Wentworth Institute of Technology", "description": "Flag with the logo for the Wentworth Institute of Technology, located in Boston Massachusetts. Wentworth offers bachelor's degrees in 18 engineering, technology, design and management majors.", "website": "https://wit.edu/", "subreddit": "/r/wentworth", "center": [305.5, 1559.5], "path": [[300.5, 1554.5], [310.5, 1554.5], [310.5, 1564.5], [300.5, 1564.5]]}, {"id": "tx7uky", "submitted_by": "theGoddessGaia", "name": "lavender flower", "description": "a tiny flower contributed by mar\u00eda. it is very difficult to contribute art by yourself, but this one survived, after being rebuilt in many different places while r/Place went on.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": [[1854.5, 110.5], [1854.5, 111.5], [1854.5, 112.5], [1854.5, 111.5], [1853.5, 111.5], [1854.5, 111.5], [1855.5, 111.5], [1854.5, 111.5], [1854.5, 111.5]]}, {"id": "tx7ukl", "submitted_by": "ali_b_free", "name": "BABOLO", "description": "best and most famous persian streaming team on twitch", "website": "https://www.twitch.tv/team/babolo", "subreddit": "/r/admiral_tidebringer", "center": [1783.5, 984.5], "path": [[1770.5, 964.5], [1781.5, 964.5], [1781.5, 969.5], [1789.5, 969.5], [1789.5, 975.5], [1799.5, 975.5], [1799.5, 999.5], [1770.5, 999.5], [1770.5, 964.5]]}, -{"id": "tx7uir", "submitted_by": "tyttuutface", "name": "Apple Inc. Rainbow Logo", "description": "Apple Inc.'s rainbow logo, used from 1977-1998.", "website": "apple.com", "subreddit": "", "center": [1022.5, 437.5], "path": [[1018.5, 434.5], [1022.5, 431.5], [1024.5, 431.5], [1024.5, 433.5], [1026.5, 435.5], [1026.5, 440.5], [1025.5, 441.5], [1019.5, 441.5], [1018.5, 440.5], [1018.5, 434.5]]}, +{"id": "tx7uir", "submitted_by": "tyttuutface", "name": "Apple Inc. Rainbow Logo", "description": "Apple Inc.'s rainbow logo, used from 1977-1998.", "website": "https://apple.com", "subreddit": "", "center": [1022.5, 437.5], "path": [[1018.5, 434.5], [1022.5, 431.5], [1024.5, 431.5], [1024.5, 433.5], [1026.5, 435.5], [1026.5, 440.5], [1025.5, 441.5], [1019.5, 441.5], [1018.5, 440.5], [1018.5, 434.5]]}, {"id": "tx7ugg", "submitted_by": "Last_Ingenuity_2158", "name": "DomCasse", "description": "Streamer of Twitch Quebec", "website": "https://www.twitch.tv/domcasse", "subreddit": "", "center": [894.5, 1045.5], "path": [[886.5, 1017.5], [901.5, 1017.5], [901.5, 1072.5], [886.5, 1072.5], [886.5, 1017.5]]}, -{"id": "tx7ufu", "submitted_by": "Clouds115", "name": "The One World trade Center", "description": "The One world Trade Center is the tallest building in the U.S, and was built after 9/11 when when the Twin Towers fell.", "website": "https://en.wikipedia.org/wiki/One_World_Trade_Center#Owners_and_tenants", "subreddit": "", "center": [1960.5, 1832.5], "path": [[1952.5, 1858.5], [1952.5, 1843.5], [1953.5, 1843.5], [1954.5, 1823.5], [1955.5, 1803.5], [1961.5, 1800.5], [1960.5, 1800.5], [1959.5, 1773.5], [1960.5, 1773.5], [1961.5, 1801.5], [1962.5, 1802.5], [1964.5, 1801.5], [1965.5, 1802.5], [1967.5, 1859.5], [1967.5, 1866.5]]}, {"id": "tx7ttr", "submitted_by": "BasedRequiem", "name": "TRIA.OS", "description": "A small ROBLOX game similar to the Flood Escape series, with a unique style.", "website": "https://www.roblox.com/games/6311279644/TRIA-os-0-6-1", "subreddit": "", "center": [576.5, 1094.5], "path": [[563.5, 1083.5], [588.5, 1083.5], [588.5, 1105.5], [563.5, 1105.5], [563.5, 1092.5], [563.5, 1087.5], [563.5, 1086.5], [563.5, 1085.5]]}, -{"id": "tx7tmi", "submitted_by": "Neloteck", "name": "nlinspct", "description": "Initialy french flag. The window's community who did this ask for french to reduce their flag for this bar. Streamers and french community accepted for the beauty of art", "website": "", "subreddit": "", "center": [122.5, 1985.5], "path": [[2.5, 1970.5], [250.5, 1973.5], [250.5, 1998.5], [2.5, 2000.5]]}, -{"id": "tx7thn", "submitted_by": "asisman1", "name": "Whole Lotta Red Album Cover", "description": "The album cover to Playboi Carti's \"Whole Lotta Red\". Undoubtedly one of the most contested areas in all of /r/place, this work of art was vandalized constantly by tens of billions of people at any given moment, the most prevalent attacks being from washed up \"streamer\" Ladin Loss - whose sister has an OnlyFans.", "website": "https://onlyfans.com/naomziesross", "subreddit": "/r/playboicarti", "center": [73.5, 498.5], "path": [[53.5, 468.5], [53.5, 528.5], [92.5, 528.5], [92.5, 468.5], [53.5, 468.5]]}, {"id": "tx7tgt", "submitted_by": "Rickmaster2002", "name": "April 25th Bridge", "description": "This Bridge was built in an agreement with The GME people to make their stock line go up, the portuguese community was creative enough to make the first bridge in r/Place, and then was copied many times, it is also inspired by the bridge that connects the South Margine of Tajo River to Lisbon, named afther the day of liberty in Portugal.", "website": "", "subreddit": "/r/portugal", "center": [1073.5, 328.5], "path": [[1048.5, 366.5], [1039.5, 365.5], [1045.5, 358.5], [1055.5, 345.5], [1063.5, 330.5], [1069.5, 317.5], [1070.5, 309.5], [1079.5, 308.5], [1086.5, 300.5], [1094.5, 301.5], [1092.5, 311.5], [1095.5, 308.5], [1100.5, 314.5], [1046.5, 366.5]]}, -{"id": "tx7t7m", "submitted_by": "DOVARKX", "name": "Diogenes", "description": "Diogenes from getting over it as a collaboration between a discord server named \"put dio on r/place\" and Place Pogo", "website": "https://discord.gg/dCZbyGwfqW", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx7t4r", "submitted_by": "bowsniper", "name": "/r/xPowers Banner", "description": "r/xPowers is a hub subreddit established and utilized by the broader xPowers genre, a network of roleplaying games on Reddit in which players take control of nations/factions in a variety of different settings. The globe and the compass rose were chosen as unifying symbols for the community.\n \nWas built with participation from r/GlobalPowers, r/Geosim, r/ColdWarPowers, r/EmpirePowers, r/HistoricalWorldPowers and more, with support from Calamity and Senko.", "website": "", "subreddit": "/r/xPowers", "center": [884.5, 1485.5], "path": [[880.5, 1459.5], [880.5, 1459.5], [880.5, 1459.5], [888.5, 1459.5], [888.5, 1511.5], [880.5, 1511.5], [880.5, 1459.5]]}, {"id": "tx7t2z", "submitted_by": "Last_Ingenuity_2158", "name": "Infoman", "description": "Logo of the satirical television news show, hosted by Jean-Ren\u00e9 Dufort", "website": "https://ici.radio-canada.ca/tele/infoman/site", "subreddit": "", "center": [1070.5, 1023.5], "path": [[1060.5, 1022.5], [1065.5, 1017.5], [1075.5, 1017.5], [1079.5, 1022.5], [1070.5, 1031.5], [1069.5, 1031.5], [1061.5, 1023.5], [1061.5, 1021.5]]}, {"id": "tx7skk", "submitted_by": "zevage1", "name": "Nah Nah Nah", "description": "Nah Nah Nah is a song released by Kanye West during his 2020 presidential run. It was deleted from all streaming services in 2021, shortly before the release of Donda, his 10th studio album. Fans are divided about the quality of the song, but it is still a well known reference/meme within the fanbase.", "website": "", "subreddit": "/r/WestSubEver", "center": [30.5, 782.5], "path": [[13.5, 766.5], [47.5, 766.5], [47.5, 798.5], [14.5, 798.5]]}, {"id": "tx7sfo", "submitted_by": "GoldenDispenser09", "name": "Saint Sophia Cathedral", "description": "The Saint Sophia Cathedral is located in Kyiv, the capital of Ukraine. Its construction began in the 11th century AD and it's now considered one of the Seven Wonders of Ukraine.", "website": "", "subreddit": "/r/placeukraine", "center": [359.5, 233.5], "path": [[359.5, 201.5], [358.5, 202.5], [358.5, 203.5], [357.5, 203.5], [357.5, 210.5], [356.5, 210.5], [356.5, 211.5], [355.5, 211.5], [355.5, 212.5], [354.5, 212.5], [354.5, 219.5], [355.5, 219.5], [355.5, 221.5], [354.5, 221.5], [354.5, 222.5], [353.5, 222.5], [353.5, 223.5], [352.5, 223.5], [352.5, 224.5], [351.5, 224.5], [351.5, 225.5], [350.5, 225.5], [350.5, 231.5], [351.5, 231.5], [351.5, 233.5], [348.5, 233.5], [347.5, 234.5], [347.5, 237.5], [348.5, 237.5], [348.5, 251.5], [370.5, 251.5], [370.5, 237.5], [371.5, 237.5], [371.5, 233.5], [367.5, 233.5], [367.5, 231.5], [368.5, 231.5], [368.5, 225.5], [367.5, 225.5], [367.5, 224.5], [366.5, 224.5], [366.5, 223.5], [365.5, 223.5], [365.5, 222.5], [364.5, 222.5], [364.5, 221.5], [363.5, 221.5], [363.5, 219.5], [364.5, 219.5], [364.5, 212.5], [363.5, 212.5], [363.5, 211.5], [362.5, 211.5], [362.5, 210.5], [361.5, 210.5], [361.5, 203.5], [360.5, 202.5], [359.5, 202.5], [359.5, 201.5]]}, {"id": "tx7sc3", "submitted_by": "Adhesive_Hooks", "name": "Joker Yoda", "description": "Joker Yoda.", "website": "", "subreddit": "", "center": [792.5, 1570.5], "path": [[779.5, 1561.5], [779.5, 1578.5], [804.5, 1578.5], [804.5, 1561.5], [800.5, 1561.5], [779.5, 1561.5]]}, -{"id": "tx7s5g", "submitted_by": "holtafd", "name": "Tesla Logo", "description": "attempt at tesla logo", "website": "https://www.reddit.com/r/teslamotors/", "subreddit": "/r/teslamotors", "center": [862.5, 1596.5], "path": [[845.5, 1580.5], [879.5, 1580.5], [879.5, 1612.5], [845.5, 1612.5]]}, -{"id": "tx7s32", "submitted_by": "LeftEyeHole", "name": "Hypertrance", "description": "A trans-led community that creates NEOY2K 3D animations with music production. They aim to provide people the ability to earn a living off of their creative work.", "website": "", "subreddit": "", "center": [770.5, 460.5], "path": [[753.5, 462.5], [753.5, 458.5], [786.5, 458.5], [786.5, 462.5]]}, {"id": "tx7rxh", "submitted_by": "FlyingFaller", "name": "UIUC", "description": "The University of Illinois Urbana Champaign logo.", "website": "https://illinois.edu/", "subreddit": "/r/UIUC", "center": [189.5, 619.5], "path": [[174.5, 609.5], [174.5, 629.5], [200.5, 629.5], [200.5, 627.5], [201.5, 627.5], [201.5, 625.5], [202.5, 625.5], [203.5, 624.5], [204.5, 623.5], [205.5, 623.5], [205.5, 621.5], [204.5, 621.5], [204.5, 615.5], [204.5, 614.5], [203.5, 614.5], [203.5, 610.5], [202.5, 610.5], [202.5, 609.5]]}, {"id": "tx7r9v", "submitted_by": "ConstructionNo3397", "name": "Aroyitt", "description": "Aroyitt the best Spanish streamer, able to tame a Rex with a boomerang and in the image representing her community \"Jamon\" our god.", "website": "https://www.twitch.tv/aroyitt", "subreddit": "/r/Aroyitt", "center": [1987.5, 1416.5], "path": [[1998.5, 1403.5], [1999.5, 1429.5], [1975.5, 1429.5], [1975.5, 1403.5]]}, -{"id": "tx7r9a", "submitted_by": "_welshie_", "name": "Giant's Causeway", "description": "Represented here is the Giant's Causeway, a set of basalt pillars on the northern coast of the island of Ireland.", "website": "en.wikipedia.org/wiki/Giant's_Causeway", "subreddit": "/r/PlaceIreland", "center": [152.5, 775.5], "path": [[143.5, 780.5], [143.5, 791.5], [154.5, 791.5], [154.5, 780.5], [158.5, 772.5], [165.5, 767.5], [168.5, 766.5], [167.5, 763.5], [165.5, 763.5], [161.5, 763.5], [161.5, 761.5], [157.5, 761.5], [145.5, 769.5], [142.5, 774.5], [142.5, 777.5], [145.5, 779.5], [147.5, 782.5], [144.5, 782.5]]}, +{"id": "tx7r9a", "submitted_by": "_welshie_", "name": "Giant's Causeway", "description": "Represented here is the Giant's Causeway, a set of basalt pillars on the northern coast of the island of Ireland.", "website": "https://en.wikipedia.org/wiki/Giant's_Causeway", "subreddit": "/r/PlaceIreland", "center": [152.5, 775.5], "path": [[143.5, 780.5], [143.5, 791.5], [154.5, 791.5], [154.5, 780.5], [158.5, 772.5], [165.5, 767.5], [168.5, 766.5], [167.5, 763.5], [165.5, 763.5], [161.5, 763.5], [161.5, 761.5], [157.5, 761.5], [145.5, 769.5], [142.5, 774.5], [142.5, 777.5], [145.5, 779.5], [147.5, 782.5], [144.5, 782.5]]}, {"id": "tx7r6t", "submitted_by": "Viken_1", "name": "Empanada and Red Wine", "description": "A pixel art of two iconics foods from Chile", "website": "", "subreddit": "/r/chile", "center": [260.5, 491.5], "path": [[245.5, 498.5], [260.5, 479.5], [262.5, 479.5], [270.5, 488.5], [270.5, 498.5], [245.5, 498.5]]}, {"id": "tx7r3c", "submitted_by": "orc0909", "name": "Jacksonville Jaguars", "description": "Displays symbols representing the Jacksonville Jaguars and the area they come from. the Jaguars head is the logo of the team. 904 is the area code of the city, and DUUUVAL is a chant that is also the name of the county Jacksonville which are both incorporated so the city's limits are also the county's limits. Also attacked by Ecuador and destroyed by Poland. Friends with Celeste Heart and Oneshot Sun Lightbulb.", "website": "", "subreddit": "/r/jaguars", "center": [1655.5, 569.5], "path": [[1687.5, 566.5], [1689.5, 568.5], [1677.5, 568.5], [1677.5, 580.5], [1638.5, 580.5], [1638.5, 551.5], [1650.5, 551.5], [1650.5, 559.5], [1655.5, 564.5], [1657.5, 566.5], [1658.5, 566.5], [1658.5, 567.5], [1661.5, 567.5], [1661.5, 566.5], [1668.5, 560.5], [1669.5, 560.5], [1670.5, 561.5], [1667.5, 563.5], [1667.5, 566.5], [1669.5, 568.5], [1670.5, 568.5], [1671.5, 569.5], [1672.5, 569.5], [1675.5, 566.5], [1676.5, 567.5], [1686.5, 567.5]]}, {"id": "tx7r0c", "submitted_by": "Guardsman_Miku", "name": "Warhammer Dreadnought", "description": "Space Marine Dreadnought from the table top game Warhammer 40,000", "website": "", "subreddit": "", "center": [1871.5, 1236.5], "path": [[1856.5, 1236.5], [1856.5, 1231.5], [1858.5, 1229.5], [1883.5, 1229.5], [1883.5, 1249.5], [1879.5, 1249.5], [1877.5, 1249.5], [1879.5, 1247.5], [1881.5, 1247.5], [1881.5, 1245.5], [1879.5, 1244.5], [1879.5, 1243.5], [1880.5, 1242.5], [1880.5, 1239.5], [1875.5, 1234.5], [1873.5, 1234.5], [1873.5, 1235.5], [1874.5, 1236.5], [1872.5, 1236.5], [1872.5, 1237.5], [1871.5, 1238.5], [1870.5, 1239.5], [1870.5, 1242.5], [1871.5, 1243.5], [1871.5, 1244.5], [1869.5, 1246.5], [1870.5, 1247.5], [1873.5, 1249.5], [1866.5, 1249.5], [1866.5, 1236.5]]}, {"id": "tx7qzk", "submitted_by": "patatatatatatatato", "name": "Crow with worm", "description": "A crow made by members of r/crowbro", "website": "", "subreddit": "/r/crowbro", "center": [1762.5, 996.5], "path": [[1765.5, 991.5], [1763.5, 993.5], [1762.5, 993.5], [1761.5, 994.5], [1756.5, 995.5], [1754.5, 997.5], [1761.5, 997.5], [1761.5, 998.5], [1768.5, 998.5], [1768.5, 995.5], [1766.5, 993.5], [1763.5, 993.5]]}, {"id": "tx7qav", "submitted_by": "WackyPinion", "name": "SMB2 Mario", "description": "Mario's sprite from the game Super Mario Bros. 2", "website": "", "subreddit": "/r/Mario", "center": [922.5, 1516.5], "path": [[920.5, 1507.5], [920.5, 1508.5], [919.5, 1508.5], [918.5, 1509.5], [917.5, 1510.5], [916.5, 1511.5], [916.5, 1512.5], [915.5, 1512.5], [915.5, 1517.5], [916.5, 1517.5], [917.5, 1518.5], [917.5, 1519.5], [926.5, 1526.5], [927.5, 1526.5], [927.5, 1525.5], [928.5, 1525.5], [928.5, 1522.5], [927.5, 1521.5], [925.5, 1521.5], [925.5, 1519.5], [925.5, 1518.5], [927.5, 1518.5], [927.5, 1517.5], [929.5, 1517.5], [928.5, 1515.5], [927.5, 1514.5], [926.5, 1514.5], [925.5, 1514.5], [925.5, 1512.5], [927.5, 1512.5], [926.5, 1511.5], [926.5, 1510.5], [925.5, 1510.5], [925.5, 1508.5], [924.5, 1508.5], [924.5, 1507.5], [920.5, 1507.5]]}, {"id": "tx7q95", "submitted_by": "ethanx111", "name": "State of Firestone", "description": "A Roleplay group on Roblox owned by FedoramasterB98", "website": "https://www.roblox.com/groups/2803360/State-of-Firestone#!/about", "subreddit": "", "center": [331.5, 1230.5], "path": [[320.5, 1226.5], [341.5, 1226.5], [341.5, 1234.5], [320.5, 1234.5]]}, -{"id": "tx7q3r", "submitted_by": "Targed1", "name": "Mr. Krabs Pog", "description": "A combination of the fictional animated character from the TV show SpongeBob SquarePants, Mr. Krabs, and the Poggers face/PogChamp emote commonly used on the streaming platform Twitch.", "website": "", "subreddit": "/r/spongebob", "center": [708.5, 405.5], "path": [[699.5, 399.5], [717.5, 399.5], [717.5, 411.5], [699.5, 411.5]]}, +{"id": "tx7q3r", "submitted_by": "Ech0Fighter", "name": "velkogPoggers", "description": "velkogPoggers, commonly known as Koggers, is an emote from Twitch streamer Velkog. The emote is a depiction of a Mr. Krabs like crab making a pog face. Created by the members of the velkord discord community.", "website": "https://www.twitch.tv/velkog", "subreddit": "/r/velkog", "center": [709.5, 404.5], "path": [[698.5, 398.5], [698.5, 406.5], [704.5, 406.5], [704.5, 412.5], [718.5, 412.5], [718.5, 398.5], [698.5, 398.5]]}, {"id": "tx7pyt", "submitted_by": "Palfar", "name": "Quetzalc\u00f3atl", "description": "Feathered Serpent. One of the most important representations of mexica culture, main deity of the mexica pantheon, associated with life, fertility, civilization and knowledge.", "website": "", "subreddit": "/r/Mexico", "center": [891.5, 233.5], "path": [[865.5, 236.5], [874.5, 230.5], [885.5, 219.5], [885.5, 216.5], [888.5, 213.5], [893.5, 213.5], [897.5, 217.5], [899.5, 217.5], [902.5, 220.5], [908.5, 219.5], [909.5, 222.5], [915.5, 223.5], [916.5, 227.5], [916.5, 236.5], [913.5, 240.5], [900.5, 240.5], [900.5, 242.5], [898.5, 241.5], [898.5, 246.5], [896.5, 247.5], [866.5, 248.5]]}, {"id": "tx7pnm", "submitted_by": "Breigner01", "name": "Quebec nordiques", "description": "An NHL team that existed a while back and has been trying to rebuild for a few seasons now", "website": "https://en.wikipedia.org/wiki/Quebec_Nordiques", "subreddit": "", "center": [951.5, 1012.5], "path": [[943.5, 1000.5], [955.5, 1000.5], [955.5, 1002.5], [956.5, 1002.5], [956.5, 1004.5], [957.5, 1004.5], [957.5, 1006.5], [958.5, 1006.5], [958.5, 1008.5], [959.5, 1008.5], [959.5, 1010.5], [960.5, 1010.5], [960.5, 1011.5], [961.5, 1011.5], [962.5, 1010.5], [963.5, 1009.5], [964.5, 1009.5], [965.5, 1010.5], [966.5, 1011.5], [967.5, 1012.5], [967.5, 1014.5], [968.5, 1015.5], [968.5, 1020.5], [967.5, 1021.5], [937.5, 1021.5], [937.5, 1006.5], [938.5, 1006.5], [938.5, 1004.5], [939.5, 1003.5], [940.5, 1002.5], [941.5, 1001.5], [943.5, 1001.5], [943.5, 1000.5]]}, {"id": "tx7p4n", "submitted_by": "xXGATOPABLOXx", "name": "kendomurft (vtuber)", "description": "X representing the main avatar of kendomurft in vr", "website": "https://www.twitch.tv/kendomurft", "subreddit": "", "center": [1751.5, 1971.5], "path": [[1749.5, 1969.5], [1753.5, 1969.5], [1753.5, 1973.5], [1749.5, 1973.5]]}, -{"id": "tx7osp", "submitted_by": "BlazeComrade", "name": "Astral Playerheads", "description": "Small depictions of members of the Astral group, as well as Astral A sybmol. In a griefed state.", "website": "astral.vip", "subreddit": "", "center": [1585.5, 1091.5], "path": [[1580.5, 1074.5], [1580.5, 1112.5], [1586.5, 1112.5], [1586.5, 1100.5], [1591.5, 1100.5], [1591.5, 1074.5], [1580.5, 1074.5], [1580.5, 1112.5]]}, -{"id": "tx7o49", "submitted_by": "HerdleTV", "name": "pepeSmoke", "description": "Third party emote on Twitch depicting a frog smoking. Created by Twitch streamer Pokelawls' community", "website": "twitch.tv/pokelawls", "subreddit": "/r/pokelawls", "center": [702.5, 950.5], "path": [[696.5, 943.5], [709.5, 943.5], [710.5, 956.5], [695.5, 956.5], [695.5, 943.5]]}, +{"id": "tx7osp", "submitted_by": "BlazeComrade", "name": "Astral Playerheads", "description": "Small depictions of members of the Astral group, as well as Astral A sybmol. In a griefed state.", "website": "https://astral.vip", "subreddit": "", "center": [1585.5, 1091.5], "path": [[1580.5, 1074.5], [1580.5, 1112.5], [1586.5, 1112.5], [1586.5, 1100.5], [1591.5, 1100.5], [1591.5, 1074.5], [1580.5, 1074.5], [1580.5, 1112.5]]}, +{"id": "tx7o49", "submitted_by": "HerdleTV", "name": "pepeSmoke", "description": "Third party emote on Twitch depicting a frog smoking. Created by Twitch streamer Pokelawls' community", "website": "https://twitch.tv/pokelawls", "subreddit": "/r/pokelawls", "center": [702.5, 950.5], "path": [[696.5, 943.5], [709.5, 943.5], [710.5, 956.5], [695.5, 956.5], [695.5, 943.5]]}, {"id": "tx7o2n", "submitted_by": "the_real_Quatro4", "name": "Sea of Thieves \"Holy Land\"", "description": "Originally gifted to the Sea of Thieves community from a well placed treaty with Germany. Was the site of the second attack on Sea of Thieves from \"Locklear\" whos logo currently resides. Was the 4th overall site of the Sea of Thieves project in a series of displacements.", "website": "", "subreddit": "/r/seaofthieves", "center": [418.5, 1195.5], "path": [[439.5, 1172.5], [398.5, 1172.5], [398.5, 1219.5], [438.5, 1218.5]]}, -{"id": "tx7ntl", "submitted_by": "schn4uzer", "name": "Brawl Craft", "description": "A community dedicated to creating maps for the mobile multiplayer game Brawl Stars, created by Supercell.", "website": "discord.gg/brawlcraft", "subreddit": "", "center": [1475.5, 92.5], "path": [[1472.5, 80.5], [1478.5, 80.5], [1478.5, 81.5], [1481.5, 81.5], [1481.5, 82.5], [1482.5, 82.5], [1482.5, 83.5], [1483.5, 83.5], [1483.5, 85.5], [1485.5, 85.5], [1485.5, 87.5], [1486.5, 87.5], [1486.5, 89.5], [1487.5, 89.5], [1487.5, 95.5], [1486.5, 95.5], [1486.5, 96.5], [1483.5, 96.5], [1483.5, 97.5], [1482.5, 97.5], [1482.5, 98.5], [1481.5, 98.5], [1481.5, 99.5], [1480.5, 99.5], [1480.5, 103.5], [1478.5, 103.5], [1478.5, 104.5], [1472.5, 104.5], [1472.5, 103.5], [1470.5, 103.5], [1470.5, 102.5], [1468.5, 102.5], [1468.5, 101.5], [1467.5, 101.5], [1467.5, 100.5], [1466.5, 100.5], [1466.5, 99.5], [1465.5, 99.5], [1465.5, 97.5], [1464.5, 97.5], [1464.5, 95.5], [1463.5, 95.5], [1463.5, 89.5], [1464.5, 89.5], [1464.5, 87.5], [1465.5, 87.5], [1465.5, 85.5], [1466.5, 85.5], [1466.5, 84.5], [1467.5, 84.5], [1467.5, 83.5], [1468.5, 83.5], [1468.5, 82.5], [1470.5, 82.5], [1470.5, 81.5], [1472.5, 81.5]]}, +{"id": "tx7ntl", "submitted_by": "schn4uzer", "name": "Brawl Craft", "description": "A community dedicated to creating maps for the mobile multiplayer game Brawl Stars, created by Supercell.", "website": "https://discord.gg/brawlcraft", "subreddit": "", "center": [1475.5, 92.5], "path": [[1472.5, 80.5], [1478.5, 80.5], [1478.5, 81.5], [1481.5, 81.5], [1481.5, 82.5], [1482.5, 82.5], [1482.5, 83.5], [1483.5, 83.5], [1483.5, 85.5], [1485.5, 85.5], [1485.5, 87.5], [1486.5, 87.5], [1486.5, 89.5], [1487.5, 89.5], [1487.5, 95.5], [1486.5, 95.5], [1486.5, 96.5], [1483.5, 96.5], [1483.5, 97.5], [1482.5, 97.5], [1482.5, 98.5], [1481.5, 98.5], [1481.5, 99.5], [1480.5, 99.5], [1480.5, 103.5], [1478.5, 103.5], [1478.5, 104.5], [1472.5, 104.5], [1472.5, 103.5], [1470.5, 103.5], [1470.5, 102.5], [1468.5, 102.5], [1468.5, 101.5], [1467.5, 101.5], [1467.5, 100.5], [1466.5, 100.5], [1466.5, 99.5], [1465.5, 99.5], [1465.5, 97.5], [1464.5, 97.5], [1464.5, 95.5], [1463.5, 95.5], [1463.5, 89.5], [1464.5, 89.5], [1464.5, 87.5], [1465.5, 87.5], [1465.5, 85.5], [1466.5, 85.5], [1466.5, 84.5], [1467.5, 84.5], [1467.5, 83.5], [1468.5, 83.5], [1468.5, 82.5], [1470.5, 82.5], [1470.5, 81.5], [1472.5, 81.5]]}, {"id": "tx7ntj", "submitted_by": "ComfortableAd7321", "name": "Infoman", "description": "Infoman is a half-hour-long televised series satirizing the current events of Quebec and Canada hosted by Jean-Ren\u00e9 Dufort on Ici Radio-Canada T\u00e9l\u00e9.", "website": "", "subreddit": "/r/Qu\u00e9bec", "center": [1070.5, 1023.5], "path": [[1065.5, 1017.5], [1074.5, 1017.5], [1079.5, 1022.5], [1070.5, 1031.5], [1069.5, 1031.5], [1061.5, 1023.5], [1061.5, 1023.5], [1061.5, 1021.5]]}, -{"id": "tx7npp", "submitted_by": "joman66", "name": "Marine Corps War Memorial", "description": "A memorial dedicated to the Marines who gave their lives for the Untied State of America.", "website": "", "subreddit": "", "center": [1947.5, 1855.5], "path": [[1938.5, 1868.5], [1939.5, 1865.5], [1940.5, 1860.5], [1942.5, 1858.5], [1942.5, 1856.5], [1940.5, 1855.5], [1941.5, 1854.5], [1945.5, 1851.5], [1931.5, 1837.5], [1943.5, 1839.5], [1950.5, 1843.5], [1953.5, 1847.5], [1949.5, 1850.5], [1946.5, 1852.5], [1952.5, 1858.5], [1957.5, 1856.5], [1959.5, 1853.5], [1961.5, 1854.5], [1961.5, 1856.5], [1959.5, 1857.5], [1961.5, 1859.5], [1960.5, 1861.5], [1962.5, 1863.5], [1960.5, 1863.5], [1958.5, 1862.5], [1957.5, 1863.5], [1960.5, 1866.5], [1957.5, 1865.5], [1957.5, 1868.5]]}, -{"id": "tx7njx", "submitted_by": "jjfajen", "name": "One World Trade Center (Freedom Tower)", "description": "One World Trade Center is the main building of the rebuilt World Trade Center complex in Lower Manhattan, New York City. At a height of 1,776 feet tall, it is the tallest building in the United States. Originally, this art depicted the Twin Towers, but during a grief it was replaced with the OWTC", "website": "", "subreddit": "/r/americanflaginplace", "center": [1960.5, 1834.5], "path": [[1967.5, 1868.5], [1966.5, 1803.5], [1961.5, 1800.5], [1961.5, 1775.5], [1959.5, 1774.5], [1960.5, 1800.5], [1955.5, 1802.5], [1953.5, 1868.5], [1961.5, 1868.5]]}, -{"id": "tx7muq", "submitted_by": "newSomberMan", "name": "Weather Community and The Front Bottoms Friendship Heart", "description": "A heart dedicated to the close alliance formed between members of the Front Bottoms and Weather communities during r/Place. Initially, the two communities fought over control of what is now the NOAA logo. But, after negotiations, the NOAA logo was given to the Weather Community in exchange for aid in the construction of The Front Bottoms logo directly beneath the heart. The two communities then became close allies, each defending and collaborating with each other constantly during the duration of r/Place.", "website": "", "subreddit": "", "center": [1721.5, 606.5], "path": [[1720.5, 604.5], [1722.5, 604.5], [1723.5, 605.5], [1723.5, 606.5], [1722.5, 607.5], [1721.5, 608.5], [1720.5, 607.5], [1719.5, 606.5]]}, -{"id": "tx7mqy", "submitted_by": "Rukasiuuuu", "name": "Gabumon - Digimon", "description": "Gabumon is a fictional character and Digimon from the first two seasons of the anime and manga, Digimon Adventure and Digimon Adventure 02.", "website": "", "subreddit": "", "center": [1329.5, 118.5], "path": [[1321.5, 103.5], [1325.5, 105.5], [1328.5, 103.5], [1328.5, 106.5], [1335.5, 104.5], [1337.5, 104.5], [1333.5, 108.5], [1336.5, 113.5], [1339.5, 118.5], [1341.5, 117.5], [1343.5, 117.5], [1343.5, 119.5], [1340.5, 123.5], [1341.5, 124.5], [1341.5, 126.5], [1333.5, 127.5], [1333.5, 131.5], [1328.5, 131.5], [1327.5, 129.5], [1320.5, 130.5], [1319.5, 128.5], [1319.5, 123.5], [1322.5, 119.5], [1318.5, 114.5], [1319.5, 112.5], [1322.5, 108.5], [1322.5, 106.5], [1321.5, 103.5]]}, {"id": "tx7mm1", "submitted_by": "matt_10530", "name": "Boards of Canada logo (covered)", "description": "The logo for the Scottish electronic music duo, Boards of Canada, was built here for a good amount of time before being destroyed and covered by another icon.", "website": "", "subreddit": "/r/boardsofcanada", "center": [1332.5, 488.5], "path": [[1323.5, 479.5], [1323.5, 496.5], [1340.5, 496.5], [1340.5, 479.5], [1323.5, 479.5]]}, {"id": "tx7mih", "submitted_by": "ostensacken", "name": "Andean condor", "description": "The Andean condor is a bird found over the Andes mountain range of South America, and has played an important role in the mythology of Andean cultures for centuries.", "website": "", "subreddit": "/r/chile", "center": [361.5, 456.5], "path": [[349.5, 451.5], [350.5, 451.5], [350.5, 452.5], [351.5, 452.5], [351.5, 453.5], [352.5, 455.5], [353.5, 455.5], [354.5, 455.5], [354.5, 456.5], [355.5, 457.5], [357.5, 458.5], [359.5, 459.5], [361.5, 459.5], [361.5, 460.5], [362.5, 459.5], [362.5, 460.5], [363.5, 460.5], [364.5, 459.5], [364.5, 458.5], [365.5, 458.5], [365.5, 457.5], [367.5, 457.5], [367.5, 456.5], [368.5, 456.5], [368.5, 455.5], [369.5, 455.5], [369.5, 454.5], [370.5, 454.5], [370.5, 453.5], [369.5, 453.5], [368.5, 454.5], [367.5, 455.5], [366.5, 455.5], [365.5, 454.5], [364.5, 454.5], [364.5, 455.5], [363.5, 455.5], [363.5, 456.5], [362.5, 456.5], [361.5, 456.5], [361.5, 454.5], [360.5, 454.5], [360.5, 453.5], [359.5, 454.5], [359.5, 456.5], [358.5, 456.5], [357.5, 456.5], [356.5, 456.5], [355.5, 455.5], [353.5, 454.5], [353.5, 452.5], [352.5, 452.5]]}, {"id": "tx7ma9", "submitted_by": "BananaCupcak3", "name": "Orb of True Knowledge", "description": "Collectible from the videogame Noita, with an Extra Max Health pickup inside.", "website": "https://noita.fandom.com/wiki/Orb_of_True_Knowledge#Known_Orbs_of_True_Knowledge", "subreddit": "/r/noita", "center": [630.5, 1077.5], "path": [[623.5, 1073.5], [623.5, 1083.5], [628.5, 1086.5], [633.5, 1086.5], [637.5, 1083.5], [637.5, 1072.5], [634.5, 1069.5], [627.5, 1069.5]]}, -{"id": "tx7lq4", "submitted_by": "AmishWarlords_", "name": "One Piece Straw Hat Jolly Roger", "description": "The flag emblem of One Piece's protagonist crew, the Straw Hat (Mugiwara) Pirates, as well as three Devil Fruits featured prominently in the series. The Sans eye was the second biggest L the One Piece community took on 2022 r/place.", "website": "", "subreddit": "/r/OnePiece", "center": [354.5, 570.5], "path": [[329.5, 528.5], [378.5, 528.5], [378.5, 613.5], [330.5, 613.5]]}, -{"id": "tx7llr", "submitted_by": "joman66", "name": "Space Shuttle", "description": "A space shuttle that was used in the Space Shuttle program (offically known as the Space Transportation System (STS)) at NASA from 1989 until 2011 when it was retired.", "website": "", "subreddit": "", "center": [1920.5, 1840.5], "path": [[1880.5, 1869.5], [1891.5, 1861.5], [1897.5, 1861.5], [1901.5, 1857.5], [1906.5, 1854.5], [1909.5, 1854.5], [1915.5, 1851.5], [1918.5, 1850.5], [1919.5, 1817.5], [1916.5, 1815.5], [1916.5, 1810.5], [1917.5, 1808.5], [1917.5, 1794.5], [1919.5, 1792.5], [1920.5, 1795.5], [1921.5, 1790.5], [1923.5, 1787.5], [1926.5, 1790.5], [1926.5, 1796.5], [1928.5, 1793.5], [1931.5, 1798.5], [1930.5, 1801.5], [1929.5, 1810.5], [1932.5, 1812.5], [1931.5, 1815.5], [1930.5, 1817.5], [1931.5, 1848.5], [1933.5, 1855.5], [1937.5, 1857.5], [1938.5, 1862.5], [1939.5, 1867.5]]}, {"id": "tx7lcj", "submitted_by": "Misteriox7", "name": "NixOS Icon", "description": "An icon for NixOS, the purely functional linux distribution, featuring the Nix package manager.", "website": "https://nixos.org", "subreddit": "/r/nixos", "center": [33.5, 708.5], "path": [[29.5, 704.5], [37.5, 704.5], [37.5, 712.5], [29.5, 712.5]]}, {"id": "tx7l15", "submitted_by": "StarrrryL", "name": "University of Arizona logo", "description": "The University of Arizona Block A logo, next to a group of college logos. It existed on the previous Atlas map, but was destroyed by streamers in this new version, like many other college logos in this area.", "website": "https://www.arizona.edu", "subreddit": "/r/UofArizona", "center": [256.5, 1548.5], "path": [[262.5, 1543.5], [262.5, 1552.5], [250.5, 1552.5], [250.5, 1543.5], [262.5, 1543.5]]}, {"id": "tx7kig", "submitted_by": "Nova17Delta", "name": "Warfname =", "description": "Small friend group consisting of four subfactions.", "website": "https://warfnamewikipedia.neocities.org", "subreddit": "/r/warfname", "center": [1193.5, 245.5], "path": [[1197.5, 240.5], [1188.5, 240.5], [1188.5, 249.5], [1197.5, 249.5]]}, @@ -5778,7 +5311,6 @@ {"id": "tx7k0v", "submitted_by": "thatelliegirlifshe15", "name": "erobb221", "description": "That Ellie girl, in the game I was playing, bro, if she 15 I'm 15 ya feel me", "website": "https://www.youtube.com/watch?v=4gnzrWGFBvs", "subreddit": "/r/emoney", "center": [639.5, 926.5], "path": [[623.5, 910.5], [654.5, 910.5], [654.5, 941.5], [623.5, 941.5]]}, {"id": "tx7jym", "submitted_by": "The_McTasty", "name": "The Sandworm of Dune, Shai-Hulud the Makers", "description": "A great Sandworm from the Sci-Fi Series Dune written by Frank Herbert. As a part of an Alliance between /r/OnePiece and /r/SFFA the top area that overlaps with the One Piece Gol D. Roger \"HE LAUGHED\" art piece is greyed out in a manga style to symbolize the merging of the two art pieces and the alliance between the groups that made them. Part of the piece by the Sci-Fi Fantasy Alliance.", "website": "", "subreddit": "/r/SFFA", "center": [1659.5, 1385.5], "path": [[1685.5, 1326.5], [1674.5, 1322.5], [1653.5, 1322.5], [1640.5, 1326.5], [1622.5, 1338.5], [1613.5, 1349.5], [1605.5, 1368.5], [1601.5, 1389.5], [1613.5, 1418.5], [1626.5, 1432.5], [1642.5, 1438.5], [1661.5, 1441.5], [1669.5, 1439.5], [1671.5, 1446.5], [1681.5, 1443.5], [1706.5, 1427.5], [1721.5, 1404.5], [1724.5, 1382.5], [1722.5, 1365.5], [1720.5, 1358.5], [1708.5, 1359.5], [1714.5, 1374.5], [1715.5, 1390.5], [1711.5, 1404.5], [1698.5, 1422.5], [1683.5, 1429.5], [1670.5, 1433.5], [1669.5, 1436.5], [1669.5, 1439.5], [1654.5, 1436.5], [1639.5, 1428.5], [1638.5, 1426.5], [1625.5, 1419.5], [1617.5, 1407.5], [1612.5, 1389.5], [1614.5, 1368.5], [1626.5, 1347.5], [1642.5, 1336.5], [1656.5, 1331.5], [1668.5, 1332.5], [1678.5, 1334.5], [1685.5, 1336.5], [1685.5, 1329.5]]}, {"id": "tx7jug", "submitted_by": "maxwelltobiasen23", "name": "Members of \"The Server\"", "description": "The avatars of Colten, Felipe, Max, David, Sonny, and Jorge.", "website": "", "subreddit": "", "center": [1115.5, 519.5], "path": [[1104.5, 511.5], [1126.5, 511.5], [1126.5, 526.5], [1104.5, 526.5], [1104.5, 511.5]]}, -{"id": "tx7jty", "submitted_by": "joman66", "name": "One World Trade Center", "description": "Located in New York City, New York.", "website": "", "subreddit": "", "center": [1960.5, 1837.5], "path": [[1952.5, 1868.5], [1955.5, 1804.5], [1960.5, 1800.5], [1960.5, 1795.5], [1961.5, 1801.5], [1966.5, 1804.5], [1967.5, 1868.5]]}, {"id": "tx7jnt", "submitted_by": "ScytheTheMustafa", "name": "The logo of a Turkish Highschool", "description": "A highschool named Bornova Anatolian Highschool (Bornova Anadolu lisesi - BAL) that is located in \u0130zmir, Turkey", "website": "", "subreddit": "", "center": [1584.5, 1348.5], "path": [[1574.5, 1337.5], [1573.5, 1338.5], [1574.5, 1358.5], [1594.5, 1358.5], [1595.5, 1338.5]]}, {"id": "tx7jlm", "submitted_by": "KyAlt", "name": "Tyler, The Creator Art", "description": "This space one housed art inspired by critically acclaimed musical artist Tyler, The Creator. The art can be seen in the provided link.", "website": "https://www.reddit.com/r/tylerthecreator/comments/tw9n88/tyler_in_rplace/", "subreddit": "/r/tylerthecreator", "center": [1990.5, 1680.5], "path": [[1981.5, 1659.5], [1999.5, 1659.5], [1999.5, 1700.5], [1980.5, 1700.5], [1980.5, 1660.5]]}, {"id": "tx7j9o", "submitted_by": "Oponik", "name": "roSUS", "description": "A very sussy character Filipino redditors unintentionally made when making this rose. Instead of removing it they decide to let it stay", "website": "", "subreddit": "/r/Philippines", "center": [352.5, 680.5], "path": [[350.5, 679.5], [351.5, 678.5], [354.5, 678.5], [354.5, 683.5], [353.5, 683.5], [352.5, 682.5], [351.5, 683.5], [350.5, 682.5], [349.5, 681.5], [349.5, 680.5], [350.5, 679.5]]}, @@ -5786,20 +5318,15 @@ {"id": "tx7j79", "submitted_by": "sodapopmanboy", "name": "Nero", "description": "A bird character from anime/Manga Black Clover.", "website": "", "subreddit": "/r/blackclover", "center": [768.5, 1984.5], "path": [[761.5, 1975.5], [762.5, 1993.5], [774.5, 1992.5], [774.5, 1976.5]]}, {"id": "tx7j1s", "submitted_by": "WackyPinion", "name": "Mystery Ghost", "description": "Pixel art of a ghost that became a meme in Something Awful all the way back in 2005, and has clearly had enough staying power to make it to this canvas in 2022. In its original form, it is accompanied by the caption \"it is a mystery\".", "website": "https://knowyourmeme.com/memes/it-is-a-mystery", "subreddit": "", "center": [1897.5, 1642.5], "path": [[1892.5, 1639.5], [1892.5, 1638.5], [1893.5, 1638.5], [1893.5, 1636.5], [1894.5, 1635.5], [1902.5, 1635.5], [1903.5, 1637.5], [1904.5, 1639.5], [1906.5, 1640.5], [1906.5, 1642.5], [1904.5, 1642.5], [1904.5, 1643.5], [1903.5, 1645.5], [1902.5, 1646.5], [1901.5, 1647.5], [1897.5, 1647.5], [1897.5, 1653.5], [1896.5, 1654.5], [1894.5, 1654.5], [1894.5, 1647.5], [1893.5, 1645.5], [1892.5, 1643.5], [1889.5, 1642.5], [1888.5, 1643.5], [1887.5, 1643.5], [1887.5, 1639.5], [1892.5, 1640.5]]}, {"id": "tx7iue", "submitted_by": "KiwiBananaVIPoo", "name": "Zorin Linux", "description": "Zorin OS is a Linux distro presenting itself as an easy to use alternative to Windows and MacOS.", "website": "https://zorin.com/os/", "subreddit": "/r/zorinos", "center": [66.5, 705.5], "path": [[65.5, 702.5], [68.5, 702.5], [69.5, 707.5], [68.5, 708.5], [65.5, 708.5], [64.5, 707.5], [64.5, 704.5]]}, -{"id": "tx7isq", "submitted_by": "newSomberMan", "name": "The Front Bottoms", "description": "Pixel art depicting the logo of American emo band The Front Bottoms alongside the cover of their self-titled 2011 album.", "website": "", "subreddit": "/r/TheFrontBottoms", "center": [1723.5, 616.5], "path": [[1711.5, 607.5], [1717.5, 607.5], [1717.5, 608.5], [1718.5, 608.5], [1718.5, 609.5], [1719.5, 609.5], [1719.5, 610.5], [1720.5, 610.5], [1736.5, 610.5], [1736.5, 626.5], [1723.5, 626.5], [1723.5, 620.5], [1711.5, 620.5], [1710.5, 619.5], [1709.5, 618.5], [1708.5, 617.5], [1707.5, 616.5], [1707.5, 611.5]]}, {"id": "tx7ipo", "submitted_by": "pili27", "name": "knukles", "description": "do you know da wae", "website": "https://www.youtube.com/watch?v=iQO9yRutpso", "subreddit": "", "center": [662.5, 1536.5], "path": [[657.5, 1533.5], [667.5, 1533.5], [667.5, 1539.5], [657.5, 1539.5]]}, -{"id": "tx7ia3", "submitted_by": "joman66", "name": "Statue of Liberty", "description": "The Statue of Liberty. Located in New York, New York.", "website": "", "subreddit": "", "center": [1977.5, 1842.5], "path": [[1968.5, 1867.5], [1968.5, 1863.5], [1969.5, 1860.5], [1971.5, 1858.5], [1971.5, 1852.5], [1974.5, 1849.5], [1972.5, 1844.5], [1973.5, 1841.5], [1971.5, 1833.5], [1970.5, 1829.5], [1971.5, 1826.5], [1970.5, 1820.5], [1969.5, 1816.5], [1969.5, 1813.5], [1968.5, 1811.5], [1969.5, 1807.5], [1971.5, 1803.5], [1973.5, 1806.5], [1973.5, 1811.5], [1971.5, 1813.5], [1972.5, 1816.5], [1972.5, 1820.5], [1973.5, 1820.5], [1975.5, 1818.5], [1978.5, 1817.5], [1981.5, 1818.5], [1981.5, 1822.5], [1980.5, 1824.5], [1979.5, 1827.5], [1982.5, 1831.5], [1985.5, 1832.5], [1987.5, 1832.5], [1988.5, 1836.5], [1987.5, 1839.5], [1984.5, 1841.5], [1983.5, 1844.5], [1984.5, 1847.5], [1987.5, 1848.5], [1983.5, 1849.5], [1984.5, 1855.5], [1984.5, 1857.5], [1980.5, 1860.5], [1985.5, 1861.5], [1985.5, 1868.5], [1985.5, 1868.5]]}, -{"id": "tx7hyl", "submitted_by": "kwebber321", "name": "Castlehead", "description": "A popular V-Tuber on twitch.", "website": "https://www.twitch.tv/castlehead", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx7hrh", "submitted_by": "Rukasiuuuu", "name": "Black Spirit - Black Desert Online", "description": "Character in the game Black Desert Online. A mysterious entity that serves as your companion along your travels.", "website": "", "subreddit": "", "center": [1593.5, 1993.5], "path": [[1586.5, 2000.5], [1586.5, 1989.5], [1588.5, 1987.5], [1599.5, 1987.5], [1601.5, 1990.5], [1601.5, 1999.5], [1586.5, 1999.5]]}, -{"id": "tx7hra", "submitted_by": "PpBigNoice", "name": "osu!", "description": "osu![a] is a free-to-play rhythm game primarily developed, published, and created by Dean \"peppy\" Herbert. Inspired by iNiS' rhythm game Osu! Tatakae! Ouendan, it was written in C# on the .NET framework,[5] and was released for Microsoft Windows on 16 September 2007. The game has throughout the years been ported to macOS, Linux, Android and iOS.\n\nAsides from Osu! Tatakae! Ouendan, the game has been inspired by titles such as Taiko no Tatsujin, Beatmania IIDX,[6] Elite Beat Agents, O2Jam, StepMania and DJMax. The game is heavily community-oriented, with all beatmaps and playable songs being community-made through the in-game map editor.[7] Four different game modes exist, offering various ways to play a beatmap, which can also be combined with addable modifiers, increasing or decreasing the difficulty.\n\nThe original osu!standard mode remains the most popular to date and as of March 2022, the game has 19,872,585 monthly active users according to the game's global country leaderboards.[8]", "website": "https://osu.ppy.sh/home", "subreddit": "/r/osugame", "center": [726.5, 728.5], "path": [[765.5, 695.5], [773.5, 718.5], [774.5, 734.5], [769.5, 734.5], [769.5, 747.5], [769.5, 756.5], [765.5, 760.5], [762.5, 761.5], [753.5, 771.5], [740.5, 776.5], [720.5, 777.5], [701.5, 770.5], [683.5, 752.5], [677.5, 732.5], [681.5, 707.5], [691.5, 694.5], [703.5, 685.5], [705.5, 688.5], [716.5, 683.5], [719.5, 682.5], [721.5, 679.5], [727.5, 679.5], [730.5, 681.5], [731.5, 682.5], [737.5, 682.5], [739.5, 680.5], [746.5, 679.5], [746.5, 681.5], [748.5, 681.5], [749.5, 682.5], [749.5, 684.5], [753.5, 684.5], [765.5, 695.5]]}, -{"id": "tx7hij", "submitted_by": "TurtleOutLoud", "name": "Cave Story /Doukutsu Monogatari", "description": "Tribute to the 2004 indie game Doukutsu Monogatari, translated as Cave Story. Contains characters Quote, Curly, Balrog, Toroko, Misery, Sue, Chie, Kanpachi, King, and Jack.", "website": "cavestory.org", "subreddit": "/r/cavestory", "center": [602.5, 886.5], "path": [[562.5, 866.5], [562.5, 889.5], [563.5, 894.5], [567.5, 894.5], [568.5, 899.5], [590.5, 900.5], [589.5, 909.5], [599.5, 909.5], [600.5, 898.5], [617.5, 910.5], [616.5, 897.5], [638.5, 900.5], [647.5, 909.5], [655.5, 909.5], [655.5, 899.5], [638.5, 889.5], [629.5, 887.5], [629.5, 866.5], [605.5, 866.5], [606.5, 873.5], [594.5, 872.5], [589.5, 866.5], [562.5, 866.5]]}, +{"id": "tx7hij", "submitted_by": "TurtleOutLoud", "name": "Cave Story /Doukutsu Monogatari", "description": "Tribute to the 2004 indie game Doukutsu Monogatari, translated as Cave Story. Contains characters Quote, Curly, Balrog, Toroko, Misery, Sue, Chie, Kanpachi, King, and Jack.", "website": "https://cavestory.org", "subreddit": "/r/cavestory", "center": [602.5, 886.5], "path": [[562.5, 866.5], [562.5, 889.5], [563.5, 894.5], [567.5, 894.5], [568.5, 899.5], [590.5, 900.5], [589.5, 909.5], [599.5, 909.5], [600.5, 898.5], [617.5, 910.5], [616.5, 897.5], [638.5, 900.5], [647.5, 909.5], [655.5, 909.5], [655.5, 899.5], [638.5, 889.5], [629.5, 887.5], [629.5, 866.5], [605.5, 866.5], [606.5, 873.5], [594.5, 872.5], [589.5, 866.5], [562.5, 866.5]]}, {"id": "tx7hg2", "submitted_by": "Viken_1", "name": "Towers of Paine", "description": "Torres del Paine are the distinctive three peaks of the Paine mountain range in Chile", "website": "", "subreddit": "", "center": [352.5, 467.5], "path": [[345.5, 469.5], [346.5, 469.5], [346.5, 465.5], [347.5, 464.5], [350.5, 464.5], [350.5, 460.5], [352.5, 460.5], [352.5, 463.5], [355.5, 463.5], [358.5, 463.5], [358.5, 468.5], [359.5, 469.5], [358.5, 470.5], [357.5, 471.5], [356.5, 472.5], [355.5, 473.5], [352.5, 472.5], [352.5, 471.5], [347.5, 471.5], [346.5, 470.5]]}, {"id": "tx7h7m", "submitted_by": "Shacxx", "name": "Friendship's Ducks", "description": "Two small ducks drawn by 3 friends from Montpellier, France.", "website": "", "subreddit": "", "center": [821.5, 1722.5], "path": [[825.5, 1717.5], [816.5, 1717.5], [815.5, 1727.5], [828.5, 1727.5], [827.5, 1723.5], [825.5, 1721.5], [825.5, 1717.5]]}, {"id": "tx7h2c", "submitted_by": "heyhowzitgoinn", "name": "Molly 'Beartrap' Blyndeff", "description": "A main character from the web series Epithet Erased, created by Brendan Blaber (JelloApocalypse on YouTube).", "website": "https://vrv.co/series/GYQW7V2QY/Epithet-Erased", "subreddit": "/r/Epithet_Erased", "center": [1019.5, 1671.5], "path": [[1023.5, 1675.5], [1021.5, 1675.5], [1017.5, 1675.5], [1017.5, 1673.5], [1016.5, 1672.5], [1016.5, 1670.5], [1017.5, 1669.5], [1017.5, 1667.5], [1019.5, 1667.5], [1019.5, 1667.5], [1020.5, 1668.5], [1022.5, 1668.5], [1023.5, 1668.5], [1022.5, 1669.5], [1023.5, 1670.5], [1022.5, 1671.5], [1022.5, 1673.5]]}, {"id": "tx7gp9", "submitted_by": "ostensacken", "name": "Chilean wine", "description": "Wine has been produced in Chile since the 16th century when conquistadors brought grapevines with them.", "website": "", "subreddit": "/r/chile", "center": [263.5, 491.5], "path": [[258.5, 497.5], [258.5, 487.5], [259.5, 487.5], [259.5, 486.5], [259.5, 485.5], [260.5, 485.5], [260.5, 479.5], [262.5, 479.5], [262.5, 484.5], [262.5, 485.5], [263.5, 485.5], [263.5, 486.5], [264.5, 486.5], [269.5, 488.5], [269.5, 497.5]]}, -{"id": "tx7gn3", "submitted_by": "pike_was_taken", "name": "Jschlatt", "description": "The Minecraft skin of a Twitch Streamer/Youtuber Jschlatt.", "website": "twitch.tv/jschlatt", "subreddit": "/r/jschlatt", "center": [0.5, 0.5], "path": [[182.5, 918.5], [182.5, 919.5], [182.5, 920.5], [182.5, 921.5], [182.5, 922.5], [182.5, 923.5], [182.5, 924.5], [182.5, 925.5], [182.5, 925.5], [182.5, 926.5], [183.5, 926.5], [184.5, 926.5], [185.5, 926.5], [186.5, 926.5], [188.5, 926.5], [187.5, 926.5], [189.5, 926.5], [190.5, 926.5], [191.5, 926.5], [191.5, 925.5], [191.5, 924.5], [191.5, 923.5], [191.5, 922.5], [191.5, 921.5], [191.5, 920.5], [191.5, 919.5], [191.5, 919.5], [191.5, 918.5], [191.5, 918.5], [191.5, 917.5], [190.5, 917.5], [189.5, 917.5], [188.5, 917.5], [187.5, 917.5], [186.5, 917.5], [185.5, 917.5], [184.5, 917.5], [183.5, 917.5], [182.5, 917.5], [182.5, 917.5], [191.5, 917.5], [191.5, 926.5], [182.5, 926.5], [182.5, 917.5]]}, +{"id": "tx7gn3", "submitted_by": "pike_was_taken", "name": "Jschlatt", "description": "The Minecraft skin of a Twitch Streamer/Youtuber Jschlatt.", "website": "https://twitch.tv/jschlatt", "subreddit": "/r/jschlatt", "center": [0.5, 0.5], "path": [[182.5, 918.5], [182.5, 919.5], [182.5, 920.5], [182.5, 921.5], [182.5, 922.5], [182.5, 923.5], [182.5, 924.5], [182.5, 925.5], [182.5, 925.5], [182.5, 926.5], [183.5, 926.5], [184.5, 926.5], [185.5, 926.5], [186.5, 926.5], [188.5, 926.5], [187.5, 926.5], [189.5, 926.5], [190.5, 926.5], [191.5, 926.5], [191.5, 925.5], [191.5, 924.5], [191.5, 923.5], [191.5, 922.5], [191.5, 921.5], [191.5, 920.5], [191.5, 919.5], [191.5, 919.5], [191.5, 918.5], [191.5, 918.5], [191.5, 917.5], [190.5, 917.5], [189.5, 917.5], [188.5, 917.5], [187.5, 917.5], [186.5, 917.5], [185.5, 917.5], [184.5, 917.5], [183.5, 917.5], [182.5, 917.5], [182.5, 917.5], [191.5, 917.5], [191.5, 926.5], [182.5, 926.5], [182.5, 917.5]]}, {"id": "tx7git", "submitted_by": "Ardub23", "name": "Baba", "description": "Titular character of the 2019 puzzle game Baba Is You", "website": "", "subreddit": "/r/BabaIsYou", "center": [694.5, 829.5], "path": [[693.5, 826.5], [693.5, 828.5], [691.5, 830.5], [691.5, 832.5], [692.5, 831.5], [693.5, 831.5], [694.5, 832.5], [695.5, 831.5], [696.5, 833.5], [696.5, 831.5], [697.5, 830.5], [697.5, 828.5], [695.5, 826.5], [694.5, 827.5]]}, -{"id": "tx7gbk", "submitted_by": "ArisEV12", "name": "JeffaVlogs/Jeffarlandia", "description": "Tipical meme from the Youtuber and streamer Jeffar", "website": "", "subreddit": "u/ArisEV12", "center": [0.5, 0.5], "path": []}, {"id": "tx7gaz", "submitted_by": "Trepach", "name": "Grogu", "description": "Also known as Baby Yoda, from the hit Star Wars TV show, The Mandalorian", "website": "https://starwars.fandom.com/wiki/Grogu", "subreddit": "", "center": [752.5, 1660.5], "path": [[748.5, 1661.5], [748.5, 1658.5], [744.5, 1653.5], [763.5, 1653.5], [759.5, 1658.5], [758.5, 1659.5], [761.5, 1662.5], [761.5, 1664.5], [760.5, 1664.5], [761.5, 1667.5], [761.5, 1669.5], [748.5, 1669.5], [747.5, 1663.5], [727.5, 1641.5]]}, {"id": "tx7g6k", "submitted_by": "Ijust_want_tobehappy", "name": "Dominican Platain", "description": "Dominican Platain who represent the love Dominicans have towards platains", "website": "", "subreddit": "/r/dominican", "center": [52.5, 82.5], "path": [[51.5, 80.5], [52.5, 82.5], [52.5, 83.5], [53.5, 84.5], [54.5, 86.5], [54.5, 83.5], [55.5, 80.5], [53.5, 80.5], [52.5, 78.5], [53.5, 78.5], [53.5, 77.5], [53.5, 75.5], [54.5, 76.5], [52.5, 75.5], [49.5, 79.5], [53.5, 76.5], [52.5, 76.5], [49.5, 81.5], [49.5, 82.5], [49.5, 84.5], [51.5, 84.5], [51.5, 85.5], [50.5, 86.5], [51.5, 87.5], [52.5, 88.5], [53.5, 87.5], [55.5, 88.5], [55.5, 88.5], [54.5, 89.5], [55.5, 89.5], [58.5, 86.5], [63.5, 85.5], [59.5, 88.5]]}, {"id": "tx7fw2", "submitted_by": "coco20c", "name": "Blurryface by Twenty One Pilots", "description": "Blurryface is the fourth studio album by American musical duo Twenty One Pilots. It was released on May 17, 2015.", "website": "", "subreddit": "/r/twentyonepilots", "center": [398.5, 1588.5], "path": [[393.5, 1583.5], [393.5, 1593.5], [403.5, 1593.5], [403.5, 1583.5], [393.5, 1583.5]]}, @@ -5807,34 +5334,28 @@ {"id": "tx7fiy", "submitted_by": "shinysurge", "name": "SimpleFlips", "description": "Pixel art of the drippy star used as SimpleFlips' logo and channel icon, courtesy of the SimpleFlips Discord server.", "website": "https://www.youtube.com/user/SimpleFlips", "subreddit": "/r/SimpleFlips", "center": [1150.5, 375.5], "path": [[1142.5, 370.5], [1147.5, 365.5], [1153.5, 366.5], [1160.5, 374.5], [1156.5, 384.5], [1143.5, 384.5]]}, {"id": "tx7fh1", "submitted_by": "LeftEyeHole", "name": "Risk of Rain/Trans Ally Heart", "description": "A heart signifying the alliance between Risk of Rain, and the trans flag.", "website": "", "subreddit": "/r/riskofrain, and, /r/transplace", "center": [586.5, 429.5], "path": [[582.5, 427.5], [582.5, 429.5], [585.5, 433.5], [586.5, 433.5], [589.5, 430.5], [590.5, 427.5], [588.5, 426.5], [587.5, 426.5], [586.5, 427.5], [585.5, 427.5], [584.5, 426.5], [583.5, 426.5]]}, {"id": "tx7f1i", "submitted_by": "yizack", "name": "Flag of R\u00e9union Island", "description": "R\u00e9union Island, a French overseas department/region in the Indian Ocean.", "website": "", "subreddit": "/r/reunionisland", "center": [1138.5, 252.5], "path": [[1138.5, 256.5], [1137.5, 255.5], [1134.5, 252.5], [1134.5, 250.5], [1135.5, 250.5], [1136.5, 249.5], [1137.5, 249.5], [1138.5, 250.5], [1139.5, 249.5], [1141.5, 249.5], [1141.5, 250.5], [1142.5, 251.5], [1142.5, 252.5], [1139.5, 255.5], [1138.5, 256.5]]}, -{"id": "tx7evk", "submitted_by": "ostensacken", "name": "Southern pudu", "description": "The southern pudu is a species of deer found in the mountainous forests in the Chilean alps. It has a related species, the northern pudu, which is found in the Northern Andes.", "website": "", "subreddit": "/r/chile", "center": [0.5, 0.5], "path": []}, -{"id": "tx7eup", "submitted_by": "GalaDev", "name": "GalaDev", "description": "Game developer", "website": "https://www.youtube.com/channel/UCfR7ZyhEsnCv9qEOxlm-zVA", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "tx7ecr", "submitted_by": "MariyanoW", "name": "808s & Heartbreak", "description": "Kanye West's 4th Studio album. Made by the Hip-hop association with help from the BABOLO community.", "website": "https://kanyewest.com", "subreddit": "/r/westsubever", "center": [1774.5, 1009.5], "path": [[1768.5, 999.5], [1779.5, 999.5], [1779.5, 1019.5], [1768.5, 1019.5]]}, {"id": "tx7e8h", "submitted_by": "l_u_c_a_r_i_o", "name": "Clown (SS13)", "description": "The clown, a role and common sight both inside and outside of airlocks.", "website": "", "subreddit": "/r/ss13", "center": [1689.5, 601.5], "path": [[1687.5, 587.5], [1685.5, 587.5], [1683.5, 589.5], [1683.5, 590.5], [1685.5, 592.5], [1686.5, 592.5], [1689.5, 595.5], [1688.5, 596.5], [1687.5, 596.5], [1684.5, 599.5], [1684.5, 600.5], [1683.5, 601.5], [1683.5, 605.5], [1682.5, 606.5], [1682.5, 610.5], [1684.5, 612.5], [1685.5, 612.5], [1687.5, 614.5], [1685.5, 616.5], [1684.5, 615.5], [1681.5, 615.5], [1679.5, 617.5], [1692.5, 617.5], [1692.5, 616.5], [1691.5, 615.5], [1691.5, 607.5], [1692.5, 607.5], [1692.5, 606.5], [1693.5, 605.5], [1693.5, 597.5], [1694.5, 596.5], [1693.5, 595.5], [1694.5, 594.5], [1696.5, 592.5], [1697.5, 592.5], [1699.5, 590.5], [1699.5, 589.5], [1697.5, 587.5], [1695.5, 587.5], [1694.5, 588.5], [1693.5, 588.5], [1692.5, 589.5], [1690.5, 589.5], [1689.5, 588.5], [1687.5, 587.5]]}, {"id": "tx7e1f", "submitted_by": "Wackamot123", "name": "Geometry dash demon", "description": "A demon face from the game geometry dash, used to represent the hardest levels", "website": "", "subreddit": "", "center": [1020.5, 376.5], "path": [[1012.5, 384.5], [1012.5, 384.5], [1014.5, 383.5], [1014.5, 383.5], [1015.5, 384.5], [1016.5, 383.5], [1017.5, 383.5], [1019.5, 384.5], [1019.5, 384.5], [1019.5, 384.5], [1028.5, 384.5], [1028.5, 366.5], [1011.5, 366.5], [1011.5, 383.5], [1011.5, 364.5], [1028.5, 364.5], [1012.5, 365.5], [1028.5, 365.5], [1012.5, 366.5]]}, {"id": "tx7dzr", "submitted_by": "IanE55", "name": "Murray Walker tribute", "description": "Murray Walker was an iconic British motorsport commentator who was mostly active from 1976 to 2001. He passed away in early 2021.", "website": "", "subreddit": "/r/formula1", "center": [455.5, 766.5], "path": [[448.5, 762.5], [461.5, 762.5], [461.5, 769.5], [448.5, 769.5]]}, {"id": "tx7dop", "submitted_by": "FullMoon1108", "name": "Vargskelethor", "description": "Vargskelethor is a twitch streamer on the Vinesauce team. His mascot Fren is a small man wearing lime green with a Swedish flag hat, and originates from an indie game called QT. Joel is known for his lovable childlike sense of humor.", "website": "https://www.fecalfunny.com", "subreddit": "/r/Vinesauce", "center": [100.5, 1117.5], "path": [[95.5, 1121.5], [95.5, 1120.5], [94.5, 1119.5], [95.5, 1118.5], [95.5, 1115.5], [96.5, 1115.5], [97.5, 1114.5], [97.5, 1111.5], [102.5, 1111.5], [102.5, 1114.5], [105.5, 1117.5], [106.5, 1116.5], [107.5, 1116.5], [107.5, 1117.5], [106.5, 1118.5], [106.5, 1119.5], [105.5, 1119.5], [104.5, 1120.5], [104.5, 1121.5], [95.5, 1121.5]]}, {"id": "tx7dlo", "submitted_by": "Sergioferubron", "name": "Mizkif riding Dedo", "description": "Painting of the stramer Mizkif riding his pet rabbit Dedo resembling famous painting Napoleon Crossing the Alps", "website": "https://www.twitch.tv/mizkif", "subreddit": "/r/mizkif", "center": [1384.5, 1426.5], "path": [[1436.5, 1355.5], [1332.5, 1355.5], [1333.5, 1498.5], [1435.5, 1496.5]]}, -{"id": "tx7diq", "submitted_by": "UrBoiKitten", "name": "Demon Face", "description": "art of the demon face from the game Geometry Dash", "website": "", "subreddit": "/r/geometrydashplace", "center": [1019.5, 374.5], "path": [[1010.5, 365.5], [1010.5, 384.5], [1028.5, 384.5], [1028.5, 365.5], [1020.5, 365.5], [1019.5, 365.5], [1019.5, 363.5], [1019.5, 364.5], [1018.5, 364.5], [1018.5, 365.5], [1018.5, 365.5], [1018.5, 365.5], [1018.5, 365.5], [1017.5, 365.5]]}, {"id": "tx7den", "submitted_by": "vpumeyyv", "name": "Zachtronics head & SpaceChem logo", "description": "Zachtronics is an American indie game company, founded by Zach Barth, which makes several kinds of programming puzzle games which have spawned a genre of their own.\nThe head is the old company logo that is still used by the community Discord server. Above it is the logo of one of the games, SpaceChem.", "website": "https://www.zachtronics.com/", "subreddit": "/r/spacechem", "center": [532.5, 1612.5], "path": [[538.5, 1599.5], [538.5, 1624.5], [525.5, 1624.5], [525.5, 1607.5], [526.5, 1607.5], [527.5, 1605.5], [527.5, 1599.5]]}, {"id": "tx7d4r", "submitted_by": "JJ64938", "name": "Lucifer", "description": "Lucifer from the Japanese Ghbili film Howl's Moving Castle, directed by \nHayao Miyazaki", "website": "", "subreddit": "/r/HowlsMovingCastle", "center": [1777.5, 696.5], "path": [[1770.5, 687.5], [1770.5, 705.5], [1784.5, 705.5], [1784.5, 687.5], [1770.5, 687.5]]}, {"id": "tx7d09", "submitted_by": "coco20c", "name": "A minion", "description": "Minions are fictional yellow creatures that appear in Illumination's Despicable Me franchise.", "website": "", "subreddit": "", "center": [644.5, 1725.5], "path": [[641.5, 1719.5], [641.5, 1731.5], [647.5, 1731.5], [647.5, 1719.5], [641.5, 1719.5]]}, {"id": "tx7cza", "submitted_by": "ChaseP_", "name": "State of Firestone", "description": "A Roblox group known as the State of Firestone with 147k members.", "website": "https://www.roblox.com/groups/2803360/State-of-Firestone#!/about", "subreddit": "", "center": [331.5, 1230.5], "path": [[341.5, 1226.5], [341.5, 1234.5], [320.5, 1234.5], [320.5, 1226.5]]}, {"id": "tx7cwa", "submitted_by": "Tomm_404", "name": "NHS Logo", "description": "The logo of the United Kingdom's National Health Service (NHS)", "website": "", "subreddit": "/r/ukplace", "center": [583.5, 554.5], "path": [[575.5, 551.5], [575.5, 557.5], [591.5, 557.5], [591.5, 551.5]]}, {"id": "tx7coh", "submitted_by": "jmann586", "name": "The Yard", "description": "Logo for a podcast started by Youtuber Ludwig with his roommates.", "website": "https://www.youtube.com/channel/UCGbg3DjQdcqWwqOLHpYHXIg", "subreddit": "/r/TheYardPodcast", "center": [1858.5, 166.5], "path": [[1841.5, 157.5], [1874.5, 157.5], [1874.5, 175.5], [1841.5, 175.5]]}, -{"id": "tx7cho", "submitted_by": "woofshark", "name": "Crest of University of Chicago", "description": "The University of Chicago (UChicago) is a private research university in Chicago, Illinois.", "website": "www.uchicago.edu", "subreddit": "/r/uchicago", "center": [0.5, 0.5], "path": []}, {"id": "tx7cen", "submitted_by": "DPanther_", "name": "Numberphile Logo", "description": "Numberphile is an educational YouTube channel featuring videos that explore topics from a variety of fields of mathematics. The videos are produced by Brady Haran, co-host of the Hello Internet podcast.", "website": "https://www.numberphile.com/", "subreddit": "/r/numberphile", "center": [85.5, 805.5], "path": [[81.5, 802.5], [88.5, 802.5], [88.5, 807.5], [81.5, 807.5], [81.5, 802.5]]}, {"id": "tx7c39", "submitted_by": "LeftEyeHole", "name": "Lily (Zombieland Saga)", "description": "Lily is a trans character from the Zombieland Saga anime (and subsequent manga), about a group of zombie idols.", "website": "", "subreddit": "/r/ZombielandSaga", "center": [552.5, 472.5], "path": [[547.5, 475.5], [547.5, 470.5], [548.5, 471.5], [551.5, 469.5], [553.5, 469.5], [554.5, 471.5], [556.5, 469.5], [556.5, 471.5], [557.5, 471.5], [557.5, 475.5]]}, -{"id": "tx7c2x", "submitted_by": "ostensacken", "name": "Mote con Huesillos", "description": "A sugary drink often sold by Chilean street vendors in summer. Produced with a nectar-like liquid created with dried peaches, cooked in sugar, water and cinnamon. It is then left to cool, after which its finally mixed with freshly cooked husked wheat", "website": "", "subreddit": "/r/chile", "center": [0.5, 0.5], "path": []}, {"id": "tx7c17", "submitted_by": "Ok_Cartographer_8937", "name": "The Chained Woman in Xuzhou, China", "description": "A group of Chinese dissidents united to raise awareness of human trafficking in China, especially trafficked women who were 'owned' by men to be their 'wives'. This artwork depicted a victim found in Xuzhou, China. She was chained, raped, and forced to give birth to 8 children. Instead of rescuing her and bringing the traffickers and rapists to justice, the CCP government has suppressed reports of this incident, banned discourse about it on social media, and arrested citizens who tried to investigate further. No journalists or volunteers have access to the victim after the government admitted her to psychiatric care. This work received a lot of help, including but not limited to Hong Kong people, Taiwanese people, and Chinese citizens in mainland and overseas.", "website": "https://en.wikipedia.org/wiki/Xuzhou_chained_woman_incident", "subreddit": "/r/china_place", "center": [921.5, 135.5], "path": [[893.5, 115.5], [949.5, 115.5], [949.5, 154.5], [893.5, 154.5], [893.5, 150.5]]}, {"id": "tx7bx6", "submitted_by": "Darth-Bailey", "name": "Violet Evergarden", "description": "An anime by Kyoto Animation. The story follows Violet Evergarden's journey of reintegrating back into society after the war is over and her search for her life's purpose now that she is no longer a soldier in order to understand the last words her mentor and guardian, Major Gilbert, had told her: \"I love you.\"", "website": "http://tv.violet-evergarden.jp/", "subreddit": "/r/VioletEvergarden", "center": [583.5, 1512.5], "path": [[574.5, 1502.5], [574.5, 1502.5], [574.5, 1502.5], [574.5, 1502.5], [574.5, 1502.5], [574.5, 1502.5], [574.5, 1502.5], [591.5, 1502.5], [591.5, 1521.5], [574.5, 1521.5], [574.5, 1512.5]]}, {"id": "tx7bit", "submitted_by": "l_u_c_a_r_i_o", "name": "Nuclear Authentication Disk (ss13)", "description": "A disk usually guarded by the captain and stolen by nuclear operatives. Fits snugly into a NanoTrasen-Brand Nuclear Fissile Explosive.", "website": "", "subreddit": "/r/ss13", "center": [1719.5, 592.5], "path": [[1713.5, 589.5], [1713.5, 592.5], [1715.5, 592.5], [1716.5, 593.5], [1717.5, 593.5], [1718.5, 594.5], [1719.5, 595.5], [1720.5, 596.5], [1720.5, 597.5], [1721.5, 597.5], [1722.5, 597.5], [1722.5, 596.5], [1723.5, 596.5], [1723.5, 594.5], [1724.5, 594.5], [1724.5, 592.5], [1724.5, 589.5], [1713.5, 589.5]]}, {"id": "tx7bis", "submitted_by": "Jimmy_the_squaremell", "name": "The Great Asoul and Monero War", "description": "A war between the Chinese Vtubers and the Monero Cryptobros that cause r/OriAndTheBlindForest much stress due to a alliance they had with both of them.", "website": "", "subreddit": "", "center": [1011.5, 487.5], "path": [[957.5, 509.5], [957.5, 498.5], [965.5, 499.5], [965.5, 465.5], [1060.5, 465.5], [1060.5, 509.5], [957.5, 509.5], [957.5, 509.5]]}, -{"id": "tx7bed", "submitted_by": "TricoartButEpic", "name": "Planet Zoo", "description": "A small, fan-made logo dedicated to the game Planet Zoo.", "website": "https://www.planetzoogame.com/", "subreddit": "/r/PlanetZoo", "center": [1740.5, 1706.5], "path": [[1733.5, 1700.5], [1747.5, 1700.5], [1747.5, 1712.5], [1733.5, 1712.5]]}, {"id": "tx7bc6", "submitted_by": "nonspecifique", "name": "The Blue Album", "description": "A mural of Weezer's Blue Album, made by nonspecifique, NJ7010, and BleachTheFox", "website": "https://weezer.com", "subreddit": "/r/weezer", "center": [1028.5, 1765.5], "path": [[1032.5, 1769.5], [1032.5, 1769.5], [1023.5, 1769.5], [1023.5, 1763.5], [1028.5, 1761.5], [1032.5, 1761.5]]}, {"id": "txcm43", "submitted_by": "King_trout", "name": "QRF BALLS", "description": "QRF BALLS \nQRF BALLS \nQRF BALLS", "website": "https://i.redd.it/xflbs5tfemr81.gif", "subreddit": "", "center": [703.5, 554.5], "path": [[701.5, 556.5], [701.5, 551.5], [705.5, 551.5], [705.5, 556.5], [701.5, 556.5], [701.5, 556.5], [701.5, 551.5], [705.5, 551.5], [705.5, 556.5], [701.5, 556.5], [705.5, 556.5], [705.5, 551.5], [701.5, 551.5]]}, {"id": "txcm3o", "submitted_by": "Doom_9", "name": "Link", "description": "Link is a fictional character and the main protagonist of Nintendo's video game series The Legend of Zelda. He appears in several incarnations over the course of the games, and also features in other Nintendo media, including merchandising comic books and animated series. He is one of Nintendo's main icons.", "website": "https://en.wikipedia.org/wiki/Link_(The_Legend_of_Zelda)", "subreddit": "/r/Zelda", "center": [1441.5, 341.5], "path": [[1437.5, 334.5], [1437.5, 344.5], [1438.5, 344.5], [1438.5, 346.5], [1444.5, 346.5], [1444.5, 345.5], [1445.5, 345.5], [1445.5, 344.5], [1446.5, 344.5], [1446.5, 341.5], [1445.5, 341.5], [1445.5, 338.5], [1444.5, 338.5], [1444.5, 337.5], [1443.5, 337.5], [1443.5, 336.5], [1439.5, 336.5], [1439.5, 337.5], [1438.5, 337.5]]}, -{"id": "txcm30", "submitted_by": "Mcclintonfortwo", "name": "Jacksonville Jaguars", "description": "DUVAL county, area code 904, home of the Jacksonville Jaguars. For most of my place it had the logo of the head of a Jaguar and a 16 to represent the current quarterback Trevor Lawrence. Destroyed by a combination of streamers, Ecuador, and Poland.", "website": "Jaguars.com", "subreddit": "/r/jaguars", "center": [1656.5, 567.5], "path": [[1689.5, 567.5], [1669.5, 560.5], [1660.5, 564.5], [1650.5, 557.5], [1651.5, 559.5], [1648.5, 549.5], [1635.5, 549.5], [1637.5, 577.5], [1673.5, 579.5]]}, +{"id": "txcm30", "submitted_by": "Mcclintonfortwo", "name": "Jacksonville Jaguars", "description": "DUVAL county, area code 904, home of the Jacksonville Jaguars. For most of my place it had the logo of the head of a Jaguar and a 16 to represent the current quarterback Trevor Lawrence. Destroyed by a combination of streamers, Ecuador, and Poland.", "website": "https://Jaguars.com", "subreddit": "/r/jaguars", "center": [1656.5, 567.5], "path": [[1689.5, 567.5], [1669.5, 560.5], [1660.5, 564.5], [1650.5, 557.5], [1651.5, 559.5], [1648.5, 549.5], [1635.5, 549.5], [1637.5, 577.5], [1673.5, 579.5]]}, {"id": "txcm05", "submitted_by": "code_Jester", "name": "Space-bee", "description": "A miniaturized pixel art of a \"greater domestic space-bee,\" a cute insect that acts as a mascot for the Goonstation servers of Space Station 13.", "website": "https://goonhub.com/", "subreddit": "/r/ss13", "center": [1698.5, 576.5], "path": [[1704.5, 576.5], [1701.5, 570.5], [1692.5, 571.5], [1694.5, 581.5], [1702.5, 581.5]]}, {"id": "txclxg", "submitted_by": "SmokyJosh", "name": "Twenty one pilots Trench", "description": "An East is Up logo with a yellow flower, representing the album and era of Trench. Yellow represents hope and kindness, especially from others, in the face of mental struggles. \n", "website": "", "subreddit": "/r/twentyonepilots", "center": [752.5, 660.5], "path": [[748.5, 654.5], [748.5, 667.5], [754.5, 667.5], [754.5, 659.5], [756.5, 658.5], [758.5, 655.5], [758.5, 654.5]]}, {"id": "txcltt", "submitted_by": "starkinmn", "name": "FC 47", "description": "Reference to an infamous song within the community known as Pike 47, or Roller Coaster Track Repair by Buckethead. The newer chart from 2021 is also known as one of the \"Big 7\". The song was originally charted back in 2016, and has not been FC'd (Full Comboed) yet after all this time. It's regarded as one of the most technical and endurance heavy songs as it is over 30 minutes long.", "website": "https://www.youtube.com/watch?v=UaOP1KkAWcs", "subreddit": "/r/CloneHero", "center": [971.5, 912.5], "path": [[969.5, 908.5], [973.5, 908.5], [973.5, 916.5], [969.5, 916.5], [969.5, 908.5]]}, @@ -5843,7 +5364,6 @@ {"id": "txcllq", "submitted_by": "wlphoenix", "name": "Pomu Rainpuff", "description": "Liver from Nijisanji's 1st EN wave (Lazulight). Good friends IRL with Hololive's Takanashi Kiara.", "website": "https://www.youtube.com/channel/UCP4nMSTdwU1KqYWu3UH5DHQ", "subreddit": "", "center": [1352.5, 1052.5], "path": [[1345.5, 1058.5], [1345.5, 1044.5], [1358.5, 1044.5], [1358.5, 1059.5]]}, {"id": "txcldl", "submitted_by": "Apprehensive-Being20", "name": "Simon Belmont", "description": "One of the many protagonists from the Castlevania franchise, Simon Belmont stands tall as one of the Belmont Clan\u2019s strongest and most iconic vampire hunters. Seeking representation for our community on r/Place, our team of Castlevania fans worked to create and protect Simon\u2019s sprite from the original NES Castlevania. Thank you to r/Belgium for letting us draw him here!", "website": "", "subreddit": "/r/castlevania", "center": [1324.5, 1041.5], "path": [[1324.5, 1025.5], [1316.5, 1031.5], [1316.5, 1031.5], [1316.5, 1054.5], [1331.5, 1054.5], [1331.5, 1035.5], [1328.5, 1025.5]]}, {"id": "txcl8f", "submitted_by": "Ender_of_Worlds", "name": "Goobert", "description": "A character from Inscryption", "website": "", "subreddit": "/r/inscryption", "center": [161.5, 293.5], "path": [[161.5, 284.5], [158.5, 291.5], [157.5, 301.5], [160.5, 298.5], [163.5, 298.5], [164.5, 299.5], [164.5, 294.5], [164.5, 292.5], [161.5, 286.5]]}, -{"id": "txcl4z", "submitted_by": "tehlu9prod", "name": "#RedInstead", "description": "A campaign usually seen in April (Autism Acceptance Month) to oppose the #LightItUpBlue campaign promoted by the Autism Speaks organization, despised by most autistic individuals.", "website": "", "subreddit": "/r/autism", "center": [278.5, 1855.5], "path": [[251.5, 1851.5], [304.5, 1851.5], [304.5, 1859.5], [251.5, 1859.5]]}, {"id": "txcl4g", "submitted_by": "ItzaMeLuigi_", "name": "Stratus Sword", "description": "Left sword from the Stratus Ranked logo.\n\nThe Stratus Network is a Minecraft PVP server focusing on competitive, team-based gamemodes.", "website": "https://stratus.network/", "subreddit": "", "center": [1777.5, 49.5], "path": [[1768.5, 48.5], [1768.5, 49.5], [1767.5, 49.5], [1768.5, 49.5], [1768.5, 50.5], [1768.5, 49.5], [1771.5, 49.5], [1771.5, 51.5], [1771.5, 50.5], [1782.5, 50.5], [1782.5, 49.5], [1783.5, 49.5], [1782.5, 49.5], [1782.5, 48.5], [1771.5, 48.5], [1771.5, 47.5], [1771.5, 49.5], [1768.5, 49.5], [1768.5, 48.5]]}, {"id": "txckih", "submitted_by": "Midnight_RainZ", "name": "Mari", "description": "Mari is a major supporting character in the indie game Omori. she was added in the canvas as her headspace version, and later was changed to her normal version", "website": "", "subreddit": "", "center": [1035.5, 836.5], "path": [[1046.5, 829.5], [1046.5, 843.5], [1041.5, 848.5], [1041.5, 850.5], [1040.5, 851.5], [1039.5, 852.5], [1036.5, 851.5], [1036.5, 849.5], [1035.5, 849.5], [1035.5, 851.5], [1034.5, 851.5], [1033.5, 852.5], [1032.5, 852.5], [1031.5, 851.5], [1030.5, 849.5], [1030.5, 846.5], [1029.5, 846.5], [1026.5, 846.5], [1026.5, 844.5], [1025.5, 843.5], [1025.5, 834.5], [1025.5, 830.5], [1025.5, 829.5], [1026.5, 828.5], [1027.5, 825.5], [1029.5, 822.5], [1031.5, 822.5], [1034.5, 821.5], [1036.5, 821.5], [1039.5, 821.5], [1042.5, 823.5], [1043.5, 824.5], [1044.5, 825.5], [1044.5, 826.5], [1045.5, 827.5], [1045.5, 828.5], [1046.5, 828.5]]}, {"id": "txcjyz", "submitted_by": "ImTheSoup", "name": "Infoman logo", "description": "Infoman is a televised series satirizing the current events of Quebec and Canada hosted by Jean-Ren\u00e9 Dufort on Ici Radio-Canada T\u00e9l\u00e9.", "website": "https://ici.radio-canada.ca/tele/infoman/site", "subreddit": "/r/quebec", "center": [1070.5, 1023.5], "path": [[1061.5, 1021.5], [1061.5, 1023.5], [1069.5, 1031.5], [1070.5, 1031.5], [1079.5, 1022.5], [1074.5, 1017.5], [1065.5, 1017.5], [1061.5, 1021.5]]}, @@ -5851,10 +5371,8 @@ {"id": "txcjn9", "submitted_by": "Ferretex", "name": "Kill Six Billion Demons", "description": "The demiurge Jagganoth from the webcomic Kill Six Billion Demons, created by Abbadon.\n\nBuilt as part of the web serial collaboration.", "website": "https://killsixbilliondemons.com/", "subreddit": "/r/killsixbilliondemons", "center": [1747.5, 1294.5], "path": [[1746.5, 1287.5], [1751.5, 1277.5], [1753.5, 1281.5], [1751.5, 1289.5], [1753.5, 1290.5], [1753.5, 1296.5], [1752.5, 1299.5], [1755.5, 1298.5], [1755.5, 1302.5], [1758.5, 1301.5], [1761.5, 1297.5], [1759.5, 1304.5], [1753.5, 1305.5], [1750.5, 1303.5], [1746.5, 1305.5], [1742.5, 1303.5], [1737.5, 1304.5], [1732.5, 1302.5], [1731.5, 1297.5], [1735.5, 1302.5], [1738.5, 1302.5], [1737.5, 1298.5], [1740.5, 1300.5], [1741.5, 1299.5], [1739.5, 1297.5], [1739.5, 1295.5], [1740.5, 1291.5], [1741.5, 1288.5], [1741.5, 1283.5], [1740.5, 1277.5], [1746.5, 1287.5], [1747.5, 1288.5], [1746.5, 1287.5], [1746.5, 1287.5], [1746.5, 1287.5]]}, {"id": "txcjdt", "submitted_by": "CRAZEDMETHOD", "name": "Columbus Blue Jackets (CBJ)", "description": "NHL team in Columbus Ohio. The number 80 represents their goalie who passed away in a tragic accident during the offseason named Matiss Kivlenieks", "website": "", "subreddit": "/r/BlueJackets", "center": [564.5, 1380.5], "path": [[560.5, 1367.5], [567.5, 1367.5], [567.5, 1392.5], [560.5, 1392.5]]}, {"id": "txcjdn", "submitted_by": "sepiaknight", "name": "VFA", "description": "The logo for the Victorville Film Archives, bastion of film expertice. Run by film buff and movie expert Gregg Turkington and major contributor to real movie knowledge to the On Cinema At The Cinema universe, currently hosted by Tim Heidecker's HEI Network (see HEI Network above)", "website": "https://vfa.expert/", "subreddit": "/r/OnCinemaAtTheCinema", "center": [1826.5, 157.5], "path": [[1821.5, 155.5], [1821.5, 158.5], [1831.5, 158.5], [1831.5, 155.5]]}, -{"id": "txcjdf", "submitted_by": "BokerBigBanana", "name": "The OSU logo", "description": "The OSU logo is unkillable. It was here 5 years ago and it's here again. At multiple points in r/place 2022, it has been completely obscured, but persevered and came back to form.", "website": "https://osu.ppy.sh/home", "subreddit": "/r/osugame", "center": [726.5, 728.5], "path": [[720.5, 681.5], [737.5, 682.5], [751.5, 685.5], [765.5, 697.5], [774.5, 719.5], [774.5, 735.5], [771.5, 734.5], [771.5, 754.5], [761.5, 764.5], [750.5, 772.5], [734.5, 777.5], [720.5, 777.5], [695.5, 766.5], [683.5, 751.5], [677.5, 734.5], [677.5, 723.5], [678.5, 710.5], [684.5, 702.5], [687.5, 696.5], [701.5, 685.5], [718.5, 680.5]]}, -{"id": "txcjdb", "submitted_by": "ozymandias4273", "name": "pepeD", "description": "An animated BetterTTV extension Twitch emote of a pixel art animation of Pepe the Frog dancing.", "website": "twitch.tv", "subreddit": "", "center": [895.5, 725.5], "path": [[889.5, 721.5], [901.5, 721.5], [901.5, 728.5], [889.5, 728.5]]}, +{"id": "txcjdb", "submitted_by": "ozymandias4273", "name": "pepeD", "description": "An animated BetterTTV extension Twitch emote of a pixel art animation of Pepe the Frog dancing.", "website": "https://twitch.tv", "subreddit": "", "center": [895.5, 725.5], "path": [[889.5, 721.5], [901.5, 721.5], [901.5, 728.5], [889.5, 728.5]]}, {"id": "txcix6", "submitted_by": "tantanoid", "name": "Kozak", "description": "Cossacks were a male military semi-nomadic group, their descendants form an ethnicity with the same name. Currently a symbol of Ukrainian military independence and democracy.", "website": "", "subreddit": "", "center": [121.5, 230.5], "path": [[141.5, 220.5], [135.5, 213.5], [129.5, 211.5], [121.5, 211.5], [111.5, 218.5], [109.5, 222.5], [114.5, 223.5], [113.5, 234.5], [107.5, 242.5], [107.5, 252.5], [125.5, 252.5], [124.5, 239.5], [131.5, 231.5], [133.5, 225.5]]}, -{"id": "txcink", "submitted_by": "TheIndieArmy", "name": "Formula 1 2022 Teams", "description": "A collection of all 2022 Formula 1 motorsport teams, along with the Formula 1 logo itself.\n\nMoving left and moving right, the teams are... \n\nTop Row: Mercedes, Red Bull Racing, McLaren, Williams, Alpine, AlphaTauri(Top), Aston Martin (Bottom) \n\nBottom Row: Alfa Romeo, Haas F1 Team, Ferrari", "website": "", "subreddit": "/r/Formula1", "center": [509.5, 797.5], "path": [[448.5, 769.5], [448.5, 825.5], [570.5, 823.5], [570.5, 769.5]]}, {"id": "txcil1", "submitted_by": "dmncss", "name": "CIX", "description": "CIX (Complete in X) is a South Korean K-pop boy group formed by C9 Entertainment. They debuted on July 23, 2019 with their first EP titled HELLO Chapter 1: Hello, Stranger. The group consists of five \nmembers: BX, Seunghun, Yonghee, Bae Jinyoung, and Hyunsuk.", "website": "https://www.youtube.com/channel/UCuaslC77K-NmCy8Xwk7x0hA", "subreddit": "/r/CIX_C9", "center": [1597.5, 200.5], "path": [[1588.5, 196.5], [1605.5, 196.5], [1605.5, 204.5], [1588.5, 204.5]]}, {"id": "txcib9", "submitted_by": "AlexeiM", "name": "Salte\u00f1a", "description": "A baked empanada from Bolivia.", "website": "", "subreddit": "/r/Bolivia", "center": [1557.5, 1221.5], "path": [[1549.5, 1232.5], [1547.5, 1213.5], [1556.5, 1207.5], [1565.5, 1215.5], [1566.5, 1222.5], [1565.5, 1233.5], [1548.5, 1232.5]]}, {"id": "txci1c", "submitted_by": "ReV3nGeV1", "name": "Sykkuno's pet Bimbus", "description": "Sykkuno Bichon Frise Poodle dog named Bimbus", "website": "https://www.twitch.tv/sykkuno", "subreddit": "/r/sykkuno", "center": [1865.5, 1632.5], "path": [[1861.5, 1628.5], [1868.5, 1628.5], [1868.5, 1635.5], [1861.5, 1635.5]]}, @@ -5866,69 +5384,60 @@ {"id": "txcfph", "submitted_by": "NtaiRay", "name": "Ukrainian Farmer Stealing Tanks", "description": "During the 2022 Russian invasion of Ukraine, Lots of abandonned Russian vehicles were stolen by Ukrainian Farmers.", "website": "https://www.rferl.org/a/ukraine-russian-invasion-tanks-towed-tractors/31756402.html", "subreddit": "", "center": [355.5, 205.5], "path": [[387.5, 212.5], [365.5, 211.5], [359.5, 200.5], [354.5, 211.5], [321.5, 211.5], [331.5, 198.5], [384.5, 200.5], [387.5, 207.5]]}, {"id": "txcfmm", "submitted_by": "jayriemenschneider", "name": "Norm MacDonald Live", "description": "Dedicated to the late comedian, Norm MacDonald, and his former podcast titled Norm MacDonald Live. Also includes a depiction of Turd Ferguson, a character MacDonald portrayed on Saturday Night Live's Celebrity Jeopardy", "website": "", "subreddit": "/r/normmacdonald", "center": [557.5, 1722.5], "path": [[542.5, 1712.5], [542.5, 1712.5], [572.5, 1712.5], [573.5, 1732.5], [542.5, 1731.5], [542.5, 1731.5]]}, {"id": "txcfik", "submitted_by": "Shoxidizer", "name": "Ever Expanding Bunker", "description": "A logo used in a collaborative world building community about an underground bunker.", "website": "", "subreddit": "/r/everexpandingbunker", "center": [1820.5, 1457.5], "path": [[1820.5, 1453.5], [1817.5, 1456.5], [1817.5, 1459.5], [1823.5, 1459.5], [1823.5, 1456.5]]}, -{"id": "txcfbg", "submitted_by": "TrevorAlan", "name": "Raising the Flag on Iwo Jima", "description": "Depiction of the iconic photograph, Raising the Flag on Iwo Jima. This was it's final design after much competition with the hive mind and other's not privvy to the design, trying to make the flag a comically flat square.", "website": "", "subreddit": "", "center": [1946.5, 1854.5], "path": [[1931.5, 1838.5], [1944.5, 1851.5], [1942.5, 1852.5], [1940.5, 1854.5], [1941.5, 1856.5], [1941.5, 1857.5], [1940.5, 1859.5], [1939.5, 1861.5], [1939.5, 1863.5], [1937.5, 1867.5], [1958.5, 1867.5], [1958.5, 1865.5], [1960.5, 1867.5], [1961.5, 1866.5], [1947.5, 1852.5], [1950.5, 1851.5], [1953.5, 1849.5], [1954.5, 1848.5], [1953.5, 1847.5], [1952.5, 1845.5], [1951.5, 1843.5], [1949.5, 1841.5], [1947.5, 1840.5], [1946.5, 1839.5], [1944.5, 1839.5], [1944.5, 1838.5]]}, -{"id": "txcf8d", "submitted_by": "MTjong", "name": "Fuslie's logo", "description": "Logo for Twitch streamer Fuslie", "website": "twitch.tv/fuslie", "subreddit": "/r/fuslie", "center": [1865.5, 1623.5], "path": [[1861.5, 1619.5], [1868.5, 1619.5], [1868.5, 1627.5], [1861.5, 1627.5]]}, -{"id": "txcepl", "submitted_by": "ebbster", "name": "TV logo", "description": "the remaining of JTV, without the antenna", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "txcelg", "submitted_by": "Linku_Rink", "name": "One World Trade Center", "description": "The One World Trade Center, or formally known as the Freedom Tower, is the main building of the rebuilt World Trade Center complex in Lower Manhattan, NYC. One WTC is the tallest building in the United States, and the seventh-tallest in the world. Always Remember. Never Forget.", "website": "https://www.wtc.com/", "subreddit": "", "center": [1960.5, 1835.5], "path": [[1954.5, 1832.5], [1954.5, 1823.5], [1955.5, 1823.5], [1955.5, 1804.5], [1956.5, 1804.5], [1956.5, 1803.5], [1957.5, 1803.5], [1957.5, 1802.5], [1958.5, 1802.5], [1959.5, 1802.5], [1959.5, 1801.5], [1959.5, 1800.5], [1960.5, 1775.5], [1961.5, 1801.5], [1961.5, 1802.5], [1962.5, 1802.5], [1963.5, 1802.5], [1963.5, 1803.5], [1964.5, 1803.5], [1965.5, 1803.5], [1965.5, 1804.5], [1965.5, 1805.5], [1965.5, 1808.5], [1966.5, 1846.5], [1966.5, 1847.5], [1967.5, 1847.5], [1967.5, 1867.5], [1954.5, 1867.5], [1953.5, 1843.5], [1954.5, 1843.5], [1954.5, 1823.5], [1954.5, 1823.5]]}, +{"id": "txcf8d", "submitted_by": "MTjong", "name": "Fuslie's logo", "description": "Logo for Twitch streamer Fuslie", "website": "https://twitch.tv/fuslie", "subreddit": "/r/fuslie", "center": [1865.5, 1623.5], "path": [[1861.5, 1619.5], [1868.5, 1619.5], [1868.5, 1627.5], [1861.5, 1627.5]]}, +{"id": "txcelg", "submitted_by": "Linku_Rink", "name": "One World Trade Center", "description": "The One World Trade Center, formally known as the Freedom Tower, is the main building of the rebuilt World Trade Center complex in Lower Manhattan, New York City. At a height of 1,776 feet, One WTC is the tallest building in the United States, and the seventh-tallest in the world. Originally, this art depicted the Twin Towers, but during a grief it was replaced with the OWTC. Always Remember. Never Forget.", "website": "https://www.wtc.com/", "subreddit": "", "center": [1960.5, 1835.5], "path": [[1954.5, 1832.5], [1954.5, 1823.5], [1955.5, 1823.5], [1955.5, 1804.5], [1956.5, 1804.5], [1956.5, 1803.5], [1957.5, 1803.5], [1957.5, 1802.5], [1958.5, 1802.5], [1959.5, 1802.5], [1959.5, 1801.5], [1959.5, 1800.5], [1960.5, 1775.5], [1961.5, 1801.5], [1961.5, 1802.5], [1962.5, 1802.5], [1963.5, 1802.5], [1963.5, 1803.5], [1964.5, 1803.5], [1965.5, 1803.5], [1965.5, 1804.5], [1965.5, 1805.5], [1965.5, 1808.5], [1966.5, 1846.5], [1966.5, 1847.5], [1967.5, 1847.5], [1967.5, 1867.5], [1954.5, 1867.5], [1953.5, 1843.5], [1954.5, 1843.5], [1954.5, 1823.5], [1954.5, 1823.5]]}, {"id": "txcel5", "submitted_by": "TwitterVee63", "name": "Among us Little Guy", "description": "Highlighted to show the talented skills of MrCow72", "website": "", "subreddit": "/r/MrCow72", "center": [0.5, 0.5], "path": [[1493.5, 1995.5], [1496.5, 1995.5], [1496.5, 1996.5], [1493.5, 1996.5], [1493.5, 1997.5], [1496.5, 1997.5], [1496.5, 1998.5], [1493.5, 1998.5], [1493.5, 1999.5], [1496.5, 1999.5]]}, {"id": "txce4i", "submitted_by": "Jervdvinne", "name": "Vulture Maksk(Rainworld)", "description": "A Vulture mask from the 2017 game Rain World", "website": "", "subreddit": "/r/rainwold", "center": [1104.5, 555.5], "path": [[1102.5, 551.5], [1100.5, 554.5], [1100.5, 557.5], [1103.5, 561.5], [1103.5, 558.5], [1105.5, 558.5], [1105.5, 561.5], [1107.5, 559.5], [1107.5, 557.5], [1108.5, 557.5], [1108.5, 553.5], [1106.5, 551.5]]}, {"id": "txcdsn", "submitted_by": "ILostMyBagOfPecans", "name": "Dino", "description": "A small dino built by the bool bois after battling for the position over 3 days. Allied with the Kansas City Chiefs, The Kansas City Royals, Escape from Tarkov, and the muffin below.", "website": "https://www.mariokartcentral.com/mkc/registry/teams/535", "subreddit": "", "center": [1998.5, 450.5], "path": [[1999.5, 447.5], [1995.5, 452.5], [1999.5, 452.5]]}, {"id": "txcdav", "submitted_by": "ozymandias4273", "name": "University of South Carolina", "description": "The logo of the University of South Carolina.", "website": "https://sc.edu/", "subreddit": "/r/gamecocks", "center": [302.5, 1605.5], "path": [[296.5, 1601.5], [308.5, 1601.5], [308.5, 1609.5], [296.5, 1609.5]]}, {"id": "txcd84", "submitted_by": "rightsquestion", "name": "DLSU and Ateneo", "description": "Originally contained a message saying DLSU SUX <3 ATENEO in blue and light blue, which are colors generally associated with the Ateneo.\n \nDe La Salle University (DLSU) and Ateneo de Manila University (the Ateneo) are two private Catholic Philippine universities engaged in an infamous and long-running rivalry in the UAAP and previously in the NCAA, the Philippine collegiate sports leagues.\n\nThe pixel art was altered later on, primarily by the replacement of the letters in \"ATENEO\" with amongi. Some of the other alterations were presumably by redditors from DLSU who replaced the Ateneo colors with DLSU's green and white. Other communities also inserted their own pixel art when the Ateneo redditors failed to defend the space, but did not finish in time to completely fill the area.\n", "website": "", "subreddit": "/r/Philippines", "center": [1488.5, 387.5], "path": [[1481.5, 373.5], [1481.5, 372.5], [1481.5, 401.5], [1495.5, 401.5], [1495.5, 372.5], [1481.5, 372.5], [1481.5, 401.5], [1481.5, 378.5]]}, -{"id": "txcd40", "submitted_by": "MTjong", "name": "Valkyrae and Mika", "description": "Streamer Valkyrae and her dog Mika", "website": "youtube.com/valkyrae1", "subreddit": "/r/valkyrae", "center": [1857.5, 1651.5], "path": [[1853.5, 1644.5], [1853.5, 1644.5], [1853.5, 1644.5], [1853.5, 1644.5], [1860.5, 1644.5], [1860.5, 1657.5], [1853.5, 1657.5]]}, +{"id": "txcd40", "submitted_by": "MTjong", "name": "Valkyrae and Mika", "description": "Streamer Valkyrae and her dog Mika", "website": "https://youtube.com/valkyrae1", "subreddit": "/r/valkyrae", "center": [1857.5, 1651.5], "path": [[1853.5, 1644.5], [1853.5, 1644.5], [1853.5, 1644.5], [1853.5, 1644.5], [1860.5, 1644.5], [1860.5, 1657.5], [1853.5, 1657.5]]}, {"id": "txcd0e", "submitted_by": "Willsr71", "name": "Maine", "description": "The State of Maine, USA", "website": "", "subreddit": "/r/maine", "center": [1726.5, 1985.5], "path": [[1721.5, 1978.5], [1730.5, 1978.5], [1730.5, 1992.5], [1721.5, 1992.5]]}, {"id": "txccoe", "submitted_by": "TVMAN123", "name": "Infoman", "description": "Logo of the satirical news program Infoman with the host Jean-Ren\u00e9 Dufort", "website": "", "subreddit": "/r/Quebec", "center": [1070.5, 1023.5], "path": [[1065.5, 1019.5], [1065.5, 1017.5], [1074.5, 1017.5], [1079.5, 1022.5], [1070.5, 1031.5], [1069.5, 1031.5], [1061.5, 1023.5], [1061.5, 1021.5], [1064.5, 1018.5]]}, -{"id": "txccdr", "submitted_by": "TrevorAlan", "name": "Golden Gate Bridge", "description": "The Golden Gate Bridge is a suspension bridge spanning the Golden Gate, the one-mile-wide strait connecting San Francisco Bay and the Pacific Ocean.", "website": "", "subreddit": "/r/AmericanFlagInPlace", "center": [1799.5, 1848.5], "path": [[1774.5, 1840.5], [1788.5, 1829.5], [1788.5, 1826.5], [1790.5, 1826.5], [1792.5, 1828.5], [1794.5, 1828.5], [1796.5, 1826.5], [1798.5, 1826.5], [1799.5, 1833.5], [1803.5, 1840.5], [1807.5, 1847.5], [1810.5, 1850.5], [1817.5, 1845.5], [1819.5, 1839.5], [1823.5, 1840.5], [1823.5, 1849.5], [1832.5, 1859.5], [1832.5, 1862.5], [1824.5, 1860.5], [1824.5, 1868.5], [1819.5, 1867.5], [1818.5, 1860.5], [1799.5, 1855.5], [1798.5, 1868.5], [1795.5, 1868.5], [1795.5, 1856.5], [1791.5, 1856.5], [1789.5, 1868.5], [1787.5, 1868.5], [1787.5, 1856.5], [1784.5, 1853.5], [1775.5, 1854.5]]}, +{"id": "txccdr", "submitted_by": "TrevorAlan", "name": "Golden Gate Bridge", "description": "The Golden Gate Bridge is a suspension bridge spanning the Golden Gate, the one-mile-wide strait connecting San Francisco Bay and the Pacific Ocean. It was the longest suspension bridge in the world at the time of completion.", "website": "https://en.wikipedia.org/wiki/Golden_Gate_Bridge", "subreddit": "/r/AmericanFlagInPlace", "center": [1799.5, 1848.5], "path": [[1774.5, 1840.5], [1788.5, 1829.5], [1788.5, 1826.5], [1790.5, 1826.5], [1792.5, 1828.5], [1794.5, 1828.5], [1796.5, 1826.5], [1798.5, 1826.5], [1799.5, 1833.5], [1803.5, 1840.5], [1807.5, 1847.5], [1810.5, 1850.5], [1817.5, 1845.5], [1819.5, 1839.5], [1823.5, 1840.5], [1823.5, 1849.5], [1832.5, 1859.5], [1832.5, 1862.5], [1824.5, 1860.5], [1824.5, 1868.5], [1819.5, 1867.5], [1818.5, 1860.5], [1799.5, 1855.5], [1798.5, 1868.5], [1795.5, 1868.5], [1795.5, 1856.5], [1791.5, 1856.5], [1789.5, 1868.5], [1787.5, 1868.5], [1787.5, 1856.5], [1784.5, 1853.5], [1775.5, 1854.5]]}, {"id": "txcccn", "submitted_by": "bunsonh", "name": "Norm Macdonald", "description": "Norm Macdonald was an American comedian and actor. He hosted a podcast named Norm MacDonald Live. He is depicted in this image as his role from Saturday Night Live playing actor Burt Reynolds as his pseudonymous Turd Ferguson from a sketch parodying the gameshow Jeopardy.", "website": "https://en.wikipedia.org/wiki/Norm_Macdonald", "subreddit": "/r/NormMacdonald", "center": [557.5, 1721.5], "path": [[541.5, 1712.5], [542.5, 1731.5], [574.5, 1731.5], [572.5, 1711.5]]}, -{"id": "txcc07", "submitted_by": "HakaseShinonome", "name": "Constantiam Logo", "description": "The Constantiam C and permanent server MOTD.", "website": "https://constantiam.net/", "subreddit": "/r/constantiam", "center": [1799.5, 42.5], "path": [[1785.5, 35.5], [1814.5, 35.5], [1814.5, 49.5], [1785.5, 50.5], [1785.5, 35.5]]}, {"id": "txcbkm", "submitted_by": "Wildelonelysea", "name": "DeqiuV", "description": "Spanish streamer, Pou proplayer and expert in throwing monsters on his keyboard, come see him get tilt when he plays Valorant (he is actually really good)", "website": "https://www.twitch.tv/deqiuv", "subreddit": "/r/deqiuv", "center": [1107.5, 1308.5], "path": [[1083.5, 1303.5], [1131.5, 1303.5], [1131.5, 1312.5], [1083.5, 1312.5], [1083.5, 1303.5]]}, -{"id": "txcbfb", "submitted_by": "worldinger", "name": "Turd Ferguson", "description": "I found this backstage, an over-sized hat. It's funny. It's funny because it's ah, bigger than, ah.... you know, a normal hat.", "website": "https://www.youtube.com/watch?v=bEghu90QJH4", "subreddit": "/r/NormMacdonald", "center": [0.5, 0.5], "path": []}, {"id": "txcbdx", "submitted_by": "Isengrine", "name": "Quetzal", "description": "Quetzals are strikingly colored birds. They are found in forests, especially in humid highlands, being exclusively found in Mexico and Central America.\nThe resplendent quetzal is the national bird of Guatemala because of its vibrant colour. The Quetzal being also the name of the currency of Guatemala.", "website": "", "subreddit": "", "center": [804.5, 1214.5], "path": [[797.5, 1208.5], [797.5, 1221.5], [810.5, 1221.5], [810.5, 1207.5], [797.5, 1207.5]]}, {"id": "txcb6d", "submitted_by": "ReV3nGeV1", "name": "Kkatamina symbol", "description": "The symbol of twitch streamer Kkatamina\n\nIt features her Minecraft skin \"MC Steve\" with the :] face\n\n", "website": "https://www.twitch.tv/kkatamina", "subreddit": "", "center": [1857.5, 1623.5], "path": [[1853.5, 1619.5], [1860.5, 1619.5], [1860.5, 1627.5], [1853.5, 1627.5], [1853.5, 1619.5]]}, {"id": "txcar7", "submitted_by": "OrionDusk", "name": "The Great Diamond Authority Insignia", "description": "An insignia of the Great Diamond Authority from Steven Universe.", "website": "", "subreddit": "/r/stevenuniverse", "center": [477.5, 1036.5], "path": [[477.5, 1029.5], [472.5, 1035.5], [477.5, 1042.5], [482.5, 1036.5], [482.5, 1036.5], [477.5, 1029.5]]}, -{"id": "txcaer", "submitted_by": "MTjong", "name": "Bimbus", "description": "Twitch streamer Sykkuno's dog Bimbus", "website": "twitch.tv/sykkuno", "subreddit": "/r/sykkuno", "center": [1865.5, 1632.5], "path": [[1861.5, 1628.5], [1868.5, 1628.5], [1868.5, 1635.5], [1861.5, 1635.5]]}, +{"id": "txcaer", "submitted_by": "MTjong", "name": "Bimbus", "description": "Twitch streamer Sykkuno's dog Bimbus", "website": "https://twitch.tv/sykkuno", "subreddit": "/r/sykkuno", "center": [1865.5, 1632.5], "path": [[1861.5, 1628.5], [1868.5, 1628.5], [1868.5, 1635.5], [1861.5, 1635.5]]}, {"id": "txc9m6", "submitted_by": "MTjong", "name": "The roomies' pets", "description": "Pets owned by roommates and streamers kkatamina, yvonnie, and fuslie. Clockwise from top left: kkatamina's chicken (dog) Nabi, fuslie's cat Sock, yvonnie's cat Somi, and kkatamina's nameless lil cat", "website": "", "subreddit": "", "center": [1857.5, 1632.5], "path": [[1853.5, 1628.5], [1860.5, 1628.5], [1860.5, 1635.5], [1853.5, 1635.5]]}, {"id": "txc9fy", "submitted_by": "sodapone", "name": "Piano Woman (VA-11 HALL-A)", "description": "A drink from the indie game VA-11 HALL-A, partially named after the song by Billy Joel. 'It was originally called Pretty Woman, but too many people complained there should be a Piano Woman if there was a Piano Man.'", "website": "", "subreddit": "", "center": [1753.5, 714.5], "path": [[1756.5, 708.5], [1755.5, 708.5], [1754.5, 707.5], [1753.5, 708.5], [1752.5, 709.5], [1752.5, 710.5], [1751.5, 711.5], [1751.5, 713.5], [1750.5, 714.5], [1750.5, 716.5], [1752.5, 718.5], [1751.5, 721.5], [1754.5, 721.5], [1754.5, 718.5], [1756.5, 716.5], [1756.5, 714.5], [1755.5, 713.5], [1755.5, 711.5], [1755.5, 709.5]]}, -{"id": "txc8zj", "submitted_by": "SquishedDucks", "name": "InuYasha", "description": "Inuyasha was a popular anime and manga during the early 2000s. It follows Kagome Higurashi, a 3rd year middle school student who comes from a family of shrine keepers, and Inuyasha, a half-demon, half-human from the Sengoku period of Japan.", "website": "", "subreddit": "/r/inuyasha", "center": [1583.5, 38.5], "path": [[1567.5, 34.5], [1567.5, 41.5], [1599.5, 41.5], [1599.5, 34.5]]}, +{"id": "txc8zj", "submitted_by": "SquishedDucks", "name": "InuYasha", "description": "Inuyasha was a popular anime and manga during the early 2000s. It follows Kagome Higurashi, a 3rd year middle school student who comes from a family of shrine keepers, and Inuyasha, a half-demon, half-human from the Sengoku period of Japan.", "website": "", "subreddit": "/r/inuyasha", "center": [1583.5, 38.5], "path": [[1567.5, 34.5], [1567.5, 41.5], [1599.5, 41.5], [1599.5, 34.5], [1567.5, 34.5]]}, {"id": "txc8y5", "submitted_by": "WeyherMan", "name": "Columbus Blue Jackets", "description": "A small banner for the NHL team Columbus Blue Jackets. The number 80 signifies remembrance for the passing of goalkeeper Matiss Kivlenieks.\n", "website": "", "subreddit": "/r/BlueJackets", "center": [563.5, 1379.5], "path": [[564.5, 1379.5], [564.5, 1379.5], [560.5, 1367.5], [567.5, 1367.5], [567.5, 1392.5], [560.5, 1392.5], [560.5, 1367.5], [565.5, 1375.5], [565.5, 1375.5], [564.5, 1378.5]]}, {"id": "txc8pr", "submitted_by": "muffinmutt", "name": "Kanohi Hau", "description": "Toa Tahu's mask from the 2001 Lego Bionicle set.", "website": "", "subreddit": "/r/bioniclelego", "center": [1153.5, 452.5], "path": [[1146.5, 459.5], [1160.5, 459.5], [1160.5, 448.5], [1154.5, 444.5], [1150.5, 445.5], [1146.5, 447.5], [1146.5, 456.5]]}, -{"id": "txc8fz", "submitted_by": "Corboro99", "name": "Feh the Owl", "description": "Feh is the mascot of Fire Emblem Heroes, a mobile game based on the Fire Emblem series of games.", "website": "", "subreddit": "/r/fireemblemheroes", "center": [0.5, 0.5], "path": []}, {"id": "txc7kr", "submitted_by": "gothic_rage", "name": "SDV Banner", "description": "A small banner made over the top of the Hat Mouse with the abbreviation of Stardew Valley (SDV) and some small imagery from the game.", "website": "https://www.stardewvalley.net/", "subreddit": "/r/StardewValley", "center": [1739.5, 1004.5], "path": [[1709.5, 1000.5], [1709.5, 1007.5], [1768.5, 1007.5], [1768.5, 1000.5]]}, {"id": "txc7jt", "submitted_by": "sodapone", "name": "Sugar Rush (VA-11 HALL-A)", "description": "A drink from the indie game VA-11 HALL-A, and often the first drink that most players make, as it is required by the tutorial. 'Sweet, light and fruity. As girly as it gets.'", "website": "", "subreddit": "", "center": [1763.5, 730.5], "path": [[1761.5, 726.5], [1764.5, 726.5], [1764.5, 733.5], [1763.5, 734.5], [1762.5, 734.5], [1761.5, 733.5]]}, {"id": "txc7bx", "submitted_by": "bunnyduckisluck", "name": "SHINee", "description": "SHINee is a K-pop group whose impact has earned them the title ~Princes of K-pop~. SHINee will forever be known for their five members: Onew, Jonghyun, Key, Minho, and Taemin.", "website": "https://www.youtube.com/watch?v=PSYRbJjIT6U", "subreddit": "/r/SHINee", "center": [1518.5, 956.5], "path": [[1510.5, 949.5], [1510.5, 963.5], [1525.5, 963.5], [1525.5, 949.5]]}, {"id": "txc73e", "submitted_by": "Tresnore", "name": "Grateful Dead Stealie", "description": "A Stealie, which is a popular emblem of The Grateful Dead.", "website": "", "subreddit": "/r/gratefuldead", "center": [13.5, 916.5], "path": [[12.5, 903.5], [7.5, 903.5], [5.5, 905.5], [2.5, 907.5], [1.5, 908.5], [0.5, 909.5], [0.5, 922.5], [1.5, 923.5], [9.5, 930.5], [16.5, 930.5], [21.5, 926.5], [24.5, 924.5], [25.5, 920.5], [26.5, 918.5], [26.5, 913.5], [25.5, 910.5], [25.5, 912.5], [24.5, 909.5], [23.5, 907.5], [21.5, 906.5], [21.5, 905.5], [19.5, 904.5], [16.5, 903.5]]}, -{"id": "txc6t0", "submitted_by": "ajlev", "name": "Door Monster Logo", "description": "A youtube channel known for its video game or board game based skits, often based around D&D.", "website": "https://www.youtube.com/c/DoorMonster/featured", "subreddit": "/r/DoorMonster", "center": [0.5, 0.5], "path": []}, {"id": "txc6c9", "submitted_by": "venex100prej", "name": "Venezuelan Place", "description": "Venezuelans joined forces to create and protect their most precious national symbols. From left to right: Angel Falls (Salto \u00c1ngel), Araguaney (Venezuela's national tree), arepa (famous Venezuelan corn cake), Malta Polar (famous beverage), and empanada.\nIt is also visible Venezuela's official flag which consists of three stripes (yellow, blue, and red), eight stars on the blue stripe, and the coat of arms located at the top left corner.\nLike the rest of the canvas, this space was not constructed without controversy. Some Venezuelans wanted the flag to not show the coat of arms and to only have seven stars instead of eight. This is mostly due to a political dispute. Additionally, there were also conflicts among Venezuelans, Ecuadorians, and Colombians. A big group represented by all three countries wanted to create a unified space to showcase the three different cultures. However, this was ultimately not possible due to the lack of cooperation from one-sided streamers. There is hope for a unified Gran Colombia once /r/place comes back again.", "website": "", "subreddit": "/r/placevenezuela", "center": [1241.5, 789.5], "path": [[1200.5, 773.5], [1282.5, 774.5], [1281.5, 805.5], [1200.5, 805.5], [1200.5, 805.5], [1200.5, 789.5], [1200.5, 773.5]]}, {"id": "txc6a4", "submitted_by": "GameLaser", "name": "Geometry Dash Demon Face", "description": "The icon for a level of the Hard Demon difficulty in the platforming game Geometry Dash. Started by the members of the Geometry Dash Demon Progression Server(GDDP), this project was then enhanced by other parts of the community by adding more details to the face.", "website": "", "subreddit": "/r/geometrydash", "center": [1019.5, 373.5], "path": [[1028.5, 384.5], [1010.5, 384.5], [1010.5, 362.5], [1028.5, 362.5]]}, {"id": "txc63w", "submitted_by": "ShardddddddDon", "name": "Failure Bottle", "description": "I am serious. You cannot use this.", "website": "", "subreddit": "/r/inscryption", "center": [160.5, 293.5], "path": [[156.5, 299.5], [158.5, 301.5], [162.5, 297.5], [165.5, 300.5], [164.5, 290.5], [160.5, 284.5], [157.5, 291.5]]}, {"id": "txc5f3", "submitted_by": "Piboom", "name": "Starman", "description": "The starman powerup from the Super Mario video game series.", "website": "", "subreddit": "", "center": [881.5, 1864.5], "path": [[872.5, 1858.5], [890.5, 1858.5], [890.5, 1870.5], [872.5, 1870.5], [872.5, 1870.5], [872.5, 1865.5], [872.5, 1861.5]]}, -{"id": "txc5dw", "submitted_by": "iam_a_waterjug", "name": "Milwaukee Flag", "description": "The people's flag of Milwaukee.", "website": "https://discord.gg/mke", "subreddit": "/r/milwaukee", "center": [1390.5, 1956.5], "path": [[1383.5, 1950.5], [1383.5, 1962.5], [1396.5, 1962.5], [1396.5, 1950.5], [1396.5, 1950.5]]}, +{"id": "txc5dw", "submitted_by": "iam_a_waterjug", "name": "Milwaukee Flag", "description": "The people's flag of Milwaukee. Intially located near the ZZZ logo, it was conquered by the taskbar. After making an agreement with Greece, the flag migrated to it's current location. In order to defend it's borders it formed a quintuple alliance of mutual defense with Kurdistan, Brand New Animal, Greece, and Mr. Robot. With these 5 factions fighting as one, they repelled multiple raid attempts, making it all the way to the great Anti Void.", "website": "https://discord.gg/mke", "subreddit": "/r/milwaukee", "center": [1390.5, 1956.5], "path": [[1383.5, 1950.5], [1383.5, 1962.5], [1396.5, 1962.5], [1396.5, 1950.5], [1396.5, 1950.5]]}, {"id": "txc54p", "submitted_by": "bunsonh", "name": "Phish - Donut pattern", "description": "The red-on-blue donut pattern refers to the color and pattern worn by drummer Jon Fishman from the American rock band Phish. The pattern itself has become a symbol that represents the band and its fanbase.", "website": "https://phish.com", "subreddit": "/r/phish", "center": [65.5, 911.5], "path": [[0.5, 873.5], [0.5, 882.5], [27.5, 882.5], [27.5, 874.5], [42.5, 889.5], [42.5, 892.5], [28.5, 904.5], [27.5, 898.5], [0.5, 898.5], [0.5, 944.5], [94.5, 941.5], [100.5, 929.5], [129.5, 929.5], [135.5, 931.5], [135.5, 898.5], [57.5, 898.5], [57.5, 905.5], [43.5, 892.5], [43.5, 888.5], [56.5, 875.5], [57.5, 882.5], [153.5, 882.5], [153.5, 873.5]]}, -{"id": "txc4qw", "submitted_by": "MTjong", "name": "Sykkuno's green scarf", "description": "A green scarf associated with Twitch streamer Sykkuno", "website": "twitch.tv/sykkuno", "subreddit": "/r/sykkuno", "center": [1871.5, 1627.5], "path": [[1869.5, 1619.5], [1872.5, 1619.5], [1872.5, 1635.5], [1869.5, 1635.5]]}, +{"id": "txc4qw", "submitted_by": "MTjong", "name": "Sykkuno's green scarf", "description": "A green scarf associated with Twitch streamer Sykkuno", "website": "https://twitch.tv/sykkuno", "subreddit": "/r/sykkuno", "center": [1871.5, 1627.5], "path": [[1869.5, 1619.5], [1872.5, 1619.5], [1872.5, 1635.5], [1869.5, 1635.5]]}, {"id": "txc482", "submitted_by": "space-kaiserin", "name": "Flag of Russia", "description": "", "website": "", "subreddit": "/r/placerussia", "center": [845.5, 1783.5], "path": [[841.5, 1781.5], [849.5, 1781.5], [849.5, 1785.5], [841.5, 1785.5]]}, {"id": "txc402", "submitted_by": "Netherman132", "name": "Colorado University Logo", "description": "The University of Colorado's logo, C.U. is short for Colorado University. It is a college in the U.S. state of Colorado", "website": "https://www.colorado.edu/", "subreddit": "", "center": [16.5, 726.5], "path": [[12.5, 723.5], [19.5, 723.5], [19.5, 729.5], [12.5, 729.5]]}, {"id": "txc3pt", "submitted_by": "ErnstLuL", "name": "RoSus", "description": "The name of the Among Us character inside the r/PH rose. It is a pun to Rosas, Filipino for Rose.", "website": "", "subreddit": "/r/philippines", "center": [353.5, 681.5], "path": [[351.5, 679.5], [351.5, 679.5], [351.5, 679.5], [351.5, 679.5], [353.5, 679.5], [353.5, 680.5], [352.5, 680.5], [351.5, 680.5], [350.5, 680.5], [350.5, 681.5], [351.5, 681.5], [352.5, 681.5], [353.5, 681.5], [353.5, 682.5], [351.5, 682.5], [351.5, 682.5]]}, {"id": "txc2wx", "submitted_by": "Deadeye_Dan77", "name": "Illinois Fighting Illini", "description": "Fans of Illinois Fighting Illini athletics at the University of Illinois in Champaign/Urbana.", "website": "", "subreddit": "/r/fightingillini", "center": [190.5, 620.5], "path": [[181.5, 631.5], [176.5, 630.5], [175.5, 612.5], [205.5, 610.5], [205.5, 628.5]]}, {"id": "txc2vh", "submitted_by": "sodapone", "name": "Strong Enemy Skull", "description": "In Girls' Frontline, this skull appears next to enemy units on the map that are too strong for players to fight conventionally. Its placement next to Peppy implies that he is too strong to be taken down with typical raiding tactics.", "website": "", "subreddit": "", "center": [1766.5, 740.5], "path": [[1764.5, 738.5], [1768.5, 738.5], [1769.5, 739.5], [1769.5, 740.5], [1768.5, 741.5], [1768.5, 742.5], [1764.5, 742.5], [1764.5, 741.5], [1763.5, 740.5], [1763.5, 739.5]]}, -{"id": "txc2t9", "submitted_by": "MTjong", "name": "Yvonnie's XD face", "description": "Icon for Yvonnie, a Twitch streamer associated with OfflineTV", "website": "twitch.tv/yvonnie", "subreddit": "/r/offlineTV", "center": [1857.5, 1640.5], "path": [[1853.5, 1636.5], [1860.5, 1636.5], [1860.5, 1643.5], [1853.5, 1643.5]]}, +{"id": "txc2t9", "submitted_by": "MTjong", "name": "Yvonnie's XD face", "description": "Icon for Yvonnie, a Twitch streamer associated with OfflineTV", "website": "https://twitch.tv/yvonnie", "subreddit": "/r/offlineTV", "center": [1857.5, 1640.5], "path": [[1853.5, 1636.5], [1860.5, 1636.5], [1860.5, 1643.5], [1853.5, 1643.5]]}, {"id": "txc2jw", "submitted_by": "kuribosshoe0", "name": "Kirby", "description": "A very small depiction of Kirby from the video game franchise of the same name. It accompanies other popular Nintendo franchises in the area.", "website": "", "subreddit": "/r/Kirby", "center": [1309.5, 1852.5], "path": [[1300.5, 1847.5], [1301.5, 1863.5], [1307.5, 1857.5], [1317.5, 1856.5], [1321.5, 1847.5]]}, {"id": "txc28r", "submitted_by": "ReV3nGeV1", "name": "Fuslie Symbol", "description": "The symbol of 100 Thieves content creator, Fuslie\n", "website": "https://www.twitch.tv/fuslie", "subreddit": "/r/fuslie", "center": [1865.5, 1623.5], "path": [[1861.5, 1619.5], [1868.5, 1619.5], [1868.5, 1627.5], [1861.5, 1627.5], [1861.5, 1627.5]]}, {"id": "txc26h", "submitted_by": "ConnorDuckling", "name": "Skephalo flag", "description": "Tinny ship flag that combine the color palet and comunities from the streamer BadBoyHalo and the youtuber Skeppy, but more that, the only place the HappyTwT community found after try in a lot of other places.", "website": "", "subreddit": "", "center": [1151.5, 1118.5], "path": [[1148.5, 1114.5], [1149.5, 1114.5], [1150.5, 1114.5], [1151.5, 1114.5], [1152.5, 1114.5], [1153.5, 1114.5], [1153.5, 1115.5], [1153.5, 1116.5], [1153.5, 1117.5], [1153.5, 1118.5], [1153.5, 1119.5], [1153.5, 1120.5], [1153.5, 1121.5], [1152.5, 1121.5], [1151.5, 1121.5], [1150.5, 1121.5], [1149.5, 1121.5], [1148.5, 1121.5]]}, -{"id": "txc1wb", "submitted_by": "Dragonix975", "name": "University of Chicago crest", "description": "This crest is a representation of the old crest of the University of Chicago, a prestigious private university in Chicago, Illinois. It bears a phoenix and a book. The phoenix represents the rebirth of Chicago from its fire, while the book reads \"crescat scientia vita excolatur,\" a Latin phrase that means \"let knowledge grow from more to more; and so be human life enriched.\"", "website": "uchicago.edu", "subreddit": "/r/uchicago", "center": [1405.5, 1186.5], "path": [[1395.5, 1172.5], [1395.5, 1202.5], [1414.5, 1200.5], [1415.5, 1172.5]]}, +{"id": "txc1wb", "submitted_by": "Dragonix975", "name": "University of Chicago crest", "description": "This crest is a representation of the old crest of the University of Chicago, a prestigious private university in Chicago, Illinois. It bears a phoenix and a book. The phoenix represents the rebirth of Chicago from its fire, while the book reads \"crescat scientia vita excolatur,\" a Latin phrase that means \"let knowledge grow from more to more; and so be human life enriched.\"", "website": "https://uchicago.edu", "subreddit": "/r/uchicago", "center": [1405.5, 1186.5], "path": [[1395.5, 1172.5], [1395.5, 1202.5], [1414.5, 1200.5], [1415.5, 1172.5]]}, {"id": "txc1ke", "submitted_by": "bunsonh", "name": "FLUFFHEAD!", "description": "Reference to song Fluffhead by the American rock band Phish. During 2107's r/place event, the r/phish community was represented using the same word. The exclamation mark was occasionally changed to a question mark to reference to the song's lyrics.", "website": "http://www.phish.com", "subreddit": "/r/phish", "center": [99.5, 878.5], "path": [[60.5, 874.5], [60.5, 882.5], [138.5, 882.5], [137.5, 874.5]]}, -{"id": "txc1fq", "submitted_by": "MTjong", "name": "Kkatamina's Minecraft Avatar", "description": "The Minecraft skin that's often associated with Twitch streamer kkatamina", "website": "twitch.tv/kkatamina", "subreddit": "", "center": [1857.5, 1623.5], "path": [[1853.5, 1619.5], [1860.5, 1619.5], [1860.5, 1627.5], [1853.5, 1627.5]]}, +{"id": "txc1fq", "submitted_by": "MTjong", "name": "Kkatamina's Minecraft Avatar", "description": "The Minecraft skin that's often associated with Twitch streamer kkatamina", "website": "https://twitch.tv/kkatamina", "subreddit": "", "center": [1857.5, 1623.5], "path": [[1853.5, 1619.5], [1860.5, 1619.5], [1860.5, 1627.5], [1853.5, 1627.5]]}, {"id": "txc1fe", "submitted_by": "RikenVorkovin", "name": "Ultramarine Dreadnought", "description": "A dreadnought from the Warhammer 40k Universe. Accompanied by some allies we made along the way!", "website": "", "subreddit": "/r/Grimdank", "center": [1870.5, 1239.5], "path": [[1856.5, 1229.5], [1883.5, 1229.5], [1883.5, 1249.5], [1857.5, 1249.5], [1857.5, 1249.5], [1857.5, 1249.5], [1857.5, 1249.5], [1857.5, 1249.5]]}, {"id": "txc135", "submitted_by": "Scorsheep", "name": "Chelsi the sheep, Designed by scorci", "description": "a chubby blue sheep in a sailor top and swimsuit what wears croissants in her hair. She's the most known character designed by the artist scorci.", "website": "https://www.reddit.com/r/Scorci/", "subreddit": "/r/Scorci", "center": [173.5, 1091.5], "path": [[179.5, 1085.5], [179.5, 1093.5], [175.5, 1097.5], [167.5, 1097.5], [167.5, 1085.5], [167.5, 1085.5]]}, {"id": "txc12o", "submitted_by": "naterichster", "name": "The WSTL Alliance Heart", "description": "A heart made to represent the alliance between the communities of WEiTI, Shovel Knight, Taylor Swift, and LEGO.\n\nThese bonds were forged over countless campaigns; against the expansion of multiple country flags, and through multiple building and upkeep projects. These members worked as a united front in multiple Discord servers to help each other out and preserve their respective artworks in the annals of r/place.", "website": "", "subreddit": "", "center": [668.5, 304.5], "path": [[668.5, 301.5], [667.5, 300.5], [665.5, 300.5], [664.5, 301.5], [663.5, 302.5], [663.5, 304.5], [668.5, 309.5], [673.5, 304.5], [673.5, 302.5], [671.5, 300.5], [669.5, 300.5], [668.5, 301.5]]}, {"id": "txc0xe", "submitted_by": "Feking98", "name": "Peko Tower", "description": "A chibi tower consisting of Hololive members, Yukihama Lamy (Light Blue hair), Sakura Miko (Pink hair), Usada Pekora (Dark blue hair) and Moona Hoshinova (Purple Hair). Originally includes Hoshimachi Suisei but the due to decision to give her her own art in the 3rd expansion, she was replace with Lamy. The members were chosen based on their mutual relationship starting with Pekora as the base then grew into PekoMiko (Pekora x Miko) and then MiComet (Miko x Suisei) and Lapis Lazuli (Pekora x Moona) who grew into the ID Gen 1.", "website": "https://hololive.hololivepro.com/en/talents", "subreddit": "/r/hololive", "center": [1373.5, 985.5], "path": [[1391.5, 998.5], [1387.5, 990.5], [1381.5, 990.5], [1379.5, 992.5], [1376.5, 989.5], [1376.5, 983.5], [1378.5, 983.5], [1379.5, 982.5], [1379.5, 973.5], [1373.5, 966.5], [1371.5, 966.5], [1365.5, 971.5], [1365.5, 977.5], [1366.5, 977.5], [1366.5, 984.5], [1363.5, 985.5], [1363.5, 988.5], [1364.5, 991.5], [1362.5, 994.5], [1362.5, 996.5], [1364.5, 998.5]]}, -{"id": "txc0jt", "submitted_by": "Loopyz08", "name": "Ateneo De Manila University", "description": "A Filipino University Located in Loyola Heights, Quezon City, Metro Manila, Philippines. Originally spelled the letters \"ATENEO\" before being griefed. It went toe to toe with the \"DLSU\" letters on top, an acronym for another university (De La Salle). The two schools are known to be fierce rivals in both Sports (namely Basketball) and Academics.", "website": "ateneo.edu", "subreddit": "/r/philippines", "center": [1488.5, 395.5], "path": [[1481.5, 388.5], [1495.5, 388.5], [1495.5, 401.5], [1481.5, 401.5]]}, +{"id": "txc0jt", "submitted_by": "Loopyz08", "name": "Ateneo De Manila University", "description": "A Filipino University Located in Loyola Heights, Quezon City, Metro Manila, Philippines. Originally spelled the letters \"ATENEO\" before being griefed. It went toe to toe with the \"DLSU\" letters on top, an acronym for another university (De La Salle). The two schools are known to be fierce rivals in both Sports (namely Basketball) and Academics.", "website": "https://ateneo.edu", "subreddit": "/r/philippines", "center": [1488.5, 395.5], "path": [[1481.5, 388.5], [1495.5, 388.5], [1495.5, 401.5], [1481.5, 401.5]]}, {"id": "txbzyj", "submitted_by": "Tresnore", "name": "UPenn Logo", "description": "The logo of the University of Pennsylvania", "website": "", "subreddit": "/r/UPenn", "center": [1266.5, 1799.5], "path": [[1274.5, 1793.5], [1272.5, 1789.5], [1256.5, 1789.5], [1256.5, 1792.5], [1255.5, 1792.5], [1255.5, 1808.5], [1279.5, 1808.5], [1279.5, 1794.5], [1274.5, 1794.5], [1274.5, 1792.5], [1273.5, 1792.5], [1272.5, 1791.5]]}, {"id": "txbzux", "submitted_by": "SquishedDucks", "name": "Hilda (Zilda)", "description": "Hilda from the Netflix series. Specifically Hilda in Legend of Zelda game made by Scott Lewis", "website": "", "subreddit": "/r/HildaTheSeries", "center": [1097.5, 1793.5], "path": [[1089.5, 1784.5], [1104.5, 1784.5], [1104.5, 1800.5], [1099.5, 1799.5], [1097.5, 1802.5], [1097.5, 1804.5], [1093.5, 1804.5], [1093.5, 1802.5], [1093.5, 1801.5], [1091.5, 1800.5], [1090.5, 1800.5]]}, {"id": "txbzbr", "submitted_by": "Tresnore", "name": "B1G Train", "description": "A train of the Big 10 sports conference headed by Purdue's mascot, the Boilermaker Special, as well as its famous large drum. Other university's logos decorate the train cars.", "website": "", "subreddit": "", "center": [1105.5, 1727.5], "path": [[1189.5, 1740.5], [1189.5, 1711.5], [1139.5, 1712.5], [1130.5, 1709.5], [1123.5, 1709.5], [1121.5, 1710.5], [1111.5, 1711.5], [1104.5, 1715.5], [1091.5, 1715.5], [1089.5, 1719.5], [1009.5, 1719.5], [1009.5, 1741.5], [1189.5, 1740.5]]}, {"id": "txbz7g", "submitted_by": "deepsighofreIief", "name": "Nintendo Iconography + Simpleflips", "description": "Nintendo iconography, including (from left to right) Mario, Yoshi, the Mario Mushroom, a tiny Yoshi, a Yoshi Egg, Kirby, and the Simpleflips Drippy Star", "website": "", "subreddit": "/r/Simpleflips", "center": [1118.5, 372.5], "path": [[1081.5, 384.5], [1157.5, 384.5], [1157.5, 376.5], [1158.5, 376.5], [1159.5, 375.5], [1159.5, 373.5], [1157.5, 371.5], [1154.5, 371.5], [1154.5, 370.5], [1150.5, 366.5], [1146.5, 370.5], [1146.5, 371.5], [1143.5, 371.5], [1143.5, 365.5], [1142.5, 364.5], [1140.5, 361.5], [1138.5, 361.5], [1138.5, 360.5], [1133.5, 360.5], [1132.5, 361.5], [1131.5, 361.5], [1128.5, 358.5], [1124.5, 358.5], [1122.5, 360.5], [1120.5, 360.5], [1117.5, 357.5], [1116.5, 357.5], [1116.5, 354.5], [1115.5, 354.5], [1113.5, 352.5], [1107.5, 352.5], [1104.5, 355.5], [1102.5, 355.5], [1100.5, 357.5], [1100.5, 359.5], [1098.5, 361.5], [1098.5, 364.5], [1099.5, 365.5], [1099.5, 367.5], [1098.5, 367.5], [1097.5, 368.5], [1095.5, 368.5], [1095.5, 367.5], [1093.5, 365.5], [1091.5, 365.5], [1090.5, 364.5], [1084.5, 364.5], [1082.5, 366.5], [1081.5, 366.5]]}, -{"id": "txbyn2", "submitted_by": "henrikhwolf", "name": "Demon Icon", "description": "A demon icon from the game Geometry Dash", "website": "", "subreddit": "/r/geometrydash", "center": [1019.5, 374.5], "path": [[1009.5, 363.5], [1029.5, 363.5], [1029.5, 385.5], [1009.5, 385.5], [1009.5, 385.5], [1009.5, 385.5], [1009.5, 363.5]]}, -{"id": "txbylu", "submitted_by": "ElOrejonVillena", "name": "Hasbulla ratio", "description": "Epic ratio created by the attack of the Spanish-speaking community streamers, in protest against the claim of the french streamer KametO for a big part of the canvas, which showed a childish attitude due to an earlier attack by Ibai and his KOI team on the team of KametO. KametO turned his tantrum into a symbol of the most rancid french nationalism, receiving even the support of far-right politicians.\nWaves of Spanish attacks managed for a few moments to overcome the bots programmed by the french.\nThe man (with a sense of humor) against the machine.\n\nEvidence of the French bots was revealed at the end of the event, during the Reddit 'white-out'.", "website": "", "subreddit": "", "center": [123.5, 1474.5], "path": [[0.5, 1345.5], [248.5, 1345.5], [248.5, 1602.5], [-1.5, 1603.5]]}, -{"id": "txbxa9", "submitted_by": "mikkolukas", "name": "Angry Birds", "description": "A widely known Finnish action-based mobile based game series.", "website": "https://www.angrybirds.com/", "subreddit": "/r/Suomi", "center": [606.5, 153.5], "path": [[607.5, 145.5], [613.5, 151.5], [613.5, 156.5], [612.5, 157.5], [612.5, 158.5], [611.5, 159.5], [610.5, 159.5], [609.5, 160.5], [603.5, 160.5], [602.5, 159.5], [601.5, 159.5], [600.5, 158.5], [600.5, 157.5], [599.5, 156.5], [599.5, 151.5], [603.5, 147.5], [602.5, 146.5], [603.5, 145.5], [607.5, 145.5]]}, {"id": "txbwil", "submitted_by": "Thirtyfourfiftyfive", "name": "Blushing \"It is a mystery\" Ghost", "description": "This is an altered version of the ghost associated with the \"It is a mystery\" meme, edited to be blushing and smiling.", "website": "https://knowyourmeme.com/memes/it-is-a-mystery", "subreddit": "", "center": [1897.5, 1642.5], "path": [[1893.5, 1635.5], [1894.5, 1634.5], [1902.5, 1634.5], [1903.5, 1635.5], [1904.5, 1636.5], [1904.5, 1637.5], [1905.5, 1637.5], [1906.5, 1638.5], [1905.5, 1639.5], [1907.5, 1639.5], [1907.5, 1643.5], [1905.5, 1643.5], [1904.5, 1644.5], [1904.5, 1645.5], [1903.5, 1646.5], [1902.5, 1647.5], [1902.5, 1648.5], [1898.5, 1648.5], [1898.5, 1652.5], [1897.5, 1652.5], [1896.5, 1653.5], [1896.5, 1655.5], [1893.5, 1655.5], [1893.5, 1647.5], [1892.5, 1646.5], [1892.5, 1645.5], [1891.5, 1644.5], [1891.5, 1643.5], [1889.5, 1643.5], [1888.5, 1644.5], [1887.5, 1643.5], [1886.5, 1642.5], [1885.5, 1641.5], [1886.5, 1640.5], [1887.5, 1639.5], [1888.5, 1638.5], [1889.5, 1639.5], [1891.5, 1639.5], [1891.5, 1638.5], [1892.5, 1637.5], [1892.5, 1636.5], [1893.5, 1635.5]]}, {"id": "txbw8c", "submitted_by": "JustAMadi", "name": "r/Ranma", "description": "Subreddit for the manga Ranma 1/2", "website": "https://www.reddit.com/r/ranma/", "subreddit": "/r/ranma", "center": [1129.5, 1754.5], "path": [[1101.5, 1749.5], [1101.5, 1757.5], [1156.5, 1757.5], [1156.5, 1750.5], [1101.5, 1750.5], [1101.5, 1749.5], [1101.5, 1749.5], [1101.5, 1749.5]]}, {"id": "txbvzl", "submitted_by": "DougDubitsky", "name": "pepeSmoke", "description": "A frog smoking a ciggarete, popular 3rd party twitch emote", "website": "https://betterttv.com/emotes/5b15162147c7bf3bfc0b9c76", "subreddit": "/r/pepethefrog", "center": [702.5, 951.5], "path": [[695.5, 944.5], [695.5, 957.5], [710.5, 957.5], [710.5, 945.5]]}, @@ -5937,31 +5446,28 @@ {"id": "txbvpr", "submitted_by": "PinkFaure", "name": "Partially destroyed Harold heart", "description": "One of rap collective Haunted Mound's logos. This artwork was unable to be finished due to frequent vandalism.", "website": "", "subreddit": "/r/HauntedMound", "center": [1603.5, 402.5], "path": [[1594.5, 393.5], [1611.5, 393.5], [1611.5, 411.5], [1594.5, 411.5], [1594.5, 402.5], [1594.5, 393.5]]}, {"id": "txbvov", "submitted_by": "speedshark47", "name": "1D one direction logo (covered)", "description": "Logo of the popular British pop band, one direction. This logo was later covered.", "website": "", "subreddit": "/r/onedirection", "center": [637.5, 1522.5], "path": [[716.5, 1514.5], [723.5, 1514.5], [734.5, 1516.5], [733.5, 1515.5], [702.5, 1506.5], [701.5, 1506.5], [702.5, 1519.5], [701.5, 1521.5], [726.5, 1521.5], [727.5, 1521.5], [740.5, 1512.5], [740.5, 1512.5], [727.5, 1507.5], [727.5, 1509.5], [716.5, 1509.5], [716.5, 1508.5], [712.5, 1508.5], [718.5, 1507.5], [708.5, 1507.5], [705.5, 1506.5], [743.5, 1507.5], [744.5, 1507.5], [742.5, 1519.5], [743.5, 1521.5], [745.5, 1521.5], [733.5, 1522.5], [727.5, 1517.5], [730.5, 1517.5], [732.5, 1512.5], [730.5, 1511.5], [736.5, 1514.5], [728.5, 1511.5], [724.5, 1510.5], [720.5, 1510.5], [731.5, 1509.5], [737.5, 1513.5], [743.5, 1509.5], [742.5, 1520.5], [728.5, 1514.5], [727.5, 1512.5], [725.5, 1511.5], [723.5, 1510.5], [719.5, 1509.5], [718.5, 1509.5], [737.5, 1512.5], [735.5, 1511.5], [729.5, 1513.5], [722.5, 1511.5], [718.5, 1510.5]]}, {"id": "txbvn8", "submitted_by": "Rocket_AFN", "name": "Among Us", "description": "Character form popular game Among Us", "website": "https://www.innersloth.com/games/among-us/", "subreddit": "/r/AmongUs", "center": [535.5, 1671.5], "path": [[527.5, 1668.5], [542.5, 1668.5], [542.5, 1673.5], [527.5, 1673.5]]}, -{"id": "txbvb7", "submitted_by": "mikkolukas", "name": "Moose warning sign", "description": "This sign is often seen in especially Sweden. So much that is is used prominently in Swedish tourism marketing.", "website": "https://sv.wikipedia.org/wiki/Varningsm%C3%A4rken_f%C3%B6r_djur#/media/Fil:Sweden_road_sign_A19-1.svg", "subreddit": "", "center": [790.5, 114.5], "path": [[790.5, 106.5], [798.5, 118.5], [798.5, 119.5], [783.5, 119.5], [783.5, 118.5], [786.5, 114.5], [786.5, 113.5], [785.5, 113.5], [786.5, 112.5], [786.5, 110.5], [784.5, 110.5], [786.5, 110.5], [786.5, 109.5], [786.5, 110.5], [788.5, 110.5], [788.5, 108.5], [788.5, 108.5]]}, +{"id": "txbvb7", "submitted_by": "mikkolukas", "name": "Moose warning sign", "description": "This sign is often seen, especially in Sweden. So much that is is used prominently in Swedish tourism marketing.", "website": "https://sv.wikipedia.org/wiki/Varningsm%C3%A4rken_f%C3%B6r_djur#/media/Fil:Sweden_road_sign_A19-1.svg", "subreddit": "/r/place_nordicunion", "center": [790.5, 114.5], "path": [[790.5, 106.5], [798.5, 118.5], [798.5, 119.5], [783.5, 119.5], [783.5, 118.5], [786.5, 114.5], [786.5, 113.5], [785.5, 113.5], [786.5, 112.5], [786.5, 110.5], [784.5, 110.5], [786.5, 110.5], [786.5, 109.5], [786.5, 110.5], [788.5, 110.5], [788.5, 108.5], [788.5, 108.5]]}, {"id": "txbv7m", "submitted_by": "S_B_Crumb", "name": "Ned Kelly", "description": "Ned Kelly was an Australian criminal who famously wore a homemade metal suit of bulletproof armor.", "website": "https://en.wikipedia.org/wiki/Ned_Kelly", "subreddit": "/r/Australia", "center": [674.5, 683.5], "path": [[675.5, 694.5], [677.5, 694.5], [670.5, 696.5], [670.5, 673.5], [679.5, 673.5], [677.5, 695.5], [671.5, 696.5], [677.5, 696.5]]}, -{"id": "txbv6t", "submitted_by": "ThatMikeGuy429", "name": "Purple Heart", "description": "So, it started out as me just wanting to leave my mark this year, so I made a Purple Heart, latter on others at random started making other Purple Hearts around me without me ever needing to talk to them. Later, the r/DoctorWho community started to attack but quickly changed to allow me to be a part of them as a small ally, the same thing happened when Monkey Type community came into the area. Later, when both r/DoctorWho and Monkey Type got attacked by Finland both groups loved the little Purple Heart they both wanted to have it by them and added it to their designs. This is when the new real meaning began to form, Purple Heart became a symbol for friendship, love, cooperation, and stability and showed no matter who you are and how small you might be, others big and small can, and would stand up for you and help you leave your mark. ~ /u/ThatMikeGuy429", "website": "", "subreddit": "/r/PlacePurpleHeart", "center": [590.5, 257.5], "path": [[584.5, 263.5], [596.5, 263.5], [595.5, 250.5], [585.5, 250.5], [584.5, 263.5]]}, +{"id": "txbv6t", "submitted_by": "ThatMikeGuy429", "name": "Purple heart", "description": "So, it started out as me just wanting to leave my mark this year, so I made a purple heart. Later on, others at random started making other purple hearts around me without me ever needing to talk to them. Later, the r/DoctorWho community started to attack but quickly changed to allow me to be a part of them as a small ally. The same thing happened when the Monkey Type community came into the area. Later, when both r/DoctorWho and Monkey Type got attacked by Finland, both groups loved the little purple heart. They both wanted to have it by them and added it to their designs. This is when the new real meaning began to form. The purple heart became a symbol for friendship, love, cooperation, and stability and showed no matter who you are and how small you might be, others big and small can and would stand up for you and help you leave your mark. ~ /u/ThatMikeGuy429", "website": "", "subreddit": "/r/PlacePurpleHeart", "center": [590.5, 257.5], "path": [[584.5, 263.5], [596.5, 263.5], [595.5, 250.5], [585.5, 250.5], [584.5, 263.5]]}, {"id": "txbv14", "submitted_by": "Caberman", "name": "Goodnight Kiwi", "description": "The Goodnight Kiwi is an animated short which was used to signal the end of nightly broadcasts on Television New Zealand channels.", "website": "https://en.wikipedia.org/wiki/Goodnight_Kiwi", "subreddit": "/r/newzealand", "center": [1550.5, 701.5], "path": [[1542.5, 690.5], [1549.5, 696.5], [1553.5, 692.5], [1561.5, 700.5], [1555.5, 706.5], [1555.5, 709.5], [1546.5, 709.5], [1543.5, 708.5], [1541.5, 707.5], [1539.5, 703.5], [1540.5, 701.5], [1543.5, 702.5], [1546.5, 700.5], [1548.5, 700.5], [1541.5, 691.5]]}, {"id": "txbuz3", "submitted_by": "MattedCrow", "name": "Tubbo", "description": "The Minecraft Skin of Twitch Streamer Tubbo", "website": "", "subreddit": "", "center": [160.5, 913.5], "path": [[156.5, 909.5], [163.5, 909.5], [163.5, 916.5], [156.5, 916.5]]}, -{"id": "txbuu0", "submitted_by": "iiiConnor", "name": "One World Trade Center", "description": "The main building of the rebuilt World Trade Center complex in New York City. Originally the World Trade Center, which was destroyed in the September 11th attacks. Also known as the Freedom Tower.", "website": "", "subreddit": "/r/americanflaginplace", "center": [1960.5, 1833.5], "path": [[1953.5, 1855.5], [1954.5, 1855.5], [1954.5, 1856.5], [1955.5, 1856.5], [1956.5, 1855.5], [1957.5, 1855.5], [1957.5, 1854.5], [1959.5, 1852.5], [1960.5, 1853.5], [1962.5, 1853.5], [1962.5, 1856.5], [1961.5, 1856.5], [1961.5, 1858.5], [1962.5, 1859.5], [1961.5, 1860.5], [1962.5, 1861.5], [1962.5, 1862.5], [1963.5, 1863.5], [1963.5, 1864.5], [1959.5, 1864.5], [1958.5, 1865.5], [1958.5, 1867.5], [1967.5, 1867.5], [1967.5, 1847.5], [1966.5, 1846.5], [1966.5, 1822.5], [1965.5, 1821.5], [1965.5, 1803.5], [1964.5, 1803.5], [1963.5, 1802.5], [1962.5, 1802.5], [1961.5, 1801.5], [1960.5, 1775.5], [1960.5, 1800.5], [1959.5, 1800.5], [1959.5, 1802.5], [1957.5, 1802.5], [1956.5, 1803.5], [1955.5, 1804.5], [1955.5, 1823.5], [1954.5, 1823.5], [1954.5, 1843.5], [1953.5, 1843.5]]}, {"id": "txbutm", "submitted_by": "bunsonh", "name": "Grateful Dead - dancing bear", "description": "These are faces of the iconic Dancing Bear logo designed by Owsley Stanley, aka Bear, for American rock band The Grateful Dead.", "website": "http://dead.net", "subreddit": "/r/gratefuldead", "center": [42.5, 890.5], "path": [[35.5, 877.5], [38.5, 875.5], [49.5, 876.5], [49.5, 882.5], [42.5, 888.5], [43.5, 893.5], [50.5, 902.5], [47.5, 905.5], [35.5, 904.5], [35.5, 900.5], [40.5, 893.5], [42.5, 891.5], [41.5, 888.5], [35.5, 880.5], [36.5, 875.5], [36.5, 875.5]]}, {"id": "txbuiv", "submitted_by": "Sweatychickennugget", "name": "Trans Bee", "description": "Despite there being a Minecraft trans bee texture created by the YouTuber Sarah Burssty, this design of the trans bee was made by u/hamOverlord. The original design made the bee all blue with the trans flag at the end, however over time people made the bee yellow, likely because of the misconception that this was Burssty's bee. In the end, it seems like a blend of the two's concepts.", "website": "https://www.reddit.com/user/hamOverlord/", "subreddit": "/r/Burssty", "center": [715.5, 464.5], "path": [[704.5, 470.5], [704.5, 460.5], [702.5, 460.5], [702.5, 459.5], [704.5, 459.5], [704.5, 458.5], [705.5, 458.5], [705.5, 457.5], [726.5, 457.5], [726.5, 458.5], [727.5, 458.5], [727.5, 470.5], [726.5, 471.5], [705.5, 471.5]]}, {"id": "txbuil", "submitted_by": "706am", "name": "Anime Alliance and AniList Collab", "description": "Pixel art of iconic characters and icons from some of Shonen Jump's most popular manga/anime, made by several anime communities.\nCommunities included: Bleach, One Piece, Naruto, DBZ, My Hero Academia, Haikyuu, Hunter x Hunter, and AniList. \nThank you, communities of Baylor Univerisity, Arcane Odyssey, and King Crimson, for your support.", "website": "https://discord.gg/9U6pHMbHS4", "subreddit": "", "center": [1655.5, 1185.5], "path": [[1600.5, 1172.5], [1600.5, 1200.5], [1710.5, 1200.5], [1710.5, 1172.5], [1662.5, 1172.5], [1661.5, 1165.5], [1658.5, 1160.5], [1648.5, 1160.5], [1645.5, 1165.5], [1645.5, 1172.5]]}, {"id": "txbuf0", "submitted_by": "arsme", "name": "NixOS", "description": "NixOS is a Linux distribution built on top of the Nix package manager. It uses declarative configuration and allows reliable system upgrades. Several official package \"channels\" are offered including current Stable release and Unstable following latest development.", "website": "https://nixos.org/", "subreddit": "/r/NixOS", "center": [33.5, 708.5], "path": [[30.5, 705.5], [36.5, 705.5], [36.5, 711.5], [30.5, 711.5], [30.5, 705.5]]}, {"id": "txbtvc", "submitted_by": "RockasaurusRex", "name": "Err", "description": "The mooninite character Err from the Adult Swim cartoon show Aqua Teen Hunger Force.", "website": "", "subreddit": "/r/aquajail", "center": [1087.5, 1549.5], "path": [[1081.5, 1545.5], [1092.5, 1545.5], [1092.5, 1553.5], [1081.5, 1553.5]]}, {"id": "txbtto", "submitted_by": "Poggerchamp203", "name": "Tohru", "description": "Everyone's favorite maid from miss Kobayashi's dragon maid! Just don't accept the tail...", "website": "", "subreddit": "/r/dragonmaid", "center": [1148.5, 1849.5], "path": [[1154.5, 1844.5], [1138.5, 1851.5], [1152.5, 1853.5]]}, -{"id": "txbtqs", "submitted_by": "Loopyz08", "name": "Ateneo De Manila University", "description": "A Filipino University Located in Loyola Heights, Quezon City, Metro Manila, Philippines. Originally spelled the letters \"ATENEO\" before being griefed. It went toe to toe with the \"DLSU\" letters on top, an acronym for another university (De La Salle). The two schools are known to be fierce rivals in both Sports (namely Basketball) and Academics.", "website": "ateneo.edu", "subreddit": "/r/philippines", "center": [1488.5, 394.5], "path": [[1482.5, 387.5], [1494.5, 387.5], [1495.5, 401.5], [1481.5, 401.5]]}, -{"id": "txbtjt", "submitted_by": "elotrosaulo", "name": "Mascara de Diablo", "description": "Mask of a traditional dance called Diablada. It represents a Devil and it's typical of Oruro, Bolivia", "website": "/r/bolivia", "subreddit": "", "center": [1519.5, 1217.5], "path": [[1505.5, 1221.5], [1507.5, 1216.5], [1507.5, 1208.5], [1509.5, 1204.5], [1515.5, 1211.5], [1523.5, 1211.5], [1529.5, 1204.5], [1532.5, 1209.5], [1531.5, 1217.5], [1534.5, 1220.5], [1533.5, 1223.5], [1531.5, 1225.5], [1507.5, 1225.5], [1505.5, 1220.5]]}, +{"id": "txbtqs", "submitted_by": "Loopyz08", "name": "Ateneo De Manila University", "description": "A Filipino University Located in Loyola Heights, Quezon City, Metro Manila, Philippines. Originally spelled the letters \"ATENEO\" before being griefed. It went toe to toe with the \"DLSU\" letters on top, an acronym for another university (De La Salle). The two schools are known to be fierce rivals in both Sports (namely Basketball) and Academics.", "website": "https://ateneo.edu", "subreddit": "/r/philippines", "center": [1488.5, 394.5], "path": [[1482.5, 387.5], [1494.5, 387.5], [1495.5, 401.5], [1481.5, 401.5]]}, +{"id": "txbtjt", "submitted_by": "elotrosaulo", "name": "Mascara de Diablo", "description": "Mask of a traditional dance called Diablada. It represents a Devil and it's typical of Oruro, Bolivia", "website": "https:///r/bolivia", "subreddit": "", "center": [1519.5, 1217.5], "path": [[1505.5, 1221.5], [1507.5, 1216.5], [1507.5, 1208.5], [1509.5, 1204.5], [1515.5, 1211.5], [1523.5, 1211.5], [1529.5, 1204.5], [1532.5, 1209.5], [1531.5, 1217.5], [1534.5, 1220.5], [1533.5, 1223.5], [1531.5, 1225.5], [1507.5, 1225.5], [1505.5, 1220.5]]}, {"id": "txbtcp", "submitted_by": "Elegant-Writing-4338", "name": "Tiny Kuchipatchi", "description": "A very tiny sprite of Kuchipatchi from the Tamagotchi virtual pet games.", "website": "", "subreddit": "/r/tamagotchi", "center": [515.5, 1465.5], "path": [[517.5, 1468.5], [513.5, 1468.5], [513.5, 1462.5], [517.5, 1462.5]]}, {"id": "txbt9q", "submitted_by": "Micecreek", "name": "LilHouse", "description": "A lil House built by the LilHouse community", "website": "", "subreddit": "/r/LilHousePlace", "center": [1646.5, 1446.5], "path": [[1637.5, 1451.5], [1637.5, 1451.5], [1637.5, 1440.5], [1655.5, 1440.5], [1655.5, 1451.5], [1655.5, 1451.5], [1655.5, 1451.5], [1654.5, 1451.5], [1654.5, 1451.5], [1637.5, 1451.5], [1637.5, 1451.5], [1637.5, 1451.5]]}, -{"id": "txbt90", "submitted_by": "Lasse_Poulsen", "name": "Flag of Denmark", "description": "The Dannebrog (flag) of Denmark made by r/Denmark and helped be maintained by fellow Nordics", "website": "", "subreddit": "/r/Denmark", "center": [423.5, 187.5], "path": [[475.5, 120.5], [475.5, 137.5], [496.5, 137.5], [496.5, 293.5], [437.5, 294.5], [437.5, 167.5], [344.5, 167.5], [344.5, 158.5], [277.5, 158.5], [277.5, 133.5], [274.5, 133.5], [274.5, 130.5], [272.5, 130.5], [271.5, 127.5], [271.5, 117.5], [333.5, 118.5], [333.5, 132.5], [400.5, 132.5], [400.5, 120.5], [411.5, 120.5], [411.5, 137.5], [462.5, 137.5], [462.5, 120.5], [474.5, 120.5]]}, +{"id": "txbt90", "submitted_by": "Lasse_Poulsen", "name": "Flag of Denmark", "description": "The Dannebrog (flag) of Denmark made by r/Denmark and helped be maintained by fellow Nordics.", "website": "", "subreddit": "/r/Denmark", "center": [423.5, 187.5], "path": [[475.5, 120.5], [475.5, 137.5], [496.5, 137.5], [496.5, 293.5], [437.5, 294.5], [437.5, 167.5], [344.5, 167.5], [344.5, 158.5], [277.5, 158.5], [277.5, 133.5], [274.5, 133.5], [274.5, 130.5], [272.5, 130.5], [271.5, 127.5], [271.5, 117.5], [333.5, 118.5], [333.5, 132.5], [400.5, 132.5], [400.5, 120.5], [411.5, 120.5], [411.5, 137.5], [462.5, 137.5], [462.5, 120.5], [474.5, 120.5]]}, {"id": "txbt8o", "submitted_by": "Dr_Acula1213", "name": "Lehigh University Logo", "description": "A simple logo for the Bethlehem, PA based school. Lehigh University is best known as an academically-respected school that beat Duke in the 2012 NCAA March Madness tournament as a 15 seed. The school has about 5000 undergraduate students.", "website": "https://www1.lehigh.edu/home", "subreddit": "/r/lehigh", "center": [1307.5, 544.5], "path": [[1304.5, 541.5], [1310.5, 541.5], [1310.5, 546.5], [1304.5, 546.5]]}, {"id": "txbsz8", "submitted_by": "Necessary_Election_8", "name": "Tohru", "description": "Tohru (\u30c8\u30fc\u30eb, T\u014dru) also known as Tohru Kobayashi (\u5c0f\u6797\u30c8\u30fc\u30eb Kobayashi T\u014dru) is one of the main characters in the series Kobayashi-san Chi no Maid Dragon.", "website": "https://maid-dragon.fandom.com/wiki/Kobayashi-san_Chi_no_Maid_Dragon_Wiki", "subreddit": "/r/DragonMaid", "center": [1145.5, 1851.5], "path": [[1152.5, 1856.5], [1138.5, 1856.5], [1138.5, 1848.5], [1139.5, 1848.5], [1139.5, 1847.5], [1140.5, 1847.5], [1140.5, 1846.5], [1141.5, 1846.5], [1141.5, 1845.5], [1154.5, 1845.5], [1154.5, 1847.5], [1152.5, 1847.5], [1152.5, 1856.5]]}, {"id": "txbsoe", "submitted_by": "ThatMikeGuy429", "name": "Purple Heart", "description": "So, it started out as me just wanting to leave my mark this year, so I made a Purple Heart, latter on others at random started making other Purple Hearts around me without me ever needing to talk to them. Later, the r/DoctorWho community started to attack but quickly changed to allow me to be a part of them as a small ally, the same thing happened when Monkey Type community came into the area. Later, when both r/DoctorWho and Monkey Type got attacked by Finland both groups loved the little Purple Heart they both wanted to have it by them and added it to their designs. This is when the new real meaning began to form, Purple Heart became a symbol for friendship, love, cooperation, and stability and showed no matter who you are and how small you might be, others big and small can, and would stand up for you and help you leave your mark. ~ /u/ThatMikeGuy429", "website": "", "subreddit": "/r/PlacePurpleHeart", "center": [593.5, 1327.5], "path": [[590.5, 1330.5], [596.5, 1330.5], [596.5, 1324.5], [590.5, 1324.5], [590.5, 1330.5]]}, -{"id": "txbshc", "submitted_by": "Thirtyfourfiftyfive", "name": "\"Israel\" in hebrew", "description": "This is the name of the country Israel written in hebrew letters.", "website": "", "subreddit": "/r/israel", "center": [0.5, 0.5], "path": []}, {"id": "txbs94", "submitted_by": "Jerry3756", "name": "Moons", "description": "Community points for the subreddit r/cryptocurrency", "website": "", "subreddit": "/r/cryptocurrency", "center": [1578.5, 463.5], "path": [[1562.5, 447.5], [1596.5, 447.5], [1596.5, 464.5], [1590.5, 464.5], [1590.5, 480.5], [1562.5, 480.5]]}, {"id": "txbs54", "submitted_by": "Rum_N_Napalm", "name": "The Eye of Horus (Warhammer 40 000)", "description": "The Eye of Horus is the symbol of the Sons of Horus, previously known as the Luna Wolves. Their leader and Primarch, Horus, was said to be the greatest of the Emperor's Primarch, and earned the title of Warmaster. Corrupted by Chaos, Horus rebelled against the Emperor of Mankind, kicking off the bloodiest civil war in galactic history: the Horus Heresy", "website": "", "subreddit": "/r/40klore, /r/warhammer40k, /r/grimdank", "center": [1670.5, 642.5], "path": [[1663.5, 640.5], [1664.5, 639.5], [1665.5, 639.5], [1668.5, 638.5], [1671.5, 637.5], [1672.5, 638.5], [1675.5, 639.5], [1677.5, 640.5], [1678.5, 642.5], [1677.5, 642.5], [1675.5, 643.5], [1673.5, 644.5], [1672.5, 644.5], [1672.5, 646.5], [1671.5, 647.5], [1670.5, 648.5], [1669.5, 647.5], [1668.5, 646.5], [1668.5, 644.5], [1665.5, 644.5], [1665.5, 643.5], [1664.5, 643.5], [1663.5, 642.5]]}, {"id": "txbs0m", "submitted_by": "Senzyx", "name": "SimpleFlips Rainbow Star", "description": "Symbol of Youtuber/Streamer SimpleFlips, who is known for his Super Mario 64 Speedruns/Romhack playthroughs. He also plays Tetris and Super Mario Maker 2, and has done several collaborations with Vinesauce and Minus World.", "website": "https://www.youtube.com/user/SimpleFlips", "subreddit": "/r/Simpleflips", "center": [1150.5, 377.5], "path": [[1144.5, 377.5], [1141.5, 372.5], [1146.5, 372.5], [1150.5, 366.5], [1154.5, 372.5], [1159.5, 372.5], [1156.5, 377.5], [1158.5, 384.5], [1154.5, 384.5], [1150.5, 381.5], [1146.5, 384.5], [1142.5, 384.5]]}, -{"id": "txbrvx", "submitted_by": "im_mini", "name": "Tabletop RPG", "description": "Tabletop Role Playing Games (or TTRPG) are pen-and-paper games played by two more players in which describe the actions of their characters through speech, and typically resolve conflict or challenge through dice rolls. The most widely known die, the d20, is used in many TTRPGs, including the most popular Dungeons and Dragons.", "website": "https://en.wikipedia.org/wiki/Tabletop_role-playing_game", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "txbrv7", "submitted_by": "Feking98", "name": "Hololive Indonesia Gen 1", "description": "A chibi tower consisting of Hololive's Indonesia branch 1st generation members. From top to bottom, Ayunda Risu, Airani Iofifteen, Moona Hoshinova", "website": "https://www.youtube.com/c/hololiveIndonesia", "subreddit": "/r/hololive", "center": [1383.5, 987.5], "path": [[1389.5, 974.5], [1379.5, 974.5], [1379.5, 982.5], [1380.5, 983.5], [1377.5, 983.5], [1377.5, 984.5], [1376.5, 985.5], [1376.5, 990.5], [1379.5, 992.5], [1378.5, 999.5], [1390.5, 999.5], [1390.5, 994.5], [1388.5, 992.5], [1388.5, 983.5], [1389.5, 982.5], [1389.5, 974.5]]}, {"id": "txbrqx", "submitted_by": "androidkun", "name": "The Boyz Logo", "description": "The Boyz (\ub354\ubcf4\uc774\uc988) is an 11 member South Korean boy group that debuted in 2017.", "website": "", "subreddit": "/r/the_boyz", "center": [1579.5, 200.5], "path": [[1570.5, 196.5], [1570.5, 204.5], [1588.5, 204.5], [1588.5, 196.5]]}, {"id": "txbrme", "submitted_by": "sleepy-lulu", "name": "Bo Burnham", "description": "A reference from Bo Burnham's most recent special, Inside (If you wake up in a house that's full of smoke, don't panic, call me and I'll tell you a joke). Plus, a small Grammy to celebrate his recent win.", "website": "", "subreddit": "/r/boburnham", "center": [1346.5, 1291.5], "path": [[1361.5, 1281.5], [1338.5, 1281.5], [1337.5, 1281.5], [1334.5, 1281.5], [1330.5, 1281.5], [1331.5, 1300.5], [1360.5, 1301.5], [1361.5, 1300.5]]}, @@ -5970,7 +5476,6 @@ {"id": "txbquz", "submitted_by": "Depardim", "name": "Getting Over It", "description": "Art of Diogenes, the protagonist of the 2017 indie game Getting Over It, with the game's initials.", "website": "", "subreddit": "", "center": [1209.5, 814.5], "path": [[1200.5, 804.5], [1200.5, 804.5], [1200.5, 823.5], [1217.5, 823.5], [1217.5, 804.5]]}, {"id": "txbqsu", "submitted_by": "bunsonh", "name": "Grateful Dead - Steal Your Face", "description": "Logo designed by Owsley \"Bear\" Stanley for American rock band The Grateful Dead", "website": "http://dead.net", "subreddit": "/r/gratefuldead", "center": [13.5, 916.5], "path": [[8.5, 902.5], [0.5, 909.5], [0.5, 922.5], [11.5, 932.5], [22.5, 927.5], [27.5, 916.5], [24.5, 906.5], [18.5, 902.5], [18.5, 902.5], [18.5, 902.5], [8.5, 902.5]]}, {"id": "txbqdr", "submitted_by": "IvyEmblem", "name": "V", "description": "A small icon of V, an independent virtual youtuber. She is the goddess of order.", "website": "https://ivyemblem.carrd.co/", "subreddit": "", "center": [955.5, 1408.5], "path": [[950.5, 1399.5], [960.5, 1399.5], [961.5, 1417.5], [950.5, 1417.5], [949.5, 1416.5]]}, -{"id": "txbqdp", "submitted_by": "mikkolukas", "name": "Silja Line", "description": "A cruiseferry from the Finnish brand Silja Line. This pixelart mostly resembles the sibling ships Symfony/Serenade, both known for their impressive pedestrian street down the middle of the ship.", "website": "https://en.tallink.com/silja-serenade-siljaline-cruise-ship", "subreddit": "/r/Suomi", "center": [726.5, 126.5], "path": [[693.5, 137.5], [690.5, 134.5], [690.5, 131.5], [687.5, 127.5], [687.5, 125.5], [686.5, 124.5], [686.5, 118.5], [688.5, 115.5], [690.5, 115.5], [703.5, 103.5], [705.5, 103.5], [718.5, 117.5], [720.5, 117.5], [722.5, 116.5], [727.5, 116.5], [728.5, 118.5], [740.5, 117.5], [741.5, 116.5], [757.5, 116.5], [761.5, 118.5], [770.5, 125.5], [772.5, 125.5], [772.5, 131.5], [768.5, 138.5], [693.5, 138.5], [693.5, 138.5], [693.5, 138.5]]}, {"id": "txbpok", "submitted_by": "Pigeon91", "name": "Manic-5", "description": "A mmultiple-arch buttress dam on the Manicouagan River. A staggering 214m at its tallest and 1314m long, it is the largest dam of its type. It supplies a peak of 2660MW of hydroelectric power.", "website": "http://www.hydroquebec.com/visit/cote_nord/manic-5.html", "subreddit": "", "center": [1066.5, 983.5], "path": [[1036.5, 975.5], [1040.5, 978.5], [1045.5, 983.5], [1048.5, 984.5], [1060.5, 986.5], [1063.5, 989.5], [1070.5, 992.5], [1076.5, 994.5], [1081.5, 997.5], [1083.5, 998.5], [1083.5, 975.5], [1036.5, 975.5]]}, {"id": "txbpjr", "submitted_by": "Khevans", "name": "Bratishkin", "description": "Fan art of a Russian streamer on Twitch. He is one of the best Russian streamers on Twitch and is the head of 89SQUAD", "website": "https://www.twitch.tv/bratishkinoff", "subreddit": "", "center": [1849.5, 1934.5], "path": [[1775.5, 1869.5], [1775.5, 1869.5], [1923.5, 1869.5], [1924.5, 1999.5], [1775.5, 1999.5]]}, {"id": "txbp87", "submitted_by": "SquishedDucks", "name": "Ranma 1/2", "description": "A pixel banner made by the r/ranma community for the Ranma 1/2 franchise. It is about a 16-year-old martial artist Ranma Saotome who turns into a girl when water is poured on him.", "website": "", "subreddit": "/r/ranma", "center": [1128.5, 1753.5], "path": [[1099.5, 1750.5], [1156.5, 1750.5], [1156.5, 1757.5], [1100.5, 1757.5]]}, @@ -5986,15 +5491,13 @@ {"id": "txblxi", "submitted_by": "Esylus", "name": "Ark Icon", "description": "A small simple icon of my original character Ark, a 7 foot robot with a TV screen for a face with a waveform.", "website": "https://twitter.com/TheRealEsylus", "subreddit": "", "center": [954.5, 1393.5], "path": [[949.5, 1388.5], [949.5, 1397.5], [958.5, 1397.5], [958.5, 1388.5], [949.5, 1388.5]]}, {"id": "txblrt", "submitted_by": "CripzyChiken", "name": "PeteZahHutt", "description": "Minecraft Youtuber and Twitch streamer PeteZahHutt", "website": "", "subreddit": "", "center": [900.5, 548.5], "path": [[895.5, 543.5], [904.5, 543.5], [904.5, 552.5], [895.5, 552.5]]}, {"id": "txbln9", "submitted_by": "IgneousWrath", "name": "Flag of the Canary Islands", "description": "Flag of the Canary Islands drawn by a small Twitter community. A member reached out to the r/GuildWars2 community for help defending it.", "website": "https://en.wikipedia.org/wiki/Flag_of_the_Canary_Islands", "subreddit": "", "center": [1996.5, 1373.5], "path": [[1999.5, 1383.5], [1999.5, 1362.5], [1993.5, 1362.5], [1993.5, 1383.5]]}, -{"id": "txbkim", "submitted_by": "akmoony", "name": "The Front Bottoms Album", "description": "The Front Bottoms' self-titled debut album, which was released in 2011.", "website": "", "subreddit": "", "center": [1729.5, 618.5], "path": [[1722.5, 609.5], [1736.5, 609.5], [1736.5, 627.5], [1722.5, 627.5]]}, {"id": "txbkhs", "submitted_by": "CripzyChiken", "name": "HBomb94", "description": "Minecraft Youtuber and Twitch Streamer HBomb94", "website": "", "subreddit": "", "center": [882.5, 539.5], "path": [[878.5, 535.5], [885.5, 535.5], [885.5, 543.5], [878.5, 543.5], [878.5, 539.5], [878.5, 537.5]]}, {"id": "txbkd8", "submitted_by": "ProfessionalFish8505", "name": "/r/gravityrush", "description": "A subreddit for Gravity Rush, a PS Vita game later released on the PS4, and its sequel Gravity Rush 2, also released on the PS4.", "website": "", "subreddit": "/r/gravityrush", "center": [1671.5, 1125.5], "path": [[1646.5, 1122.5], [1646.5, 1127.5], [1695.5, 1127.5], [1695.5, 1122.5], [1646.5, 1122.5], [1646.5, 1122.5], [1646.5, 1122.5]]}, -{"id": "txbk6h", "submitted_by": "OrangeSheepYT", "name": "Gon Freecss", "description": "\"I can't stand being on the losing end forever!!\" \nGon Freecss is a Rookie Hunter and the son of Ging Freecss. Finding his father is Gon's motivation in becoming a Hunter. \nGon is one of the main protagonists of Hunter x Hunter, a manga series written and illustrated by Yoshihiro Togashi. \nThis sprite was made by the HxH Place Discord server and the Anime Alliance. \nHxH: https://discord.gg/sCwSxCBj2D \nAnime Alliance: https://discord.gg/9U6pHMbHS4", "website": "", "subreddit": "/r/HunterXHunter", "center": [1700.5, 1186.5], "path": [[1709.5, 1173.5], [1691.5, 1173.5], [1691.5, 1199.5], [1709.5, 1199.5], [1709.5, 1173.5]]}, +{"id": "txbk6h", "submitted_by": "OrangeSheepYT", "name": "Gon Freecss", "description": "\"I can't stand being on the losing end forever!!\" \nGon Freecss is a Rookie Hunter and the son of Ging Freecss. Finding his father is Gon's motivation in becoming a Hunter. \nGon is one of the main protagonists of Hunter x Hunter, a manga series written and illustrated by Yoshihiro Togashi. \nThis sprite was made by the HxH Place Discord server and the Anime Alliance. \nHxH: https://discord.gg/sCwSxCBj2D \nAnime Alliance: https://discord.gg/9U6pHMbHS4", "website": "https://discord.gg/sCwSxCBj2D", "subreddit": "/r/HunterXHunter", "center": [1700.5, 1186.5], "path": [[1709.5, 1173.5], [1691.5, 1173.5], [1691.5, 1199.5], [1709.5, 1199.5], [1709.5, 1173.5]]}, {"id": "txbju6", "submitted_by": "Pigeon91", "name": "Ch\u00e2teau Frontenac", "description": "A historic hotel in Quebec city opened in 1893.", "website": "", "subreddit": "", "center": [990.5, 996.5], "path": [[972.5, 1020.5], [971.5, 993.5], [978.5, 986.5], [984.5, 985.5], [988.5, 976.5], [1001.5, 977.5], [1004.5, 982.5], [1004.5, 987.5], [1008.5, 987.5], [1007.5, 1017.5], [1003.5, 1009.5], [997.5, 1007.5], [987.5, 1007.5], [981.5, 1010.5], [975.5, 1016.5], [972.5, 1020.5], [972.5, 1016.5]]}, {"id": "txbjrc", "submitted_by": "CuberSoGreen", "name": "Philippine Archipelago", "description": "Philippine Archipelago highlighted in The Philippine Flag.", "website": "", "subreddit": "/r/Philippines", "center": [352.5, 666.5], "path": [[337.5, 678.5], [345.5, 667.5], [347.5, 664.5], [343.5, 654.5], [348.5, 646.5], [352.5, 646.5], [352.5, 660.5], [353.5, 660.5], [359.5, 661.5], [360.5, 664.5], [361.5, 667.5], [362.5, 675.5], [362.5, 683.5], [360.5, 684.5], [361.5, 685.5], [358.5, 685.5], [359.5, 684.5], [359.5, 680.5], [358.5, 679.5], [358.5, 678.5], [357.5, 677.5], [355.5, 675.5], [348.5, 675.5]]}, {"id": "txbj8l", "submitted_by": "gauderyx", "name": "Chasse-galerie", "description": "Qu\u00e9b\u00e9cois tale about lumberjacks cursed to row a flying canoe for eternity.", "website": "https://en.wikipedia.org/wiki/Chasse-galerie", "subreddit": "", "center": [1005.5, 942.5], "path": [[989.5, 930.5], [1010.5, 923.5], [1021.5, 933.5], [1018.5, 959.5], [989.5, 955.5]]}, -{"id": "txbj2f", "submitted_by": "iiiConnor", "name": "Washington Monument", "description": "An obelisk in Washington, D.C., built to commemorate the first president of The United States, George Washington.", "website": "", "subreddit": "/r/americanflaginplace", "center": [1875.5, 1853.5], "path": [[1873.5, 1866.5], [1873.5, 1841.5], [1874.5, 1841.5], [1874.5, 1839.5], [1876.5, 1839.5], [1876.5, 1841.5], [1877.5, 1841.5], [1877.5, 1866.5]]}, -{"id": "txbiyk", "submitted_by": "Tricky-Pants", "name": "Puzzle and Dragons", "description": "A mobile game where the object is to collect monsters to build a team to clear dungeons of enemies. The method to attack is matching same color orbs. One of the iconic monsters that is used to represent milestones is the Tamadra, which is used here. +297 is added as a standard buff of maximizing a monster's stats.", "website": "www.puzzleanddragons.us", "subreddit": "/r/puzzleanddragons", "center": [1586.5, 1306.5], "path": [[1578.5, 1290.5], [1581.5, 1293.5], [1584.5, 1292.5], [1581.5, 1291.5], [1580.5, 1291.5], [1579.5, 1289.5], [1582.5, 1290.5], [1585.5, 1290.5], [1587.5, 1290.5], [1582.5, 1289.5], [1586.5, 1289.5], [1579.5, 1294.5], [1579.5, 1297.5], [1583.5, 1298.5], [1586.5, 1297.5], [1587.5, 1293.5], [1579.5, 1301.5], [1579.5, 1303.5], [1579.5, 1306.5], [1579.5, 1306.5], [1578.5, 1305.5], [1580.5, 1310.5], [1578.5, 1313.5], [1578.5, 1312.5], [1583.5, 1314.5], [1589.5, 1314.5], [1594.5, 1314.5], [1597.5, 1314.5], [1584.5, 1310.5], [1582.5, 1312.5], [1590.5, 1314.5], [1598.5, 1314.5], [1599.5, 1315.5], [1586.5, 1295.5]]}, +{"id": "txbiyk", "submitted_by": "Tricky-Pants", "name": "Puzzle and Dragons", "description": "A mobile game where the object is to collect monsters to build a team to clear dungeons of enemies. The method to attack is matching same color orbs. One of the iconic monsters that is used to represent milestones is the Tamadra, which is used here. +297 is added as a standard buff of maximizing a monster's stats.", "website": "https://www.puzzleanddragons.us", "subreddit": "/r/puzzleanddragons", "center": [1586.5, 1306.5], "path": [[1578.5, 1290.5], [1581.5, 1293.5], [1584.5, 1292.5], [1581.5, 1291.5], [1580.5, 1291.5], [1579.5, 1289.5], [1582.5, 1290.5], [1585.5, 1290.5], [1587.5, 1290.5], [1582.5, 1289.5], [1586.5, 1289.5], [1579.5, 1294.5], [1579.5, 1297.5], [1583.5, 1298.5], [1586.5, 1297.5], [1587.5, 1293.5], [1579.5, 1301.5], [1579.5, 1303.5], [1579.5, 1306.5], [1579.5, 1306.5], [1578.5, 1305.5], [1580.5, 1310.5], [1578.5, 1313.5], [1578.5, 1312.5], [1583.5, 1314.5], [1589.5, 1314.5], [1594.5, 1314.5], [1597.5, 1314.5], [1584.5, 1310.5], [1582.5, 1312.5], [1590.5, 1314.5], [1598.5, 1314.5], [1599.5, 1315.5], [1586.5, 1295.5]]}, {"id": "txbix7", "submitted_by": "TetraPengwin", "name": "Slidelie", "description": "A variation of Adelie (A penguin that is featured in a number of mods for the PICO8 version of Celeste) depicted sliding on the floor.", "website": "", "subreddit": "", "center": [1021.5, 868.5], "path": [[1016.5, 866.5], [1016.5, 870.5], [1017.5, 870.5], [1017.5, 872.5], [1024.5, 872.5], [1024.5, 870.5], [1025.5, 870.5], [1025.5, 865.5], [1024.5, 865.5], [1024.5, 864.5], [1019.5, 864.5], [1019.5, 865.5], [1017.5, 865.5], [1017.5, 866.5]]}, {"id": "txbiqm", "submitted_by": "MortuusGenesis", "name": "Cucumber Slice", "description": "The vegetable mascot of Twitch Streamer/Photographer, MarshallsWorldx", "website": "https://www.twitch.tv/marshallsworldx", "subreddit": "", "center": [525.5, 1502.5], "path": [[519.5, 1495.5], [517.5, 1498.5], [517.5, 1501.5], [524.5, 1508.5], [528.5, 1512.5], [532.5, 1512.5], [532.5, 1500.5], [530.5, 1500.5], [529.5, 1498.5], [529.5, 1496.5], [530.5, 1496.5], [530.5, 1495.5], [519.5, 1495.5], [518.5, 1495.5], [522.5, 1498.5], [519.5, 1495.5], [519.5, 1495.5]]}, {"id": "txbij4", "submitted_by": "uthappam", "name": "Royal Elephant", "description": "Elephants were highly valued by the rulers of India, for their power in battle and their majestic dignity as ceremonial mounts.", "website": "", "subreddit": "/r/IndiaPlace", "center": [510.5, 322.5], "path": [[494.5, 306.5], [494.5, 307.5], [492.5, 307.5], [491.5, 309.5], [491.5, 316.5], [490.5, 316.5], [482.5, 324.5], [482.5, 327.5], [486.5, 327.5], [491.5, 322.5], [491.5, 335.5], [495.5, 336.5], [495.5, 341.5], [506.5, 341.5], [506.5, 335.5], [511.5, 335.5], [511.5, 341.5], [520.5, 341.5], [521.5, 340.5], [521.5, 331.5], [521.5, 330.5], [526.5, 330.5], [526.5, 336.5], [522.5, 336.5], [523.5, 339.5], [530.5, 339.5], [530.5, 331.5], [530.5, 330.5], [533.5, 330.5], [533.5, 329.5], [534.5, 329.5], [534.5, 322.5], [532.5, 321.5], [531.5, 321.5], [531.5, 307.5], [530.5, 307.5], [530.5, 306.5], [495.5, 306.5]]}, @@ -6002,12 +5505,11 @@ {"id": "txbi8l", "submitted_by": "Ilovebook123", "name": "Loona X Vut", "description": "a memento of Loona a kpop girl group and Vut a Czech University alliance", "website": "", "subreddit": "", "center": [1331.5, 607.5], "path": [[1329.5, 600.5], [1333.5, 600.5], [1333.5, 615.5], [1329.5, 614.5]]}, {"id": "txbi0m", "submitted_by": "ItzMCVillager", "name": "The r/place Logo", "description": "A 5x5 Logo of r/place", "website": "", "subreddit": "/r/place", "center": [1434.5, 266.5], "path": [[1432.5, 264.5], [1432.5, 268.5], [1436.5, 268.5], [1436.5, 264.5]]}, {"id": "txbhs9", "submitted_by": "Kona11984", "name": "Tree", "description": "The amazing tree made by u/Greentree26_", "website": "https://www.reddit.com/user/Greentree26_", "subreddit": "", "center": [1602.5, 1395.5], "path": [[1602.5, 1395.5], [1602.5, 1395.5], [1602.5, 1395.5], [1602.5, 1395.5], [1603.5, 1396.5], [1603.5, 1395.5], [1602.5, 1395.5], [1603.5, 1396.5], [1602.5, 1395.5], [1601.5, 1393.5], [1601.5, 1396.5], [1603.5, 1393.5], [1602.5, 1394.5]]}, -{"id": "txbhmf", "submitted_by": "elotrosaulo", "name": "Illimani", "description": "It's the highest mountain in the Cordillera Real. Landmark of La Paz, Bolivia.", "website": "/r/bolivia", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "txbhit", "submitted_by": "SquishedDucks", "name": "Houseki no Kuni hiatus", "description": "Houseki no Kuni has been on hiatus since December 2020. It is missing in action. Please contact the your local Houseki no Kuni fan if you know the next release date or the location of Haruko Ichikawa's ps5. A link has been provided to the countdown twitter if you do not know a HnK fan", "website": "https://twitter.com/HousekiCount", "subreddit": "/r/HousekiNoKuni", "center": [1587.5, 498.5], "path": [[1583.5, 488.5], [1583.5, 507.5], [1590.5, 507.5], [1590.5, 488.5]]}, {"id": "txbhe1", "submitted_by": "pequeninhosmall", "name": "Leather hat", "description": "Traditional leather hat from northeastern Brazil.", "website": "", "subreddit": "/r/brasil", "center": [1091.5, 573.5], "path": [[1091.5, 569.5], [1097.5, 571.5], [1099.5, 574.5], [1097.5, 575.5], [1097.5, 577.5], [1096.5, 577.5], [1095.5, 573.5], [1090.5, 573.5], [1089.5, 578.5], [1087.5, 578.5], [1086.5, 574.5], [1085.5, 575.5], [1083.5, 573.5], [1085.5, 571.5], [1089.5, 569.5], [1094.5, 569.5], [1093.5, 568.5], [1100.5, 574.5], [1100.5, 576.5], [1098.5, 571.5], [1098.5, 571.5]]}, {"id": "txbgxp", "submitted_by": "Ashmer_Nera", "name": "jagganoth", "description": "the character jagganoth from the webcomic \"kill 6 billion demon\"", "website": "https://killsixbilliondemons.com/", "subreddit": "", "center": [1745.5, 1302.5], "path": [[1737.5, 1276.5], [1755.5, 1277.5], [1764.5, 1304.5], [1760.5, 1325.5], [1733.5, 1325.5], [1725.5, 1293.5]]}, {"id": "txbgt0", "submitted_by": "FullyK", "name": "Ugandan Knuckles", "description": "Small art of Ugandan Knucles who knows dae way.", "website": "https://knowyourmeme.com/memes/ugandan-knuckles", "subreddit": "", "center": [662.5, 1536.5], "path": [[668.5, 1532.5], [656.5, 1532.5], [656.5, 1540.5], [668.5, 1540.5]]}, -{"id": "txbg8y", "submitted_by": "space-is-neat", "name": "Mac the Dog", "description": "Mac the dog belonging to Andrew Manganelli from MKBHD!", "website": "mkbhd.com", "subreddit": "/r/mkbhd", "center": [1232.5, 1617.5], "path": [[1223.5, 1611.5], [1240.5, 1611.5], [1241.5, 1623.5], [1224.5, 1623.5]]}, +{"id": "txbg8y", "submitted_by": "space-is-neat", "name": "Mac the Dog", "description": "Mac the dog belonging to Andrew Manganelli from MKBHD!", "website": "https://mkbhd.com", "subreddit": "/r/mkbhd", "center": [1232.5, 1617.5], "path": [[1223.5, 1611.5], [1240.5, 1611.5], [1241.5, 1623.5], [1224.5, 1623.5]]}, {"id": "txbfqf", "submitted_by": "FullyK", "name": "Mike Wazowski", "description": "Mike Wazowski, one of the main characters of the Pixar movie Monster & Company", "website": "", "subreddit": "", "center": [1510.5, 1258.5], "path": [[1517.5, 1251.5], [1502.5, 1251.5], [1502.5, 1262.5], [1511.5, 1263.5], [1511.5, 1267.5], [1517.5, 1267.5]]}, {"id": "txbfh6", "submitted_by": "Super7H", "name": "Fanter", "description": "A bottle of Fanter (a misspelling of Fanta) being held by Floppa, it also has 3 Among Us characters on it.", "website": "", "subreddit": "/r/196", "center": [1946.5, 483.5], "path": [[1942.5, 463.5], [1942.5, 464.5], [1948.5, 464.5], [1948.5, 463.5], [1947.5, 463.5], [1943.5, 463.5], [1943.5, 466.5], [1941.5, 466.5], [1941.5, 467.5], [1940.5, 467.5], [1940.5, 468.5], [1939.5, 468.5], [1939.5, 469.5], [1938.5, 469.5], [1938.5, 472.5], [1937.5, 472.5], [1937.5, 474.5], [1937.5, 475.5], [1936.5, 483.5], [1938.5, 483.5], [1938.5, 484.5], [1941.5, 484.5], [1941.5, 485.5], [1944.5, 485.5], [1944.5, 486.5], [1946.5, 487.5], [1947.5, 487.5], [1947.5, 492.5], [1946.5, 492.5], [1946.5, 493.5], [1941.5, 493.5], [1941.5, 492.5], [1936.5, 491.5], [1936.5, 498.5], [1937.5, 500.5], [1952.5, 500.5], [1953.5, 499.5], [1954.5, 499.5], [1954.5, 489.5], [1953.5, 489.5], [1953.5, 485.5], [1954.5, 484.5], [1954.5, 475.5], [1953.5, 474.5], [1953.5, 472.5], [1952.5, 471.5], [1952.5, 469.5], [1951.5, 468.5], [1950.5, 467.5], [1949.5, 466.5], [1948.5, 466.5], [1947.5, 465.5], [1947.5, 465.5], [1945.5, 465.5], [1947.5, 465.5]]}, {"id": "txbexv", "submitted_by": "squidrobotfriend", "name": "r/MrRobot / Rassicas Alliance pt.1", "description": "The first art piece by r/MrRobot, fsociety_, was also one of the major locations of the r/MrRobot / Rassicas alliance, including Summit1G and Deep Rock Galactic.", "website": "", "subreddit": "/r/MrRobot", "center": [210.5, 279.5], "path": [[175.5, 308.5], [237.5, 308.5], [237.5, 298.5], [241.5, 298.5], [241.5, 277.5], [250.5, 277.5], [250.5, 252.5], [176.5, 252.5], [176.5, 253.5], [175.5, 254.5], [175.5, 308.5]]}, @@ -6019,9 +5521,8 @@ {"id": "txbd5e", "submitted_by": "ziulits", "name": "NixOS", "description": "NixOS is a linux distribution built with nix package manager", "website": "https://nixos.org/", "subreddit": "/r/NixOS", "center": [33.5, 708.5], "path": [[31.5, 705.5], [35.5, 705.5], [36.5, 710.5], [35.5, 711.5], [31.5, 711.5], [30.5, 709.5], [30.5, 706.5]]}, {"id": "txbcut", "submitted_by": "MegaDoubleH", "name": "Calcifer", "description": "Calcifer is a fire demon from the Studio Ghibli film, Howl's Moving Castle.", "website": "https://howlscastle.fandom.com/wiki/Calcifer", "subreddit": "/r/ghibli", "center": [1777.5, 696.5], "path": [[1770.5, 687.5], [1770.5, 688.5], [1770.5, 689.5], [1770.5, 690.5], [1770.5, 691.5], [1770.5, 690.5], [1770.5, 693.5], [1770.5, 695.5], [1770.5, 696.5], [1770.5, 698.5], [1770.5, 700.5], [1770.5, 701.5], [1770.5, 703.5], [1770.5, 704.5], [1770.5, 705.5], [1772.5, 705.5], [1774.5, 705.5], [1775.5, 705.5], [1777.5, 705.5], [1779.5, 705.5], [1782.5, 705.5], [1784.5, 705.5], [1784.5, 703.5], [1784.5, 702.5], [1784.5, 700.5], [1784.5, 698.5], [1784.5, 696.5], [1784.5, 695.5], [1784.5, 693.5], [1784.5, 691.5], [1784.5, 690.5], [1784.5, 688.5], [1784.5, 687.5], [1783.5, 687.5], [1778.5, 687.5]]}, {"id": "txbctj", "submitted_by": "SirRivian", "name": "Sausagetalks", "description": "Sausage's fursona", "website": "https://www.furaffinity.net/view/41486125/", "subreddit": "", "center": [1468.5, 1253.5], "path": [[1459.5, 1258.5], [1462.5, 1259.5], [1464.5, 1259.5], [1474.5, 1259.5], [1475.5, 1258.5], [1476.5, 1257.5], [1476.5, 1250.5], [1477.5, 1249.5], [1477.5, 1247.5], [1459.5, 1247.5], [1458.5, 1250.5], [1460.5, 1250.5], [1459.5, 1258.5], [1460.5, 1258.5]]}, -{"id": "txbcq3", "submitted_by": "elotrosaulo", "name": "Salte\u00f1a", "description": "Delicious baked empanada made in Bolivia. It's typically filled with a sauce and some meat like beef, chicken, pork, etc.", "website": "/r/bolivia", "subreddit": "", "center": [1556.5, 1222.5], "path": [[1549.5, 1216.5], [1556.5, 1208.5], [1562.5, 1216.5], [1564.5, 1226.5], [1562.5, 1232.5], [1550.5, 1232.5], [1548.5, 1226.5], [1549.5, 1216.5]]}, +{"id": "txbcq3", "submitted_by": "elotrosaulo", "name": "Salte\u00f1a", "description": "Delicious baked empanada made in Bolivia. It's typically filled with a sauce and some meat like beef, chicken, pork, etc.", "website": "https:///r/bolivia", "subreddit": "", "center": [1556.5, 1222.5], "path": [[1549.5, 1216.5], [1556.5, 1208.5], [1562.5, 1216.5], [1564.5, 1226.5], [1562.5, 1232.5], [1550.5, 1232.5], [1548.5, 1226.5], [1549.5, 1216.5]]}, {"id": "txbcck", "submitted_by": "BryanGris", "name": "Little Peng\u00fcin!", "description": "Este peque\u00f1o pinguino fue creado apartir de la contribucion de BryanGris y muchos amigos mas!", "website": "", "subreddit": "u/BryanGris", "center": [1054.5, 1118.5], "path": [[1051.5, 1115.5], [1057.5, 1115.5], [1057.5, 1121.5], [1051.5, 1121.5]]}, -{"id": "txbbi3", "submitted_by": "DKS1996", "name": "Digimon - Gabumon", "description": "Gabumon, a reptile digital monster from a Japanese media franchise.", "website": "", "subreddit": "/r/digimon", "center": [1330.5, 118.5], "path": [[1321.5, 104.5], [1321.5, 105.5], [1322.5, 106.5], [1322.5, 109.5], [1321.5, 110.5], [1320.5, 111.5], [1319.5, 113.5], [1318.5, 114.5], [1319.5, 115.5], [1320.5, 116.5], [1320.5, 117.5], [1320.5, 119.5], [1319.5, 120.5], [1320.5, 121.5], [1320.5, 122.5], [1319.5, 122.5], [1319.5, 123.5], [1319.5, 129.5], [1320.5, 129.5], [1320.5, 130.5], [1327.5, 130.5], [1327.5, 131.5], [1333.5, 131.5], [1342.5, 127.5], [1342.5, 124.5], [1341.5, 124.5], [1341.5, 123.5], [1342.5, 122.5], [1343.5, 119.5], [1344.5, 117.5], [1340.5, 116.5], [1340.5, 117.5], [1339.5, 117.5], [1339.5, 116.5], [1338.5, 115.5], [1338.5, 114.5], [1337.5, 113.5], [1337.5, 112.5], [1336.5, 111.5], [1336.5, 110.5], [1335.5, 109.5], [1334.5, 108.5], [1335.5, 108.5], [1336.5, 107.5], [1337.5, 106.5], [1338.5, 104.5], [1338.5, 103.5], [1334.5, 103.5], [1334.5, 104.5], [1330.5, 104.5], [1330.5, 105.5], [1329.5, 105.5], [1329.5, 104.5], [1329.5, 102.5], [1326.5, 102.5], [1326.5, 103.5], [1325.5, 104.5], [1324.5, 104.5], [1320.5, 102.5], [1320.5, 103.5]]}, {"id": "txbbb6", "submitted_by": "Sinter", "name": "Grateful Dead Stealie", "description": "The symbol on the cover of the Grateful Dead album Steal Your Face, it is often referred to as the Steal Your Face skull emblem or Stealie for short", "website": "", "subreddit": "/r/gradefuldead", "center": [13.5, 916.5], "path": [[17.5, 903.5], [21.5, 905.5], [25.5, 909.5], [26.5, 913.5], [26.5, 919.5], [25.5, 921.5], [21.5, 926.5], [15.5, 930.5], [9.5, 930.5], [5.5, 927.5], [1.5, 923.5], [0.5, 921.5], [0.5, 911.5], [1.5, 908.5], [4.5, 905.5], [9.5, 903.5]]}, {"id": "txbb4x", "submitted_by": "DualWielded", "name": "Bramopolis Logo", "description": "The Logo of Bramopolis!\nCreated by u/DualWielded, u/AppleMagik, u/Prapagah, u/AladVEVO, u/WKLAY123, u/MustachioedPear, u/GamingWithBram, u/Sky7734, and u/01152003", "website": "https://discord.gg/rgxzV5Va9d", "subreddit": "/r/Bramopolis", "center": [1019.5, 1818.5], "path": [[1008.5, 1807.5], [1029.5, 1807.5], [1029.5, 1828.5], [1008.5, 1828.5]]}, {"id": "txbb0j", "submitted_by": "ProfessionalFish8505", "name": "Mike Wazowski", "description": "One of the main character's from Pixar's Monsters Inc. and its prequel Monsters University, voiced by Billy Crystal.", "website": "", "subreddit": "", "center": [1511.5, 1260.5], "path": [[1510.5, 1263.5], [1510.5, 1271.5], [1518.5, 1271.5], [1518.5, 1251.5], [1505.5, 1251.5], [1502.5, 1251.5], [1502.5, 1263.5], [1510.5, 1263.5]]}, @@ -6031,25 +5532,21 @@ {"id": "txba3b", "submitted_by": "xarlios", "name": "Chasse-galerie (The bewitched canoe)", "description": "Representation of the Chasse-galerie, a popular tale in the french canadian folklore. It's about lumberjack who wanted to visited their wifes during Christmas eve but they wre too far. So they made a pact with the Devil so they can fly on a canoe but with some restriction like no swearing, don't hit bell and to be back before 6 am. If they fail, they lost their soul. How it goes depend on the version and the teller.", "website": "", "subreddit": "/quebec", "center": [1002.5, 942.5], "path": [[989.5, 926.5], [987.5, 959.5], [1017.5, 955.5], [1018.5, 926.5]]}, {"id": "txb9yp", "submitted_by": "Silversoal", "name": "Inthelittlewood", "description": "Also known as Martyn. He is a Youtuber & Twitch streamer that has been in SMPs such as Evolution SMP and 3rd Life/Last Life. He is also part of the Yogscast", "website": "https://www.inthelittlewood.com/", "subreddit": "", "center": [1161.5, 318.5], "path": [[1156.5, 313.5], [1156.5, 322.5], [1165.5, 322.5], [1165.5, 313.5]]}, {"id": "txb9xz", "submitted_by": "KappaBerga", "name": "Cangaceiro hat", "description": "Typical hat representative of the Canga\u00e7o, a social phenomenon which took place from the 19th to mid 20th century in the northeastern, more arid part of Brazil. In it many men and women became nomadic bandits due to government negligence and overall hardships of the semiarid. Cangaceiro was the name given to members of this phenomenon.", "website": "https://en.wikipedia.org/wiki/Canga%C3%A7o", "subreddit": "/r/brasil", "center": [1091.5, 572.5], "path": [[1089.5, 578.5], [1083.5, 573.5], [1082.5, 575.5], [1083.5, 573.5], [1089.5, 569.5], [1091.5, 569.5], [1091.5, 568.5], [1093.5, 568.5], [1093.5, 569.5], [1094.5, 569.5], [1094.5, 570.5], [1096.5, 570.5], [1096.5, 571.5], [1098.5, 571.5], [1098.5, 573.5], [1099.5, 573.5], [1099.5, 574.5], [1100.5, 574.5], [1100.5, 576.5], [1100.5, 574.5], [1097.5, 574.5], [1097.5, 577.5], [1095.5, 577.5], [1095.5, 572.5], [1089.5, 572.5], [1089.5, 578.5]]}, -{"id": "txb9sh", "submitted_by": "iiiConnor", "name": "Golden Gate Bridge", "description": "A suspension bridge spanning the Golden Gate in San Francisco, California. Was the longest suspension bridge in the world at time of completion.", "website": "", "subreddit": "/r/americanflaginplace", "center": [1811.5, 1848.5], "path": [[1775.5, 1853.5], [1775.5, 1840.5], [1788.5, 1830.5], [1786.5, 1853.5], [1788.5, 1854.5], [1789.5, 1855.5], [1789.5, 1865.5], [1788.5, 1853.5], [1796.5, 1854.5], [1796.5, 1867.5], [1798.5, 1867.5], [1798.5, 1853.5], [1798.5, 1826.5], [1788.5, 1827.5], [1786.5, 1853.5], [1799.5, 1853.5], [1803.5, 1855.5], [1808.5, 1856.5], [1814.5, 1857.5], [1818.5, 1858.5], [1819.5, 1859.5], [1820.5, 1865.5], [1823.5, 1865.5], [1824.5, 1858.5], [1831.5, 1861.5], [1831.5, 1858.5], [1824.5, 1850.5], [1823.5, 1840.5], [1820.5, 1839.5], [1811.5, 1851.5], [1799.5, 1835.5], [1787.5, 1853.5]]}, {"id": "txb9kk", "submitted_by": "socks_and_hair", "name": "Maintane", "description": "Maintane's head, from the game K&M. Made by 7 friends from a discord server.", "website": "https://socksandhair.itch.io/km", "subreddit": "/r/k_m", "center": [472.5, 1966.5], "path": [[468.5, 1963.5], [475.5, 1963.5], [475.5, 1969.5], [468.5, 1969.5]]}, -{"id": "txb9ip", "submitted_by": "Smiedro", "name": "VintageBeef", "description": "Youtuber VintageBeef of HermitCraft", "website": "https://www.youtube.com/user/VintageBeef", "subreddit": "", "center": [901.5, 611.5], "path": [[897.5, 608.5], [904.5, 608.5], [904.5, 614.5], [897.5, 614.5], [897.5, 608.5]]}, {"id": "txb8vv", "submitted_by": "Byrocks", "name": "Yogscast Doncon Icon", "description": "An icon representing Doncon, a Yogscast inside joke originating in a Garry's Mod Pictionary video. In said video, a 3D model representing the Minecraft skin of Yogscast member Duncan Jones was created. The 3D model became an instant hit with both Yogscast members and fans, with Duncan Jones eventually using a version of it as his skin for the Garry's Mod game Trouble in Terrorist Town.", "website": "", "subreddit": "/r/yogscast", "center": [1506.5, 230.5], "path": [[1497.5, 221.5], [1514.5, 221.5], [1514.5, 238.5], [1497.5, 238.5]]}, -{"id": "txb8m7", "submitted_by": "elotrosaulo", "name": "Small Bolivian flag", "description": "Little version of the Bolivian flag", "website": "/r/bolivia", "subreddit": "", "center": [1778.5, 1105.5], "path": [[1769.5, 1100.5], [1769.5, 1110.5], [1788.5, 1110.5], [1784.5, 1100.5], [1784.5, 1100.5]]}, +{"id": "txb8m7", "submitted_by": "elotrosaulo", "name": "Small Bolivian flag", "description": "Little version of the Bolivian flag", "website": "https:///r/bolivia", "subreddit": "", "center": [1778.5, 1105.5], "path": [[1769.5, 1100.5], [1769.5, 1110.5], [1788.5, 1110.5], [1784.5, 1100.5], [1784.5, 1100.5]]}, {"id": "txb8h6", "submitted_by": "Wrath_FMA", "name": "Creeper wearing hat", "description": "It's a Creeper from Minecraft...wearing a hat.", "website": "", "subreddit": "/r/Minecraft", "center": [88.5, 1047.5], "path": [[85.5, 1040.5], [91.5, 1040.5], [91.5, 1053.5], [85.5, 1053.5], [85.5, 1041.5]]}, {"id": "txb81j", "submitted_by": "craftxbox", "name": "The Front Bottoms", "description": "The Front Bottoms are an American rock band from Woodcliff Lake, New Jersey consisting of lead vocalist and guitarist Brian Sella and drummer Mat Uychich.", "website": "https://www.thefrontbottoms.com/", "subreddit": "/r/thefrontbottoms", "center": [1714.5, 613.5], "path": [[1706.5, 617.5], [1705.5, 610.5], [1710.5, 606.5], [1717.5, 606.5], [1722.5, 611.5], [1722.5, 617.5], [1717.5, 621.5], [1710.5, 621.5]]}, {"id": "txb7xi", "submitted_by": "ProfessionalFish8505", "name": "Bisexual Transgender Unity", "description": "Two flags showing unity between the Bisexual and Transgender communities.", "website": "", "subreddit": "", "center": [1640.5, 1953.5], "path": [[1633.5, 1946.5], [1633.5, 1960.5], [1647.5, 1960.5], [1647.5, 1946.5], [1633.5, 1946.5]]}, {"id": "txb7tb", "submitted_by": "Silversoal", "name": "SolidarityGaming", "description": "A Minecraft Youtuber that has been in many SMPs including Evolution, Legacy X-Life, 3rd Life/Last Life, Empires, and ALSMP", "website": "https://www.youtube.com/user/SolidarityGaming", "subreddit": "", "center": [1143.5, 318.5], "path": [[1138.5, 313.5], [1138.5, 322.5], [1147.5, 322.5], [1147.5, 313.5]]}, {"id": "txb7qr", "submitted_by": "Pirim2806", "name": "Best Buddies logo", "description": "A small logo of Best Buddies, a nonprofit American organization focused on volunteers pairing up with people with intellectual and developmental disabilities to provide them a friend.", "website": "https://www.bestbuddies.org/", "subreddit": "", "center": [951.5, 1492.5], "path": [[946.5, 1489.5], [956.5, 1489.5], [956.5, 1495.5], [946.5, 1495.5]]}, {"id": "txb6lr", "submitted_by": "KrumpleTrash", "name": "James Marriott Skin", "description": "He is a Swiss-English YouTuber known for his commentary-based videos and his features Tommyinnits videos and vlogs. A meme hes known for is that he quote 'masturbates with his balls'", "website": "https://https://www.youtube.com/jamesmarriott", "subreddit": "/r/JamesMarriott", "center": [151.5, 949.5], "path": [[147.5, 945.5], [147.5, 952.5], [154.5, 952.5], [154.5, 945.5], [147.5, 945.5]]}, -{"id": "txb6is", "submitted_by": "VeryMythical", "name": "Wheatzies", "description": "Also known as Wheat. Face of the mascot and grain representing her.", "website": "https://www.instagram.com/wheatzies/", "subreddit": "", "center": [1289.5, 553.5], "path": [[1275.5, 563.5], [1295.5, 561.5], [1296.5, 556.5], [1299.5, 552.5], [1304.5, 551.5], [1304.5, 548.5], [1303.5, 545.5], [1290.5, 544.5], [1288.5, 544.5], [1275.5, 557.5]]}, {"id": "txb6f6", "submitted_by": "gab250", "name": "Universit\u00e9 de Sherbrooke", "description": "Logo of Universit\u00e9 de Sherbrooke, a University in southern Quebec, Canada.", "website": "https://www.usherbrooke.ca/", "subreddit": "/r/usherbrooke", "center": [1034.5, 1022.5], "path": [[1040.5, 1015.5], [1040.5, 1028.5], [1027.5, 1028.5], [1027.5, 1015.5], [1040.5, 1015.5]]}, {"id": "txb5sr", "submitted_by": "DKS1996", "name": "Soul Eater Logo", "description": "A logo from a manga series - Soul Eater by Atsushi Ohkubo.\n", "website": "", "subreddit": "/r/souleater", "center": [1888.5, 1279.5], "path": [[1883.5, 1274.5], [1883.5, 1283.5], [1894.5, 1283.5], [1893.5, 1274.5], [1888.5, 1274.5], [1888.5, 1274.5]]}, {"id": "txb5rz", "submitted_by": "CuberSoGreen", "name": "Rosus", "description": "Rosus (Play on word of Rosas, Filipino for Rose) is a symbol used by Leni Robredo (14th President of The Philippines and presidential candidate of the 2022 Philippine Presidential Election). During the event, some users grief the rose to have an Among Us character in the middle, users of r/Philippines thought it was funny so they kept it.", "website": "", "subreddit": "/r/Philippines", "center": [350.5, 683.5], "path": [[342.5, 689.5], [339.5, 686.5], [339.5, 685.5], [340.5, 684.5], [340.5, 683.5], [341.5, 682.5], [342.5, 682.5], [343.5, 683.5], [343.5, 684.5], [344.5, 685.5], [345.5, 684.5], [345.5, 680.5], [346.5, 679.5], [346.5, 678.5], [347.5, 677.5], [348.5, 676.5], [355.5, 676.5], [356.5, 677.5], [357.5, 678.5], [357.5, 679.5], [358.5, 680.5], [358.5, 684.5], [357.5, 685.5], [357.5, 687.5], [359.5, 687.5], [360.5, 688.5], [361.5, 688.5], [361.5, 689.5], [362.5, 690.5], [362.5, 691.5], [361.5, 692.5], [361.5, 690.5], [360.5, 689.5]]}, {"id": "txb5ru", "submitted_by": "Fr0zenMach", "name": "FireBreathman", "description": "An extension of the r/Technoblade, Firebreathman is noted for being the sensei of Technoblade.", "website": "https://www.youtube.com/channel/UCNDc7yHmNBwejBJHQEflk4A", "subreddit": "", "center": [221.5, 1116.5], "path": [[216.5, 1111.5], [216.5, 1120.5], [225.5, 1120.5], [225.5, 1111.5], [220.5, 1111.5], [216.5, 1111.5]]}, {"id": "txb4xi", "submitted_by": "CheesyBrik", "name": "Jesus Juice", "description": "The jesus juice item from the binding of isaac video game", "website": "", "subreddit": "", "center": [504.5, 1101.5], "path": [[499.5, 1108.5], [505.5, 1108.5], [508.5, 1105.5], [508.5, 1097.5], [506.5, 1097.5], [507.5, 1095.5], [509.5, 1095.5], [509.5, 1093.5], [505.5, 1093.5], [503.5, 1096.5], [500.5, 1097.5], [499.5, 1099.5]]}, {"id": "txb4q4", "submitted_by": "TreeBeeTurkey014", "name": "Noggin", "description": "The character Noggin from the mobile video game My Singing Monsters.", "website": "", "subreddit": "/r/MySingingMonsters", "center": [1934.5, 1302.5], "path": [[1905.5, 1252.5], [1898.5, 1264.5], [1896.5, 1287.5], [1898.5, 1300.5], [1904.5, 1300.5], [1906.5, 1321.5], [1910.5, 1336.5], [1907.5, 1351.5], [1912.5, 1362.5], [1919.5, 1366.5], [1930.5, 1358.5], [1930.5, 1340.5], [1957.5, 1339.5], [1964.5, 1346.5], [1974.5, 1344.5], [1970.5, 1332.5], [1970.5, 1313.5], [1964.5, 1300.5], [1962.5, 1284.5], [1970.5, 1283.5], [1971.5, 1268.5], [1964.5, 1264.5], [1964.5, 1256.5], [1947.5, 1251.5], [1934.5, 1252.5], [1934.5, 1264.5], [1910.5, 1264.5], [1922.5, 1259.5], [1907.5, 1263.5]]}, -{"id": "txb4lm", "submitted_by": "anacrayola", "name": "\u00bfQuieres ser mi novia?", "description": "A famous quote to ask somebody to be your girlfriend made by the community of the vr streamer gamster_gaming", "website": "https://www.twitch.tv/gamstergaming", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "txb44k", "submitted_by": "ProfessionalFish8505", "name": "Spider-Man", "description": "Spider-Man's mask, a popular hero from Marvel Comics.", "website": "", "subreddit": "", "center": [747.5, 1738.5], "path": [[742.5, 1735.5], [745.5, 1732.5], [751.5, 1732.5], [754.5, 1736.5], [754.5, 1742.5], [749.5, 1744.5], [748.5, 1745.5], [746.5, 1745.5], [741.5, 1742.5], [741.5, 1736.5], [742.5, 1735.5]]}, {"id": "txb41q", "submitted_by": "Zerocare", "name": "Korn Land", "description": "These three happy Korns holding hands along with their eight baby Korns represent the discord gaming community Korn Land. Korn Land formed close bonds with their allies ATLA, the nation of Singapore, the Miami Dolphins, the Squares, and many others. Despite many hostile raids, the Korns were beloved by the community and always made it back. \\n\\nThank you to all who participated in keeping us alive \ud83c\udf3d\ud83c\udf3d\ud83c\udf3d", "website": "", "subreddit": "", "center": [313.5, 952.5], "path": [[298.5, 945.5], [327.5, 945.5], [327.5, 959.5], [298.5, 959.5]]}, {"id": "txb3js", "submitted_by": "SleepySeaStar", "name": "Webkinz", "description": "Webkinz is a stuffed animal franchise by Ganz, consisting of stuffed animals that come with codes that you can then use to play an online avatar of said stuffed animal. Virtual only codes also exist and can be bought through the Ganz eStore.", "website": "https://www.webkinz.com/", "subreddit": "/r/Webkinz", "center": [1436.5, 158.5], "path": [[1433.5, 156.5], [1433.5, 160.5], [1439.5, 160.5], [1439.5, 156.5]]}, @@ -6057,14 +5554,12 @@ {"id": "txb2yr", "submitted_by": "Byrocks", "name": "Honeydew Icon", "description": "An icon representing the Minecraft skin of one of the two founding Yogscast members, Simon Laine aka Honeydew. The skin represents a fantasy dwarf, specifically one from World of Warcraft.", "website": "", "subreddit": "/r/yogscast", "center": [1506.5, 247.5], "path": [[1514.5, 255.5], [1514.5, 238.5], [1497.5, 238.5], [1497.5, 255.5], [1514.5, 255.5]]}, {"id": "txb28q", "submitted_by": "soshix21", "name": "Twice", "description": "Logo and Subreddit for JYP's K-Pop Girl Group Twice", "website": "", "subreddit": "/r/Twice", "center": [1566.5, 881.5], "path": [[1524.5, 870.5], [1524.5, 876.5], [1557.5, 876.5], [1557.5, 897.5], [1587.5, 897.5], [1587.5, 870.5], [1524.5, 870.5]]}, {"id": "txb271", "submitted_by": "xarlios", "name": "1837 patriot", "description": "poster from Henri Julien of a patriot during the 1837 rebellion in Lower-Canada (now Quebec).", "website": "", "subreddit": "/quebec", "center": [913.5, 948.5], "path": [[903.5, 930.5], [902.5, 966.5], [923.5, 964.5], [924.5, 932.5]]}, -{"id": "txb1ny", "submitted_by": "ProfessionalFish8505", "name": "#RedInstead", "description": "Red Instead is a movement made by members of the autistic community. It is meant to combat the current practice of wearing/making things blue for Autism Awareness, a practice even done at the white house, as it was started by Autism Speaks. Autism Speaks is a very controversial organization among those with Autism for many reasons, and as such there is a push to distance the symbols used to represent Autism from the ones that organization uses. This is also why the puzzle piece has fallen out of use as a symbol.", "website": "", "subreddit": "/r/AutisticPride", "center": [278.5, 1855.5], "path": [[250.5, 1851.5], [250.5, 1860.5], [305.5, 1860.5], [305.5, 1850.5], [250.5, 1851.5]]}, +{"id": "txb1ny", "submitted_by": "ProfessionalFish8505", "name": "#RedInstead", "description": "Red Instead is a movement made by members of the autistic community. It is meant to combat the current practice of wearing/making things blue for Autism Awareness, a practice even done at the white house, as it was started by Autism Speaks. Autism Speaks is a very controversial organization among those with Autism for many reasons, and as such there is a push to distance the symbols used to represent Autism from the ones that organization uses. This is also why the puzzle piece has fallen out of use as a symbol.", "website": "", "subreddit": "/r/AutisticLiberation", "center": [278.5, 1855.5], "path": [[250.5, 1851.5], [250.5, 1860.5], [305.5, 1860.5], [305.5, 1850.5], [250.5, 1851.5]]}, {"id": "txb1l9", "submitted_by": "KrumpleTrash", "name": "Wilbur Soot Head", "description": "the minecraft skin for twitch streamer and youtuber wilbur, specifically revivebur which is a character from the DreamSMP", "website": "https://youtube.com/wilburplays", "subreddit": "/r/wilbursoot", "center": [178.5, 913.5], "path": [[174.5, 909.5], [174.5, 916.5], [181.5, 916.5], [181.5, 909.5], [174.5, 909.5]]}, {"id": "txb137", "submitted_by": "buster-rabbit", "name": "Stardew Valley Header", "description": "Header graphic for the Stardew Valley area directly below it.", "website": "", "subreddit": "/r/stardewvalley", "center": [1738.5, 1003.5], "path": [[1708.5, 999.5], [1768.5, 999.5], [1767.5, 1008.5], [1708.5, 1008.5], [1708.5, 999.5]]}, {"id": "txb0ua", "submitted_by": "Calvyam", "name": "Open World Learning", "description": "Logo of the Minnesotan High school Open world learning. An owl", "website": "https://www.spps.org/open", "subreddit": "", "center": [1521.5, 978.5], "path": [[1517.5, 971.5], [1524.5, 971.5], [1524.5, 987.5], [1518.5, 984.5]]}, {"id": "txb0tb", "submitted_by": "MasterXylophone", "name": "HoloID", "description": "Hololive ID 1st Generation. (from top to Bottom) Ayunda Risu, Airani Iofifteen, Moona Hoshinova", "website": "https://hololive.hololivepro.com/en/talents?gp=indonesia", "subreddit": "/r/hololive", "center": [1384.5, 986.5], "path": [[1379.5, 998.5], [1380.5, 991.5], [1378.5, 987.5], [1377.5, 984.5], [1379.5, 975.5], [1389.5, 974.5], [1389.5, 982.5], [1387.5, 991.5], [1390.5, 999.5], [1378.5, 999.5], [1378.5, 998.5]]}, -{"id": "txb0oh", "submitted_by": "redwolftrash", "name": "#redinstead", "description": "#redinstead is a hashtag meant to promote autistic individuals, autism acceptance, and awareness of how Autism Speaks does not treat autistic people fairly or humanely, wants to create a \"cure\" for autism, and often sympathizes more with non-autistic parents of autistic people than the autistic people they're meant to be helping.\n\nThe hashtag has become a large online movement, and advocates for people to wear red instead of blue throughout April (Autism Acceptance Month), since it's Autism Speaks who decided to \"light it up blue\" for autism awareness.", "website": "https://themomkind.com/redinstead-not-autism-speaks/", "subreddit": "", "center": [278.5, 1855.5], "path": [[250.5, 1850.5], [305.5, 1850.5], [305.5, 1860.5], [250.5, 1860.5]]}, {"id": "txb0m8", "submitted_by": "electrocyberend", "name": "Tohru", "description": "Tohru, one of the main characters from the series\n\"Miss Kobayashi's Dragon Maid\" by coolkyousinnjya", "website": "", "subreddit": "/r/DragonMaid", "center": [1146.5, 1851.5], "path": [[1137.5, 1848.5], [1137.5, 1847.5], [1141.5, 1844.5], [1155.5, 1845.5], [1152.5, 1857.5], [1138.5, 1857.5]]}, -{"id": "txb09s", "submitted_by": "Cutoa", "name": "CU Boulder", "description": "The logo for the University of Colorado Boulder", "website": "https://www.colorado.edu/", "subreddit": "/r/cuboulder", "center": [0.5, 0.5], "path": []}, {"id": "txb083", "submitted_by": "Titanica25", "name": "The White Mesa Initiative", "description": "A Discord roleplay server focusing on the Half-Life and Portal franchises, a group of 11 passionate members reconstructed the server's logo and fought to have it make it into the final image despite its obscurity. Originally taking an aggressive approach, White Mesa members quickly learned to negotiate and assist in constructing surrounding structures such as the Nintendo Switch it resides in and the lesbian pride flag to its right.", "website": "https://disboard.org/server/718230208569933835", "subreddit": "whitemesa", "center": [1097.5, 903.5], "path": [[1100.5, 906.5], [1094.5, 906.5], [1094.5, 900.5], [1100.5, 900.5]]}, {"id": "txb050", "submitted_by": "TheOnlyUmbrilla", "name": "Usada Pekora", "description": "Usada Pekora (\u514e\u7530\u307a\u3053\u3089) is a VTuber associated with hololive. She is the 3rd generation of hololive JP, also known as Hololive Fantasy. Her eccentric personality can be very fun to watch. PE\u2197KO\u2198 PE\u2197KO\u2198 AH\u2193HA\u2191HA\u2191", "website": "https://www.youtube.com/channel/UC1DCedRgGHBdm81E1llLhOQ", "subreddit": "/r/hololive", "center": [1371.5, 993.5], "path": [[1363.5, 998.5], [1363.5, 997.5], [1362.5, 997.5], [1362.5, 993.5], [1363.5, 993.5], [1363.5, 992.5], [1365.5, 990.5], [1366.5, 989.5], [1366.5, 985.5], [1370.5, 985.5], [1370.5, 989.5], [1372.5, 989.5], [1372.5, 985.5], [1375.5, 985.5], [1376.5, 985.5], [1376.5, 989.5], [1380.5, 993.5], [1380.5, 996.5], [1379.5, 996.5], [1379.5, 998.5]]}, {"id": "txb00f", "submitted_by": "avondeten", "name": "Ponk", "description": "A streamer from the Dream SMP. (Love is Alive)", "website": "https://www.twitch.tv/dropsbyponk", "subreddit": "/r/dropsbyponk", "center": [169.5, 949.5], "path": [[164.5, 944.5], [173.5, 944.5], [173.5, 953.5], [164.5, 953.5]]}, @@ -6075,19 +5570,14 @@ {"id": "txayoh", "submitted_by": "RichManSCTV", "name": "Ukrainian Farmers Stealing Tanks", "description": "Since the start of the current invasion of Ukraine brave farmers have been towing abandoned Russian vehicles back to the Ukraine lines to use on their side and battle.", "website": "", "subreddit": "/r/FarmersStealingTanks", "center": [356.5, 206.5], "path": [[326.5, 211.5], [356.5, 211.5], [357.5, 210.5], [357.5, 203.5], [359.5, 201.5], [361.5, 203.5], [361.5, 209.5], [363.5, 211.5], [384.5, 211.5], [384.5, 200.5], [329.5, 201.5], [328.5, 205.5], [325.5, 209.5], [325.5, 209.5], [325.5, 209.5]]}, {"id": "txay5k", "submitted_by": "AkaiiTwki", "name": "Petrified Bill Cipher", "description": "The petrified body of Bill Cipher from Gravity Falls seen in the last episode.", "website": "", "subreddit": "/r/gravityfalls", "center": [597.5, 1349.5], "path": [[591.5, 1353.5], [595.5, 1346.5], [594.5, 1345.5], [595.5, 1344.5], [595.5, 1341.5], [599.5, 1341.5], [599.5, 1344.5], [600.5, 1345.5], [599.5, 1346.5], [604.5, 1354.5], [591.5, 1354.5], [591.5, 1354.5]]}, {"id": "txay4p", "submitted_by": "carpet_cheese", "name": "forward_peepo", "description": "Built by a group of high school students in Kerrville, Texas. Pixel art designed by u/Endercraft2319 at 4am after failed attempt to create the visage of The Luke Jones. It depicts the forward-facing peepo, an emote popular within our Discord server.", "website": "https://discord.gg/fEBzRwNXuK", "subreddit": "", "center": [328.5, 1843.5], "path": [[322.5, 1849.5], [335.5, 1849.5], [334.5, 1837.5], [322.5, 1837.5], [322.5, 1842.5], [322.5, 1844.5], [322.5, 1849.5], [335.5, 1837.5], [323.5, 1838.5], [322.5, 1846.5], [322.5, 1846.5], [322.5, 1849.5], [322.5, 1849.5], [328.5, 1849.5]]}, -{"id": "txax8o", "submitted_by": "Niner_d", "name": "One World Trade Center", "description": "is the main building of the rebuilt World Trade Center complex in Lower Manhattan, New York City.", "website": "https://en.wikipedia.org/wiki/One_World_Trade_Center", "subreddit": "", "center": [1960.5, 1832.5], "path": [[1953.5, 1854.5], [1956.5, 1803.5], [1960.5, 1800.5], [1960.5, 1764.5], [1961.5, 1801.5], [1965.5, 1803.5], [1967.5, 1865.5], [1953.5, 1857.5], [1953.5, 1857.5]]}, -{"id": "txax5a", "submitted_by": "Q-Dex", "name": "Mr. Tayto", "description": "Mr. Tatyo is the mascot for the Irish potato crisps brand Tayto and for the theme park \"Tayto Park\"", "website": "https://taytocrisps.ie/", "subreddit": "", "center": [139.5, 589.5], "path": [[127.5, 572.5], [152.5, 572.5], [149.5, 606.5], [127.5, 607.5]]}, -{"id": "txawy1", "submitted_by": "Royal-Adeptness8412", "name": "ANDIAMO", "description": "A character controlled by Mister Jagger. Was one of the best roles in Marbella Vice, GTA serie created by Ibai Llanos in 2021", "website": "twitch.tv/jaggerprincesa", "subreddit": "", "center": [152.5, 63.5], "path": [[147.5, 35.5], [148.5, 37.5], [139.5, 52.5], [141.5, 65.5], [145.5, 69.5], [144.5, 78.5], [141.5, 84.5], [134.5, 84.5], [150.5, 84.5], [163.5, 82.5], [169.5, 79.5], [159.5, 68.5], [163.5, 63.5], [164.5, 56.5], [160.5, 48.5], [156.5, 43.5], [150.5, 37.5]]}, {"id": "txawwk", "submitted_by": "ustnotherhrowaway", "name": "r/furry pixel snoo", "description": "The r/furry subreddit's pixel snoo. Made in collaboration with r/furry_irl and a part of the Middle-Eastern Alliance. Several times throughout the event, the characters tongue would extend several dozen pixels in length. Was rebuilt after a Twitch streamer voided the entire surrounding area from the bottom left of RATGE to top right of Stormlight. \n\nOriginal character design by u/HarmonyHeartstrings. Based off the pixel work of u/introintroduction", "website": "", "subreddit": "/r/furry", "center": [1764.5, 915.5], "path": [[1750.5, 901.5], [1773.5, 901.5], [1779.5, 907.5], [1779.5, 911.5], [1773.5, 911.5], [1773.5, 916.5], [1782.5, 928.5], [1779.5, 928.5], [1775.5, 932.5], [1774.5, 934.5], [1774.5, 937.5], [1774.5, 935.5], [1772.5, 935.5], [1772.5, 929.5], [1771.5, 928.5], [1768.5, 928.5], [1766.5, 926.5], [1763.5, 926.5], [1762.5, 925.5], [1761.5, 925.5], [1760.5, 924.5], [1760.5, 922.5], [1759.5, 922.5], [1763.5, 926.5], [1759.5, 926.5], [1756.5, 929.5], [1750.5, 929.5], [1750.5, 902.5], [1750.5, 901.5]]}, {"id": "txawmk", "submitted_by": "BreeCeesAll", "name": "A Small Rat", "description": "Look at him! How cute. This rat was created by user BreeCeesAll and her friends, they valiantly defended the little man til the very end.", "website": "", "subreddit": "", "center": [1745.5, 306.5], "path": [[1699.5, 306.5], [1703.5, 307.5], [1704.5, 307.5], [1703.5, 306.5], [1698.5, 306.5], [1697.5, 306.5], [1698.5, 305.5], [1699.5, 304.5], [1703.5, 305.5], [1704.5, 305.5], [1705.5, 305.5], [1705.5, 307.5], [1705.5, 308.5], [1705.5, 309.5], [1703.5, 307.5], [1700.5, 307.5], [1698.5, 306.5], [1697.5, 307.5], [1697.5, 307.5], [1701.5, 308.5], [1703.5, 308.5], [1703.5, 308.5], [1700.5, 309.5], [1696.5, 307.5], [1695.5, 308.5], [1704.5, 307.5], [1705.5, 308.5], [1705.5, 307.5], [1705.5, 306.5], [1706.5, 307.5], [1707.5, 308.5], [1707.5, 308.5], [1706.5, 306.5], [1706.5, 306.5], [1706.5, 306.5], [1706.5, 307.5], [1706.5, 307.5], [1706.5, 307.5], [1707.5, 307.5], [1706.5, 306.5], [1706.5, 307.5], [1706.5, 307.5], [1706.5, 306.5], [1706.5, 306.5], [1707.5, 306.5], [1706.5, 305.5], [1706.5, 304.5], [1700.5, 306.5], [1700.5, 307.5], [1699.5, 306.5], [1704.5, 307.5], [1706.5, 307.5], [1706.5, 307.5]]}, {"id": "txawi0", "submitted_by": "KrumpleTrash", "name": "Slimecicle Head", "description": "the minecraft head for youtuber slimecicle who is known for his humor and his part in the DreamSMP lore", "website": "https://youtube.com/slimecicle", "subreddit": "/r/slimecicle", "center": [169.5, 940.5], "path": [[165.5, 936.5], [165.5, 943.5], [172.5, 943.5], [172.5, 936.5], [165.5, 936.5]]}, {"id": "txawec", "submitted_by": "a_bucket_full_of_goo", "name": "Ramiel, the 6th Angel", "description": "Ramiel is the 6th Angel to appear in the Evangelion series, sent to destroy the NERV Headquarters and subsequently the whole of humanity. Referred by some as best-girl.", "website": "", "subreddit": "/r/evangelion", "center": [645.5, 1388.5], "path": [[645.5, 1383.5], [639.5, 1388.5], [645.5, 1394.5], [650.5, 1388.5]]}, {"id": "txaw50", "submitted_by": "Grouchy-Chain-7853", "name": "DizziLulu", "description": "Artwork by the twitch streamer, DizziLulu.", "website": "https://www.twitch.tv/dizzilulu", "subreddit": "/r/Dizzilulu", "center": [1853.5, 451.5], "path": [[1847.5, 458.5], [1859.5, 458.5], [1859.5, 443.5], [1847.5, 443.5]]}, -{"id": "txavzr", "submitted_by": "PericlodGD", "name": "Hard Demon", "description": "Icon of an epic-rated Hard Demon from Geometry Dash", "website": "", "subreddit": "/r/geometrydash", "center": [1019.5, 374.5], "path": [[1010.5, 384.5], [1028.5, 384.5], [1028.5, 363.5], [1010.5, 363.5], [1010.5, 384.5]]}, {"id": "txavu4", "submitted_by": "MisterS3nder", "name": "Tiny Lizzy", "description": "A mini sprite of u/MisterS3nder's OC Lizzy (pictured succumbing to the white void), with help defending from u/sheriffCy and u/BallHexagonBall.", "website": "https://www.instagram.com/smalls.does.art.stuff/?hl=en", "subreddit": "", "center": [1733.5, 365.5], "path": [[1731.5, 360.5], [1736.5, 360.5], [1736.5, 370.5], [1731.5, 370.5], [1730.5, 365.5]]}, {"id": "txavt5", "submitted_by": "TeenEagle43", "name": "ElRichMC", "description": "Minecraft skin of the spanish youtuber known as ElRichMC, he is the creator of projects like permadeath and elitecraft\n", "website": "https://www.youtube.com/user/ElRichMC", "subreddit": "", "center": [1799.5, 1381.5], "path": [[1794.5, 1377.5], [1804.5, 1377.5], [1803.5, 1386.5], [1794.5, 1386.5], [1794.5, 1386.5], [1794.5, 1386.5], [1794.5, 1386.5], [1794.5, 1386.5], [1794.5, 1387.5]]}, {"id": "txav73", "submitted_by": "Undead_Hunter03", "name": "Master Chief from HALO series", "description": "Helmet of The Mjolnir Powered Assault Armor (MPAA, or simply Mjolnir) worn by Master Chief", "website": "", "subreddit": "/r/Halo", "center": [1071.5, 377.5], "path": [[1062.5, 367.5], [1080.5, 367.5], [1080.5, 386.5], [1062.5, 386.5]]}, -{"id": "txav4b", "submitted_by": "R0Irel", "name": "Whole Lotta Red", "description": "The Whole Lotta Red album cover, created by r/playboicarti, was the victim of non-stop griefing. Throughout r/place, the playboi carti subreddit thwarted attacks from Ladin Loss and his fanbase and multiple other degenerate middle schoolers. In the end, Playboi Carti ended up looking like a disabled elf.", "website": "https://reddit.com", "subreddit": "/r/playboicarti", "center": [73.5, 498.5], "path": [[54.5, 469.5], [54.5, 469.5], [53.5, 469.5], [54.5, 468.5], [92.5, 469.5], [92.5, 469.5], [92.5, 527.5], [92.5, 528.5], [54.5, 528.5], [54.5, 528.5]]}, {"id": "txav0h", "submitted_by": "beziko", "name": "Polish Vodka and glasses", "description": "It's a tribute to polish most loved alcohol visible on almost every party or holidays.", "website": "", "subreddit": "/r/polska", "center": [546.5, 332.5], "path": [[568.5, 374.5], [568.5, 355.5], [569.5, 354.5], [570.5, 353.5], [570.5, 345.5], [573.5, 345.5], [573.5, 353.5], [574.5, 354.5], [575.5, 355.5], [575.5, 374.5], [586.5, 374.5], [586.5, 365.5], [575.5, 365.5]]}, {"id": "txaui3", "submitted_by": "Terrible_Draw_1248", "name": "Dedreviil", "description": "Dedreviil is a streamer and youtuber, and his community made this to show how much they love their favorite streamer and youtuber", "website": "https://www.twitch.tv/elded", "subreddit": "/r/dedreviil", "center": [1767.5, 76.5], "path": [[1750.5, 99.5], [1750.5, 98.5], [1749.5, 98.5], [1749.5, 93.5], [1750.5, 93.5], [1750.5, 92.5], [1750.5, 52.5], [1784.5, 52.5], [1784.5, 92.5], [1784.5, 97.5], [1783.5, 98.5], [1782.5, 99.5]]}, {"id": "txaugw", "submitted_by": "Matt2142", "name": "Gorp's Friend's T", "description": "This T is dedicated to Gorp's friend who is in the hospital during place 2022. We hope that by the time you are reading this they are out of the hospital and healthy.", "website": "", "subreddit": "", "center": [388.5, 948.5], "path": [[386.5, 945.5], [390.5, 945.5], [390.5, 950.5], [386.5, 950.5], [386.5, 945.5]]}, @@ -6095,7 +5585,7 @@ {"id": "txato1", "submitted_by": "s0berBacchus", "name": "Rice University", "description": "Rice University is a college in Houston, TX. The design also features a bowl of rice, for obvious reasons.", "website": "", "subreddit": "/r/riceuniversity", "center": [362.5, 1595.5], "path": [[353.5, 1591.5], [370.5, 1591.5], [370.5, 1599.5], [353.5, 1599.5], [353.5, 1591.5]]}, {"id": "txatim", "submitted_by": "theultimateace1", "name": "Bad Apple Visualization", "description": "A famous black and white silhouette music video featuring a remix of a videogame soundtrack from the touhou franchise, with characters from the franchise dancing and interacting as shadowart. Formerly depicted Reimu biting the apple at the start of the MV, changed to the discarded apple core due to space restraints.", "website": "https://www.youtube.com/watch?v=9lNZ_Rnr7Jc&ab_channel=luigiman09", "subreddit": "/r/touhou", "center": [505.5, 535.5], "path": [[499.5, 528.5], [499.5, 541.5], [510.5, 541.5], [510.5, 529.5], [505.5, 529.5], [499.5, 529.5], [499.5, 528.5]]}, {"id": "txatcx", "submitted_by": "KrumpleTrash", "name": "Tubbo head", "description": "The minecraft skin for minecraft twitch streamer tubbo. His skin closely resembles tweek tweak from south park", "website": "https://twitch.tv/tubbo", "subreddit": "/r/tubbo", "center": [160.5, 913.5], "path": [[156.5, 909.5], [156.5, 916.5], [163.5, 916.5], [163.5, 909.5], [156.5, 909.5]]}, -{"id": "txatc8", "submitted_by": "redwolftrash", "name": "Hypertrance", "description": "Hypertrance is a small music community/discord server who put together NEOY2K 3D animation with music production. Around 8-% of the content creators in this community are trans, so they asked r/transplace if they could put their name/logo on top of Ally Hall.\n\nThe addition of this logo was beneficial for the r/transplace flag because people had been using alt accounts to draw nooses around the necks and over the heads of the Ally Hall figures, so the Hypertrance logo being above Ally Hall prevented this griefing while also giving the community in question publicity.", "website": "https://www.reddit.com/r/transplace/comments/tw3335/hi_were_a_relatively_small_transled_music/", "subreddit": "", "center": [769.5, 460.5], "path": [[752.5, 457.5], [786.5, 457.5], [786.5, 463.5], [753.5, 463.5]]}, +{"id": "txatc8", "submitted_by": "redwolftrash", "name": "HYPERTRANCE", "description": "Hypertrance is a small music community/discord server who put together NEOY2K 3D animation with music production. Around 80% of the content creators in this community are trans, so they asked r/transplace if they could put their name/logo on top of Ally Hall.\n\nThe addition of this logo was beneficial for the r/transplace flag because people had been using alt accounts to draw nooses around the necks and over the heads of the Ally Hall figures, so the Hypertrance logo being above Ally Hall prevented this griefing while also giving the community in question publicity. patchstep's original submission of the hypertrance atlas was removed because of the id migration...", "website": "https://www.reddit.com/r/transplace/comments/tw3335/hi_were_a_relatively_small_transled_music/", "subreddit": "", "center": [769.5, 460.5], "path": [[752.5, 457.5], [786.5, 457.5], [786.5, 463.5], [753.5, 463.5]]}, {"id": "txatby", "submitted_by": "aaronflash05", "name": "Otto", "description": "Otto is Jerma's dog, a beloved character by jerma and chat alike.", "website": "https://jerma-lore.fandom.com/wiki/Otto", "subreddit": "/r/jerma985", "center": [116.5, 1051.5], "path": [[110.5, 1051.5], [112.5, 1046.5], [129.5, 1067.5], [129.5, 1064.5], [126.5, 1060.5], [129.5, 1055.5], [129.5, 1052.5], [132.5, 1046.5], [126.5, 1041.5], [118.5, 1040.5], [116.5, 1042.5], [107.5, 1041.5], [100.5, 1046.5], [102.5, 1049.5], [106.5, 1061.5], [110.5, 1062.5], [113.5, 1065.5], [116.5, 1064.5], [116.5, 1062.5], [125.5, 1062.5], [113.5, 1043.5], [110.5, 1046.5], [109.5, 1053.5]]}, {"id": "txat3i", "submitted_by": "gregtech123", "name": "Uruguay", "description": "A map of Uruguay", "website": "", "subreddit": "/r/uruguay", "center": [1010.5, 675.5], "path": [[1005.5, 667.5], [1003.5, 679.5], [1013.5, 682.5], [1017.5, 675.5], [1014.5, 670.5], [1008.5, 667.5], [1007.5, 667.5]]}, {"id": "txasqv", "submitted_by": "Wesstes", "name": "Cacique logo", "description": "\"Cacique\" is a beer company that is located in Costa Rica, the people from the Costa Rican flag decided put the logo of the company in this square as a joke", "website": "", "subreddit": "", "center": [1488.5, 408.5], "path": [[1482.5, 402.5], [1482.5, 414.5], [1494.5, 414.5], [1494.5, 402.5]]}, @@ -6105,7 +5595,6 @@ {"id": "txarbp", "submitted_by": "RavagerHughesy", "name": "RuPaul's Drag Race", "description": "A section dedicated to the reality TV show RuPaul's Drag Race, where drag queens compete to be America's Next Drag Superstar. Includes pixel art of six queens from season 14 (currently airing), and a tribute to season 8 competitor Chi Chi DeVayne, who tragically passed in 2020.", "website": "https://www.vh1.com/shows/rupauls-drag-race", "subreddit": "/r/rupaulsdragrace", "center": [1219.5, 416.5], "path": [[1192.5, 402.5], [1192.5, 433.5], [1222.5, 433.5], [1222.5, 430.5], [1246.5, 430.5], [1246.5, 398.5], [1222.5, 398.5], [1222.5, 402.5], [1192.5, 402.5]]}, {"id": "txarai", "submitted_by": "A-Reclusive-Whale", "name": "Celeste Pufferfish", "description": "A pufferfish creature the player can bounce off of in the indie platformer Celeste.", "website": "", "subreddit": "/r/celeste", "center": [1228.5, 1182.5], "path": [[1225.5, 1173.5], [1231.5, 1173.5], [1231.5, 1174.5], [1232.5, 1174.5], [1233.5, 1175.5], [1234.5, 1176.5], [1235.5, 1177.5], [1236.5, 1178.5], [1237.5, 1179.5], [1237.5, 1180.5], [1238.5, 1181.5], [1238.5, 1182.5], [1238.5, 1183.5], [1237.5, 1184.5], [1237.5, 1185.5], [1236.5, 1186.5], [1235.5, 1187.5], [1234.5, 1188.5], [1233.5, 1189.5], [1232.5, 1189.5], [1231.5, 1190.5], [1230.5, 1190.5], [1229.5, 1190.5], [1228.5, 1190.5], [1227.5, 1190.5], [1226.5, 1190.5], [1225.5, 1189.5], [1224.5, 1189.5], [1223.5, 1188.5], [1222.5, 1187.5], [1221.5, 1186.5], [1220.5, 1186.5], [1220.5, 1185.5], [1219.5, 1185.5], [1218.5, 1186.5], [1217.5, 1185.5], [1217.5, 1184.5], [1217.5, 1183.5], [1217.5, 1182.5], [1217.5, 1181.5], [1217.5, 1180.5], [1218.5, 1179.5], [1219.5, 1180.5], [1220.5, 1179.5], [1220.5, 1178.5], [1221.5, 1177.5], [1222.5, 1176.5], [1223.5, 1175.5], [1225.5, 1174.5]]}, {"id": "txar8q", "submitted_by": "Undead_Hunter03", "name": "BELIEVE sign from Ted Lasso", "description": "A motivational wall hanging from Ted Lasso AppleTV series. Hanging it was one of the first things when Ted arrived Richmond. It's also the key to the 'Lasso Way'", "website": "", "subreddit": "/r/TedLasso", "center": [1014.5, 449.5], "path": [[1002.5, 445.5], [1026.5, 445.5], [1026.5, 453.5], [1002.5, 453.5]]}, -{"id": "txar7v", "submitted_by": "DrLongclaw", "name": "Johns Hopkins Blue Jay", "description": "The mascot of Johns Hopkins University, a Blue Jay.", "website": "", "subreddit": "/r/jhu", "center": [443.5, 1216.5], "path": [[439.5, 1212.5], [447.5, 1212.5], [447.5, 1219.5], [439.5, 1219.5]]}, {"id": "txar5v", "submitted_by": "ProfessionalFish8505", "name": "Mini Waldo", "description": "A small Waldo hidden on the r/fuckcars highway, based on the Where's Waldo books.", "website": "", "subreddit": "", "center": [1126.5, 862.5], "path": [[1125.5, 869.5], [1126.5, 869.5], [1126.5, 867.5], [1126.5, 869.5], [1127.5, 869.5], [1128.5, 869.5], [1128.5, 866.5], [1129.5, 866.5], [1129.5, 862.5], [1129.5, 861.5], [1128.5, 861.5], [1128.5, 860.5], [1127.5, 860.5], [1128.5, 860.5], [1128.5, 857.5], [1128.5, 856.5], [1127.5, 856.5], [1127.5, 854.5], [1127.5, 853.5], [1126.5, 853.5], [1125.5, 853.5], [1125.5, 856.5], [1124.5, 856.5], [1124.5, 859.5], [1124.5, 860.5], [1125.5, 860.5], [1125.5, 860.5], [1124.5, 860.5], [1124.5, 861.5], [1123.5, 862.5], [1123.5, 866.5], [1124.5, 866.5], [1124.5, 869.5], [1128.5, 869.5]]}, {"id": "txaqul", "submitted_by": "yourmindsdecide", "name": "Loader from Risk of Rain", "description": "Collaboration between the Risk of Rain piece above and the Trans Pride flag. Loader is a playable character in both the first and second part of Risk of Rain. Loader is male in the first part and female in the second, thus making it an ideal candidate for a collaboration.", "website": "", "subreddit": "", "center": [595.5, 437.5], "path": [[590.5, 430.5], [601.5, 430.5], [601.5, 444.5], [588.5, 444.5], [588.5, 430.5]]}, {"id": "txaqle", "submitted_by": "NewAgeRetr0Hippie", "name": "Pikachu", "description": "Pikachu is a fictional species in the Pok\u00e9mon media franchise.", "website": "https://en.wikipedia.org/wiki/Pikachu", "subreddit": "", "center": [1888.5, 1296.5], "path": [[1884.5, 1292.5], [1892.5, 1292.5], [1892.5, 1300.5], [1884.5, 1300.5], [1884.5, 1300.5], [1884.5, 1296.5], [1884.5, 1296.5], [1884.5, 1295.5]]}, @@ -6113,8 +5602,6 @@ {"id": "txapxq", "submitted_by": "Terrible_Draw_1248", "name": "Canada flag", "description": "It's the canada flag", "website": "", "subreddit": "", "center": [210.5, 510.5], "path": [[243.5, 527.5], [243.5, 494.5], [176.5, 494.5], [176.5, 508.5], [177.5, 507.5], [178.5, 507.5], [179.5, 508.5], [180.5, 509.5], [181.5, 510.5], [181.5, 512.5], [180.5, 513.5], [179.5, 514.5], [178.5, 515.5], [177.5, 516.5], [176.5, 517.5], [176.5, 527.5]]}, {"id": "txapom", "submitted_by": "takadoxmusic", "name": "2022 Tahu", "description": "A googly-eyed Tahu minifigure which LEGO released in 2022 as an homage to the Bionicle line, part of the LEGO 90th anniversary commemoration set.", "website": "https://www.lego.com/en-us", "subreddit": "/r/bioniclelego", "center": [1141.5, 457.5], "path": [[1138.5, 453.5], [1144.5, 453.5], [1144.5, 460.5], [1138.5, 460.5], [1138.5, 453.5]]}, {"id": "txapob", "submitted_by": "kuffyruff", "name": "Novelhouse", "description": "A sign promoting the small YouTube gaming channel Novelhouse, which specializes in playing visual novels and JRPGs. The word HOUSE was originally black but was later changed to dark blue as a reference to the book House of Leaves, in which the aforementioned word is infamously blue. The red logo immediately below the word HOUSE is a YouTube play button.", "website": "https://www.youtube.com/channel/UCvS7MtrCVLr_9mCjT-cUfEA", "subreddit": "", "center": [741.5, 826.5], "path": [[731.5, 820.5], [752.5, 820.5], [752.5, 832.5], [744.5, 832.5], [744.5, 833.5], [743.5, 834.5], [739.5, 834.5], [738.5, 833.5], [738.5, 832.5], [731.5, 832.5]]}, -{"id": "txapo9", "submitted_by": "minifreak88", "name": "Gabumon", "description": "Pixel art of the Digimon Gabumon from the anime.", "website": "", "subreddit": "", "center": [1330.5, 117.5], "path": [[1327.5, 122.5], [1321.5, 129.5], [1319.5, 114.5], [1324.5, 103.5], [1336.5, 105.5], [1343.5, 119.5], [1340.5, 126.5], [1331.5, 130.5], [1322.5, 129.5], [1323.5, 127.5]]}, -{"id": "txapcq", "submitted_by": "Autian", "name": "Last remaining bit of Israel", "description": "Israel used to own this place in an earlier timeframe", "website": "r/Israel/comments/ttzw0b", "subreddit": "/r/Israel", "center": [56.5, 661.5], "path": [[55.5, 660.5], [55.5, 662.5], [57.5, 662.5], [57.5, 660.5]]}, {"id": "txapa2", "submitted_by": "kayyrens", "name": "GOT7", "description": "Got7 is a kpop boy group, consists of seven members: Jay B, Mark, Jackson, Jinyoung, Youngjae, BamBam, and Yugyeom. They officially debuted on January 2014 in Korea with the release of their first EP Got It?.", "website": "https://twitter.com/GOT7Official", "subreddit": "/r/Got7", "center": [1588.5, 271.5], "path": [[1580.5, 268.5], [1580.5, 273.5], [1596.5, 273.5], [1596.5, 268.5], [1589.5, 268.5], [1580.5, 268.5]]}, {"id": "txapa1", "submitted_by": "Hendrix194", "name": "AMC Logo(covered), Curious George, and Popcorn Bucket", "description": "After having secured the first spot for the AMC logo(before Georgenotfound and Karl's attack), the map expanded again. r/amcstock quickly grabbed this spot to make a more playful design of a childhood favorite monkey enjoying some movie theatre popcorn. After the initial 4 hours of building, the community r/camelia with the help of the powerful r/osu community and streamer BTMC wiped out the logo, part of Curious George, and the popcorn location. After long attempts to negotiate with osu, the community decided to fight back, eventually reclaiming their territory, and having osu! streamer tell his chat that he's backing out of the conflict. The AMC apes rebuilt their plot and continued to maintain their land. In the last hour before the whiteout, Dream came to wipe out AMC for defending their territory against Karl and George; defacing the red square that now reads dnf.", "website": "https://www.reddit.com/r/amcstock", "subreddit": "/r/amcstock", "center": [705.5, 1496.5], "path": [[700.5, 1463.5], [734.5, 1463.5], [744.5, 1480.5], [745.5, 1522.5], [660.5, 1521.5], [661.5, 1480.5], [699.5, 1480.5], [699.5, 1464.5], [701.5, 1464.5]]}, {"id": "txaox9", "submitted_by": "SamerRL", "name": "Studio Gohan", "description": "An independent animation studio founded by Harumaki Gohan.", "website": "https://harumakigohan.com/studiogohan/", "subreddit": "/r/harumakigohan", "center": [1132.5, 1703.5], "path": [[1126.5, 1699.5], [1126.5, 1706.5], [1138.5, 1706.5], [1138.5, 1699.5]]}, @@ -6133,34 +5620,32 @@ {"id": "txamgj", "submitted_by": "BuddhaBear", "name": "Puzzle and Dragons", "description": "Mobile Game", "website": "https://www.puzzleanddragons.us/", "subreddit": "/r/PuzzleAndDragons", "center": [1584.5, 1303.5], "path": [[1577.5, 1290.5], [1577.5, 1290.5], [1577.5, 1290.5], [1588.5, 1290.5], [1588.5, 1300.5], [1581.5, 1300.5], [1581.5, 1311.5], [1599.5, 1311.5], [1599.5, 1315.5], [1577.5, 1315.5], [1577.5, 1290.5]]}, {"id": "txamc7", "submitted_by": "to_thy_macintosh", "name": "NixOS", "description": "NixOS is a Linux distribution built on top of the Nix package manager. It uses declarative configuration and allows reliable system upgrades.", "website": "https://nixos.org/", "subreddit": "/r/NixOS", "center": [33.5, 708.5], "path": [[31.5, 705.5], [35.5, 705.5], [36.5, 707.5], [36.5, 710.5], [35.5, 711.5], [31.5, 711.5], [30.5, 709.5], [30.5, 706.5], [31.5, 705.5]]}, {"id": "txambq", "submitted_by": "djpeluca", "name": "Ceibo tree", "description": "Native tree from Uruguay (and Argentina) It\u00b4s flower is the Uruguayan National Flower", "website": "https://en.wikipedia.org/wiki/Erythrina_crista-galli", "subreddit": "", "center": [1050.5, 674.5], "path": [[1041.5, 683.5], [1042.5, 664.5], [1060.5, 665.5], [1059.5, 682.5], [1060.5, 683.5], [1060.5, 683.5], [1060.5, 683.5], [1060.5, 683.5], [1061.5, 683.5], [1041.5, 683.5], [1042.5, 683.5]]}, -{"id": "txam7w", "submitted_by": "AxceOlotl", "name": "AnarchyChess/Ireland fusion", "description": "Color fusion thanks to an alliance between the two communities", "website": "", "subreddit": "anarchychess", "center": [149.5, 660.5], "path": [[125.5, 608.5], [174.5, 608.5], [174.5, 711.5], [124.5, 711.5]]}, +{"id": "txam7w", "submitted_by": "AxceOlotl", "name": "AnarchyChess/Ireland fusion", "description": "Color fusion thanks to an alliance between the two communities.", "website": "", "subreddit": "/r/AnarchyChess, /r/PlaceIreland", "center": [149.5, 660.5], "path": [[125.5, 608.5], [174.5, 608.5], [174.5, 711.5], [124.5, 711.5]]}, {"id": "txam64", "submitted_by": "tomxosb", "name": "Pen Pen", "description": "From the anime Neon Genesis Evangelion. It is the pet penguin belonging to Misato Katsuragi.", "website": "", "subreddit": "/r/evangelion", "center": [694.5, 1418.5], "path": [[692.5, 1414.5], [696.5, 1414.5], [698.5, 1416.5], [697.5, 1417.5], [697.5, 1418.5], [698.5, 1419.5], [697.5, 1420.5], [697.5, 1421.5], [697.5, 1422.5], [691.5, 1422.5], [691.5, 1420.5], [690.5, 1419.5], [691.5, 1418.5], [691.5, 1417.5], [690.5, 1416.5], [691.5, 1415.5], [692.5, 1414.5]]}, {"id": "txam5c", "submitted_by": "ootinii", "name": "ootinii", "description": "This is ootinii, he's a jawa, and a gamer.", "website": "", "subreddit": "", "center": [1028.5, 1669.5], "path": [[1024.5, 1667.5], [1024.5, 1672.5], [1031.5, 1672.5], [1031.5, 1665.5], [1026.5, 1665.5], [1026.5, 1666.5], [1025.5, 1666.5], [1025.5, 1667.5], [1024.5, 1667.5]]}, -{"id": "txam1g", "submitted_by": "donutttttt7", "name": "Geometry dash demon", "description": "this is an image of the demon difficulty of geometry dash", "website": "", "subreddit": "/r/geometrydash", "center": [1020.5, 375.5], "path": [[1011.5, 365.5], [1011.5, 384.5], [1028.5, 384.5], [1028.5, 365.5], [1019.5, 365.5], [1011.5, 365.5]]}, {"id": "txalp7", "submitted_by": "BudderBroHam", "name": "Streamlabs", "description": "Logo for Streamlabs Desktop, previously Streamlabs OBS, a livestreaming and recording software now owned by logitech", "website": "https://streamlabs.com/", "subreddit": "/r/streamlabsobs", "center": [372.5, 1893.5], "path": [[366.5, 1888.5], [377.5, 1888.5], [377.5, 1897.5], [366.5, 1897.5], [366.5, 1888.5]]}, {"id": "txalli", "submitted_by": "LusamiPNG", "name": "Tinakittnes Cronch Hollow Knight", "description": "Pixel art done by Chompers d04_exe on twitter, after Tina had been playing Hollow Knight for 4 sstreams (accumulating to 35.5 hours) on her KarlJcobs and Foolish Gamer;s stream train", "website": "https://twitter.com/d04_exe", "subreddit": "/r/dsmp", "center": [1246.5, 1103.5], "path": [[1256.5, 1114.5], [1256.5, 1091.5], [1236.5, 1091.5], [1236.5, 1114.5]]}, {"id": "txall9", "submitted_by": "kayyrens", "name": "WAYV", "description": "WayV is a Chinese group and the fourth subunit of NCT. The group, consisting of seven members, Kun, Ten, Winwin, Lucas, Xiaojun, Hendery and Yangyang, had its debut in January 2019 with the release of the single album, The Vision.", "website": "https://www.youtube.com/channel/UC-ZHt5Zgadfx-B1CM63Lqew", "subreddit": "/r/NCT", "center": [1585.5, 264.5], "path": [[1574.5, 261.5], [1574.5, 266.5], [1594.5, 267.5], [1595.5, 261.5]]}, {"id": "txakl3", "submitted_by": "Dark_Xenon", "name": "Stotal Misplay", "description": "A pun upon a common joke within the Inscryption community. Total Misplay, which is said commonly by the Stoat character.", "website": "", "subreddit": "/r/Inscryption", "center": [133.5, 271.5], "path": [[106.5, 267.5], [106.5, 275.5], [111.5, 275.5], [113.5, 273.5], [118.5, 273.5], [120.5, 274.5], [120.5, 275.5], [136.5, 275.5], [137.5, 274.5], [144.5, 274.5], [144.5, 275.5], [159.5, 275.5], [159.5, 274.5], [160.5, 274.5], [160.5, 267.5], [106.5, 267.5], [106.5, 275.5]]}, {"id": "txakgv", "submitted_by": "to_thy_macintosh", "name": "Zorin OS", "description": "Zorin OS is a Linux distribution based on Ubuntu. It uses a GNOME 3 or XFCE 4 desktop environment as default, although the desktop is heavily customized in order to help Windows and macOS users transition to Linux easily.", "website": "https://zorin.com/os/", "subreddit": "/r/zorinos", "center": [67.5, 705.5], "path": [[65.5, 702.5], [68.5, 702.5], [69.5, 704.5], [69.5, 706.5], [68.5, 708.5], [65.5, 708.5], [64.5, 706.5], [64.5, 704.5], [65.5, 702.5]]}, -{"id": "txakd1", "submitted_by": "skategod0012", "name": "Osu!", "description": "Known for being unkillable", "website": "", "subreddit": "/r/osuplace", "center": [727.5, 728.5], "path": [[704.5, 685.5], [688.5, 698.5], [680.5, 710.5], [677.5, 729.5], [680.5, 744.5], [687.5, 759.5], [702.5, 771.5], [719.5, 777.5], [737.5, 776.5], [755.5, 768.5], [768.5, 756.5], [771.5, 735.5], [775.5, 734.5], [776.5, 714.5], [769.5, 698.5], [759.5, 690.5], [750.5, 682.5], [737.5, 679.5], [714.5, 680.5], [703.5, 685.5], [705.5, 686.5], [707.5, 684.5], [707.5, 686.5], [705.5, 686.5], [704.5, 684.5], [706.5, 684.5]]}, {"id": "txakan", "submitted_by": "rohith_on_reddit", "name": "Grogu", "description": "Grogu, more commonly referred to by fans as \"Baby Yoda,\" a pivotal character from the hit series \"The Mandalorian\" and an internet sensation.", "website": "", "subreddit": "", "center": [1567.5, 1160.5], "path": [[1557.5, 1159.5], [1563.5, 1158.5], [1565.5, 1156.5], [1570.5, 1156.5], [1572.5, 1158.5], [1577.5, 1159.5], [1571.5, 1164.5], [1565.5, 1164.5]]}, {"id": "txaka4", "submitted_by": "Terrible_Draw_1248", "name": "Chile Big Flag", "description": "Chile Flag", "website": "", "subreddit": "/r/chile", "center": [335.5, 513.5], "path": [[245.5, 527.5], [271.5, 527.5], [271.5, 522.5], [273.5, 522.5], [273.5, 516.5], [280.5, 516.5], [280.5, 520.5], [291.5, 520.5], [291.5, 525.5], [301.5, 525.5], [301.5, 527.5], [420.5, 527.5], [420.5, 499.5], [282.5, 499.5], [282.5, 502.5], [281.5, 503.5], [280.5, 504.5], [279.5, 504.5], [278.5, 505.5], [274.5, 505.5], [273.5, 504.5], [272.5, 504.5], [271.5, 503.5], [271.5, 499.5], [245.5, 499.5]]}, {"id": "txak1m", "submitted_by": "tomxosb", "name": "Ramiel", "description": "The 5th Angel from the anime Neon Genesis Evangelion.", "website": "", "subreddit": "/r/evangelion", "center": [645.5, 1388.5], "path": [[645.5, 1383.5], [644.5, 1383.5], [640.5, 1387.5], [640.5, 1389.5], [644.5, 1393.5], [645.5, 1394.5], [646.5, 1393.5], [650.5, 1389.5], [650.5, 1388.5], [645.5, 1383.5]]}, {"id": "txajm4", "submitted_by": "MasterXylophone", "name": "Pomu Rainpuff", "description": "Pomu Rainpuff of Nijisanji EN 1st wave, Lazulight. Pictured beside Takanashi Kiara of Hololive EN Myth, because they are both fans of each other and are known to interact quite often", "website": "", "subreddit": "/r/nijisanji", "center": [1353.5, 1051.5], "path": [[1346.5, 1043.5], [1359.5, 1043.5], [1359.5, 1060.5], [1346.5, 1059.5], [1346.5, 1043.5]]}, {"id": "txajj2", "submitted_by": "msp1ce", "name": "Auburn", "description": "Auburn University logo, Aubie (the university mascot), and Toomer's Corner Oak w/ toilet paper (university tradition following athletics teams' wins).", "website": "", "subreddit": "/r/auburn", "center": [1838.5, 379.5], "path": [[1838.5, 342.5], [1826.5, 363.5], [1827.5, 401.5], [1826.5, 401.5], [1839.5, 401.5], [1851.5, 400.5], [1852.5, 400.5], [1852.5, 370.5], [1839.5, 370.5], [1839.5, 342.5], [1838.5, 342.5]]}, {"id": "txaj2z", "submitted_by": "galactich", "name": "Polyamorous miniflag", "description": "Being polyamorous is wanting to have or having multiple romantic and/or sexual relationships, with the consent of all the people involved.", "website": "", "subreddit": "", "center": [461.5, 625.5], "path": [[458.5, 622.5], [464.5, 622.5], [464.5, 627.5], [458.5, 627.5]]}, -{"id": "txaip4", "submitted_by": "ostensiblyokay", "name": "The Front Bottoms", "description": "Cover art of the 2011 self-titled album by the American rock band The Front Bottoms.", "website": "thefrontbottoms.com", "subreddit": "/r/thefrontbottoms", "center": [1730.5, 618.5], "path": [[1723.5, 610.5], [1736.5, 610.5], [1736.5, 626.5], [1723.5, 626.5], [1723.5, 610.5]]}, +{"id": "txaip4", "submitted_by": "ostensiblyokay", "name": "The Front Bottoms's Album", "description": "Cover art of the 2011 self-titled debut album by the American rock band The Front Bottoms.", "website": "https://thefrontbottoms.com", "subreddit": "/r/thefrontbottoms", "center": [1730.5, 618.5], "path": [[1723.5, 610.5], [1736.5, 610.5], [1736.5, 626.5], [1723.5, 626.5], [1723.5, 610.5]]}, {"id": "txaine", "submitted_by": "Tigermilk___", "name": "Picture Game", "description": "a cute birb\n\nPictureGame is a community where players post pictures and questions for each other to solve. Only one round at a time, players race to solve the question as the winner hosts the next round!", "website": "", "subreddit": "/r/picturegame", "center": [917.5, 830.5], "path": [[909.5, 852.5], [909.5, 800.5], [919.5, 800.5], [923.5, 823.5], [932.5, 852.5]]}, {"id": "txaihu", "submitted_by": "OrangeSockNinjaYT", "name": "Terraria Guide NPC (original location)", "description": "This was the originaly location of the Terraria Guide NPC pixelart made by ChippyGaming and the r/terraria community. It was eventually removed by the current owners. The terraria and community responded by moving to a new location, building a player and a demon eye. It was partially destroyed at the time this picture was taken.", "website": "https://terraria.fandom.com/wiki/Guide?msclkid=08da34f6b54811eca5dfad8ca41d9bec", "subreddit": "/r/terraria", "center": [9.5, 311.5], "path": [[0.5, 289.5], [18.5, 289.5], [19.5, 332.5], [0.5, 332.5]]}, {"id": "txaig0", "submitted_by": "wellcrapimdeadnow", "name": "The Three amogus", "description": "(from left to right) A Red amogus, a blue amogus, and a yellow amogus standing below a logo (or atleast what i think is a logo) that says ZC.", "website": "", "subreddit": "/r/amogus", "center": [1558.5, 260.5], "path": [[1552.5, 258.5], [1563.5, 258.5], [1563.5, 261.5], [1552.5, 261.5], [1552.5, 258.5], [1552.5, 258.5], [1563.5, 261.5], [1552.5, 261.5], [1563.5, 258.5]]}, {"id": "txaicd", "submitted_by": "Hollis131", "name": "Murder drones", "description": "The logo for the famous web series murder drones", "website": "", "subreddit": "/r/murderdrones", "center": [242.5, 1096.5], "path": [[239.5, 1089.5], [242.5, 1089.5], [236.5, 1090.5], [233.5, 1094.5], [235.5, 1097.5], [237.5, 1101.5], [252.5, 1101.5], [252.5, 1097.5], [246.5, 1097.5], [245.5, 1091.5]]}, -{"id": "txai7g", "submitted_by": "RatelRaichu", "name": "Pokemon Workshop", "description": "A Discord community for artists who create drawings, songs or stories related to the Pok\u00e9mon franchise. The server hosts regular art, music and writing contests and collabs and has hundreds of members. A complete history of the progress of this logo on r/place can be found on https://pokemon-workshop.fandom.com/wiki/r/place_participation", "website": "https://discord.gg/PkmnWorkshop", "subreddit": "", "center": [1090.5, 493.5], "path": [[1078.5, 489.5], [1101.5, 489.5], [1101.5, 497.5], [1078.5, 497.5]]}, +{"id": "txai7g", "submitted_by": "RatelRaichu", "name": "Pok\u00e9mon Workshop", "description": "A Discord community for artists who create drawings, songs or stories related to the Pok\u00e9mon franchise. The server hosts regular art, music and writing contests and collabs and has hundreds of members. A complete history of the progress of this logo on r/place can be found on https://pokemon-workshop.fandom.com/wiki/r/place_participation", "website": "https://discord.gg/PkmnWorkshop", "subreddit": "", "center": [1090.5, 493.5], "path": [[1078.5, 489.5], [1101.5, 489.5], [1101.5, 497.5], [1078.5, 497.5]]}, {"id": "txai0a", "submitted_by": "FancySkunk", "name": "Asexual Pride Bunny", "description": "A white rabbit waving the asexual pride flag", "website": "", "subreddit": "/r/TransPlace", "center": [737.5, 471.5], "path": [[749.5, 475.5], [730.5, 475.5], [727.5, 471.5], [728.5, 470.5], [728.5, 469.5], [736.5, 469.5], [736.5, 466.5], [737.5, 465.5], [743.5, 465.5], [744.5, 466.5], [744.5, 473.5], [747.5, 474.5], [748.5, 475.5]]}, {"id": "txahc2", "submitted_by": "pancakedelasea", "name": "RuPaul's Drag Race", "description": "Contributed to by members of r/SpoiledDragRace and r/rupaulsdragrace. Features include a memorial to the late Chi Chi DeVayne, and the promotional looks of cast members of Season 14 of RuPaul's Drag Race.", "website": "https://www.reddit.com/r/SpoiledDragRace/", "subreddit": "/r/rupaulsdragrace", "center": [1219.5, 416.5], "path": [[1192.5, 402.5], [1222.5, 402.5], [1222.5, 398.5], [1246.5, 398.5], [1246.5, 430.5], [1222.5, 430.5], [1222.5, 433.5], [1192.5, 433.5], [1192.5, 402.5]]}, {"id": "txahba", "submitted_by": "sumhoo", "name": "Squeer", "description": "A little mascot of a anxious zebra. \nPrimarily used by PlainsZebra on Twitch. \n\nConstructed by Zeeb and Friends.", "website": "", "subreddit": "", "center": [1299.5, 386.5], "path": [[1293.5, 383.5], [1305.5, 383.5], [1305.5, 389.5], [1293.5, 389.5], [1293.5, 383.5]]}, -{"id": "txah8m", "submitted_by": "ostensiblyokay", "name": "The Front Bottoms", "description": "Logo of the American rock band The Front Bottoms, abbreviated TFB.", "website": "thefrontbottoms.com", "subreddit": "/r/thefrontbottoms", "center": [1714.5, 613.5], "path": [[1711.5, 607.5], [1717.5, 607.5], [1717.5, 608.5], [1718.5, 608.5], [1718.5, 609.5], [1719.5, 609.5], [1719.5, 610.5], [1720.5, 610.5], [1720.5, 611.5], [1721.5, 611.5], [1721.5, 616.5], [1720.5, 616.5], [1720.5, 617.5], [1719.5, 617.5], [1719.5, 618.5], [1718.5, 618.5], [1718.5, 619.5], [1717.5, 619.5], [1717.5, 620.5], [1711.5, 620.5], [1711.5, 619.5], [1710.5, 619.5], [1710.5, 618.5], [1709.5, 618.5], [1709.5, 617.5], [1708.5, 617.5], [1708.5, 616.5], [1707.5, 616.5], [1707.5, 615.5], [1707.5, 611.5], [1708.5, 611.5], [1708.5, 610.5], [1709.5, 610.5], [1709.5, 609.5], [1710.5, 609.5], [1710.5, 608.5]]}, +{"id": "txah8m", "submitted_by": "ostensiblyokay", "name": "The Front Bottoms", "description": "Logo of the American rock band The Front Bottoms, abbreviated TFB.", "website": "https://thefrontbottoms.com", "subreddit": "/r/thefrontbottoms", "center": [1714.5, 613.5], "path": [[1711.5, 607.5], [1717.5, 607.5], [1717.5, 608.5], [1718.5, 608.5], [1718.5, 609.5], [1719.5, 609.5], [1719.5, 610.5], [1720.5, 610.5], [1720.5, 611.5], [1721.5, 611.5], [1721.5, 616.5], [1720.5, 616.5], [1720.5, 617.5], [1719.5, 617.5], [1719.5, 618.5], [1718.5, 618.5], [1718.5, 619.5], [1717.5, 619.5], [1717.5, 620.5], [1711.5, 620.5], [1711.5, 619.5], [1710.5, 619.5], [1710.5, 618.5], [1709.5, 618.5], [1709.5, 617.5], [1708.5, 617.5], [1708.5, 616.5], [1707.5, 616.5], [1707.5, 615.5], [1707.5, 611.5], [1708.5, 611.5], [1708.5, 610.5], [1709.5, 610.5], [1709.5, 609.5], [1710.5, 609.5], [1710.5, 608.5]]}, {"id": "txah8i", "submitted_by": "Arcorann", "name": "ChroNoiR", "description": "A popular duo from the Virtual YouTuber group NIJISANJI, consisting of Kanae (top) and Kuzuha (bottom)", "website": "https://www.youtube.com/channel/UCz6vnIbgiqFT9xUcD6Bp65Q", "subreddit": "/r/Nijisanji", "center": [1531.5, 1076.5], "path": [[1525.5, 1065.5], [1525.5, 1087.5], [1537.5, 1088.5], [1537.5, 1065.5]]}, -{"id": "txagbr", "submitted_by": "squidrobotfriend", "name": "r/MrRobot / Rassicas Alliance pt.2", "description": "The second art piece by r/MrRobot, the fsociety mask, was also one of the major locations of the r/MrRobot / Rassicas alliance, including Costa Rica, Path of Exile, and Esperanto. Nearby is also one of Esperanto's allies, Cubers, who Mr. Robot assisted during the third day.", "website" : "", "subreddit": "/r/MrRobot", "center": [1433.5,454.5], "path": [[1246.5,426.5],[1246.5,445.5],[1364.5,446.5],[1364.5,457.5],[1368.5,457.5],[1369.5,456.5],[1371.5,456.5],[1372.5,457.5],[1373.5,457.5],[1374.5,456.5],[1376.5,456.5],[1377.5,457.5],[1377.5,462.5],[1379.5,462.5],[1380.5,463.5],[1380.5,466.5],[1379.5,467.5],[1377.5,467.5],[1376.5,468.5],[1374.5,468.5],[1373.5,469.5],[1372.5,470.5],[1372.5,471.5],[1373.5,472.5],[1374.5,473.5],[1432.5,473.5],[1384.5,473.5],[1384.5,491.5],[1369.5,491.5],[1363.5,485.5],[1350.5,485.5],[1350.5,498.5],[1355.5,503.5],[1412.5,503.5],[1412.5,509.5],[1425.5,509.5],[1424.5,492.5],[1432.5,492.5],[1433.5,501.5],[1509.5,501.5],[1509.5,486.5],[1485.5,486.5],[1485.5,446.5],[1621.5,446.5],[1621.5,427.5],[1246.5,426.5]]}, +{"id": "txagbr", "submitted_by": "squidrobotfriend", "name": "r/MrRobot / Rassicas Alliance pt.2", "description": "The second art piece by r/MrRobot, the fsociety mask, was also one of the major locations of the r/MrRobot / Rassicas alliance, including Costa Rica, r/PathofExile, and Esperanto. Nearby is also one of Esperanto's allies, r/Cubers, who Mr. Robot assisted during the third day.", "website": "", "subreddit": "/r/MrRobot", "center": [1433.5, 454.5], "path": [[1246.5, 426.5], [1246.5, 445.5], [1364.5, 446.5], [1364.5, 457.5], [1368.5, 457.5], [1369.5, 456.5], [1371.5, 456.5], [1372.5, 457.5], [1373.5, 457.5], [1374.5, 456.5], [1376.5, 456.5], [1377.5, 457.5], [1377.5, 462.5], [1379.5, 462.5], [1380.5, 463.5], [1380.5, 466.5], [1379.5, 467.5], [1377.5, 467.5], [1376.5, 468.5], [1374.5, 468.5], [1373.5, 469.5], [1372.5, 470.5], [1372.5, 471.5], [1373.5, 472.5], [1374.5, 473.5], [1432.5, 473.5], [1384.5, 473.5], [1384.5, 491.5], [1374.5, 491.5], [1374.5, 480.5], [1348.5, 480.5], [1347.5, 485.5], [1347.5, 489.5], [1349.5, 489.5], [1349.5, 496.5], [1349.5, 496.5], [1340.5, 496.5], [1340.5, 498.5], [1349.5, 498.5], [1355.5, 503.5], [1412.5, 503.5], [1412.5, 509.5], [1425.5, 509.5], [1424.5, 492.5], [1432.5, 492.5], [1433.5, 501.5], [1509.5, 501.5], [1509.5, 486.5], [1485.5, 486.5], [1485.5, 446.5], [1621.5, 446.5], [1621.5, 427.5], [1246.5, 426.5]]}, {"id": "txaga2", "submitted_by": "tomxosb", "name": "Sachiel", "description": "The face of Sachiel. From Neon Genesis Evangelion, Sachiel is the 3rd Angel and the first to appear in the series.", "website": "", "subreddit": "/r/evangelion", "center": [646.5, 1420.5], "path": [[643.5, 1413.5], [649.5, 1413.5], [650.5, 1414.5], [651.5, 1415.5], [652.5, 1416.5], [652.5, 1417.5], [653.5, 1418.5], [653.5, 1422.5], [652.5, 1423.5], [652.5, 1424.5], [651.5, 1425.5], [651.5, 1426.5], [649.5, 1426.5], [648.5, 1427.5], [647.5, 1428.5], [646.5, 1429.5], [645.5, 1428.5], [644.5, 1427.5], [643.5, 1426.5], [642.5, 1425.5], [641.5, 1424.5], [640.5, 1423.5], [639.5, 1421.5], [639.5, 1418.5], [640.5, 1417.5], [641.5, 1415.5], [642.5, 1414.5], [643.5, 1413.5]]}, {"id": "txag90", "submitted_by": "EnderCreeper121", "name": "Crowny from Prehistoric Kingdom", "description": "A small mural featuring Crowny, the lovable sauropod dinosaur mascot of the upcoming indie extinct animal park building tycoon game Prehistoric Kingdom, developed by Blue Meridian. Constructed by a collaborating group of users from the Prehistoric Kingdom discord after a number of failed attempts elsewhere on the canvas and assisted in relocation/protection by the Gacha Alliance and Tarik mural, she has since became good friends with her neighbors, especially the Catalan Dog. Crowny and the rest of Prehistoric Kingdom are set for early access release on Steam in late April 2022.", "website": "https://www.prehistorickingdom.com/", "subreddit": "/r/pkgame", "center": [1740.5, 1706.5], "path": [[1733.5, 1700.5], [1747.5, 1700.5], [1747.5, 1712.5], [1733.5, 1712.5]]}, {"id": "txag8d", "submitted_by": "Alex_x90", "name": "Baymax", "description": "A small pixelart of the character Baymax from the movie big hero 6", "website": "https://movies.disney.com/big-hero-6", "subreddit": "/r/BigHero6", "center": [1553.5, 1512.5], "path": [[1548.5, 1506.5], [1545.5, 1512.5], [1545.5, 1520.5], [1562.5, 1520.5], [1560.5, 1508.5], [1556.5, 1503.5], [1550.5, 1502.5]]}, @@ -6173,7 +5658,6 @@ {"id": "txadrp", "submitted_by": "emilyygaitan", "name": "DeqiuV", "description": "DeqiuV is a Spanish Streamer. This is a representation about him and his minecraft skin created by his community.", "website": "https://www.twitch.tv/deqiuv", "subreddit": "/r/deqiuv", "center": [1106.5, 1307.5], "path": [[1083.5, 1311.5], [1083.5, 1311.5], [1130.5, 1311.5], [1130.5, 1304.5], [1082.5, 1304.5], [1082.5, 1307.5], [1082.5, 1309.5], [1082.5, 1309.5], [1082.5, 1310.5]]}, {"id": "txadha", "submitted_by": "Pepelas123", "name": "El Juji", "description": "Mi nombre, un streamer llamado Juja", "website": "https://www.twitch.tv/jujalag", "subreddit": "/r/SorryLag", "center": [1549.5, 1021.5], "path": [[1573.5, 998.5], [1573.5, 1044.5], [1525.5, 1044.5], [1525.5, 999.5], [1573.5, 998.5]]}, {"id": "txadab", "submitted_by": "a_bucket_full_of_goo", "name": "Sachiel, Third Angel", "description": "Sachiel is the Third angel to appear since the Second impact, in the Evangelion Series.", "website": "", "subreddit": "/r/evangelion", "center": [646.5, 1421.5], "path": [[644.5, 1414.5], [640.5, 1416.5], [639.5, 1418.5], [639.5, 1422.5], [646.5, 1429.5], [652.5, 1423.5], [651.5, 1415.5]]}, -{"id": "txacm2", "submitted_by": "Euchre", "name": "Inuyasha", "description": "A popular manga and anime.", "website": "https://en.wikipedia.org/wiki/Inuyasha", "subreddit": "/r/InuYasha", "center": [1583.5, 38.5], "path": [[1567.5, 40.5], [1567.5, 35.5], [1599.5, 35.5], [1599.5, 41.5], [1599.5, 41.5], [1567.5, 40.5]]}, {"id": "txack9", "submitted_by": "cobblecatt_", "name": "Tina the Knight", "description": "The pixel art depicts The Knight from Hollow Knight with a carrot as a sword, a reference to Twitch Streamer TinaKitten's Hollow Knight streams and her internet persona's brand of loving carrots (art originally made by @d04_exe on Twitter, built on Twitch streamer Foolish_Gamers' stream)", "website": "https://www.twitch.tv/tinakitten", "subreddit": "", "center": [1247.5, 1101.5], "path": [[1237.5, 1094.5], [1238.5, 1100.5], [1243.5, 1106.5], [1245.5, 1107.5], [1246.5, 1112.5], [1246.5, 1113.5], [1248.5, 1111.5], [1248.5, 1109.5], [1252.5, 1112.5], [1252.5, 1113.5], [1254.5, 1111.5], [1253.5, 1107.5], [1252.5, 1105.5], [1254.5, 1103.5], [1255.5, 1101.5], [1255.5, 1096.5], [1256.5, 1096.5], [1256.5, 1092.5], [1254.5, 1091.5], [1253.5, 1093.5], [1251.5, 1095.5], [1247.5, 1095.5], [1244.5, 1092.5], [1242.5, 1091.5], [1242.5, 1092.5], [1241.5, 1096.5], [1243.5, 1099.5], [1238.5, 1094.5]]}, {"id": "txac7x", "submitted_by": "ostensacken", "name": "Inuksuk", "description": "Inuksuits are a stone landmark used by the Inuit, Yupik and other indigenous peoples of the Arctic. They have been used historically as markers for camps, fishing places, and other important sites.", "website": "", "subreddit": "/r/quebec.", "center": [940.5, 947.5], "path": [[935.5, 955.5], [935.5, 952.5], [936.5, 952.5], [936.5, 951.5], [935.5, 950.5], [933.5, 950.5], [933.5, 948.5], [934.5, 947.5], [935.5, 947.5], [935.5, 946.5], [936.5, 944.5], [933.5, 944.5], [933.5, 942.5], [934.5, 942.5], [934.5, 941.5], [939.5, 941.5], [939.5, 940.5], [939.5, 939.5], [940.5, 938.5], [941.5, 938.5], [942.5, 939.5], [942.5, 941.5], [946.5, 941.5], [946.5, 942.5], [947.5, 942.5], [947.5, 944.5], [944.5, 944.5], [944.5, 945.5], [945.5, 946.5], [945.5, 947.5], [946.5, 947.5], [947.5, 948.5], [947.5, 950.5], [945.5, 950.5], [945.5, 951.5], [945.5, 952.5], [946.5, 952.5], [946.5, 954.5], [945.5, 955.5], [942.5, 955.5], [942.5, 950.5], [940.5, 950.5], [940.5, 950.5], [940.5, 950.5], [939.5, 950.5], [939.5, 955.5]]}, {"id": "txdm3f", "submitted_by": "Terrible_Draw_1248", "name": "Blue Mushroom", "description": "A little blue mushroom", "website": "", "subreddit": "", "center": [878.5, 1853.5], "path": [[872.5, 1847.5], [884.5, 1847.5], [884.5, 1858.5], [872.5, 1858.5]]}, @@ -6190,34 +5674,29 @@ {"id": "txdk28", "submitted_by": "WitherStar123", "name": "Dylqn", "description": "A top Minecraft speedrunner; has that fastest run which utilizes an ocean monument\n", "website": "https://www.youtube.com/channel/UCLxsMltKWTeeyNztPXajzzQ", "subreddit": "", "center": [1495.5, 1477.5], "path": [[1491.5, 1473.5], [1498.5, 1473.5], [1498.5, 1480.5], [1491.5, 1480.5]]}, {"id": "txdjye", "submitted_by": "General_Bother7593", "name": "TOMORROW X TOGETHER Minisode1 : Blue Hour", "description": "TOMORROW X TOGETHER Minisode1 : Blue Hour Album Cover", "website": "", "subreddit": "", "center": [401.5, 1626.5], "path": [[394.5, 1620.5], [407.5, 1620.5], [407.5, 1633.5], [395.5, 1633.5], [395.5, 1633.5], [394.5, 1631.5], [394.5, 1625.5]]}, {"id": "txdjuc", "submitted_by": "zubatto", "name": "Aura Godsword", "description": "An art of Aura Godsword, a combination of and God Sword, some of the most offensively powerful items in a flash game called GodField that can be played on godfield.net", "website": "https://godfield.net/", "subreddit": "/r/GodField", "center": [624.5, 1589.5], "path": [[617.5, 1582.5], [630.5, 1582.5], [630.5, 1596.5], [617.5, 1596.5]]}, -{"id": "txdjty", "submitted_by": "Aggressive-Ad3909", "name": "neffL", "description": "neffL is a subscriber emote from Twitch streamer willneff. The emote is a depiction of Will's dog Farley and it is used to express love and sympathy (similar to other Twitch emotes ending with a capital L). Originally, it has no tears, an intact heart, and a smile. It also was created beside another emote (\"hasL\") created by Twitch streamer HasanAbi, aka Hasan Piker. Just like neffL, the emote is also used to express love and sympathy and it was also a depiction of Hasan's late dog, Fish. It was created next to each other to represent both Hasan and Will's close friendship. Both remained stable until a streamer named Destiny (aka Steven Kenneth Bonnell II) instructed his community to take over hasL and replace it with a Hungarian flag and his logo (the blue D) over it. With no companion, neffL was given tears, a sad face, and a broken heart shown here. Later, Hasan's emote was repaired and Will's emote was changed back to its original state.", "website": "https://www.twitch.tv/willneff", "subreddit": "/r/willneff", "center": [1764.5, 522.5], "path": [[1745.5, 501.5], [1744.5, 545.5], [1774.5, 546.5], [1774.5, 539.5], [1786.5, 538.5], [1785.5, 499.5], [1744.5, 500.5]]}, +{"id": "txdjty", "submitted_by": "Aggressive-Ad3909", "name": "neffL", "description": "neffL is a subscriber emote from Twitch streamer willneff. The emote is a depiction of Will's dog Farley and it is used to express love and sympathy (similar to other Twitch emotes ending with a capital L). Originally, it has no tears, an intact heart, and a smile. It also was created beside another emote ('hasL') created by Twitch streamer HasanAbi, a.k.a. Hasan Piker. Just like neffL, the emote is also used to express love and sympathy and it was also a depiction of Hasan's late dog, Fish. It was created next to each other to represent both Hasan and Will's close friendship. Both remained stable until a streamer named Destiny (a.k.a. Steven Kenneth Bonnell II) instructed his community to take over hasL and replace it with a Hungarian flag and his logo (the blue D) over it. With no companion, neffL was given tears, a sad face, and a broken heart shown here. Later, Hasan's emote was repaired and Will's emote was changed back to its original state.", "website": "https://www.twitch.tv/willneff", "subreddit": "/r/willneff", "center": [1764.5, 522.5], "path": [[1745.5, 501.5], [1744.5, 545.5], [1774.5, 546.5], [1774.5, 539.5], [1786.5, 538.5], [1785.5, 499.5], [1744.5, 500.5]]}, {"id": "txdjkq", "submitted_by": "dro_helium", "name": "Warhammer 40k Dreadnought", "description": "Even the mighty space marines of the 41st millennium can fall in combat, but for some their service to the Emperor doesn\u2019t end their and are entombed in a Dreadnought. These are a combination of armoured combat walker and cybernetic life-support system equipped with devastating firepower.", "website": "https://warhammer40k.fandom.com/wiki/Dreadnought", "subreddit": "/r/grimdank", "center": [1869.5, 1236.5], "path": [[1856.5, 1237.5], [1864.5, 1237.5], [1864.5, 1249.5], [1871.5, 1249.5], [1871.5, 1239.5], [1874.5, 1236.5], [1878.5, 1240.5], [1879.5, 1242.5], [1882.5, 1240.5], [1882.5, 1233.5], [1879.5, 1230.5], [1875.5, 1229.5], [1875.5, 1230.5], [1869.5, 1228.5], [1863.5, 1229.5], [1857.5, 1230.5]]}, {"id": "txdium", "submitted_by": "Terrible_Draw_1248", "name": "Mario", "description": "A draw of mario", "website": "", "subreddit": "", "center": [922.5, 1515.5], "path": [[929.5, 1525.5], [929.5, 1521.5], [928.5, 1521.5], [928.5, 1520.5], [926.5, 1520.5], [926.5, 1519.5], [928.5, 1519.5], [928.5, 1518.5], [929.5, 1518.5], [929.5, 1514.5], [928.5, 1514.5], [928.5, 1513.5], [928.5, 1512.5], [928.5, 1511.5], [927.5, 1511.5], [927.5, 1510.5], [927.5, 1509.5], [926.5, 1509.5], [926.5, 1508.5], [926.5, 1507.5], [925.5, 1507.5], [925.5, 1506.5], [919.5, 1506.5], [919.5, 1507.5], [918.5, 1507.5], [918.5, 1508.5], [917.5, 1508.5], [917.5, 1509.5], [916.5, 1509.5], [916.5, 1510.5], [915.5, 1510.5], [915.5, 1511.5], [915.5, 1512.5], [914.5, 1512.5], [914.5, 1517.5], [914.5, 1518.5], [916.5, 1518.5], [916.5, 1520.5], [918.5, 1520.5], [918.5, 1521.5], [923.5, 1525.5]]}, {"id": "txdipc", "submitted_by": "NoImplement6899", "name": "soleKEFS", "description": "Streamer soleKEFS :)", "website": "https://www.twitch.tv/solekefs", "subreddit": "", "center": [1863.5, 1615.5], "path": [[1852.5, 1618.5], [1873.5, 1618.5], [1873.5, 1612.5], [1852.5, 1612.5], [1852.5, 1618.5]]}, -{"id": "txdika", "submitted_by": "TheRealJeemboo", "name": "ITZY", "description": "Itzy (Hangul: \uc788\uc9c0) is a South Korean girl group formed by JYP Entertainment and consisting of members Yeji, Lia, Ryujin, Chaeryeong, and Yuna.", "website": "", "subreddit": "/r/ITZY", "center": [0.5, 0.5], "path": []}, {"id": "txdibl", "submitted_by": "General_Bother7593", "name": "University of the Philippines", "description": "The University of the Philippines is a state university system in the Philippines", "website": "", "subreddit": "", "center": [401.5, 1615.5], "path": [[394.5, 1611.5], [407.5, 1611.5], [407.5, 1619.5], [394.5, 1619.5]]}, {"id": "txdi7s", "submitted_by": "MC-Clooless", "name": "The Living Tombstone", "description": "Logo for online musical artist The Living Tombstone", "website": "https://www.youtube.com/c/TheLivingTombstone", "subreddit": "/r/TheLivingTombstone", "center": [1755.5, 1368.5], "path": [[1752.5, 1365.5], [1758.5, 1365.5], [1758.5, 1370.5], [1752.5, 1370.5], [1752.5, 1365.5]]}, -{"id": "txdhmp", "submitted_by": "Loopyz08", "name": "De La Salle University", "description": "A Filipino University located in Taft, Manila, NCR, Philippines. This territory used to be owned by its rival university (Ateneo) below with the text \"DLSU SUX\". DLSU then took notice of this and took revenge by taking the square for itself. La Salle and Ateneo have a long lasting sports and academic rivalry.", "website": "dlsu.edu.ph", "subreddit": "/r/philippines", "center": [1488.5, 377.5], "path": [[1481.5, 372.5], [1495.5, 372.5], [1495.5, 382.5], [1482.5, 382.5], [1481.5, 382.5]]}, +{"id": "txdhmp", "submitted_by": "Loopyz08", "name": "De La Salle University", "description": "A Filipino University located in Taft, Manila, NCR, Philippines. This territory used to be owned by its rival university (Ateneo) below with the text \"DLSU SUX\". DLSU then took notice of this and took revenge by taking the square for itself. La Salle and Ateneo have a long lasting sports and academic rivalry.", "website": "https://dlsu.edu.ph", "subreddit": "/r/philippines", "center": [1488.5, 377.5], "path": [[1481.5, 372.5], [1495.5, 372.5], [1495.5, 382.5], [1482.5, 382.5], [1481.5, 382.5]]}, {"id": "txdhlx", "submitted_by": "kuffyruff", "name": "Novelhouse", "description": "A YouTube gaming channel best known for its voice-acted playthroughs of various visual novels and indie JRPGs (ex OMORI, YTTD, Deltarune, Ace Attorney) as well as general silliness. The color scheme of the sign and the word NOVEL were done so as to be in solidarity with the Trans flag, while the word HOUSE was made dark blue in reference to the novel House of Leaves.", "website": "https://www.youtube.com/channel/UCvS7MtrCVLr_9mCjT-cUfEA/videos", "subreddit": "", "center": [741.5, 826.5], "path": [[730.5, 820.5], [752.5, 820.5], [752.5, 832.5], [744.5, 832.5], [744.5, 833.5], [743.5, 834.5], [739.5, 834.5], [738.5, 833.5], [738.5, 832.5], [730.5, 832.5]]}, {"id": "txdhey", "submitted_by": "Terrible_Draw_1248", "name": "Steve", "description": "Steve from the game of minecraft", "website": "", "subreddit": "", "center": [666.5, 1588.5], "path": [[662.5, 1591.5], [669.5, 1591.5], [669.5, 1584.5], [662.5, 1584.5]]}, {"id": "txdgxi", "submitted_by": "FEED_ME_SALT", "name": "K-2", "description": "This is K-2 mascot of an english japanese band named Mili.", "website": "http://projectmili.com/", "subreddit": "/r/mili", "center": [1397.5, 146.5], "path": [[1394.5, 141.5], [1401.5, 141.5], [1400.5, 152.5], [1393.5, 151.5], [1393.5, 146.5]]}, -{"id": "txdgvs", "submitted_by": "IanM_56", "name": "Han-Tyumi, the Confused Cyborg", "description": "Han-Tyumi is a cyborg from King Gizzard & The Lizard Wizard's Murder Of The Universe album", "website": "https://www.youtube.com/watch?v=4zUPTPlkqDg", "subreddit": "/r/KGATLW", "center": [0.5, 0.5], "path": []}, -{"id": "txdguc", "submitted_by": "akaTowaka", "name": "Third Life/Last Life SMP", "description": "Third Life and Last Life were SMP Minecraft series focused around a modified hardcore world, featuring HermitCraft members and wider MCYT creators. Members of the server would have a set number of lives (3 in Third Life, 2-6 in Last Life), and upon losing all of them they would die permanently. Additionally, upon reaching their final life, their goal changed from peaceful to killing everyone remaining. Season 1 (Third Life) ran from April 20th, 2021 to June 8th, 2021, whilst Season 2 (Last Life) ran from September 21st, 2021 to November 16th, 2021.", "website": "https://last-life-smp.fandom.com/wiki/Last_Life_SMP_Wiki", "subreddit": "/r/ThirdLifeSMP", "center": [860.5, 585.5], "path": [[872.5, 590.5], [872.5, 587.5], [864.5, 587.5], [864.5, 580.5], [852.5, 580.5], [852.5, 587.5], [857.5, 587.5], [857.5, 590.5]]}, +{"id": "txdguc", "submitted_by": "akaTowaka", "name": "Third Life/Last Life SMP", "description": "Third Life and Last Life were SMP (Survival Multiplayer) Minecraft series focused around a modified hardcore world, featuring Hermitcraft members and wider Minecraft YouTube creators. Members of the server would have a set number of lives (3 in Third Life, 2-6 in Last Life), and upon losing all of them they would die permanently. Lives were color-coded by quantity (dark green = 4+, light green = 3, yellow = 2, red = 1). Additionally, upon reaching their final life, their goal changed from peaceful to killing everyone remaining. Last player standing was the winner. Season 1 (Third Life) ran from April 20th, 2021 to June 8th, 2021, while Season 2 (Last Life) ran from September 21st, 2021 to November 16th, 2021.", "website": "https://last-life-smp.fandom.com/wiki/Last_Life_SMP_Wiki", "subreddit": "/r/ThirdLifeSMP", "center": [860.5, 585.5], "path": [[872.5, 590.5], [872.5, 587.5], [864.5, 587.5], [864.5, 580.5], [852.5, 580.5], [852.5, 587.5], [857.5, 587.5], [857.5, 590.5]]}, {"id": "txdgdu", "submitted_by": "PolskaFly", "name": "Royal Slime", "description": "The royal slime (miniaturized), coordinated by the server 'Server De Carlos' and with help from neighbors.", "website": "https://gitdecarlos.github.io/", "subreddit": "/r/SubredditDeCarlos", "center": [930.5, 1741.5], "path": [[926.5, 1736.5], [926.5, 1736.5], [926.5, 1745.5], [934.5, 1745.5], [934.5, 1736.5]]}, {"id": "txdfp9", "submitted_by": "Terrible_Draw_1248", "name": "Pibby", "description": "a draw of the probably coming soon serie of Come and Learn with pibby, in the draw it shows pibby and bon bon", "website": "", "subreddit": "", "center": [910.5, 1357.5], "path": [[919.5, 1364.5], [901.5, 1364.5], [901.5, 1349.5], [919.5, 1349.5]]}, {"id": "txdfj0", "submitted_by": "note_2_self", "name": "Jopping", "description": "From the song Jopping by k-pop group SuperM. A made up word which is the combination of jumping and popping. Cause when we jumping and popping -\nwe jopping!", "website": "", "subreddit": "/r/superm", "center": [1406.5, 565.5], "path": [[1391.5, 562.5], [1421.5, 562.5], [1421.5, 568.5], [1391.5, 568.5]]}, -{"id": "txdf31", "submitted_by": "Inferno_lizard", "name": "Feh The Owl", "description": "The animal mascot of the Fire Emblem Heroes mobile game. Here she's taking a rest.", "website": "www.fire-emblem-heroes.com", "subreddit": "/r/FireEmblemHeroes", "center": [1842.5, 765.5], "path": [[1839.5, 767.5], [1834.5, 763.5], [1837.5, 759.5], [1849.5, 759.5], [1850.5, 761.5], [1848.5, 764.5], [1849.5, 766.5], [1853.5, 771.5], [1837.5, 771.5], [1835.5, 769.5], [1834.5, 764.5], [1843.5, 765.5]]}, {"id": "txdf2m", "submitted_by": "DJ_woah", "name": "Non Toxic Vat of Acid", "description": "This is the logo of a small discord server >100 people named Non Toxic Vat of Acid", "website": "", "subreddit": "", "center": [675.5, 1684.5], "path": [[671.5, 1681.5], [679.5, 1681.5], [679.5, 1686.5], [671.5, 1686.5]]}, {"id": "txden1", "submitted_by": "moonshadow264", "name": "Sleepy Bois Inc. (SBI)", "description": "Friends Technoblade, Philza, Wilbur Soot, and TommyInnit. \n\nLoved by fans for their family-like dynamic.", "website": "", "subreddit": "", "center": [178.5, 908.5], "path": [[173.5, 890.5], [182.5, 890.5], [182.5, 926.5], [173.5, 926.5], [173.5, 890.5]]}, {"id": "txdehe", "submitted_by": "TheRealJeemboo", "name": "IZ*ONE", "description": "Iz*One (Hangul: \uc544\uc774\uc988\uc6d0) is a former South Korean\u2013Japanese girl group composed of twelve members: Jang Won-young, Sakura Miyawaki, Jo Yu-ri, Choi Ye-na, An Yu-jin, Nako Yabuki, Kwon Eun-bi, Kang Hye-won, Hitomi Honda, Kim Chae-won, Kim Min-ju, and Lee Chae-yeon. They have officially disbanded on April 29, 2021.", "website": "", "subreddit": "/r/iZone", "center": [1465.5, 1054.5], "path": [[1451.5, 1044.5], [1479.5, 1044.5], [1479.5, 1063.5], [1451.5, 1063.5]]}, {"id": "txdef1", "submitted_by": "Terrible_Draw_1248", "name": "Pepe the frog smoking", "description": "Pepe the frog meme but smoking", "website": "", "subreddit": "", "center": [703.5, 950.5], "path": [[695.5, 956.5], [710.5, 956.5], [710.5, 944.5], [695.5, 944.5]]}, {"id": "txdebw", "submitted_by": "suomeaboo", "name": "Xavier School Philippines Logo", "description": "The remains of the logo of Xavier School, a Filipino high school, after Derpy invaded. It was originally a golden stallion in front of a blue X, over a solid white background.", "website": "https://www.xs.edu.ph", "subreddit": "/r/xavier_school", "center": [898.5, 1693.5], "path": [[895.5, 1679.5], [897.5, 1679.5], [897.5, 1685.5], [898.5, 1685.5], [898.5, 1687.5], [899.5, 1687.5], [899.5, 1691.5], [900.5, 1691.5], [900.5, 1692.5], [901.5, 1692.5], [901.5, 1694.5], [902.5, 1694.5], [902.5, 1698.5], [901.5, 1698.5], [901.5, 1699.5], [900.5, 1699.5], [900.5, 1699.5], [900.5, 1700.5], [899.5, 1700.5], [899.5, 1702.5], [895.5, 1702.5], [895.5, 1679.5]]}, {"id": "txde4y", "submitted_by": "SmoodleBob", "name": "Bionicle", "description": "Image of Tahu and anniversary edition of Tahu, one of the main characters in the first wave of the Lego toy line, Bionicle.", "website": "", "subreddit": "/r/Bionicle", "center": [1150.5, 453.5], "path": [[1161.5, 460.5], [1160.5, 443.5], [1150.5, 443.5], [1145.5, 446.5], [1145.5, 452.5], [1136.5, 452.5], [1137.5, 460.5]]}, -{"id": "txde14", "submitted_by": "npjprods", "name": "Bots", "description": "Here we can see the damage that the Spanish-xQc-BTS coalition did with bots, might seem minimal to some, but only thanks to the fierce resistance of the French which along other allies resisted wave after wave of the spanish bots' attacks", "website": "", "subreddit": "/r/placefrance", "center": [115.5, 1682.5], "path": [[34.5, 1482.5], [188.5, 1483.5], [200.5, 1881.5], [38.5, 1876.5]]}, {"id": "txddiq", "submitted_by": "Terrible_Draw_1248", "name": "pepe the frog", "description": "the pepe the frog meme", "website": "", "subreddit": "", "center": [1785.5, 973.5], "path": [[1782.5, 975.5], [1788.5, 975.5], [1788.5, 970.5], [1782.5, 970.5]]}, {"id": "txdd8b", "submitted_by": "Caje__", "name": "PuuCraft", "description": "A Minecraft Beta 1.7.3 Server without a whitelist", "website": "", "subreddit": "", "center": [1775.5, 44.5], "path": [[1766.5, 36.5], [1784.5, 36.5], [1784.5, 51.5], [1766.5, 51.5]]}, {"id": "txdd70", "submitted_by": "Rumbleizer", "name": "Fuck Josh Duggar", "description": "A contribution by r/DuggarsSnark to represent rightful hatred of formal reality TV star Josh Duggar, who was convicted of downloading and possessing child sex abuse images on his work computer.", "website": "", "subreddit": "/r/DuggarsSnark", "center": [594.5, 1118.5], "path": [[565.5, 1112.5], [623.5, 1112.5], [623.5, 1124.5], [565.5, 1124.5], [565.5, 1112.5]]}, -{"id": "txdcry", "submitted_by": "Villaver", "name": "Pud\u00fa", "description": "The southern pudu is a deer native to the Andes of Argentina and Chile. It is the second smallest deer in the world.", "website": "", "subreddit": "/r/chile", "center": [0.5, 0.5], "path": []}, {"id": "txdcju", "submitted_by": "Terrible_Draw_1248", "name": "mexico flag", "description": "", "website": "", "subreddit": "", "center": [1077.5, 1559.5], "path": [[1090.5, 1565.5], [1063.5, 1565.5], [1063.5, 1552.5], [1090.5, 1552.5]]}, {"id": "txdccg", "submitted_by": "Tommy_Kase", "name": "A Patriote", "description": "The Patriotes was the name given after 1826 to the Parti canadien and to the popular movement -primarily francophone- that contributed to the Rebellions of 1837-38 in Lower Canada. Its most distinguished leader included Louis-Joseph Papineau.", "website": "https://www.thecanadianencyclopedia.ca/en/article/patriotes", "subreddit": "/r/Quebec", "center": [914.5, 951.5], "path": [[903.5, 962.5], [903.5, 939.5], [925.5, 941.5], [924.5, 961.5], [903.5, 962.5]]}, {"id": "txdc5a", "submitted_by": "moonshadow264", "name": "Wilbur Soot", "description": "Streamer and YouTuber Wilbur Soot is known for his time with YouTube channel SootHouse, his roleplaying on the Dream SMP, and his music.", "website": "https://www.youtube.com/c/WilburPlays", "subreddit": "/r/wilbursoot", "center": [178.5, 913.5], "path": [[173.5, 908.5], [182.5, 908.5], [182.5, 917.5], [173.5, 917.5], [173.5, 908.5]]}, @@ -6232,10 +5711,9 @@ {"id": "txdal1", "submitted_by": "RealSlids", "name": "Butterman", "description": "A mascot for Twitch streamer and Mojang Senior Artist, MortMort.", "website": "https://littlelove.mortmort.net/", "subreddit": "/r/MortMort", "center": [1414.5, 83.5], "path": [[1406.5, 74.5], [1406.5, 92.5], [1421.5, 92.5], [1421.5, 74.5]]}, {"id": "txd9v2", "submitted_by": "FinalCardinal", "name": "DRAMAtical Murder", "description": "DRAMAtical Murder (VNDM or DMMD) is a Nitro Chiral VN released in 2012.", "website": "", "subreddit": "/r/DRAMAticalMurder", "center": [1473.5, 800.5], "path": [[1460.5, 796.5], [1486.5, 796.5], [1486.5, 804.5], [1460.5, 804.5], [1460.5, 804.5], [1460.5, 796.5]]}, {"id": "txd9ow", "submitted_by": "Fergfist", "name": "Golden Snitch - Harry Potter", "description": "", "website": "", "subreddit": "", "center": [1705.5, 1372.5], "path": [[1696.5, 1369.5], [1711.5, 1363.5], [1712.5, 1378.5], [1697.5, 1379.5], [1696.5, 1368.5]]}, -{"id": "txd9ch", "submitted_by": "TwentyfootAngels", "name": "Feh the Owl", "description": "Hoo! A character in the Fire Emblem Heroes mobile game. Delivers gifts to the player and acts as a social media mascot.", "website": "", "subreddit": "/r/FireEmblemHeroes", "center": [1843.5, 766.5], "path": [[1836.5, 772.5], [1834.5, 769.5], [1834.5, 763.5], [1837.5, 759.5], [1849.5, 759.5], [1849.5, 763.5], [1855.5, 772.5]]}, {"id": "txd9az", "submitted_by": "ImTheSoup", "name": "JSchlatt", "description": "The Minecraft skin of popular Youtuber and Twitch streamer JSchlatt.", "website": "", "subreddit": "", "center": [187.5, 922.5], "path": [[183.5, 925.5], [183.5, 918.5], [190.5, 918.5], [190.5, 925.5], [183.5, 925.5]]}, {"id": "txd9am", "submitted_by": "Leamsi2000", "name": "La Chasse-Galerie", "description": "A Qu\u00e9bec folklore legend about a group of lumberjacks making a pact with the devil on Christmas Eve to go see their wives in a flying canoe", "website": "", "subreddit": "", "center": [1000.5, 939.5], "path": [[990.5, 951.5], [992.5, 954.5], [999.5, 954.5], [1012.5, 926.5], [1000.5, 926.5]]}, -{"id": "txd99k", "submitted_by": "Callie1224", "name": "ItemLabel Larva", "description": "Larva is the first evolution of Peepy, an Itemlabel character.", "website": "itemlabel.com", "subreddit": "/r/itemlabel", "center": [303.5, 1824.5], "path": [[306.5, 1824.5], [303.5, 1821.5], [300.5, 1827.5], [305.5, 1826.5], [308.5, 1823.5], [304.5, 1819.5], [300.5, 1821.5], [299.5, 1828.5], [306.5, 1826.5], [307.5, 1822.5], [303.5, 1820.5]]}, +{"id": "txd99k", "submitted_by": "Callie1224", "name": "ItemLabel Larva", "description": "Larva is the first evolution of Peepy, an Itemlabel character.", "website": "https://itemlabel.com", "subreddit": "/r/itemlabel", "center": [303.5, 1824.5], "path": [[306.5, 1824.5], [303.5, 1821.5], [300.5, 1827.5], [305.5, 1826.5], [308.5, 1823.5], [304.5, 1819.5], [300.5, 1821.5], [299.5, 1828.5], [306.5, 1826.5], [307.5, 1822.5], [303.5, 1820.5]]}, {"id": "txd8un", "submitted_by": "PlaceIsDaWay", "name": "Black Cat Memorial", "description": "For the beloved black cats, initials M & P. They had the beauty of the moon, and the warmth of the sun. Now they can be remembered forever. Many thanks to all our allies that made our dreams come true, nothing would of been possible without you all <3", "website": "", "subreddit": "", "center": [1565.5, 1117.5], "path": [[1561.5, 1113.5], [1566.5, 1113.5], [1567.5, 1113.5], [1568.5, 1113.5], [1568.5, 1121.5], [1561.5, 1121.5], [1561.5, 1113.5]]}, {"id": "txd89v", "submitted_by": "WLZ0819", "name": "Deepwoken Deep Owl", "description": "A monster from the Roblox game Deepwoken that is very scary and very hard to kill! It can drop dark feathers or void feathers which can be used for armor or for the Visionshaper Oath. They also look really cool.", "website": "https://deepwoken.fandom.com/wiki/Deep_Owl", "subreddit": "", "center": [351.5, 1399.5], "path": [[344.5, 1391.5], [344.5, 1392.5], [345.5, 1393.5], [346.5, 1394.5], [345.5, 1395.5], [344.5, 1396.5], [343.5, 1397.5], [343.5, 1399.5], [343.5, 1401.5], [343.5, 1402.5], [344.5, 1402.5], [344.5, 1403.5], [344.5, 1404.5], [345.5, 1404.5], [345.5, 1405.5], [346.5, 1405.5], [346.5, 1406.5], [347.5, 1406.5], [347.5, 1407.5], [348.5, 1407.5], [348.5, 1408.5], [349.5, 1408.5], [350.5, 1408.5], [350.5, 1409.5], [351.5, 1409.5], [352.5, 1409.5], [353.5, 1409.5], [353.5, 1408.5], [354.5, 1407.5], [355.5, 1406.5], [356.5, 1405.5], [357.5, 1404.5], [358.5, 1403.5], [358.5, 1402.5], [359.5, 1401.5], [359.5, 1400.5], [359.5, 1399.5], [359.5, 1398.5], [358.5, 1397.5], [357.5, 1396.5], [356.5, 1395.5], [355.5, 1394.5], [357.5, 1393.5], [358.5, 1392.5], [358.5, 1391.5], [357.5, 1390.5], [355.5, 1390.5], [355.5, 1393.5], [353.5, 1393.5], [353.5, 1391.5], [352.5, 1390.5], [350.5, 1390.5], [349.5, 1391.5], [349.5, 1393.5], [347.5, 1393.5], [347.5, 1391.5], [346.5, 1390.5], [345.5, 1390.5]]}, {"id": "txd83b", "submitted_by": "moonshadow264", "name": "Mario Kart 64 and Power-Ups", "description": "Two power-ups: a mini mushroom and a super star, and a nod to Mario Kart 64.", "website": "https://mario.nintendo.com/", "subreddit": "", "center": [882.5, 1856.5], "path": [[884.5, 1847.5], [872.5, 1847.5], [872.5, 1870.5], [890.5, 1870.5], [890.5, 1837.5], [884.5, 1837.5], [884.5, 1847.5]]}, @@ -6251,12 +5729,10 @@ {"id": "txd5fv", "submitted_by": "seargakis", "name": "7dUG!", "description": "Referencing to the 7 days in the UnderGround that you spend in The World Ends With You.", "website": "", "subreddit": "/r/TWEWY", "center": [1886.5, 169.5], "path": [[1875.5, 166.5], [1896.5, 166.5], [1896.5, 172.5], [1875.5, 172.5], [1875.5, 166.5]]}, {"id": "txd5a3", "submitted_by": "Caracalamity", "name": "Corgo", "description": "A small dog based on a corgi plush toy, used as a mascot for a group of furries from NSW Australia", "website": "", "subreddit": "", "center": [1691.5, 716.5], "path": [[1689.5, 710.5], [1694.5, 710.5], [1694.5, 716.5], [1695.5, 716.5], [1695.5, 721.5], [1694.5, 721.5], [1694.5, 722.5], [1688.5, 722.5], [1688.5, 721.5], [1687.5, 721.5], [1687.5, 716.5], [1688.5, 716.5], [1688.5, 710.5]]}, {"id": "txd56v", "submitted_by": "TwentyfootAngels", "name": "Aro Arrows and Ace Aces", "description": "A pun on aromanticism and asexuality - arrows for \"aro\", and aces for \"ace\".", "website": "", "subreddit": "/r/aace", "center": [473.5, 664.5], "path": [[467.5, 681.5], [479.5, 681.5], [479.5, 646.5], [467.5, 646.5]]}, -{"id": "txd4r5", "submitted_by": "ImTheSoup", "name": "wysi", "description": "727, 727", "website": "", "subreddit": "/r/osuplace", "center": [727.5, 727.5], "path": [[726.5, 727.5], [726.5, 726.5], [727.5, 726.5], [728.5, 726.5], [728.5, 727.5], [728.5, 728.5], [727.5, 728.5], [726.5, 728.5]]}, {"id": "txd4fi", "submitted_by": "FlyingKiwiNZ", "name": "Saint Sophia Cathedral", "description": "Saint Sophia Cathedral in Kyiv, Ukraine, is an architectural monument of Kyivan Rus. The former cathedral is one of the city's best known landmarks and the first heritage site in Ukraine to be inscribed on the World Heritage List. In Ukrainian the cathedral is known as Sobor Sviatoi Sofii (\u0421\u043e\u0431\u043e\u0440 \u0421\u0432\u044f\u0442\u043e\u0457 \u0421\u043e\u0444\u0456\u0457) or Sofiiskyi sobor (\u0421\u043e\u0444\u0456\u0439\u0441\u044c\u043a\u0438\u0439 \u0441\u043e\u0431\u043e\u0440).\n\nThe complex of the cathedral is the main component and museum of the National Sanctuary \"Sophia of Kyiv\" which is the state institution responsible for the preservation of the cathedral complex as well as four other historic landmarks across the nation.", "website": "https://st-sophia.org.ua/en/home/", "subreddit": "/r/PlaceUkraine", "center": [391.5, 237.5], "path": [[373.5, 251.5], [373.5, 241.5], [375.5, 241.5], [375.5, 237.5], [374.5, 237.5], [374.5, 232.5], [377.5, 230.5], [377.5, 226.5], [378.5, 226.5], [378.5, 224.5], [380.5, 224.5], [384.5, 220.5], [383.5, 220.5], [383.5, 216.5], [384.5, 216.5], [384.5, 215.5], [388.5, 215.5], [388.5, 216.5], [389.5, 216.5], [389.5, 220.5], [388.5, 220.5], [389.5, 220.5], [389.5, 221.5], [391.5, 223.5], [391.5, 220.5], [392.5, 220.5], [392.5, 219.5], [395.5, 219.5], [397.5, 221.5], [397.5, 223.5], [398.5, 221.5], [399.5, 220.5], [400.5, 221.5], [403.5, 223.5], [402.5, 226.5], [404.5, 227.5], [404.5, 230.5], [405.5, 231.5], [406.5, 232.5], [407.5, 233.5], [408.5, 233.5], [408.5, 236.5], [409.5, 236.5], [409.5, 241.5], [410.5, 241.5], [410.5, 252.5], [373.5, 252.5], [373.5, 249.5]]}, {"id": "txd42u", "submitted_by": "DangerousChip4864", "name": "Cristinini's Minecraft skin", "description": "Mayoress of village 3 in tortillaland", "website": "https://cristininiworld.com/tortillaland/", "subreddit": "/r/IamCristinini", "center": [1836.5, 693.5], "path": [[1831.5, 697.5], [1831.5, 697.5], [1840.5, 697.5], [1840.5, 688.5], [1831.5, 688.5]]}, {"id": "txd3w0", "submitted_by": "QuatreNox", "name": "Trans Butterfly", "description": "A butterfly in the colors of the Transgender Flag, symbolizing the physical metamorphosis some trans people go through if they choose to medically transition", "website": "https://www.reddit.com/r/transplace", "subreddit": "/r/transplace", "center": [738.5, 449.5], "path": [[730.5, 442.5], [733.5, 442.5], [738.5, 443.5], [743.5, 442.5], [746.5, 442.5], [746.5, 448.5], [745.5, 451.5], [744.5, 458.5], [742.5, 458.5], [738.5, 456.5], [734.5, 458.5], [732.5, 458.5], [731.5, 458.5], [732.5, 452.5], [730.5, 448.5]]}, {"id": "txd3mn", "submitted_by": "moonshadow264", "name": "Perry", "description": "Yet another Perry the Platypus... wait, my bad, this is Agent P!", "website": "", "subreddit": "", "center": [1110.5, 1259.5], "path": [[1109.5, 1255.5], [1111.5, 1255.5], [1111.5, 1256.5], [1112.5, 1256.5], [1111.5, 1256.5], [1111.5, 1258.5], [1118.5, 1258.5], [1111.5, 1258.5], [1111.5, 1259.5], [1113.5, 1261.5], [1111.5, 1259.5], [1111.5, 1262.5], [1109.5, 1262.5], [1109.5, 1259.5], [1107.5, 1261.5], [1109.5, 1259.5], [1109.5, 1255.5]]}, -{"id": "txd339", "submitted_by": "op_neverdelivers", "name": "Inuyasha", "description": "Inuyasha (\u72ac\u591c\u53c9, lit. \"Dog Yaksha\") is a Japanese manga and anime series written and illustrated by Rumiko Takahashi.", "website": "https://www.viz.com/inuyasha", "subreddit": "/r/inuyasha", "center": [1583.5, 38.5], "path": [[1568.5, 35.5], [1599.5, 35.5], [1599.5, 41.5], [1567.5, 41.5], [1567.5, 35.5]]}, {"id": "txd2js", "submitted_by": "superblock_ma", "name": "Chile", "description": "The Chilean national flag with a cross centered on its canton representative of the flag's typical star.", "website": "", "subreddit": "/r/chile", "center": [262.5, 533.5], "path": [[251.5, 529.5], [272.5, 537.5], [251.5, 537.5], [251.5, 529.5], [272.5, 529.5], [272.5, 537.5]]}, {"id": "txd2iz", "submitted_by": "iffy_loves_murder", "name": "AB!", "description": "Third iteration of the AB logo, and the one that made it to the final canvas. AB is an acronym for ayo buddy!, which the name of a 3 year old discord groupchat consisting of 10 people.", "website": "", "subreddit": "", "center": [610.5, 1379.5], "path": [[604.5, 1376.5], [604.5, 1382.5], [616.5, 1382.5], [616.5, 1376.5]]}, {"id": "txd2hu", "submitted_by": "Seaplant13", "name": "Joker Yoda", "description": "Yoda from Star Wars, dressed as Joker from the eponymous 2019 film.", "website": "", "subreddit": "", "center": [792.5, 1570.5], "path": [[779.5, 1561.5], [779.5, 1578.5], [805.5, 1578.5], [804.5, 1561.5]]}, @@ -6268,14 +5744,11 @@ {"id": "txczun", "submitted_by": "tonatew", "name": "A minion", "description": "A minion, character from Movies \"Despicable me\"", "website": "", "subreddit": "", "center": [644.5, 1725.5], "path": [[642.5, 1730.5], [646.5, 1730.5], [646.5, 1720.5], [642.5, 1720.5], [642.5, 1730.5]]}, {"id": "txcxvl", "submitted_by": "lezzthanthree", "name": "Love Live!", "description": "An anime franchise about School Girls forming a School Idol Club in their high school.", "website": "https://www.lovelive-anime.jp/worldwide/", "subreddit": "/r/LoveLive", "center": [884.5, 685.5], "path": [[871.5, 679.5], [897.5, 679.5], [897.5, 690.5], [871.5, 690.5], [871.5, 679.5]]}, {"id": "txcxqz", "submitted_by": "BananaCupcak3", "name": "Mario", "description": "The head of Mario in the USA version of Super Mario Bros 2", "website": "https://en.wikipedia.org/wiki/Super_Mario_Bros._2", "subreddit": "", "center": [923.5, 1517.5], "path": [[915.5, 1517.5], [915.5, 1513.5], [920.5, 1507.5], [924.5, 1507.5], [925.5, 1508.5], [925.5, 1510.5], [926.5, 1510.5], [928.5, 1512.5], [929.5, 1517.5], [927.5, 1518.5], [926.5, 1519.5], [926.5, 1520.5], [928.5, 1520.5], [929.5, 1522.5], [929.5, 1526.5], [928.5, 1526.5], [927.5, 1527.5], [924.5, 1527.5], [922.5, 1524.5], [918.5, 1520.5]]}, -{"id": "txcxp9", "submitted_by": "Risuzu", "name": "Gabumon", "description": "One of the first generation of Digimon", "website": "", "subreddit": "", "center": [1330.5, 118.5], "path": [[1321.5, 103.5], [1321.5, 105.5], [1322.5, 107.5], [1322.5, 108.5], [1318.5, 114.5], [1321.5, 118.5], [1319.5, 123.5], [1320.5, 129.5], [1335.5, 131.5], [1342.5, 127.5], [1341.5, 123.5], [1343.5, 117.5], [1343.5, 116.5], [1339.5, 117.5], [1335.5, 109.5], [1338.5, 103.5], [1334.5, 103.5], [1334.5, 104.5], [1330.5, 104.5], [1329.5, 102.5], [1326.5, 102.5], [1326.5, 103.5], [1325.5, 104.5], [1324.5, 104.5]]}, {"id": "txcxer", "submitted_by": "akaTowaka", "name": "Evolution SMP", "description": "EvoSMP was a Minecraft SMP series that ran from October 2nd, 2017 to December 23rd, 2018. The series ran on the concept that portals would lead the members progressively into newer versions of Minecraft. It has since been heavily referenced at the conclusion of InTheLittleWood's POV of Last Life, and made a resurgence in the community.", "website": "https://evolution-smp.fandom.com/wiki/Evolution_SMP_Wiki", "subreddit": "/r/mcevo", "center": [862.5, 583.5], "path": [[864.5, 579.5], [859.5, 579.5], [860.5, 587.5], [864.5, 587.5]]}, {"id": "txcxaq", "submitted_by": "JW-Space-Telescope", "name": "The Crypt", "description": "A Science Fantasy worldbuilding project headed by a group of about 8 people.", "website": "https://docs.google.com/document/d/1y-_4XUzIHNVE3fN431H4nLj5ygzjbh-BA2QeJIzvbDc/edit", "subreddit": "", "center": [456.5, 734.5], "path": [[449.5, 731.5], [449.5, 737.5], [462.5, 737.5], [462.5, 731.5]]}, -{"id": "txcxaf", "submitted_by": "Cuberstache", "name": "PNW Cubers Logo", "description": "Inside the 3dgrineline mouth is the flag for people who solve Rubik's cubes in the northwest area of the United States", "website": "https://www.pnwcubing.com/", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "txcwst", "submitted_by": "South-Security-Mouse", "name": "Sunflower Land", "description": "Sunflower Land is a MetaVerse game based on the Polygon Blockchain. You can farm, chop, mine, craft and more as you build your farming empire.", "website": "https://sunflower-land.com/", "subreddit": "/r/sunflowerland", "center": [1541.5, 269.5], "path": [[1531.5, 259.5], [1551.5, 259.5], [1551.5, 279.5], [1531.5, 279.5], [1531.5, 259.5]]}, {"id": "txcwm7", "submitted_by": "CelesteKSP", "name": "Princess Banana", "description": "A fruit bat, mascot of the french streamer Souwtane and her community on twitch.\n\n(A few minute before destruction.)", "website": "https://www.twitch.tv/souwtane", "subreddit": "", "center": [411.5, 1842.5], "path": [[416.5, 1849.5], [416.5, 1845.5], [426.5, 1845.5], [426.5, 1837.5], [407.5, 1837.5], [407.5, 1838.5], [396.5, 1838.5], [396.5, 1844.5], [406.5, 1847.5], [407.5, 1849.5]]}, {"id": "txcwl2", "submitted_by": "AussieSophie", "name": "Roswood Institution", "description": "The logo for the VRChat Roleplay Rosewood Institution.", "website": "https://vrchat-legends.fandom.com/wiki/Rosewood_Institution", "subreddit": "", "center": [1855.5, 56.5], "path": [[1846.5, 63.5], [1846.5, 55.5], [1851.5, 50.5], [1854.5, 48.5], [1858.5, 48.5], [1862.5, 51.5], [1865.5, 56.5], [1864.5, 60.5], [1863.5, 63.5], [1849.5, 63.5], [1849.5, 63.5], [1847.5, 61.5], [1847.5, 62.5]]}, -{"id": "txcwjl", "submitted_by": "Master-Powers", "name": "Gabumon", "description": "A Digimon belonging to digidestined Matt Ishida. From The first season of Digimon", "website": "", "subreddit": "", "center": [1333.5, 116.5], "path": [[1332.5, 117.5], [1334.5, 117.5], [1341.5, 113.5], [1343.5, 108.5], [1343.5, 107.5], [1335.5, 106.5], [1330.5, 105.5], [1323.5, 103.5], [1321.5, 113.5], [1319.5, 114.5], [1323.5, 122.5], [1321.5, 128.5], [1319.5, 124.5], [1321.5, 120.5], [1324.5, 129.5], [1321.5, 128.5], [1331.5, 130.5], [1335.5, 127.5], [1340.5, 125.5], [1345.5, 125.5], [1346.5, 120.5], [1345.5, 116.5], [1345.5, 113.5], [1343.5, 111.5], [1348.5, 121.5], [1348.5, 120.5], [1345.5, 118.5], [1345.5, 114.5], [1344.5, 112.5], [1344.5, 107.5], [1338.5, 105.5], [1342.5, 106.5]]}, {"id": "txcw26", "submitted_by": "minzoid", "name": "GOT7", "description": "Got7 is a kpop group composed of seven members: Jay B, Mark, Jackson, Jinyoung, Youngjae, BamBam, and Yugyeom. Debuting in 2014, their official colors are green and white and their fans are called IGOT7, or, romanized, ahgase. Ahgase also means baby bird in Korean. Made by ahgase for our members with love.", "website": "https://www.youtube.com/c/GOT7/featured", "subreddit": "/r/got7", "center": [1588.5, 271.5], "path": [[1580.5, 268.5], [1596.5, 268.5], [1596.5, 273.5], [1580.5, 273.5]]}, {"id": "txcvak", "submitted_by": "EnlistedSalt", "name": "Filian", "description": "So basically I do flips for fruit snacks, function as a top tier TTS bot, emit gremlin noises, and have heart attacks--then I call it a stream!", "website": "", "subreddit": "/r/SnackersHQ", "center": [604.5, 1049.5], "path": [[598.5, 1043.5], [598.5, 1043.5], [599.5, 1043.5], [609.5, 1043.5], [609.5, 1054.5], [598.5, 1054.5], [598.5, 1043.5]]}, {"id": "txcv76", "submitted_by": "DangerousChip4864", "name": "Sara Miranda", "description": "Cristinini's GTA Role Character at Marbella Vice. Is she alive? It's not pretty clear.", "website": "https://cristininiworld.com/", "subreddit": "/r/IamCristinini", "center": [1836.5, 702.5], "path": [[1831.5, 698.5], [1831.5, 698.5], [1831.5, 698.5], [1840.5, 698.5], [1840.5, 706.5], [1831.5, 706.5], [1831.5, 706.5], [1831.5, 699.5], [1831.5, 698.5]]}, @@ -6283,7 +5756,6 @@ {"id": "txcupp", "submitted_by": "Ok-Branch-6831", "name": "Norm Macdonald Live Logo", "description": "Tribute to the late Norm Macdonald. A comedian known for his voracious appetite, but not for food (although he was by no means a skinny man, especially near the end), instead, his appetite was for making us laugh.", "website": "https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwj_5-W8v_72AhVCFjQIHQOJCVgQFnoECAcQAQ&url=https%3A%2F%2Ftwitter.com%2Fnormmacdonald&usg=AOvVaw2wsJnAOO9BDntgaeqnlGgQ", "subreddit": "/r/NormMacdonald", "center": [552.5, 1722.5], "path": [[543.5, 1712.5], [542.5, 1712.5], [561.5, 1712.5], [561.5, 1731.5], [542.5, 1731.5], [542.5, 1712.5]]}, {"id": "txcu59", "submitted_by": "Lou_Dude929", "name": "Villanova University logo", "description": "The logo for the Philadelpha-area university known for its basketball team. The logo was swamped by bots and relocated numerous times.", "website": "", "subreddit": "/r/villanova", "center": [1502.5, 1657.5], "path": [[1499.5, 1665.5], [1506.5, 1665.5], [1511.5, 1650.5], [1493.5, 1650.5], [1498.5, 1665.5]]}, {"id": "txcu01", "submitted_by": "Maelky123", "name": "Smol Ame", "description": "A small version of Amelia Watson from an alternative timeline.", "website": "https://www.youtube.com/channel/UCyl1z3jo3XHR1riLFKG5UAg", "subreddit": "/r/Hololive", "center": [265.5, 772.5], "path": [[262.5, 774.5], [262.5, 771.5], [263.5, 770.5], [266.5, 770.5], [267.5, 771.5], [267.5, 774.5], [262.5, 774.5]]}, -{"id": "txctxn", "submitted_by": "TheZooenator", "name": "Washington Monument", "description": "Built to honor George Washington, the United States' first president, the 555-foot marble obelisk towers over Washington, D.C.", "website": "https://en.wikipedia.org/wiki/Washington_Monument", "subreddit": "/r/AmericanFlaginPlace", "center": [1875.5, 1853.5], "path": [[1873.5, 1842.5], [1874.5, 1841.5], [1875.5, 1840.5], [1876.5, 1840.5], [1877.5, 1841.5], [1877.5, 1866.5], [1873.5, 1866.5], [1873.5, 1840.5], [1875.5, 1840.5], [1874.5, 1839.5], [1875.5, 1839.5], [1875.5, 1838.5], [1876.5, 1839.5], [1876.5, 1840.5], [1877.5, 1840.5]]}, {"id": "txctr2", "submitted_by": "joe0400", "name": "Aegis Core Crystal", "description": "The core crystal of Pyra and Mythra.", "website": "", "subreddit": "/r/Xenoblade_Chronicles", "center": [1193.5, 732.5], "path": [[1189.5, 724.5], [1189.5, 726.5], [1187.5, 728.5], [1189.5, 732.5], [1189.5, 740.5], [1190.5, 741.5], [1195.5, 741.5], [1196.5, 740.5], [1196.5, 731.5], [1198.5, 729.5], [1198.5, 728.5], [1196.5, 726.5], [1196.5, 724.5], [1195.5, 723.5], [1190.5, 723.5], [1189.5, 724.5]]}, {"id": "txctmt", "submitted_by": "AlexeiM", "name": "Diablada's Mask", "description": "A mask of the famed Oruro's Carnaval dance: The Diablada.", "website": "", "subreddit": "/r/Bolivia", "center": [1521.5, 1214.5], "path": [[1510.5, 1202.5], [1504.5, 1210.5], [1503.5, 1214.5], [1504.5, 1222.5], [1506.5, 1226.5], [1514.5, 1226.5], [1518.5, 1226.5], [1537.5, 1226.5], [1537.5, 1216.5], [1537.5, 1209.5], [1533.5, 1202.5], [1526.5, 1202.5], [1510.5, 1202.5]]}, {"id": "txcsr2", "submitted_by": "nan0zer0", "name": "University of Western Ontario Crest", "description": "Crest of the University of Western Ontario (UWO; aka Western) in London, Ontario.", "website": "https://www.uwo.ca/", "subreddit": "/r/uwo", "center": [421.5, 1932.5], "path": [[412.5, 1922.5], [412.5, 1938.5], [419.5, 1945.5], [422.5, 1945.5], [430.5, 1938.5], [430.5, 1923.5], [422.5, 1920.5]]}, @@ -6314,7 +5786,7 @@ {"id": "txe4sh", "submitted_by": "BlazeComrade", "name": "Volkswagen Bus", "description": "A Volkswagen Type 2, painted blue", "website": "", "subreddit": "", "center": [1647.5, 856.5], "path": [[1635.5, 847.5], [1631.5, 853.5], [1631.5, 864.5], [1636.5, 869.5], [1640.5, 868.5], [1640.5, 866.5], [1649.5, 866.5], [1650.5, 869.5], [1653.5, 869.5], [1654.5, 868.5], [1652.5, 864.5], [1653.5, 859.5], [1659.5, 857.5], [1664.5, 855.5], [1668.5, 851.5], [1673.5, 851.5], [1670.5, 847.5], [1635.5, 847.5]]}, {"id": "txe4lw", "submitted_by": "Mr_Mookster", "name": "Vanillaworks", "description": "a Discord community focused around lore friendly mods for the game Grand Theft Auto: V", "website": "https://vanillaworks.weebly.com/", "subreddit": "", "center": [1754.5, 1375.5], "path": [[1765.5, 1379.5], [1765.5, 1371.5], [1742.5, 1371.5], [1744.5, 1379.5]]}, {"id": "txe472", "submitted_by": "bananameatnotjuicy", "name": "De La Salle University", "description": "De La Salle University (Filipino: Pamantasang De La Salle or Unibersidad ng De La Salle) is a university in Taft Avenue, Malate, Manila, Philippines.", "website": "", "subreddit": "", "center": [371.5, 1673.5], "path": [[364.5, 1671.5], [378.5, 1671.5], [378.5, 1674.5], [364.5, 1674.5]]}, -{"id": "txe35x", "submitted_by": "--Newmoon--", "name": "Evil Xisuma", "description": "A character created by YouTuber Xisumavoid, Evil Xisuma (also known as Evil X or simply EX) appears primarily on the Hermitcraft SMP. Created as an April Fools joke in 2015 (when Hermitcraft was in its 3rd season), he has survived an extremely long time, having last appeared in December 2021, in Xisuma's second-last episode in Season 8, along with a possibility of his return in the future. He is well-loved by much of the fandom, and he starred in the animation Evil's Fault by fan Th3Pooka (which later was indirectly confirmed to be canon to his storyline). Unfortunately, his face is only partially visible here.", "website": "https://hermitcraft.com/", "subreddit": "/r/HermitCraft", "center": [863.5, 633.5], "path": [[861.5, 632.5], [868.5, 632.5], [868.5, 633.5], [863.5, 634.5], [861.5, 638.5], [861.5, 632.5]]}, +{"id": "txe35x", "submitted_by": "--Newmoon--", "name": "Evil Xisuma", "description": "A character created by YouTuber Xisumavoid, Evil Xisuma (also known as Evil X or simply EX) appears primarily on the Hermitcraft Survival Multiplayer. Created as an April Fools' joke in 2015 (when Hermitcraft was in its 3rd season), he has survived an extremely long time, having last appeared in December 2021 in Xisuma's second-last episode in Season 8, along with a possibility of his return in the future. He is well-loved by much of the fandom, and he starred in the animation Evil's Fault by fan Th3Pooka (which later was indirectly confirmed to be canon to his storyline). Unfortunately, his face is only partially visible here.", "website": "https://hermitcraft.com/", "subreddit": "/r/Hermitcraft", "center": [863.5, 633.5], "path": [[861.5, 632.5], [868.5, 632.5], [868.5, 633.5], [863.5, 634.5], [861.5, 638.5], [861.5, 632.5]]}, {"id": "txe31u", "submitted_by": "bananameatnotjuicy", "name": "University of the Philippines", "description": "The University of the Philippines (UP; Filipino: Pamantasan ng Pilipinas or Unibersidad ng Pilipinas) is a state university system in the Philippines. It is the country's national university.", "website": "", "subreddit": "", "center": [401.5, 1615.5], "path": [[394.5, 1611.5], [407.5, 1611.5], [407.5, 1619.5], [394.5, 1619.5]]}, {"id": "txe2u0", "submitted_by": "uniberg", "name": "borby", "description": "absolutely revolting human, no idea why anybody watches this jackass", "website": "", "subreddit": "/r/emoney", "center": [638.5, 926.5], "path": [[624.5, 910.5], [654.5, 910.5], [653.5, 942.5], [625.5, 941.5], [623.5, 937.5], [623.5, 923.5], [623.5, 915.5], [623.5, 910.5]]}, {"id": "txe2j6", "submitted_by": "soaringturnip", "name": "The Uyghr Flag", "description": "The flag used by the Uyghurs who are in a constant struggle against the CCP Regime. The flag is a reminder for everyone that there is currently a genocide happening in Uyghur.", "website": "", "subreddit": "", "center": [977.5, 451.5], "path": [[989.5, 442.5], [989.5, 442.5], [989.5, 443.5], [989.5, 442.5], [989.5, 444.5], [989.5, 446.5], [989.5, 449.5], [989.5, 452.5], [989.5, 456.5], [989.5, 458.5], [985.5, 458.5], [982.5, 459.5], [978.5, 458.5], [973.5, 459.5], [970.5, 459.5], [967.5, 459.5], [965.5, 459.5], [964.5, 453.5], [964.5, 449.5], [965.5, 446.5], [964.5, 443.5]]}, @@ -6323,34 +5795,26 @@ {"id": "txe1vq", "submitted_by": "WitherStar123", "name": "Crookst", "description": "Top Minecraft Speedrunner, has at least 50 sub-15 times, and at least 3 sub-10 times.", "website": "https://www.youtube.com/c/Crookst", "subreddit": "", "center": [1477.5, 1468.5], "path": [[1473.5, 1464.5], [1480.5, 1464.5], [1480.5, 1471.5], [1473.5, 1471.5]]}, {"id": "txe1u6", "submitted_by": "SirOutrageous4953", "name": "A very smol turtle", "description": "Just a very smol turtle, originally created by u/SirOutrageous4953 and u/rockalterngear and later adopted by the WatchDominion banner :)", "website": "", "subreddit": "/r/verysmolturtle", "center": [1790.5, 1608.5], "path": [[1786.5, 1611.5], [1786.5, 1600.5], [1799.5, 1612.5]]}, {"id": "txe1t2", "submitted_by": "diego1marcus", "name": "AZKi logo", "description": "A logo that represents AZKi's name, a Hololive Gen 0 member. AZKi was formerly under INoNaKa Music (INNK) before April 1, 2022, where she was transferred to the main Hololive branch and INNK Music discontinued its activities", "website": "https://hololive.wiki/wiki/AZKi", "subreddit": "", "center": [1396.5, 931.5], "path": [[1392.5, 925.5], [1392.5, 930.5], [1392.5, 930.5], [1391.5, 931.5], [1390.5, 931.5], [1390.5, 932.5], [1391.5, 933.5], [1391.5, 934.5], [1392.5, 934.5], [1392.5, 935.5], [1393.5, 936.5], [1392.5, 936.5], [1393.5, 937.5], [1393.5, 938.5], [1394.5, 935.5], [1396.5, 935.5], [1399.5, 935.5], [1402.5, 935.5], [1402.5, 927.5], [1394.5, 927.5], [1393.5, 925.5]]}, -{"id": "txe1nn", "submitted_by": "Drwannabeme", "name": "The University of Chicago", "description": "Coat of arms of the University of Chicago, a private research university in Chicago, Illinois.", "website": "https://www.uchicago.edu/", "subreddit": "/r/uchicago", "center": [0.5, 0.5], "path": []}, {"id": "txe16t", "submitted_by": "Tertiary1234", "name": "808s and Heartbreak era Kanye", "description": "A small portrait of rapper Kanye West in the suit he wore for the promotion of his 2008 album 808s and Heartbreak. The red pixel represents a heart pinned to his chest. To the left of Kanye are a series of colors, just like on the cover of 808s and Heartbreak.", "website": "", "subreddit": "/r/westsubever", "center": [1773.5, 1010.5], "path": [[1768.5, 999.5], [1768.5, 1020.5], [1778.5, 1020.5], [1778.5, 999.5], [1768.5, 999.5]]}, {"id": "txe0f2", "submitted_by": "Arcatron_Rdt", "name": "XioviArt", "description": "Artist, Game Developer and Streamer", "website": "https://www.twitch.tv/xioviart", "subreddit": "", "center": [1334.5, 1345.5], "path": [[1332.5, 1343.5], [1332.5, 1346.5], [1335.5, 1346.5], [1335.5, 1343.5], [1332.5, 1343.5]]}, {"id": "txe06b", "submitted_by": "kalikars", "name": "MineCRAB!", "description": "A crab with a frog on its head, representing a private minecraft server community.", "website": "https://www.deviantart.com/guardiavoir/art/Minecrab-830301230", "subreddit": "", "center": [1591.5, 333.5], "path": [[1585.5, 331.5], [1597.5, 331.5], [1597.5, 335.5], [1584.5, 335.5], [1584.5, 331.5], [1586.5, 332.5], [1586.5, 332.5]]}, {"id": "txdzmi", "submitted_by": "WitherStar123", "name": "Cube1337x", "description": "Current Minecraft world record speedrunner.", "website": "https://www.youtube.com/channel/UChlZtNyDjC0llHz7sdlG9dg", "subreddit": "", "center": [1459.5, 1441.5], "path": [[1455.5, 1437.5], [1462.5, 1437.5], [1462.5, 1444.5], [1455.5, 1444.5]]}, {"id": "txdzlb", "submitted_by": "DiscipleOfAniki", "name": "Billy Herrington Tribute", "description": "A tribute to Billy 'Aniki' Herrington, the original Gachimuchi Pants Wrestler who became an internet sensation after his wrestling videos were uploaded to NicoNico in September 2007. Aniki is known for his appearances in numerous music video remixes as well as his kind personality and love of his fans which all combined to make him an extremely popular figure on Twitch.tv. Aniki passed away on March 2nd 2018. We will always remember him.\n", "website": "https://www.nicovideo.jp/watch/sm1175788", "subreddit": "/r/gachimuchi", "center": [693.5, 1003.5], "path": [[667.5, 956.5], [720.5, 956.5], [720.5, 1050.5], [666.5, 1050.5]]}, -{"id": "txdz2m", "submitted_by": "fyreonix", "name": "\u03bc-Ziq", "description": "The symbol of IDM artist Mike Paradinas under alias \u03bc-Ziq, and his label Planet Mu.", "website": "", "subreddit": "", "center": [1329.5, 506.5], "path": [[1328.5, 504.5], [1330.5, 504.5], [1330.5, 507.5], [1328.5, 507.5]]}, {"id": "txdyu2", "submitted_by": "Soulblader43", "name": "SSQ", "description": "WE WON!!!!! SUPERSWEATSQUAD \n\n", "website": "https://www.youtube.com/channel/UCGzE29okFjkyReq2RE6I9-g", "subreddit": "", "center": [883.5, 1370.5], "path": [[883.5, 1370.5], [876.5, 1365.5], [889.5, 1374.5], [876.5, 1374.5], [876.5, 1366.5], [889.5, 1365.5], [889.5, 1374.5], [882.5, 1374.5]]}, -{"id": "txdyms", "submitted_by": "wygaco", "name": "Location of the US Flag", "description": "The US flag was originally located directly under Turkey's flag in the upper left of the canvas, where it was a frequent target for griefing. After the flag was completely destroyed for the 4th time, the Americans relocated their flag to its final location at (1776, 1776). These coordinates are a reference to the year 1776 CE, when the USA declared its independence from Britain.", "website": "", "subreddit": "/r/AmericanFlaginPlace", "center": [1886.5, 1809.5], "path": [[1774.5, 1751.5], [1999.5, 1751.5], [1999.5, 1867.5], [1774.5, 1868.5], [1774.5, 1751.5]]}, {"id": "txdyhy", "submitted_by": "Yubuqq", "name": "The Boys Corner", "description": "Small group of 8 people that was overtaken a few times by the Spanish, but kept fighting.", "website": "", "subreddit": "", "center": [1705.5, 294.5], "path": [[1698.5, 290.5], [1698.5, 297.5], [1705.5, 301.5], [1712.5, 297.5], [1712.5, 290.5], [1705.5, 288.5], [1700.5, 289.5]]}, {"id": "txdygb", "submitted_by": "oarca", "name": "Kennesaw State University/KSU Electronic Vehicle Team", "description": "Kennesaw State University's Electronic Vehicle Team logo, and a show of support for Scrappy, the school mascot.", "website": "https://ksuevt.com/", "subreddit": "", "center": [541.5, 404.5], "path": [[509.5, 399.5], [572.5, 399.5], [572.5, 408.5], [509.5, 408.5]]}, {"id": "txdxy3", "submitted_by": "Tokgyalu", "name": "Walrusz (Hungarian Youtuber)", "description": "Walrusz is a hungarian youtuber who mainly makes minecraft videos.", "website": "https://www.youtube.com/user/WalruszMester/videos", "subreddit": "", "center": [1296.5, 274.5], "path": [[1298.5, 274.5], [1296.5, 275.5], [1291.5, 270.5], [1300.5, 270.5], [1300.5, 279.5], [1292.5, 279.5], [1291.5, 279.5], [1291.5, 271.5], [1291.5, 271.5], [1291.5, 270.5], [1291.5, 270.5], [1300.5, 270.5], [1300.5, 278.5], [1300.5, 277.5], [1297.5, 273.5], [1294.5, 274.5], [1293.5, 273.5], [1292.5, 271.5], [1292.5, 270.5]]}, -{"id": "txdxwt", "submitted_by": "ambiguouscyborg", "name": "Bebe", "description": "Nanahira is a Japanese doujin singer/vocalist. Depicted here is her pet/mascot, Bebe the rabbit.", "website": "", "subreddit": "/r/Nanahira", "center": [1277.5, 63.5], "path": [[1273.5, 68.5], [1270.5, 65.5], [1272.5, 60.5], [1275.5, 58.5], [1281.5, 58.5], [1281.5, 63.5], [1283.5, 68.5]]}, -{"id": "txdxcl", "submitted_by": "MrHeliose", "name": "The french-spanish battle", "description": "In the final two days of the event, a battle took place between the French and Spanish Twitch community.\n\nIbai, a Spanish streamer accuses the French of taking up too much space on the map and wanted to reclaim 60% of that space. After a fight won by France and unsuccessful negotiations, Ibai and other Spanish streamers accuse the French community of using bots. Kameto, the general of the French army refutes the accusation: He was using a canvas that helped people to place blocks, like the one used by the Osu! community. He also asserted that the French were winning through better organization. After this episode, Spanish streamers like Ibai and Rufus appealed to other communities to join the war against France. (US streamers and the BTS army, known for being very active on the internet). They also asked their community to use a bot (a real one this time) that reconstructed a BTS logo above the French flag.\n\nAfter a long war, the event ended with a complete French flag with destroyed art, a partial BTS logo and a complete Arc de Triomphe at the bottom. The French Flag was the first zone to be destroyed at the end of the event.\n\n\nAbout bots: The Spaniards definitely used bots (link to the website) but did the French also use them?\n\n\n3 main arguments support the use of bot:\n\n\n- The French community is smaller than the spanish one, it seems odd that they can win.\n\n- Some people claim that a french streamer told: we have 17k bot\n\n- The French flag was the first part of r/place to turn white due to bots activity.\n\n\nActually, the French streamer said: we have 17k upvote, the rumor started on a bad translation. The french flag turn white first due to a huge activity in this area.\n\nThe French people claimed to have won that war even with fewer people through better organization. The French community is famous for having many events involving streamers and their community such as the Zevent.\n\nIn conclusion, there is no complete proof that France was using bots (at least the streamers didn't ask for it). But some suspicions remain because the French were outnumbered and were still able to defend themselves.", "website": "https://www.reddit.com/r/place/comments/twdgr0/spain_streamer_ibai_botting_rplace_with_scripts/", "subreddit": "", "center": [123.5, 1703.5], "path": [[2.5, 1436.5], [244.5, 1437.5], [248.5, 1967.5], [0.5, 1967.5]]}, +{"id": "txdxwt", "submitted_by": "ambiguouscyborg", "name": "Bebe (\u3079\u3079)", "description": "Nanahira (\u306a\u306a\u3072\u3089) is a Japanese doujin singer/vocalist, who is known for her cute, high-pitched 'loli' voice. Many of her songs are of the denpa genre (\u96fb\u6ce2\u30bd\u30f3\u30b0), which can be described as 'including intentionally off-key vocals, nonsensical lyrics and an over-the-top tune'. Depicted here on the /r/Place canvas is her pet/mascot rabbit, Bebe (\u3079\u3079). The art was orchestrated and built by members of the /r/Denpa community.", "website": "https://nanahira.jp/", "subreddit": "/r/Nanahira", "center": [1277.5, 63.5], "path": [[1273.5, 68.5], [1270.5, 65.5], [1272.5, 60.5], [1275.5, 58.5], [1281.5, 58.5], [1281.5, 63.5], [1283.5, 68.5]]}, {"id": "txdxcb", "submitted_by": "ConfusedBub", "name": "Bo Burnham", "description": "An American comedian, musician, actor, and director.\n\nThis space contains references to his comedy special INSIDE, lyrics from some of his songs like Don't Panic from 'Comedy' and Tiny Pumpkins from 'White Woman's Instagram', and the Grammy Award that he won with the song 'All Eyes on Me'.", "website": "http://www.boburnham.com/", "subreddit": "/r/boburnham", "center": [1346.5, 1291.5], "path": [[1332.5, 1282.5], [1360.5, 1282.5], [1360.5, 1299.5], [1332.5, 1299.5]]}, {"id": "txdx9g", "submitted_by": "needtofindpasta", "name": "UVic Logo", "description": "The logo of the University of Victoria, located in Victoria, BC, Canada.", "website": "", "subreddit": "/r/uvic", "center": [667.5, 1444.5], "path": [[660.5, 1430.5], [674.5, 1430.5], [674.5, 1452.5], [673.5, 1456.5], [668.5, 1459.5], [664.5, 1458.5], [661.5, 1455.5], [660.5, 1451.5], [660.5, 1438.5]]}, -{"id": "txdx0v", "submitted_by": "CinnamonClwn", "name": "NagNose", "description": "a man who malds daily on twitch, his chat is the real content", "website": "https://nagzz21.com/", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "txdwq0", "submitted_by": "Slipfix", "name": "Numberphile Logo", "description": "Logo of the YouTube channel \"Numberphile\" created by Brady Haran.", "website": "https://www.numberphile.com/", "subreddit": "/r/numberphile", "center": [85.5, 805.5], "path": [[81.5, 802.5], [88.5, 802.5], [88.5, 807.5], [81.5, 807.5]]}, -{"id": "txdw3f", "submitted_by": "CmdAItEsc", "name": "Furry Femboy Fox", "description": "The original artwork is one of a handful of furry drawings that have been spread far and wide around the internet. The artwork, created by Fleurfurr, has been used for many memes and is easily recognizable to most in the Furry Fandom.", "website": "", "subreddit": "/r/furry_irl", "center": [1043.5, 1798.5], "path": [[1029.5, 1779.5], [1054.5, 1779.5], [1054.5, 1790.5], [1056.5, 1790.5], [1056.5, 1813.5], [1057.5, 1813.5], [1057.5, 1817.5], [1055.5, 1818.5], [1053.5, 1818.5], [1053.5, 1819.5], [1052.5, 1820.5], [1048.5, 1820.5], [1048.5, 1821.5], [1049.5, 1822.5], [1047.5, 1823.5], [1046.5, 1821.5], [1045.5, 1820.5], [1044.5, 1820.5], [1043.5, 1819.5], [1043.5, 1818.5], [1043.5, 1817.5], [1042.5, 1816.5], [1042.5, 1815.5], [1041.5, 1814.5], [1040.5, 1813.5], [1039.5, 1812.5], [1038.5, 1812.5], [1037.5, 1812.5], [1036.5, 1812.5], [1034.5, 1812.5], [1034.5, 1811.5], [1033.5, 1811.5], [1029.5, 1814.5], [1029.5, 1779.5]]}, -{"id": "txdw17", "submitted_by": "BeyondBlitz", "name": "Raising the flag on Iwo Jima", "description": "This artwork is a recreation of a photograph depicting United States Marines raising the US flag on Mount Suribachi of the island of Iwo Jima.", "website": "", "subreddit": "", "center": [1949.5, 1856.5], "path": [[1931.5, 1838.5], [1946.5, 1840.5], [1954.5, 1848.5], [1947.5, 1852.5], [1961.5, 1853.5], [1963.5, 1868.5], [1937.5, 1869.5], [1943.5, 1850.5], [1931.5, 1838.5]]}, -{"id": "txdvzx", "submitted_by": "Forgotten_Poro", "name": "Gabumon", "description": "Gabumon is a digimon, he debuted in the Digimon Adventure anime as Yamato's/Matt's partner digimon.", "website": "", "subreddit": "/r/digimon", "center": [1332.5, 117.5], "path": [[1321.5, 103.5], [1322.5, 104.5], [1344.5, 107.5], [1345.5, 117.5], [1348.5, 119.5], [1348.5, 127.5], [1332.5, 126.5], [1332.5, 131.5], [1328.5, 131.5], [1327.5, 130.5], [1321.5, 129.5], [1321.5, 128.5], [1320.5, 128.5], [1320.5, 114.5], [1320.5, 113.5]]}, +{"id": "txdw3f", "submitted_by": "CmdAItEsc", "name": "Furry Femboy Fox (Bean)", "description": "The original artwork is one of a handful of furry drawings that have been spread far and wide around the internet. The artwork, created by Fleurfurr, has been used for many memes and is easily recognizable to most in the Furry Fandom.", "website": "", "subreddit": "/r/furry_irl", "center": [1043.5, 1798.5], "path": [[1029.5, 1779.5], [1054.5, 1779.5], [1054.5, 1790.5], [1056.5, 1790.5], [1056.5, 1813.5], [1057.5, 1813.5], [1057.5, 1817.5], [1055.5, 1818.5], [1053.5, 1818.5], [1053.5, 1819.5], [1052.5, 1820.5], [1048.5, 1820.5], [1048.5, 1821.5], [1049.5, 1822.5], [1047.5, 1823.5], [1046.5, 1821.5], [1045.5, 1820.5], [1044.5, 1820.5], [1043.5, 1819.5], [1043.5, 1818.5], [1043.5, 1817.5], [1042.5, 1816.5], [1042.5, 1815.5], [1041.5, 1814.5], [1040.5, 1813.5], [1039.5, 1812.5], [1038.5, 1812.5], [1037.5, 1812.5], [1036.5, 1812.5], [1034.5, 1812.5], [1034.5, 1811.5], [1033.5, 1811.5], [1029.5, 1814.5], [1029.5, 1779.5]]}, {"id": "txdvq0", "submitted_by": "WitherStar123", "name": "Brentilda", "description": "Top Minecraft speedrunner & former world record holder. First ever to achieve an in-game time below 10 minutes.", "website": "https://www.youtube.com/channel/UCvK_2WEehQkKs4dsVIp0TJA", "subreddit": "", "center": [1486.5, 1459.5], "path": [[1482.5, 1455.5], [1489.5, 1455.5], [1489.5, 1462.5], [1482.5, 1462.5]]}, -{"id": "txduce", "submitted_by": "PixelCrown", "name": "Moss Online", "description": "Small discord community founded by a friend group from Toronto", "website": "moss.in", "subreddit": "", "center": [577.5, 1412.5], "path": [[567.5, 1408.5], [587.5, 1408.5], [587.5, 1416.5], [567.5, 1416.5]]}, +{"id": "txduce", "submitted_by": "PixelCrown", "name": "Moss Online", "description": "Small discord community founded by a friend group from Toronto", "website": "https://moss.in", "subreddit": "", "center": [577.5, 1412.5], "path": [[567.5, 1408.5], [587.5, 1408.5], [587.5, 1416.5], [567.5, 1416.5]]}, {"id": "txdu5u", "submitted_by": "Lance4Dragons", "name": "Tiger - Thaiboy Digital", "description": "This is the symbol prominently featured on Thaiboy Digital's first mixtape, Tiger (often referred to as \u0e2a). Many drain gang fans refer to this as the best produced drain gang album, as it has great beats from producer Whitearmor while also flourishing in the heavily and clumsily autotuned vocals of Thaiboy.", "website": "https://rateyourmusic.com/release/mixtape/thaiboy-digital/%E0%B8%AA-tiger/", "subreddit": "/r/sadboys", "center": [1619.5, 416.5], "path": [[1615.5, 412.5], [1623.5, 412.5], [1623.5, 420.5], [1615.5, 420.5]]}, {"id": "txdtqg", "submitted_by": "Terrible_Draw_1248", "name": "sonic the hedgehog", "description": "a little draw of sonic the hedgehog", "website": "", "subreddit": "", "center": [1705.5, 565.5], "path": [[1700.5, 569.5], [1709.5, 569.5], [1709.5, 560.5], [1700.5, 560.5]]}, -{"id": "txdtis", "submitted_by": "MilesMakes", "name": "Tails the 2nd", "description": "The second location of Tails, covered by a cricket memorial.", "website": "", "subreddit": "/r/milesprower", "center": [0.5, 0.5], "path": []}, {"id": "txdtfm", "submitted_by": "Flicker-Ikary", "name": "The Dragon Slayer", "description": "Representation under construction of the legendary Dragon Slayer. Created and protected by a brave Redditor :^ (u/Flicker-Ikary)", "website": "", "subreddit": "", "center": [96.5, 1231.5], "path": [[99.5, 1226.5], [92.5, 1226.5], [92.5, 1235.5], [99.5, 1235.5]]}, -{"id": "txdt4p", "submitted_by": "SheithKirogane", "name": "ENA", "description": "The main character of a series of short films on youtube by Joel Guerra.", "website": "", "subreddit": "/r/ENA", "center": [1137.5, 400.5], "path": [[1132.5, 389.5], [1136.5, 386.5], [1140.5, 386.5], [1145.5, 391.5], [1145.5, 397.5], [1140.5, 401.5], [1144.5, 405.5], [1142.5, 413.5], [1135.5, 413.5], [1126.5, 404.5], [1127.5, 402.5], [1130.5, 402.5], [1131.5, 399.5], [1132.5, 395.5]]}, +{"id": "txdt4p", "submitted_by": "SheithKirogane", "name": "\u018eNA", "description": "The main character of a series of short films on YouTube by Joel Guerra.", "website": "https://joelgc.com/", "subreddit": "/r/ENA", "center": [1137.5, 400.5], "path": [[1132.5, 389.5], [1136.5, 386.5], [1140.5, 386.5], [1145.5, 391.5], [1145.5, 397.5], [1140.5, 401.5], [1144.5, 405.5], [1142.5, 413.5], [1135.5, 413.5], [1126.5, 404.5], [1127.5, 402.5], [1130.5, 402.5], [1131.5, 399.5], [1132.5, 395.5]]}, {"id": "txdsyp", "submitted_by": "cgkghj", "name": "AZKi", "description": "AZKi, a Vsinger previously under hololive production's label InoNaka Music. She transferred to the main hololive branch on 1 April 2022", "website": "https://www.youtube.com/channel/UC0TXe_LYZ4scaW2XMyi5_kw/about", "subreddit": "", "center": [1397.5, 932.5], "path": [[1391.5, 927.5], [1402.5, 927.5], [1402.5, 936.5], [1391.5, 936.5]]}, {"id": "txdsec", "submitted_by": "Broke-Investor", "name": "Manchester United", "description": "The club crest of Manchester United Football Club. The three trophies on the bottom represents the trophies Man Utd won during the 1998-99 treble winning season (The FA Cup, The Premier League, and The Champions League). The green and gold scarf on the back of the crest represents the old club colours back when it was known as Newton Heath, it is mostly used todays in protest against the Glazers' ownership of the club", "website": "", "subreddit": "/r/reddevils", "center": [1640.5, 663.5], "path": [[1619.5, 637.5], [1619.5, 689.5], [1661.5, 689.5], [1660.5, 637.5]]}, {"id": "txdsdn", "submitted_by": "bigsantino1", "name": "ACDS", "description": "The logo of a small deltarune theory server ran by Andrew Cunningham.", "website": "https://www.youtube.com/channel/UCYNu9Y31EV77TD8qTX_BIsA", "subreddit": "/r/Deltarune", "center": [1790.5, 1688.5], "path": [[1790.5, 1693.5], [1794.5, 1689.5], [1794.5, 1686.5], [1793.5, 1685.5], [1787.5, 1685.5], [1786.5, 1686.5], [1787.5, 1690.5], [1790.5, 1693.5]]}, @@ -6365,7 +5829,6 @@ {"id": "txdq5s", "submitted_by": "Shayan_04", "name": "CUGO", "description": "A friend group formed in august of 2020, built on a foundation of degeneracy, video games, instigation and the concept of loud=funny. The term CUGO stands for Can U Get On. Shoutouts to Aryan, Brian, Nate, Illia, Shayan, Jon, Gary, David, Ishan, Ryan, Lawrence, Shrigga, Keli, Steph and Min.", "website": "", "subreddit": "", "center": [1379.5, 482.5], "path": [[1374.5, 473.5], [1384.5, 473.5], [1384.5, 491.5], [1374.5, 491.5]]}, {"id": "txdpg3", "submitted_by": "moonshadow264", "name": "Kirby", "description": "Poyo!", "website": "", "subreddit": "", "center": [357.5, 1604.5], "path": [[352.5, 1600.5], [359.5, 1600.5], [359.5, 1601.5], [361.5, 1601.5], [361.5, 1602.5], [362.5, 1602.5], [362.5, 1605.5], [361.5, 1605.5], [361.5, 1606.5], [360.5, 1606.5], [360.5, 1608.5], [352.5, 1608.5], [352.5, 1600.5]]}, {"id": "txdpd7", "submitted_by": "Terrible_Draw_1248", "name": "Heart", "description": "A little purple heart", "website": "", "subreddit": "", "center": [1160.5, 1846.5], "path": [[1160.5, 1851.5], [1161.5, 1851.5], [1161.5, 1850.5], [1162.5, 1850.5], [1162.5, 1849.5], [1163.5, 1849.5], [1163.5, 1848.5], [1164.5, 1848.5], [1164.5, 1844.5], [1163.5, 1844.5], [1163.5, 1843.5], [1160.5, 1843.5], [1157.5, 1843.5], [1157.5, 1844.5], [1156.5, 1844.5], [1156.5, 1848.5], [1157.5, 1848.5], [1157.5, 1849.5], [1158.5, 1849.5], [1158.5, 1850.5], [1159.5, 1850.5]]}, -{"id": "txdpbs", "submitted_by": "NoImplement6899", "name": "Colombian Map", "description": "A Representation of Colombia's Map", "website": "https://www.colombiaenmapas.gov.co/", "subreddit": "/r/Colombia", "center": [0.5, 0.5], "path": []}, {"id": "txdo7w", "submitted_by": "bonsley6", "name": "Figma logo", "description": "Logo of Figma, a vector graphics editor and prototyping tool which is primarily web-based, with additional offline features enabled by desktop applications for macOS and Windows. Made by the Alt:V group", "website": "https://www.figma.com/", "subreddit": "", "center": [531.5, 1415.5], "path": [[526.5, 1409.5], [526.5, 1420.5], [536.5, 1420.5], [536.5, 1409.5], [536.5, 1409.5], [531.5, 1409.5], [526.5, 1409.5]]}, {"id": "txdo5v", "submitted_by": "Good_Round", "name": "Retired Numbers of the 3 Greatest Players of The Canucks", "description": "Top: 16 Trevor Linden \nMiddle: 22 Daniel Sedin\nBottom: 33 Henrik Sedin", "website": "https://en.wikipedia.org/wiki/Vancouver_Canucks?wprov=sfti1", "subreddit": "/r/canucks", "center": [909.5, 487.5], "path": [[904.5, 512.5], [911.5, 511.5], [917.5, 471.5], [904.5, 463.5]]}, {"id": "txdo0e", "submitted_by": "Sneckvil", "name": "BitCraft", "description": "BitCraft is a sandbox MMORPG which encourages many different play styles ranging from farming, hunting, and crafting to city-building and social strategy, rather than emphasizing combat alone. The game incorporates elements of sub-genres such as survival games, sandbox games, role-playing games, city builders, and strategy games.", "website": "https://bitcraftonline.com/", "subreddit": "/r/BitCraftOnline", "center": [1505.5, 171.5], "path": [[1494.5, 163.5], [1493.5, 178.5], [1517.5, 179.5], [1516.5, 163.5]]}, @@ -6375,13 +5838,11 @@ {"id": "txdncv", "submitted_by": "Terrible_Draw_1248", "name": "Among us", "description": "2 among us looking each other", "website": "", "subreddit": "", "center": [1114.5, 1222.5], "path": [[1109.5, 1225.5], [1119.5, 1225.5], [1119.5, 1219.5], [1109.5, 1219.5]]}, {"id": "txdnct", "submitted_by": "WitherStar123", "name": "Matthew Bolan", "description": "Important figure in the Minecraft speedrunning community. Discovered how to find strongholds by looking at nether fossils; and diamonds by looking at clay/gravel patches", "website": "https://www.youtube.com/channel/UCB4XuRBJZBOpnoJSWekMohw", "subreddit": "", "center": [1495.5, 1468.5], "path": [[1491.5, 1464.5], [1498.5, 1464.5], [1498.5, 1471.5], [1491.5, 1471.5]]}, {"id": "txdn9a", "submitted_by": "Rubbymubby124", "name": "Manchester United", "description": "Manchester United is a popular soccer club in the Premier league. It is one of the most popular clubs in the world having fans worldwide. The club was founded in 1878 and its current stadium is Old Trafford.", "website": "https://www.manutd.com/", "subreddit": "/r/RedDevils", "center": [1640.5, 665.5], "path": [[1663.5, 636.5], [1662.5, 637.5], [1617.5, 638.5], [1616.5, 692.5], [1664.5, 691.5]]}, -{"id": "txdn0e", "submitted_by": "elweons", "name": "Alex", "description": "he killed faker, its consider one of the best League of legends players", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "txdmze", "submitted_by": "conspiracie", "name": "RuPaul's Drag Race", "description": "Made primarily by Spoiled Drag Race users. References several \"tea-spills\", i.e. spoilers that came out about the current season of Drag Race (14). PLSR= Deja Skye's lip sync for her pleasure. CHOC= chocolate bar elimination twist. PORK = PorkChop elimination lounge (from S13). On the right are pixel arts of the top 5 S14 contestants plus Maddy Morphosis, another S14 contestant and active Redditor who helped make this art. Top is a tribute to ChiChi DeVayne, a S8 contestant who sadly passed away in 2020.", "website": "", "subreddit": "/r/SpoiledDragRace", "center": [1219.5, 417.5], "path": [[1246.5, 398.5], [1246.5, 434.5], [1191.5, 434.5], [1191.5, 402.5], [1222.5, 402.5], [1222.5, 398.5], [1246.5, 398.5]]}, {"id": "txdmue", "submitted_by": "Terrible_Draw_1248", "name": "Peru flag", "description": "", "website": "", "subreddit": "", "center": [1124.5, 1345.5], "path": [[1116.5, 1350.5], [1132.5, 1350.5], [1132.5, 1339.5], [1116.5, 1339.5]]}, {"id": "txdmsv", "submitted_by": "Terrible_Draw_1248", "name": "Mexico flag", "description": "", "website": "", "subreddit": "", "center": [1124.5, 1355.5], "path": [[1116.5, 1360.5], [1132.5, 1360.5], [1132.5, 1350.5], [1116.5, 1350.5]]}, -{"id": "txeahn", "submitted_by": "Braeburner", "name": "Bald Eagle", "description": "The Bald Eagle (Haliaeetus leucocephalus) is the national bird and symbol of the USA. An icon of power and freedom, this bird inhabits the forests of North America and eats mostly fish. Until the 1990s, Bald Eagles were endangered due to hunting and pesticides; the population recovered when regulations were implemented.", "website": "", "subreddit": "", "center": [1877.5, 1784.5], "path": [[1879.5, 1796.5], [1907.5, 1801.5], [1912.5, 1791.5], [1901.5, 1791.5], [1892.5, 1785.5], [1900.5, 1781.5], [1888.5, 1776.5], [1881.5, 1778.5], [1870.5, 1768.5], [1866.5, 1753.5], [1858.5, 1759.5], [1855.5, 1775.5], [1868.5, 1789.5], [1858.5, 1795.5], [1864.5, 1805.5], [1877.5, 1798.5]]}, -{"id": "txeac4", "submitted_by": "okisiroki", "name": "Light Fury", "description": "Dedicated to the white dragon from How to Train Your Dragon", "website": "", "subreddit": "/r/httyd", "center": [1661.5, 776.5], "path": [[1664.5, 784.5], [1664.5, 767.5], [1657.5, 767.5], [1657.5, 784.5], [1664.5, 784.5]]}, -{"id": "txea7e", "submitted_by": "semperffi", "name": "Reborn Live", "description": "Reborn is a Spanish streamer on twitch. Here is his channel logo, his signature, his Minecraft skin, his cat (named Fenix) and a very important date to his community: April 19th, the day of his 1st stream on Twitch.", "website": "twitch.tv/Reborn_Live", "subreddit": "", "center": [1850.5, 995.5], "path": [[1830.5, 951.5], [1830.5, 951.5], [1830.5, 949.5], [1869.5, 950.5], [1867.5, 1044.5], [1832.5, 1041.5]]}, +{"id": "txeahn", "submitted_by": "Braeburner", "name": "Bald eagle", "description": "The bald eagle (Haliaeetus leucocephalus) is the national bird and symbol of the U.S. An icon of power and freedom, this bird inhabits the forests of North America and eats mostly fish. Until the 1990s, bald eagles were endangered due to hunting and pesticides; the population recovered when regulations were implemented.", "website": "https://en.wikipedia.org/wiki/Bald_eagle", "subreddit": "/r/AmericanFlagInPlace", "center": [1877.5, 1784.5], "path": [[1879.5, 1796.5], [1907.5, 1801.5], [1912.5, 1791.5], [1901.5, 1791.5], [1892.5, 1785.5], [1900.5, 1781.5], [1888.5, 1776.5], [1881.5, 1778.5], [1870.5, 1768.5], [1866.5, 1753.5], [1858.5, 1759.5], [1855.5, 1775.5], [1868.5, 1789.5], [1858.5, 1795.5], [1864.5, 1805.5], [1877.5, 1798.5]]}, +{"id": "txea7e", "submitted_by": "semperffi", "name": "Reborn Live", "description": "Reborn is a Spanish streamer on twitch. Here is his channel logo, his signature, his Minecraft skin, his cat (named Fenix) and a very important date to his community: April 19th, the day of his 1st stream on Twitch.", "website": "https://twitch.tv/Reborn_Live", "subreddit": "", "center": [1850.5, 995.5], "path": [[1830.5, 951.5], [1830.5, 951.5], [1830.5, 949.5], [1869.5, 950.5], [1867.5, 1044.5], [1832.5, 1041.5]]}, {"id": "txea4r", "submitted_by": "RedberryFields", "name": "AEIOU", "description": "The letters 'AEIOU' appear in front of an Austrian flag in reference to an achievement of the same name in the grand strategy game Europa Universalis 4. To obtain the achievement, one must play the nation of Austria and complete its mission tree. This is a relatively mid-difficulty achievement for an extremely complicated, yet addicting, alternate history simulation game.", "website": "", "subreddit": "/r/eu4", "center": [255.5, 1874.5], "path": [[251.5, 1861.5], [259.5, 1861.5], [259.5, 1887.5], [251.5, 1887.5], [251.5, 1861.5]]}, {"id": "txe8ji", "submitted_by": "meta-rdt", "name": "Warfname Logo", "description": "The logo of the Warfname Discord Server. A small community based in Warrenton, Virginia.", "website": "https://warfnamewiki.neocities.org/directory.html", "subreddit": "/r/Warfname", "center": [1193.5, 245.5], "path": [[1197.5, 249.5], [1197.5, 240.5], [1188.5, 240.5], [1188.5, 249.5]]}, {"id": "txe8ed", "submitted_by": "Nicobloom", "name": "Shigure Ui", "description": "Shigure Ui (\u3057\u3050\u308c\u3046\u3044) is a female Japanese Virtual YouTuber and illustrator. She also did the character designs for the light novel series OsaMake and anime series WIXOSS DIVA(A)LIVE.", "website": "https://virtualyoutuber.fandom.com/wiki/Shigure_Ui", "subreddit": "", "center": [1460.5, 1087.5], "path": [[1455.5, 1084.5], [1465.5, 1084.5], [1465.5, 1090.5], [1455.5, 1090.5]]}, @@ -6390,25 +5851,20 @@ {"id": "txeueb", "submitted_by": "averagetoxicgamer", "name": "Shoebill", "description": "Balaeniceps rex, also known as the shoebill or shoebill stork.", "website": "", "subreddit": "/r/ShoebillStorks", "center": [1732.5, 1391.5], "path": [[1727.5, 1385.5], [1727.5, 1385.5], [1727.5, 1395.5], [1740.5, 1395.5], [1734.5, 1385.5], [1727.5, 1385.5]]}, {"id": "txeu22", "submitted_by": "Sukunaa", "name": "RoSUS", "description": "A hidden Among Us Crewmate in the middle of the rose. No one knows who started it, but they're a hero.", "website": "", "subreddit": "/r/Philippines", "center": [352.5, 681.5], "path": [[349.5, 680.5], [351.5, 678.5], [354.5, 678.5], [354.5, 682.5], [354.5, 683.5], [352.5, 683.5], [351.5, 683.5], [350.5, 682.5], [349.5, 681.5]]}, {"id": "txesep", "submitted_by": "wavycloudd", "name": "Mote Con Huesillo", "description": "The mote con huesillos is a traditional Chilean drink, it is made up of a mixture of caramelized peach juice, with wheat mote and dehydrated peaches, called huesillos.", "website": "", "subreddit": "", "center": [277.5, 496.5], "path": [[271.5, 492.5], [271.5, 495.5], [272.5, 495.5], [272.5, 503.5], [273.5, 503.5], [274.5, 503.5], [274.5, 504.5], [276.5, 504.5], [278.5, 504.5], [278.5, 503.5], [279.5, 503.5], [280.5, 503.5], [280.5, 502.5], [281.5, 502.5], [281.5, 501.5], [281.5, 495.5], [282.5, 495.5], [282.5, 492.5], [277.5, 492.5], [277.5, 490.5], [278.5, 490.5], [278.5, 489.5], [279.5, 489.5], [280.5, 489.5], [280.5, 487.5], [275.5, 487.5], [275.5, 492.5], [271.5, 492.5]]}, -{"id": "txes2g", "submitted_by": "Conro101", "name": "Victorville Film Archive", "description": "The logo for the Victorville Film Archive, run by film buff Gregg Turkington and featured on On Cinema at the Cinema.", "website": "https://vfa.expert", "subreddit": "/r/OnCinemaAtTheCinema", "center": [0.5, 0.5], "path": []}, {"id": "txerb4", "submitted_by": "M_Rosencrantz", "name": "SAQ", "description": "The SAQ logo. The SAQ is a provincial Crown corporation and monopoly in Quebec responsible for the trade of alcoholic beverages within the province.", "website": "https://www.saq.com/en/", "subreddit": "/r/quebec", "center": [1078.5, 1005.5], "path": [[1073.5, 999.5], [1083.5, 999.5], [1083.5, 1011.5], [1073.5, 1011.5], [1073.5, 999.5]]}, {"id": "txer9t", "submitted_by": "ININHAHALELE", "name": "Oozora Subaru", "description": "Oozora Subaru (\u5927\u7a7a\u30b9\u30d0\u30eb), is a female Japanese Virtual Youtuber associated with the Idol Vtuber group, Hololive. Debuting as part of its second generation Vtubers alongside Minato Aqua, Murasaki Shion, Nakira Ayame, and Yuzuki Choco. She is known for her extroverted and tomboyish personality. She is also widely known as the Duck of the Hololive.", "website": "https://hololive.hololivepro.com/en/talents?gp=gen-2", "subreddit": "/r/hololive", "center": [1392.5, 976.5], "path": [[1396.5, 977.5], [1391.5, 971.5], [1395.5, 971.5], [1389.5, 973.5], [1389.5, 978.5], [1390.5, 979.5], [1396.5, 979.5], [1397.5, 976.5], [1396.5, 975.5]]}, {"id": "txeqvm", "submitted_by": "repostrobert", "name": "SuperM - Jopping", "description": "Title of K-Pop boy group SuperM's song titled \"Jopping\".", "website": "", "subreddit": "/r/superm", "center": [1406.5, 565.5], "path": [[1391.5, 562.5], [1421.5, 562.5], [1421.5, 568.5], [1391.5, 568.5]]}, -{"id": "txeq6m", "submitted_by": "EdEmLolEm", "name": "Indian Flag #2", "description": "This in the second Indian Flag on the canvas with India's National Animal the Magnificent Tiger,The India Gate, India's National Flower Lotus, A Namaste symbol, The Himalayas and an Tibet Flag with the Word Free Tibet.", "website": "", "subreddit": "/r/indiaplace", "center": [0.5, 0.5], "path": []}, {"id": "txepyj", "submitted_by": "kawaiihambrgr", "name": "Sakura Miko", "description": "Sakura Miko is a female Japanese Virtual YouTuber and a member of hololive generation 0", "website": "https://www.youtube.com/channel/UC-hM6YJuNYVAmUWxeIr9FeA", "subreddit": "/r/hololive", "center": [1371.5, 984.5], "path": [[1367.5, 979.5], [1367.5, 990.5], [1369.5, 990.5], [1369.5, 989.5], [1373.5, 989.5], [1373.5, 990.5], [1375.5, 990.5], [1375.5, 980.5], [1377.5, 980.5], [1377.5, 982.5], [1377.5, 980.5], [1378.5, 980.5], [1378.5, 979.5], [1377.5, 979.5], [1377.5, 977.5], [1376.5, 978.5], [1375.5, 979.5], [1367.5, 979.5], [1371.5, 982.5], [1369.5, 981.5], [1369.5, 981.5], [1369.5, 981.5]]}, {"id": "txepxc", "submitted_by": "edj99", "name": "CXXXVII", "description": "A reference to the fact that the podcast Hello Internet has been on a hiatus since episode 136. The roman numeral 137 represents the hope that the podcast will return some day.", "website": "", "subreddit": "", "center": [70.5, 828.5], "path": [[58.5, 826.5], [81.5, 826.5], [81.5, 830.5], [58.5, 830.5], [58.5, 826.5]]}, {"id": "txepp9", "submitted_by": "Yatsugami", "name": "Puzzle & Dragons", "description": "Tamadra from Puzzle & Dragons, used to unlock awoken skills on the players' monsters. +297 refers to the maximum Plus Points a monster can have, used to enhance their in-game stats.", "website": "", "subreddit": "/r/PuzzleAndDragons", "center": [1584.5, 1303.5], "path": [[1577.5, 1290.5], [1588.5, 1290.5], [1588.5, 1300.5], [1581.5, 1300.5], [1581.5, 1311.5], [1599.5, 1311.5], [1599.5, 1315.5], [1577.5, 1315.5], [1577.5, 1290.5]]}, {"id": "txeph9", "submitted_by": "Top_Maintenance2538", "name": "Colombian Coffee (Caf\u00e9 Colombiano)", "description": "Colombian Coffee is the best in the world. Thanks to Colombia's production process and natural conditions. Its altitude, latitude, and temperature are ideal for mild coffee cultivation.", "website": "https://es.wikipedia.org/wiki/Caf\u00e9_de_Colombia", "subreddit": "/r/Colombia", "center": [96.5, 1321.5], "path": [[72.5, 1305.5], [69.5, 1342.5], [69.5, 1305.5], [117.5, 1305.5], [118.5, 1342.5], [69.5, 1342.5], [69.5, 1305.5], [118.5, 1305.5], [118.5, 1342.5]]}, -{"id": "txeoph", "submitted_by": "semperffi", "name": "Reborn Live", "description": "Reborn is a Spanish streamer on twitch. Here is his channel logo, his signature, his Minecraft skin, his cat (named Fenix) and a very important date to his community: April 19th, the day of his 1st stream on Twitch.", "website": "twitch.tv/Reborn_Live", "subreddit": "", "center": [1849.5, 997.5], "path": [[1829.5, 950.5], [1832.5, 949.5], [1868.5, 950.5], [1869.5, 1045.5], [1831.5, 1043.5]]}, +{"id": "txeoph", "submitted_by": "semperffi", "name": "Reborn Live", "description": "Reborn is a Spanish streamer on twitch. Here is his channel logo, his signature, his Minecraft skin, his cat (named Fenix) and a very important date to his community: April 19th, the day of his 1st stream on Twitch.", "website": "https://twitch.tv/Reborn_Live", "subreddit": "", "center": [1849.5, 997.5], "path": [[1829.5, 950.5], [1832.5, 949.5], [1868.5, 950.5], [1869.5, 1045.5], [1831.5, 1043.5]]}, {"id": "txeoiy", "submitted_by": "irishgodgames", "name": "Calcifer", "description": "Calcifer is a Fire Demon in a magical contract with Wizard Howl. He used to be a falling star, whom Howl was able to catch before he fell to earth and extinguished.", "website": "", "subreddit": "/r/HowlsMovingCastle", "center": [1777.5, 696.5], "path": [[1770.5, 687.5], [1784.5, 687.5], [1784.5, 705.5], [1770.5, 705.5]]}, {"id": "txeoar", "submitted_by": "tolarus", "name": "A Song of Ice and Fire", "description": "Logo of House Stark.\n\nHouse Stark is one of the Great Houses of the Seven Kingdoms and the principal house of the North. Its seat is at Winterfell, one of the oldest castles in the Seven Kingdoms. Its Coat of Arms displays a grey direwolf running on a white field, and its words are Winter is Coming.\n\nThis logo depicts the house symbol as seen in the HBO series.", "website": "", "subreddit": "/r/asoiaf", "center": [1669.5, 1345.5], "path": [[1652.5, 1338.5], [1650.5, 1341.5], [1657.5, 1353.5], [1669.5, 1353.5], [1678.5, 1361.5], [1684.5, 1352.5], [1684.5, 1342.5], [1677.5, 1337.5], [1669.5, 1333.5]]}, {"id": "txeo23", "submitted_by": "edj99", "name": "CGP Grey", "description": "Channel logo for the YouTuber CGP Grey", "website": "https://www.youtube.com/greymatter", "subreddit": "/r/CGPGrey", "center": [85.5, 813.5], "path": [[80.5, 808.5], [89.5, 808.5], [89.5, 817.5], [80.5, 817.5], [80.5, 808.5]]}, -{"id": "txensa", "submitted_by": "frostburn1", "name": "Spurdo Sp\u00e4rde", "description": "Spurdo Sp\u00e4rde is a poorly drawn character based on Pedobear created in the now-extinct Finnish imageboard Kuvalauta.", "website": "https://knowyourmeme.com/memes/spurdo-sparde", "subreddit": "", "center": [589.5, 153.5], "path": [[581.5, 150.5], [588.5, 145.5], [594.5, 145.5], [597.5, 150.5], [597.5, 157.5], [592.5, 160.5], [585.5, 160.5], [581.5, 157.5]]}, -{"id": "txenrw", "submitted_by": "NormalWheatleyHere", "name": "757575's Beach Scene", "description": "Members from each artwork of the 757575 Alliance came together to fill the space below them with a scene of a beach, to commemorate their friendship.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, +{"id": "txensa", "submitted_by": "frostburn1", "name": "Spurdo Sp\u00e4rde", "description": "Spurdo Sp\u00e4rde is a poorly drawn character based on Pedobear created in the now-extinct Finnish imageboard Kuvalauta.", "website": "https://knowyourmeme.com/memes/spurdo-sparde", "subreddit": "/r/Suomi", "center": [589.5, 153.5], "path": [[581.5, 150.5], [588.5, 145.5], [594.5, 145.5], [597.5, 150.5], [597.5, 157.5], [592.5, 160.5], [585.5, 160.5], [581.5, 157.5]]}, {"id": "txend1", "submitted_by": "edj99", "name": "Numberphile", "description": "Logo for the maths focused YouTube channel Numberphile run by Brady Haran", "website": "https://www.youtube.com/user/numberphile", "subreddit": "/r/numberphile", "center": [85.5, 805.5], "path": [[80.5, 801.5], [89.5, 801.5], [89.5, 808.5], [80.5, 808.5], [80.5, 801.5]]}, -{"id": "txencs", "submitted_by": "Miss_Potato", "name": "One Piece Poster", "description": "A poster for the popular Sh\u014dnen anime One Piece. Depicts the main characters' pirate flag and 3 Devil Fruit. A hot target for blue pixels to \"Sans-Undertale-afy\" it.", "website": "", "subreddit": "/r/onepiece", "center": [354.5, 571.5], "path": [[330.5, 528.5], [378.5, 528.5], [378.5, 613.5], [330.5, 613.5], [330.5, 613.5]]}, {"id": "txemy4", "submitted_by": "irishgodgames", "name": "Mario Starman", "description": "Starmen are items used in many Mario games, including the Super Mario series and the Mario Kart series.", "website": "", "subreddit": "/r/mario", "center": [878.5, 1864.5], "path": [[872.5, 1858.5], [884.5, 1858.5], [884.5, 1870.5], [872.5, 1870.5]]}, -{"id": "txemrx", "submitted_by": "EdEmLolEm", "name": "Indian Flag #1", "description": "This is the Flag of India along with ISRO'S PSLV Rocket, India's National Bird 'Peacock, The Taj Mahal and an Elephant.", "website": "", "subreddit": "/r/indiaplace", "center": [0.5, 0.5], "path": []}, {"id": "txemre", "submitted_by": "MakingLyricVideos", "name": "SHINee", "description": "SHINee is a K-Pop boyband that debuted in 2008, consisting of 5 members: Onew, Key, Minho, Taemin, and Jonghyun (1990\u20132017). The pearl aqua color and sparkles are associated with SHINee's overall theming, often stylized alongside an image of a diamond.", "website": "https://www.youtube.com/channel/UCyPwRgc3gQGqhk6RoGS50Ug", "subreddit": "/r/SHINee", "center": [1518.5, 956.5], "path": [[1510.5, 949.5], [1526.5, 949.5], [1526.5, 963.5], [1510.5, 963.5], [1510.5, 949.5]]}, {"id": "txemdb", "submitted_by": "Perfect_Ranger_3060", "name": "SimpleFlips logo", "description": "Brush your teeth *****", "website": "https://www.youtube.com/channel/UCiYpKsB66LZsk7s4yhxJqlQ", "subreddit": "/r/Simpleflips", "center": [1151.5, 375.5], "path": [[1150.5, 366.5], [1155.5, 371.5], [1159.5, 371.5], [1159.5, 375.5], [1157.5, 377.5], [1157.5, 383.5], [1154.5, 383.5], [1150.5, 380.5], [1146.5, 383.5], [1143.5, 383.5], [1146.5, 377.5], [1143.5, 373.5]]}, {"id": "txema7", "submitted_by": "edj99", "name": "CGP Grey the Penguin", "description": "CGP Grey was a female African penguin named after CGP Grey. The penguin was born on March 22 2015 at Bristol Zoo.", "website": "https://www.bradyharanblog.com/blog/2015/5/11/cgp-grey-the-penguin", "subreddit": "", "center": [85.5, 785.5], "path": [[80.5, 777.5], [89.5, 777.5], [89.5, 792.5], [80.5, 792.5], [80.5, 777.5]]}, @@ -6418,7 +5874,6 @@ {"id": "txelc0", "submitted_by": "NormalWheatleyHere", "name": "Wheatley's Pineapple and Flag", "description": "u/NormalWheatleyHere built a pineapple because he loves pineapples and also built a flag of his favorite colors.", "website": "", "subreddit": "", "center": [770.5, 554.5], "path": [[767.5, 547.5], [773.5, 547.5], [773.5, 560.5], [767.5, 560.5]]}, {"id": "txel7y", "submitted_by": "edj99", "name": "Brady Haran", "description": "YouTuber and podcast host Brady Haran", "website": "https://www.bradyharan.com/", "subreddit": "/r/BradyHaran", "center": [75.5, 782.5], "path": [[69.5, 777.5], [80.5, 777.5], [80.5, 787.5], [69.5, 787.5], [69.5, 777.5]]}, {"id": "txekw5", "submitted_by": "frik1000", "name": "Gonzales", "description": "The pet hamster of virtual youtuber Machita Chima of Nijisanji", "website": "", "subreddit": "/r/Nijisanji", "center": [196.5, 748.5], "path": [[192.5, 746.5], [193.5, 744.5], [199.5, 744.5], [199.5, 752.5], [194.5, 753.5], [193.5, 752.5], [192.5, 751.5], [193.5, 748.5]]}, -{"id": "txekmt", "submitted_by": "EdEmLolEm", "name": "Tinnanmen Square 'Tank man'", "description": "an artwork dedicated to the brave student who stood against the CCP's Tanks who were going to Tinanmen Square to stop the Student Protest in 1989.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "txekb7", "submitted_by": "edj99", "name": "CGP Grey", "description": "Stick figure avatar of the YouTuber and podcast host CGP Grey", "website": "https://www.youtube.com/greymatter", "subreddit": "/r/CGPGrey", "center": [64.5, 782.5], "path": [[58.5, 777.5], [69.5, 777.5], [69.5, 787.5], [58.5, 787.5], [58.5, 777.5]]}, {"id": "txejvo", "submitted_by": "JoeBobTNVS", "name": "University of Wisconsin - Madison", "description": "The second entry from UW-Madison depicting mascot Bucky U Badger and the marching band W logo", "website": "https://www.wisc.edu/", "subreddit": "/r/UWMadison", "center": [290.5, 1568.5], "path": [[300.5, 1584.5], [279.5, 1584.5], [279.5, 1552.5], [300.5, 1552.5], [300.5, 1584.5]]}, {"id": "txeja3", "submitted_by": "RedberryFields", "name": "Minecart Rapid Transit", "description": "Minecart Rapid Transit is a transportation and city-oriented Minecraft server that has been running continuously since 2012. Its chief admin, chiefbozx, is insanely good at keeping the thing running, and is also a wonderful college RA.", "website": "https://www.minecartrapidtransit.net/", "subreddit": "/r/MRTServer", "center": [1334.5, 463.5], "path": [[1324.5, 459.5], [1331.5, 459.5], [1331.5, 460.5], [1345.5, 460.5], [1345.5, 466.5], [1324.5, 466.5], [1324.5, 459.5]]}, @@ -6429,26 +5884,23 @@ {"id": "txei7z", "submitted_by": "NormalWheatleyHere", "name": "757575 Alliance", "description": "The owners of the artwork featured here formed an alliance named after the region's coordinates and worked together to draw a beach scene below their art.", "website": "", "subreddit": "", "center": [764.5, 564.5], "path": [[755.5, 547.5], [773.5, 547.5], [773.5, 580.5], [755.5, 580.5]]}, {"id": "txei6s", "submitted_by": "chch-", "name": "Map of Vietnam", "description": "", "website": "", "subreddit": "", "center": [434.5, 1688.5], "path": [[433.5, 1676.5], [432.5, 1677.5], [427.5, 1677.5], [430.5, 1680.5], [431.5, 1680.5], [432.5, 1681.5], [432.5, 1682.5], [431.5, 1683.5], [434.5, 1686.5], [434.5, 1687.5], [436.5, 1689.5], [436.5, 1690.5], [437.5, 1691.5], [436.5, 1696.5], [435.5, 1697.5], [434.5, 1697.5], [432.5, 1699.5], [432.5, 1702.5], [433.5, 1701.5], [434.5, 1701.5], [437.5, 1698.5], [438.5, 1698.5], [439.5, 1697.5], [439.5, 1695.5], [439.5, 1691.5], [433.5, 1684.5], [433.5, 1683.5], [437.5, 1679.5], [435.5, 1679.5], [435.5, 1677.5], [433.5, 1677.5]]}, {"id": "txehy7", "submitted_by": "mister_bagel420", "name": "Prank on r/ApplyingToCollege", "description": "The pranker wrote \"r/A2C got rejected!\" over r/ApplyingToCollege's design and the surrounding areas. What remains is \"r/A2C got\"", "website": "", "subreddit": "/r/ApplyingToCollege", "center": [363.5, 1568.5], "path": [[345.5, 1565.5], [379.5, 1564.5], [380.5, 1572.5], [346.5, 1571.5]]}, -{"id": "txehtd", "submitted_by": "bookwrm07", "name": "Gabumon", "description": "Character from the anime Digimon", "website": "", "subreddit": "/r/digimon", "center": [1329.5, 118.5], "path": [[1321.5, 104.5], [1322.5, 108.5], [1318.5, 114.5], [1319.5, 111.5], [1317.5, 111.5], [1322.5, 116.5], [1319.5, 121.5], [1322.5, 129.5], [1333.5, 130.5], [1334.5, 127.5], [1340.5, 126.5], [1341.5, 121.5], [1343.5, 117.5], [1338.5, 117.5], [1333.5, 109.5], [1337.5, 104.5], [1332.5, 105.5], [1330.5, 107.5], [1328.5, 107.5], [1328.5, 102.5], [1325.5, 106.5], [1322.5, 104.5]]}, {"id": "txehla", "submitted_by": "edj99", "name": "Nix OS", "description": "NixOS is a Linux distribution built on top of the Nix package manager.", "website": "https://nixos.org/", "subreddit": "/r/NixOS", "center": [33.5, 708.5], "path": [[30.5, 705.5], [36.5, 705.5], [36.5, 711.5], [30.5, 711.5], [30.5, 705.5]]}, {"id": "txehg8", "submitted_by": "UserUnknown07", "name": "Gynaa", "description": "A telugu letter - \u0c1c\u0c4d\u0c1e\u0c3e which is near to the hearts of our subreddit.", "website": "", "subreddit": "/r/Ni_Bondha", "center": [1402.5, 42.5], "path": [[1394.5, 35.5], [1395.5, 36.5], [1395.5, 50.5], [1409.5, 50.5], [1409.5, 35.5]]}, -{"id": "txehao", "submitted_by": "OrbitalOracle", "name": "Turtle Queen's Crown", "description": "Crowns were added to various frogs and reptiles as a reference to the Turtle Queen, an infection meme from the urban fantasy series Pale.", "website": "", "subreddit": "/r/parahumans", "center": [0.5, 0.5], "path": []}, {"id": "txeh13", "submitted_by": "Comprehensive_Hat_23", "name": "r/UKplace", "description": "r/UKplace is a subreddit about the UK", "website": "", "subreddit": "/r/UKplace", "center": [1179.5, 1985.5], "path": [[1218.5, 1973.5], [1218.5, 1973.5], [1217.5, 1997.5], [1141.5, 1997.5], [1140.5, 1973.5]]}, {"id": "txeg45", "submitted_by": "edj99", "name": "Alpine Linux", "description": "Alpine Linux is a Linux distribution based on musl and BusyBox, designed for security, simplicity, and resource efficiency.", "website": "https://www.alpinelinux.org/", "subreddit": "/r/alpinelinux", "center": [25.5, 711.5], "path": [[22.5, 708.5], [28.5, 708.5], [28.5, 714.5], [22.5, 714.5]]}, {"id": "txefsa", "submitted_by": "choppyc7", "name": "Big Chungles", "description": "Tribute to the Popular, Funny, Energetic meme account Big Chungles. A big chungles admin franticly begged their audience of 180k followers to build this, and the fans reluctantly agreed.", "website": "https://www.instagram.com/big_chungles/", "subreddit": "/r/bigchungles", "center": [1059.5, 1907.5], "path": [[1041.5, 1904.5], [1041.5, 1909.5], [1077.5, 1909.5], [1077.5, 1904.5]]}, {"id": "txefh4", "submitted_by": "teapot_tipat", "name": "Mothcrabalisa", "description": "The 3rd Mothalisa made by r/Skyplace. After an alliance with Oneshot, the Mothalisa was able to secure its spot beside the Niko art.", "website": "", "subreddit": "/r/SkyGame", "center": [1125.5, 1663.5], "path": [[1122.5, 1656.5], [1132.5, 1656.5], [1132.5, 1669.5], [1116.5, 1669.5], [1116.5, 1665.5], [1118.5, 1665.5], [1118.5, 1664.5], [1120.5, 1664.5], [1120.5, 1663.5], [1121.5, 1663.5], [1121.5, 1656.5], [1122.5, 1656.5]]}, {"id": "txeffl", "submitted_by": "westnnep000", "name": "Omegle", "description": "A Popular website to chat with strangers", "website": "https://omegle.com", "subreddit": "/r/omegle", "center": [952.5, 1074.5], "path": [[943.5, 1062.5], [943.5, 1085.5], [962.5, 1085.5], [962.5, 1062.5]]}, -{"id": "txefbr", "submitted_by": "xVandherLord", "name": "TheBichoZombie", "description": "Mascot representing a small spanish-speaking community on twitch.", "website": "www.twitch.tv/thebichozombie", "subreddit": "", "center": [1373.5, 463.5], "path": [[1364.5, 466.5], [1367.5, 469.5], [1379.5, 469.5], [1381.5, 467.5], [1381.5, 461.5], [1378.5, 461.5], [1378.5, 455.5], [1367.5, 455.5], [1367.5, 461.5], [1364.5, 461.5], [1364.5, 467.5]]}, +{"id": "txefbr", "submitted_by": "xVandherLord", "name": "TheBichoZombie", "description": "Mascot representing a small spanish-speaking community on twitch.", "website": "https://www.twitch.tv/thebichozombie", "subreddit": "", "center": [1373.5, 463.5], "path": [[1364.5, 466.5], [1367.5, 469.5], [1379.5, 469.5], [1381.5, 467.5], [1381.5, 461.5], [1378.5, 461.5], [1378.5, 455.5], [1367.5, 455.5], [1367.5, 461.5], [1364.5, 461.5], [1364.5, 467.5]]}, {"id": "txef4v", "submitted_by": "JoeBobTNVS", "name": "Super Mario Pictograms", "description": "A mini-mushroom and invincibility star from the Mario franchise", "website": "https://mario.nintendo.com/", "subreddit": "/r/nintendo", "center": [878.5, 1859.5], "path": [[872.5, 1847.5], [872.5, 1870.5], [884.5, 1870.5], [884.5, 1847.5], [872.5, 1847.5]]}, -{"id": "txef08", "submitted_by": "Ketul-", "name": "Mugiwara Pirates", "description": "The flag of the Straw Hat Pirates -- the main protagonists of the manga/anime, One Piece.", "website": "https://onepiece.fandom.com/wiki/Straw_Hat_Pirates", "subreddit": "/r/OnePiece", "center": [354.5, 570.5], "path": [[331.5, 528.5], [378.5, 528.5], [378.5, 612.5], [330.5, 613.5]]}, {"id": "txeepb", "submitted_by": "ININHAHALELE", "name": "Moona Hoshinova", "description": "Moona Hoshinova (1st Gen.) is a talent from the Idol VTuber group, Hololive. She is the first Hololive Talent from Indonesia to reach a milestone of a million subscribers.", "website": "https://hololive.hololivepro.com/en/talents?gp=indonesia", "subreddit": "/r/hololive", "center": [1384.5, 995.5], "path": [[1381.5, 990.5], [1386.5, 990.5], [1389.5, 998.5], [1379.5, 998.5], [1380.5, 992.5], [1383.5, 994.5], [1384.5, 993.5], [1388.5, 996.5], [1388.5, 997.5], [1387.5, 996.5], [1382.5, 996.5]]}, {"id": "txeej9", "submitted_by": "AsukaMainGG", "name": "Mana Nagase", "description": "Mana Nagase was an idol hailing from the Japanese idol franchise IDOLY PRIDE. She was voiced by the late Sayaka Kanda.\n \nShe currently has four songs (First Step, Precious, Memories of the Starry Sky, and Song For You) and two covers (Racing into the Night by YOASOBI and Ghost in a Flower by Yorushika)", "website": "", "subreddit": "/r/IdolyPride", "center": [1497.5, 1242.5], "path": [[1489.5, 1234.5], [1489.5, 1249.5], [1505.5, 1249.5], [1505.5, 1234.5]]}, -{"id": "txeeif", "submitted_by": "nachog2003", "name": "Fantastic Contraption", "description": "Clockwise wheel from the 2008 Flash based physics game Fantastic Contraption created by Colin Northway.", "website": "fantasticcontraption.com/original", "subreddit": "", "center": [1644.5, 421.5], "path": [[1643.5, 415.5], [1643.5, 416.5], [1641.5, 416.5], [1641.5, 417.5], [1640.5, 417.5], [1640.5, 418.5], [1639.5, 418.5], [1639.5, 420.5], [1638.5, 420.5], [1638.5, 423.5], [1639.5, 423.5], [1639.5, 425.5], [1640.5, 425.5], [1640.5, 426.5], [1641.5, 426.5], [1641.5, 427.5], [1642.5, 427.5], [1643.5, 427.5], [1643.5, 428.5], [1646.5, 428.5], [1646.5, 427.5], [1648.5, 427.5], [1648.5, 426.5], [1649.5, 426.5], [1649.5, 425.5], [1649.5, 424.5], [1650.5, 424.5], [1650.5, 423.5], [1651.5, 423.5], [1651.5, 420.5], [1650.5, 420.5], [1650.5, 418.5], [1649.5, 418.5], [1649.5, 417.5], [1648.5, 417.5], [1648.5, 416.5], [1647.5, 416.5], [1646.5, 416.5], [1646.5, 415.5]]}, +{"id": "txeeif", "submitted_by": "nachog2003", "name": "Fantastic Contraption", "description": "Clockwise wheel from the 2008 Flash based physics game Fantastic Contraption created by Colin Northway.", "website": "https://fantasticcontraption.com/original", "subreddit": "", "center": [1644.5, 421.5], "path": [[1643.5, 415.5], [1643.5, 416.5], [1641.5, 416.5], [1641.5, 417.5], [1640.5, 417.5], [1640.5, 418.5], [1639.5, 418.5], [1639.5, 420.5], [1638.5, 420.5], [1638.5, 423.5], [1639.5, 423.5], [1639.5, 425.5], [1640.5, 425.5], [1640.5, 426.5], [1641.5, 426.5], [1641.5, 427.5], [1642.5, 427.5], [1643.5, 427.5], [1643.5, 428.5], [1646.5, 428.5], [1646.5, 427.5], [1648.5, 427.5], [1648.5, 426.5], [1649.5, 426.5], [1649.5, 425.5], [1649.5, 424.5], [1650.5, 424.5], [1650.5, 423.5], [1651.5, 423.5], [1651.5, 420.5], [1650.5, 420.5], [1650.5, 418.5], [1649.5, 418.5], [1649.5, 417.5], [1648.5, 417.5], [1648.5, 416.5], [1647.5, 416.5], [1646.5, 416.5], [1646.5, 415.5]]}, {"id": "txeeb6", "submitted_by": "stevenguyer", "name": "The Pixels Formerly Known as /r/FortniteLeaks\u2019 Contribution", "description": "This space was home to a group collaboration from the subreddit /r/FortniteLeaks until its destruction by a Romanian streamer and its subsequent re-destruction by a Polish flag. The art consisted of a purple Star Wars Stormtrooper helmet to represent the user Marth, the numbers 328 to commemorate the user Poket\u2019s champion title, and a small blue bird to represent the user Stormyblade.", "website": "", "subreddit": "/r/FortniteLeaks", "center": [398.5, 1872.5], "path": [[387.5, 1856.5], [418.5, 1856.5], [418.5, 1887.5], [379.5, 1888.5], [377.5, 1859.5]]}, {"id": "txed8f", "submitted_by": "Heidrian", "name": "Alice", "description": "Alice from BlackSouls I & II, a DarkSouls, Fairytale , and Cthulhu mythos inspired game created in the RPGMaker engine by sole Japanese autist Eeny, meeny, miny, moe? or as fans refer to him EMMM. \n\u0438}u@hwqvh@\u0401w@\u0430tqdf\n\n", "website": "https://www.dlsite.com/maniax/circle/profile/=/maker_id/RG33488.html", "subreddit": "", "center": [43.5, 1262.5], "path": [[41.5, 1258.5], [45.5, 1258.5], [45.5, 1265.5], [41.5, 1265.5]]}, {"id": "txed70", "submitted_by": "OkayBorfk", "name": "Everland Reckful Sprite", "description": "A sprite of Reckful from Everland, Reckful's social MMO which was in works before his passing in 2020. Rest in peace Byron, we miss you.", "website": "", "subreddit": "/r/reckful", "center": [258.5, 1832.5], "path": [[251.5, 1815.5], [264.5, 1815.5], [265.5, 1849.5], [251.5, 1849.5]]}, {"id": "txed1n", "submitted_by": "alex061397", "name": "Getting Over It", "description": "Art of the platforming game Getting Over It with Bennett Foddy, narrated of course, by Bennett Foddy", "website": "", "subreddit": "/r/GettingOverItGame", "center": [1209.5, 813.5], "path": [[1201.5, 804.5], [1201.5, 822.5], [1216.5, 822.5], [1216.5, 804.5]]}, -{"id": "txecvl", "submitted_by": "HyruTV", "name": "Pokelawls pixelSmoke (pepeSmoke)", "description": "A r/place pixel version of the pepeSmoke Twitch emote. It's available on 7tv.", "website": "twitch.tv/pokelawls", "subreddit": "/r/pokelawls", "center": [703.5, 950.5], "path": [[695.5, 943.5], [695.5, 956.5], [710.5, 956.5], [710.5, 943.5], [695.5, 943.5]]}, +{"id": "txecvl", "submitted_by": "HyruTV", "name": "Pokelawls pixelSmoke (pepeSmoke)", "description": "A r/place pixel version of the pepeSmoke Twitch emote. It's available on 7tv.", "website": "https://twitch.tv/pokelawls", "subreddit": "/r/pokelawls", "center": [703.5, 950.5], "path": [[695.5, 943.5], [695.5, 956.5], [710.5, 956.5], [710.5, 943.5], [695.5, 943.5]]}, {"id": "txecuj", "submitted_by": "Dreaming_In_Ink", "name": "THE PACK RILED SKULL", "description": "riled inclusive badass skull", "website": "", "subreddit": "/r/THE_PACK", "center": [234.5, 691.5], "path": [[232.5, 695.5], [231.5, 694.5], [231.5, 693.5], [230.5, 692.5], [230.5, 691.5], [230.5, 690.5], [230.5, 689.5], [230.5, 688.5], [231.5, 687.5], [232.5, 687.5], [233.5, 687.5], [234.5, 687.5], [235.5, 687.5], [236.5, 687.5], [237.5, 687.5], [238.5, 688.5], [238.5, 689.5], [238.5, 690.5], [238.5, 691.5], [238.5, 692.5], [237.5, 693.5], [237.5, 694.5], [236.5, 695.5], [235.5, 695.5], [234.5, 695.5], [233.5, 695.5]]}, {"id": "txecm2", "submitted_by": "edj99", "name": "Level 1 Techs", "description": "Technology YouTube channel", "website": "https://www.youtube.com/c/level1techs", "subreddit": "/r/level1techs", "center": [122.5, 772.5], "path": [[117.5, 765.5], [128.5, 765.5], [128.5, 777.5], [122.5, 777.5], [117.5, 781.5], [117.5, 765.5]]}, {"id": "txeby1", "submitted_by": "Mrtheninja", "name": "Sherley Holmes", "description": "A Sherlock Holmes, Adventure Time, Animal crossing, Fan Character from the Goku Royale OCT discord server.", "website": "", "subreddit": "", "center": [1122.5, 30.5], "path": [[1117.5, 28.5], [1117.5, 27.5], [1118.5, 27.5], [1118.5, 26.5], [1118.5, 25.5], [1119.5, 25.5], [1119.5, 24.5], [1120.5, 24.5], [1121.5, 24.5], [1121.5, 23.5], [1121.5, 22.5], [1122.5, 22.5], [1122.5, 24.5], [1125.5, 24.5], [1125.5, 25.5], [1126.5, 25.5], [1126.5, 26.5], [1127.5, 26.5], [1127.5, 28.5], [1126.5, 28.5], [1126.5, 30.5], [1129.5, 30.5], [1127.5, 31.5], [1128.5, 32.5], [1128.5, 33.5], [1127.5, 33.5], [1127.5, 35.5], [1126.5, 35.5], [1126.5, 36.5], [1126.5, 37.5], [1125.5, 37.5], [1125.5, 36.5], [1124.5, 36.5], [1123.5, 36.5], [1123.5, 39.5], [1124.5, 39.5], [1120.5, 39.5], [1121.5, 39.5], [1121.5, 36.5], [1119.5, 36.5], [1119.5, 37.5], [1118.5, 37.5], [1118.5, 35.5], [1119.5, 35.5], [1119.5, 34.5], [1119.5, 33.5], [1119.5, 32.5], [1118.5, 32.5], [1117.5, 32.5], [1117.5, 34.5], [1117.5, 30.5], [1118.5, 30.5], [1118.5, 29.5], [1118.5, 28.5], [1117.5, 28.5], [1120.5, 24.5], [1127.5, 29.5], [1118.5, 32.5], [1119.5, 32.5], [1119.5, 33.5], [1119.5, 34.5]]}, @@ -6465,7 +5917,7 @@ {"id": "txezk1", "submitted_by": "N8dawgggg", "name": "Tampa Area", "description": "A section dedicated to the sports teams from Tampa Bay, Florida. Included is the: Buccaneers (American football), Rays (Baseball), Lightning(Hockey) and Rowdies(Soccer).", "website": "", "subreddit": "/r/tampa", "center": [1757.5, 266.5], "path": [[1739.5, 252.5], [1739.5, 263.5], [1737.5, 263.5], [1737.5, 279.5], [1774.5, 279.5], [1774.5, 275.5], [1776.5, 275.5], [1776.5, 252.5], [1739.5, 252.5]]}, {"id": "txeyy7", "submitted_by": "Korbsio", "name": "Michiru Kagemori (BNA)", "description": "Michiru Kagemori, the main character of Studio Trigger's BNA. It was built twice before with the character Nazuna Hiwatashi, but both of these were covered up by streamers.", "website": "", "subreddit": "/r/BrandNewAnimal", "center": [1374.5, 1956.5], "path": [[1365.5, 1949.5], [1382.5, 1949.5], [1382.5, 1963.5], [1365.5, 1963.5]]}, {"id": "txeyko", "submitted_by": "mythic_kale", "name": "Denji (deleted)", "description": "A now deleted sprite of Denji, the main character of manga Chainsaw Man, that was finally overtaken after fighting 7 wars. RIP.", "website": "", "subreddit": "/r/ChainsawMan", "center": [1224.5, 917.5], "path": [[1211.5, 908.5], [1211.5, 926.5], [1237.5, 926.5], [1237.5, 908.5]]}, -{"id": "txey7k", "submitted_by": "sEi_", "name": "Marguerite flower (Daisyflower)", "description": "The favorite flower of the Danish Queen.\n\nAlso used as waipoints on a tourist route in Denmark passing approximately 1000 of Denmark's smaller and larger attractions.", "website": "", "subreddit": "", "center": [422.5, 162.5], "path": [[417.5, 157.5], [417.5, 166.5], [427.5, 166.5], [427.5, 157.5]]}, +{"id": "txey7k", "submitted_by": "sEi_", "name": "Marguerite flower (daisy flower)", "description": "The favorite flower of the Danish queen.\n\nAlso used as waypoints on a tourist route in Denmark passing approximately 1000 of Denmark's smaller and larger attractions.", "website": "https://en.wikipedia.org/wiki/Garden_marguerite", "subreddit": "/r/Denmark", "center": [422.5, 162.5], "path": [[417.5, 157.5], [417.5, 166.5], [427.5, 166.5], [427.5, 157.5]]}, {"id": "txey3l", "submitted_by": "MultiZX", "name": "Tairitsu's Ribbon", "description": "The ribbon of Tairitsu, one of the main characters of Arcaea;\nrepresenting 'Conflict'", "website": "https://arcaea.lowiro.com/en", "subreddit": "/r/arcaea", "center": [1832.5, 1654.5], "path": [[1831.5, 1650.5], [1830.5, 1651.5], [1829.5, 1652.5], [1829.5, 1653.5], [1830.5, 1654.5], [1830.5, 1655.5], [1829.5, 1656.5], [1830.5, 1657.5], [1829.5, 1658.5], [1830.5, 1659.5], [1833.5, 1656.5], [1834.5, 1656.5], [1836.5, 1654.5], [1836.5, 1653.5], [1835.5, 1652.5], [1833.5, 1652.5], [1833.5, 1651.5], [1832.5, 1650.5], [1831.5, 1650.5]]}, {"id": "txexub", "submitted_by": "BagOfSouls", "name": "Tribute to Zyzz", "description": "A tribute to the late Aziz Shavershian, known online as Zyzz, a popular online bodybuilder in the late 2000s. Originally placed by Twitch streamer xQcOW and his community.", "website": "", "subreddit": "", "center": [1381.5, 1688.5], "path": [[1332.5, 1611.5], [1332.5, 1753.5], [1438.5, 1753.5], [1438.5, 1658.5], [1413.5, 1657.5], [1413.5, 1637.5], [1395.5, 1637.5], [1395.5, 1611.5], [1332.5, 1611.5]]}, {"id": "txexbn", "submitted_by": "Exploding_Pie", "name": "United Gacha Alliance", "description": "Several Gacha games and allies worked together to represent their communities: \nDragalia Lost(but never forgotten)\nGranblue Fantasy\nTetris and co.\nProject Sekai (saved us all from streamer thank god)\nFire Emblem Heroes\nGirls Frontline\nPunishing: Gray Raven\nArknights (literal emotional rollercoaster)\nAzur Lane\nBlue Archive\nUmamusume\nGuardian Tales\nPolandball and Maryland (lmao)\nPrincess Connect! Re:Dive\nFate Grand Order\nTears of Themis\nHonkai and Genshin Impact\n\n", "website": "https://discord.gg/mrCW9ba7PF", "subreddit": "", "center": [1640.5, 1754.5], "path": [[1527.5, 1712.5], [1625.5, 1712.5], [1625.5, 1690.5], [1647.5, 1690.5], [1647.5, 1711.5], [1772.5, 1712.5], [1774.5, 1810.5], [1613.5, 1809.5], [1615.5, 1818.5], [1588.5, 1817.5], [1586.5, 1803.5], [1577.5, 1803.5], [1576.5, 1760.5], [1527.5, 1761.5], [1527.5, 1756.5], [1487.5, 1757.5], [1486.5, 1738.5], [1498.5, 1739.5], [1497.5, 1727.5], [1465.5, 1726.5], [1464.5, 1754.5], [1440.5, 1753.5], [1440.5, 1705.5], [1480.5, 1705.5], [1480.5, 1724.5], [1490.5, 1724.5], [1492.5, 1709.5], [1518.5, 1713.5], [1518.5, 1722.5], [1518.5, 1722.5], [1518.5, 1723.5], [1512.5, 1739.5], [1527.5, 1738.5], [1527.5, 1712.5]]}, @@ -6473,13 +5925,11 @@ {"id": "txewgn", "submitted_by": "Eierkoekverzekering", "name": "r/LSD", "description": "Lysergic acid diethylamide (LSD) is a psychedelic drug. The community of r/LSD worked together to commemorate Bicycle Day, the day of the first LSD trip on April 19, 1943. Only the unfinished piece of the project can be seen here.", "website": "", "subreddit": "/r/LSD", "center": [404.5, 1721.5], "path": [[395.5, 1718.5], [412.5, 1718.5], [412.5, 1724.5], [395.5, 1724.5], [395.5, 1724.5]]}, {"id": "txevvl", "submitted_by": "MakingLyricVideos", "name": "The Boyz Logo", "description": "The Boyz (abbreviated as TBZ) is a K-Pop boyband that debuted in 2017. The group consists of 11 members: Sangyeon, Juyeon, Younghoon, Hyunjae, Juhaknyeon, Sunwoo, New, Q, Jacob, Kevin, and Eric.", "website": "https://www.youtube.com/channel/UCkJ1rbOrsyPfBuHNfnLPm-Q", "subreddit": "/r/the_boyz", "center": [1579.5, 200.5], "path": [[1570.5, 196.5], [1588.5, 196.5], [1588.5, 204.5], [1570.5, 204.5], [1570.5, 196.5]]}, {"id": "txevoi", "submitted_by": "feitancantortureme", "name": "GOT7", "description": "A peaceful tiny pixel art made for GOT7: a South Korean boy band formed and active since 2014 composed of Jay B, Mark, Jackson, Jinyoung, Youngjae, BamBam, and Yugyeom. Four of the members are Koreans with the other three being Thai, Chinese, and American respectively. \n", "website": "https://youtu.be/tAe0yUEzAaI", "subreddit": "/r/GOT7", "center": [1588.5, 271.5], "path": [[1597.5, 267.5], [1597.5, 268.5], [1597.5, 269.5], [1597.5, 270.5], [1597.5, 271.5], [1597.5, 272.5], [1597.5, 273.5], [1597.5, 274.5], [1596.5, 274.5], [1595.5, 274.5], [1594.5, 274.5], [1593.5, 274.5], [1592.5, 274.5], [1591.5, 274.5], [1590.5, 274.5], [1589.5, 274.5], [1588.5, 274.5], [1587.5, 274.5], [1586.5, 274.5], [1585.5, 274.5], [1584.5, 274.5], [1583.5, 274.5], [1582.5, 274.5], [1581.5, 274.5], [1580.5, 274.5], [1579.5, 274.5], [1579.5, 273.5], [1579.5, 272.5], [1579.5, 271.5], [1579.5, 270.5], [1579.5, 269.5], [1579.5, 268.5], [1579.5, 267.5], [1580.5, 267.5], [1582.5, 267.5]]}, -{"id": "txeuva", "submitted_by": "yoblaunder", "name": "Mini Marsey", "description": "A miniature version of the rdrama mascot Marsey the cat. A larger version can be found in the bottom left just east of the Hollow Knight with ID tww1z8", "website": "rdrama.net", "subreddit": "", "center": [96.5, 632.5], "path": [[90.5, 627.5], [91.5, 627.5], [92.5, 626.5], [93.5, 625.5], [94.5, 624.5], [95.5, 623.5], [96.5, 622.5], [97.5, 623.5], [98.5, 624.5], [98.5, 625.5], [99.5, 626.5], [100.5, 626.5], [101.5, 625.5], [102.5, 624.5], [103.5, 623.5], [104.5, 622.5], [105.5, 623.5], [106.5, 624.5], [106.5, 631.5], [107.5, 632.5], [107.5, 635.5], [106.5, 636.5], [105.5, 637.5], [104.5, 638.5], [103.5, 638.5], [102.5, 639.5], [92.5, 639.5], [91.5, 638.5], [90.5, 638.5], [89.5, 637.5], [86.5, 637.5], [85.5, 636.5], [84.5, 636.5], [83.5, 635.5], [82.5, 634.5], [82.5, 633.5], [81.5, 632.5], [81.5, 630.5], [82.5, 629.5], [83.5, 629.5], [84.5, 630.5], [85.5, 631.5], [85.5, 632.5], [86.5, 633.5], [87.5, 633.5], [87.5, 630.5], [88.5, 629.5], [89.5, 628.5], [90.5, 627.5]]}, +{"id": "txeuva", "submitted_by": "yoblaunder", "name": "Mini Marsey", "description": "A miniature version of the rdrama mascot Marsey the cat. A larger version can be found in the bottom left just east of the Hollow Knight with ID tww1z8", "website": "https://rdrama.net", "subreddit": "", "center": [96.5, 632.5], "path": [[90.5, 627.5], [91.5, 627.5], [92.5, 626.5], [93.5, 625.5], [94.5, 624.5], [95.5, 623.5], [96.5, 622.5], [97.5, 623.5], [98.5, 624.5], [98.5, 625.5], [99.5, 626.5], [100.5, 626.5], [101.5, 625.5], [102.5, 624.5], [103.5, 623.5], [104.5, 622.5], [105.5, 623.5], [106.5, 624.5], [106.5, 631.5], [107.5, 632.5], [107.5, 635.5], [106.5, 636.5], [105.5, 637.5], [104.5, 638.5], [103.5, 638.5], [102.5, 639.5], [92.5, 639.5], [91.5, 638.5], [90.5, 638.5], [89.5, 637.5], [86.5, 637.5], [85.5, 636.5], [84.5, 636.5], [83.5, 635.5], [82.5, 634.5], [82.5, 633.5], [81.5, 632.5], [81.5, 630.5], [82.5, 629.5], [83.5, 629.5], [84.5, 630.5], [85.5, 631.5], [85.5, 632.5], [86.5, 633.5], [87.5, 633.5], [87.5, 630.5], [88.5, 629.5], [89.5, 628.5], [90.5, 627.5]]}, {"id": "txffu8", "submitted_by": "zZ2255", "name": "Andynsane - Andynzein - Zein - ZEJN", "description": "Fue un youtuber dedicado a subir v\u00eddeos de blogs y comedia, actualmente se dedica al streaming en BOOYA!. Naci\u00f3 en Tarma, Junin, Per\u00fa, pero actualmente reside en Estados Unidos.\nSecciones:\n-Challenges\n-Las 15 fotos fails de la vida\n-50 se\u00f1ales de que eres...\n-Omegle\n-Bromas telef\u00f3nicas\n-Retos\n-Preguntas incomodas\n-Esto solo pasa en Peru\n-Esto solo pasa en internet\n-Exponiendo infieles en Peru\n-M\u00fasica Andynsane\n-Alto al crimen\n-Parodias\n-Reacciones videos random\n-Gameplays\n-Radio fierro 69.9 fm\nPersonajes:\n-Juanito el jorobado\n-Paloma Poh Poh\n-La Elvira Montenegro\n-Maaami-Mono saca copias\n-Barney\nCanciones:\n-P\u00e1same tu pin-L\u00e1vatela con shampo (2012)\n-Mi nombre es Andynsane (22/03/2015)\n-Quiero subirme a tu guayabo mami (28/06/2015)\n-Reggaet\u00f3n cristiano (05/08/2015)\n-Cuando voy al ba\u00f1o (14/06/2015)\n-Si te gusta (27/08/2017)\nFrases:\n-Soy fresa, pero no para tu mermelada.\n-Eres un pendejo s\u00ed.\n-Mira y calla que no tendr\u00e1s ni papaya.\n-Los mas machos son los mas cabros.\n-Y sin m\u00e1s cotorreo, empecemos con el sandungueo.", "website": "https://booyah.live/channels/59911252?source=11", "subreddit": "", "center": [1829.5, 1083.5], "path": [[1792.5, 1046.5], [1792.5, 1121.5], [1866.5, 1118.5], [1867.5, 1047.5], [1793.5, 1045.5], [1792.5, 1045.5]]}, {"id": "txffm2", "submitted_by": "jinyan69", "name": "Chile", "description": "A smaller flag of Chile below the main flag.", "website": "", "subreddit": "/r/chile", "center": [262.5, 533.5], "path": [[252.5, 529.5], [272.5, 529.5], [272.5, 537.5], [251.5, 537.5], [251.5, 529.5]]}, {"id": "txffdr", "submitted_by": "CrazyPenks", "name": "Turkey flag", "description": "A tiny flag of turkey orgaized most likely by the turkey subreddit and by turkish contributers", "website": "", "subreddit": "/r/turkey", "center": [1023.5, 1842.5], "path": [[1021.5, 1841.5], [1021.5, 1841.5], [1029.5, 1844.5], [1019.5, 1839.5], [1020.5, 1841.5], [1020.5, 1841.5], [1019.5, 1845.5], [1028.5, 1844.5], [1026.5, 1839.5], [1019.5, 1839.5], [1019.5, 1845.5], [1029.5, 1845.5], [1029.5, 1843.5], [1027.5, 1843.5], [1027.5, 1839.5], [1019.5, 1839.5]]}, -{"id": "txff9u", "submitted_by": "NormalWheatleyHere", "name": "W for Wheatley", "description": "u/NormalWheatleyHere", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "txfek0", "submitted_by": "CompactedPrism", "name": "Kaiser Kattail", "description": "Pixel art of Kaiser Kattail, villain and central character in the popular Stellaris mod Gigastructural Engineering and More", "website": "https://steamcommunity.com/sharedfiles/filedetails/?id=1121692237", "subreddit": "/r/stellaris", "center": [1465.5, 987.5], "path": [[1452.5, 975.5], [1478.5, 975.5], [1478.5, 998.5], [1452.5, 998.5]]}, -{"id": "txfegv", "submitted_by": "exploitativity", "name": "Simo H\u00e4yh\u00e4", "description": "A Finnish sniper during the Winter War against the Soviet Union. At an estimated 500 or more kills, he is estimated to have been the deadliest sniper in history.", "website": "https://en.wikipedia.org/wiki/Simo_H%C3%A4yh%C3%A4", "subreddit": "", "center": [574.5, 245.5], "path": [[569.5, 235.5], [576.5, 235.5], [579.5, 237.5], [579.5, 241.5], [581.5, 241.5], [581.5, 244.5], [579.5, 244.5], [581.5, 246.5], [582.5, 247.5], [582.5, 249.5], [581.5, 251.5], [583.5, 246.5], [580.5, 252.5], [579.5, 252.5], [579.5, 256.5], [572.5, 256.5], [571.5, 254.5], [571.5, 253.5], [570.5, 253.5], [568.5, 253.5], [567.5, 254.5], [566.5, 254.5], [566.5, 251.5], [563.5, 253.5], [567.5, 250.5], [568.5, 249.5], [568.5, 246.5], [567.5, 246.5], [566.5, 245.5], [566.5, 240.5], [569.5, 235.5]]}, {"id": "txfdq7", "submitted_by": "El_Geygey", "name": "La Ligue Intercommu logo", "description": "Logo of La Ligue Intercommu, a French-created Geoguessr community, home of Blinky a very gifted French player.", "website": "https://discord.gg/5nug94RrxV", "subreddit": "", "center": [117.5, 475.5], "path": [[125.5, 466.5], [125.5, 484.5], [109.5, 484.5], [109.5, 466.5]]}, {"id": "txfdai", "submitted_by": "DylanDonut58", "name": "Birdhouse in Your Soul", "description": "Birdhouse and blue canary night light in reference to Birdhouse in Your Soul by They Might Be Giants", "website": "https://www.youtube.com/watch?v=vn_or9gEB6g", "subreddit": "/r/tmbg", "center": [1834.5, 652.5], "path": [[1826.5, 657.5], [1842.5, 657.5], [1842.5, 647.5], [1826.5, 647.5]]}, {"id": "txfcwq", "submitted_by": "Deatherdan", "name": "Friends Having Fun Together Car", "description": "Me and my friends in our discord group chat titled \"Friends Having Fun Together\" worked together to keep this spot.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": [[956.5, 728.5], [956.5, 730.5], [956.5, 728.5]]}, @@ -6492,374 +5942,1182 @@ {"id": "txf9qs", "submitted_by": "TheHairyWhodini", "name": "Taiko No Tatsujin", "description": "Two pixel-art faces in the likeness of Don-Chan from the game series Taiko No Tatsujin. They were incorporated into the Volt Europa contribution to r/place.", "website": "https://en.wikipedia.org/wiki/Taiko_no_Tatsujin", "subreddit": "/r/taikonotatsujin", "center": [1420.5, 1346.5], "path": [[1424.5, 1353.5], [1424.5, 1352.5], [1426.5, 1352.5], [1426.5, 1351.5], [1428.5, 1351.5], [1428.5, 1349.5], [1429.5, 1349.5], [1429.5, 1345.5], [1428.5, 1345.5], [1428.5, 1343.5], [1427.5, 1343.5], [1427.5, 1341.5], [1426.5, 1341.5], [1425.5, 1341.5], [1425.5, 1340.5], [1424.5, 1339.5], [1421.5, 1339.5], [1421.5, 1340.5], [1419.5, 1340.5], [1418.5, 1340.5], [1418.5, 1339.5], [1416.5, 1339.5], [1416.5, 1340.5], [1414.5, 1340.5], [1414.5, 1341.5], [1412.5, 1341.5], [1412.5, 1342.5], [1412.5, 1343.5], [1411.5, 1343.5], [1411.5, 1345.5], [1410.5, 1345.5], [1410.5, 1347.5], [1411.5, 1347.5], [1411.5, 1349.5], [1412.5, 1351.5], [1414.5, 1351.5], [1414.5, 1352.5], [1416.5, 1352.5], [1416.5, 1353.5], [1417.5, 1353.5], [1418.5, 1353.5], [1418.5, 1352.5], [1418.5, 1351.5], [1419.5, 1351.5], [1420.5, 1351.5], [1421.5, 1351.5], [1421.5, 1352.5]]}, {"id": "txf9fq", "submitted_by": "GeneralBacon", "name": "Juice Box", "description": "Artwork made and defended by streamer HelloNeptune and their community.", "website": "", "subreddit": "", "center": [504.5, 1101.5], "path": [[499.5, 1108.5], [505.5, 1108.5], [508.5, 1105.5], [508.5, 1097.5], [506.5, 1097.5], [506.5, 1096.5], [509.5, 1095.5], [509.5, 1093.5], [505.5, 1093.5], [505.5, 1094.5], [504.5, 1095.5], [504.5, 1097.5], [501.5, 1097.5], [499.5, 1099.5], [499.5, 1107.5], [499.5, 1108.5]]}, {"id": "txf9bq", "submitted_by": "Oponik", "name": "roSUS", "description": "A very sussy character Filipino redditors unintentionally made when making this rose. Instead of removing it they decide to let it stay", "website": "", "subreddit": "/r/Philippines", "center": [351.5, 684.5], "path": [[341.5, 689.5], [340.5, 688.5], [339.5, 687.5], [338.5, 686.5], [338.5, 685.5], [339.5, 684.5], [339.5, 683.5], [340.5, 682.5], [341.5, 681.5], [342.5, 681.5], [343.5, 682.5], [344.5, 684.5], [344.5, 680.5], [345.5, 679.5], [345.5, 678.5], [346.5, 677.5], [347.5, 676.5], [348.5, 675.5], [356.5, 675.5], [356.5, 676.5], [357.5, 677.5], [358.5, 678.5], [358.5, 679.5], [359.5, 680.5], [359.5, 684.5], [358.5, 685.5], [358.5, 686.5], [359.5, 686.5], [360.5, 687.5], [361.5, 687.5], [362.5, 688.5], [362.5, 689.5], [363.5, 690.5], [363.5, 691.5], [362.5, 692.5], [361.5, 693.5], [360.5, 692.5], [360.5, 690.5], [342.5, 690.5], [342.5, 689.5]]}, -{"id": "txf9b3", "submitted_by": "ajaxtastic", "name": "The Marine Corps War Memorial", "description": "The United States Marine Corps War Memorial is a national memorial located in Virginia and dedicated to all Marines who have given their lives in defense of the United States since 1775. The memorial was inspired by the iconic 1945 photograph of six Marines raising a U.S. flag atop Mount Suribachi during the Battle of Iwo Jima in World War II.", "website": "https://www.nps.gov/gwmp/learn/historyculture/usmcwarmemorial.htm", "subreddit": "/r/AmericanFlagInPlace", "center": [1947.5, 1853.5], "path": [[1963.5, 1867.5], [1963.5, 1853.5], [1955.5, 1852.5], [1953.5, 1855.5], [1950.5, 1852.5], [1956.5, 1849.5], [1952.5, 1841.5], [1943.5, 1837.5], [1932.5, 1836.5], [1929.5, 1836.5], [1929.5, 1839.5], [1941.5, 1850.5], [1940.5, 1857.5], [1938.5, 1863.5], [1935.5, 1867.5]]}, +{"id": "txf9b3", "submitted_by": "ajaxtastic", "name": "Marine Corps War Memorial/Raising the Flag on Iwo Jima", "description": "The United States Marine Corps War Memorial is a national memorial located in Arlington, Virginia. Constructed in 1954, it is dedicated to all Marines who have given their lives in defense of the United States since 1775. The memorial was inspired by the iconic 1945 photograph, 'Raising the Flag on Iwo Jima', of six Marines raising a U.S. flag atop Mount Suribachi during the Battle of Iwo Jima in World War II.\n\nThis was the final design after much competition with the hive mind and others not privy to the design, trying to make the flag a comically flat square.", "website": "https://www.nps.gov/gwmp/learn/historyculture/usmcwarmemorial.htm", "subreddit": "/r/AmericanFlagInPlace", "center": [1947.5, 1853.5], "path": [[1963.5, 1867.5], [1963.5, 1853.5], [1955.5, 1852.5], [1953.5, 1855.5], [1950.5, 1852.5], [1956.5, 1849.5], [1952.5, 1841.5], [1943.5, 1837.5], [1932.5, 1836.5], [1929.5, 1836.5], [1929.5, 1839.5], [1941.5, 1850.5], [1940.5, 1857.5], [1938.5, 1863.5], [1935.5, 1867.5]]}, {"id": "txf90e", "submitted_by": "bonezybad", "name": "Victorville Film Archive", "description": "Logo for the Victorville Film Archive from the web series On Cinema at the Cinema featuring film expertise from film buff Gregg Turkington.", "website": "https://vfa.expert", "subreddit": "/r/OnCinemaAtTheCinema", "center": [1826.5, 157.5], "path": [[1821.5, 155.5], [1821.5, 158.5], [1831.5, 158.5], [1831.5, 155.5]]}, {"id": "txf7vj", "submitted_by": "LelianWeatherwax", "name": "The discworld turtle", "description": "A depiction of the discworld turtle.", "website": "", "subreddit": "/r/discworld", "center": [1669.5, 1365.5], "path": [[1663.5, 1357.5], [1666.5, 1354.5], [1667.5, 1357.5], [1668.5, 1358.5], [1669.5, 1358.5], [1671.5, 1356.5], [1671.5, 1360.5], [1672.5, 1361.5], [1673.5, 1360.5], [1675.5, 1363.5], [1676.5, 1366.5], [1678.5, 1367.5], [1680.5, 1367.5], [1683.5, 1369.5], [1683.5, 1372.5], [1680.5, 1373.5], [1674.5, 1377.5], [1666.5, 1368.5], [1660.5, 1364.5], [1655.5, 1366.5], [1654.5, 1364.5], [1657.5, 1359.5], [1657.5, 1359.5], [1660.5, 1358.5]]}, -{"id": "txf727", "submitted_by": "ajaxtastic", "name": "The Washington Monument", "description": "The Washington Monument is an obelisk within the National Mall in Washington, D.C., built to commemorate George Washington, once commander-in-chief of the Continental Army in the American Revolutionary War and the first President of the United States.", "website": "https://www.nps.gov/wamo/index.htm", "subreddit": "/r/AmericanFlagInPlace", "center": [1875.5, 1854.5], "path": [[1868.5, 1868.5], [1868.5, 1865.5], [1872.5, 1863.5], [1872.5, 1841.5], [1873.5, 1836.5], [1876.5, 1836.5], [1878.5, 1840.5], [1879.5, 1865.5], [1880.5, 1868.5]]}, +{"id": "txf727", "submitted_by": "ajaxtastic", "name": "Washington Monument", "description": "The Washington Monument is an 555-foot-tall marble obelisk within the National Mall in Washington, D.C., built to commemorate George Washington, once commander-in-chief of the Continental Army in the American Revolutionary War and the first President of the United States.", "website": "https://www.nps.gov/wamo/index.htm", "subreddit": "/r/AmericanFlagInPlace", "center": [1875.5, 1854.5], "path": [[1868.5, 1868.5], [1868.5, 1865.5], [1872.5, 1863.5], [1872.5, 1841.5], [1873.5, 1836.5], [1876.5, 1836.5], [1878.5, 1840.5], [1879.5, 1865.5], [1880.5, 1868.5]]}, {"id": "txf6df", "submitted_by": "DaemonG", "name": "The University of Chicago", "description": "The Coat of Arms of the University of Chicago, a private university in the Hyde Park neighborhood of Chicago", "website": "", "subreddit": "/r/uchicago", "center": [1405.5, 1188.5], "path": [[1396.5, 1173.5], [1397.5, 1187.5], [1395.5, 1201.5], [1415.5, 1202.5], [1413.5, 1174.5]]}, -{"id": "txf5pg", "submitted_by": "ajaxtastic", "name": "The Gateway Arch", "description": "The Gateway Arch is a 630-foot tall monument in St. Louis, Missouri. Clad in stainless steel and built in the form of a weighted catenary arch, it is the world's tallest arch.", "website": "https://www.gatewayarch.com/", "subreddit": "/r/AmericanFlagInPlace", "center": [1843.5, 1857.5], "path": [[1828.5, 1867.5], [1832.5, 1852.5], [1839.5, 1843.5], [1847.5, 1843.5], [1854.5, 1855.5], [1856.5, 1861.5], [1856.5, 1867.5]]}, {"id": "txf5p8", "submitted_by": "IronicDigiBiscuit", "name": "My Little Pony G5 Crystal and G4 homage", "description": "This artwork features the Mane 5 and Mane 6 surrounded by the tripony crystals, likely signifying that despite the passing of torches, the fandom will stay connected in some way.\n\nThis specific artwork has been removed any times by several streamers. It was first voided, then replaced by a lemon, then a bird, then was hit by the Meteor. Despite all that, it stayed strong up until the end.", "website": "https://www.equestriadaily.com/", "subreddit": "/r/mylittlepony", "center": [1652.5, 247.5], "path": [[1670.5, 213.5], [1670.5, 213.5], [1687.5, 228.5], [1688.5, 260.5], [1681.5, 280.5], [1618.5, 279.5], [1615.5, 235.5], [1631.5, 212.5], [1631.5, 212.5], [1631.5, 212.5]]}, {"id": "txf4uh", "submitted_by": "Dexston123", "name": "Logo of ZSEiI", "description": "Logo of Zesp\u00f3\u0142 Szk\u00f3\u0142 Elektronicznych i Informatycznych w Sosnowcu made by small group of its students.", "website": "https://zse.edu.pl", "subreddit": "/r/ZSEiI_Elektronik", "center": [1099.5, 1589.5], "path": [[1093.5, 1583.5], [1104.5, 1583.5], [1104.5, 1595.5], [1093.5, 1595.5]]}, -{"id": "txf3rd", "submitted_by": "ajaxtastic", "name": "The Golden Gate Bridge", "description": "The Golden Gate Bridge is a suspension bridge spanning the Golden Gate, the one-mile-wide strait connecting San Francisco Bay and the Pacific Ocean in the State of California.", "website": "https://www.goldengate.org/", "subreddit": "/r/AmericanFlagInPlace", "center": [0.5, 0.5], "path": []}, {"id": "txf3oq", "submitted_by": "Benjamin075", "name": "Rabbits? (Wingless Wingulls)", "description": "A inside joke from a private Discord server of a Pokemon meme, more specifically, a Wingull without wings, a tail, or a beak. Attempts were made to make this meme elsewhere, but they were destroyed by xQc, so it was outsourced to the Chinese (seriously). The Chinese discord server associated with the rest of the zodiac animals was told these were rabbits, and they made them in exchange for us helping to protect the rest of their art.", "website": "https://twitter.com/OoCPokemon/status/1404554888386842631/photo/2", "subreddit": "", "center": [932.5, 1794.5], "path": [[903.5, 1791.5], [903.5, 1796.5], [961.5, 1796.5], [961.5, 1791.5]]}, {"id": "txf3f5", "submitted_by": "dead_5775", "name": "Lincoln", "description": "The cover to the second album by They Might Be Giants.", "website": "", "subreddit": "/r/tmbg", "center": [1860.5, 643.5], "path": [[1855.5, 638.5], [1864.5, 638.5], [1864.5, 647.5], [1855.5, 647.5]]}, {"id": "txf35s", "submitted_by": "sEi_", "name": "Denmark's national bird", "description": "The mute swan was chosen as Denmark's national bird in a viewer poll on Danmarks Radio in 1984.", "website": "", "subreddit": "", "center": [550.5, 330.5], "path": [[537.5, 319.5], [538.5, 342.5], [562.5, 342.5], [562.5, 318.5]]}, {"id": "txf2ci", "submitted_by": "dead_5775", "name": "They Might Be Giants", "description": "The cover to the first album created by They Might Be Giants.", "website": "", "subreddit": "/r/tmbg", "center": [1850.5, 643.5], "path": [[1845.5, 638.5], [1854.5, 638.5], [1854.5, 647.5], [1845.5, 647.5]]}, -{"id": "txf297", "submitted_by": "ajaxtastic", "name": "The Statue of Liberty", "description": "The Statue of Liberty is a colossal neoclassical sculpture on Liberty Island in New York Harbor in New York City, in the United States.", "website": "https://www.nps.gov/stli/index.htm", "subreddit": "/r/AmericanFlagInPlace", "center": [0.5, 0.5], "path": []}, {"id": "txf283", "submitted_by": "mythic_kale", "name": "Seventeen", "description": "A 3rd generation KPop boy group with 13 members founded by PLEDIS Entertainment.", "website": "", "subreddit": "", "center": [1713.5, 886.5], "path": [[1708.5, 880.5], [1708.5, 891.5], [1718.5, 891.5], [1718.5, 880.5]]}, {"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": "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": "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": "\u0c1c\u0c4d\u0c1e\u0c3e (Gnya) the first letter in the Telugu (South Indian language) word for knowledge (\u0c1c\u0c4d\u0c1e\u0c3e\u0c28\u0c02). 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": "txh08i", "submitted_by": "ur8moms", "name": "Gnya", "description": "\u0c1c\u0c4d\u0c1e\u0c3e (Gnya) the first letter in the Telugu (South Indian language) word for knowledge (\u0c1c\u0c4d\u0c1e\u0c3e\u0c28\u0c02). 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]]}, {"id": "txgzap", "submitted_by": "ChaosLanguage", "name": "wetPRAY", "description": "A depiction of the emote wetPRAY from the twitch streamer WetForJesus. After winning a fierce battle with the Spanish group SDLG, the relatively small group of the streamer formed an alliance with Belgium to protect the emote underneath the Belgian flag area.", "website": "https://www.twitch.tv/wetforjesus", "subreddit": "", "center": [1311.5, 1714.5], "path": [[1303.5, 1704.5], [1296.5, 1709.5], [1298.5, 1725.5], [1327.5, 1726.5], [1327.5, 1718.5], [1322.5, 1714.5], [1321.5, 1707.5], [1320.5, 1704.5], [1319.5, 1700.5], [1317.5, 1701.5], [1309.5, 1696.5], [1308.5, 1696.5], [1302.5, 1707.5]]}, -{"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": "https://www.reddit.com/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": "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\u00e9bec'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": "", "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": "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]]}, -{"id": "txgvun", "submitted_by": "HappyMerlin", "name": "The Burgenland coat of arms", "description": "That is the coat of arms for the Austrian state Burgenland. Burgenland is the easternmost and least populous state of Austria", "website": "", "subreddit": "r/austira", "center": [1002.5, 253.5], "path": [[998.5, 249.5], [998.5, 255.5], [999.5, 256.5], [1000.5, 257.5], [1001.5, 258.5], [1003.5, 258.5], [1004.5, 257.5], [1005.5, 256.5], [1006.5, 255.5], [1006.5, 249.5], [998.5, 249.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]]}, +{"id": "txgvun", "submitted_by": "HappyMerlin", "name": "The Burgenland coat of arms", "description": "That is the coat of arms for the Austrian state Burgenland. Burgenland is the easternmost and least populous state of Austria", "website": "", "subreddit": "/r/austira", "center": [1002.5, 253.5], "path": [[998.5, 249.5], [998.5, 255.5], [999.5, 256.5], [1000.5, 257.5], [1001.5, 258.5], [1003.5, 258.5], [1004.5, 257.5], [1005.5, 256.5], [1006.5, 255.5], [1006.5, 249.5], [998.5, 249.5]]}, {"id": "txgvuc", "submitted_by": "kayzermi", "name": "r/burdurland", "description": "r/burdurland is a subreddit where people posting memes and founded by Por\u00e7ay", "website": "", "subreddit": "/r/burdurland", "center": [964.5, 43.5], "path": [[928.5, 0.5], [930.5, 87.5], [999.5, 87.5], [999.5, 0.5]]}, {"id": "txgvgr", "submitted_by": "sNoOoLnI", "name": "The Green H", "description": "Originally created in the location between the Google Chrome Dino and the flag of BIH, the Green H was then re-established above the Arceus. Due to a blue square, the H was then moved to its current location.\nMade to represent a group chat between the original two creators and their friends.", "website": "", "subreddit": "/r/GreenH", "center": [1653.5, 526.5], "path": [[1652.5, 525.5], [1652.5, 527.5], [1654.5, 527.5], [1654.5, 525.5], [1653.5, 525.5], [1653.5, 527.5]]}, {"id": "txgv3v", "submitted_by": "AshikabiKun", "name": "Je me souviens", "description": "'Je me souviens' is Qu\u00e9bec's national motto, and means 'I remember' in French. This motto is also found on Qu\u00e9bec licence plates. The year 1837 marks the start of the Lower Canada Rebellion, an important historical event which should be amongst the things to be remembered.", "website": "https://en.wikipedia.org/wiki/Je_me_souviens", "subreddit": "/r/quebec", "center": [1107.5, 930.5], "path": [[1082.5, 936.5], [1082.5, 924.5], [1132.5, 924.5], [1132.5, 936.5], [1082.5, 936.5]]}, {"id": "txguzl", "submitted_by": "YummyGummyDrops", "name": "Rain World Pearls", "description": "Two pearls from the indie game Rain World by Videocult\n\nThese pearls serve as both a form of currency within the world, and as a way of unlocking lore", "website": "https://store.steampowered.com/app/312520/Rain_World/", "subreddit": "/r/rainworld", "center": [1064.5, 565.5], "path": [[1059.5, 562.5], [1059.5, 562.5], [1059.5, 562.5], [1059.5, 562.5], [1059.5, 562.5], [1069.5, 562.5], [1069.5, 567.5], [1059.5, 567.5]]}, {"id": "txguvm", "submitted_by": "kayzermi", "name": "PQueen Logo", "description": "PQueen \"Pelin Baynazo\u011flu\" is a Twitch streamer from Turkey.", "website": "", "subreddit": "", "center": [1558.5, 922.5], "path": [[1525.5, 898.5], [1526.5, 946.5], [1592.5, 946.5], [1590.5, 898.5]]}, {"id": "txguna", "submitted_by": "Forcoy", "name": "Astro", "description": "Astro was a code name for a yellow head which also originally intended to have a brown cap on top. The actual build is meant to represent the main character from a (currently unreleased) ROBLOX game titled 'Astroboi'.", "website": "https://discord.gg/d6yAYuQ5a7", "subreddit": "", "center": [1802.5, 968.5], "path": [[1800.5, 970.5], [1804.5, 970.5], [1804.5, 966.5], [1800.5, 966.5], [1800.5, 966.5], [1800.5, 966.5], [1800.5, 966.5], [1800.5, 967.5], [1800.5, 967.5], [1800.5, 967.5], [1800.5, 969.5], [1799.5, 966.5], [1798.5, 969.5], [1798.5, 966.5]]}, -{"id": "txgu9o", "submitted_by": "CptHippiehTF", "name": "M\u00f6rk\u00f6 / The Groke", "description": "A character from Moominvalley.", "website": "", "subreddit": "/r/moomin", "center": [623.5, 151.5], "path": [[614.5, 160.5], [632.5, 160.5], [632.5, 142.5], [614.5, 142.5]]}, {"id": "txgtig", "submitted_by": "realunpossible_", "name": "Generation One Starter Pokemon", "description": "This piece was initially just the Squirtle created by a group of floormates at Western Washington University. After finishing the Squirtle, Charmander and Bulbasaur were added by other Pokemon fans without any instruction. A true piece of community work, with almost no official collaboration. A Pikachu was a part of the piece at one point, however that later got removed for other works.", "website": "", "subreddit": "", "center": [1836.5, 17.5], "path": [[1812.5, 2.5], [1866.5, 2.5], [1842.5, 41.5], [1814.5, 25.5], [1812.5, 2.5]]}, -{"id": "txgtew", "submitted_by": "Zade_Roxel", "name": "Simon Belmont", "description": "The main character from the first installment in the Castlevania series of video games.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, {"id": "txgsk7", "submitted_by": "hash255", "name": "Israeli Flag", "description": "", "website": "", "subreddit": "/r/israel", "center": [1523.5, 460.5], "path": [[1560.5, 473.5], [1485.5, 473.5], [1486.5, 446.5], [1561.5, 446.5]]}, {"id": "txgrqi", "submitted_by": "bonezybad", "name": "Large Pink Amongus", "description": "Approximate location of the Large Pink Amongus and its... fountain. War raged for days to apply and erase a large functioning penis as well as other body parts to the Amongus until the Amongus side got bored and surrendered the territory.", "website": "", "subreddit": "/r/amongus", "center": [1388.5, 394.5], "path": [[1330.5, 466.5], [1329.5, 345.5], [1401.5, 344.5], [1401.5, 405.5], [1544.5, 295.5], [1551.5, 305.5], [1400.5, 422.5], [1401.5, 463.5]]}, {"id": "txgro1", "submitted_by": "WingedEgg", "name": "Cutie Frog", "description": "Because Frogs are cute! They're also a trans symbol as frogs are able to change their sex at will", "website": "", "subreddit": "", "center": [576.5, 438.5], "path": [[572.5, 430.5], [580.5, 430.5], [581.5, 431.5], [582.5, 432.5], [583.5, 432.5], [583.5, 438.5], [582.5, 438.5], [581.5, 439.5], [581.5, 440.5], [582.5, 441.5], [583.5, 442.5], [584.5, 443.5], [584.5, 444.5], [584.5, 445.5], [581.5, 445.5], [580.5, 446.5], [579.5, 446.5], [578.5, 445.5], [578.5, 444.5], [575.5, 444.5], [574.5, 445.5], [574.5, 445.5], [573.5, 446.5], [571.5, 446.5], [571.5, 445.5], [571.5, 445.5], [568.5, 445.5], [568.5, 444.5], [568.5, 443.5], [568.5, 442.5], [569.5, 442.5], [571.5, 440.5], [571.5, 439.5], [570.5, 438.5], [569.5, 437.5], [569.5, 433.5], [570.5, 432.5], [572.5, 430.5], [573.5, 429.5], [575.5, 429.5], [575.5, 429.5], [576.5, 429.5], [576.5, 430.5], [577.5, 429.5], [579.5, 429.5], [580.5, 429.5], [580.5, 430.5]]}, {"id": "txgqzt", "submitted_by": "GreatArchitect", "name": "Campbell Soup Can", "description": "A classic Campbell soup can.", "website": "https://www.campbells.com/", "subreddit": "/r/soup", "center": [1325.5, 1808.5], "path": [[1320.5, 1801.5], [1321.5, 1816.5], [1330.5, 1816.5], [1330.5, 1800.5], [1322.5, 1800.5], [1322.5, 1800.5]]}, -{"id": "txgpn4", "submitted_by": "shamalin", "name": "Moe", "description": "The mascot of a private freebuild Minecraft server\nknown for a carnal attraction to cashmere sofas", "website": "moetown.town", "subreddit": "", "center": [1769.5, 1180.5], "path": [[1761.5, 1191.5], [1761.5, 1172.5], [1785.5, 1172.5], [1785.5, 1175.5], [1779.5, 1175.5], [1778.5, 1176.5], [1777.5, 1177.5], [1776.5, 1178.5], [1775.5, 1179.5], [1775.5, 1181.5], [1774.5, 1182.5], [1773.5, 1182.5], [1772.5, 1183.5], [1771.5, 1184.5], [1771.5, 1188.5], [1772.5, 1189.5], [1772.5, 1191.5]]}, +{"id": "txgpn4", "submitted_by": "shamalin", "name": "Moe", "description": "The mascot of a private freebuild Minecraft server\nknown for a carnal attraction to cashmere sofas", "website": "https://moetown.town", "subreddit": "", "center": [1769.5, 1180.5], "path": [[1761.5, 1191.5], [1761.5, 1172.5], [1785.5, 1172.5], [1785.5, 1175.5], [1779.5, 1175.5], [1778.5, 1176.5], [1777.5, 1177.5], [1776.5, 1178.5], [1775.5, 1179.5], [1775.5, 1181.5], [1774.5, 1182.5], [1773.5, 1182.5], [1772.5, 1183.5], [1771.5, 1184.5], [1771.5, 1188.5], [1772.5, 1189.5], [1772.5, 1191.5]]}, {"id": "txgpkc", "submitted_by": "AmazingStranger7487", "name": "Lakshart Nia", "description": "A Twitch Spanish Streamer who plays mostly Minecraft, Phasmophobia, Rust and any survival game.", "website": "", "subreddit": "", "center": [1704.5, 947.5], "path": [[1708.5, 938.5], [1708.5, 956.5], [1699.5, 956.5], [1699.5, 938.5], [1708.5, 938.5], [1699.5, 938.5], [1699.5, 938.5]]}, -{"id": "txgoup", "submitted_by": "AshikabiKun", "name": "Qu\u00e9bec's geographic shape", "description": "The shape of the province of Qu\u00e9bec and the neighbouring Labrador (in the nort-east) as they appear on maps.", "website": "[https://en.wikipedia.org/wiki/Quebec](https://en.wikipedia.org/wiki/Quebec)", "subreddit": "/r/quebec", "center": [926.5, 1041.5], "path": [[917.5, 1017.5], [917.5, 1020.5], [916.5, 1020.5], [916.5, 1025.5], [915.5, 1025.5], [915.5, 1026.5], [916.5, 1026.5], [916.5, 1027.5], [917.5, 1027.5], [917.5, 1030.5], [918.5, 1030.5], [918.5, 1031.5], [918.5, 1032.5], [917.5, 1032.5], [917.5, 1034.5], [916.5, 1034.5], [916.5, 1035.5], [914.5, 1035.5], [914.5, 1036.5], [913.5, 1036.5], [913.5, 1037.5], [912.5, 1037.5], [913.5, 1037.5], [913.5, 1043.5], [912.5, 1043.5], [912.5, 1044.5], [911.5, 1044.5], [911.5, 1047.5], [910.5, 1047.5], [910.5, 1053.5], [911.5, 1053.5], [911.5, 1055.5], [912.5, 1055.5], [912.5, 1056.5], [914.5, 1056.5], [914.5, 1057.5], [915.5, 1057.5], [915.5, 1058.5], [916.5, 1058.5], [916.5, 1057.5], [918.5, 1057.5], [918.5, 1058.5], [919.5, 1058.5], [919.5, 1057.5], [919.5, 1060.5], [923.5, 1060.5], [923.5, 1059.5], [924.5, 1059.5], [924.5, 1058.5], [926.5, 1058.5], [926.5, 1055.5], [927.5, 1055.5], [928.5, 1056.5], [929.5, 1055.5], [930.5, 1054.5], [932.5, 1054.5], [932.5, 1052.5], [934.5, 1052.5], [934.5, 1051.5], [937.5, 1051.5], [937.5, 1050.5], [941.5, 1050.5], [941.5, 1049.5], [942.5, 1049.5], [942.5, 1048.5], [943.5, 1048.5], [943.5, 1045.5], [944.5, 1043.5], [945.5, 1042.5], [946.5, 1041.5], [947.5, 1040.5], [948.5, 1039.5], [947.5, 1037.5], [945.5, 1037.5], [945.5, 1036.5], [943.5, 1036.5], [943.5, 1035.5], [942.5, 1035.5], [942.5, 1034.5], [940.5, 1034.5], [940.5, 1033.5], [939.5, 1033.5], [939.5, 1031.5], [938.5, 1030.5], [937.5, 1030.5], [937.5, 1029.5], [936.5, 1029.5], [936.5, 1028.5], [935.5, 1028.5], [935.5, 1026.5], [934.5, 1026.5], [934.5, 1025.5], [933.5, 1025.5], [933.5, 1024.5], [932.5, 1024.5], [932.5, 1023.5], [932.5, 1025.5], [931.5, 1025.5], [930.5, 1026.5], [929.5, 1027.5], [928.5, 1028.5], [927.5, 1028.5], [927.5, 1026.5], [927.5, 1027.5], [926.5, 1027.5], [925.5, 1027.5], [925.5, 1024.5], [924.5, 1024.5], [924.5, 1022.5], [925.5, 1022.5], [925.5, 1021.5], [924.5, 1021.5], [924.5, 1020.5], [923.5, 1019.5], [922.5, 1018.5], [921.5, 1017.5], [921.5, 1018.5], [918.5, 1018.5], [917.5, 1017.5]]}, -{"id": "txgok7", "submitted_by": "AresWarblade", "name": "0451 - Deus Ex", "description": "The code 0451 unlocks the first locked door in all Deus Ex games as a long running joke. Totalbiscuit was a known fan of the Deus Ex franchise and the r/Deusex maintained it as a commemoration.", "website": "https://www.youtube.com/watch?v=dOIx_i8dTLA", "subreddit": "r/Deusex", "center": [1053.5, 1204.5], "path": [[1046.5, 1201.5], [1061.5, 1201.5], [1061.5, 1207.5], [1045.5, 1206.5], [1045.5, 1201.5]]}, +{"id": "txgoup", "submitted_by": "AshikabiKun", "name": "Qu\u00e9bec's geographic shape", "description": "The shape of the province of Qu\u00e9bec and the neighbouring Labrador (in the nort-east) as they appear on maps.", "website": "https://en.wikipedia.org/wiki/Quebec", "subreddit": "/r/quebec", "center": [926.5, 1041.5], "path": [[917.5, 1017.5], [917.5, 1020.5], [916.5, 1020.5], [916.5, 1025.5], [915.5, 1025.5], [915.5, 1026.5], [916.5, 1026.5], [916.5, 1027.5], [917.5, 1027.5], [917.5, 1030.5], [918.5, 1030.5], [918.5, 1031.5], [918.5, 1032.5], [917.5, 1032.5], [917.5, 1034.5], [916.5, 1034.5], [916.5, 1035.5], [914.5, 1035.5], [914.5, 1036.5], [913.5, 1036.5], [913.5, 1037.5], [912.5, 1037.5], [913.5, 1037.5], [913.5, 1043.5], [912.5, 1043.5], [912.5, 1044.5], [911.5, 1044.5], [911.5, 1047.5], [910.5, 1047.5], [910.5, 1053.5], [911.5, 1053.5], [911.5, 1055.5], [912.5, 1055.5], [912.5, 1056.5], [914.5, 1056.5], [914.5, 1057.5], [915.5, 1057.5], [915.5, 1058.5], [916.5, 1058.5], [916.5, 1057.5], [918.5, 1057.5], [918.5, 1058.5], [919.5, 1058.5], [919.5, 1057.5], [919.5, 1060.5], [923.5, 1060.5], [923.5, 1059.5], [924.5, 1059.5], [924.5, 1058.5], [926.5, 1058.5], [926.5, 1055.5], [927.5, 1055.5], [928.5, 1056.5], [929.5, 1055.5], [930.5, 1054.5], [932.5, 1054.5], [932.5, 1052.5], [934.5, 1052.5], [934.5, 1051.5], [937.5, 1051.5], [937.5, 1050.5], [941.5, 1050.5], [941.5, 1049.5], [942.5, 1049.5], [942.5, 1048.5], [943.5, 1048.5], [943.5, 1045.5], [944.5, 1043.5], [945.5, 1042.5], [946.5, 1041.5], [947.5, 1040.5], [948.5, 1039.5], [947.5, 1037.5], [945.5, 1037.5], [945.5, 1036.5], [943.5, 1036.5], [943.5, 1035.5], [942.5, 1035.5], [942.5, 1034.5], [940.5, 1034.5], [940.5, 1033.5], [939.5, 1033.5], [939.5, 1031.5], [938.5, 1030.5], [937.5, 1030.5], [937.5, 1029.5], [936.5, 1029.5], [936.5, 1028.5], [935.5, 1028.5], [935.5, 1026.5], [934.5, 1026.5], [934.5, 1025.5], [933.5, 1025.5], [933.5, 1024.5], [932.5, 1024.5], [932.5, 1023.5], [932.5, 1025.5], [931.5, 1025.5], [930.5, 1026.5], [929.5, 1027.5], [928.5, 1028.5], [927.5, 1028.5], [927.5, 1026.5], [927.5, 1027.5], [926.5, 1027.5], [925.5, 1027.5], [925.5, 1024.5], [924.5, 1024.5], [924.5, 1022.5], [925.5, 1022.5], [925.5, 1021.5], [924.5, 1021.5], [924.5, 1020.5], [923.5, 1019.5], [922.5, 1018.5], [921.5, 1017.5], [921.5, 1018.5], [918.5, 1018.5], [917.5, 1017.5]]}, +{"id": "txgok7", "submitted_by": "AresWarblade", "name": "0451 - Deus Ex", "description": "The code 0451 unlocks the first locked door in all Deus Ex games as a long running joke. Totalbiscuit was a known fan of the Deus Ex franchise and the r/Deusex maintained it as a commemoration.", "website": "https://www.youtube.com/watch?v=dOIx_i8dTLA", "subreddit": "/r/Deusex", "center": [1053.5, 1204.5], "path": [[1046.5, 1201.5], [1061.5, 1201.5], [1061.5, 1207.5], [1045.5, 1206.5], [1045.5, 1201.5]]}, {"id": "txgo67", "submitted_by": "MonkeDrow", "name": "CHEWIBS", "description": "Mark of \"RUDAH\"\nby a French Gamer Porco Pyko", "website": "", "subreddit": "", "center": [917.5, 1476.5], "path": [[915.5, 1465.5], [920.5, 1465.5], [920.5, 1487.5], [915.5, 1488.5]]}, -{"id": "txgn51", "submitted_by": "GI_dot_Alex", "name": "Slider", "description": "A Slider from the game osu! \n\nFormed around Peppy", "website": "osu.ppy.sh", "subreddit": "r/osugame", "center": [1726.5, 736.5], "path": [[1726.5, 672.5], [1723.5, 673.5], [1718.5, 678.5], [1710.5, 685.5], [1709.5, 688.5], [1708.5, 690.5], [1704.5, 695.5], [1704.5, 698.5], [1703.5, 699.5], [1703.5, 706.5], [1704.5, 707.5], [1704.5, 709.5], [1705.5, 710.5], [1706.5, 711.5], [1707.5, 712.5], [1707.5, 716.5], [1704.5, 717.5], [1702.5, 718.5], [1700.5, 719.5], [1691.5, 728.5], [1691.5, 731.5], [1690.5, 732.5], [1690.5, 733.5], [1689.5, 734.5], [1689.5, 737.5], [1688.5, 738.5], [1688.5, 755.5], [1689.5, 764.5], [1690.5, 765.5], [1692.5, 773.5], [1697.5, 779.5], [1699.5, 781.5], [1747.5, 781.5], [1748.5, 780.5], [1755.5, 780.5], [1756.5, 779.5], [1757.5, 779.5], [1763.5, 773.5], [1763.5, 766.5], [1764.5, 765.5], [1764.5, 752.5], [1761.5, 749.5], [1761.5, 738.5], [1758.5, 732.5], [1755.5, 726.5], [1751.5, 723.5], [1750.5, 721.5], [1747.5, 720.5], [1744.5, 719.5], [1750.5, 709.5], [1750.5, 706.5], [1751.5, 706.5], [1750.5, 693.5], [1735.5, 677.5], [1727.5, 672.5], [1725.5, 672.5], [1725.5, 672.5], [1722.5, 674.5]]}, +{"id": "txgn51", "submitted_by": "GI_dot_Alex", "name": "Slider", "description": "A slider from the game osu! \n\nFormed around Peppy, the creator of osu!", "website": "https://osu.ppy.sh", "subreddit": "/r/osuplace", "center": [1726.5, 736.5], "path": [[1726.5, 672.5], [1723.5, 673.5], [1718.5, 678.5], [1710.5, 685.5], [1709.5, 688.5], [1708.5, 690.5], [1704.5, 695.5], [1704.5, 698.5], [1703.5, 699.5], [1703.5, 706.5], [1704.5, 707.5], [1704.5, 709.5], [1705.5, 710.5], [1706.5, 711.5], [1707.5, 712.5], [1707.5, 716.5], [1704.5, 717.5], [1702.5, 718.5], [1700.5, 719.5], [1691.5, 728.5], [1691.5, 731.5], [1690.5, 732.5], [1690.5, 733.5], [1689.5, 734.5], [1689.5, 737.5], [1688.5, 738.5], [1688.5, 755.5], [1689.5, 764.5], [1690.5, 765.5], [1692.5, 773.5], [1697.5, 779.5], [1699.5, 781.5], [1747.5, 781.5], [1748.5, 780.5], [1755.5, 780.5], [1756.5, 779.5], [1757.5, 779.5], [1763.5, 773.5], [1763.5, 766.5], [1764.5, 765.5], [1764.5, 752.5], [1761.5, 749.5], [1761.5, 738.5], [1758.5, 732.5], [1755.5, 726.5], [1751.5, 723.5], [1750.5, 721.5], [1747.5, 720.5], [1744.5, 719.5], [1750.5, 709.5], [1750.5, 706.5], [1751.5, 706.5], [1750.5, 693.5], [1735.5, 677.5], [1727.5, 672.5], [1725.5, 672.5], [1725.5, 672.5], [1722.5, 674.5]]}, {"id": "txgn01", "submitted_by": "Any_Insurance5057", "name": "Paulicio", "description": "La mascota de -Los Inframundos-", "website": "", "subreddit": "", "center": [843.5, 1664.5], "path": [[846.5, 1660.5], [840.5, 1660.5], [840.5, 1668.5], [846.5, 1668.5]]}, {"id": "txgms2", "submitted_by": "landoniousth3", "name": "Inscryption Snail", "description": "A character from the game Inscryption that is often celebrated by the alt-right for it's particularly hateful demeanor.", "website": "", "subreddit": "/r/inscryption", "center": [98.5, 323.5], "path": [[102.5, 327.5], [102.5, 318.5], [96.5, 318.5], [94.5, 329.5]]}, -{"id": "txglk5", "submitted_by": "datboi906", "name": "The red pp", "description": "a small red pp that has been fought over and maintained since the first hour of rplace mostly maintained by datboi906 and his alts", "website": "", "subreddit": "r/hornyresistance", "center": [755.5, 771.5], "path": [[760.5, 767.5], [753.5, 777.5], [753.5, 769.5], [758.5, 767.5]]}, +{"id": "txglk5", "submitted_by": "datboi906", "name": "The red pp", "description": "a small red pp that has been fought over and maintained since the first hour of rplace mostly maintained by datboi906 and his alts", "website": "", "subreddit": "/r/hornyresistance", "center": [755.5, 771.5], "path": [[760.5, 767.5], [753.5, 777.5], [753.5, 769.5], [758.5, 767.5]]}, {"id": "txgkzo", "submitted_by": "PrettyLost", "name": "Jerry the Blue Alpaca", "description": "", "website": "", "subreddit": "", "center": [1718.5, 935.5], "path": [[1708.5, 927.5], [1708.5, 929.5], [1709.5, 929.5], [1710.5, 930.5], [1710.5, 940.5], [1711.5, 940.5], [1711.5, 941.5], [1712.5, 941.5], [1712.5, 942.5], [1713.5, 942.5], [1724.5, 942.5], [1724.5, 941.5], [1725.5, 941.5], [1725.5, 940.5], [1726.5, 940.5], [1726.5, 930.5], [1726.5, 929.5], [1728.5, 929.5], [1728.5, 927.5], [1726.5, 927.5], [1726.5, 928.5], [1724.5, 928.5], [1724.5, 929.5], [1721.5, 929.5], [1721.5, 928.5], [1715.5, 928.5], [1715.5, 929.5], [1713.5, 929.5], [1712.5, 929.5], [1712.5, 928.5], [1710.5, 928.5], [1710.5, 927.5]]}, {"id": "txgjlo", "submitted_by": "Beginning-Camera-332", "name": "Lucario Aka Blue", "description": "Idea created in the \"Pokemon in r/place Discord\" with help from r/lucario, r/pokemon and special thanks to the r/chelseafc for the use of the area.", "website": "", "subreddit": "", "center": [1170.5, 1823.5], "path": [[1165.5, 1830.5], [1174.5, 1830.5], [1177.5, 1822.5], [1177.5, 1817.5], [1177.5, 1816.5], [1164.5, 1816.5], [1165.5, 1823.5], [1165.5, 1823.5], [1165.5, 1819.5]]}, {"id": "txgjcl", "submitted_by": "MarziTheMartian", "name": "FUCK LOCKLEAR LONG LIVE SEA OF THIEVES!", "description": "The sea of thieves community got overrun by locklear twice simply because he didn't like the new update!", "website": "https://www.seaofthieves.com/", "subreddit": "", "center": [418.5, 1196.5], "path": [[397.5, 1172.5], [439.5, 1172.5], [439.5, 1219.5], [397.5, 1219.5], [397.5, 1209.5], [397.5, 1209.5], [397.5, 1200.5]]}, -{"id": "txgjbv", "submitted_by": "Sinaboo3", "name": "The Living Tombstone", "description": "Small icon of zero_one from the band The Living Tombstone", "website": "https://www.youtube.com/c/TheLivingTombstone", "subreddit": "/r/TheLivingTombstone/", "center": [1755.5, 1368.5], "path": [[1751.5, 1364.5], [1759.5, 1364.5], [1759.5, 1371.5], [1751.5, 1371.5]]}, +{"id": "txgjbv", "submitted_by": "Sinaboo3", "name": "The Living Tombstone", "description": "Small icon of zero_one from the band The Living Tombstone", "website": "https://www.youtube.com/c/TheLivingTombstone", "subreddit": "/r/TheLivingTombstone", "center": [1755.5, 1368.5], "path": [[1751.5, 1364.5], [1759.5, 1364.5], [1759.5, 1371.5], [1751.5, 1371.5]]}, {"id": "txgj84", "submitted_by": "ergecs", "name": "Internet Explorer", "description": "Internet Explorer (commonly abbreviated IE or MSIE) is a discontinued series of graphical web browsers developed by Microsoft and included in the Microsoft Windows line of operating systems, starting in 1995.", "website": "https://en.wikipedia.org/wiki/Internet_Explorer", "subreddit": "/r/placestart", "center": [118.5, 1985.5], "path": [[124.5, 1980.5], [124.5, 1990.5], [112.5, 1990.5], [112.5, 1980.5], [112.5, 1980.5]]}, {"id": "txghi1", "submitted_by": "RookeMistake", "name": "Love DL", "description": "A personal gift to DL, a girl loved very much.", "website": "", "subreddit": "", "center": [1163.5, 1762.5], "path": [[1155.5, 1759.5], [1171.5, 1759.5], [1171.5, 1764.5], [1155.5, 1764.5]]}, {"id": "txgh4y", "submitted_by": "JellyBeanTrees", "name": " Aliensrock (Tyler)", "description": "Tyler is a variety youtuber and streamer who mostly plays puzzle and strategy games. He is known for his Bloons TD, Turmoil and PolyBridge Series", "website": "https://www.youtube.com/channel/UCKtix2xNNXdcEfEFnoOnvMw", "subreddit": "", "center": [1859.5, 1680.5], "path": [[1867.5, 1688.5], [1852.5, 1688.5], [1852.5, 1672.5], [1866.5, 1672.5]]}, {"id": "txggh0", "submitted_by": "thwomp_supreme", "name": "Very Cool People", "description": "A small tribute to the Very Cool People server on Discord.", "website": "", "subreddit": "", "center": [1762.5, 1124.5], "path": [[1758.5, 1122.5], [1758.5, 1122.5], [1758.5, 1126.5], [1766.5, 1126.5], [1766.5, 1122.5]]}, {"id": "txggge", "submitted_by": "RAMTurtle", "name": "Block Wars", "description": "Block Wars is a Minecraft event created by (at the time) MCC Testers Emyrald and Tommy333, with its first event premiering in November 2020. The players are generally other former and current MCC Testers, or other friends and small creators. The 8x8 art is their current logo, with each color representing one of the four teams in each event. The art had to be moved three times before finding a home within the MCC section.", "website": "https://twitter.com/blockwarsevent", "subreddit": "", "center": [891.5, 548.5], "path": [[886.5, 552.5], [886.5, 543.5], [895.5, 543.5], [895.5, 552.5], [886.5, 552.5]]}, -{"id": "txgg70", "submitted_by": "Eragonnogare", "name": "Katawa Shoujo Hanako", "description": "Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku Academy, located somewhere in modern Japan. Hisao Nakai, an average boy living a \"normal\" life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends\u2014and perhaps love, if he plays his cards right. This displays the name of the subreddit, while having a pixel art depiction of Hanako, one of the main girls of the game, on the right portion of it.", "website": "www.katawa-shoujo.com", "subreddit": "r/katawashoujo", "center": [1575.5, 1178.5], "path": [[1550.5, 1172.5], [1600.5, 1172.5], [1600.5, 1184.5], [1550.5, 1184.5]]}, -{"id": "txgfu0", "submitted_by": "RafevHexyn", "name": "Canga\u00e7o/Cangaceiros (hat)", "description": "Canga\u00e7o was a phenomenon of Northeast Brazil in the late 19th and early 20th centuries. This region of Brazil is known for its aridness and hard way of life, and in a form of 'social banditry' against the government, many men and women decided to become nomadic bandits, roaming the hinterlands seeking money, food and revenge.", "website": "[https://en.wikipedia.org/wiki/Canga%C3%A7o](https://en.wikipedia.org/wiki/Canga%C3%A7o)", "subreddit": "/r/Brasil", "center": [1091.5, 572.5], "path": [[1089.5, 578.5], [1087.5, 578.5], [1087.5, 577.5], [1087.5, 576.5], [1086.5, 575.5], [1085.5, 575.5], [1084.5, 574.5], [1083.5, 573.5], [1082.5, 574.5], [1082.5, 575.5], [1082.5, 574.5], [1083.5, 573.5], [1084.5, 572.5], [1085.5, 571.5], [1086.5, 571.5], [1087.5, 570.5], [1088.5, 569.5], [1089.5, 569.5], [1090.5, 568.5], [1091.5, 568.5], [1092.5, 568.5], [1093.5, 568.5], [1093.5, 569.5], [1094.5, 569.5], [1094.5, 570.5], [1095.5, 570.5], [1096.5, 570.5], [1096.5, 571.5], [1097.5, 571.5], [1098.5, 571.5], [1098.5, 572.5], [1098.5, 573.5], [1099.5, 573.5], [1099.5, 574.5], [1100.5, 574.5], [1100.5, 575.5], [1100.5, 576.5], [1100.5, 575.5], [1100.5, 574.5], [1099.5, 574.5], [1098.5, 574.5], [1097.5, 574.5], [1097.5, 575.5], [1097.5, 576.5], [1097.5, 577.5], [1096.5, 578.5], [1095.5, 577.5], [1095.5, 576.5], [1095.5, 575.5], [1095.5, 574.5], [1095.5, 573.5], [1094.5, 572.5], [1093.5, 572.5], [1091.5, 572.5], [1090.5, 572.5], [1089.5, 572.5], [1089.5, 573.5], [1088.5, 574.5], [1088.5, 575.5], [1089.5, 576.5], [1089.5, 577.5], [1088.5, 578.5], [1087.5, 577.5], [1087.5, 576.5], [1086.5, 575.5], [1085.5, 575.5], [1084.5, 574.5], [1083.5, 574.5]]}, -{"id": "txgfeh", "submitted_by": "danuhpl0x", "name": "University of the Philippines", "description": "Marker made by students from University of the Philippines, one of the top research universities in the PH.", "website": "https://up.edu.ph/", "subreddit": "r/peyups", "center": [401.5, 1615.5], "path": [[394.5, 1611.5], [394.5, 1619.5], [407.5, 1619.5], [407.5, 1611.5]]}, -{"id": "txgf8h", "submitted_by": "TheJollyDuck", "name": "Ratge", "description": "An emote popularized by NymN and part of the animal variants of Okayge and Okayeg", "website": "[https://7tv.app/emotes/60ba145c31abfff37bd0d280](https://7tv.app/emotes/60ba145c31abfff37bd0d280)", "subreddit": "r/redditandchill", "center": [1677.5, 1000.5], "path": [[1646.5, 957.5], [1707.5, 957.5], [1707.5, 1043.5], [1646.5, 1043.5], [1646.5, 957.5]]}, +{"id": "txgg70", "submitted_by": "Eragonnogare", "name": "Katawa Shoujo Hanako", "description": "Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku Academy, located somewhere in modern Japan. Hisao Nakai, an average boy living a \"normal\" life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends\u2014and perhaps love, if he plays his cards right. This displays the name of the subreddit, while having a pixel art depiction of Hanako, one of the main girls of the game, on the right portion of it.", "website": "https://www.katawa-shoujo.com", "subreddit": "/r/katawashoujo", "center": [1575.5, 1178.5], "path": [[1550.5, 1172.5], [1600.5, 1172.5], [1600.5, 1184.5], [1550.5, 1184.5]]}, +{"id": "txgfu0", "submitted_by": "RafevHexyn", "name": "Canga\u00e7o/Cangaceiros (hat)", "description": "Canga\u00e7o was a phenomenon of Northeast Brazil in the late 19th and early 20th centuries. This region of Brazil is known for its aridness and hard way of life, and in a form of 'social banditry' against the government, many men and women decided to become nomadic bandits, roaming the hinterlands seeking money, food and revenge.", "website": "https://en.wikipedia.org/wiki/Canga%C3%A7o", "subreddit": "/r/Brasil", "center": [1091.5, 572.5], "path": [[1089.5, 578.5], [1087.5, 578.5], [1087.5, 577.5], [1087.5, 576.5], [1086.5, 575.5], [1085.5, 575.5], [1084.5, 574.5], [1083.5, 573.5], [1082.5, 574.5], [1082.5, 575.5], [1082.5, 574.5], [1083.5, 573.5], [1084.5, 572.5], [1085.5, 571.5], [1086.5, 571.5], [1087.5, 570.5], [1088.5, 569.5], [1089.5, 569.5], [1090.5, 568.5], [1091.5, 568.5], [1092.5, 568.5], [1093.5, 568.5], [1093.5, 569.5], [1094.5, 569.5], [1094.5, 570.5], [1095.5, 570.5], [1096.5, 570.5], [1096.5, 571.5], [1097.5, 571.5], [1098.5, 571.5], [1098.5, 572.5], [1098.5, 573.5], [1099.5, 573.5], [1099.5, 574.5], [1100.5, 574.5], [1100.5, 575.5], [1100.5, 576.5], [1100.5, 575.5], [1100.5, 574.5], [1099.5, 574.5], [1098.5, 574.5], [1097.5, 574.5], [1097.5, 575.5], [1097.5, 576.5], [1097.5, 577.5], [1096.5, 578.5], [1095.5, 577.5], [1095.5, 576.5], [1095.5, 575.5], [1095.5, 574.5], [1095.5, 573.5], [1094.5, 572.5], [1093.5, 572.5], [1091.5, 572.5], [1090.5, 572.5], [1089.5, 572.5], [1089.5, 573.5], [1088.5, 574.5], [1088.5, 575.5], [1089.5, 576.5], [1089.5, 577.5], [1088.5, 578.5], [1087.5, 577.5], [1087.5, 576.5], [1086.5, 575.5], [1085.5, 575.5], [1084.5, 574.5], [1083.5, 574.5]]}, +{"id": "txgfeh", "submitted_by": "danuhpl0x", "name": "University of the Philippines", "description": "Marker made by students from University of the Philippines, one of the top research universities in the PH.", "website": "https://up.edu.ph/", "subreddit": "/r/peyups", "center": [401.5, 1615.5], "path": [[394.5, 1611.5], [394.5, 1619.5], [407.5, 1619.5], [407.5, 1611.5]]}, +{"id": "txgf8h", "submitted_by": "TheJollyDuck", "name": "Ratge", "description": "An emote popularized by NymN and part of the animal variants of Okayge and Okayeg", "website": "https://7tv.app/emotes/60ba145c31abfff37bd0d280", "subreddit": "/r/redditandchill", "center": [1677.5, 1000.5], "path": [[1646.5, 957.5], [1707.5, 957.5], [1707.5, 1043.5], [1646.5, 1043.5], [1646.5, 957.5]]}, {"id": "txgf59", "submitted_by": "RikiArmstrong", "name": "Mauritius Flag", "description": "", "website": "", "subreddit": "", "center": [1124.5, 77.5], "path": [[1115.5, 79.5], [1115.5, 74.5], [1132.5, 74.5], [1132.5, 79.5]]}, {"id": "txgf2k", "submitted_by": "hyena-", "name": "Blazed & Spoonkid", "description": "Icons of twitch streamers Blazed & Spoonkid. This plot of land was heavily targeted and attacked by several streamers, but Blazed formed an alliance with the surrounding r/malaysia, r/singapore, r/balangdesh and the Chain Pact Allies, which dedicated themselves to help defend this plot of land.", "website": "https://www.twitch.tv/blazed", "subreddit": "", "center": [345.5, 1000.5], "path": [[324.5, 993.5], [367.5, 993.5], [367.5, 999.5], [368.5, 999.5], [368.5, 1007.5], [336.5, 1007.5], [336.5, 1009.5], [324.5, 1009.5]]}, -{"id": "txgeyc", "submitted_by": "U-sef2", "name": "Fuslie", "description": "Variety Twitch streamer and content creator for 100Thieves Org. ", "website": "twitch.tv/fuslie", "subreddit": "r/fuslie", "center": [1865.5, 1623.5], "path": [[1869.5, 1618.5], [1860.5, 1618.5], [1860.5, 1628.5], [1869.5, 1628.5], [1869.5, 1618.5]]}, -{"id": "txges7", "submitted_by": "WiseGinger", "name": "Former Hungarian Parliament", "description": "The hungarian flag that was originally located here contained a depiction of the hungarian Parliament building. Users eventually depicted it being set on fire and destroyed after the hungarian election results of April 4, 2022. It was not rebuilt before the nordic takeover.", "website": "", "subreddit": "r/hungary", "center": [709.5, 129.5], "path": [[614.5, 120.5], [800.5, 120.5], [800.5, 138.5], [615.5, 136.5]]}, +{"id": "txgeyc", "submitted_by": "U-sef2", "name": "Fuslie", "description": "Variety Twitch streamer and content creator for 100Thieves Org. ", "website": "https://twitch.tv/fuslie", "subreddit": "/r/fuslie", "center": [1865.5, 1623.5], "path": [[1869.5, 1618.5], [1860.5, 1618.5], [1860.5, 1628.5], [1869.5, 1628.5], [1869.5, 1618.5]]}, +{"id": "txges7", "submitted_by": "WiseGinger", "name": "Former Hungarian Parliament", "description": "The hungarian flag that was originally located here contained a depiction of the hungarian Parliament building. Users eventually depicted it being set on fire and destroyed after the hungarian election results of April 4, 2022. It was not rebuilt before the nordic takeover.", "website": "", "subreddit": "/r/hungary", "center": [709.5, 129.5], "path": [[614.5, 120.5], [800.5, 120.5], [800.5, 138.5], [615.5, 136.5]]}, {"id": "txgeio", "submitted_by": "RikiArmstrong", "name": "Dodo", "description": "Dodo added by Mauritius", "website": "", "subreddit": "", "center": [1112.5, 74.5], "path": [[1112.5, 68.5], [1117.5, 70.5], [1117.5, 74.5], [1113.5, 74.5], [1113.5, 78.5], [1106.5, 79.5], [1107.5, 75.5]]}, -{"id": "txge9j", "submitted_by": "No-Zookeepergame8517", "name": "RiusPlay", "description": "RiusPlay, the craziest youtuber CHICKEN in the WORLD. He is one of the members of the COMPAS youtubers group.", "website": "[https://www.youtube.com/c/RiusPlay](https://www.youtube.com/c/RiusPlay)", "subreddit": "/r/riusplay", "center": [1815.5, 359.5], "path": [[1817.5, 367.5], [1818.5, 361.5], [1818.5, 354.5], [1817.5, 353.5], [1816.5, 352.5], [1812.5, 352.5], [1810.5, 353.5], [1811.5, 354.5], [1811.5, 361.5], [1812.5, 363.5], [1816.5, 367.5]]}, +{"id": "txge9j", "submitted_by": "No-Zookeepergame8517", "name": "RiusPlay", "description": "RiusPlay, the craziest youtuber CHICKEN in the WORLD. He is one of the members of the COMPAS youtubers group.", "website": "https://www.youtube.com/c/RiusPlay", "subreddit": "/r/riusplay", "center": [1815.5, 359.5], "path": [[1817.5, 367.5], [1818.5, 361.5], [1818.5, 354.5], [1817.5, 353.5], [1816.5, 352.5], [1812.5, 352.5], [1810.5, 353.5], [1811.5, 354.5], [1811.5, 361.5], [1812.5, 363.5], [1816.5, 367.5]]}, {"id": "txgdqy", "submitted_by": "VicoMico", "name": "JalineKS Logo", "description": "The logo of a Mexican Streamer built by her community of followers", "website": "https://twitch.tv/jalineks", "subreddit": "", "center": [1425.5, 603.5], "path": [[1421.5, 599.5], [1428.5, 599.5], [1428.5, 606.5], [1421.5, 606.5], [1421.5, 599.5], [1428.5, 599.5], [1428.5, 606.5], [1421.5, 606.5], [1421.5, 599.5], [1428.5, 599.5]]}, -{"id": "txgdch", "submitted_by": "V_I_C14", "name": "Tevin", "description": "A chibi representation of Twitch streamer tevin_vr", "website": "twitch.tv/tevin_vr", "subreddit": "", "center": [1452.5, 357.5], "path": [[1439.5, 365.5], [1439.5, 349.5], [1465.5, 349.5], [1465.5, 365.5]]}, -{"id": "txgdb5", "submitted_by": "Eragonnogare", "name": "Four Leaf Studios Logo", "description": "Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku Academy, located somewhere in modern Japan. Hisao Nakai, an average boy living a \\\\\\\"normal\\\\\\\" life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends\u2014and perhaps love, if he plays his cards right. This is the logo for Four Leaf Studios, the developers of the game. To the right, you can see the heart that is the game's main logo.", "website": "www.katawa-shoujo.com", "subreddit": "r/katawashoujo", "center": [0.5, 0.5], "path": []}, -{"id": "txgcta", "submitted_by": "danuhpl0x", "name": "TXT", "description": "Album art of K-Pop boy group TXT (Tomorrow X Together) for their 3rd mini album, \"Minisode1: Blue Hour\".", "website": "https://ibighit.com/txt/eng/discography/", "subreddit": "r/TomorrowByTogether/", "center": [401.5, 1626.5], "path": [[394.5, 1620.5], [394.5, 1632.5], [407.5, 1633.5], [407.5, 1620.5]]}, +{"id": "txgdch", "submitted_by": "V_I_C14", "name": "Tevin", "description": "A chibi representation of Twitch streamer tevin_vr", "website": "https://twitch.tv/tevin_vr", "subreddit": "", "center": [1452.5, 357.5], "path": [[1439.5, 365.5], [1439.5, 349.5], [1465.5, 349.5], [1465.5, 365.5]]}, +{"id": "txgcta", "submitted_by": "danuhpl0x", "name": "TXT", "description": "Album art of K-Pop boy group TXT (Tomorrow X Together) for their 3rd mini album, \"Minisode1: Blue Hour\".", "website": "https://ibighit.com/txt/eng/discography/", "subreddit": "/r/TomorrowByTogether", "center": [401.5, 1626.5], "path": [[394.5, 1620.5], [394.5, 1632.5], [407.5, 1633.5], [407.5, 1620.5]]}, {"id": "txgcjt", "submitted_by": "Imaginary-Kale4259", "name": "hat mouse", "description": "from the game Stardew valley A mouse opens a shop selling hats to the player", "website": "https://stardewvalleywiki.com/Abandoned_House", "subreddit": "", "center": [1735.5, 970.5], "path": [[1728.5, 964.5], [1728.5, 967.5], [1729.5, 968.5], [1728.5, 969.5], [1728.5, 971.5], [1732.5, 971.5], [1732.5, 973.5], [1733.5, 974.5], [1732.5, 975.5], [1732.5, 976.5], [1731.5, 977.5], [1729.5, 977.5], [1740.5, 977.5], [1740.5, 976.5], [1741.5, 976.5], [1741.5, 974.5], [1741.5, 976.5], [1740.5, 976.5], [1739.5, 975.5], [1738.5, 975.5], [1736.5, 973.5], [1735.5, 974.5], [1736.5, 975.5], [1738.5, 974.5], [1739.5, 974.5], [1737.5, 973.5], [1738.5, 972.5], [1739.5, 972.5], [1740.5, 971.5], [1740.5, 969.5], [1739.5, 968.5], [1740.5, 967.5], [1740.5, 964.5], [1737.5, 964.5], [1735.5, 964.5], [1733.5, 964.5], [1732.5, 965.5], [1730.5, 965.5], [1730.5, 964.5]]}, -{"id": "txgcbg", "submitted_by": "roll9898", "name": "Level 1 Techs", "description": "Tech youtube channel", "website": "[https://level1techs.com/](https://level1techs.com/)", "subreddit": "/r/level1techs/", "center": [122.5, 771.5], "path": [[117.5, 765.5], [127.5, 765.5], [128.5, 765.5], [128.5, 777.5], [121.5, 777.5], [121.5, 777.5], [123.5, 777.5], [121.5, 777.5], [121.5, 777.5], [117.5, 781.5]]}, +{"id": "txgcbg", "submitted_by": "roll9898", "name": "Level 1 Techs", "description": "Tech youtube channel", "website": "https://level1techs.com/", "subreddit": "/r/level1techs", "center": [122.5, 771.5], "path": [[117.5, 765.5], [127.5, 765.5], [128.5, 765.5], [128.5, 777.5], [121.5, 777.5], [121.5, 777.5], [123.5, 777.5], [121.5, 777.5], [121.5, 777.5], [117.5, 781.5]]}, {"id": "txgc87", "submitted_by": "SirOllie_", "name": "Muumin", "description": "Its a series of novels and comics by the Finnish writer and illustrator Tove Jansson and her brother Lars Jansson. It also has a TV series.", "website": "https://www.moomin.com/en/", "subreddit": "/r/Suomi", "center": [1239.5, 1353.5], "path": [[1212.5, 1361.5], [1213.5, 1349.5], [1227.5, 1348.5], [1229.5, 1345.5], [1233.5, 1344.5], [1231.5, 1341.5], [1232.5, 1338.5], [1233.5, 1340.5], [1234.5, 1341.5], [1238.5, 1337.5], [1241.5, 1342.5], [1243.5, 1345.5], [1246.5, 1342.5], [1260.5, 1343.5], [1262.5, 1348.5], [1262.5, 1352.5], [1262.5, 1359.5], [1261.5, 1362.5], [1212.5, 1362.5]]}, -{"id": "txgc65", "submitted_by": "hyena-", "name": "BirdsArentReal", "description": "Acronym for r/BirdsArentReal.\nA subreddit dedicated to expose the U.S. Government replacing birds with drone replicas designed to spy on the American public. r/BirdsArentReal used to own the spot where r/singapore now occupies, having a full text instead of the acronym, but was overran by the combined efforts of r/singapore and r/malaysia. After negotiation efforts, r/singapore agreed to help r/BirdsArentReal maintain a tiny plot with their land.", "website": "https://birdsarentreal.com/", "subreddit": "r/BirdsArentReal", "center": [292.5, 981.5], "path": [[285.5, 978.5], [300.5, 978.5], [299.5, 979.5], [299.5, 980.5], [298.5, 981.5], [298.5, 985.5], [285.5, 985.5]]}, -{"id": "txgbsu", "submitted_by": "Yord-Man", "name": "SHOWER ORANGE", "description": "An orange, ode to r/ShowerOrange", "website": "", "subreddit": "r/ShowerOrange", "center": [1082.5, 1845.5], "path": [[1139.5, 1804.5], [1032.5, 1882.5], [1026.5, 1854.5], [1053.5, 1821.5], [1124.5, 1798.5], [1138.5, 1797.5], [1140.5, 1828.5], [1098.5, 1836.5], [1107.5, 1826.5], [1138.5, 1803.5], [1045.5, 1892.5], [1030.5, 1885.5], [1100.5, 1830.5], [1139.5, 1800.5], [1081.5, 1894.5], [1047.5, 1892.5], [1107.5, 1834.5], [1110.5, 1834.5], [1135.5, 1806.5], [1094.5, 1891.5], [1085.5, 1887.5]]}, -{"id": "txgbp3", "submitted_by": "Eragonnogare", "name": "Katawa Shoujo Heart", "description": "Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku Academy, located somewhere in modern Japan. Hisao Nakai, an average boy living a \"normal\" life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends\u2014and perhaps love, if he plays his cards right. The heart design is the logo of the game, and a direct precursor to this design was on the final image of the previous, 2017, r/place. To the left, you can see the logo for Four Leaf Studios, the developers of the game.", "website": "www.katawa-shoujo.com", "subreddit": "r/katawashoujo", "center": [1479.5, 772.5], "path": [[1472.5, 764.5], [1472.5, 780.5], [1486.5, 780.5], [1486.5, 764.5]]}, -{"id": "txgbaw", "submitted_by": "TheWaslijn", "name": "LEGO Astronaut", "description": "A small lEGO astronaut character", "website": "lego.com", "subreddit": "https://www.reddit.com/r/lego/", "center": [628.5, 327.5], "path": [[617.5, 312.5], [640.5, 312.5], [639.5, 342.5], [617.5, 342.5]]}, +{"id": "txgc65", "submitted_by": "hyena-", "name": "BirdsArentReal", "description": "Acronym for r/BirdsArentReal.\nA subreddit dedicated to expose the U.S. Government replacing birds with drone replicas designed to spy on the American public. r/BirdsArentReal used to own the spot where r/singapore now occupies, having a full text instead of the acronym, but was overran by the combined efforts of r/singapore and r/malaysia. After negotiation efforts, r/singapore agreed to help r/BirdsArentReal maintain a tiny plot with their land.", "website": "https://birdsarentreal.com/", "subreddit": "/r/BirdsArentReal", "center": [292.5, 981.5], "path": [[285.5, 978.5], [300.5, 978.5], [299.5, 979.5], [299.5, 980.5], [298.5, 981.5], [298.5, 985.5], [285.5, 985.5]]}, +{"id": "txgbsu", "submitted_by": "Yord-Man", "name": "SHOWER ORANGE", "description": "An orange, ode to r/ShowerOrange", "website": "", "subreddit": "/r/ShowerOrange", "center": [1081.5, 1848.5], "path": [[1080.5, 1815.5], [1087.5, 1813.5], [1092.5, 1812.5], [1095.5, 1807.5], [1097.5, 1804.5], [1100.5, 1801.5], [1101.5, 1800.5], [1107.5, 1799.5], [1111.5, 1799.5], [1115.5, 1798.5], [1122.5, 1797.5], [1126.5, 1796.5], [1133.5, 1796.5], [1136.5, 1797.5], [1139.5, 1796.5], [1141.5, 1799.5], [1141.5, 1800.5], [1140.5, 1803.5], [1140.5, 1807.5], [1140.5, 1811.5], [1141.5, 1812.5], [1141.5, 1817.5], [1140.5, 1820.5], [1140.5, 1822.5], [1139.5, 1825.5], [1139.5, 1827.5], [1139.5, 1829.5], [1139.5, 1830.5], [1135.5, 1831.5], [1133.5, 1831.5], [1130.5, 1832.5], [1128.5, 1834.5], [1126.5, 1835.5], [1124.5, 1836.5], [1123.5, 1838.5], [1121.5, 1840.5], [1118.5, 1842.5], [1117.5, 1843.5], [1115.5, 1845.5], [1116.5, 1847.5], [1117.5, 1849.5], [1116.5, 1853.5], [1116.5, 1855.5], [1116.5, 1858.5], [1115.5, 1860.5], [1115.5, 1862.5], [1114.5, 1866.5], [1113.5, 1869.5], [1111.5, 1872.5], [1110.5, 1875.5], [1108.5, 1877.5], [1106.5, 1879.5], [1104.5, 1881.5], [1101.5, 1882.5], [1100.5, 1884.5], [1091.5, 1888.5], [1083.5, 1891.5], [1081.5, 1893.5], [1079.5, 1895.5], [1075.5, 1896.5], [1072.5, 1896.5], [1067.5, 1894.5], [1069.5, 1896.5], [1056.5, 1897.5], [1045.5, 1896.5], [1040.5, 1893.5], [1036.5, 1889.5], [1031.5, 1886.5], [1032.5, 1882.5], [1030.5, 1885.5], [1028.5, 1885.5], [1025.5, 1884.5], [1024.5, 1883.5], [1026.5, 1880.5], [1025.5, 1878.5], [1024.5, 1877.5], [1024.5, 1874.5], [1024.5, 1872.5], [1024.5, 1870.5], [1024.5, 1864.5], [1025.5, 1861.5], [1026.5, 1858.5], [1027.5, 1854.5], [1028.5, 1850.5], [1029.5, 1846.5], [1033.5, 1842.5], [1036.5, 1838.5], [1040.5, 1835.5], [1042.5, 1832.5], [1045.5, 1828.5], [1049.5, 1825.5], [1053.5, 1821.5], [1055.5, 1820.5], [1059.5, 1818.5], [1066.5, 1817.5], [1067.5, 1816.5], [1071.5, 1816.5], [1075.5, 1815.5], [1078.5, 1815.5], [1079.5, 1815.5]]}, +{"id": "txgbp3", "submitted_by": "Eragonnogare", "name": "Katawa Shoujo Heart", "description": "Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku Academy, located somewhere in modern Japan. Hisao Nakai, an average boy living a \"normal\" life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends\u2014and perhaps love, if he plays his cards right. The heart design is the logo of the game, and a direct precursor to this design was on the final image of the previous, 2017, r/place. To the left, you can see the logo for Four Leaf Studios, the developers of the game.", "website": "https://www.katawa-shoujo.com", "subreddit": "/r/katawashoujo", "center": [1479.5, 772.5], "path": [[1472.5, 764.5], [1472.5, 780.5], [1486.5, 780.5], [1486.5, 764.5]]}, +{"id": "txgbaw", "submitted_by": "TheWaslijn", "name": "LEGO Astronaut", "description": "A small lEGO astronaut character", "website": "https://lego.com", "subreddit": "/r/lego", "center": [628.5, 327.5], "path": [[617.5, 312.5], [640.5, 312.5], [639.5, 342.5], [617.5, 342.5]]}, {"id": "txgbak", "submitted_by": "LightKitty24", "name": "Niigo Miku", "description": "Hatsune Miku, based on one of her appearences in the game Project Sekai.", "website": "", "subreddit": "/r/ProjectSekai", "center": [894.5, 716.5], "path": [[886.5, 721.5], [901.5, 721.5], [901.5, 710.5], [886.5, 710.5]]}, {"id": "txgb4b", "submitted_by": "MrBeanEatBeansWithMe", "name": "The Annoyance in the Cover", "description": "This corner was targeted repeatedly by one to two person throughout the entire time r/place was up. Now and then, a white pixel was placed there, before getting fixed.", "website": "", "subreddit": "", "center": [1.5, 767.5], "path": [[0.5, 766.5], [0.5, 767.5], [1.5, 767.5], [1.5, 766.5]]}, {"id": "txga20", "submitted_by": "Explosivesguy2", "name": "[ACS] Absurd Critical Strike", "description": "'Absurd Critical Strike' is a class based fighting game on Roblox owned by the Absurd Degenerates group, and is co-developed between users Explosivesguy2 and Stuffed_Eclipse. Absurd Critical Strike started off as a joke mod of 'Critical Strike,' but has since become it's own identity as a hilarious crossover fighting game with over 180k visits at the time of this logo. Also depicted is a mini 'Helpful Hexagon,' the games mascot.", "website": "https://www.roblox.com/games/5375771041/ACS-Absurd-Critical-Strike", "subreddit": "/r/AbsurdCriticalStrike", "center": [1689.5, 1444.5], "path": [[1683.5, 1450.5], [1694.5, 1450.5], [1694.5, 1438.5], [1683.5, 1439.5], [1683.5, 1450.5]]}, -{"id": "txg9zt", "submitted_by": "dontworriaboutit", "name": "CNO", "description": "Long Live Clan Nocturnal", "website": "[https://web.archive.org/web/20161104013638/http://clan.nocturnal.org/](https://web.archive.org/web/20161104013638/http://clan.nocturnal.org/)", "subreddit": "", "center": [1469.5, 1240.5], "path": [[1450.5, 1233.5], [1450.5, 1246.5], [1488.5, 1246.5], [1488.5, 1233.5]]}, +{"id": "txg9zt", "submitted_by": "dontworriaboutit", "name": "CNO", "description": "Long Live Clan Nocturnal", "website": "https://web.archive.org/web/20161104013638/http://clan.nocturnal.org/", "subreddit": "", "center": [1469.5, 1240.5], "path": [[1450.5, 1233.5], [1450.5, 1246.5], [1488.5, 1246.5], [1488.5, 1233.5]]}, {"id": "txg9yd", "submitted_by": "diterdise", "name": "Nordigen", "description": "One of the Newest European Fintech Startups, celebrating its 6th birthday. They are mainly focused on making open-banking free and accessible for everyone", "website": "https://nordigen.com", "subreddit": "", "center": [85.5, 1062.5], "path": [[79.5, 1054.5], [78.5, 1054.5], [92.5, 1055.5], [92.5, 1069.5], [78.5, 1069.5]]}, -{"id": "txg95o", "submitted_by": "Nonheeno", "name": "The previous location of Bay12 Outpost ", "description": "Before being botted over, this was the location of Bay12 & It's mascot Cautionsaurus", "website": "", "subreddit": "r/dwarffottessplace", "center": [271.5, 1875.5], "path": [[261.5, 1861.5], [280.5, 1861.5], [281.5, 1888.5], [261.5, 1888.5]]}, -{"id": "txg916", "submitted_by": "danuhpl0x", "name": "Ateneo De Manila University", "description": "A banner made by redditors from Ateneo De Manila University, a jesuit school from the Philippines. The banner originally says \"DLSU SUX -Ateneo\", highlighting the rivalry between them and De La Salle University, another catholic university in the Philippines.", "website": "https://www.ateneo.edu/", "subreddit": "r/ADMU/", "center": [1488.5, 390.5], "path": [[1487.5, 375.5], [1481.5, 366.5], [1483.5, 415.5], [1495.5, 415.5], [1494.5, 367.5], [1482.5, 366.5], [1481.5, 370.5], [1481.5, 370.5]]}, -{"id": "txg90x", "submitted_by": "Eragonnogare", "name": "Katawa Shoujo Heart", "description": "Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku Academy, located somewhere in modern Japan. Hisao Nakai, an average boy living a \\\"normal\\\" life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends\u2014and perhaps love, if he plays his cards right. The heart design is the logo of the game, and a direct precursor to this design was on the final image of the previous, 2017, r/place. To the left, you can see the logo for Four Leaf Studios, the developers of the game.", "website": "[http://www.katawa-shoujo.com](http://www.katawa-shoujo.com)", "subreddit": "r/katawashoujo", "center": [1479.5, 772.5], "path": [[1472.5, 764.5], [1486.5, 764.5], [1486.5, 780.5], [1472.5, 780.5]]}, +{"id": "txg95o", "submitted_by": "Nonheeno", "name": "The previous location of Bay12 Outpost ", "description": "Before being botted over, this was the location of Bay12 & It's mascot Cautionsaurus", "website": "", "subreddit": "/r/dwarffottessplace", "center": [271.5, 1875.5], "path": [[261.5, 1861.5], [280.5, 1861.5], [281.5, 1888.5], [261.5, 1888.5]]}, +{"id": "txg916", "submitted_by": "danuhpl0x", "name": "Ateneo De Manila University", "description": "A banner made by redditors from Ateneo De Manila University, a jesuit school from the Philippines. The banner originally says \"DLSU SUX -Ateneo\", highlighting the rivalry between them and De La Salle University, another catholic university in the Philippines.", "website": "https://www.ateneo.edu/", "subreddit": "/r/ADMU", "center": [1488.5, 390.5], "path": [[1487.5, 375.5], [1481.5, 366.5], [1483.5, 415.5], [1495.5, 415.5], [1494.5, 367.5], [1482.5, 366.5], [1481.5, 370.5], [1481.5, 370.5]]}, +{"id": "txg90x", "submitted_by": "Eragonnogare", "name": "Katawa Shoujo Heart", "description": "Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku Academy, located somewhere in modern Japan. Hisao Nakai, an average boy living a \\\"normal\\\" life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends\u2014and perhaps love, if he plays his cards right. The heart design is the logo of the game, and a direct precursor to this design was on the final image of the previous, 2017, r/place. To the left, you can see the logo for Four Leaf Studios, the developers of the game.", "website": "http://www.katawa-shoujo.com", "subreddit": "/r/katawashoujo", "center": [1479.5, 772.5], "path": [[1472.5, 764.5], [1486.5, 764.5], [1486.5, 780.5], [1472.5, 780.5]]}, {"id": "txg8yf", "submitted_by": "Imaginary-Kale4259", "name": "amogi in love ", "description": "2 amoungus in love ", "website": "https://www.innersloth.com/games/among-us/", "subreddit": "/r/AmongUs", "center": [939.5, 681.5], "path": [[935.5, 683.5], [934.5, 682.5], [934.5, 680.5], [935.5, 679.5], [937.5, 679.5], [938.5, 680.5], [939.5, 681.5], [940.5, 680.5], [941.5, 679.5], [943.5, 679.5], [944.5, 680.5], [944.5, 682.5], [943.5, 683.5], [941.5, 683.5], [940.5, 682.5], [938.5, 682.5], [937.5, 683.5], [936.5, 682.5]]}, -{"id": "txg8d9", "submitted_by": "Core_Delia", "name": "Feh", "description": "Mascot for FireEmblemHeroes, a gacha-styled game from the Fire Emblem franchise.", "website": "", "subreddit": "r/fireemblemheroes", "center": [1843.5, 766.5], "path": [[1835.5, 760.5], [1849.5, 760.5], [1854.5, 771.5], [1835.5, 772.5]]}, {"id": "txg8bc", "submitted_by": "Xaver115", "name": "Baum Boys ", "description": "The only testimonial of the Baum Boy Friend Group:\nu/Xaver115\nu/niklasdermensch\nu/Mueckenschlaechter\nu/Bubbly_Fuel_1730\nThe tree was corrupted by Amongus", "website": "", "subreddit": "", "center": [1506.5, 864.5], "path": [[1506.5, 860.5], [1506.5, 862.5], [1505.5, 862.5], [1505.5, 866.5], [1506.5, 866.5], [1506.5, 868.5], [1507.5, 868.5], [1507.5, 866.5], [1508.5, 866.5], [1508.5, 863.5], [1507.5, 863.5], [1507.5, 861.5], [1506.5, 861.5], [1506.5, 860.5]]}, -{"id": "txg75q", "submitted_by": "EdgyAsFck", "name": "Black Desert Online", "description": "A Sandbox MMORPG developed by Korean video game developer Pearl Abyss", "website": "https://www.naeu.playblackdesert.com/en-US/Main/Index", "subreddit": "r/blackdesertonline/", "center": [1594.5, 1993.5], "path": [[1601.5, 1999.5], [1601.5, 1986.5], [1586.5, 1986.5], [1586.5, 1999.5], [1592.5, 1999.5]]}, +{"id": "txg75q", "submitted_by": "EdgyAsFck", "name": "Black Desert Online", "description": "A Sandbox MMORPG developed by Korean video game developer Pearl Abyss", "website": "https://www.naeu.playblackdesert.com/en-US/Main/Index", "subreddit": "/r/blackdesertonline", "center": [1594.5, 1993.5], "path": [[1601.5, 1999.5], [1601.5, 1986.5], [1586.5, 1986.5], [1586.5, 1999.5], [1592.5, 1999.5]]}, {"id": "txg6tm", "submitted_by": "bagdad91", "name": "John Paul II", "description": "Numerous accounts of brutal murder have wiped the aforementioned pope off r/place.", "website": "", "subreddit": "", "center": [679.5, 368.5], "path": [[669.5, 375.5], [671.5, 369.5], [675.5, 368.5], [674.5, 365.5], [674.5, 362.5], [677.5, 360.5], [680.5, 359.5], [683.5, 360.5], [685.5, 362.5], [685.5, 365.5], [684.5, 368.5], [686.5, 370.5], [687.5, 372.5], [688.5, 375.5]]}, {"id": "txg6dd", "submitted_by": "EosisWasTaken", "name": "Ludus Gang", "description": "Small french crew composed of : A smash player, a musician, a pro driver (on tm tho),a (fan)girl who paints, a programmer, a pervert, a pair of slippers, a minecraft player, and two salty boys, and theo. \nWe struggled to place our logo (and it has been griefed), but we finally achieved it. \n(rip gigachad)\n", "website": "https://www.youtube.com/channel/UC5GgpU_Fmvl_Rasoc1Q98Ww", "subreddit": "", "center": [398.5, 1728.5], "path": [[387.5, 1725.5], [408.5, 1725.5], [408.5, 1730.5], [387.5, 1730.5], [387.5, 1725.5], [408.5, 1725.5]]}, {"id": "txg67d", "submitted_by": "Imaginary-Kale4259", "name": "Mario kart 64 ", "description": "Mario kart 64 is a retro Nintendo 64 videogame ", "website": "", "subreddit": "", "center": [881.5, 1853.5], "path": [[872.5, 1870.5], [890.5, 1870.5], [890.5, 1836.5], [872.5, 1836.5]]}, -{"id": "txg64w", "submitted_by": "AnonymousRandPerson", "name": "Denmark-Finland heart", "description": "A heart depicting the flags of Denmark and Finland.", "website": "", "subreddit": "r/place_nordicunion", "center": [544.5, 245.5], "path": [[541.5, 240.5], [538.5, 243.5], [538.5, 246.5], [543.5, 251.5], [545.5, 251.5], [550.5, 246.5], [550.5, 243.5], [547.5, 240.5], [546.5, 240.5], [544.5, 242.5], [542.5, 240.5], [541.5, 240.5]]}, -{"id": "txg5mp", "submitted_by": "Tournesun", "name": "Other references", "description": "The small symbols between the larger protagonists are references to other fangames, the red symbol between Sabitsuki and Madotsuki is a reference to Collective incouscious, the yellow and purple square is a reference to Uneven Dream, the green zip is a reference to Answered Prayers and the key is a reference to Amillusion.", "website": "", "subreddit": " /r/yumenikki", "center": [1229.5, 126.5], "path": [[1210.5, 119.5], [1248.5, 118.5], [1248.5, 134.5], [1210.5, 134.5], [1210.5, 134.5], [1211.5, 119.5], [1215.5, 118.5], [1215.5, 119.5], [1215.5, 118.5]]}, -{"id": "txg5cf", "submitted_by": "AnonymousRandPerson", "name": "Hakkarainen", "description": "A Finnish children's book character.", "website": "", "subreddit": "r/place_nordicunion", "center": [570.5, 274.5], "path": [[566.5, 265.5], [565.5, 266.5], [564.5, 266.5], [562.5, 268.5], [562.5, 269.5], [561.5, 270.5], [561.5, 273.5], [564.5, 273.5], [564.5, 275.5], [567.5, 275.5], [567.5, 284.5], [577.5, 284.5], [577.5, 269.5], [573.5, 265.5], [566.5, 265.5]]}, +{"id": "txg64w", "submitted_by": "AnonymousRandPerson", "name": "Denmark-Finland heart", "description": "A heart depicting the flags of Denmark and Finland.", "website": "", "subreddit": "/r/place_nordicunion", "center": [544.5, 245.5], "path": [[541.5, 240.5], [538.5, 243.5], [538.5, 246.5], [543.5, 251.5], [545.5, 251.5], [550.5, 246.5], [550.5, 243.5], [547.5, 240.5], [546.5, 240.5], [544.5, 242.5], [542.5, 240.5], [541.5, 240.5]]}, +{"id": "txg5cf", "submitted_by": "AnonymousRandPerson", "name": "Hakkarainen", "description": "A Finnish children's book character.", "website": "", "subreddit": "/r/Suomi", "center": [570.5, 274.5], "path": [[566.5, 265.5], [565.5, 266.5], [564.5, 266.5], [562.5, 268.5], [562.5, 269.5], [561.5, 270.5], [561.5, 273.5], [564.5, 273.5], [564.5, 275.5], [567.5, 275.5], [567.5, 284.5], [577.5, 284.5], [577.5, 269.5], [573.5, 265.5], [566.5, 265.5]]}, {"id": "txg4pr", "submitted_by": "Mansocra", "name": "Bandera Chilena", "description": "Esta bandera fu\u00e9 creada a causa de la invasi\u00f3n del youtuber/streamer N#1 AuronPlay con el logo de su serie de Minecraft Tortilla Land el cual fue rodeado por distintas banderas latinoamericanas con el fin de proteger el logo de Auron, el logo no aguanto lo suficiente pero las banderas se mantuvieron en pi\u00e9 hasta el final.", "website": "", "subreddit": "", "center": [982.5, 1614.5], "path": [[973.5, 1620.5], [974.5, 1620.5], [971.5, 1609.5], [988.5, 1608.5], [993.5, 1609.5], [992.5, 1619.5], [971.5, 1620.5], [970.5, 1616.5], [972.5, 1615.5], [972.5, 1613.5]]}, {"id": "txg4m6", "submitted_by": "SirOllie_", "name": "Pansexual flag", "description": "Sexual orientation when you are attracted to more than one gender. It's the same as bisexual.", "website": "", "subreddit": "/r/lgbt", "center": [461.5, 614.5], "path": [[458.5, 613.5], [464.5, 613.5], [464.5, 615.5], [458.5, 615.5]]}, -{"id": "txg45r", "submitted_by": "ADagAvenger", "name": "r/kpop & r/vtubers bridge", "description": "A section that formerly crossed over r/kpop and r/vtubers, also was the home of r/lostpause. Was taken over by the Spanish streamers located on the final product. Despite reconstruction efforts between r/bangtan, r/kpop, r/lostpause, and the streamer Myth, they couldn't overpower their numbers due to alleged botting.", "website": "", "subreddit": "r/lostpause", "center": [1487.5, 1022.5], "path": [[1450.5, 999.5], [1450.5, 1044.5], [1524.5, 1044.5], [1523.5, 999.5], [1450.5, 999.5]]}, -{"id": "txg3z7", "submitted_by": "VoidZapper", "name": "Titulus Crucis / The INRI", "description": "The Titulus Crucis, a.k.a. Title of the Cross, is a plaque that Roman soldiers put on the Cross above Jesus during the Crucifixion. The Latin on this plaque reads Iesus Nazarenus Rex Iudaeorum, which means Jesus the Nazarene King of the Jews.\n\nThis representation of the Titulus Crucis was often referred to as the INRI during r/Place for brevity's sake. Servus Dei, a Discord server, organized the effort to ensure Jesus' representation on the canvas. The INRI was moved thrice and totally destroyed three other times. Thanks to the alliance with the surrounding groups, the INRI was restored within 20 minutes after the final swarm of void trolls swept through the area. The groups completely restored their areas as though nothing had happened. Servus Dei proposed a 3x3 heart to represent the alliance.\n\nAd maiorem Dei gloriam! (For the greater glory of God!)", "website": "https://www.discord.gg/Catholic", "subreddit": "r/CatholicHumor", "center": [1315.5, 537.5], "path": [[1304.5, 534.5], [1304.5, 540.5], [1321.5, 540.5], [1322.5, 542.5], [1328.5, 542.5], [1321.5, 534.5], [1304.5, 534.5]]}, +{"id": "txg45r", "submitted_by": "ADagAvenger", "name": "r/kpop & r/vtubers bridge", "description": "A section that formerly crossed over r/kpop and r/vtubers, also was the home of r/lostpause. Was taken over by the Spanish streamers located on the final product. Despite reconstruction efforts between r/bangtan, r/kpop, r/lostpause, and the streamer Myth, they couldn't overpower their numbers due to alleged botting.", "website": "", "subreddit": "/r/lostpause", "center": [1487.5, 1022.5], "path": [[1450.5, 999.5], [1450.5, 1044.5], [1524.5, 1044.5], [1523.5, 999.5], [1450.5, 999.5]]}, +{"id": "txg3z7", "submitted_by": "VoidZapper", "name": "Titulus Crucis / The INRI", "description": "The Titulus Crucis, a.k.a. Title of the Cross, is a plaque that Roman soldiers put on the Cross above Jesus during the Crucifixion. The Latin on this plaque reads Iesus Nazarenus Rex Iudaeorum, which means Jesus the Nazarene King of the Jews.\n\nThis representation of the Titulus Crucis was often referred to as the INRI during r/Place for brevity's sake. Servus Dei, a Discord server, organized the effort to ensure Jesus' representation on the canvas. The INRI was moved thrice and totally destroyed three other times. Thanks to the alliance with the surrounding groups, the INRI was restored within 20 minutes after the final swarm of void trolls swept through the area. The groups completely restored their areas as though nothing had happened. Servus Dei proposed a 3x3 heart to represent the alliance.\n\nAd maiorem Dei gloriam! (For the greater glory of God!)", "website": "https://www.discord.gg/Catholic", "subreddit": "/r/CatholicHumor", "center": [1315.5, 537.5], "path": [[1304.5, 534.5], [1304.5, 540.5], [1321.5, 540.5], [1322.5, 542.5], [1328.5, 542.5], [1321.5, 534.5], [1304.5, 534.5]]}, {"id": "txg3tf", "submitted_by": "SirOllie_", "name": "Pansexual flag", "description": "Sexual orientation when you are attracted to more than one gender. It's the same as bisexual.", "website": "", "subreddit": "/r/lgbt", "center": [698.5, 471.5], "path": [[692.5, 475.5], [693.5, 471.5], [697.5, 468.5], [703.5, 467.5], [703.5, 470.5], [704.5, 471.5], [705.5, 472.5], [707.5, 472.5], [700.5, 472.5], [700.5, 473.5], [698.5, 475.5], [692.5, 475.5]]}, {"id": "txg3b7", "submitted_by": "Melan420", "name": "Reksio", "description": "a Polish cartoon character from the animated TV series by the same name", "website": "https://en.m.wikipedia.org/wiki/Reksio", "subreddit": "", "center": [630.5, 359.5], "path": [[633.5, 349.5], [625.5, 347.5], [620.5, 347.5], [615.5, 359.5], [625.5, 371.5], [643.5, 370.5], [643.5, 354.5], [629.5, 347.5]]}, -{"id": "txg38w", "submitted_by": "Pacter_69", "name": "Noita, Orb of True Knowledge.", "description": "This orb is from a game called Noita, which is an indie pixel 2D rouge-like game of killing mosters with wands and discovering secrets. In the game, this orb provides max health to the player and it also does a secret effect which cannot be seen when taken.", "website": "[https://store.steampowered.com/app/881100/Noita/](https://store.steampowered.com/app/881100/Noita/)", "subreddit": "/r/noita/", "center": [630.5, 1077.5], "path": [[634.5, 1089.5], [639.5, 1080.5], [637.5, 1068.5], [622.5, 1068.5], [621.5, 1084.5]]}, +{"id": "txg38w", "submitted_by": "Pacter_69", "name": "Noita, Orb of True Knowledge.", "description": "This orb is from a game called Noita, which is an indie pixel 2D rouge-like game of killing mosters with wands and discovering secrets. In the game, this orb provides max health to the player and it also does a secret effect which cannot be seen when taken.", "website": "https://store.steampowered.com/app/881100/Noita/", "subreddit": "/r/noita", "center": [630.5, 1077.5], "path": [[634.5, 1089.5], [639.5, 1080.5], [637.5, 1068.5], [622.5, 1068.5], [621.5, 1084.5]]}, {"id": "txg2rx", "submitted_by": "JoJonase", "name": "Jopping", "description": "A song by the kpop group SuperM. It is often joked about in the community.", "website": "", "subreddit": "", "center": [1284.5, 568.5], "path": [[1392.5, 562.5], [1391.5, 562.5], [1420.5, 568.5], [1421.5, 562.5], [1391.5, 569.5], [1405.5, 562.5], [1408.5, 568.5]]}, -{"id": "txg2ep", "submitted_by": "AnonymousRandPerson", "name": "Spurdo Sp\u00e4rde", "description": "A poorly drawn depiction of Pedobear from the Finnish imageboard Kuvalauta.", "website": "[https://knowyourmeme.com/memes/spurdo-sparde](https://knowyourmeme.com/memes/spurdo-sparde)", "subreddit": "r/nordicunion", "center": [589.5, 153.5], "path": [[588.5, 144.5], [587.5, 145.5], [586.5, 145.5], [583.5, 148.5], [582.5, 148.5], [580.5, 150.5], [580.5, 157.5], [582.5, 159.5], [583.5, 159.5], [585.5, 161.5], [592.5, 161.5], [593.5, 160.5], [594.5, 160.5], [598.5, 156.5], [598.5, 150.5], [597.5, 149.5], [597.5, 147.5], [594.5, 144.5], [588.5, 144.5]]}, -{"id": "txg20w", "submitted_by": "ZePTeRR", "name": "M\u00c1V Class V43", "description": "The M\u00c1V Class V43 is a hungarian-made electric locomotive. A total of 379 locomotives were built between 1963 and 1982.", "website": "[https://en.wikipedia.org/wiki/M%C3%81V_Class_V43](https://en.wikipedia.org/wiki/M%C3%81V_Class_V43)", "subreddit": "", "center": [1209.5, 267.5], "path": [[1191.5, 271.5], [1192.5, 272.5], [1191.5, 273.5], [1193.5, 274.5], [1198.5, 274.5], [1200.5, 276.5], [1203.5, 276.5], [1206.5, 276.5], [1210.5, 276.5], [1211.5, 274.5], [1213.5, 274.5], [1214.5, 276.5], [1221.5, 276.5], [1221.5, 274.5], [1223.5, 273.5], [1223.5, 268.5], [1229.5, 262.5], [1223.5, 262.5], [1223.5, 260.5], [1222.5, 260.5], [1222.5, 262.5], [1211.5, 262.5], [1211.5, 261.5], [1212.5, 260.5], [1214.5, 260.5], [1215.5, 258.5], [1213.5, 258.5], [1212.5, 259.5], [1210.5, 262.5], [1208.5, 262.5], [1208.5, 257.5], [1209.5, 255.5], [1206.5, 255.5], [1207.5, 257.5], [1207.5, 262.5], [1202.5, 262.5], [1202.5, 261.5], [1205.5, 258.5], [1201.5, 254.5], [1197.5, 258.5], [1201.5, 261.5], [1196.5, 262.5], [1194.5, 263.5], [1194.5, 271.5]]}, +{"id": "txg20w", "submitted_by": "ZePTeRR", "name": "M\u00c1V Class V43", "description": "The M\u00c1V Class V43 is a hungarian-made electric locomotive. A total of 379 locomotives were built between 1963 and 1982.", "website": "https://en.wikipedia.org/wiki/M%C3%81V_Class_V43", "subreddit": "", "center": [1209.5, 267.5], "path": [[1191.5, 271.5], [1192.5, 272.5], [1191.5, 273.5], [1193.5, 274.5], [1198.5, 274.5], [1200.5, 276.5], [1203.5, 276.5], [1206.5, 276.5], [1210.5, 276.5], [1211.5, 274.5], [1213.5, 274.5], [1214.5, 276.5], [1221.5, 276.5], [1221.5, 274.5], [1223.5, 273.5], [1223.5, 268.5], [1229.5, 262.5], [1223.5, 262.5], [1223.5, 260.5], [1222.5, 260.5], [1222.5, 262.5], [1211.5, 262.5], [1211.5, 261.5], [1212.5, 260.5], [1214.5, 260.5], [1215.5, 258.5], [1213.5, 258.5], [1212.5, 259.5], [1210.5, 262.5], [1208.5, 262.5], [1208.5, 257.5], [1209.5, 255.5], [1206.5, 255.5], [1207.5, 257.5], [1207.5, 262.5], [1202.5, 262.5], [1202.5, 261.5], [1205.5, 258.5], [1201.5, 254.5], [1197.5, 258.5], [1201.5, 261.5], [1196.5, 262.5], [1194.5, 263.5], [1194.5, 271.5]]}, {"id": "txg1ll", "submitted_by": "available2tank", "name": "Ned Kelly", "description": "An Australian folk hero from the late 1800s. Bushranger, outlaw, and felon, famously known for wearing a suit of bulletproof armour during his final shootout with the police.", "website": "https://en.wikipedia.org/wiki/Ned_Kelly", "subreddit": "", "center": [674.5, 680.5], "path": [[672.5, 670.5], [675.5, 670.5], [675.5, 672.5], [676.5, 672.5], [676.5, 674.5], [678.5, 676.5], [678.5, 681.5], [678.5, 682.5], [674.5, 682.5], [674.5, 689.5], [673.5, 689.5], [673.5, 692.5], [674.5, 692.5], [674.5, 694.5], [671.5, 694.5], [671.5, 674.5], [672.5, 674.5], [672.5, 670.5]]}, {"id": "txg0ww", "submitted_by": "Soyuzforreal", "name": "The Soyuzist Republic", "description": "The Soyuzist Republic of Azameen is a small Mountainous village union located in Northern Morocco on the Mountain of Gurugu. They function partially autonomously from the Moroccan government", "website": "https://micronations.wiki/wiki/Soyuzist_Republic", "subreddit": "", "center": [231.5, 176.5], "path": [[227.5, 172.5], [227.5, 179.5], [235.5, 179.5], [235.5, 172.5], [235.5, 172.5]]}, {"id": "txg0lz", "submitted_by": "akdogann20", "name": "The Alone Flower", "description": "It is a simple flower is made by just one person.", "website": "https://www.instagram.com/_n.kagan/", "subreddit": "/r/Turkey", "center": [1626.5, 1434.5], "path": [[1624.5, 1432.5], [1627.5, 1432.5], [1627.5, 1438.5], [1625.5, 1433.5], [1625.5, 1433.5]]}, -{"id": "txg0eb", "submitted_by": "AnonymousRandPerson", "name": "Yellow Pikmin", "description": "A character from the Pikmin game series. Yellow Pikmin are known for being immune to electrocution.", "website": "[https://www.pikminwiki.com/Yellow_Pikmin](https://www.pikminwiki.com/Yellow_Pikmin)", "subreddit": "", "center": [623.5, 162.5], "path": [[621.5, 154.5], [618.5, 157.5], [618.5, 158.5], [619.5, 159.5], [620.5, 159.5], [621.5, 160.5], [621.5, 161.5], [619.5, 163.5], [619.5, 165.5], [624.5, 170.5], [625.5, 170.5], [628.5, 167.5], [628.5, 161.5], [626.5, 161.5], [626.5, 158.5], [622.5, 154.5], [621.5, 154.5]]}, -{"id": "txg06i", "submitted_by": "akdogann20", "name": "The Alone Flower", "description": "It is a simple flower is made by just one person.", "website": "[https://www.instagram.com/_n.kagan/](https://www.instagram.com/_n.kagan/)", "subreddit": "/r/Turkey", "center": [1626.5, 1434.5], "path": [[1624.5, 1432.5], [1627.5, 1432.5], [1627.5, 1438.5], [1625.5, 1433.5], [1625.5, 1433.5]]}, +{"id": "txg0eb", "submitted_by": "AnonymousRandPerson", "name": "Yellow Pikmin", "description": "A character from the Pikmin game series. Yellow Pikmin are known for being immune to electrocution.", "website": "https://www.pikminwiki.com/Yellow_Pikmin", "subreddit": "", "center": [623.5, 162.5], "path": [[621.5, 154.5], [618.5, 157.5], [618.5, 158.5], [619.5, 159.5], [620.5, 159.5], [621.5, 160.5], [621.5, 161.5], [619.5, 163.5], [619.5, 165.5], [624.5, 170.5], [625.5, 170.5], [628.5, 167.5], [628.5, 161.5], [626.5, 161.5], [626.5, 158.5], [622.5, 154.5], [621.5, 154.5]]}, +{"id": "txg06i", "submitted_by": "akdogann20", "name": "The Alone Flower", "description": "It is a simple flower is made by just one person.", "website": "https://www.instagram.com/_n.kagan/", "subreddit": "/r/Turkey", "center": [1626.5, 1434.5], "path": [[1624.5, 1432.5], [1627.5, 1432.5], [1627.5, 1438.5], [1625.5, 1433.5], [1625.5, 1433.5]]}, {"id": "txg04h", "submitted_by": "ruidomc", "name": "Mahou beer bottle", "description": "It's a bottle of Spanish beer from the well-known brand Mahou.", "website": "", "subreddit": "", "center": [1789.5, 818.5], "path": [[1791.5, 785.5], [1790.5, 785.5], [1790.5, 798.5], [1789.5, 799.5], [1789.5, 806.5], [1786.5, 810.5], [1786.5, 839.5], [1788.5, 841.5], [1792.5, 841.5], [1792.5, 785.5]]}, {"id": "txfzas", "submitted_by": "Traditional_Stick_49", "name": "Freddo the Frog", "description": "A chocolate snack In Australia in the shape of a frog. It replaced Pulsus's logo before they moved to on the Kangaroo", "website": "", "subreddit": "", "center": [677.5, 703.5], "path": [[674.5, 698.5], [683.5, 701.5], [676.5, 713.5], [670.5, 702.5], [674.5, 697.5], [679.5, 697.5], [682.5, 702.5], [676.5, 704.5]]}, -{"id": "txfz8a", "submitted_by": "AnonymousRandPerson", "name": "Diglett", "description": "A Ground-type Pok\u00e9mon from Generation I.", "website": "[https://bulbapedia.bulbagarden.net/wiki/Diglett_(Pok%C3%A9mon)](https://bulbapedia.bulbagarden.net/wiki/Diglett_(Pok%C3%A9mon))", "subreddit": "r/pokemon", "center": [630.5, 199.5], "path": [[629.5, 195.5], [627.5, 197.5], [627.5, 200.5], [626.5, 201.5], [627.5, 202.5], [633.5, 202.5], [634.5, 201.5], [633.5, 200.5], [633.5, 197.5], [631.5, 195.5], [629.5, 195.5]]}, +{"id": "txfz8a", "submitted_by": "AnonymousRandPerson", "name": "Diglett", "description": "A Ground-type Pok\u00e9mon from Generation I.", "website": "https://bulbapedia.bulbagarden.net/wiki/Diglett_(Pok%C3%A9mon)", "subreddit": "/r/pokemon", "center": [630.5, 199.5], "path": [[629.5, 195.5], [627.5, 197.5], [627.5, 200.5], [626.5, 201.5], [627.5, 202.5], [633.5, 202.5], [634.5, 201.5], [633.5, 200.5], [633.5, 197.5], [631.5, 195.5], [629.5, 195.5]]}, {"id": "txfz50", "submitted_by": "GoodLeg7", "name": "Muted Hearts", "description": "Muted Hearts is a small community of talented artists, tinkers and kind hearted individuals. The three hearts represent the strong unity and friendship we all share.", "website": "", "subreddit": "", "center": [24.5, 69.5], "path": [[15.5, 66.5], [15.5, 71.5], [33.5, 71.5], [33.5, 66.5]]}, -{"id": "txfz3x", "submitted_by": "LokiIsVeryTaken", "name": "Loader", "description": "The character, Loader, from the game 'Risk of Rain 2'. Trans rights", "website": "", "subreddit": "r/riskofrain", "center": [595.5, 436.5], "path": [[593.5, 442.5], [593.5, 441.5], [593.5, 440.5], [590.5, 440.5], [589.5, 439.5], [589.5, 434.5], [590.5, 434.5], [591.5, 432.5], [590.5, 432.5], [590.5, 431.5], [591.5, 432.5], [594.5, 432.5], [594.5, 430.5], [596.5, 430.5], [597.5, 432.5], [599.5, 432.5], [599.5, 431.5], [599.5, 434.5], [600.5, 434.5], [600.5, 440.5], [599.5, 440.5], [599.5, 441.5], [596.5, 441.5], [596.5, 442.5], [596.5, 437.5], [593.5, 437.5]]}, +{"id": "txfz3x", "submitted_by": "LokiIsVeryTaken", "name": "Loader", "description": "The character, Loader, from the game 'Risk of Rain 2'. Trans rights", "website": "", "subreddit": "/r/riskofrain", "center": [595.5, 436.5], "path": [[593.5, 442.5], [593.5, 441.5], [593.5, 440.5], [590.5, 440.5], [589.5, 439.5], [589.5, 434.5], [590.5, 434.5], [591.5, 432.5], [590.5, 432.5], [590.5, 431.5], [591.5, 432.5], [594.5, 432.5], [594.5, 430.5], [596.5, 430.5], [597.5, 432.5], [599.5, 432.5], [599.5, 431.5], [599.5, 434.5], [600.5, 434.5], [600.5, 440.5], [599.5, 440.5], [599.5, 441.5], [596.5, 441.5], [596.5, 442.5], [596.5, 437.5], [593.5, 437.5]]}, {"id": "txfytc", "submitted_by": "manster20", "name": "Small italian flag with the number \"126\"", "description": "A small project from a group of 5-6 italian friends, who took up the number 126 from a local roman rapper crew called Lovegang", "website": "", "subreddit": "", "center": [763.5, 284.5], "path": [[756.5, 280.5], [770.5, 280.5], [770.5, 288.5], [756.5, 288.5]]}, -{"id": "txfxxc", "submitted_by": "themanintheshed_", "name": "Tayto Man", "description": "The mascot for a popular Irish Snack, who has become somewhat of a meme in recent years.", "website": "", "subreddit": "", "center": [140.5, 588.5], "path": [[133.5, 574.5], [143.5, 574.5], [145.5, 584.5], [148.5, 569.5], [158.5, 569.5], [158.5, 577.5], [150.5, 578.5], [150.5, 580.5], [153.5, 581.5], [153.5, 587.5], [146.5, 595.5], [146.5, 600.5], [143.5, 603.5], [145.5, 607.5], [128.5, 607.5], [131.5, 604.5], [127.5, 598.5], [128.5, 589.5], [129.5, 588.5], [130.5, 574.5]]}, -{"id": "txfxlq", "submitted_by": "TheLastVlad", "name": "SDSU", "description": "San Diego State University Logo created by 138 students organized on a discord server: SDSU r/place.", "website": "", "subreddit": "r/sdsu", "center": [362.5, 1587.5], "path": [[370.5, 1584.5], [353.5, 1584.5], [353.5, 1590.5], [370.5, 1590.5]]}, +{"id": "txfxlq", "submitted_by": "TheLastVlad", "name": "SDSU", "description": "San Diego State University Logo created by 138 students organized on a discord server: SDSU r/place.", "website": "", "subreddit": "/r/sdsu", "center": [362.5, 1587.5], "path": [[370.5, 1584.5], [353.5, 1584.5], [353.5, 1590.5], [370.5, 1590.5]]}, {"id": "txfxkr", "submitted_by": "Tenri_Ayukawa", "name": "Shigure Ui Chibi", "description": "A chibi of Indie Vtuber and illustrator Shigure Ui", "website": "https://www.youtube.com/channel/UCt30jJgChL8qeT9VPadidSw", "subreddit": "/r/VirtualYoutubers", "center": [1460.5, 1087.5], "path": [[1454.5, 1090.5], [1454.5, 1083.5], [1465.5, 1083.5], [1465.5, 1090.5]]}, {"id": "txfxjl", "submitted_by": "Chavantfou", "name": "Purpl' Studio Logo", "description": "the fist of The Purpl' Studio !", "website": "https://www.instagram.com/purpl_studio/", "subreddit": "", "center": [948.5, 1361.5], "path": [[943.5, 1364.5], [943.5, 1357.5], [952.5, 1357.5], [952.5, 1364.5]]}, -{"id": "txfxbm", "submitted_by": "VixVideris", "name": "Shoebill Stork and Green Square", "description": "Partnership between a green square and the shoebill stork subreddit.", "website": "", "subreddit": "/r/ShoebillStorks/", "center": [1733.5, 1390.5], "path": [[1727.5, 1385.5], [1739.5, 1385.5], [1740.5, 1395.5], [1727.5, 1395.5]]}, -{"id": "txfwzz", "submitted_by": "AnonymousRandPerson", "name": "Angry Birds", "description": "A mobile game about flinging birds at buildings to destroy them, made by Finnish game studio Rovio Entertainment.", "website": "[https://en.wikipedia.org/wiki/Angry_Birds](https://en.wikipedia.org/wiki/Angry_Birds)", "subreddit": "r/place_nordicunion", "center": [606.5, 153.5], "path": [[603.5, 144.5], [601.5, 146.5], [601.5, 148.5], [598.5, 151.5], [598.5, 156.5], [599.5, 157.5], [599.5, 158.5], [601.5, 160.5], [602.5, 160.5], [603.5, 161.5], [609.5, 161.5], [610.5, 160.5], [611.5, 160.5], [613.5, 158.5], [613.5, 157.5], [614.5, 156.5], [614.5, 151.5], [607.5, 144.5]]}, +{"id": "txfxbm", "submitted_by": "VixVideris", "name": "Shoebill Stork and Green Square", "description": "Partnership between a green square and the shoebill stork subreddit.", "website": "", "subreddit": "/r/ShoebillStorks", "center": [1733.5, 1390.5], "path": [[1727.5, 1385.5], [1739.5, 1385.5], [1740.5, 1395.5], [1727.5, 1395.5]]}, +{"id": "txfwzz", "submitted_by": "AnonymousRandPerson", "name": "Angry Birds", "description": "A mobile game about flinging birds at buildings to destroy them, made by Finnish game studio Rovio Entertainment.", "website": "https://en.wikipedia.org/wiki/Angry_Birds", "subreddit": "/r/Suomi", "center": [606.5, 153.5], "path": [[603.5, 144.5], [601.5, 146.5], [601.5, 148.5], [598.5, 151.5], [598.5, 156.5], [599.5, 157.5], [599.5, 158.5], [601.5, 160.5], [602.5, 160.5], [603.5, 161.5], [609.5, 161.5], [610.5, 160.5], [611.5, 160.5], [613.5, 158.5], [613.5, 157.5], [614.5, 156.5], [614.5, 151.5], [607.5, 144.5]]}, {"id": "txfwp2", "submitted_by": "m0ck1nGxD", "name": "Brotherhood of Eren and Taha", "description": "I just made a logo with our initials to surprise my friend and leave a memory on the canvas -Eren (u/m0ck1nGxD)", "website": "", "subreddit": "", "center": [1502.5, 834.5], "path": [[1499.5, 831.5], [1499.5, 837.5], [1505.5, 837.5], [1505.5, 831.5]]}, -{"id": "txfwjl", "submitted_by": "South_Juice_7259", "name": "Ancap flag", "description": "This is the flag of a political ideology called anarcho-capitalism, ruined by trans and ancoms. This flag has survived 6 destructions and despite its final state, the small ancap community is happy and proud of it.", "website": "", "subreddit": "r/Anarcho_Capitalism", "center": [1486.5, 531.5], "path": [[1474.5, 528.5], [1473.5, 528.5], [1473.5, 534.5], [1499.5, 534.5], [1499.5, 529.5], [1498.5, 528.5]]}, -{"id": "txfwc9", "submitted_by": "9308576632005599209", "name": "Stardew Valley", "description": "Above the Stardew Valley mouse shop is a tiny art that features a beehive surrounded by bees on the left near a red tulip, the initials of Stardew Valley (SDV) on the middle, and on the right side are common mushroom, red mushroom and a sunflower.", "website": "reddit.com/r/StardewValley", "subreddit": "r/StardewValley", "center": [1739.5, 1003.5], "path": [[1709.5, 1002.5], [1711.5, 1002.5], [1710.5, 1007.5], [1765.5, 1007.5], [1766.5, 1008.5], [1767.5, 1007.5], [1767.5, 998.5], [1710.5, 999.5]]}, +{"id": "txfwjl", "submitted_by": "South_Juice_7259", "name": "Ancap flag", "description": "This is the flag of a political ideology called anarcho-capitalism, ruined by trans and ancoms. This flag has survived 6 destructions and despite its final state, the small ancap community is happy and proud of it.", "website": "", "subreddit": "/r/Anarcho_Capitalism", "center": [1486.5, 531.5], "path": [[1474.5, 528.5], [1473.5, 528.5], [1473.5, 534.5], [1499.5, 534.5], [1499.5, 529.5], [1498.5, 528.5]]}, +{"id": "txfwc9", "submitted_by": "9308576632005599209", "name": "Stardew Valley", "description": "Above the Stardew Valley mouse shop is a tiny art that features a beehive surrounded by bees on the left near a red tulip, the initials of Stardew Valley (SDV) on the middle, and on the right side are common mushroom, red mushroom and a sunflower.", "website": "https://reddit.com/r/StardewValley", "subreddit": "/r/StardewValley", "center": [1739.5, 1003.5], "path": [[1709.5, 1002.5], [1711.5, 1002.5], [1710.5, 1007.5], [1765.5, 1007.5], [1766.5, 1008.5], [1767.5, 1007.5], [1767.5, 998.5], [1710.5, 999.5]]}, {"id": "txfwb3", "submitted_by": "codyfofficial", "name": "bb", "description": "A small addition from twitch streamer bbsmols and her community", "website": "http://twitch.tv/bbsmols", "subreddit": "", "center": [1612.5, 1420.5], "path": [[1610.5, 1418.5], [1610.5, 1421.5], [1614.5, 1421.5], [1614.5, 1418.5]]}, {"id": "txfw8h", "submitted_by": "Chavantfou", "name": "Brolandian Flag", "description": "the flag of the brolandian nation\n", "website": "", "subreddit": "", "center": [939.5, 1361.5], "path": [[936.5, 1358.5], [936.5, 1364.5], [942.5, 1364.5], [942.5, 1358.5]]}, -{"id": "txfvvb", "submitted_by": "Madavou", "name": "The contribution of French streamers to r/place", "description": "Here is what several French streamers and their community did during these last days. Congratulations for their commitment and bravo for not losing hope despite the various attempts to destroy hundreds of thousands of other players!", "website": "", "subreddit": "/r/placefrance", "center": [122.5, 1652.5], "path": [[111.5, 1526.5], [0.5, 1347.5], [244.5, 1349.5], [248.5, 1967.5], [0.5, 1965.5], [0.5, 1347.5], [21.5, 1361.5], [87.5, 1425.5]]}, {"id": "txfvqf", "submitted_by": "sabrehero2", "name": "Mizkif", "description": "Also known as the \"Clout Goblin\", Mizkif is known for Super Mario 64 speedruns, inviting girls onto his stream for clickbait youtube thumbnails, and his hot sister Emily. \n \nDuring r/place 2022, he was the key instigator behind the Franco-Spanish War. ", "website": "", "subreddit": "/r/Mizkif", "center": [644.5, 971.5], "path": [[624.5, 943.5], [623.5, 944.5], [665.5, 943.5], [665.5, 943.5], [664.5, 998.5], [665.5, 999.5], [624.5, 999.5], [624.5, 999.5]]}, -{"id": "txfvqe", "submitted_by": "Galactus_is_coming", "name": "Drag race Collection ", "description": "The right side has 6 queens in their Season 14 promotional looks. Starting from the upper right hand corner going clockwise is Bosco, Angeria Paris van Michaels, Daya Betty, Willow Pill, Lady Camden (as of 4/6/21 are the top 5 of Season 14) and finally Maddy Morphosis, the first straight contestant on Drag Race. Above is a memorial to Chi Chi DeVayne, a contestant on Season 8 and All Stars 3, who passed in August of 2020.\nThe Left side has the drag subreddit albeit not the main sub, underneath is a reference to pleasure bc we all take pleasure in this show. CHOC is referring to a twist in season 14 where if a queen had a golden chocolate bar they would be saved from elimination, the unwrapping of said bar has spawned many memes including the accompanying trombone. The Golden bar was unwrapped by Bosco I the 12th episode of season 14. The final panel is referring the Pork chop Loading dock on Season 13, where contestants who lost the entry lip sync were sent to wait under assumption of elimination from the competition on day 1. This is also a reference to the first ever queen to be eliminated on the show, Victoria Porkchop Parker.", "website": "", "subreddit": "r/rupaulsdragrace", "center": [1223.5, 415.5], "path": [[1200.5, 398.5], [1245.5, 398.5], [1247.5, 433.5], [1198.5, 432.5]]}, +{"id": "txfvqe", "submitted_by": "Galactus_is_coming", "name": "Drag race Collection ", "description": "The right side has 6 queens in their Season 14 promotional looks. Starting from the upper right hand corner going clockwise is Bosco, Angeria Paris van Michaels, Daya Betty, Willow Pill, Lady Camden (as of 4/6/21 are the top 5 of Season 14) and finally Maddy Morphosis, the first straight contestant on Drag Race. Above is a memorial to Chi Chi DeVayne, a contestant on Season 8 and All Stars 3, who passed in August of 2020.\nThe Left side has the drag subreddit albeit not the main sub, underneath is a reference to pleasure bc we all take pleasure in this show. CHOC is referring to a twist in season 14 where if a queen had a golden chocolate bar they would be saved from elimination, the unwrapping of said bar has spawned many memes including the accompanying trombone. The Golden bar was unwrapped by Bosco I the 12th episode of season 14. The final panel is referring the Pork chop Loading dock on Season 13, where contestants who lost the entry lip sync were sent to wait under assumption of elimination from the competition on day 1. This is also a reference to the first ever queen to be eliminated on the show, Victoria Porkchop Parker.", "website": "", "subreddit": "/r/rupaulsdragrace", "center": [1223.5, 415.5], "path": [[1200.5, 398.5], [1245.5, 398.5], [1247.5, 433.5], [1198.5, 432.5]]}, {"id": "txfv5e", "submitted_by": "Iusethisoneforporn58", "name": "Purple and Blue Hearts", "description": "A small tribute to a baby brother, who passed away due to mental health complications. Rest in peace, brother.", "website": "", "subreddit": "", "center": [694.5, 1320.5], "path": [[687.5, 1316.5], [700.5, 1316.5], [700.5, 1323.5], [687.5, 1323.5], [687.5, 1316.5]]}, -{"id": "txfuyq", "submitted_by": "Leon08x", "name": "Inuyasha", "description": "The titular protagonist of the manga series InuYasha, a hany\u014d, son of a y\u014dkai and a human. ", "website": "https://inuyasha.fandom.com/wiki/Inuyasha", "subreddit": "r/inuyasha", "center": [1557.5, 991.5], "path": [[1552.5, 979.5], [1569.5, 998.5], [1543.5, 999.5], [1549.5, 985.5], [1552.5, 981.5], [1550.5, 981.5], [1565.5, 980.5], [1570.5, 996.5], [1568.5, 982.5], [1568.5, 994.5], [1557.5, 995.5], [1566.5, 992.5], [1568.5, 995.5], [1564.5, 990.5], [1561.5, 986.5], [1558.5, 984.5], [1553.5, 981.5], [1552.5, 980.5]]}, -{"id": "txfuy9", "submitted_by": "SurrogateMonkey", "name": "Mondstadt Windmill and Windwheel Asters", "description": "Mondstadt (Moon City in German) is one of the seven regions in Teyvat, a fictional continent in the game Genshin Impact. Mondstadt takes inspiration from North European culture, primarily German.\n\nOne of Mondstadt's well known structures are the six-spoked windmills, which are inspired by medieval European windmills. \n\nThe Windwheel Asters are orange flowers found in the wild in various areas of Mondstadt. The characters Bennett, Sucrose, and the Travelers use this local specialty as an ascension(level-up) material in the game.\n\nThe windmill and the windwheel asters are created by r/placeNL as a token of alliance with r/GenshinPlace.\n\n", "website": "https://genshin-impact.fandom.com/wiki/Mondstadt", "subreddit": "r/PlaceNL r/Genshin_Impact r/GenshinPlace", "center": [1133.5, 30.5], "path": [[1156.5, 35.5], [1149.5, 35.5], [1144.5, 38.5], [1133.5, 38.5], [1131.5, 40.5], [1118.5, 40.5], [1115.5, 36.5], [1110.5, 35.5], [1108.5, 35.5], [1109.5, 27.5], [1132.5, 28.5], [1132.5, 19.5], [1137.5, 14.5], [1140.5, 13.5], [1145.5, 17.5], [1147.5, 21.5], [1146.5, 27.5], [1152.5, 29.5], [1155.5, 31.5]]}, -{"id": "txfu5w", "submitted_by": "zZ2255", "name": "Andynsane - Andynzein - Zein - ZEJN", "description": "Fue un youtuber dedicado a subir v\u00eddeos de blogs y comedia, actualmente se dedica al streaming en BOOYA!. Naci\u00f3 en Tarma, Junin, Per\u00fa, pero actualmente reside en Estados Unidos.\nSecciones:\n-Challenges\n-Las 15 fotos fails de la vida\n-50 se\u00f1ales de que eres...\n-Omegle\n-Bromas telef\u00f3nicas\n-Retos\n-Preguntas incomodas\n-Esto solo pasa en Peru\n-Esto solo pasa en internet\n-Exponiendo infieles en Peru\n-M\u00fasica Andynsane\n-Alto al crimen\n-Parodias\n-Reacciones videos random\n-Gameplays\n-Radio fierro 69.9 fm\nPersonajes:\n-Juanito el jorobado\n-Paloma Poh Poh\n-La Elvira Montenegro\n-Maaami-Mono saca copias\n-Barney\nCanciones:\n-P\u00e1same tu pin-L\u00e1vatela con shampo (2012)\n-Mi nombre es Andynsane (22/03/2015)\n-Quiero subirme a tu guayabo mami (28/06/2015)\n-Reggaet\u00f3n cristiano (05/08/2015)\n-Cuando voy al ba\u00f1o (14/06/2015)\n-Si te gusta (27/08/2017)\nFrases:\n-Soy fresa, pero no para tu mermelada.\n-Eres un pendejo s\u00ed.\n-Mira y calla que no tendr\u00e1s ni papaya.\n-Los mas machos son los mas cabros.\n-Y sin m\u00e1s cotorreo, empecemos con el sandungueo.", "website": "[https://booyah.live/channels/59911252?source=11](https://booyah.live/channels/59911252?source=11)", "subreddit": "", "center": [1829.5, 1083.5], "path": [[1792.5, 1046.5], [1792.5, 1121.5], [1866.5, 1118.5], [1867.5, 1047.5], [1793.5, 1045.5], [1792.5, 1045.5]]}, -{"id": "txftxz", "submitted_by": "Plagiatus", "name": "Minecraft Realms", "description": "The server subscription service by Mojang for their game Minecraft. It features a creator program that allows players to submit their own maps to the subreddit to be featured ingame. Various communities have emerged through this program.", "website": "https://www.minecraft.net/en-us/realms/content-creator", "subreddit": "r/realms", "center": [338.5, 1589.5], "path": [[323.5, 1579.5], [323.5, 1594.5], [325.5, 1596.5], [325.5, 1600.5], [346.5, 1600.5], [352.5, 1600.5], [352.5, 1579.5]]}, -{"id": "txftpx", "submitted_by": "Themmo101", "name": "Epic Rating Demon Difficulty", "description": "A demon difficulty face from game Geometry dash with an epic rating flame around the head.", "website": "[https://discord.gg/BcXxhV4mYn](https://discord.gg/BcXxhV4mYn)", "subreddit": "/r/geometrydashplace", "center": [1019.5, 374.5], "path": [[1010.5, 365.5], [1010.5, 384.5], [1028.5, 384.5], [1028.5, 365.5], [1021.5, 365.5], [1019.5, 363.5], [1016.5, 365.5], [1016.5, 365.5]]}, -{"id": "txfti3", "submitted_by": "AnonymousRandPerson", "name": "Silja Line", "description": "A Finnish cruiseferry line.", "website": "[https://en.wikipedia.org/wiki/Silja_Line](https://en.wikipedia.org/wiki/Silja_Line)", "subreddit": "r/place_nordicunion", "center": [731.5, 121.5], "path": [[702.5, 103.5], [691.5, 114.5], [688.5, 114.5], [686.5, 116.5], [686.5, 117.5], [685.5, 118.5], [685.5, 125.5], [686.5, 126.5], [686.5, 128.5], [688.5, 130.5], [688.5, 131.5], [689.5, 132.5], [689.5, 135.5], [693.5, 138.5], [768.5, 138.5], [772.5, 134.5], [772.5, 132.5], [773.5, 131.5], [773.5, 124.5], [770.5, 124.5], [770.5, 120.5], [769.5, 120.5], [768.5, 119.5], [768.5, 117.5], [773.5, 117.5], [775.5, 115.5], [774.5, 114.5], [773.5, 114.5], [772.5, 113.5], [771.5, 113.5], [770.5, 112.5], [769.5, 112.5], [769.5, 110.5], [771.5, 110.5], [772.5, 109.5], [772.5, 108.5], [773.5, 107.5], [773.5, 106.5], [770.5, 103.5], [768.5, 103.5], [768.5, 101.5], [766.5, 101.5], [765.5, 100.5], [763.5, 100.5], [762.5, 101.5], [760.5, 101.5], [758.5, 103.5], [757.5, 103.5], [755.5, 105.5], [752.5, 105.5], [750.5, 103.5], [749.5, 103.5], [747.5, 101.5], [746.5, 101.5], [745.5, 100.5], [743.5, 100.5], [742.5, 101.5], [740.5, 101.5], [738.5, 103.5], [737.5, 103.5], [735.5, 105.5], [732.5, 105.5], [730.5, 103.5], [729.5, 103.5], [727.5, 101.5], [726.5, 101.5], [725.5, 100.5], [723.5, 100.5], [722.5, 101.5], [720.5, 101.5], [717.5, 104.5], [716.5, 104.5], [715.5, 105.5], [714.5, 106.5], [715.5, 108.5], [717.5, 110.5], [717.5, 111.5], [716.5, 112.5], [715.5, 112.5], [713.5, 110.5], [712.5, 110.5], [710.5, 108.5], [710.5, 107.5], [705.5, 102.5]]}, +{"id": "txfuyq", "submitted_by": "Leon08x", "name": "Inuyasha", "description": "The titular protagonist of the manga series InuYasha, a hany\u014d, son of a y\u014dkai and a human. ", "website": "https://inuyasha.fandom.com/wiki/Inuyasha", "subreddit": "/r/inuyasha", "center": [1557.5, 991.5], "path": [[1541.5, 999.5], [1571.5, 999.5], [1571.5, 979.5], [1550.5, 979.5], [1541.5, 999.5]]}, +{"id": "txfuy9", "submitted_by": "SurrogateMonkey", "name": "Mondstadt Windmill and Windwheel Asters", "description": "Mondstadt (Moon City in German) is one of the seven regions in Teyvat, a fictional continent in the game Genshin Impact. Mondstadt takes inspiration from North European culture, primarily German.\n\nOne of Mondstadt's well known structures are the six-spoked windmills, which are inspired by medieval European windmills. \n\nThe Windwheel Asters are orange flowers found in the wild in various areas of Mondstadt. The characters Bennett, Sucrose, and the Travelers use this local specialty as an ascension(level-up) material in the game.\n\nThe windmill and the windwheel asters are created by r/placeNL as a token of alliance with r/GenshinPlace.\n\n", "website": "https://genshin-impact.fandom.com/wiki/Mondstadt", "subreddit": "/r/PlaceNL, /r/Genshin_Impact, /r/GenshinPlace", "center": [1133.5, 30.5], "path": [[1156.5, 35.5], [1149.5, 35.5], [1144.5, 38.5], [1133.5, 38.5], [1131.5, 40.5], [1118.5, 40.5], [1115.5, 36.5], [1110.5, 35.5], [1108.5, 35.5], [1109.5, 27.5], [1132.5, 28.5], [1132.5, 19.5], [1137.5, 14.5], [1140.5, 13.5], [1145.5, 17.5], [1147.5, 21.5], [1146.5, 27.5], [1152.5, 29.5], [1155.5, 31.5]]}, +{"id": "txfu5w", "submitted_by": "zZ2255", "name": "Andynsane - Andynzein - Zein - ZEJN", "description": "Fue un youtuber dedicado a subir v\u00eddeos de blogs y comedia, actualmente se dedica al streaming en BOOYA!. Naci\u00f3 en Tarma, Junin, Per\u00fa, pero actualmente reside en Estados Unidos.\nSecciones:\n-Challenges\n-Las 15 fotos fails de la vida\n-50 se\u00f1ales de que eres...\n-Omegle\n-Bromas telef\u00f3nicas\n-Retos\n-Preguntas incomodas\n-Esto solo pasa en Peru\n-Esto solo pasa en internet\n-Exponiendo infieles en Peru\n-M\u00fasica Andynsane\n-Alto al crimen\n-Parodias\n-Reacciones videos random\n-Gameplays\n-Radio fierro 69.9 fm\nPersonajes:\n-Juanito el jorobado\n-Paloma Poh Poh\n-La Elvira Montenegro\n-Maaami-Mono saca copias\n-Barney\nCanciones:\n-P\u00e1same tu pin-L\u00e1vatela con shampo (2012)\n-Mi nombre es Andynsane (22/03/2015)\n-Quiero subirme a tu guayabo mami (28/06/2015)\n-Reggaet\u00f3n cristiano (05/08/2015)\n-Cuando voy al ba\u00f1o (14/06/2015)\n-Si te gusta (27/08/2017)\nFrases:\n-Soy fresa, pero no para tu mermelada.\n-Eres un pendejo s\u00ed.\n-Mira y calla que no tendr\u00e1s ni papaya.\n-Los mas machos son los mas cabros.\n-Y sin m\u00e1s cotorreo, empecemos con el sandungueo.", "website": "https://booyah.live/channels/59911252?source=11", "subreddit": "", "center": [1829.5, 1083.5], "path": [[1792.5, 1046.5], [1792.5, 1121.5], [1866.5, 1118.5], [1867.5, 1047.5], [1793.5, 1045.5], [1792.5, 1045.5]]}, +{"id": "txftxz", "submitted_by": "Plagiatus", "name": "Minecraft Realms", "description": "The server subscription service by Mojang for their game Minecraft. It features a creator program that allows players to submit their own maps to the subreddit to be featured ingame. Various communities have emerged through this program.", "website": "https://www.minecraft.net/en-us/realms/content-creator", "subreddit": "/r/realms", "center": [338.5, 1589.5], "path": [[323.5, 1579.5], [323.5, 1594.5], [325.5, 1596.5], [325.5, 1600.5], [346.5, 1600.5], [352.5, 1600.5], [352.5, 1579.5]]}, +{"id": "txfti3", "submitted_by": "mikkolukas", "name": "Silja Line", "description": "A cruiseferry from the Finnish brand Silja Line. This pixelart mostly resembles the sibling ships Symfony/Serenade, both known for their impressive pedestrian street down the middle of the ship.", "website": "https://en.tallink.com/silja-serenade-siljaline-cruise-ship", "subreddit": "/r/Suomi", "center": [731.5, 121.5], "path": [[702.5, 103.5], [691.5, 114.5], [688.5, 114.5], [686.5, 116.5], [686.5, 117.5], [685.5, 118.5], [685.5, 125.5], [686.5, 126.5], [686.5, 128.5], [688.5, 130.5], [688.5, 131.5], [689.5, 132.5], [689.5, 135.5], [693.5, 138.5], [768.5, 138.5], [772.5, 134.5], [772.5, 132.5], [773.5, 131.5], [773.5, 124.5], [770.5, 124.5], [770.5, 120.5], [769.5, 120.5], [768.5, 119.5], [768.5, 117.5], [773.5, 117.5], [775.5, 115.5], [774.5, 114.5], [773.5, 114.5], [772.5, 113.5], [771.5, 113.5], [770.5, 112.5], [769.5, 112.5], [769.5, 110.5], [771.5, 110.5], [772.5, 109.5], [772.5, 108.5], [773.5, 107.5], [773.5, 106.5], [770.5, 103.5], [768.5, 103.5], [768.5, 101.5], [766.5, 101.5], [765.5, 100.5], [763.5, 100.5], [762.5, 101.5], [760.5, 101.5], [758.5, 103.5], [757.5, 103.5], [755.5, 105.5], [752.5, 105.5], [750.5, 103.5], [749.5, 103.5], [747.5, 101.5], [746.5, 101.5], [745.5, 100.5], [743.5, 100.5], [742.5, 101.5], [740.5, 101.5], [738.5, 103.5], [737.5, 103.5], [735.5, 105.5], [732.5, 105.5], [730.5, 103.5], [729.5, 103.5], [727.5, 101.5], [726.5, 101.5], [725.5, 100.5], [723.5, 100.5], [722.5, 101.5], [720.5, 101.5], [717.5, 104.5], [716.5, 104.5], [715.5, 105.5], [714.5, 106.5], [715.5, 108.5], [717.5, 110.5], [717.5, 111.5], [716.5, 112.5], [715.5, 112.5], [713.5, 110.5], [712.5, 110.5], [710.5, 108.5], [710.5, 107.5], [705.5, 102.5]]}, {"id": "txfth4", "submitted_by": "BMXTrops", "name": "Usada Pekora", "description": "Hololive JP 4th member Usada Pekora, doing war crimes on reddit Place.", "website": "", "subreddit": "/r/holive", "center": [1371.5, 994.5], "path": [[1363.5, 999.5], [1363.5, 991.5], [1366.5, 989.5], [1376.5, 990.5], [1378.5, 992.5], [1379.5, 993.5], [1379.5, 997.5], [1379.5, 998.5]]}, -{"id": "txft8y", "submitted_by": "E_ternalEclipse", "name": "Nero the Anti-bird", "description": "The anti-magic bird that follows Asta around in the Black Clover series. ", "website": "", "subreddit": "r/BlackClover", "center": [0.5, 0.5], "path": []}, -{"id": "txfrmi", "submitted_by": "thatelliegirlifshe15", "name": "erobb221", "description": "That Ellie girl, in the game I was playing, bro, if she 15 I'm 15 ya feel me?", "website": "https://www.youtube.com/watch?v=4gnzrWGFBvs", "subreddit": "r/emoney", "center": [639.5, 926.5], "path": [[623.5, 910.5], [654.5, 910.5], [654.5, 942.5], [623.5, 942.5]]}, +{"id": "txfrmi", "submitted_by": "thatelliegirlifshe15", "name": "erobb221", "description": "That Ellie girl, in the game I was playing, bro, if she 15 I'm 15 ya feel me?", "website": "https://www.youtube.com/watch?v=4gnzrWGFBvs", "subreddit": "/r/emoney", "center": [639.5, 926.5], "path": [[623.5, 910.5], [654.5, 910.5], [654.5, 942.5], [623.5, 942.5]]}, {"id": "txfre1", "submitted_by": "zodyak", "name": "H1vezZz", "description": "H1vezZz is a streamer from Turkey and it is his channel logo.", "website": "https://www.twitch.tv/h1vezzz", "subreddit": "", "center": [1313.5, 488.5], "path": [[1304.5, 479.5], [1304.5, 496.5], [1322.5, 496.5], [1322.5, 479.5]]}, -{"id": "txfqgt", "submitted_by": "TwanyG", "name": "Mini University of South Carolina Logo", "description": "A simplified version of the U of SC logo. This institution is home to the Gamecocks. The Gamecocks fought hard and with pride to be a small part of this global art project. Despite being very close to the most contested part of the grid, USC's tiny 11x7 patch remained unscathed all the way until the whitening. Forever to thee!", "website": "[https://sc.edu/](https://sc.edu/)", "subreddit": "[https://www.reddit.com/r/Gamecocks/](https://www.reddit.com/r/Gamecocks/)", "center": [302.5, 1605.5], "path": [[297.5, 1602.5], [307.5, 1602.5], [307.5, 1608.5], [297.5, 1608.5]]}, -{"id": "txfq41", "submitted_by": "AnonymousRandPerson", "name": "N\u00e4men!", "description": "A Swedish interjection used to indicating surprise. Similar to \"Oh!\" in English.", "website": "[https://www.thelocal.se/20181018/swedish-word-of-the-day-namen/](https://www.thelocal.se/20181018/swedish-word-of-the-day-namen/)", "subreddit": "r/sweden", "center": [820.5, 83.5], "path": [[802.5, 78.5], [802.5, 87.5], [837.5, 87.5], [837.5, 78.5], [802.5, 78.5]]}, -{"id": "txfpyc", "submitted_by": "slanterns", "name": "Kiki's Delivery Service", "description": "Kiki's Delivery Service (Japanese: \u9b54\u5973\u306e\u5b85\u6025\u4fbf, Hepburn: Majo no Takky\u016bbin) is a 1989 Japanese animated fantasy film written, produced, and directed by Hayao Miyazaki, adapted from the 1985 novel by Eiko Kadono. Before the end of event the main character Kiki was damaged by the smoke, but you can still see her iconic broomstick (and part of the red bow) here.", "website": "https://en.wikipedia.org/wiki/Kiki%27s_Delivery_Service", "subreddit": "", "center": [1171.5, 1521.5], "path": [[1159.5, 1523.5], [1178.5, 1537.5], [1182.5, 1534.5], [1177.5, 1526.5], [1177.5, 1519.5], [1177.5, 1509.5], [1172.5, 1506.5], [1167.5, 1507.5], [1162.5, 1517.5], [1158.5, 1519.5], [1159.5, 1523.5]]}, +{"id": "txfqgt", "submitted_by": "TwanyG", "name": "Mini University of South Carolina Logo", "description": "A simplified version of the U of SC logo. This institution is home to the Gamecocks. The Gamecocks fought hard and with pride to be a small part of this global art project. Despite being very close to the most contested part of the grid, USC's tiny 11x7 patch remained unscathed all the way until the whitening. Forever to thee!", "website": "https://sc.edu/", "subreddit": "[/r/Gamecocks", "center": [302.5, 1605.5], "path": [[297.5, 1602.5], [307.5, 1602.5], [307.5, 1608.5], [297.5, 1608.5]]}, +{"id": "txfq41", "submitted_by": "AnonymousRandPerson", "name": "N\u00e4men!", "description": "A Swedish interjection used to indicating surprise. Similar to \"Oh!\" in English.", "website": "https://www.thelocal.se/20181018/swedish-word-of-the-day-namen/", "subreddit": "/r/sweden", "center": [820.5, 83.5], "path": [[802.5, 78.5], [802.5, 87.5], [837.5, 87.5], [837.5, 78.5], [802.5, 78.5]]}, +{"id": "txfpyc", "submitted_by": "slanterns, raudrin", "name": "Kiki's Delivery Service", "description": "Kiki's Delivery Service (Japanese: \u9b54\u5973\u306e\u5b85\u6025\u4fbf, Hepburn: Majo no Takky\u016bbin) is a 1989 Japanese animated fantasy film written, produced, and directed by Hayao Miyazaki, adapted from the 1985 novel by Eiko Kadono. This art was suggested by u/Katermukke94 in r/ghibli and other Ghibli-associated subreddits, getting the most traction on r/ghibli. We were making slow progress as Ludwig's community fought against changes in the Totoro art, but eventually a member of our group contacted Ludwig's stream and he stated on stream that it was a good idea. His fans then helped to complete the art just before r/place finished.", "website": "https://en.wikipedia.org/wiki/Kiki%27s_Delivery_Service", "subreddit": "/r/ghibli", "center": [1176.5, 1524.5], "path": [[1157.5, 1521.5], [1161.5, 1518.5], [1165.5, 1522.5], [1167.5, 1505.5], [1170.5, 1505.5], [1176.5, 1509.5], [1179.5, 1502.5], [1182.5, 1505.5], [1182.5, 1511.5], [1187.5, 1516.5], [1187.5, 1523.5], [1180.5, 1526.5], [1180.5, 1530.5], [1186.5, 1530.5], [1186.5, 1540.5], [1187.5, 1541.5], [1187.5, 1543.5], [1185.5, 1542.5], [1182.5, 1543.5], [1180.5, 1539.5], [1179.5, 1542.5], [1177.5, 1542.5], [1177.5, 1538.5], [1173.5, 1538.5], [1169.5, 1535.5], [1169.5, 1529.5]]}, {"id": "txfpth", "submitted_by": "AradirOff", "name": "Aradir", "description": "The community of Aradir was here", "website": "https://www.youtube.com/c/AradirOff", "subreddit": "/r/aradir", "center": [541.5, 1691.5], "path": [[531.5, 1699.5], [531.5, 1683.5], [550.5, 1683.5], [550.5, 1699.5], [541.5, 1699.5]]}, -{"id": "txfpqx", "submitted_by": "JRBergstrom", "name": "Yukihana Lamy", "description": "Hololive Generation 5 vtuber Yukihana Lamy.", "website": "https://www.youtube.com/channel/UCFKOVgVbGmX65RxO3EtH3iw", "subreddit": "r/yukihanalamy/", "center": [1371.5, 973.5], "path": [[1375.5, 976.5], [1366.5, 976.5], [1367.5, 970.5], [1374.5, 970.5], [1375.5, 971.5]]}, -{"id": "txfpli", "submitted_by": "-Werewolff-", "name": "Jak", "description": "The main protagonist of the Jak and Daxter video game franchise. ", "website": "[https://en.wikipedia.org/wiki/Jak_and_Daxter](https://en.wikipedia.org/wiki/Jak_and_Daxter)", "subreddit": "r/jakanddaxter", "center": [672.5, 1354.5], "path": [[670.5, 1341.5], [668.5, 1342.5], [668.5, 1343.5], [668.5, 1346.5], [667.5, 1347.5], [667.5, 1348.5], [667.5, 1349.5], [668.5, 1349.5], [668.5, 1351.5], [668.5, 1355.5], [668.5, 1361.5], [668.5, 1366.5], [677.5, 1366.5], [675.5, 1358.5], [678.5, 1357.5], [679.5, 1356.5], [678.5, 1354.5], [675.5, 1346.5], [675.5, 1346.5], [674.5, 1343.5], [671.5, 1341.5], [670.5, 1340.5], [669.5, 1340.5]]}, +{"id": "txfpqx", "submitted_by": "JRBergstrom", "name": "Yukihana Lamy", "description": "Hololive Generation 5 vtuber Yukihana Lamy.", "website": "https://www.youtube.com/channel/UCFKOVgVbGmX65RxO3EtH3iw", "subreddit": "/r/yukihanalamy", "center": [1371.5, 973.5], "path": [[1375.5, 976.5], [1366.5, 976.5], [1367.5, 970.5], [1374.5, 970.5], [1375.5, 971.5]]}, +{"id": "txfpli", "submitted_by": "-Werewolff-", "name": "Jak", "description": "The main protagonist of the Jak and Daxter video game franchise. ", "website": "https://en.wikipedia.org/wiki/Jak_and_Daxter", "subreddit": "/r/jakanddaxter", "center": [672.5, 1354.5], "path": [[670.5, 1341.5], [668.5, 1342.5], [668.5, 1343.5], [668.5, 1346.5], [667.5, 1347.5], [667.5, 1348.5], [667.5, 1349.5], [668.5, 1349.5], [668.5, 1351.5], [668.5, 1355.5], [668.5, 1361.5], [668.5, 1366.5], [677.5, 1366.5], [675.5, 1358.5], [678.5, 1357.5], [679.5, 1356.5], [678.5, 1354.5], [675.5, 1346.5], [675.5, 1346.5], [674.5, 1343.5], [671.5, 1341.5], [670.5, 1340.5], [669.5, 1340.5]]}, {"id": "txfpdz", "submitted_by": "Vigitant_01", "name": "Getting Over It with Bennet Foddy", "description": "A game wherein players attempt to scale a large mountain of debris using a sledgehammer.", "website": "https://store.steampowered.com/app/240720/Getting_Over_It_with_Bennett_Foddy/", "subreddit": "/r/GettingOverItGame", "center": [1209.5, 814.5], "path": [[1200.5, 804.5], [1200.5, 823.5], [1217.5, 823.5], [1217.5, 804.5]]}, {"id": "txfp0k", "submitted_by": "JRBergstrom", "name": "Sakura Miko", "description": "Hololive Generation 0 vtuber Sakura Miko.", "website": "https://www.youtube.com/channel/UC-hM6YJuNYVAmUWxeIr9FeA", "subreddit": "", "center": [1371.5, 983.5], "path": [[1375.5, 985.5], [1367.5, 985.5], [1367.5, 980.5], [1375.5, 980.5]]}, {"id": "txfoxq", "submitted_by": "Nadabladam", "name": "Last Island", "description": "The beacon of light character from Nadabladam's game: Last Island", "website": "", "subreddit": "", "center": [880.5, 1953.5], "path": [[877.5, 1956.5], [883.5, 1956.5], [883.5, 1949.5], [877.5, 1949.5]]}, -{"id": "txfoql", "submitted_by": "CruxInBed", "name": "Mac Miller Memorial", "description": "Tribute to Music Artist Mac Miller that was born in 1992 and passed away in 2018.", "website": "https://www.macmillerswebsite.com/", "subreddit": "r/MacMiller", "center": [1740.5, 621.5], "path": [[1737.5, 605.5], [1737.5, 636.5], [1737.5, 637.5], [1743.5, 637.5], [1743.5, 637.5], [1743.5, 605.5], [1740.5, 605.5], [1737.5, 605.5]]}, +{"id": "txfoql", "submitted_by": "CruxInBed", "name": "Mac Miller Memorial", "description": "Tribute to Music Artist Mac Miller that was born in 1992 and passed away in 2018.", "website": "https://www.macmillerswebsite.com/", "subreddit": "/r/MacMiller", "center": [1740.5, 621.5], "path": [[1737.5, 605.5], [1737.5, 636.5], [1737.5, 637.5], [1743.5, 637.5], [1743.5, 637.5], [1743.5, 605.5], [1740.5, 605.5], [1737.5, 605.5]]}, {"id": "txfog8", "submitted_by": "Italiandogs", "name": "Italiandogs Hype", "description": "An attempt was made to recreate an emote of Twitch streamer Italiandogs by his community. \n Later was covered up by Mizkif's community while creating their artwork featuring Mizkif as an egg and Xavier the Polar Bear.\n Finally being covered up by One Piece", "website": "https://www.twitch.tv/italiandogs", "subreddit": "", "center": [210.5, 1369.5], "path": [[205.5, 1365.5], [205.5, 1374.5], [214.5, 1374.5], [215.5, 1365.5]]}, -{"id": "txfofd", "submitted_by": "zodyak", "name": "Quanaril", "description": "Quanaril is a streamer from Turkey and it is his channel logo.", "website": "https://www.twitch.tv/quanaril", "subreddit": "r/quanaril", "center": [0.5, 0.5], "path": []}, -{"id": "txfodc", "submitted_by": "bigbrother2030", "name": "Flags of the UK", "description": "The flags of England, Scotland, Wales, the Ulster Banner, and Cornwall (unauthorised by UK Place)", "website": "", "subreddit": "", "center": [611.5, 554.5], "path": [[591.5, 551.5], [591.5, 557.5], [631.5, 557.5], [631.5, 551.5]]}, -{"id": "txfoco", "submitted_by": "yaomon17", "name": "NixOS", "description": "NixOS is a Linux distribution with a unique approach to package and configuration management. In existing distributions, actions such as upgrades are dangerous: upgrading a package can cause other packages to break, upgrading an entire system is much less reliable than reinstalling from scratch, you can\u2019t safely test what the results of a configuration change will be, you cannot easily undo changes to the system, and so on. We want to change that. NixOS has many innovative features:", "website": "https://nixos.org/", "subreddit": "/r/NixOS/", "center": [33.5, 708.5], "path": [[35.5, 705.5], [29.5, 705.5], [31.5, 711.5], [37.5, 711.5]]}, +{"id": "txfoco", "submitted_by": "yaomon17", "name": "NixOS", "description": "NixOS is a Linux distribution with a unique approach to package and configuration management. In existing distributions, actions such as upgrades are dangerous: upgrading a package can cause other packages to break, upgrading an entire system is much less reliable than reinstalling from scratch, you can\u2019t safely test what the results of a configuration change will be, you cannot easily undo changes to the system, and so on. We want to change that. NixOS has many innovative features:", "website": "https://nixos.org/", "subreddit": "/r/NixOS", "center": [33.5, 708.5], "path": [[35.5, 705.5], [29.5, 705.5], [31.5, 711.5], [37.5, 711.5]]}, {"id": "txfoaf", "submitted_by": "Imaginary-Kale4259", "name": "FRC team AEMBOT 6443", "description": "FRC team in Hillsboro Oregon", "website": "http://www.aembot.com", "subreddit": "", "center": [1156.5, 1661.5], "path": [[1162.5, 1658.5], [1149.5, 1658.5], [1149.5, 1664.5], [1162.5, 1664.5]]}, {"id": "txfo60", "submitted_by": "MrEvilFish22", "name": "CNG", "description": "Cringe Ninja Gaming is a small esports organization started by Liam Ercanbrack", "website": "https://twitter.com/CNG_Esports_", "subreddit": "", "center": [358.5, 706.5], "path": [[353.5, 703.5], [362.5, 703.5], [362.5, 708.5], [353.5, 708.5]]}, -{"id": "txfo4q", "submitted_by": "JRBergstrom", "name": "Usada Pekora", "description": "Hololive Generation 3 vtuber Usada Pekora.", "website": "https://www.youtube.com/channel/UC1DCedRgGHBdm81E1llLhOQ", "subreddit": "/r/Pekora/", "center": [1371.5, 994.5], "path": [[1375.5, 998.5], [1375.5, 990.5], [1367.5, 990.5], [1367.5, 998.5]]}, -{"id": "txfntv", "submitted_by": "AltoNeptune", "name": "Remnant of Project Cherryton", "description": "A small mostly broken logo of the Beastars/Comic dub youtube channel known as Project Cherryton or Imaginary Badger.", "website": "[https://www.youtube.com/c/ImaginaryBadger](https://www.youtube.com/c/ImaginaryBadger)", "subreddit": "", "center": [1349.5, 347.5], "path": [[1345.5, 349.5], [1353.5, 349.5], [1353.5, 345.5], [1345.5, 345.5], [1345.5, 349.5]]}, -{"id": "txfnth", "submitted_by": "UnemotionalCyborg", "name": "Merlin (BBC)", "description": "Remnants of Merlin portrayed by actor Colin Morgan in the show 'Merlin' by BBC. ", "website": "https://merlin.fandom.com/wiki/Merlin_(TV_Series)", "subreddit": "/r/merlinbbc", "center": [0.5, 0.5], "path": []}, -{"id": "txfnnn", "submitted_by": "AnonymousRandPerson", "name": "Sk\u00e5l!", "description": "A word that means \"Cheers!\" in Norwegian, Swedish, and Danish", "website": "[https://en.wiktionary.org/wiki/sk%C3%A5l](https://en.wiktionary.org/wiki/sk%C3%A5l)", "subreddit": "r/place_nordicunion", "center": [767.5, 96.5], "path": [[742.5, 93.5], [742.5, 99.5], [791.5, 99.5], [791.5, 93.5], [742.5, 93.5]]}, +{"id": "txfo4q", "submitted_by": "JRBergstrom", "name": "Usada Pekora", "description": "Hololive Generation 3 vtuber Usada Pekora.", "website": "https://www.youtube.com/channel/UC1DCedRgGHBdm81E1llLhOQ", "subreddit": "/r/Pekora", "center": [1371.5, 994.5], "path": [[1375.5, 998.5], [1375.5, 990.5], [1367.5, 990.5], [1367.5, 998.5]]}, +{"id": "txfntv", "submitted_by": "AltoNeptune", "name": "Remnant of Project Cherryton", "description": "A small mostly broken logo of the Beastars/Comic dub youtube channel known as Project Cherryton or Imaginary Badger.", "website": "https://www.youtube.com/c/ImaginaryBadger", "subreddit": "", "center": [1349.5, 347.5], "path": [[1345.5, 349.5], [1353.5, 349.5], [1353.5, 345.5], [1345.5, 345.5], [1345.5, 349.5]]}, +{"id": "txfnnn", "submitted_by": "AnonymousRandPerson", "name": "Sk\u00e5l!", "description": "A word that means \"Cheers!\" in Norwegian, Swedish, and Danish", "website": "https://en.wiktionary.org/wiki/sk%C3%A5l", "subreddit": "/r/sweden", "center": [767.5, 96.5], "path": [[742.5, 93.5], [742.5, 99.5], [791.5, 99.5], [791.5, 93.5], [742.5, 93.5]]}, {"id": "txfneu", "submitted_by": "thiber", "name": "Volkswagen T1", "description": "Iconic first generation of Volkswagens popular Transporter series made from 1950\u20131967.", "website": "", "subreddit": "/r/PlaceDE", "center": [1647.5, 855.5], "path": [[1639.5, 868.5], [1635.5, 868.5], [1631.5, 864.5], [1631.5, 853.5], [1635.5, 847.5], [1670.5, 847.5], [1672.5, 851.5], [1668.5, 852.5], [1664.5, 856.5], [1654.5, 858.5], [1652.5, 861.5], [1651.5, 865.5], [1653.5, 868.5], [1650.5, 868.5], [1649.5, 866.5], [1639.5, 866.5], [1639.5, 868.5]]}, {"id": "txfmw2", "submitted_by": "JRBergstrom", "name": "Ayunda Risu", "description": "Hololive Indonesia Generation 1 vtuber Ayunda Risu, well known for her No Nut November series.", "website": "https://www.youtube.com/channel/UCOyYb1c43VlX9rc_lT6NKQw", "subreddit": "", "center": [1384.5, 979.5], "path": [[1387.5, 982.5], [1388.5, 982.5], [1380.5, 982.5], [1380.5, 975.5], [1388.5, 975.5], [1388.5, 982.5]]}, -{"id": "txfmrv", "submitted_by": "roowco1", "name": "1HP club", "description": "1hp club is a webtoon made by someone named theo", "website": "https://www.webtoons.com/en/fantasy/1hp-club/list?title_no=2960&page=1", "subreddit": "https://www.reddit.com/r/1hpclub/", "center": [0.5, 0.5], "path": []}, {"id": "txfm40", "submitted_by": "JRBergstrom", "name": "Ariani Iofifteen", "description": "Hololive Indonesia Generation 1 vtuber Ariani Iofifteen", "website": "https://www.youtube.com/channel/UCAoy6rzhSf4ydcYjJw3WoVg", "subreddit": "", "center": [1382.5, 986.5], "path": [[1386.5, 989.5], [1379.5, 989.5], [1379.5, 983.5], [1385.5, 983.5], [1386.5, 984.5]]}, {"id": "txflqn", "submitted_by": "-Noen-", "name": "BAL Logo", "description": "The logo of Bornova Anadolu Lisesi (Bornofa Anatolian High School) located in \u0130zmir, Turkey.", "website": "", "subreddit": "", "center": [1584.5, 1348.5], "path": [[1573.5, 1337.5], [1574.5, 1338.5], [1574.5, 1359.5], [1594.5, 1359.5], [1594.5, 1338.5], [1595.5, 1338.5], [1595.5, 1337.5], [1594.5, 1339.5], [1594.5, 1337.5]]}, -{"id": "txflla", "submitted_by": "jcaopbaeck", "name": "Mac Miller Memorial", "description": "Memorial dedicated to Mac Miller, born in 1992 and passed away in 2018. This piece was created and defended by a subreddit and Discord channel consisting of fans. Mac Miller was a rapper, singer, and record producer from Pittsburgh, Pennsylvania.", "website": "http://macmillerswebsite.com", "subreddit": "r/MacMiller", "center": [1740.5, 621.5], "path": [[1737.5, 606.5], [1737.5, 637.5], [1742.5, 637.5], [1743.5, 607.5]]}, +{"id": "txflla", "submitted_by": "jcaopbaeck", "name": "Mac Miller Memorial", "description": "Memorial dedicated to Mac Miller, born in 1992 and passed away in 2018. This piece was created and defended by a subreddit and Discord channel consisting of fans. Mac Miller was a rapper, singer, and record producer from Pittsburgh, Pennsylvania.", "website": "http://macmillerswebsite.com", "subreddit": "/r/MacMiller", "center": [1740.5, 621.5], "path": [[1737.5, 606.5], [1737.5, 637.5], [1742.5, 637.5], [1743.5, 607.5]]}, {"id": "txfl8f", "submitted_by": "MacBao", "name": "University of Chicago", "description": "Coat of Arms of the University of Chicago, located in Chicago, Illinois, USA.", "website": "", "subreddit": "/r/uchicago", "center": [1405.5, 1187.5], "path": [[1396.5, 1172.5], [1396.5, 1201.5], [1415.5, 1201.5], [1414.5, 1172.5]]}, -{"id": "txfkxu", "submitted_by": "Faltnor", "name": "Gabumon", "description": "Gabumon from Digimon", "website": "", "subreddit": "digimon", "center": [1330.5, 118.5], "path": [[1322.5, 104.5], [1322.5, 104.5], [1322.5, 104.5], [1321.5, 110.5], [1319.5, 114.5], [1321.5, 116.5], [1322.5, 117.5], [1320.5, 120.5], [1320.5, 128.5], [1321.5, 129.5], [1326.5, 129.5], [1333.5, 130.5], [1341.5, 127.5], [1340.5, 123.5], [1342.5, 120.5], [1343.5, 117.5], [1339.5, 118.5], [1337.5, 114.5], [1334.5, 110.5], [1333.5, 108.5], [1333.5, 107.5], [1335.5, 107.5], [1336.5, 106.5], [1337.5, 104.5], [1331.5, 105.5], [1329.5, 106.5], [1328.5, 106.5], [1328.5, 104.5], [1326.5, 104.5], [1325.5, 105.5], [1324.5, 105.5], [1321.5, 103.5], [1322.5, 105.5], [1322.5, 105.5]]}, {"id": "txfkum", "submitted_by": "BlumenkrAnsel", "name": "UP (University of the Philippines)", "description": "A famous school in the Philippines.", "website": "", "subreddit": "/r/Philippines", "center": [401.5, 1615.5], "path": [[394.5, 1611.5], [407.5, 1611.5], [407.5, 1619.5], [394.5, 1619.5]]}, -{"id": "txfkln", "submitted_by": "Leon08x", "name": "Gabumon", "description": "A shy reptile Digimon who covers himself in the data that the wolf Digimon Garurumon leaves behind, shaping it into a fur pelt to wear. One of Gabumon's most notables appearance is in Digimon Adventure (1998) in which one Gabumon is the Digimon partner to digidestined Yamato (Matt) Ishida.", "website": "https://digimon.fandom.com/wiki/Gabumon", "subreddit": "r/digimon", "center": [1329.5, 117.5], "path": [[1322.5, 104.5], [1322.5, 103.5], [1319.5, 114.5], [1320.5, 129.5], [1327.5, 129.5], [1329.5, 130.5], [1334.5, 130.5], [1338.5, 126.5], [1340.5, 126.5], [1342.5, 126.5], [1341.5, 124.5], [1341.5, 121.5], [1343.5, 121.5], [1343.5, 118.5], [1343.5, 117.5], [1343.5, 116.5], [1340.5, 116.5], [1340.5, 117.5], [1338.5, 117.5], [1338.5, 114.5], [1336.5, 113.5], [1336.5, 111.5], [1335.5, 109.5], [1333.5, 108.5], [1337.5, 106.5], [1337.5, 104.5], [1329.5, 104.5], [1322.5, 103.5], [1322.5, 103.5]]}, -{"id": "txfkan", "submitted_by": "Saray13434", "name": "Skeppy", "description": "Skeppy is a Youtuber and Streamer that makes Minecraft videos and loves to make BadBoyHalo mad, love trolling him too and he is a builder (maybe), he also appear in the Dream SMP", "website": "[https://www.youtube.com/c/Skeppy](https://www.youtube.com/c/Skeppy)", "subreddit": "r/skeppy", "center": [169.5, 922.5], "path": [[165.5, 918.5], [165.5, 925.5], [172.5, 925.5], [172.5, 918.5]]}, +{"id": "txfkln", "submitted_by": "Leon08x", "name": "Gabumon", "description": "A shy reptile Digimon who covers himself in the data that the wolf Digimon Garurumon leaves behind, shaping it into a fur pelt to wear. One of Gabumon's most notables appearance is in Digimon Adventure (1998) in which one Gabumon is the Digimon partner to digidestined Yamato (Matt) Ishida.", "website": "https://digimon.fandom.com/wiki/Gabumon", "subreddit": "/r/digimon", "center": [1329.5, 117.5], "path": [[1322.5, 104.5], [1322.5, 103.5], [1319.5, 114.5], [1320.5, 129.5], [1327.5, 129.5], [1329.5, 130.5], [1334.5, 130.5], [1338.5, 126.5], [1340.5, 126.5], [1342.5, 126.5], [1341.5, 124.5], [1341.5, 121.5], [1343.5, 121.5], [1343.5, 118.5], [1343.5, 117.5], [1343.5, 116.5], [1340.5, 116.5], [1340.5, 117.5], [1338.5, 117.5], [1338.5, 114.5], [1336.5, 113.5], [1336.5, 111.5], [1335.5, 109.5], [1333.5, 108.5], [1337.5, 106.5], [1337.5, 104.5], [1329.5, 104.5], [1322.5, 103.5], [1322.5, 103.5]]}, +{"id": "txfkan", "submitted_by": "Saray13434", "name": "Skeppy", "description": "Skeppy is a Youtuber and Streamer that makes Minecraft videos and loves to make BadBoyHalo mad, love trolling him too and he is a builder (maybe), he also appear in the Dream SMP", "website": "https://www.youtube.com/c/Skeppy", "subreddit": "/r/skeppy", "center": [169.5, 922.5], "path": [[165.5, 918.5], [165.5, 925.5], [172.5, 925.5], [172.5, 918.5]]}, {"id": "txfk8c", "submitted_by": "KuntKiera", "name": "In loving memory Michael 'Bakuretsu'", "description": "A tribute to a long time Otaku, Megumin lover And dear friend, though he is no longer with us the impact he has made on everyone he was friends with will be remembered forever, may he rest in peace.", "website": "", "subreddit": "", "center": [1665.5, 156.5], "path": [[1663.5, 160.5], [1665.5, 160.5], [1666.5, 159.5], [1665.5, 158.5], [1666.5, 157.5], [1666.5, 156.5], [1667.5, 156.5], [1668.5, 155.5], [1668.5, 153.5], [1663.5, 152.5], [1662.5, 153.5], [1663.5, 154.5], [1663.5, 156.5], [1662.5, 157.5], [1663.5, 158.5], [1662.5, 159.5]]}, -{"id": "txfk7a", "submitted_by": "slanterns", "name": "NixOS", "description": "NixOS is a Linux distribution built on top of the Nix package manager. It uses declarative configuration and allows reliable system upgrades.", "website": "https://nixos.org/", "subreddit": "/r/NixOS/", "center": [33.5, 708.5], "path": [[31.5, 705.5], [35.5, 705.5], [36.5, 706.5], [36.5, 710.5], [35.5, 711.5], [31.5, 711.5], [30.5, 710.5], [30.5, 706.5], [31.5, 705.5]]}, +{"id": "txfk7a", "submitted_by": "slanterns", "name": "NixOS", "description": "NixOS is a Linux distribution built on top of the Nix package manager. It uses declarative configuration and allows reliable system upgrades.", "website": "https://nixos.org/", "subreddit": "/r/NixOS", "center": [33.5, 708.5], "path": [[31.5, 705.5], [35.5, 705.5], [36.5, 706.5], [36.5, 710.5], [35.5, 711.5], [31.5, 711.5], [30.5, 710.5], [30.5, 706.5], [31.5, 705.5]]}, {"id": "txfjs1", "submitted_by": "JRBergstrom", "name": "Moona Hoshinova", "description": "Hololive Indonesia Generation 1 vtuber Moona Hoshinova", "website": "https://www.youtube.com/channel/UCP0BspO_AMEe3aQqqpo89Dg", "subreddit": "", "center": [1384.5, 995.5], "path": [[1389.5, 998.5], [1387.5, 990.5], [1382.5, 990.5], [1378.5, 998.5], [1389.5, 998.5]]}, -{"id": "txfjeg", "submitted_by": "Elowine", "name": "KaiserPog", "description": "A variation on a popular \"pogchamp\" Twitch emote using Kaiser Kattail: a character from a popular Stellaris mod named Gigastructural Engineering & More.", "website": "https://steamcommunity.com/sharedfiles/filedetails/?id=1121692237", "subreddit": "r/Stellaris", "center": [1465.5, 987.5], "path": [[1452.5, 975.5], [1452.5, 998.5], [1478.5, 998.5], [1478.5, 975.5], [1467.5, 975.5], [1467.5, 976.5], [1466.5, 976.5], [1466.5, 978.5], [1463.5, 977.5], [1463.5, 976.5], [1462.5, 976.5], [1462.5, 975.5], [1452.5, 976.5]]}, -{"id": "txfje1", "submitted_by": "Master-Powers", "name": "Inuyasha banner", "description": "From the anime, Inuyasha or dog demon. He is a half human, half demon main chara ter", "website": "", "subreddit": "", "center": [1582.5, 37.5], "path": [[1568.5, 36.5], [1578.5, 36.5], [1569.5, 40.5], [1584.5, 40.5], [1597.5, 39.5], [1598.5, 40.5], [1597.5, 34.5], [1569.5, 35.5], [1566.5, 41.5], [1569.5, 40.5], [1576.5, 38.5], [1581.5, 38.5], [1580.5, 35.5]]}, +{"id": "txfjeg", "submitted_by": "Elowine", "name": "KaiserPog", "description": "A variation on a popular \"pogchamp\" Twitch emote using Kaiser Kattail: a character from a popular Stellaris mod named Gigastructural Engineering & More.", "website": "https://steamcommunity.com/sharedfiles/filedetails/?id=1121692237", "subreddit": "/r/Stellaris", "center": [1465.5, 987.5], "path": [[1452.5, 975.5], [1452.5, 998.5], [1478.5, 998.5], [1478.5, 975.5], [1467.5, 975.5], [1467.5, 976.5], [1466.5, 976.5], [1466.5, 978.5], [1463.5, 977.5], [1463.5, 976.5], [1462.5, 976.5], [1462.5, 975.5], [1452.5, 976.5]]}, {"id": "txfj30", "submitted_by": "fleshmeatunbiased", "name": "amogus in mother void", "description": "", "website": "", "subreddit": "", "center": [972.5, 1508.5], "path": [[971.5, 1510.5], [973.5, 1510.5], [973.5, 1506.5], [971.5, 1506.5]]}, {"id": "txfirv", "submitted_by": "ado000", "name": "ICY", "description": "(Informatique et Cybers\u00e9curit\u00e9)\nName of the 2021 INSA HdF promotion in Computer Science and Cybersecurity\n(les meilleurs) ", "website": "", "subreddit": "", "center": [225.5, 1244.5], "path": [[220.5, 1242.5], [229.5, 1242.5], [229.5, 1245.5], [220.5, 1245.5]]}, {"id": "txfie8", "submitted_by": "rameespitcup", "name": "Mandem", "description": "The Mandem (MDM) is a British gang within GTA V NoPixel.", "website": "", "subreddit": "", "center": [441.5, 1035.5], "path": [[433.5, 984.5], [449.5, 984.5], [447.5, 1090.5], [448.5, 1090.5], [434.5, 1089.5]]}, {"id": "txfi43", "submitted_by": "XMCBRST", "name": "Zimbabwe Flag", "description": "A small, humble flag representing the country of Zimbabwe made by a group of irl friends.", "website": "", "subreddit": "", "center": [1110.5, 449.5], "path": [[1103.5, 445.5], [1116.5, 445.5], [1116.5, 453.5], [1103.5, 453.5]]}, -{"id": "txfi2u", "submitted_by": "JRBergstrom", "name": "Oozora Subaru", "description": "The Hololive Generation 2 vtuber Oozora Subaru.", "website": "https://www.youtube.com/channel/UCvzGlP9oQwU--Y0r9id_jnA", "subreddit": "/r/oozorasubaru/", "center": [1393.5, 975.5], "path": [[1390.5, 974.5], [1395.5, 974.5], [1396.5, 979.5], [1390.5, 979.5], [1390.5, 979.5], [1390.5, 979.5], [1390.5, 979.5], [1390.5, 972.5], [1396.5, 972.5], [1396.5, 979.5], [1389.5, 973.5], [1390.5, 973.5], [1391.5, 971.5], [1393.5, 971.5], [1395.5, 971.5]]}, -{"id": "txfhd7", "submitted_by": "Shad0xFr", "name": "Wubby 7", "description": "An emote of Twitch Streamer PayMoneyWubby saluting. The emote is known in the community as \u201cwubby7.\u201d\n\nThis emote have been attacked by Frnech Community when Wubby would to make an aliance with Mizkif to attack the Huge French Flag (#FRANCE_over_sPAIN), Wubby thought that was a bots attack because of the efficiency of the huge Frenchies, so they wrote \"HUMAN\" to show him how alive was they", "website": "https://www.twitch.tv/paymoneywubby/clip/SmoggyUnusualMeerkatFloof--xu5f_5vkPmgx24C?filter=clips&range=7d&sort=time", "subreddit": "r/place", "center": [0.5, 0.5], "path": []}, -{"id": "txfgy3", "submitted_by": "eveque", "name": "LilHouse", "description": "Just a little house built by people trying to protect something cute", "website": "", "subreddit": "r/LilHousePlace", "center": [1646.5, 1445.5], "path": [[1654.5, 1440.5], [1637.5, 1440.5], [1638.5, 1450.5], [1654.5, 1450.5]]}, -{"id": "txfgst", "submitted_by": "AnonymousRandPerson", "name": "Flag of Sweden", "description": "", "website": "[https://en.wikipedia.org/wiki/Sweden](https://en.wikipedia.org/wiki/Sweden)", "subreddit": "r/place_nordicunion", "center": [655.5, 79.5], "path": [[495.5, 103.5], [496.5, 35.5], [707.5, 35.5], [707.5, 66.5], [712.5, 66.5], [712.5, 70.5], [840.5, 70.5], [840.5, 67.5], [886.5, 67.5], [886.5, 69.5], [893.5, 69.5], [893.5, 89.5], [799.5, 89.5], [799.5, 120.5], [591.5, 120.5], [591.5, 103.5], [539.5, 103.5], [539.5, 123.5], [537.5, 123.5], [535.5, 121.5], [525.5, 121.5], [525.5, 103.5]]}, +{"id": "txfi2u", "submitted_by": "JRBergstrom", "name": "Oozora Subaru", "description": "The Hololive Generation 2 vtuber Oozora Subaru.", "website": "https://www.youtube.com/channel/UCvzGlP9oQwU--Y0r9id_jnA", "subreddit": "/r/oozorasubaru", "center": [1393.5, 975.5], "path": [[1390.5, 974.5], [1395.5, 974.5], [1396.5, 979.5], [1390.5, 979.5], [1390.5, 979.5], [1390.5, 979.5], [1390.5, 979.5], [1390.5, 972.5], [1396.5, 972.5], [1396.5, 979.5], [1389.5, 973.5], [1390.5, 973.5], [1391.5, 971.5], [1393.5, 971.5], [1395.5, 971.5]]}, +{"id": "txfgy3", "submitted_by": "eveque", "name": "LilHouse", "description": "Just a little house built by people trying to protect something cute", "website": "", "subreddit": "/r/LilHousePlace", "center": [1646.5, 1445.5], "path": [[1654.5, 1440.5], [1637.5, 1440.5], [1638.5, 1450.5], [1654.5, 1450.5]]}, +{"id": "txfgst", "submitted_by": "AnonymousRandPerson", "name": "Flag of Sweden", "description": "", "website": "https://en.wikipedia.org/wiki/Sweden", "subreddit": "/r/sweden", "center": [655.5, 79.5], "path": [[495.5, 103.5], [496.5, 35.5], [707.5, 35.5], [707.5, 66.5], [712.5, 66.5], [712.5, 70.5], [840.5, 70.5], [840.5, 67.5], [886.5, 67.5], [886.5, 69.5], [893.5, 69.5], [893.5, 89.5], [799.5, 89.5], [799.5, 120.5], [591.5, 120.5], [591.5, 103.5], [539.5, 103.5], [539.5, 123.5], [537.5, 123.5], [535.5, 121.5], [525.5, 121.5], [525.5, 103.5]]}, {"id": "txfgoq", "submitted_by": "fund-my-death", "name": "Warp Records", "description": "Section dedicated to Warp Records, an experimental electronic music label.", "website": "", "subreddit": "", "center": [1310.5, 511.5], "path": [[1303.5, 487.5], [1287.5, 487.5], [1287.5, 510.5], [1298.5, 510.5], [1298.5, 534.5], [1322.5, 534.5], [1329.5, 527.5], [1331.5, 496.5], [1304.5, 496.5], [1304.5, 487.5]]}, -{"id": "txfgc3", "submitted_by": "SkylarClark69", "name": "Baba", "description": "The main character from the indie game Baba is You", "website": "", "subreddit": "R/BabaisYou", "center": [694.5, 829.5], "path": [[694.5, 826.5], [694.5, 826.5], [694.5, 825.5], [693.5, 825.5], [692.5, 825.5], [692.5, 826.5], [692.5, 827.5], [692.5, 828.5], [691.5, 829.5], [690.5, 830.5], [690.5, 831.5], [690.5, 832.5], [691.5, 833.5], [692.5, 832.5], [693.5, 832.5], [694.5, 833.5], [695.5, 832.5], [695.5, 833.5], [696.5, 834.5], [697.5, 833.5], [697.5, 832.5], [697.5, 831.5], [698.5, 831.5], [698.5, 830.5], [698.5, 829.5], [698.5, 828.5], [697.5, 827.5], [696.5, 826.5], [695.5, 825.5], [694.5, 825.5], [694.5, 826.5], [694.5, 826.5]]}, -{"id": "txfe1h", "submitted_by": "AnonymousRandPerson", "name": "Sweden heart", "description": "A heart depicting the flag of Sweden.", "website": "[https://en.wikipedia.org/wiki/Sweden](https://en.wikipedia.org/wiki/Sweden)", "subreddit": "r/place_nordicunion", "center": [532.5, 35.5], "path": [[528.5, 30.5], [525.5, 33.5], [525.5, 36.5], [532.5, 43.5], [539.5, 36.5], [539.5, 33.5], [536.5, 30.5], [534.5, 30.5], [532.5, 32.5], [530.5, 30.5], [528.5, 30.5]]}, -{"id": "txfdp1", "submitted_by": "hedonicarus", "name": "Vulfpeck V", "description": "This V is the symbol for low volume funk band Vulfpeck.", "website": "[https://www.youtube.com/c/Vulf](https://www.youtube.com/c/Vulf)", "subreddit": "[https://www.reddit.com/r/Vulfpeck/](https://www.reddit.com/r/Vulfpeck/)", "center": [1158.5, 1853.5], "path": [[1163.5, 1857.5], [1153.5, 1857.5], [1153.5, 1849.5], [1163.5, 1849.5], [1163.5, 1849.5]]}, +{"id": "txfgc3", "submitted_by": "SkylarClark69", "name": "Baba", "description": "The main character from the indie game Baba is You", "website": "", "subreddit": "/r/BabaisYou", "center": [694.5, 829.5], "path": [[694.5, 826.5], [694.5, 826.5], [694.5, 825.5], [693.5, 825.5], [692.5, 825.5], [692.5, 826.5], [692.5, 827.5], [692.5, 828.5], [691.5, 829.5], [690.5, 830.5], [690.5, 831.5], [690.5, 832.5], [691.5, 833.5], [692.5, 832.5], [693.5, 832.5], [694.5, 833.5], [695.5, 832.5], [695.5, 833.5], [696.5, 834.5], [697.5, 833.5], [697.5, 832.5], [697.5, 831.5], [698.5, 831.5], [698.5, 830.5], [698.5, 829.5], [698.5, 828.5], [697.5, 827.5], [696.5, 826.5], [695.5, 825.5], [694.5, 825.5], [694.5, 826.5], [694.5, 826.5]]}, +{"id": "txfe1h", "submitted_by": "AnonymousRandPerson", "name": "Sweden heart", "description": "A heart depicting the flag of Sweden.", "website": "https://en.wikipedia.org/wiki/Sweden", "subreddit": "/r/place_nordicunion", "center": [532.5, 35.5], "path": [[528.5, 30.5], [525.5, 33.5], [525.5, 36.5], [532.5, 43.5], [539.5, 36.5], [539.5, 33.5], [536.5, 30.5], [534.5, 30.5], [532.5, 32.5], [530.5, 30.5], [528.5, 30.5]]}, +{"id": "txfdp1", "submitted_by": "hedonicarus", "name": "Vulfpeck V", "description": "This V is the symbol for low volume funk band Vulfpeck.", "website": "https://www.youtube.com/c/Vulf", "subreddit": "[/r/Vulfpeck", "center": [1158.5, 1853.5], "path": [[1163.5, 1857.5], [1153.5, 1857.5], [1153.5, 1849.5], [1163.5, 1849.5], [1163.5, 1849.5]]}, {"id": "txfczy", "submitted_by": "AnonymousRandPerson", "name": "Netherlands-S\u00e1mi heart", "description": "A heart depicting the flags of the Netherlands and the S\u00e1mi people.", "website": "", "subreddit": "", "center": [496.5, 35.5], "path": [[492.5, 30.5], [489.5, 33.5], [489.5, 36.5], [495.5, 42.5], [496.5, 42.5], [502.5, 36.5], [502.5, 33.5], [499.5, 30.5], [497.5, 30.5], [496.5, 31.5], [495.5, 31.5], [494.5, 30.5], [492.5, 30.5]]}, -{"id": "txfbm8", "submitted_by": "Saray13434", "name": "jschlatt", "description": "jschlatt is a Streamer and Youtuber that is a very funny guy, famous for being in the DreamSMP, very popular for his Wii game reviews and is a part of an org called OTK where he takes part in their events and even hold a reaction section of the company where he brings people in to watch videos and react", "website": "[https://www.twitch.tv/jschlatt](https://www.twitch.tv/jschlatt)", "subreddit": "r/jschlatt", "center": [187.5, 922.5], "path": [[183.5, 918.5], [183.5, 925.5], [190.5, 925.5], [190.5, 918.5]]}, -{"id": "txfati", "submitted_by": "AnonymousRandPerson", "name": "Norway heart", "description": "A heart adorned with the Flag of Norway.", "website": "[https://en.wikipedia.org/wiki/Norway](https://en.wikipedia.org/wiki/Norway)", "subreddit": "r/place_nordicunion", "center": [469.5, 112.5], "path": [[465.5, 108.5], [463.5, 110.5], [463.5, 112.5], [468.5, 117.5], [469.5, 117.5], [474.5, 112.5], [474.5, 110.5], [472.5, 108.5], [470.5, 108.5], [469.5, 109.5], [468.5, 109.5], [467.5, 108.5], [465.5, 108.5]]}, -{"id": "txfar4", "submitted_by": "Conrad_tf2", "name": "The Minecraft bee is trans", "description": "how?", "website": "", "subreddit": "", "center": [716.5, 464.5], "path": [[704.5, 457.5], [704.5, 471.5], [727.5, 471.5], [727.5, 457.5]]}, -{"id": "txfalv", "submitted_by": "SuperGameController", "name": "Skysail Insignia", "description": "A winged white sword.\n\nIt represents the Kingdom of Skysail in the realm of Inita, one of the many realms in the Countless Worlds.\n\nThe insignia of the winged sword mirrors the great military power of the Skysail Kingdom.\nNot only do they excel in military power, Skysail is the main trading hub within the realms, they control most of the trades between worlds and are responsible for exports of Nillium, a magical ore used in the hull of flying ships.\n\nThe game's discord can be found here > [discord.gg/CW](https://discord.gg/CW) <\n", "website": "[https://www.roblox.com/games/6900861054/Countless-Worlds](https://www.roblox.com/games/6900861054/Countless-Worlds)", "subreddit": "[https://www.reddit.com/r/RobloxCountlessWorlds/](https://www.reddit.com/r/RobloxCountlessWorlds/)", "center": [297.5, 1508.5], "path": [[293.5, 1515.5], [300.5, 1515.5], [300.5, 1500.5], [293.5, 1500.5], [293.5, 1515.5]]}, -{"id": "txfah1", "submitted_by": "Wellliam", "name": "Emotiguy (Picardia)", "description": "This emotiguy, more famously known as Picardia, had been rebuilt during Xqc's meteor.\nOn day 3, r/OnePiece Added a cool little hat.", "website": "[https://trubiso.tk](https://trubiso.tk)", "subreddit": "r/emotiguy", "center": [1543.5, 152.5], "path": [[1533.5, 159.5], [1532.5, 142.5], [1550.5, 142.5], [1555.5, 161.5], [1543.5, 161.5]]}, -{"id": "txf9s5", "submitted_by": "AnonymousRandPerson", "name": "Hallgr\u00edmskirkja", "description": "The largest church in Iceland.", "website": "[https://en.wikipedia.org/wiki/Hallgr%C3%ADmskirkja](https://en.wikipedia.org/wiki/Hallgr%C3%ADmskirkja)", "subreddit": "r/place_nordicunion", "center": [514.5, 126.5], "path": [[515.5, 106.5], [513.5, 108.5], [514.5, 109.5], [514.5, 110.5], [512.5, 112.5], [512.5, 113.5], [511.5, 114.5], [511.5, 116.5], [507.5, 124.5], [507.5, 125.5], [506.5, 126.5], [506.5, 127.5], [503.5, 130.5], [502.5, 130.5], [500.5, 132.5], [500.5, 136.5], [525.5, 136.5], [525.5, 128.5], [524.5, 127.5], [524.5, 126.5], [523.5, 125.5], [523.5, 124.5], [519.5, 116.5], [519.5, 114.5], [518.5, 113.5], [518.5, 112.5], [516.5, 110.5], [517.5, 108.5], [515.5, 106.5]]}, -{"id": "txf8ts", "submitted_by": "AnonymousRandPerson", "name": "Snowflake", "description": "", "website": "[https://en.wikipedia.org/wiki/Snowflake](https://en.wikipedia.org/wiki/Snowflake)", "subreddit": "r/place_nordicunion", "center": [484.5, 110.5], "path": [[481.5, 104.5], [481.5, 106.5], [480.5, 107.5], [478.5, 107.5], [478.5, 113.5], [480.5, 113.5], [481.5, 114.5], [481.5, 116.5], [487.5, 116.5], [487.5, 114.5], [488.5, 113.5], [490.5, 113.5], [490.5, 107.5], [488.5, 107.5], [487.5, 106.5], [487.5, 104.5]]}, -{"id": "txf8lo", "submitted_by": "Truelz", "name": "Danish part of r/place_nordicunion", "description": "The Danish part of r/place_nordicunion, featuring different artworks related to Denmark, Greenland and the Faroe Islands ", "website": "", "subreddit": "/r/place_nordicunion /r/denmark", "center": [427.5, 182.5], "path": [[497.5, 137.5], [476.5, 136.5], [476.5, 121.5], [461.5, 121.5], [461.5, 102.5], [412.5, 103.5], [412.5, 120.5], [399.5, 120.5], [400.5, 131.5], [333.5, 131.5], [334.5, 120.5], [299.5, 119.5], [276.5, 120.5], [276.5, 105.5], [271.5, 105.5], [272.5, 128.5], [275.5, 134.5], [277.5, 158.5], [340.5, 158.5], [340.5, 169.5], [433.5, 171.5], [434.5, 298.5], [496.5, 297.5], [496.5, 186.5], [500.5, 179.5], [509.5, 175.5], [517.5, 174.5], [517.5, 149.5], [496.5, 149.5], [496.5, 149.5]]}, -{"id": "txf872", "submitted_by": "AnonymousRandPerson", "name": "Puffins", "description": "", "website": "[https://en.wikipedia.org/wiki/Puffin](https://en.wikipedia.org/wiki/Puffin)", "subreddit": "r/place_nordicunion", "center": [469.5, 130.5], "path": [[455.5, 123.5], [453.5, 125.5], [453.5, 127.5], [452.5, 128.5], [452.5, 129.5], [449.5, 132.5], [447.5, 132.5], [447.5, 134.5], [449.5, 134.5], [450.5, 135.5], [451.5, 135.5], [452.5, 136.5], [485.5, 136.5], [486.5, 135.5], [488.5, 135.5], [488.5, 134.5], [490.5, 134.5], [490.5, 132.5], [488.5, 132.5], [485.5, 129.5], [485.5, 127.5], [484.5, 127.5], [484.5, 125.5], [482.5, 123.5]]}, -{"id": "txf75f", "submitted_by": "AnonymousRandPerson", "name": "Longship", "description": "A warship common in Scandinavian warfare during the Middle Ages.", "website": "[https://en.wikipedia.org/wiki/Longship](https://en.wikipedia.org/wiki/Longship)", "subreddit": "r/place_nordicunion", "center": [443.5, 85.5], "path": [[440.5, 67.5], [440.5, 71.5], [439.5, 71.5], [439.5, 74.5], [434.5, 74.5], [434.5, 77.5], [437.5, 80.5], [437.5, 87.5], [436.5, 88.5], [435.5, 87.5], [435.5, 85.5], [433.5, 83.5], [433.5, 82.5], [434.5, 81.5], [434.5, 79.5], [430.5, 75.5], [429.5, 76.5], [430.5, 77.5], [429.5, 78.5], [429.5, 79.5], [431.5, 81.5], [431.5, 83.5], [430.5, 84.5], [430.5, 85.5], [429.5, 86.5], [429.5, 87.5], [430.5, 88.5], [430.5, 92.5], [432.5, 94.5], [433.5, 94.5], [436.5, 97.5], [450.5, 97.5], [453.5, 94.5], [453.5, 93.5], [455.5, 93.5], [455.5, 87.5], [457.5, 87.5], [457.5, 85.5], [458.5, 84.5], [458.5, 82.5], [456.5, 82.5], [454.5, 80.5], [455.5, 79.5], [455.5, 77.5], [449.5, 77.5], [446.5, 74.5], [444.5, 74.5], [444.5, 71.5], [442.5, 71.5], [442.5, 67.5]]}, -{"id": "txf51z", "submitted_by": "FungiCharizard", "name": "Chronoir (Nijisanji)", "description": "Subunit Chronoir of Nijisanji. Features vtubers Kanae (Top) and Kuzuha (Bottom)", "website": "[https://www.youtube.com/c/chronoir](https://www.youtube.com/c/chronoir)", "subreddit": "", "center": [1531.5, 1076.5], "path": [[1525.5, 1065.5], [1537.5, 1065.5], [1537.5, 1087.5], [1525.5, 1087.5]]}, -{"id": "txf0cz", "submitted_by": "Impusu", "name": "Snufkin", "description": "Snufkin (Fin: Nuuskamuikkunen) is a character from the kids TV show Moomins made by Finland-Swede author Tove Jansson", "website": "[https://www.moomin.com/en/](https://www.moomin.com/en/)", "subreddit": "[https://www.reddit.com/r/Moomins/](https://www.reddit.com/r/Moomins/)", "center": [1238.5, 1350.5], "path": [[1238.5, 1337.5], [1234.5, 1341.5], [1233.5, 1341.5], [1233.5, 1338.5], [1232.5, 1337.5], [1231.5, 1338.5], [1231.5, 1341.5], [1233.5, 1343.5], [1233.5, 1345.5], [1229.5, 1345.5], [1229.5, 1347.5], [1231.5, 1347.5], [1231.5, 1349.5], [1232.5, 1349.5], [1232.5, 1351.5], [1234.5, 1353.5], [1234.5, 1354.5], [1231.5, 1354.5], [1230.5, 1355.5], [1231.5, 1356.5], [1233.5, 1358.5], [1231.5, 1360.5], [1234.5, 1360.5], [1234.5, 1361.5], [1236.5, 1361.5], [1236.5, 1360.5], [1239.5, 1360.5], [1239.5, 1361.5], [1241.5, 1361.5], [1241.5, 1360.5], [1243.5, 1360.5], [1243.5, 1359.5], [1245.5, 1359.5], [1245.5, 1353.5], [1244.5, 1353.5], [1244.5, 1352.5], [1243.5, 1352.5], [1243.5, 1351.5], [1243.5, 1350.5], [1244.5, 1350.5], [1244.5, 1347.5], [1246.5, 1347.5], [1246.5, 1346.5], [1245.5, 1345.5], [1243.5, 1345.5], [1241.5, 1343.5], [1241.5, 1342.5], [1240.5, 1342.5], [1240.5, 1339.5], [1238.5, 1337.5]]}, +{"id": "txfbm8", "submitted_by": "Saray13434", "name": "jschlatt", "description": "jschlatt is a Streamer and Youtuber that is a very funny guy, famous for being in the DreamSMP, very popular for his Wii game reviews and is a part of an org called OTK where he takes part in their events and even hold a reaction section of the company where he brings people in to watch videos and react", "website": "https://www.twitch.tv/jschlatt", "subreddit": "/r/jschlatt", "center": [187.5, 922.5], "path": [[183.5, 918.5], [183.5, 925.5], [190.5, 925.5], [190.5, 918.5]]}, +{"id": "txfati", "submitted_by": "AnonymousRandPerson", "name": "Norway heart", "description": "A heart adorned with the Flag of Norway.", "website": "https://en.wikipedia.org/wiki/Norway", "subreddit": "/r/place_nordicunion", "center": [469.5, 112.5], "path": [[465.5, 108.5], [463.5, 110.5], [463.5, 112.5], [468.5, 117.5], [469.5, 117.5], [474.5, 112.5], [474.5, 110.5], [472.5, 108.5], [470.5, 108.5], [469.5, 109.5], [468.5, 109.5], [467.5, 108.5], [465.5, 108.5]]}, +{"id": "txfalv", "submitted_by": "SuperGameController", "name": "Skysail Insignia", "description": "A winged white sword.\n\nIt represents the Kingdom of Skysail in the realm of Inita, one of the many realms in the Countless Worlds.\n\nThe insignia of the winged sword mirrors the great military power of the Skysail Kingdom.\nNot only do they excel in military power, Skysail is the main trading hub within the realms, they control most of the trades between worlds and are responsible for exports of Nillium, a magical ore used in the hull of flying ships.\n\nThe game's discord can be found here > [discord.gg/CW](https://discord.gg/CW) <\n", "website": "https://www.roblox.com/games/6900861054/Countless-Worlds", "subreddit": "[/r/RobloxCountlessWorlds", "center": [297.5, 1508.5], "path": [[293.5, 1515.5], [300.5, 1515.5], [300.5, 1500.5], [293.5, 1500.5], [293.5, 1515.5]]}, +{"id": "txfah1", "submitted_by": "Wellliam", "name": "Emotiguy (Picardia)", "description": "This emotiguy, more famously known as Picardia, had been rebuilt during Xqc's meteor.\nOn day 3, r/OnePiece Added a cool little hat.", "website": "https://trubiso.tk", "subreddit": "/r/emotiguy", "center": [1543.5, 152.5], "path": [[1533.5, 159.5], [1532.5, 142.5], [1550.5, 142.5], [1555.5, 161.5], [1543.5, 161.5]]}, +{"id": "txf9s5", "submitted_by": "AnonymousRandPerson", "name": "Hallgr\u00edmskirkja", "description": "The largest church in Iceland.", "website": "https://en.wikipedia.org/wiki/Hallgr%C3%ADmskirkja", "subreddit": "/r/Iceland", "center": [514.5, 126.5], "path": [[515.5, 106.5], [513.5, 108.5], [514.5, 109.5], [514.5, 110.5], [512.5, 112.5], [512.5, 113.5], [511.5, 114.5], [511.5, 116.5], [507.5, 124.5], [507.5, 125.5], [506.5, 126.5], [506.5, 127.5], [503.5, 130.5], [502.5, 130.5], [500.5, 132.5], [500.5, 136.5], [525.5, 136.5], [525.5, 128.5], [524.5, 127.5], [524.5, 126.5], [523.5, 125.5], [523.5, 124.5], [519.5, 116.5], [519.5, 114.5], [518.5, 113.5], [518.5, 112.5], [516.5, 110.5], [517.5, 108.5], [515.5, 106.5]]}, +{"id": "txf8ts", "submitted_by": "AnonymousRandPerson", "name": "Snowflake", "description": "", "website": "https://en.wikipedia.org/wiki/Snowflake", "subreddit": "/r/Iceland", "center": [484.5, 110.5], "path": [[481.5, 104.5], [481.5, 106.5], [480.5, 107.5], [478.5, 107.5], [478.5, 113.5], [480.5, 113.5], [481.5, 114.5], [481.5, 116.5], [487.5, 116.5], [487.5, 114.5], [488.5, 113.5], [490.5, 113.5], [490.5, 107.5], [488.5, 107.5], [487.5, 106.5], [487.5, 104.5]]}, +{"id": "txf872", "submitted_by": "AnonymousRandPerson", "name": "Puffins", "description": "", "website": "https://en.wikipedia.org/wiki/Puffin", "subreddit": "/r/place_nordicunion", "center": [469.5, 130.5], "path": [[455.5, 123.5], [453.5, 125.5], [453.5, 127.5], [452.5, 128.5], [452.5, 129.5], [449.5, 132.5], [447.5, 132.5], [447.5, 134.5], [449.5, 134.5], [450.5, 135.5], [451.5, 135.5], [452.5, 136.5], [485.5, 136.5], [486.5, 135.5], [488.5, 135.5], [488.5, 134.5], [490.5, 134.5], [490.5, 132.5], [488.5, 132.5], [485.5, 129.5], [485.5, 127.5], [484.5, 127.5], [484.5, 125.5], [482.5, 123.5]]}, +{"id": "txf51z", "submitted_by": "FungiCharizard", "name": "Chronoir (Nijisanji)", "description": "Subunit Chronoir of Nijisanji. Features vtubers Kanae (Top) and Kuzuha (Bottom)", "website": "https://www.youtube.com/c/chronoir", "subreddit": "", "center": [1531.5, 1076.5], "path": [[1525.5, 1065.5], [1537.5, 1065.5], [1537.5, 1087.5], [1525.5, 1087.5]]}, +{"id": "txf0cz", "submitted_by": "Impusu", "name": "Snufkin", "description": "Snufkin (Fin: Nuuskamuikkunen) is a character from the kids TV show Moomins made by Finland-Swede author Tove Jansson", "website": "https://www.moomin.com/en/", "subreddit": "[/r/Moomins", "center": [1238.5, 1350.5], "path": [[1238.5, 1337.5], [1234.5, 1341.5], [1233.5, 1341.5], [1233.5, 1338.5], [1232.5, 1337.5], [1231.5, 1338.5], [1231.5, 1341.5], [1233.5, 1343.5], [1233.5, 1345.5], [1229.5, 1345.5], [1229.5, 1347.5], [1231.5, 1347.5], [1231.5, 1349.5], [1232.5, 1349.5], [1232.5, 1351.5], [1234.5, 1353.5], [1234.5, 1354.5], [1231.5, 1354.5], [1230.5, 1355.5], [1231.5, 1356.5], [1233.5, 1358.5], [1231.5, 1360.5], [1234.5, 1360.5], [1234.5, 1361.5], [1236.5, 1361.5], [1236.5, 1360.5], [1239.5, 1360.5], [1239.5, 1361.5], [1241.5, 1361.5], [1241.5, 1360.5], [1243.5, 1360.5], [1243.5, 1359.5], [1245.5, 1359.5], [1245.5, 1353.5], [1244.5, 1353.5], [1244.5, 1352.5], [1243.5, 1352.5], [1243.5, 1351.5], [1243.5, 1350.5], [1244.5, 1350.5], [1244.5, 1347.5], [1246.5, 1347.5], [1246.5, 1346.5], [1245.5, 1345.5], [1243.5, 1345.5], [1241.5, 1343.5], [1241.5, 1342.5], [1240.5, 1342.5], [1240.5, 1339.5], [1238.5, 1337.5]]}, {"id": "txf0cv", "submitted_by": "Speecker", "name": "Speecker's Face", "description": "This is Speecker's Logo representing his head's face from his Minecraft Skin", "website": "", "subreddit": "", "center": [651.5, 1128.5], "path": [[645.5, 1122.5], [656.5, 1122.5], [656.5, 1133.5], [645.5, 1133.5]]}, -{"id": "txeznm", "submitted_by": "kronzal", "name": "Berdly", "description": "One of the main characters of DELTARUNE, a game created by Toby Fox. He does not have nipples. ", "website": "", "subreddit": "r/deltarune", "center": [1758.5, 194.5], "path": [[1761.5, 182.5], [1759.5, 183.5], [1756.5, 184.5], [1754.5, 184.5], [1754.5, 185.5], [1753.5, 187.5], [1752.5, 188.5], [1751.5, 190.5], [1750.5, 194.5], [1749.5, 194.5], [1749.5, 197.5], [1750.5, 199.5], [1753.5, 199.5], [1753.5, 202.5], [1754.5, 202.5], [1753.5, 204.5], [1755.5, 205.5], [1757.5, 205.5], [1757.5, 204.5], [1758.5, 201.5], [1758.5, 205.5], [1760.5, 205.5], [1761.5, 205.5], [1761.5, 204.5], [1762.5, 204.5], [1762.5, 202.5], [1763.5, 199.5], [1763.5, 198.5], [1764.5, 197.5], [1766.5, 196.5], [1766.5, 194.5], [1765.5, 193.5], [1764.5, 191.5], [1765.5, 189.5], [1765.5, 188.5], [1765.5, 186.5], [1765.5, 185.5], [1764.5, 185.5], [1763.5, 185.5], [1763.5, 184.5], [1762.5, 183.5]]}, +{"id": "txeznm", "submitted_by": "kronzal", "name": "Berdly", "description": "One of the main characters of DELTARUNE, a game created by Toby Fox. He does not have nipples. ", "website": "", "subreddit": "/r/deltarune", "center": [1758.5, 194.5], "path": [[1761.5, 182.5], [1759.5, 183.5], [1756.5, 184.5], [1754.5, 184.5], [1754.5, 185.5], [1753.5, 187.5], [1752.5, 188.5], [1751.5, 190.5], [1750.5, 194.5], [1749.5, 194.5], [1749.5, 197.5], [1750.5, 199.5], [1753.5, 199.5], [1753.5, 202.5], [1754.5, 202.5], [1753.5, 204.5], [1755.5, 205.5], [1757.5, 205.5], [1757.5, 204.5], [1758.5, 201.5], [1758.5, 205.5], [1760.5, 205.5], [1761.5, 205.5], [1761.5, 204.5], [1762.5, 204.5], [1762.5, 202.5], [1763.5, 199.5], [1763.5, 198.5], [1764.5, 197.5], [1766.5, 196.5], [1766.5, 194.5], [1765.5, 193.5], [1764.5, 191.5], [1765.5, 189.5], [1765.5, 188.5], [1765.5, 186.5], [1765.5, 185.5], [1764.5, 185.5], [1763.5, 185.5], [1763.5, 184.5], [1762.5, 183.5]]}, {"id": "txex6n", "submitted_by": "TheDiviler", "name": "This House", "description": "A small house created by a small group of friends", "website": "", "subreddit": "", "center": [934.5, 1520.5], "path": [[929.5, 1516.5], [938.5, 1516.5], [938.5, 1524.5], [929.5, 1524.5]]}, -{"id": "txewfx", "submitted_by": "Potato1498", "name": "Pleadfish", "description": "This is a pufferfish from the indie platformer Celeste but with eyes taken from the pleading emoji.", "website": "", "subreddit": "r/celestegame", "center": [1228.5, 1182.5], "path": [[1231.5, 1173.5], [1223.5, 1173.5], [1220.5, 1178.5], [1219.5, 1180.5], [1218.5, 1178.5], [1217.5, 1181.5], [1217.5, 1188.5], [1219.5, 1186.5], [1225.5, 1190.5], [1233.5, 1190.5], [1238.5, 1184.5], [1239.5, 1181.5], [1237.5, 1177.5]]}, +{"id": "txewfx", "submitted_by": "Potato1498", "name": "Pleadfish", "description": "This is a pufferfish from the indie platformer Celeste but with eyes taken from the pleading emoji.", "website": "", "subreddit": "/r/celestegame", "center": [1228.5, 1182.5], "path": [[1231.5, 1173.5], [1223.5, 1173.5], [1220.5, 1178.5], [1219.5, 1180.5], [1218.5, 1178.5], [1217.5, 1181.5], [1217.5, 1188.5], [1219.5, 1186.5], [1225.5, 1190.5], [1233.5, 1190.5], [1238.5, 1184.5], [1239.5, 1181.5], [1237.5, 1177.5]]}, {"id": "txh7lm", "submitted_by": "chaengpotatoversion", "name": "Leni-Kiko", "description": "Leni Robredo is Philippine vice president and the most powerful opposition figure and is currently running as a President for 2022 election with her running mate Kiko Pangilinan in a move that would bring the pro-democracy advocate to a new faceoff with the son of the late dictator Ferdinand Marcos and his running mate Sara Duterte, daughter of the current President Duterte.", "website": "", "subreddit": "", "center": [332.5, 694.5], "path": [[301.5, 686.5], [301.5, 702.5], [363.5, 702.5], [363.5, 686.5]]}, {"id": "txh7f1", "submitted_by": "Scramel", "name": "Lesbian Flag", "description": "Orange-pink lesbian flag derived from the pink flag, circulated on social media in 2018.", "website": "", "subreddit": "", "center": [1836.5, 1739.5], "path": [[1806.5, 1735.5], [1864.5, 1735.5], [1864.5, 1744.5], [1806.5, 1743.5]]}, {"id": "txh6re", "submitted_by": "AshikabiKun", "name": "Qu\u00e9bec's flag", "description": "", "website": "", "subreddit": "/r/quebec", "center": [1005.5, 970.5], "path": [[1000.5, 967.5], [1000.5, 973.5], [1010.5, 973.5], [1010.5, 967.5], [1000.5, 967.5]]}, {"id": "txh5r7", "submitted_by": "FlatEartherForLife", "name": "pepeSmoke", "description": "A 3rd party Twtich emote, showcasing a pixelated version of pepe smoking a cigarette.", "website": "https://betterttv.com/emotes/5b15162147c7bf3bfc0b9c76", "subreddit": "", "center": [1644.5, 410.5], "path": [[1638.5, 406.5], [1651.5, 406.5], [1650.5, 414.5], [1638.5, 413.5]]}, -{"id": "txh5o0", "submitted_by": "Voxsyonreddit", "name": "NRX LOGO", "description": "NRX WAS A GROUP OF FRIENDS BLONK MR DUC DUC MAN ZAVIER THE TAMER AND BEDLAM THE NRX LOGO LASTED AN HOUR BEFORE BEING GRIEFED BY THE FROG GUY SORRY FROG MAN.", "website": "https://www.youtube.com/channel/UCs2Q15G6kCXn5N05SjZchKQ", "subreddit": "https://www.reddit.com/r/NRXBOYS", "center": [0.5, 0.5], "path": []}, -{"id": "txh57b", "submitted_by": "Umbrenite_kun", "name": "ESGI", "description": "Esgi is a french engineer student school.", "website": "[https://www.esgi.fr/](https://www.esgi.fr/)", "subreddit": "/r/ESGI", "center": [392.5, 1947.5], "path": [[385.5, 1944.5], [385.5, 1950.5], [398.5, 1950.5], [398.5, 1944.5]]}, -{"id": "txh52l", "submitted_by": "AshikabiKun", "name": "Ukraine's flag", "description": "Flag of Ukraine, added here by the r/quebec community as a show of support to Ukrainians following the 2022 Russian invasion of Ukraine", "website": "[https://en.wikipedia.org/wiki/Ukraine](https://en.wikipedia.org/wiki/Ukraine)", "subreddit": "/r/quebec", "center": [992.5, 971.5], "path": [[987.5, 967.5], [987.5, 974.5], [997.5, 974.5], [997.5, 967.5], [987.5, 967.5]]}, -{"id": "txh523", "submitted_by": "StrawberryCashew", "name": "American Flag", "description": "America is a country in the Continent of North America. It was founded in 1776 on the principles of slavery and genocide of the native population living there (the latter a big inspiration for a notable german politician Adolf Hitler) America today has attempted to get past much of its history, however much the world it has affected still hold resentment towards it ( for example, Vietnam, the middle east, Latin America, etc.) and thus the flag was heavily attacked by the Reddit community for its past and present destruction (during r/place and as writing the country is supporting genocide in Yemen) It should also be noted that the distaste for the flag also came from Americans themselves, whose family may have died from lack of access to healthcare, or recently joined the one million and counting who have died from government inaction during the covid-19 pandemic.", "website": "https://en.wikipedia.org/wiki/United_States", "subreddit": "https://www.reddit.com/r/AmericanFlaginPlace/", "center": [1887.5, 1810.5], "path": [[1775.5, 1751.5], [1999.5, 1751.5], [1999.5, 1869.5], [1776.5, 1868.5], [1776.5, 1837.5]]}, +{"id": "txh57b", "submitted_by": "Umbrenite_kun", "name": "ESGI", "description": "Esgi is a french engineer student school.", "website": "https://www.esgi.fr/", "subreddit": "/r/ESGI", "center": [392.5, 1947.5], "path": [[385.5, 1944.5], [385.5, 1950.5], [398.5, 1950.5], [398.5, 1944.5]]}, +{"id": "txh52l", "submitted_by": "AshikabiKun", "name": "Ukraine's flag", "description": "Flag of Ukraine, added here by the r/quebec community as a show of support to Ukrainians following the 2022 Russian invasion of Ukraine", "website": "https://en.wikipedia.org/wiki/Ukraine", "subreddit": "/r/quebec", "center": [992.5, 971.5], "path": [[987.5, 967.5], [987.5, 974.5], [997.5, 974.5], [997.5, 967.5], [987.5, 967.5]]}, +{"id": "txdyms", "submitted_by": "wygaco", "name": "Flag of the United States", "description": "The U.S. flag was originally located directly under Turkey's flag in the upper-left of the canvas, where it was a frequent target for griefing. After the flag was completely destroyed for the fourth time, the Americans relocated their flag to its final location at (1776, 1776). These coordinates are a reference to the year 1776 CE, when the U.S. declared its independence from Britain.", "website": "https://en.wikipedia.org/wiki/United_States", "subreddit": "/r/AmericanFlaginPlace", "center": [1886.5, 1809.5], "path": [[1774.5, 1751.5], [1999.5, 1751.5], [1999.5, 1867.5], [1774.5, 1868.5], [1774.5, 1751.5]]}, {"id": "txh4pm", "submitted_by": "Gonifeck", "name": "Nembic Dungeon Cat", "description": "Little discord community made up of programers and friends from university\nThe main art and pet of the discord was created by baroonFoo", "website": "https://www.instagram.com/baronfoo/", "subreddit": "", "center": [1123.5, 1642.5], "path": [[1110.5, 1632.5], [1133.5, 1632.5], [1133.5, 1654.5], [1119.5, 1654.5], [1114.5, 1648.5], [1114.5, 1635.5], [1110.5, 1635.5]]}, {"id": "txh4ag", "submitted_by": "Oponik", "name": "Momo", "description": "A tarsier in the middle of Zuko and Toph to signify the alliance of r/Philippines and the streamer Buddha. First it was just called a tarsier but later changed to momo. There is also a cat on the left of momo and a purple crab to the right", "website": "", "subreddit": "/r/Philippines", "center": [1432.5, 612.5], "path": [[1388.5, 616.5], [1392.5, 615.5], [1393.5, 614.5], [1403.5, 613.5], [1404.5, 611.5], [1405.5, 613.5], [1407.5, 613.5], [1409.5, 612.5], [1412.5, 616.5], [1411.5, 619.5], [1412.5, 624.5], [1416.5, 629.5], [1421.5, 631.5], [1429.5, 632.5], [1437.5, 632.5], [1442.5, 630.5], [1444.5, 627.5], [1447.5, 624.5], [1452.5, 620.5], [1453.5, 617.5], [1452.5, 613.5], [1455.5, 612.5], [1461.5, 613.5], [1470.5, 613.5], [1475.5, 615.5], [1478.5, 617.5], [1479.5, 616.5], [1481.5, 615.5], [1482.5, 619.5], [1482.5, 627.5], [1489.5, 626.5], [1489.5, 600.5], [1375.5, 600.5], [1375.5, 625.5], [1379.5, 626.5], [1382.5, 626.5], [1383.5, 618.5], [1381.5, 617.5], [1381.5, 616.5], [1381.5, 613.5], [1384.5, 614.5]]}, -{"id": "txh3ch", "submitted_by": "TomokoLivesOn", "name": "Tomoko Kuroki", "description": "Tomoko is the socially stunted protagonist of the manga/anime series Watamote.", "website": "[https://watamote.fandom.com/wiki/WataMote](https://watamote.fandom.com/wiki/WataMote)", "subreddit": "/r/watamote", "center": [1748.5, 1209.5], "path": [[1757.5, 1218.5], [1757.5, 1199.5], [1742.5, 1199.5], [1740.5, 1201.5], [1740.5, 1205.5], [1739.5, 1206.5], [1739.5, 1212.5], [1740.5, 1212.5], [1740.5, 1218.5]]}, -{"id": "txh389", "submitted_by": "Captin_Blackfire", "name": "Gup", "description": "Gup is an enemy from both the original Risk of Rain and the Risk of Rain 2 DLC Survivors of the Void. It is a large, slimy creature that smells oddly of sweet strawberries. It attacks nearby foes by extending spikes from it's body. When it is slain, it splits into two smaller gup called geep, and when those perish they split into an even smaller form called gip. The creature and it's smaller forms are best known for being adorable. ", "website": "[https://riskofrain2.fandom.com/wiki/Gup](https://riskofrain2.fandom.com/wiki/Gup)", "subreddit": "r/riskofrain", "center": [575.5, 422.5], "path": [[572.5, 418.5], [570.5, 418.5], [570.5, 419.5], [569.5, 419.5], [569.5, 425.5], [570.5, 425.5], [570.5, 426.5], [571.5, 426.5], [571.5, 427.5], [578.5, 427.5], [578.5, 426.5], [580.5, 426.5], [580.5, 419.5], [579.5, 419.5], [579.5, 418.5], [578.5, 418.5], [577.5, 418.5], [577.5, 417.5], [577.5, 416.5], [578.5, 416.5], [577.5, 416.5], [577.5, 415.5], [577.5, 416.5], [576.5, 416.5], [577.5, 416.5], [577.5, 417.5], [577.5, 418.5], [572.5, 418.5], [572.5, 417.5], [572.5, 416.5], [573.5, 416.5], [572.5, 416.5], [572.5, 415.5], [572.5, 416.5], [571.5, 416.5], [572.5, 416.5], [572.5, 417.5], [572.5, 418.5], [570.5, 418.5], [580.5, 426.5]]}, +{"id": "txh3ch", "submitted_by": "TomokoLivesOn", "name": "Tomoko Kuroki", "description": "Tomoko is the socially stunted protagonist of the manga/anime series Watamote.", "website": "https://watamote.fandom.com/wiki/WataMote", "subreddit": "/r/watamote", "center": [1748.5, 1209.5], "path": [[1757.5, 1218.5], [1757.5, 1199.5], [1742.5, 1199.5], [1740.5, 1201.5], [1740.5, 1205.5], [1739.5, 1206.5], [1739.5, 1212.5], [1740.5, 1212.5], [1740.5, 1218.5]]}, +{"id": "txh389", "submitted_by": "Captin_Blackfire", "name": "Gup", "description": "Gup is an enemy from both the original Risk of Rain and the Risk of Rain 2 DLC Survivors of the Void. It is a large, slimy creature that smells oddly of sweet strawberries. It attacks nearby foes by extending spikes from it's body. When it is slain, it splits into two smaller gup called geep, and when those perish they split into an even smaller form called gip. The creature and it's smaller forms are best known for being adorable. ", "website": "https://riskofrain2.fandom.com/wiki/Gup", "subreddit": "/r/riskofrain", "center": [575.5, 422.5], "path": [[572.5, 418.5], [570.5, 418.5], [570.5, 419.5], [569.5, 419.5], [569.5, 425.5], [570.5, 425.5], [570.5, 426.5], [571.5, 426.5], [571.5, 427.5], [578.5, 427.5], [578.5, 426.5], [580.5, 426.5], [580.5, 419.5], [579.5, 419.5], [579.5, 418.5], [578.5, 418.5], [577.5, 418.5], [577.5, 417.5], [577.5, 416.5], [578.5, 416.5], [577.5, 416.5], [577.5, 415.5], [577.5, 416.5], [576.5, 416.5], [577.5, 416.5], [577.5, 417.5], [577.5, 418.5], [572.5, 418.5], [572.5, 417.5], [572.5, 416.5], [573.5, 416.5], [572.5, 416.5], [572.5, 415.5], [572.5, 416.5], [571.5, 416.5], [572.5, 416.5], [572.5, 417.5], [572.5, 418.5], [570.5, 418.5], [580.5, 426.5]]}, {"id": "txh2t8", "submitted_by": "AshikabiKun", "name": "Saguenay\u2013Lac-Saint-Jean's flag", "description": "The flag of Saguenay\u2013Lac-Saint-Jean, a region in Qu\u00e9bec", "website": "https://en.wikipedia.org/wiki/Saguenay%E2%80%93Lac-Saint-Jean", "subreddit": "/r/quebec", "center": [972.5, 986.5], "path": [[969.5, 984.5], [969.5, 988.5], [975.5, 988.5], [975.5, 984.5], [969.5, 984.5]]}, {"id": "txh2c7", "submitted_by": "NUKEBIOSHOCK", "name": "World Of Tanks (WOT) TOG II*", "description": "R/WorldOfTanks and R/world ofTanksBlitz have come TOGether in memory of (T)he (O)ld (G)and II* heavy tank/land-ship,", "website": "https://www.reddit.com/r/WorldofTanks/", "subreddit": "/r/WorldOfTanks", "center": [1660.5, 504.5], "path": [[1651.5, 510.5], [1669.5, 510.5], [1669.5, 497.5], [1651.5, 497.5], [1651.5, 503.5], [1651.5, 509.5], [1651.5, 510.5], [1651.5, 497.5]]}, -{"id": "txev1y", "submitted_by": "TheForceOfGravity472", "name": "Andover Central High School", "description": "Initials of Andover Central, a high school in Andover, Kansas. AC is in gold, representing the schools colors.", "website": "[https://en.wikipedia.org/wiki/Andover_Central_High_School](https://en.wikipedia.org/wiki/Andover_Central_High_School)", "subreddit": "", "center": [616.5, 1341.5], "path": [[613.5, 1339.5], [619.5, 1339.5], [619.5, 1343.5], [613.5, 1343.5]]}, -{"id": "txeteb", "submitted_by": "thehelixchurch", "name": "Los Angeles Chargers", "description": "An American Football team that plays in the National Football League. The team colors are blue and yellow, and they are associated with lightning bolts. ", "website": "[Chargers.com](https://Chargers.com) ", "subreddit": "r/Chargers", "center": [1543.5, 47.5], "path": [[1529.5, 46.5], [1529.5, 51.5], [1558.5, 51.5], [1558.5, 47.5], [1544.5, 46.5], [1544.5, 36.5], [1541.5, 36.5], [1540.5, 46.5], [1529.5, 46.5], [1532.5, 50.5]]}, -{"id": "txes2r", "submitted_by": "mario85827", "name": "808s & Heartbreak", "description": "A tribute to Ye's (Kanye West) fourth studio album, Ye's iconic suit is in place on this artwork instead of the normal heart on the album artwork.", "website": "[https://open.spotify.com/album/3WFTGIO6E3Xh4paEOBY9OU?autoplay=true](https://open.spotify.com/album/3WFTGIO6E3Xh4paEOBY9OU?autoplay=true)", "subreddit": "/r/Kanye", "center": [1773.5, 1010.5], "path": [[1769.5, 1000.5], [1769.5, 1000.5], [1769.5, 1000.5], [1769.5, 1000.5], [1769.5, 1000.5], [1769.5, 1000.5], [1777.5, 1000.5], [1777.5, 1019.5], [1769.5, 1019.5]]}, +{"id": "txev1y", "submitted_by": "TheForceOfGravity472", "name": "Andover Central High School", "description": "Initials of Andover Central, a high school in Andover, Kansas. AC is in gold, representing the schools colors.", "website": "https://en.wikipedia.org/wiki/Andover_Central_High_School", "subreddit": "", "center": [616.5, 1341.5], "path": [[613.5, 1339.5], [619.5, 1339.5], [619.5, 1343.5], [613.5, 1343.5]]}, +{"id": "txeteb", "submitted_by": "thehelixchurch", "name": "Los Angeles Chargers", "description": "An American Football team that plays in the National Football League. The team colors are blue and yellow, and they are associated with lightning bolts. ", "website": "https://Chargers.com)", "subreddit": "/r/Chargers", "center": [1543.5, 47.5], "path": [[1529.5, 46.5], [1529.5, 51.5], [1558.5, 51.5], [1558.5, 47.5], [1544.5, 46.5], [1544.5, 36.5], [1541.5, 36.5], [1540.5, 46.5], [1529.5, 46.5], [1532.5, 50.5]]}, +{"id": "txes2r", "submitted_by": "mario85827", "name": "808s & Heartbreak", "description": "A tribute to Ye's (Kanye West) fourth studio album, Ye's iconic suit is in place on this artwork instead of the normal heart on the album artwork.", "website": "https://open.spotify.com/album/3WFTGIO6E3Xh4paEOBY9OU?autoplay=true", "subreddit": "/r/Kanye", "center": [1773.5, 1010.5], "path": [[1769.5, 1000.5], [1769.5, 1000.5], [1769.5, 1000.5], [1769.5, 1000.5], [1769.5, 1000.5], [1769.5, 1000.5], [1777.5, 1000.5], [1777.5, 1019.5], [1769.5, 1019.5]]}, {"id": "txepsq", "submitted_by": "blue1glue", "name": "ITZY", "description": "A K-pop girl group consisting of five members: Yeji, Lia, Ryujin, Chaeryeong, and Yuna. Formed by JYP Entertainment and debuted February 2019.", "website": "", "subreddit": "/r/itzy", "center": [1544.5, 882.5], "path": [[1539.5, 885.5], [1539.5, 885.5], [1539.5, 885.5], [1539.5, 885.5], [1546.5, 880.5], [1533.5, 877.5], [1533.5, 888.5], [1557.5, 888.5], [1557.5, 877.5], [1534.5, 877.5]]}, -{"id": "txepaq", "submitted_by": "kronzal", "name": "Constantiam", "description": "Constantiam is an anarchy Minecraft server created by players of 2b2t.", "website": "[https://constantiam.net/](https://constantiam.net/)", "subreddit": "r/constantiam", "center": [1799.5, 42.5], "path": [[1785.5, 34.5], [1785.5, 51.5], [1798.5, 51.5], [1807.5, 48.5], [1814.5, 48.5], [1814.5, 34.5], [1785.5, 34.5]]}, -{"id": "txekw2", "submitted_by": "SoupyDoopyDo", "name": "The Traveller", "description": "A mysterious planet-like entity associated with the light which hovers above earth.", "website": "[https://destiny.fandom.com/wiki/The_Traveler](https://destiny.fandom.com/wiki/The_Traveler)", "subreddit": "r/DestinyTheGame", "center": [0.5, 0.5], "path": []}, {"id": "txejk2", "submitted_by": "Famous-Beat2963", "name": "MCSR area", "description": "The Minecraft Speedrunning community's collective area. Inside are iconic images from Minecraft speedrunning, including an Eye of Ender, End Crystal (finished post screenshot), and the world loading screen which is seen after resetting.\nMany faces of prominent Minecraft speedrunners are also present.", "website": "", "subreddit": "", "center": [1474.5, 1446.5], "path": [[1475.5, 1400.5], [1499.5, 1401.5], [1498.5, 1490.5], [1490.5, 1490.5], [1490.5, 1472.5], [1436.5, 1472.5], [1436.5, 1436.5], [1476.5, 1436.5]]}, -{"id": "txegi9", "submitted_by": "Anotherguypc98", "name": "Cacique Logo", "description": "Traditional cane-based guaro from Costa Rica and a favorite of many people.", "website": "", "subreddit": "r/Ticos", "center": [1488.5, 408.5], "path": [[1481.5, 415.5], [1481.5, 401.5], [1495.5, 401.5], [1495.5, 415.5]]}, -{"id": "txefzr", "submitted_by": "apachekidd", "name": "NMIXX", "description": "Logo of the 7 member K-pop girl group NMIXX, which debuted under JYP Entertainment on February 21, 2022. ", "website": "", "subreddit": "r/NMIXX", "center": [1500.5, 874.5], "path": [[1488.5, 869.5], [1488.5, 879.5], [1512.5, 879.5], [1512.5, 869.5]]}, -{"id": "txeft4", "submitted_by": "toddlerdust", "name": "University of Colorado", "description": "Logo of the University of Colorado, including CU Boulder, Denver, Colorado Springs, and Anschutz Medical Campus", "website": "[https://www.cu.edu/](https://www.cu.edu/)", "subreddit": "", "center": [16.5, 727.5], "path": [[12.5, 723.5], [12.5, 730.5], [20.5, 730.5], [20.5, 723.5], [20.5, 723.5], [20.5, 723.5], [12.5, 723.5]]}, -{"id": "txee96", "submitted_by": "AnonymousRandPerson", "name": "Juan Carlos Bodoque", "description": "A character in 31 Minutos, a Chilean comedy TV series.", "website": "[https://hero.fandom.com/wiki/Juan_Carlos_Bodoque](https://hero.fandom.com/wiki/Juan_Carlos_Bodoque)", "subreddit": "r/chile", "center": [1836.5, 526.5], "path": [[1836.5, 513.5], [1832.5, 517.5], [1832.5, 523.5], [1830.5, 525.5], [1828.5, 525.5], [1828.5, 528.5], [1825.5, 528.5], [1825.5, 534.5], [1827.5, 536.5], [1828.5, 536.5], [1828.5, 537.5], [1827.5, 538.5], [1827.5, 539.5], [1843.5, 539.5], [1843.5, 537.5], [1841.5, 537.5], [1840.5, 536.5], [1840.5, 534.5], [1843.5, 531.5], [1843.5, 524.5], [1844.5, 523.5], [1844.5, 521.5], [1846.5, 519.5], [1846.5, 516.5], [1847.5, 515.5], [1847.5, 510.5], [1842.5, 510.5], [1842.5, 513.5], [1841.5, 514.5], [1841.5, 516.5], [1840.5, 517.5], [1840.5, 519.5], [1838.5, 521.5], [1838.5, 522.5], [1837.5, 523.5], [1837.5, 519.5], [1838.5, 518.5], [1838.5, 517.5], [1839.5, 516.5], [1839.5, 513.5], [1835.5, 513.5]]}, -{"id": "txed0m", "submitted_by": "SteelDragon_", "name": "NOT A BOT", "description": "French streamers and their community have not used any BOT unlike its attackers!", "website": "", "subreddit": "", "center": [124.5, 1657.5], "path": [[3.5, 1347.5], [245.5, 1347.5], [247.5, 1966.5], [2.5, 1968.5], [1.5, 1349.5]]}, -{"id": "txeaj8", "submitted_by": "Who_Diamond", "name": "Project Moon Logo", "description": "Logo of the South Korean game studio Project Moon, the creators of Library of Ruina and Lobotomy Corporation.\n\nThe moon was eliminated as a result of a raid by a streamer who heard a misinformed rumor that the moon's build team drew a booger on another structure. r/place ended as the build team attempted to replace the moon in its original spot again.", "website": "[https://projectmoon.studio/eng/main/](https://projectmoon.studio/eng/main/)", "subreddit": "r/libraryofruina", "center": [563.5, 577.5], "path": [[574.5, 567.5], [574.5, 586.5], [551.5, 586.5], [551.5, 567.5]]}, +{"id": "txegi9", "submitted_by": "Anotherguypc98", "name": "Cacique Logo", "description": "Traditional cane-based guaro from Costa Rica and a favorite of many people.", "website": "", "subreddit": "/r/Ticos", "center": [1488.5, 408.5], "path": [[1481.5, 415.5], [1481.5, 401.5], [1495.5, 401.5], [1495.5, 415.5]]}, +{"id": "txefzr", "submitted_by": "apachekidd", "name": "NMIXX", "description": "Logo of the 7 member K-pop girl group NMIXX, which debuted under JYP Entertainment on February 21, 2022. ", "website": "", "subreddit": "/r/NMIXX", "center": [1500.5, 874.5], "path": [[1488.5, 869.5], [1488.5, 879.5], [1512.5, 879.5], [1512.5, 869.5]]}, +{"id": "txeft4", "submitted_by": "toddlerdust", "name": "University of Colorado", "description": "Logo of the University of Colorado, including CU Boulder, Denver, Colorado Springs, and Anschutz Medical Campus", "website": "https://www.cu.edu/", "subreddit": "", "center": [16.5, 727.5], "path": [[12.5, 723.5], [12.5, 730.5], [20.5, 730.5], [20.5, 723.5], [20.5, 723.5], [20.5, 723.5], [12.5, 723.5]]}, +{"id": "txee96", "submitted_by": "AnonymousRandPerson", "name": "Juan Carlos Bodoque", "description": "A character in 31 Minutos, a Chilean comedy TV series.", "website": "https://hero.fandom.com/wiki/Juan_Carlos_Bodoque", "subreddit": "/r/chile", "center": [1836.5, 526.5], "path": [[1836.5, 513.5], [1832.5, 517.5], [1832.5, 523.5], [1830.5, 525.5], [1828.5, 525.5], [1828.5, 528.5], [1825.5, 528.5], [1825.5, 534.5], [1827.5, 536.5], [1828.5, 536.5], [1828.5, 537.5], [1827.5, 538.5], [1827.5, 539.5], [1843.5, 539.5], [1843.5, 537.5], [1841.5, 537.5], [1840.5, 536.5], [1840.5, 534.5], [1843.5, 531.5], [1843.5, 524.5], [1844.5, 523.5], [1844.5, 521.5], [1846.5, 519.5], [1846.5, 516.5], [1847.5, 515.5], [1847.5, 510.5], [1842.5, 510.5], [1842.5, 513.5], [1841.5, 514.5], [1841.5, 516.5], [1840.5, 517.5], [1840.5, 519.5], [1838.5, 521.5], [1838.5, 522.5], [1837.5, 523.5], [1837.5, 519.5], [1838.5, 518.5], [1838.5, 517.5], [1839.5, 516.5], [1839.5, 513.5], [1835.5, 513.5]]}, +{"id": "txeaj8", "submitted_by": "Who_Diamond", "name": "Project Moon Logo", "description": "Logo of the South Korean game studio Project Moon, the creators of Library of Ruina and Lobotomy Corporation.\n\nThe moon was eliminated as a result of a raid by a streamer who heard a misinformed rumor that the moon's build team drew a booger on another structure. r/place ended as the build team attempted to replace the moon in its original spot again.", "website": "https://projectmoon.studio/eng/main/", "subreddit": "/r/libraryofruina", "center": [563.5, 577.5], "path": [[574.5, 567.5], [574.5, 586.5], [551.5, 586.5], [551.5, 567.5]]}, {"id": "txeabj", "submitted_by": "Met76", "name": "The Statue of Liberty", "description": "This statue was gifted to the USA from France in 1886. She stands 305 feet (93 meters) and holds a torch above her head with her right hand. In her left hand carries a tabula ansata inscribed JULY IV MDCCLXXVI (July 4, 1776 in Roman numerals), the date of the U.S. Declaration of Independence. This document declared the separation of the original US colonies from Britain.", "website": "", "subreddit": "", "center": [1976.5, 1835.5], "path": [[1983.5, 1866.5], [1981.5, 1816.5], [1980.5, 1801.5], [1969.5, 1802.5], [1970.5, 1866.5]]}, -{"id": "txea1c", "submitted_by": "Famous-Beat2963", "name": "Hasanabi and Will Neff dog emotes (griefed)", "description": "Pre-raid, there were two dogs. Cartoon versions of Hasan's dog named Fish who sadly passed in 2020, and Will Neff's dog Farley. The art itself is adapted from their emotes, hasL and neffL, emotes commonly used to show love. This was not only a tribute to the dogs, but a tribute to Hasan and Will's good friendship.\n\nAnother streamer, Destiny, who is often opposed to Hasan, ordered a raid on this art. The art of Fish was replaced by a flag, likely playing on anti-flag sentiment on place in general. The large D is a reference to Hasan's chat referring to Destiny as D, because the term Destiny is banned in his chat.\nneffL was also altered, given tears, a frown, a broken heart, and the fur on the top was drooped down.\nIt was not received well, as people enjoyed the two dog friends regardless of context.", "website": "", "subreddit": "", "center": [1737.5, 524.5], "path": [[1693.5, 544.5], [1691.5, 504.5], [1750.5, 502.5], [1760.5, 498.5], [1764.5, 501.5], [1768.5, 499.5], [1773.5, 500.5], [1770.5, 502.5], [1781.5, 510.5], [1782.5, 519.5], [1786.5, 524.5], [1783.5, 535.5], [1775.5, 533.5], [1773.5, 546.5], [1761.5, 547.5], [1757.5, 550.5], [1754.5, 550.5], [1752.5, 547.5], [1750.5, 545.5]]}, -{"id": "txe8xk", "submitted_by": "Project_XShadow", "name": "Little Water Lad", "description": "It got converted into something else, but first it was going to be a water balloon, then it got a face, then it got H20 written on it. We kept it safe for four days, though a German school kept trying to change it to their logo.", "website": "", "subreddit": "r/HeavySeas", "center": [191.5, 760.5], "path": [[184.5, 753.5], [198.5, 753.5], [197.5, 768.5], [184.5, 768.5], [184.5, 753.5]]}, -{"id": "txe8uw", "submitted_by": "lango9599", "name": "VintageBeef", "description": "VintageBeef is a Minecraft youtuber who makes videos on Modded Minecraft, Minecraft maps, Hermitcraft, Mindcrack, Minecraft Pixelmon, and more. ", "website": "[https://www.youtube.com/user/VintageBeef/](https://www.youtube.com/user/VintageBeef/)", "subreddit": "/r/HermitCraft", "center": [901.5, 611.5], "path": [[897.5, 608.5], [904.5, 608.5], [904.5, 614.5], [897.5, 614.5]]}, +{"id": "txea1c", "submitted_by": "Famous-Beat2963", "name": "HasanAbi and Will Neff dog emotes", "description": "Pre-raid, there were two dogs, Cartoon versions of Hasan's dog named Fish who sadly passed in 2020, and Will Neff's dog Farley. The art itself is adapted from their emotes, hasL and neffL, emotes commonly used to show love. This was not only a tribute to the dogs, but a tribute to Hasan and Will's good friendship.\n\nAnother streamer, Destiny, who is often opposed to Hasan, ordered a raid on this art. The art of Fish was replaced by a flag, likely playing on anti-flag sentiment on r/place in general. The large D is a reference to Hasan's chat referring to Destiny as D, because the term Destiny is banned in his chat.\nneffL was also altered, given tears, a frown, a broken heart, and the fur on the top was drooped down.\nIt was not received well, as people enjoyed the two dog friends regardless of context.", "website": "", "subreddit": "", "center": [1737.5, 524.5], "path": [[1693.5, 544.5], [1691.5, 504.5], [1750.5, 502.5], [1760.5, 498.5], [1764.5, 501.5], [1768.5, 499.5], [1773.5, 500.5], [1770.5, 502.5], [1781.5, 510.5], [1782.5, 519.5], [1786.5, 524.5], [1783.5, 535.5], [1775.5, 533.5], [1773.5, 546.5], [1761.5, 547.5], [1757.5, 550.5], [1754.5, 550.5], [1752.5, 547.5], [1750.5, 545.5]]}, +{"id": "txe8xk", "submitted_by": "Project_XShadow", "name": "Little Water Lad", "description": "It got converted into something else, but first it was going to be a water balloon, then it got a face, then it got H20 written on it. We kept it safe for four days, though a German school kept trying to change it to their logo.", "website": "", "subreddit": "/r/HeavySeas", "center": [191.5, 760.5], "path": [[184.5, 753.5], [198.5, 753.5], [197.5, 768.5], [184.5, 768.5], [184.5, 753.5]]}, {"id": "txe6s5", "submitted_by": "Dead_Wooolf_Slayer", "name": "East Expansion", "description": "During the second day of r pleace the third Mexican flag was finished. The flag of the south began its expansion against small communities after finishing the expansion of the west, the flag of Guatemala was the most damaged. Mexican discord groups oppose the expansion for fear of losing the finished mural but tictok groups provoked a massive attack winning the eastern expansion, despite attempts at diplomacy with the extinct flag of Switzerland and Guatemala.", "website": "", "subreddit": "/r/M\u00e9xico", "center": [784.5, 1213.5], "path": [[785.5, 1212.5], [787.5, 1211.5], [788.5, 1213.5], [785.5, 1215.5], [781.5, 1215.5], [781.5, 1211.5], [783.5, 1211.5], [784.5, 1211.5]]}, -{"id": "txe5gb", "submitted_by": "Met76", "name": "One World Trade Center", "description": "The One World Trade Center stands in place of the iconic \"Twin Towers\" that were destroyed in the events of September 11, 2001. The new tower stand 424 ft. (129m) taller than the former towers.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "txe4uc", "submitted_by": "MixerBlaze", "name": "Gabumon", "description": "Gabumon from Digimon Adventure. Built by r/digimon. Was originally purple instead of blue, but the plans were changed to make the colors more accurate.", "website": "", "subreddit": "/r/digimon", "center": [1329.5, 117.5], "path": [[1326.5, 103.5], [1323.5, 103.5], [1322.5, 104.5], [1322.5, 105.5], [1323.5, 106.5], [1323.5, 107.5], [1323.5, 110.5], [1322.5, 110.5], [1322.5, 111.5], [1321.5, 111.5], [1321.5, 112.5], [1320.5, 112.5], [1320.5, 113.5], [1319.5, 114.5], [1320.5, 115.5], [1321.5, 115.5], [1321.5, 116.5], [1320.5, 117.5], [1321.5, 118.5], [1321.5, 119.5], [1320.5, 120.5], [1321.5, 121.5], [1321.5, 122.5], [1321.5, 123.5], [1320.5, 123.5], [1319.5, 122.5], [1320.5, 124.5], [1320.5, 126.5], [1320.5, 128.5], [1321.5, 129.5], [1326.5, 129.5], [1327.5, 128.5], [1327.5, 125.5], [1329.5, 125.5], [1329.5, 129.5], [1328.5, 130.5], [1333.5, 130.5], [1333.5, 129.5], [1332.5, 129.5], [1332.5, 128.5], [1332.5, 127.5], [1332.5, 126.5], [1333.5, 126.5], [1335.5, 126.5], [1335.5, 126.5], [1341.5, 126.5], [1341.5, 125.5], [1340.5, 124.5], [1340.5, 122.5], [1341.5, 122.5], [1341.5, 121.5], [1342.5, 121.5], [1342.5, 119.5], [1343.5, 118.5], [1343.5, 117.5], [1342.5, 117.5], [1341.5, 117.5], [1340.5, 118.5], [1339.5, 118.5], [1338.5, 117.5], [1338.5, 116.5], [1337.5, 115.5], [1337.5, 114.5], [1336.5, 113.5], [1336.5, 112.5], [1335.5, 111.5], [1335.5, 110.5], [1334.5, 110.5], [1334.5, 109.5], [1333.5, 108.5], [1333.5, 107.5], [1334.5, 107.5], [1335.5, 107.5], [1336.5, 106.5], [1337.5, 105.5], [1337.5, 104.5], [1336.5, 104.5], [1335.5, 104.5], [1334.5, 105.5], [1333.5, 105.5], [1332.5, 105.5], [1331.5, 105.5], [1330.5, 106.5], [1329.5, 106.5], [1328.5, 106.5], [1328.5, 105.5], [1328.5, 104.5], [1328.5, 103.5]]}, -{"id": "txe4l5", "submitted_by": "lango9599", "name": "GeminiTay", "description": "GeminiTay is a Canadian Minecraft YouTuber known for her Minecraft Let's Builds, build tutorials & more. She is a part of several Minecraft SMPS, including Hermitcraft, X Life SMP, Empires SMP, and Afterlife SMP.", "website": "[https://www.youtube.com/c/GeminiTayMC/](https://www.youtube.com/c/GeminiTayMC/)", "subreddit": "/r/HermitCraft", "center": [901.5, 595.5], "path": [[897.5, 592.5], [897.5, 598.5], [904.5, 598.5], [904.5, 592.5], [897.5, 592.5]]}, -{"id": "txe2yb", "submitted_by": "TeakIvy", "name": "Something cool i think", "description": "ty for reading me, now you must watch Never Gonna Give you up. Its payment", "website": "[https://www.youtube.com/watch?v=dQw4w9WgXcQ](https://www.youtube.com/watch?v=dQw4w9WgXcQ)", "subreddit": "", "center": [598.5, 800.5], "path": [[588.5, 777.5], [612.5, 779.5], [616.5, 830.5], [551.5, 792.5], [608.5, 812.5], [591.5, 797.5], [581.5, 809.5]]}, -{"id": "txe1lg", "submitted_by": "-KiriHana", "name": "The 4 Star Dragonball", "description": "RIP Grandpa Gohan<3", "website": "[https://discord.gg/Mqk6FhJp](https://discord.gg/Mqk6FhJp)", "subreddit": "r/DBZ", "center": [1973.5, 1462.5], "path": [[1975.5, 1459.5], [1971.5, 1459.5], [1970.5, 1460.5], [1969.5, 1461.5], [1969.5, 1464.5], [1970.5, 1464.5], [1971.5, 1464.5], [1974.5, 1465.5], [1976.5, 1464.5], [1976.5, 1460.5], [1975.5, 1459.5]]}, -{"id": "txe0lx", "submitted_by": "Raaaage-Alert", "name": "Forts", "description": "Forts is a physics-based 2D real-time strategy video game developed and published by Australian studio EarthWork Games.", "website": "[https://store.steampowered.com/app/410900/Forts/](https://store.steampowered.com/app/410900/Forts/)", "subreddit": "/r/FortsGame", "center": [388.5, 1959.5], "path": [[380.5, 1951.5], [399.5, 1951.5], [399.5, 1961.5], [391.5, 1961.5], [391.5, 1967.5], [395.5, 1967.5], [395.5, 1969.5], [380.5, 1969.5], [380.5, 1965.5], [379.5, 1965.5], [379.5, 1960.5], [380.5, 1960.5]]}, -{"id": "txdzf9", "submitted_by": "Mayu_Cris", "name": "deqiuv", "description": "", "website": "[https://www.twitch.tv/deqiuv](https://www.twitch.tv/deqiuv)", "subreddit": "[https://www.reddit.com/r/deqiuv/](https://www.reddit.com/r/deqiuv/)", "center": [1107.5, 1308.5], "path": [[1083.5, 1303.5], [1131.5, 1303.5], [1131.5, 1312.5], [1083.5, 1312.5], [1083.5, 1303.5]]}, -{"id": "txdymm", "submitted_by": "elly051", "name": "c!wilbur", "description": "c!wilbur is a fictional character on the dreamsmp minecraft server. He is played by Wilbursoot, a youtuber and musician in the band LoveJoy.", "website": "", "subreddit": "r/dreamsmp and r/wilbursoot", "center": [178.5, 913.5], "path": [[173.5, 908.5], [173.5, 917.5], [182.5, 917.5], [182.5, 908.5]]}, -{"id": "txdy28", "submitted_by": "123SteveHead", "name": "Gabumon", "description": "From the Digimon franchise.", "website": "", "subreddit": "", "center": [1333.5, 117.5], "path": [[1317.5, 102.5], [1317.5, 132.5], [1349.5, 133.5], [1349.5, 102.5]]}, +{"id": "txe4l5", "submitted_by": "lango9599", "name": "GeminiTay", "description": "GeminiTay is a Canadian Minecraft YouTuber known for her Minecraft Let's Builds, build tutorials & more. She is a part of several Minecraft Survival Multiplayers (SMPs), including Hermitcraft, X Life SMP, Empires SMP, and Afterlife SMP.", "website": "https://www.youtube.com/c/GeminiTayMC/", "subreddit": "/r/Hermitcraft", "center": [901.5, 595.5], "path": [[897.5, 592.5], [897.5, 598.5], [904.5, 598.5], [904.5, 592.5], [897.5, 592.5]]}, +{"id": "txe1lg", "submitted_by": "-KiriHana", "name": "The 4 Star Dragonball", "description": "RIP Grandpa Gohan<3", "website": "https://discord.gg/Mqk6FhJp", "subreddit": "/r/DBZ", "center": [1973.5, 1462.5], "path": [[1975.5, 1459.5], [1971.5, 1459.5], [1970.5, 1460.5], [1969.5, 1461.5], [1969.5, 1464.5], [1970.5, 1464.5], [1971.5, 1464.5], [1974.5, 1465.5], [1976.5, 1464.5], [1976.5, 1460.5], [1975.5, 1459.5]]}, +{"id": "txe0lx", "submitted_by": "Raaaage-Alert", "name": "Forts", "description": "Forts is a physics-based 2D real-time strategy video game developed and published by Australian studio EarthWork Games.", "website": "https://store.steampowered.com/app/410900/Forts/", "subreddit": "/r/FortsGame", "center": [388.5, 1959.5], "path": [[380.5, 1951.5], [399.5, 1951.5], [399.5, 1961.5], [391.5, 1961.5], [391.5, 1967.5], [395.5, 1967.5], [395.5, 1969.5], [380.5, 1969.5], [380.5, 1965.5], [379.5, 1965.5], [379.5, 1960.5], [380.5, 1960.5]]}, +{"id": "txdzf9", "submitted_by": "Mayu_Cris", "name": "deqiuv", "description": "", "website": "https://www.twitch.tv/deqiuv", "subreddit": "[/r/deqiuv", "center": [1107.5, 1308.5], "path": [[1083.5, 1303.5], [1131.5, 1303.5], [1131.5, 1312.5], [1083.5, 1312.5], [1083.5, 1303.5]]}, +{"id": "txdymm", "submitted_by": "elly051", "name": "c!wilbur", "description": "c!wilbur is a fictional character on the dreamsmp minecraft server. He is played by Wilbursoot, a youtuber and musician in the band LoveJoy.", "website": "", "subreddit": "/r/dreamsmp, and, /r/wilbursoot", "center": [178.5, 913.5], "path": [[173.5, 908.5], [173.5, 917.5], [182.5, 917.5], [182.5, 908.5]]}, {"id": "txdxvl", "submitted_by": "Dead_Wooolf_Slayer", "name": " Center Flag", "description": "This flag was the first Mexican flag. It was made during the first day of r pleace.\nAt first it was a very small flag but it expanded to the north when the LGBT flag was attacked by the Mexican and Italian alliance dividing the won territories in half. This territory lived in peace from the first to the last day and was never invaded.\nThe hearts are the symbol of the eternal Mexican and Italian alliance.", "website": "", "subreddit": "/r/Mexico", "center": [824.5, 456.5], "path": [[813.5, 452.5], [835.5, 452.5], [824.5, 463.5], [824.5, 463.5], [814.5, 453.5]]}, {"id": "txdv2t", "submitted_by": "123SteveHead", "name": "Chao", "description": "From the Sonic the Hedgehog franchise.", "website": "", "subreddit": "", "center": [772.5, 1733.5], "path": [[764.5, 1723.5], [764.5, 1743.5], [780.5, 1744.5], [779.5, 1723.5], [780.5, 1723.5]]}, -{"id": "txdu8a", "submitted_by": "20titan20", "name": "AriZona Mucho Mango Can", "description": "The home of one of the most refreshing mango drinks on the planet. Top of the can was kindly opened up by Finland on the final day.", "website": "", "subreddit": "r/ArizonaTea", "center": [1271.5, 1377.5], "path": [[1277.5, 1367.5], [1277.5, 1367.5], [1277.5, 1369.5], [1277.5, 1372.5], [1277.5, 1391.5], [1272.5, 1390.5], [1263.5, 1381.5], [1263.5, 1367.5]]}, -{"id": "txdta5", "submitted_by": "AnonymousRandPerson", "name": "Libertarian Right", "description": "A dolphin symbolizing the Libertarian Right quadrant of the Political Compass (a tribute to the infamous u/DolphinFucker69).", "website": "[https://www.politicalcompass.org](https://www.politicalcompass.org)", "subreddit": "r/PoliticalCompassMemes", "center": [408.5, 636.5], "path": [[396.5, 627.5], [394.5, 629.5], [395.5, 630.5], [395.5, 632.5], [394.5, 633.5], [395.5, 634.5], [394.5, 635.5], [395.5, 636.5], [395.5, 639.5], [397.5, 641.5], [397.5, 642.5], [396.5, 643.5], [396.5, 645.5], [421.5, 645.5], [421.5, 627.5]]}, -{"id": "txds24", "submitted_by": "AnonymousRandPerson", "name": "Libertarian Left", "description": "A furry symbolizing the Libertarian Left quadrant of the Political Compass (cliche the LibLefties are furries).", "website": "[https://www.politicalcompass.org](https://www.politicalcompass.org)", "subreddit": "r/PoliticalCompassMemes", "center": [373.5, 636.5], "path": [[361.5, 627.5], [361.5, 645.5], [384.5, 645.5], [386.5, 643.5], [385.5, 642.5], [385.5, 641.5], [387.5, 639.5], [387.5, 637.5], [386.5, 636.5], [386.5, 635.5], [385.5, 634.5], [386.5, 633.5], [385.5, 632.5], [386.5, 631.5], [386.5, 630.5], [385.5, 629.5], [384.5, 630.5], [383.5, 629.5], [383.5, 627.5]]}, -{"id": "txdr27", "submitted_by": "AnonymousRandPerson", "name": "Libertarian Center", "description": "A monkey symbolizing the Libertarian Center quadrant of the Political Compass.", "website": "[https://www.politicalcompass.org](https://www.politicalcompass.org)", "subreddit": "r/PoliticalCompassMemes", "center": [390.5, 630.5], "path": [[390.5, 609.5], [390.5, 611.5], [388.5, 613.5], [388.5, 614.5], [387.5, 615.5], [387.5, 616.5], [386.5, 617.5], [386.5, 621.5], [383.5, 624.5], [382.5, 623.5], [381.5, 624.5], [381.5, 627.5], [382.5, 628.5], [382.5, 629.5], [384.5, 631.5], [384.5, 632.5], [385.5, 633.5], [384.5, 634.5], [385.5, 635.5], [384.5, 636.5], [385.5, 637.5], [386.5, 637.5], [386.5, 639.5], [384.5, 641.5], [384.5, 642.5], [385.5, 643.5], [385.5, 645.5], [386.5, 646.5], [396.5, 646.5], [397.5, 645.5], [397.5, 643.5], [398.5, 642.5], [398.5, 641.5], [396.5, 639.5], [396.5, 634.5], [395.5, 633.5], [396.5, 632.5], [396.5, 630.5], [395.5, 629.5], [396.5, 628.5], [396.5, 627.5], [397.5, 627.5], [398.5, 626.5], [398.5, 625.5], [397.5, 624.5], [397.5, 623.5], [396.5, 622.5], [395.5, 622.5], [395.5, 621.5], [396.5, 620.5], [396.5, 617.5], [395.5, 616.5], [395.5, 615.5], [394.5, 614.5], [394.5, 613.5], [392.5, 611.5]]}, -{"id": "txdocs", "submitted_by": "AnonymousRandPerson", "name": "Authoritarian Right", "description": "A king symbolizing the Authoritarian Right quadrant of the Politcal Compass, because they like monarchy.", "website": "[https://www.politicalcompass.org](https://www.politicalcompass.org)", "subreddit": "r/PoliticalCompassMemes", "center": [407.5, 617.5], "path": [[391.5, 608.5], [391.5, 612.5], [392.5, 612.5], [392.5, 613.5], [394.5, 615.5], [394.5, 616.5], [395.5, 617.5], [395.5, 620.5], [394.5, 621.5], [394.5, 622.5], [395.5, 623.5], [394.5, 624.5], [395.5, 625.5], [395.5, 627.5], [421.5, 627.5], [421.5, 610.5], [419.5, 608.5]]}, -{"id": "txdndu", "submitted_by": "Dead_Wooolf_Slayer", "name": "Quetzalcoatl, Feathered Serpent", "description": "Restored after the second invasion of Poland. He is the main god of the ancient Mexica culture. It is a mixture of a bird and a serpent called the Feathered Serpent. According to legend, he lived between 999 and 1051 BC. According to other civilizations, his name means who everything was made.", "website": "[https://es.wikipedia.org/wiki/Quetzalc%C3%B3atl](https://es.wikipedia.org/wiki/Quetzalc%C3%B3atl)", "subreddit": "/r/M\u00e9xico", "center": [870.5, 237.5], "path": [[893.5, 213.5], [888.5, 213.5], [887.5, 214.5], [885.5, 218.5], [877.5, 228.5], [866.5, 236.5], [866.5, 248.5], [891.5, 248.5], [895.5, 248.5], [895.5, 246.5], [898.5, 246.5], [898.5, 242.5], [900.5, 241.5], [897.5, 218.5], [898.5, 219.5], [898.5, 217.5], [915.5, 224.5], [916.5, 232.5], [913.5, 241.5], [900.5, 241.5], [897.5, 217.5], [900.5, 218.5]]}, -{"id": "txdmo9", "submitted_by": "Nadie_nobody_", "name": "The Nowhere King", "description": "Main antagonist from the Netflix series 'Centauworld'.\n'You will bring joy to the Nowhere King\nWhen he sees the light leaving your eyes'", "website": "[https://centaurworld.fandom.com/wiki/Centaurworld_Wiki](https://centaurworld.fandom.com/wiki/Centaurworld_Wiki)", "subreddit": "r/CentaurWorld", "center": [1467.5, 908.5], "path": [[1463.5, 903.5], [1463.5, 912.5], [1471.5, 912.5], [1471.5, 903.5], [1463.5, 903.5]]}, +{"id": "txdu8a", "submitted_by": "20titan20", "name": "AriZona Mucho Mango Can", "description": "The home of one of the most refreshing mango drinks on the planet. Top of the can was kindly opened up by Finland on the final day.", "website": "", "subreddit": "/r/ArizonaTea", "center": [1271.5, 1377.5], "path": [[1277.5, 1367.5], [1277.5, 1367.5], [1277.5, 1369.5], [1277.5, 1372.5], [1277.5, 1391.5], [1272.5, 1390.5], [1263.5, 1381.5], [1263.5, 1367.5]]}, +{"id": "txdta5", "submitted_by": "AnonymousRandPerson", "name": "Libertarian Right", "description": "A dolphin symbolizing the Libertarian Right quadrant of the Political Compass (a tribute to the infamous u/DolphinFucker69).", "website": "https://www.politicalcompass.org", "subreddit": "/r/PoliticalCompassMemes", "center": [408.5, 636.5], "path": [[396.5, 627.5], [394.5, 629.5], [395.5, 630.5], [395.5, 632.5], [394.5, 633.5], [395.5, 634.5], [394.5, 635.5], [395.5, 636.5], [395.5, 639.5], [397.5, 641.5], [397.5, 642.5], [396.5, 643.5], [396.5, 645.5], [421.5, 645.5], [421.5, 627.5]]}, +{"id": "txds24", "submitted_by": "AnonymousRandPerson", "name": "Libertarian Left", "description": "A furry symbolizing the Libertarian Left quadrant of the Political Compass (cliche the LibLefties are furries).", "website": "https://www.politicalcompass.org", "subreddit": "/r/PoliticalCompassMemes", "center": [373.5, 636.5], "path": [[361.5, 627.5], [361.5, 645.5], [384.5, 645.5], [386.5, 643.5], [385.5, 642.5], [385.5, 641.5], [387.5, 639.5], [387.5, 637.5], [386.5, 636.5], [386.5, 635.5], [385.5, 634.5], [386.5, 633.5], [385.5, 632.5], [386.5, 631.5], [386.5, 630.5], [385.5, 629.5], [384.5, 630.5], [383.5, 629.5], [383.5, 627.5]]}, +{"id": "txdr27", "submitted_by": "AnonymousRandPerson", "name": "Libertarian Center", "description": "A monkey symbolizing the Libertarian Center quadrant of the Political Compass.", "website": "https://www.politicalcompass.org", "subreddit": "/r/PoliticalCompassMemes", "center": [390.5, 630.5], "path": [[390.5, 609.5], [390.5, 611.5], [388.5, 613.5], [388.5, 614.5], [387.5, 615.5], [387.5, 616.5], [386.5, 617.5], [386.5, 621.5], [383.5, 624.5], [382.5, 623.5], [381.5, 624.5], [381.5, 627.5], [382.5, 628.5], [382.5, 629.5], [384.5, 631.5], [384.5, 632.5], [385.5, 633.5], [384.5, 634.5], [385.5, 635.5], [384.5, 636.5], [385.5, 637.5], [386.5, 637.5], [386.5, 639.5], [384.5, 641.5], [384.5, 642.5], [385.5, 643.5], [385.5, 645.5], [386.5, 646.5], [396.5, 646.5], [397.5, 645.5], [397.5, 643.5], [398.5, 642.5], [398.5, 641.5], [396.5, 639.5], [396.5, 634.5], [395.5, 633.5], [396.5, 632.5], [396.5, 630.5], [395.5, 629.5], [396.5, 628.5], [396.5, 627.5], [397.5, 627.5], [398.5, 626.5], [398.5, 625.5], [397.5, 624.5], [397.5, 623.5], [396.5, 622.5], [395.5, 622.5], [395.5, 621.5], [396.5, 620.5], [396.5, 617.5], [395.5, 616.5], [395.5, 615.5], [394.5, 614.5], [394.5, 613.5], [392.5, 611.5]]}, +{"id": "txdocs", "submitted_by": "AnonymousRandPerson", "name": "Authoritarian Right", "description": "A king symbolizing the Authoritarian Right quadrant of the Politcal Compass, because they like monarchy.", "website": "https://www.politicalcompass.org", "subreddit": "/r/PoliticalCompassMemes", "center": [407.5, 617.5], "path": [[391.5, 608.5], [391.5, 612.5], [392.5, 612.5], [392.5, 613.5], [394.5, 615.5], [394.5, 616.5], [395.5, 617.5], [395.5, 620.5], [394.5, 621.5], [394.5, 622.5], [395.5, 623.5], [394.5, 624.5], [395.5, 625.5], [395.5, 627.5], [421.5, 627.5], [421.5, 610.5], [419.5, 608.5]]}, +{"id": "txdndu", "submitted_by": "Dead_Wooolf_Slayer", "name": "Quetzalcoatl, Feathered Serpent", "description": "Restored after the second invasion of Poland. He is the main god of the ancient Mexica culture. It is a mixture of a bird and a serpent called the Feathered Serpent. According to legend, he lived between 999 and 1051 BC. According to other civilizations, his name means who everything was made.", "website": "https://es.wikipedia.org/wiki/Quetzalc%C3%B3atl", "subreddit": "/r/M\u00e9xico", "center": [870.5, 237.5], "path": [[893.5, 213.5], [888.5, 213.5], [887.5, 214.5], [885.5, 218.5], [877.5, 228.5], [866.5, 236.5], [866.5, 248.5], [891.5, 248.5], [895.5, 248.5], [895.5, 246.5], [898.5, 246.5], [898.5, 242.5], [900.5, 241.5], [897.5, 218.5], [898.5, 219.5], [898.5, 217.5], [915.5, 224.5], [916.5, 232.5], [913.5, 241.5], [900.5, 241.5], [897.5, 217.5], [900.5, 218.5]]}, +{"id": "txdmo9", "submitted_by": "Nadie_nobody_", "name": "The Nowhere King", "description": "Main antagonist from the Netflix series 'Centauworld'.\n'You will bring joy to the Nowhere King\nWhen he sees the light leaving your eyes'", "website": "https://centaurworld.fandom.com/wiki/Centaurworld_Wiki", "subreddit": "/r/CentaurWorld", "center": [1467.5, 908.5], "path": [[1463.5, 903.5], [1463.5, 912.5], [1471.5, 912.5], [1471.5, 903.5], [1463.5, 903.5]]}, {"id": "txdjfj", "submitted_by": "BeyondBlitz", "name": "Master Chief", "description": "The helmet of Master Chief Petty Officer John-117.", "website": "", "subreddit": "/r/halo", "center": [1071.5, 377.5], "path": [[1062.5, 367.5], [1062.5, 386.5], [1080.5, 386.5], [1080.5, 367.5], [1062.5, 367.5]]}, -{"id": "txdj00", "submitted_by": "AnonymousRandPerson", "name": "Authoritarian Left (Tankies)", "description": "A tank symbolizing the Authoritarian Left quadrant of the Political Compass.", "website": "[https://www.politicalcompass.org](https://www.politicalcompass.org)", "subreddit": "r/PoliticalCompassMemes", "center": [375.5, 618.5], "path": [[378.5, 608.5], [378.5, 613.5], [363.5, 613.5], [361.5, 615.5], [361.5, 627.5], [382.5, 627.5], [382.5, 624.5], [383.5, 625.5], [387.5, 621.5], [387.5, 617.5], [388.5, 616.5], [388.5, 615.5], [389.5, 614.5], [389.5, 613.5], [391.5, 611.5], [391.5, 608.5]]}, -{"id": "txdi8w", "submitted_by": "Zapharo", "name": "Nameko", "description": "The little funghi fella from Touch Detective and Mushroom Garden. Nnf nnf!", "website": "[https://www.spiralcute.com/characters/nameko/en/](https://www.spiralcute.com/characters/nameko/en/)", "subreddit": "/r/MushroomGarden/", "center": [509.5, 1353.5], "path": [[504.5, 1346.5], [504.5, 1346.5], [504.5, 1359.5], [513.5, 1359.5], [513.5, 1346.5], [504.5, 1346.5], [504.5, 1346.5], [504.5, 1346.5]]}, -{"id": "txdh71", "submitted_by": "Ninja332", "name": "Sachiel", "description": "Sachiel is the 3rd angel and the first to launch an offensive against NERV and their base at the Geofront. In defense of Sachiel's attack, Shinji is deployed in Evangelion Unit 01. Sachiel self destructs, severely damaging Unit 01, rather than let itself be defeated", "website": "[https://evangelion.fandom.com/wiki/Sachiel](https://evangelion.fandom.com/wiki/Sachiel)", "subreddit": "/r/Evangelion", "center": [646.5, 1420.5], "path": [[648.5, 1414.5], [644.5, 1414.5], [640.5, 1418.5], [640.5, 1422.5], [646.5, 1428.5], [652.5, 1422.5], [652.5, 1418.5]]}, -{"id": "txdetm", "submitted_by": "Ninja332", "name": "Asuka Langley Sohryu", "description": "Asuka Langley Sohryu, pilot of the first production Evangelion, Unit-02, is the 3rd Child chosen to pilot an Evangelion Unit in defense of humanity against the Angels", "website": "[https://evangelion.fandom.com/wiki/Asuka_Langley_Sohryu](https://evangelion.fandom.com/wiki/Asuka_Langley_Sohryu)", "subreddit": "/r/Evangelion", "center": [664.5, 1391.5], "path": [[662.5, 1384.5], [659.5, 1385.5], [657.5, 1394.5], [662.5, 1399.5], [666.5, 1399.5], [671.5, 1394.5], [669.5, 1384.5]]}, -{"id": "txdala", "submitted_by": "Dead_Wooolf_Slayer", "name": "\u00c1ngel de la independencia", "description": "Restaurada despu\u00e9s de la segunda invasi\u00f3n de Polonia. Es uno de los monumentos mas emblem\u00e1ticos de M\u00e9xico, alusivo al centenario de la Independencia Mexicana. Actualmente es un mausoleo para los h\u00e9roes mas importantes de dicha guerra. En la parte superior se observa una Victoria Alada.", "website": "[https://es.wikipedia.org/wiki/Monumento_a_la_Independencia](https://es.wikipedia.org/wiki/Monumento_a_la_Independencia)", "subreddit": "/r/Mexico", "center": [880.5, 210.5], "path": [[874.5, 199.5], [884.5, 200.5], [886.5, 203.5], [882.5, 202.5], [880.5, 204.5], [882.5, 209.5], [881.5, 222.5], [878.5, 225.5], [878.5, 209.5], [877.5, 209.5], [877.5, 207.5], [879.5, 206.5], [878.5, 205.5], [878.5, 202.5], [877.5, 202.5], [876.5, 201.5], [875.5, 200.5], [874.5, 199.5]]}, +{"id": "txdj00", "submitted_by": "AnonymousRandPerson", "name": "Authoritarian Left (Tankies)", "description": "A tank symbolizing the Authoritarian Left quadrant of the Political Compass.", "website": "https://www.politicalcompass.org", "subreddit": "/r/PoliticalCompassMemes", "center": [375.5, 618.5], "path": [[378.5, 608.5], [378.5, 613.5], [363.5, 613.5], [361.5, 615.5], [361.5, 627.5], [382.5, 627.5], [382.5, 624.5], [383.5, 625.5], [387.5, 621.5], [387.5, 617.5], [388.5, 616.5], [388.5, 615.5], [389.5, 614.5], [389.5, 613.5], [391.5, 611.5], [391.5, 608.5]]}, +{"id": "txdi8w", "submitted_by": "Zapharo", "name": "Nameko", "description": "The little funghi fella from Touch Detective and Mushroom Garden. Nnf nnf!", "website": "https://www.spiralcute.com/characters/nameko/en/", "subreddit": "/r/MushroomGarden", "center": [509.5, 1353.5], "path": [[504.5, 1346.5], [504.5, 1346.5], [504.5, 1359.5], [513.5, 1359.5], [513.5, 1346.5], [504.5, 1346.5], [504.5, 1346.5], [504.5, 1346.5]]}, +{"id": "txdh71", "submitted_by": "Ninja332", "name": "Sachiel", "description": "Sachiel is the 3rd angel and the first to launch an offensive against NERV and their base at the Geofront. In defense of Sachiel's attack, Shinji is deployed in Evangelion Unit 01. Sachiel self destructs, severely damaging Unit 01, rather than let itself be defeated", "website": "https://evangelion.fandom.com/wiki/Sachiel", "subreddit": "/r/Evangelion", "center": [646.5, 1420.5], "path": [[648.5, 1414.5], [644.5, 1414.5], [640.5, 1418.5], [640.5, 1422.5], [646.5, 1428.5], [652.5, 1422.5], [652.5, 1418.5]]}, +{"id": "txdetm", "submitted_by": "Ninja332", "name": "Asuka Langley Sohryu", "description": "Asuka Langley Sohryu, pilot of the first production Evangelion, Unit-02, is the 3rd Child chosen to pilot an Evangelion Unit in defense of humanity against the Angels", "website": "https://evangelion.fandom.com/wiki/Asuka_Langley_Sohryu", "subreddit": "/r/Evangelion", "center": [664.5, 1391.5], "path": [[662.5, 1384.5], [659.5, 1385.5], [657.5, 1394.5], [662.5, 1399.5], [666.5, 1399.5], [671.5, 1394.5], [669.5, 1384.5]]}, +{"id": "txdala", "submitted_by": "Dead_Wooolf_Slayer", "name": "\u00c1ngel de la independencia", "description": "Restaurada despu\u00e9s de la segunda invasi\u00f3n de Polonia. Es uno de los monumentos mas emblem\u00e1ticos de M\u00e9xico, alusivo al centenario de la Independencia Mexicana. Actualmente es un mausoleo para los h\u00e9roes mas importantes de dicha guerra. En la parte superior se observa una Victoria Alada.", "website": "https://es.wikipedia.org/wiki/Monumento_a_la_Independencia", "subreddit": "/r/Mexico", "center": [880.5, 210.5], "path": [[874.5, 199.5], [884.5, 200.5], [886.5, 203.5], [882.5, 202.5], [880.5, 204.5], [882.5, 209.5], [881.5, 222.5], [878.5, 225.5], [878.5, 209.5], [877.5, 209.5], [877.5, 207.5], [879.5, 206.5], [878.5, 205.5], [878.5, 202.5], [877.5, 202.5], [876.5, 201.5], [875.5, 200.5], [874.5, 199.5]]}, {"id": "txd9gh", "submitted_by": "magzillas", "name": "One Piece Mugiwara Pirates Logo", "description": "One Piece is a long-running manga and anime series. This element depicts the logo of the main characters' pirate crew, named after the protagonist's trademark straw hat.\n\nThe blue pixels on the left eye are likely remnants of efforts to make the skull resemble Sans, a character from the video game Undertale with a similarly glowing eye.", "website": "", "subreddit": "/r/onepiece", "center": [353.5, 570.5], "path": [[330.5, 528.5], [329.5, 612.5], [377.5, 612.5], [377.5, 529.5]]}, -{"id": "txd8wt", "submitted_by": "greese1", "name": "CENTRAL_ALLIANCE", "description": "Central Alliance is an alliance of [r/place](https://www.reddit.com/r/place/) 2022 consisting of many communities, dedicated to defending and collaborating together. Starting as the SouthXSouthEastern alliance (pre-expansion) with Destiny 2, Critical Role, & Barca, Central Alliance continued to expand its reach, eventually hitting over 50 different communities at the end. Through the Alliance, builds were defended from streamers and raids, expansions were planned cooperatively, and friendships of drastically different fandoms were made. Central Alliance continues to thrive on in its Discord and Subreddit, serving as a memento for its place in internet history, as well as a future landing point if [r/place](https://www.reddit.com/r/place/) ever returns.", "website": "", "subreddit": "[r/place_CentralAlliance](https://www.reddit.com/r/place_CentralAlliance/)", "center": [447.5, 994.5], "path": [[448.5, 890.5], [512.5, 890.5], [512.5, 900.5], [548.5, 900.5], [552.5, 900.5], [553.5, 899.5], [554.5, 899.5], [555.5, 898.5], [556.5, 899.5], [557.5, 899.5], [562.5, 899.5], [562.5, 900.5], [562.5, 866.5], [629.5, 866.5], [629.5, 888.5], [655.5, 888.5], [655.5, 909.5], [622.5, 909.5], [622.5, 943.5], [624.5, 943.5], [624.5, 974.5], [624.5, 1012.5], [598.5, 1012.5], [598.5, 1061.5], [624.5, 1061.5], [624.5, 1072.5], [623.5, 1073.5], [622.5, 1075.5], [621.5, 1076.5], [621.5, 1079.5], [622.5, 1080.5], [623.5, 1082.5], [623.5, 1083.5], [624.5, 1083.5], [624.5, 1105.5], [570.5, 1105.5], [570.5, 1111.5], [564.5, 1111.5], [564.5, 1123.5], [552.5, 1123.5], [552.5, 1126.5], [550.5, 1126.5], [550.5, 1130.5], [509.5, 1131.5], [509.5, 1130.5], [498.5, 1130.5], [498.5, 1133.5], [493.5, 1133.5], [493.5, 1128.5], [445.5, 1128.5], [445.5, 1122.5], [322.5, 1122.5], [322.5, 1068.5], [363.5, 1068.5], [363.5, 1039.5], [368.5, 1039.5], [368.5, 1007.5], [336.5, 1007.5], [336.5, 1009.5], [324.5, 1009.5], [323.5, 1009.5], [323.5, 1042.5], [285.5, 1042.5], [285.5, 984.5], [268.5, 984.5], [268.5, 986.5], [263.5, 986.5], [263.5, 984.5], [260.5, 984.5], [260.5, 987.5], [255.5, 987.5], [255.5, 984.5], [253.5, 984.5], [253.5, 986.5], [248.5, 986.5], [248.5, 982.5], [247.5, 981.5], [246.5, 980.5], [245.5, 979.5], [245.5, 964.5], [195.5, 964.5], [195.5, 926.5], [216.5, 926.5], [216.5, 888.5], [355.5, 888.5], [356.5, 889.5], [357.5, 890.5], [358.5, 891.5], [359.5, 892.5], [359.5, 910.5], [361.5, 910.5], [361.5, 907.5], [366.5, 907.5], [366.5, 910.5], [372.5, 910.5], [372.5, 907.5], [377.5, 907.5], [377.5, 910.5], [383.5, 910.5], [383.5, 907.5], [388.5, 907.5], [388.5, 910.5], [394.5, 910.5], [394.5, 907.5], [399.5, 907.5], [399.5, 910.5], [432.5, 910.5], [432.5, 973.5], [432.5, 1118.5], [448.5, 1118.5], [449.5, 984.5], [432.5, 984.5], [432.5, 973.5], [449.5, 973.5], [448.5, 890.5]]}, -{"id": "txd8ah", "submitted_by": "Rumbleizer", "name": "r/Inuyasha contribution", "description": "A logo from the r/inuyasha subreddit, a community revolving around the 2000's anime by the same name.", "website": "", "subreddit": "/r/inuyasha", "center": [1590.5, 40.5], "path": [[1568.5, 35.5], [1599.5, 34.5], [1614.5, 50.5], [1615.5, 55.5], [1599.5, 41.5], [1568.5, 41.5], [1568.5, 35.5]]}, -{"id": "txd760", "submitted_by": "AnoTheHero", "name": "Gabumon", "description": "A reptile Digimon from The Digimon Adventure TV series (1999) and is the partner of Yamato \"Matt\" Ishida. ", "website": "", "subreddit": "r/digimon", "center": [1330.5, 118.5], "path": [[1322.5, 102.5], [1322.5, 108.5], [1321.5, 112.5], [1319.5, 113.5], [1321.5, 118.5], [1320.5, 121.5], [1319.5, 125.5], [1319.5, 128.5], [1320.5, 130.5], [1327.5, 131.5], [1335.5, 130.5], [1335.5, 127.5], [1339.5, 127.5], [1342.5, 126.5], [1340.5, 123.5], [1342.5, 121.5], [1344.5, 117.5], [1342.5, 117.5], [1339.5, 118.5], [1337.5, 111.5], [1334.5, 108.5], [1338.5, 107.5], [1338.5, 103.5], [1335.5, 104.5], [1328.5, 106.5], [1328.5, 102.5], [1325.5, 105.5], [1322.5, 102.5]]}, +{"id": "txd8wt", "submitted_by": "greese1", "name": "CENTRAL_ALLIANCE", "description": "Central Alliance is an alliance of [r/place](https://www.reddit.com/r/place/) 2022 consisting of many communities, dedicated to defending and collaborating together. Starting as the SouthXSouthEastern alliance (pre-expansion) with Destiny 2, Critical Role, & Barca, Central Alliance continued to expand its reach, eventually hitting over 50 different communities at the end. Through the Alliance, builds were defended from streamers and raids, expansions were planned cooperatively, and friendships of drastically different fandoms were made. Central Alliance continues to thrive on in its Discord and Subreddit, serving as a memento for its place in internet history, as well as a future landing point if [r/place](https://www.reddit.com/r/place/) ever returns.", "website": "", "subreddit": "[/r/place_CentralAlliance](/r/place_CentralAlliance", "center": [447.5, 994.5], "path": [[448.5, 890.5], [512.5, 890.5], [512.5, 900.5], [548.5, 900.5], [552.5, 900.5], [553.5, 899.5], [554.5, 899.5], [555.5, 898.5], [556.5, 899.5], [557.5, 899.5], [562.5, 899.5], [562.5, 900.5], [562.5, 866.5], [629.5, 866.5], [629.5, 888.5], [655.5, 888.5], [655.5, 909.5], [622.5, 909.5], [622.5, 943.5], [624.5, 943.5], [624.5, 974.5], [624.5, 1012.5], [598.5, 1012.5], [598.5, 1061.5], [624.5, 1061.5], [624.5, 1072.5], [623.5, 1073.5], [622.5, 1075.5], [621.5, 1076.5], [621.5, 1079.5], [622.5, 1080.5], [623.5, 1082.5], [623.5, 1083.5], [624.5, 1083.5], [624.5, 1105.5], [570.5, 1105.5], [570.5, 1111.5], [564.5, 1111.5], [564.5, 1123.5], [552.5, 1123.5], [552.5, 1126.5], [550.5, 1126.5], [550.5, 1130.5], [509.5, 1131.5], [509.5, 1130.5], [498.5, 1130.5], [498.5, 1133.5], [493.5, 1133.5], [493.5, 1128.5], [445.5, 1128.5], [445.5, 1122.5], [322.5, 1122.5], [322.5, 1068.5], [363.5, 1068.5], [363.5, 1039.5], [368.5, 1039.5], [368.5, 1007.5], [336.5, 1007.5], [336.5, 1009.5], [324.5, 1009.5], [323.5, 1009.5], [323.5, 1042.5], [285.5, 1042.5], [285.5, 984.5], [268.5, 984.5], [268.5, 986.5], [263.5, 986.5], [263.5, 984.5], [260.5, 984.5], [260.5, 987.5], [255.5, 987.5], [255.5, 984.5], [253.5, 984.5], [253.5, 986.5], [248.5, 986.5], [248.5, 982.5], [247.5, 981.5], [246.5, 980.5], [245.5, 979.5], [245.5, 964.5], [195.5, 964.5], [195.5, 926.5], [216.5, 926.5], [216.5, 888.5], [355.5, 888.5], [356.5, 889.5], [357.5, 890.5], [358.5, 891.5], [359.5, 892.5], [359.5, 910.5], [361.5, 910.5], [361.5, 907.5], [366.5, 907.5], [366.5, 910.5], [372.5, 910.5], [372.5, 907.5], [377.5, 907.5], [377.5, 910.5], [383.5, 910.5], [383.5, 907.5], [388.5, 907.5], [388.5, 910.5], [394.5, 910.5], [394.5, 907.5], [399.5, 907.5], [399.5, 910.5], [432.5, 910.5], [432.5, 973.5], [432.5, 1118.5], [448.5, 1118.5], [449.5, 984.5], [432.5, 984.5], [432.5, 973.5], [449.5, 973.5], [448.5, 890.5]]}, {"id": "txd6uh", "submitted_by": "mumbling_marauder", "name": "RuPaul's Drag Race", "description": "A tribute to reality competition show RuPaul's Drag Race, organized by a community dedicated to collecting spoilers about the show's upcoming seasons. On the left there are three boxes referring to specialized placements on the show, and on the right there are six boxes depicting cast members from season 14. Above them is <3 CHI CHI, remembering legendary drag performer Chi Chi DeVayne, who tragically passed away in 2020. We miss you Chi Chi.", "website": "", "subreddit": "/r/spoileddragrace", "center": [1219.5, 416.5], "path": [[1222.5, 398.5], [1222.5, 398.5], [1246.5, 398.5], [1245.5, 430.5], [1245.5, 430.5], [1222.5, 430.5], [1222.5, 430.5], [1222.5, 433.5], [1222.5, 433.5], [1197.5, 433.5], [1197.5, 433.5], [1191.5, 433.5], [1191.5, 433.5], [1192.5, 402.5], [1192.5, 402.5], [1205.5, 402.5], [1205.5, 402.5], [1222.5, 402.5], [1222.5, 402.5], [1222.5, 398.5], [1222.5, 398.5], [1223.5, 398.5], [1223.5, 398.5]]}, {"id": "txd5x5", "submitted_by": "FrogDefender", "name": "Frog", "description": "Is a frog", "website": "", "subreddit": "", "center": [1108.5, 541.5], "path": [[1105.5, 541.5], [1108.5, 538.5], [1109.5, 539.5], [1110.5, 538.5], [1110.5, 539.5], [1111.5, 540.5], [1110.5, 541.5], [1110.5, 542.5], [1109.5, 543.5], [1106.5, 543.5], [1105.5, 542.5], [1105.5, 541.5]]}, -{"id": "txd51n", "submitted_by": "Ninja332", "name": "The Spear of Cassius", "description": "A weapon similar to the Lance of Longinus, in the Rebuild of Evangelion Universe, it is used by Kaworu Nagisa to terminate the Near Third Impact", "website": "[https://evangelion.fandom.com/wiki/Spear_of_Cassius](https://evangelion.fandom.com/wiki/Spear_of_Cassius)", "subreddit": "/r/Evangelion", "center": [0.5, 0.5], "path": []}, -{"id": "txd4mc", "submitted_by": "Xephorix512", "name": "Online Sequencer", "description": "The mascot and logo of the music-making website Online Sequencer", "website": "[https://onlinesequencer.net](https://onlinesequencer.net)", "subreddit": "r/onlinesequencer", "center": [1693.5, 1514.5], "path": [[1688.5, 1495.5], [1699.5, 1495.5], [1699.5, 1533.5], [1687.5, 1533.5]]}, -{"id": "txd47f", "submitted_by": "SteakSauce54", "name": "Attacks From the Turkish", "description": "Throughout the final day Doomguy, Isabelle, Thomas the Tank Engine, among other tiny art pieces suffered griefs from Turkish and Pepe bots. With the help of other communities they were able to fight them off. However Thomas was forced to change to a small number 1 . Only a few pixels remain of the original drawing. ", "website": "", "subreddit": "r/animalcrossing", "center": [621.5, 1361.5], "path": [[590.5, 1339.5], [590.5, 1339.5], [654.5, 1339.5], [655.5, 1375.5], [646.5, 1375.5], [646.5, 1383.5], [588.5, 1382.5], [588.5, 1375.5]]}, -{"id": "txd23u", "submitted_by": "AnoTheHero", "name": "OTV & Friends", "description": "OfflineTV is an online social entertainment group of content creators based in LA. ", "website": "[https://twitter.com/offlineTV](https://twitter.com/offlineTV)", "subreddit": "", "center": [1860.5, 1635.5], "path": [[1852.5, 1618.5], [1851.5, 1659.5], [1862.5, 1658.5], [1861.5, 1650.5], [1861.5, 1643.5], [1864.5, 1639.5], [1868.5, 1637.5], [1873.5, 1637.5], [1873.5, 1618.5], [1852.5, 1618.5]]}, -{"id": "txd22w", "submitted_by": "objekshin", "name": "RAINBOW MANGASWAP", "description": "This subreddit is for anyone wanting to trade/sell/buy manga. Other anime merchandise such as DVD's, figures, posters, etc. is allowed as well.", "website": "[https://www.reddit.com/r/mangaswap/](https://www.reddit.com/r/mangaswap/)", "subreddit": "r/mangaswap", "center": [823.5, 1966.5], "path": [[806.5, 1963.5], [839.5, 1963.5], [839.5, 1969.5], [806.5, 1969.5]]}, -{"id": "txd20w", "submitted_by": "Fulselp", "name": "Pomu Rainpuff", "description": "A fairy Vtuber from Nijisanji that often interacts with Kiara Takanashi (left) from Hololive.", "website": "[https://twitter.com/PomuRainpuff](https://twitter.com/PomuRainpuff)", "subreddit": "/r/nijisanji", "center": [1352.5, 1052.5], "path": [[1345.5, 1044.5], [1359.5, 1044.5], [1359.5, 1060.5], [1345.5, 1060.5]]}, -{"id": "txd1p7", "submitted_by": "Ninja332", "name": "The Lance of Longinus", "description": "The Lance of Longinus is a weapon in the Neon Genesis Evangelion universe. The lance is capible of disabling all angels. Created by the First Ancestral Race, it is mankind's last line of defense against threats of angelic nature", "website": "[https://evangelion.fandom.com/wiki/Spear_of_Longinus](https://evangelion.fandom.com/wiki/Spear_of_Longinus)", "subreddit": "/r/Evangelion", "center": [0.5, 0.5], "path": []}, -{"id": "txcz48", "submitted_by": "Ninja332", "name": "Pen\u00b2", "description": "Pen\u00b2, pronounced Pen-Pen, is one of the last surviving penguins in the Evangelion Franchise following the disaster of the Second Impact", "website": "[https://wiki.evageeks.org/Pen_Pen](https://wiki.evageeks.org/Pen_Pen)", "subreddit": "/r/Evangelion", "center": [0.5, 0.5], "path": []}, -{"id": "txcy8b", "submitted_by": "2000bmc", "name": "Bipy", "description": "A mascot from the Minecraft FPS Ram War.", "website": "[https://linktr.ee/2000bmc](https://linktr.ee/2000bmc)", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "txcy5z", "submitted_by": "Psychaum", "name": "Tamagotchi", "description": "The Tamagotchi is a handheld digital pet that was created in Japan by Akihiro Yokoi of WiZ and Aki Maita of Bandai.", "website": "[https://tamagotchi.com/](https://tamagotchi.com/)", "subreddit": "r/tamagotchi", "center": [568.5, 1512.5], "path": [[569.5, 1508.5], [566.5, 1507.5], [564.5, 1509.5], [563.5, 1514.5], [567.5, 1518.5], [569.5, 1516.5], [571.5, 1517.5], [573.5, 1515.5], [573.5, 1509.5], [571.5, 1507.5], [571.5, 1507.5], [570.5, 1507.5]]}, -{"id": "txcudc", "submitted_by": "AnoTheHero", "name": "SoleKEFS", "description": "Twitch Streamer who plays on GTA RP server NoPixel as a member of the BBMC. ", "website": "[https://www.twitch.tv/solekefs](https://www.twitch.tv/solekefs)", "subreddit": "", "center": [1862.5, 1615.5], "path": [[1852.5, 1612.5], [1852.5, 1618.5], [1872.5, 1618.5], [1872.5, 1612.5], [1852.5, 1612.5]]}, -{"id": "txcucy", "submitted_by": "YaBoiChickyy", "name": "Vtuber HannahHyrule", "description": "Ara ahoy! Loud proud oni captain here to guide you through the thigh seas and take you in my crew as a loyal footstool", "website": "[https://www.twitch.tv/hannahhyrule](https://www.twitch.tv/hannahhyrule)", "subreddit": "", "center": [1864.5, 1508.5], "path": [[1852.5, 1499.5], [1853.5, 1518.5], [1875.5, 1518.5], [1875.5, 1499.5], [1852.5, 1499.5]]}, +{"id": "txd4mc", "submitted_by": "Xephorix512", "name": "Online Sequencer", "description": "The mascot and logo of the music-making website Online Sequencer", "website": "https://onlinesequencer.net", "subreddit": "/r/onlinesequencer", "center": [1693.5, 1514.5], "path": [[1688.5, 1495.5], [1699.5, 1495.5], [1699.5, 1533.5], [1687.5, 1533.5]]}, +{"id": "txd47f", "submitted_by": "SteakSauce54", "name": "Attacks From the Turkish", "description": "Throughout the final day Doomguy, Isabelle, Thomas the Tank Engine, among other tiny art pieces suffered griefs from Turkish and Pepe bots. With the help of other communities they were able to fight them off. However Thomas was forced to change to a small number 1 . Only a few pixels remain of the original drawing. ", "website": "", "subreddit": "/r/animalcrossing", "center": [621.5, 1361.5], "path": [[590.5, 1339.5], [590.5, 1339.5], [654.5, 1339.5], [655.5, 1375.5], [646.5, 1375.5], [646.5, 1383.5], [588.5, 1382.5], [588.5, 1375.5]]}, +{"id": "txd23u", "submitted_by": "AnoTheHero", "name": "OTV & Friends", "description": "OfflineTV is an online social entertainment group of content creators based in LA. ", "website": "https://twitter.com/offlineTV", "subreddit": "", "center": [1860.5, 1635.5], "path": [[1852.5, 1618.5], [1851.5, 1659.5], [1862.5, 1658.5], [1861.5, 1650.5], [1861.5, 1643.5], [1864.5, 1639.5], [1868.5, 1637.5], [1873.5, 1637.5], [1873.5, 1618.5], [1852.5, 1618.5]]}, +{"id": "txd22w", "submitted_by": "objekshin", "name": "RAINBOW MANGASWAP", "description": "This subreddit is for anyone wanting to trade/sell/buy manga. Other anime merchandise such as DVD's, figures, posters, etc. is allowed as well.", "website": "https://www.reddit.com/r/mangaswap/", "subreddit": "/r/mangaswap", "center": [823.5, 1966.5], "path": [[806.5, 1963.5], [839.5, 1963.5], [839.5, 1969.5], [806.5, 1969.5]]}, +{"id": "txd20w", "submitted_by": "Fulselp", "name": "Pomu Rainpuff", "description": "A fairy Vtuber from Nijisanji that often interacts with Kiara Takanashi (left) from Hololive.", "website": "https://twitter.com/PomuRainpuff", "subreddit": "/r/nijisanji", "center": [1352.5, 1052.5], "path": [[1345.5, 1044.5], [1359.5, 1044.5], [1359.5, 1060.5], [1345.5, 1060.5]]}, +{"id": "txcy5z", "submitted_by": "Psychaum", "name": "Tamagotchi", "description": "The Tamagotchi is a handheld digital pet that was created in Japan by Akihiro Yokoi of WiZ and Aki Maita of Bandai.", "website": "https://tamagotchi.com/", "subreddit": "/r/tamagotchi", "center": [568.5, 1512.5], "path": [[569.5, 1508.5], [566.5, 1507.5], [564.5, 1509.5], [563.5, 1514.5], [567.5, 1518.5], [569.5, 1516.5], [571.5, 1517.5], [573.5, 1515.5], [573.5, 1509.5], [571.5, 1507.5], [571.5, 1507.5], [570.5, 1507.5]]}, +{"id": "txcudc", "submitted_by": "AnoTheHero", "name": "SoleKEFS", "description": "Twitch Streamer who plays on GTA RP server NoPixel as a member of the BBMC. ", "website": "https://www.twitch.tv/solekefs", "subreddit": "", "center": [1862.5, 1615.5], "path": [[1852.5, 1612.5], [1852.5, 1618.5], [1872.5, 1618.5], [1872.5, 1612.5], [1852.5, 1612.5]]}, +{"id": "txcucy", "submitted_by": "YaBoiChickyy", "name": "Vtuber HannahHyrule", "description": "Ara ahoy! Loud proud oni captain here to guide you through the thigh seas and take you in my crew as a loyal footstool", "website": "https://www.twitch.tv/hannahhyrule", "subreddit": "", "center": [1864.5, 1508.5], "path": [[1852.5, 1499.5], [1853.5, 1518.5], [1875.5, 1518.5], [1875.5, 1499.5], [1852.5, 1499.5]]}, {"id": "txcs3q", "submitted_by": "AnonymousRandPerson", "name": "Brand of the Exalt", "description": "In Fire Emblem Awakening, this brand signifies a person descended from the First Exalt.", "website": "https://fireemblem.fandom.com/wiki/Exalt", "subreddit": "/r/Fireemblem", "center": [508.5, 1379.5], "path": [[505.5, 1375.5], [502.5, 1378.5], [502.5, 1379.5], [503.5, 1380.5], [504.5, 1380.5], [504.5, 1381.5], [507.5, 1384.5], [507.5, 1387.5], [509.5, 1387.5], [509.5, 1384.5], [512.5, 1381.5], [512.5, 1380.5], [514.5, 1380.5], [514.5, 1378.5], [511.5, 1375.5], [510.5, 1376.5], [509.5, 1376.5], [509.5, 1374.5], [508.5, 1373.5], [507.5, 1374.5], [507.5, 1376.5], [506.5, 1377.5], [506.5, 1376.5]]}, {"id": "txcruq", "submitted_by": "swabbye", "name": "Cello", "description": "A cello made to represent the cellists of r/cello and the entire musical community.", "website": "", "subreddit": "/r/cello", "center": [1841.5, 101.5], "path": [[1838.5, 108.5], [1843.5, 108.5], [1843.5, 93.5], [1840.5, 92.5], [1839.5, 93.5], [1840.5, 94.5], [1839.5, 95.5], [1839.5, 97.5], [1838.5, 106.5]]}, -{"id": "txcpnc", "submitted_by": "Bulacoke", "name": "INRI", "description": "Iesus Nazarenus Rex Iudaeorum - A Christian slogan meaning Jesus of Nazareth, King of the Jews. Members of r/Catholicism and the discord server Servus Dei created the slot to represent all Christians of Reddit.", "website": "", "subreddit": "r/Catholicism r/CatholicMemes r/CatholicHumor", "center": [1313.5, 537.5], "path": [[1304.5, 534.5], [1304.5, 540.5], [1322.5, 540.5], [1322.5, 534.5]]}, {"id": "txcp00", "submitted_by": "Blublubluuuu", "name": "Chachia", "description": "A traditional tunisian hat", "website": "", "subreddit": "/r/Tunisia", "center": [1915.5, 798.5], "path": [[1916.5, 802.5], [1913.5, 802.5], [1910.5, 799.5], [1910.5, 795.5], [1913.5, 793.5], [1917.5, 793.5], [1919.5, 795.5], [1920.5, 798.5], [1919.5, 801.5], [1918.5, 804.5], [1916.5, 802.5]]}, {"id": "txcoti", "submitted_by": "Another_Rando_666", "name": "\u00bfQuieres ser mi novia?", "description": "Proposal text made by Gamstergaming community", "website": "", "subreddit": "", "center": [1792.5, 1231.5], "path": [[1758.5, 1208.5], [1827.5, 1208.5], [1826.5, 1255.5], [1758.5, 1254.5]]}, {"id": "txcoo0", "submitted_by": "mirubere", "name": "Mana Nagase", "description": "A character from IDOLY PRIDE! ", "website": "", "subreddit": "/r/IdolyPride", "center": [1497.5, 1242.5], "path": [[1488.5, 1233.5], [1506.5, 1233.5], [1506.5, 1250.5], [1488.5, 1250.5], [1488.5, 1233.5]]}, -{"id": "txcoaz", "submitted_by": "Tlali22", "name": "#RedInstead", "description": "Connected to the Autism pride flag. A movement promoting wearing RED on April 2nd (World Autism Day). In opposition to the 'light it up blue' campaign of Autism Speaks.", "website": "", "subreddit": "r/autisticpride", "center": [277.5, 1855.5], "path": [[250.5, 1851.5], [304.5, 1851.5], [303.5, 1859.5], [252.5, 1859.5], [253.5, 1859.5], [251.5, 1860.5]]}, {"id": "txclke", "submitted_by": "MartinTrainFreak", "name": "Thomas the Tank Engine", "description": "A Thomas the Tank engine art was situated here, the Pepe was added over the top, so the image was changed to Just Thomas Number One", "website": "", "subreddit": "/r/thomasthetankengine", "center": [635.5, 1376.5], "path": [[622.5, 1367.5], [632.5, 1367.5], [635.5, 1371.5], [642.5, 1371.5], [644.5, 1367.5], [649.5, 1368.5], [650.5, 1383.5], [622.5, 1383.5]]}, {"id": "txchld", "submitted_by": "PrincesStarfire1234", "name": "Elizabeth Afton", "description": "What looks to be the remains of a tiny pixel art of Elizabeth Afton, the daughter of William Afton (aka Purple Guy) that would go on to possess Circus Baby in the indie horror series Five Nights at Freddy's", "website": "", "subreddit": "/r/fivenightsatfreddys", "center": [981.5, 436.5], "path": [[978.5, 431.5], [978.5, 441.5], [984.5, 441.5], [984.5, 431.5], [984.5, 431.5], [978.5, 431.5]]}, {"id": "txcgbs", "submitted_by": "Wonderful-Durian-692", "name": "Donkmobile", "description": "A small group of high school friends that worked really hard on this.", "website": "", "subreddit": "", "center": [1023.5, 1784.5], "path": [[1019.5, 1777.5], [1019.5, 1790.5], [1026.5, 1790.5], [1026.5, 1777.5]]}, -{"id": "txcebn", "submitted_by": "SaltMakerShaker", "name": "Rice University", "description": "Stylized R and bowl of rice drawn by members of the American higher educational institute Rice University.", "website": "", "subreddit": "r/riceuniversity", "center": [362.5, 1595.5], "path": [[353.5, 1591.5], [370.5, 1591.5], [370.5, 1599.5], [353.5, 1599.5]]}, -{"id": "txcds7", "submitted_by": "AnonymousRandPerson", "name": "Ultimate Ironman Mode", "description": "In addition to Standard Ironman restrictions, this mode prevents the player from using their bank to store items. With a few exceptions, this limits the player's item capacity to their 28 inventory slots.", "website": "[https://oldschool.runescape.wiki/w/Ironman_Mode](https://oldschool.runescape.wiki/w/Ironman_Mode)", "subreddit": "/r/ironscape", "center": [108.5, 43.5], "path": [[105.5, 35.5], [104.5, 36.5], [103.5, 36.5], [101.5, 38.5], [101.5, 39.5], [100.5, 40.5], [100.5, 46.5], [101.5, 47.5], [101.5, 48.5], [103.5, 50.5], [104.5, 50.5], [105.5, 51.5], [111.5, 51.5], [112.5, 50.5], [113.5, 50.5], [115.5, 48.5], [115.5, 47.5], [116.5, 46.5], [116.5, 40.5], [115.5, 39.5], [115.5, 38.5], [113.5, 36.5], [112.5, 36.5], [111.5, 35.5]]}, -{"id": "txcdj7", "submitted_by": "AnonymousRandPerson", "name": "Hardcore Ironman Mode", "description": "In addition to Standard Ironman restrictions, this mode adds permadeath. If the player dies, they lose Hardcore Ironman status and revert to Standard Ironman.", "website": "[https://oldschool.runescape.wiki/w/Ironman_Mode](https://oldschool.runescape.wiki/w/Ironman_Mode)", "subreddit": "/r/ironscape", "center": [90.5, 43.5], "path": [[87.5, 35.5], [86.5, 36.5], [85.5, 36.5], [83.5, 38.5], [83.5, 39.5], [82.5, 40.5], [82.5, 46.5], [83.5, 47.5], [83.5, 48.5], [85.5, 50.5], [86.5, 50.5], [87.5, 51.5], [93.5, 51.5], [94.5, 50.5], [95.5, 50.5], [97.5, 48.5], [97.5, 47.5], [98.5, 46.5], [98.5, 40.5], [97.5, 39.5], [97.5, 38.5], [95.5, 36.5], [94.5, 36.5], [93.5, 35.5]]}, -{"id": "txcd93", "submitted_by": "AnonymousRandPerson", "name": "Standard Ironman Mode", "description": "The most basic Ironman mode, which restricts most forms of player interaction like trading and PvP.", "website": "[https://oldschool.runescape.wiki/w/Ironman_Mode](https://oldschool.runescape.wiki/w/Ironman_Mode)", "subreddit": "/r/ironscape", "center": [72.5, 43.5], "path": [[69.5, 35.5], [68.5, 36.5], [67.5, 36.5], [66.5, 37.5], [65.5, 38.5], [65.5, 39.5], [64.5, 40.5], [64.5, 46.5], [65.5, 47.5], [65.5, 48.5], [67.5, 50.5], [68.5, 50.5], [69.5, 51.5], [75.5, 51.5], [76.5, 50.5], [77.5, 50.5], [79.5, 48.5], [79.5, 47.5], [80.5, 46.5], [80.5, 40.5], [79.5, 39.5], [79.5, 38.5], [77.5, 36.5], [76.5, 36.5], [75.5, 35.5]]}, +{"id": "txcebn", "submitted_by": "SaltMakerShaker", "name": "Rice University", "description": "Stylized R and bowl of rice drawn by members of the American higher educational institute Rice University.", "website": "", "subreddit": "/r/riceuniversity", "center": [362.5, 1595.5], "path": [[353.5, 1591.5], [370.5, 1591.5], [370.5, 1599.5], [353.5, 1599.5]]}, +{"id": "txcds7", "submitted_by": "AnonymousRandPerson", "name": "Ultimate Ironman Mode", "description": "In addition to Standard Ironman restrictions, this mode prevents the player from using their bank to store items. With a few exceptions, this limits the player's item capacity to their 28 inventory slots.", "website": "https://oldschool.runescape.wiki/w/Ironman_Mode", "subreddit": "/r/ironscape", "center": [108.5, 43.5], "path": [[105.5, 35.5], [104.5, 36.5], [103.5, 36.5], [101.5, 38.5], [101.5, 39.5], [100.5, 40.5], [100.5, 46.5], [101.5, 47.5], [101.5, 48.5], [103.5, 50.5], [104.5, 50.5], [105.5, 51.5], [111.5, 51.5], [112.5, 50.5], [113.5, 50.5], [115.5, 48.5], [115.5, 47.5], [116.5, 46.5], [116.5, 40.5], [115.5, 39.5], [115.5, 38.5], [113.5, 36.5], [112.5, 36.5], [111.5, 35.5]]}, +{"id": "txcdj7", "submitted_by": "AnonymousRandPerson", "name": "Hardcore Ironman Mode", "description": "In addition to Standard Ironman restrictions, this mode adds permadeath. If the player dies, they lose Hardcore Ironman status and revert to Standard Ironman.", "website": "https://oldschool.runescape.wiki/w/Ironman_Mode", "subreddit": "/r/ironscape", "center": [90.5, 43.5], "path": [[87.5, 35.5], [86.5, 36.5], [85.5, 36.5], [83.5, 38.5], [83.5, 39.5], [82.5, 40.5], [82.5, 46.5], [83.5, 47.5], [83.5, 48.5], [85.5, 50.5], [86.5, 50.5], [87.5, 51.5], [93.5, 51.5], [94.5, 50.5], [95.5, 50.5], [97.5, 48.5], [97.5, 47.5], [98.5, 46.5], [98.5, 40.5], [97.5, 39.5], [97.5, 38.5], [95.5, 36.5], [94.5, 36.5], [93.5, 35.5]]}, +{"id": "txcd93", "submitted_by": "AnonymousRandPerson", "name": "Standard Ironman Mode", "description": "The most basic Ironman mode, which restricts most forms of player interaction like trading and PvP.", "website": "https://oldschool.runescape.wiki/w/Ironman_Mode", "subreddit": "/r/ironscape", "center": [72.5, 43.5], "path": [[69.5, 35.5], [68.5, 36.5], [67.5, 36.5], [66.5, 37.5], [65.5, 38.5], [65.5, 39.5], [64.5, 40.5], [64.5, 46.5], [65.5, 47.5], [65.5, 48.5], [67.5, 50.5], [68.5, 50.5], [69.5, 51.5], [75.5, 51.5], [76.5, 50.5], [77.5, 50.5], [79.5, 48.5], [79.5, 47.5], [80.5, 46.5], [80.5, 40.5], [79.5, 39.5], [79.5, 38.5], [77.5, 36.5], [76.5, 36.5], [75.5, 35.5]]}, {"id": "txcbx9", "submitted_by": "Shayan_04", "name": "CUGO", "description": "A friend group formed in august of 2020, built on a foundation of degeneracy, video games, instigation and the concept of loud=funny. The term CUGO stands for Can U Get On. Shoutouts to Aryan, Brian, Nate, Illia, Shayan, Jon, Gary, David, Ishan, Ryan, Lawrence, Shrigga, Keli, Steph and Min.", "website": "", "subreddit": "", "center": [1379.5, 482.5], "path": [[1374.5, 473.5], [1384.5, 473.5], [1384.5, 491.5], [1374.5, 491.5]]}, {"id": "txcbpx", "submitted_by": "Entgard", "name": "Webserial collaboration", "description": "A webserial collaboration.\nRead Webserials!\n\nIncluding\n\nBlood Moon: Pale\n\nRose + Shears: Pact\n\nSyringe: Twig\n\nAcid Jar: The Wandering Inn/Twig\n\nDuck: The Wandering Inn\n\nRainbow Tentacle: Katalepsis\n\nJagganoth (demon): Kill Six Billion Demons (webcomic)\n\nSve Noc's crow forms: A Practical Guide to Evil\n\nBlue/Yellow smile: Toki Pona (conlang)\n\nRoxy (anime witch): Mushoku Tensei (OG webnovel and now anime)\n\nUexkull (green rabbit): Flip Flappers\n\nCandle: Worth the Candle\n\nAleph (red n-looking thing): Unsong\n\nPurple/Yellow emblem: Crest of Avei from The Gods Are Bastards\n\nWhite cat ears (behind tentacle): Fates Parallel\n\nHalf-rainbow heart: our allies the Classic Rock group\n\nHourglass with spider: Mother of Learning\n\nRed hummingbird: Auri from Beneath the Dragoneye Moons\n\nAntimony symbol (Black ant like symbol below the doggo): Gunnerkrigg Court", "website": "", "subreddit": "", "center": [1758.5, 1294.5], "path": [[1723.5, 1257.5], [1790.5, 1256.5], [1796.5, 1330.5], [1723.5, 1329.5]]}, -{"id": "txca84", "submitted_by": "BEond_", "name": "777EMPTY", "description": "Signiture of artist, 777empty, of [777empty.com](https://777empty.com), was allied with Avengers, X-men, cyberpunk, and Beat-Saber.", "website": "[https://www.777empty.com](https://www.777empty.com)", "subreddit": "", "center": [1003.5, 1699.5], "path": [[1006.5, 1684.5], [995.5, 1684.5], [995.5, 1692.5], [1001.5, 1692.5], [1001.5, 1696.5], [1000.5, 1696.5], [1000.5, 1703.5], [1001.5, 1703.5], [1001.5, 1718.5], [1007.5, 1718.5], [1007.5, 1684.5]]}, -{"id": "txc9an", "submitted_by": "Wildelonelysea", "name": "DeqiuV", "description": "Spanish streamer, Pou proplayer and expert in throwing monsters on his keyboard, come see him get tilt when he plays Valorant (he is actually really good)", "website": "[https://www.twitch.tv/deqiuv](https://www.twitch.tv/deqiuv)", "subreddit": "/r/deqiuv", "center": [1107.5, 1307.5], "path": [[1083.5, 1303.5], [1131.5, 1303.5], [1131.5, 1312.5], [1112.5, 1312.5], [1112.5, 1311.5], [1103.5, 1311.5], [1103.5, 1312.5], [1083.5, 1312.5], [1083.5, 1303.5]]}, -{"id": "txc909", "submitted_by": "GetYourFixGraham", "name": "TwoKinds Subreddit Tag", "description": "The subreddit tag for /r/TwoKinds which is a community that enjoys TwoKinds, a webcomic by Tom Fischbach.", "website": "[https://twokinds.keenspot.com/](https://twokinds.keenspot.com/)", "subreddit": "/r/Twokinds", "center": [597.5, 1108.5], "path": [[570.5, 1105.5], [570.5, 1111.5], [624.5, 1111.5], [623.5, 1105.5]]}, -{"id": "txc8ia", "submitted_by": "JusticeRises", "name": "FOSO", "description": "FOSO is a men's floor in Gerig Hall at Taylor University in Upland, Indiana. FOSO is short for Forth South, since Gerig Hall was previously called South Hall. Peace, Love, FOSO.", "website": "[https://www.instagram.com/fosoterritory/](https://www.instagram.com/fosoterritory/)", "subreddit": "r/fosoterritory", "center": [10.5, 698.5], "path": [[1.5, 695.5], [19.5, 695.5], [19.5, 701.5], [1.5, 701.5]]}, -{"id": "txc84s", "submitted_by": "Lestibornes", "name": "The Ninth House (The Locked Tomb)", "description": "A small roman numeral 9, representing the 9th house that is central to the plot of The Locked Tomb series", "website": "", "subreddit": "r/TheNinthHouse", "center": [1621.5, 1405.5], "path": [[1618.5, 1408.5], [1618.5, 1402.5], [1625.5, 1402.5], [1625.5, 1407.5]]}, +{"id": "txca84", "submitted_by": "BEond_", "name": "777EMPTY", "description": "Signiture of artist, 777empty, of [777empty.com](https://777empty.com), was allied with Avengers, X-men, cyberpunk, and Beat-Saber.", "website": "https://www.777empty.com", "subreddit": "", "center": [1003.5, 1699.5], "path": [[1006.5, 1684.5], [995.5, 1684.5], [995.5, 1692.5], [1001.5, 1692.5], [1001.5, 1696.5], [1000.5, 1696.5], [1000.5, 1703.5], [1001.5, 1703.5], [1001.5, 1718.5], [1007.5, 1718.5], [1007.5, 1684.5]]}, +{"id": "txc9an", "submitted_by": "Wildelonelysea", "name": "DeqiuV", "description": "Spanish streamer, Pou proplayer and expert in throwing monsters on his keyboard, come see him get tilt when he plays Valorant (he is actually really good)", "website": "https://www.twitch.tv/deqiuv", "subreddit": "/r/deqiuv", "center": [1107.5, 1307.5], "path": [[1083.5, 1303.5], [1131.5, 1303.5], [1131.5, 1312.5], [1112.5, 1312.5], [1112.5, 1311.5], [1103.5, 1311.5], [1103.5, 1312.5], [1083.5, 1312.5], [1083.5, 1303.5]]}, +{"id": "txc909", "submitted_by": "GetYourFixGraham", "name": "TwoKinds Subreddit Tag", "description": "The subreddit tag for /r/TwoKinds which is a community that enjoys TwoKinds, a webcomic by Tom Fischbach.", "website": "https://twokinds.keenspot.com/", "subreddit": "/r/Twokinds", "center": [597.5, 1108.5], "path": [[570.5, 1105.5], [570.5, 1111.5], [624.5, 1111.5], [623.5, 1105.5]]}, +{"id": "txc8ia", "submitted_by": "JusticeRises", "name": "FOSO", "description": "FOSO is a men's floor in Gerig Hall at Taylor University in Upland, Indiana. FOSO is short for Forth South, since Gerig Hall was previously called South Hall. Peace, Love, FOSO.", "website": "https://www.instagram.com/fosoterritory/", "subreddit": "/r/fosoterritory", "center": [10.5, 698.5], "path": [[1.5, 695.5], [19.5, 695.5], [19.5, 701.5], [1.5, 701.5]]}, +{"id": "txc84s", "submitted_by": "Lestibornes", "name": "The Ninth House (The Locked Tomb)", "description": "A small roman numeral 9, representing the 9th house that is central to the plot of The Locked Tomb series", "website": "", "subreddit": "/r/TheNinthHouse", "center": [1621.5, 1405.5], "path": [[1618.5, 1408.5], [1618.5, 1402.5], [1625.5, 1402.5], [1625.5, 1407.5]]}, {"id": "txc6nu", "submitted_by": "MahomesIsMyDad", "name": "Sporting KC Banner", "description": "The colors of the American soccer club Sporting Kansas City.", "website": "", "subreddit": "/r/SportingKC", "center": [1965.5, 444.5], "path": [[1956.5, 439.5], [1956.5, 440.5], [1955.5, 440.5], [1955.5, 445.5], [1954.5, 445.5], [1954.5, 447.5], [1953.5, 447.5], [1952.5, 449.5], [1952.5, 450.5], [1951.5, 450.5], [1951.5, 456.5], [1952.5, 456.5], [1952.5, 467.5], [1953.5, 457.5], [1954.5, 456.5], [1956.5, 451.5], [1957.5, 448.5], [1959.5, 446.5], [1962.5, 443.5], [1968.5, 441.5], [1981.5, 441.5], [1984.5, 441.5], [1985.5, 442.5], [1990.5, 445.5], [1990.5, 439.5], [1956.5, 439.5]]}, -{"id": "txc6jx", "submitted_by": "Norvect", "name": "Jagganoth", "description": "A character from the web comic Kill Six Billion Demons by Abbadon ", "website": "[https://killsixbilliondemons.com](https://killsixbilliondemons.com)", "subreddit": "", "center": [1746.5, 1306.5], "path": [[1746.5, 1287.5], [1740.5, 1276.5], [1739.5, 1282.5], [1740.5, 1289.5], [1733.5, 1287.5], [1729.5, 1292.5], [1729.5, 1293.5], [1733.5, 1293.5], [1735.5, 1295.5], [1734.5, 1300.5], [1731.5, 1296.5], [1730.5, 1297.5], [1731.5, 1300.5], [1734.5, 1304.5], [1728.5, 1306.5], [1726.5, 1310.5], [1727.5, 1316.5], [1735.5, 1327.5], [1747.5, 1328.5], [1754.5, 1328.5], [1760.5, 1326.5], [1763.5, 1321.5], [1765.5, 1313.5], [1761.5, 1307.5], [1763.5, 1304.5], [1761.5, 1302.5], [1762.5, 1297.5], [1761.5, 1296.5], [1760.5, 1298.5], [1759.5, 1301.5], [1757.5, 1299.5], [1758.5, 1294.5], [1763.5, 1292.5], [1763.5, 1286.5], [1757.5, 1287.5], [1753.5, 1290.5], [1752.5, 1289.5], [1752.5, 1286.5], [1752.5, 1283.5], [1753.5, 1282.5], [1753.5, 1276.5], [1752.5, 1276.5], [1751.5, 1277.5], [1749.5, 1279.5], [1748.5, 1280.5], [1748.5, 1282.5]]}, +{"id": "txc6jx", "submitted_by": "Norvect", "name": "Jagganoth", "description": "A character from the web comic Kill Six Billion Demons by Abbadon ", "website": "https://killsixbilliondemons.com", "subreddit": "", "center": [1746.5, 1306.5], "path": [[1746.5, 1287.5], [1740.5, 1276.5], [1739.5, 1282.5], [1740.5, 1289.5], [1733.5, 1287.5], [1729.5, 1292.5], [1729.5, 1293.5], [1733.5, 1293.5], [1735.5, 1295.5], [1734.5, 1300.5], [1731.5, 1296.5], [1730.5, 1297.5], [1731.5, 1300.5], [1734.5, 1304.5], [1728.5, 1306.5], [1726.5, 1310.5], [1727.5, 1316.5], [1735.5, 1327.5], [1747.5, 1328.5], [1754.5, 1328.5], [1760.5, 1326.5], [1763.5, 1321.5], [1765.5, 1313.5], [1761.5, 1307.5], [1763.5, 1304.5], [1761.5, 1302.5], [1762.5, 1297.5], [1761.5, 1296.5], [1760.5, 1298.5], [1759.5, 1301.5], [1757.5, 1299.5], [1758.5, 1294.5], [1763.5, 1292.5], [1763.5, 1286.5], [1757.5, 1287.5], [1753.5, 1290.5], [1752.5, 1289.5], [1752.5, 1286.5], [1752.5, 1283.5], [1753.5, 1282.5], [1753.5, 1276.5], [1752.5, 1276.5], [1751.5, 1277.5], [1749.5, 1279.5], [1748.5, 1280.5], [1748.5, 1282.5]]}, {"id": "txc6gk", "submitted_by": "TOBIMIZER", "name": "Whomp", "description": "A giant stone enemy and king of Whomp's Fortress, originating from Super Mario 64.", "website": "", "subreddit": "", "center": [1793.5, 262.5], "path": [[1791.5, 265.5], [1795.5, 265.5], [1795.5, 264.5], [1796.5, 264.5], [1796.5, 262.5], [1795.5, 262.5], [1795.5, 259.5], [1793.5, 259.5], [1793.5, 260.5], [1792.5, 260.5], [1792.5, 261.5], [1791.5, 261.5], [1791.5, 265.5]]}, -{"id": "txc56z", "submitted_by": "Lazytownpenguin", "name": "WSL (Windows Subsystem for Linux)", "description": "WSL is a compatibility layer for running Linux binary executables. \nTo put it more simply, it's like having a little linux console inside ur Windows OS.", "website": "", "subreddit": "r/bashonubuntuonwindows", "center": [581.5, 1984.5], "path": [[568.5, 1974.5], [593.5, 1974.5], [593.5, 1995.5], [569.5, 1995.5]]}, +{"id": "txc56z", "submitted_by": "Lazytownpenguin", "name": "WSL (Windows Subsystem for Linux)", "description": "WSL is a compatibility layer for running Linux binary executables. \nTo put it more simply, it's like having a little linux console inside ur Windows OS.", "website": "", "subreddit": "/r/bashonubuntuonwindows", "center": [581.5, 1984.5], "path": [[568.5, 1974.5], [593.5, 1974.5], [593.5, 1995.5], [569.5, 1995.5]]}, {"id": "txc53f", "submitted_by": "the_ushanka", "name": "Flag of IMRO/VMRO", "description": "Flag of the Internal Macedonian Revolutionary Organization. Placed here due to association with the 1903 Ilinden Uprising.", "website": "", "subreddit": "/r/MKD", "center": [1185.5, 472.5], "path": [[1176.5, 466.5], [1176.5, 466.5], [1176.5, 478.5], [1193.5, 478.5], [1193.5, 466.5], [1176.5, 466.5]]}, {"id": "txc53a", "submitted_by": "GetYourFixGraham", "name": "Shogi - Japanese Chess", "description": "The subreddit tag for shogi, a community that celebrates Japanese chess.", "website": "", "subreddit": "/r/shogi", "center": [1534.5, 1276.5], "path": [[1522.5, 1273.5], [1522.5, 1279.5], [1546.5, 1279.5], [1546.5, 1273.5]]}, -{"id": "txc4ug", "submitted_by": "TOBIMIZER", "name": "Juno", "description": "The dog belonging to Youtuber and streamer Clint Stevens", "website": "[https://www.youtube.com/c/ClintStevens](https://www.youtube.com/c/ClintStevens)", "subreddit": "r/ClintStevens", "center": [1793.5, 268.5], "path": [[1788.5, 267.5], [1788.5, 266.5], [1790.5, 266.5], [1790.5, 265.5], [1797.5, 265.5], [1798.5, 267.5], [1796.5, 269.5], [1795.5, 269.5], [1795.5, 273.5], [1792.5, 273.5], [1792.5, 271.5], [1792.5, 270.5], [1792.5, 269.5], [1791.5, 269.5], [1791.5, 268.5], [1791.5, 267.5], [1789.5, 267.5], [1789.5, 268.5]]}, -{"id": "txc387", "submitted_by": "One-Tin-Soldier", "name": "Hitchhiker's Guide to the Galaxy: 42", "description": "The number 42 is answer to Life, the Universe, and Everything. But if that is the answer, what is the question?", "website": "", "subreddit": "/r/HHGTTG/", "center": [0.5, 0.5], "path": []}, +{"id": "txc4ug", "submitted_by": "TOBIMIZER", "name": "Juno", "description": "The dog belonging to Youtuber and streamer Clint Stevens", "website": "https://www.youtube.com/c/ClintStevens", "subreddit": "/r/ClintStevens", "center": [1793.5, 268.5], "path": [[1788.5, 267.5], [1788.5, 266.5], [1790.5, 266.5], [1790.5, 265.5], [1797.5, 265.5], [1798.5, 267.5], [1796.5, 269.5], [1795.5, 269.5], [1795.5, 273.5], [1792.5, 273.5], [1792.5, 271.5], [1792.5, 270.5], [1792.5, 269.5], [1791.5, 269.5], [1791.5, 268.5], [1791.5, 267.5], [1789.5, 267.5], [1789.5, 268.5]]}, {"id": "txc2qa", "submitted_by": "OmegaFreeze", "name": "Ratge", "description": "Rat Pepe the frog reconstruction after being overrun by xQc, ordered to be built by Twitch streamer and Youtuber FranqitoM", "website": "", "subreddit": "", "center": [1677.5, 1000.5], "path": [[1646.5, 956.5], [1646.5, 957.5], [1646.5, 1043.5], [1709.5, 1043.5], [1707.5, 957.5]]}, -{"id": "txc2gu", "submitted_by": "Fake-Refrigerator", "name": "808's and heartbreak Ye", "description": "Rendition of Ye West (formerly Kanye West) in the style of the 2008 album, 808s & Heartbreak.\n", "website": "", "subreddit": "r/WestSubEver", "center": [1773.5, 1010.5], "path": [[1777.5, 1019.5], [1777.5, 1000.5], [1769.5, 1000.5], [1769.5, 1019.5], [1769.5, 1019.5], [1769.5, 1019.5], [1769.5, 1019.5], [1769.5, 1019.5]]}, +{"id": "txc2gu", "submitted_by": "Fake-Refrigerator", "name": "808's and heartbreak Ye", "description": "Rendition of Ye West (formerly Kanye West) in the style of the 2008 album, 808s & Heartbreak.\n", "website": "", "subreddit": "/r/WestSubEver", "center": [1773.5, 1010.5], "path": [[1777.5, 1019.5], [1777.5, 1000.5], [1769.5, 1000.5], [1769.5, 1019.5], [1769.5, 1019.5], [1769.5, 1019.5], [1769.5, 1019.5], [1769.5, 1019.5]]}, {"id": "txc0ws", "submitted_by": "GetYourFixGraham", "name": "American Idiot with the Rainbow Flag", "description": "This was a collaboration between /r/GreenDay and /r/PlacePride - The American Idiot album cover art made with the rainbow flag.", "website": "", "subreddit": "/r/GreenDay", "center": [479.5, 499.5], "path": [[486.5, 512.5], [491.5, 507.5], [487.5, 488.5], [479.5, 484.5], [476.5, 481.5], [471.5, 487.5], [468.5, 493.5], [469.5, 512.5], [478.5, 512.5]]}, {"id": "txc06y", "submitted_by": "NotStikfig", "name": "SOMETHING IN THE DOORWAY", "description": "SOMETHING is a major antagonist in the 2020 video game OMORI. It is the representation of the SUNNY's guilt and trauma after having witnessed his sister's early death.", "website": "", "subreddit": "/r/OMORI", "center": [992.5, 825.5], "path": [[986.5, 802.5], [980.5, 829.5], [981.5, 842.5], [986.5, 837.5], [993.5, 857.5], [999.5, 836.5], [1003.5, 844.5], [1004.5, 828.5], [1000.5, 803.5]]}, -{"id": "txbs7m", "submitted_by": "Entgard", "name": "Bloody Moon: Pale", "description": "Pale is a fantasy webserial by Wildbow (J. C. Mcrae). It takes place in the same universe as Pact, one of his earlier webserials.", "website": "[https://palewebserial.wordpress.com/](https://palewebserial.wordpress.com/)", "subreddit": "/r/Parahumans", "center": [1746.5, 1281.5], "path": [[1739.5, 1274.5], [1735.5, 1280.5], [1735.5, 1285.5], [1740.5, 1291.5], [1741.5, 1289.5], [1740.5, 1283.5], [1740.5, 1278.5], [1743.5, 1280.5], [1744.5, 1282.5], [1746.5, 1288.5], [1749.5, 1279.5], [1751.5, 1277.5], [1753.5, 1282.5], [1751.5, 1283.5], [1752.5, 1289.5], [1753.5, 1290.5], [1757.5, 1285.5], [1757.5, 1279.5], [1753.5, 1274.5], [1750.5, 1276.5], [1741.5, 1276.5]]}, -{"id": "txbrp8", "submitted_by": "YGTaway", "name": "University of Illinois Urbana-Champaign", "description": "The University of Illinois Urbana-Champaign (U of I, Illinois, or colloquially the University of Illinois or UIUC) is a public land-grant research university in Illinois, USA, in the twin cities of Champaign and Urbana. The large letter I represents their athletic teams, known as the Fighting Illini. Also seen in this artwork is a silhouette of the US state of Illinois.", "website": "[https://illinois.edu](https://illinois.edu)", "subreddit": "/r/uiuc", "center": [188.5, 619.5], "path": [[174.5, 610.5], [202.5, 610.5], [201.5, 628.5], [174.5, 629.5]]}, -{"id": "txbrc9", "submitted_by": "Ethyrian", "name": "Aeon Bunny", "description": "Aeon Tacticians Free Company\nExodus - Primal - FFXIV\n\nOur Bnuny\n\nWe joined r/place after the second and final canvas expansion. We claimed a small plot of land in the east and tried to hold it amidst constant turmoil. We were forced to relocate twice, once after the XQC Kobe Void where we rebuilt under Kobe's right wrist and again after a local bot attack forced us to flee. We allied with r/StardewValley who helped us claim this territory where we held it until the end.", "website": "[https://na.finalfantasyxiv.com/lodestone/freecompany/9230831123737630702/](https://na.finalfantasyxiv.com/lodestone/freecompany/9230831123737630702/)", "subreddit": "", "center": [1750.5, 1086.5], "path": [[1745.5, 1082.5], [1754.5, 1082.5], [1754.5, 1089.5], [1745.5, 1089.5]]}, -{"id": "txbr5x", "submitted_by": "Majestic_Form1997", "name": "Attempted LULW", "description": "An attempted LULW Twitch emote created by Mizkif's community. The LULW emote ultimately failed to be completed. ", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "txbqpp", "submitted_by": "iiiConnor", "name": "Iwo Jima Memorial", "description": "A memorial in Arlington, Virginia. Depicts the six Marines who raised the second and largest of two U.S flags that were raised atop Mount Suribachi at the south end of Iwo Jima. Constructed in 1954. Also known as the Marine Corps War Memorial.", "website": "", "subreddit": "/r/americanflaginplace", "center": [1947.5, 1854.5], "path": [[1939.5, 1867.5], [1939.5, 1865.5], [1940.5, 1865.5], [1940.5, 1860.5], [1941.5, 1859.5], [1942.5, 1858.5], [1942.5, 1855.5], [1941.5, 1855.5], [1941.5, 1854.5], [1942.5, 1853.5], [1944.5, 1853.5], [1944.5, 1852.5], [1945.5, 1852.5], [1945.5, 1851.5], [1937.5, 1843.5], [1937.5, 1842.5], [1935.5, 1842.5], [1935.5, 1841.5], [1934.5, 1841.5], [1931.5, 1838.5], [1935.5, 1838.5], [1936.5, 1839.5], [1943.5, 1839.5], [1943.5, 1840.5], [1946.5, 1840.5], [1946.5, 1841.5], [1948.5, 1841.5], [1948.5, 1842.5], [1949.5, 1842.5], [1951.5, 1844.5], [1951.5, 1845.5], [1951.5, 1846.5], [1952.5, 1846.5], [1952.5, 1847.5], [1953.5, 1848.5], [1950.5, 1850.5], [1948.5, 1852.5], [1947.5, 1853.5], [1948.5, 1854.5], [1949.5, 1855.5], [1950.5, 1855.5], [1950.5, 1856.5], [1949.5, 1857.5], [1949.5, 1858.5], [1951.5, 1858.5], [1951.5, 1857.5], [1952.5, 1858.5], [1953.5, 1857.5], [1953.5, 1856.5], [1954.5, 1857.5], [1956.5, 1856.5], [1958.5, 1856.5], [1958.5, 1854.5], [1959.5, 1853.5], [1960.5, 1854.5], [1961.5, 1854.5], [1961.5, 1855.5], [1960.5, 1856.5], [1960.5, 1859.5], [1961.5, 1859.5], [1960.5, 1860.5], [1961.5, 1861.5], [1961.5, 1862.5], [1962.5, 1863.5], [1960.5, 1863.5], [1960.5, 1862.5], [1958.5, 1862.5], [1957.5, 1863.5], [1960.5, 1866.5], [1957.5, 1863.5], [1955.5, 1863.5], [1955.5, 1865.5], [1955.5, 1867.5], [1939.5, 1867.5]]}, -{"id": "txbnxd", "submitted_by": "Ender_arrows", "name": "Spamton Neo", "description": "The secret boss of Deltarune Chapter 2. Spamton used to be a bigshot salesman who one day hit rock bottom. HE can only become Neo with the help of the player.\n[The Smooth Taste Of] NEO", "website": "", "subreddit": "r/deltarune", "center": [1531.5, 1542.5], "path": [[1535.5, 1569.5], [1541.5, 1568.5], [1540.5, 1551.5], [1560.5, 1551.5], [1549.5, 1529.5], [1549.5, 1523.5], [1541.5, 1518.5], [1541.5, 1519.5], [1543.5, 1525.5], [1543.5, 1528.5], [1538.5, 1536.5], [1537.5, 1531.5], [1534.5, 1533.5], [1534.5, 1528.5], [1535.5, 1522.5], [1530.5, 1520.5], [1529.5, 1521.5], [1525.5, 1518.5], [1520.5, 1523.5], [1517.5, 1528.5], [1512.5, 1528.5], [1508.5, 1524.5], [1506.5, 1520.5], [1504.5, 1522.5], [1503.5, 1525.5], [1504.5, 1529.5], [1507.5, 1537.5], [1515.5, 1545.5], [1516.5, 1551.5], [1524.5, 1561.5], [1518.5, 1567.5], [1532.5, 1567.5]]}, -{"id": "txbnfk", "submitted_by": "suckmytriscuit", "name": "Gabumon", "description": "A reptile type Digimon that wears a fur pelt", "website": "", "subreddit": "", "center": [1330.5, 117.5], "path": [[1322.5, 103.5], [1325.5, 105.5], [1327.5, 103.5], [1328.5, 104.5], [1329.5, 105.5], [1330.5, 105.5], [1334.5, 104.5], [1337.5, 103.5], [1338.5, 105.5], [1337.5, 106.5], [1336.5, 107.5], [1334.5, 108.5], [1335.5, 109.5], [1336.5, 111.5], [1337.5, 113.5], [1338.5, 115.5], [1339.5, 117.5], [1341.5, 117.5], [1343.5, 116.5], [1343.5, 119.5], [1343.5, 121.5], [1342.5, 122.5], [1341.5, 123.5], [1341.5, 125.5], [1342.5, 126.5], [1333.5, 126.5], [1333.5, 128.5], [1333.5, 130.5], [1328.5, 130.5], [1320.5, 129.5], [1319.5, 123.5], [1321.5, 119.5], [1320.5, 117.5], [1319.5, 115.5], [1318.5, 114.5], [1319.5, 113.5], [1320.5, 111.5], [1321.5, 110.5], [1322.5, 109.5], [1322.5, 106.5], [1322.5, 104.5]]}, +{"id": "txbs7m", "submitted_by": "Entgard", "name": "Bloody Moon: Pale", "description": "Pale is a fantasy webserial by Wildbow (J. C. Mcrae). It takes place in the same universe as Pact, one of his earlier webserials.", "website": "https://palewebserial.wordpress.com/", "subreddit": "/r/Parahumans", "center": [1746.5, 1281.5], "path": [[1739.5, 1274.5], [1735.5, 1280.5], [1735.5, 1285.5], [1740.5, 1291.5], [1741.5, 1289.5], [1740.5, 1283.5], [1740.5, 1278.5], [1743.5, 1280.5], [1744.5, 1282.5], [1746.5, 1288.5], [1749.5, 1279.5], [1751.5, 1277.5], [1753.5, 1282.5], [1751.5, 1283.5], [1752.5, 1289.5], [1753.5, 1290.5], [1757.5, 1285.5], [1757.5, 1279.5], [1753.5, 1274.5], [1750.5, 1276.5], [1741.5, 1276.5]]}, +{"id": "txbrp8", "submitted_by": "YGTaway", "name": "University of Illinois Urbana-Champaign", "description": "The University of Illinois Urbana-Champaign (U of I, Illinois, or colloquially the University of Illinois or UIUC) is a public land-grant research university in Illinois, USA, in the twin cities of Champaign and Urbana. The large letter I represents their athletic teams, known as the Fighting Illini. Also seen in this artwork is a silhouette of the US state of Illinois.", "website": "https://illinois.edu", "subreddit": "/r/uiuc", "center": [188.5, 619.5], "path": [[174.5, 610.5], [202.5, 610.5], [201.5, 628.5], [174.5, 629.5]]}, +{"id": "txbrc9", "submitted_by": "Ethyrian", "name": "Aeon Bunny", "description": "Aeon Tacticians Free Company\nExodus - Primal - FFXIV\n\nOur Bnuny\n\nWe joined r/place after the second and final canvas expansion. We claimed a small plot of land in the east and tried to hold it amidst constant turmoil. We were forced to relocate twice, once after the XQC Kobe Void where we rebuilt under Kobe's right wrist and again after a local bot attack forced us to flee. We allied with r/StardewValley who helped us claim this territory where we held it until the end.", "website": "https://na.finalfantasyxiv.com/lodestone/freecompany/9230831123737630702/", "subreddit": "", "center": [1750.5, 1086.5], "path": [[1745.5, 1082.5], [1754.5, 1082.5], [1754.5, 1089.5], [1745.5, 1089.5]]}, +{"id": "txbnxd", "submitted_by": "Ender_arrows", "name": "Spamton Neo", "description": "The secret boss of Deltarune Chapter 2. Spamton used to be a bigshot salesman who one day hit rock bottom. HE can only become Neo with the help of the player.\n[The Smooth Taste Of] NEO", "website": "", "subreddit": "/r/deltarune", "center": [1531.5, 1542.5], "path": [[1535.5, 1569.5], [1541.5, 1568.5], [1540.5, 1551.5], [1560.5, 1551.5], [1549.5, 1529.5], [1549.5, 1523.5], [1541.5, 1518.5], [1541.5, 1519.5], [1543.5, 1525.5], [1543.5, 1528.5], [1538.5, 1536.5], [1537.5, 1531.5], [1534.5, 1533.5], [1534.5, 1528.5], [1535.5, 1522.5], [1530.5, 1520.5], [1529.5, 1521.5], [1525.5, 1518.5], [1520.5, 1523.5], [1517.5, 1528.5], [1512.5, 1528.5], [1508.5, 1524.5], [1506.5, 1520.5], [1504.5, 1522.5], [1503.5, 1525.5], [1504.5, 1529.5], [1507.5, 1537.5], [1515.5, 1545.5], [1516.5, 1551.5], [1524.5, 1561.5], [1518.5, 1567.5], [1532.5, 1567.5]]}, {"id": "txbmw1", "submitted_by": "satired_", "name": "Jak", "description": "Main character from the Jak and Daxter videogame series.", "website": "", "subreddit": "/r/JakandDaxter", "center": [672.5, 1353.5], "path": [[668.5, 1340.5], [668.5, 1364.5], [677.5, 1365.5], [677.5, 1365.5], [678.5, 1354.5], [673.5, 1340.5]]}, {"id": "txbm8n", "submitted_by": "YGTaway", "name": "Block PORN", "description": "Aside from fighting over pixels, what else does a collegiate Redditor partake in over the weekends?\n", "website": "", "subreddit": "", "center": [207.5, 593.5], "path": [[179.5, 602.5], [177.5, 608.5], [152.5, 608.5], [155.5, 601.5], [161.5, 601.5], [166.5, 590.5], [160.5, 590.5], [164.5, 582.5], [256.5, 582.5], [256.5, 603.5], [208.5, 603.5], [205.5, 600.5], [175.5, 599.5], [174.5, 602.5]]}, -{"id": "txbk1s", "submitted_by": "AriaNoire", "name": "AKB48", "description": "Japanese idol girl group AKB48 is one the highest-earning musical acts in Japan, and is the fifth best-selling girl group worldwide.\n\nWe would like to thank r/Philippines for their generosity in sharing space for AKB48 in r/place!", "website": "[https://www.reddit.com/r/AKB48/](https://www.reddit.com/r/AKB48/)", "subreddit": "r/AKB48", "center": [458.5, 1622.5], "path": [[458.5, 1607.5], [458.5, 1607.5], [460.5, 1607.5], [460.5, 1637.5], [456.5, 1637.5], [456.5, 1607.5], [457.5, 1607.5]]}, -{"id": "txbjvn", "submitted_by": "JaKoo_122", "name": "AxoKirby", "description": "This cute Kirby was built for the comunity of Axolapan RP, a Fortnite roleplay based in Mexico, it really looks like a Kirby transformed into an Axolotl but in the image it is not complete, lol", "website": "[https://discord.gg/4JEeSu4SRP](https://discord.gg/4JEeSu4SRP)", "subreddit": "/r/AxolapanRP", "center": [1161.5, 1746.5], "path": [[1155.5, 1741.5], [1155.5, 1750.5], [1166.5, 1750.5], [1166.5, 1741.5], [1166.5, 1741.5], [1155.5, 1741.5], [1155.5, 1741.5]]}, -{"id": "txbjuc", "submitted_by": "Buka324", "name": "Artemis's Arrows", "description": "Arrows representing the Greek Goddess Artemis, as portrayed in Indie Roguelike Hades.", "website": "", "subreddit": "r/HadesTheGame", "center": [0.5, 0.5], "path": []}, +{"id": "txbk1s", "submitted_by": "AriaNoire", "name": "AKB48", "description": "Japanese idol girl group AKB48 is one the highest-earning musical acts in Japan, and is the fifth best-selling girl group worldwide.\n\nWe would like to thank r/Philippines for their generosity in sharing space for AKB48 in r/place!", "website": "https://www.reddit.com/r/AKB48/", "subreddit": "/r/AKB48", "center": [458.5, 1622.5], "path": [[458.5, 1607.5], [458.5, 1607.5], [460.5, 1607.5], [460.5, 1637.5], [456.5, 1637.5], [456.5, 1607.5], [457.5, 1607.5]]}, +{"id": "txbjvn", "submitted_by": "JaKoo_122", "name": "AxoKirby", "description": "This cute Kirby was built for the comunity of Axolapan RP, a Fortnite roleplay based in Mexico, it really looks like a Kirby transformed into an Axolotl but in the image it is not complete, lol", "website": "https://discord.gg/4JEeSu4SRP", "subreddit": "/r/AxolapanRP", "center": [1161.5, 1746.5], "path": [[1155.5, 1741.5], [1155.5, 1750.5], [1166.5, 1750.5], [1166.5, 1741.5], [1166.5, 1741.5], [1155.5, 1741.5], [1155.5, 1741.5]]}, {"id": "txbjgw", "submitted_by": "satired_", "name": "Norm Macdonald Live", "description": "A monument for the beloved comedian Norm Macdonald\n- RIP - \n- I didn't know he was sick", "website": "", "subreddit": "/r/NormMacdonald", "center": [558.5, 1722.5], "path": [[542.5, 1712.5], [573.5, 1712.5], [573.5, 1731.5], [542.5, 1731.5], [542.5, 1731.5]]}, -{"id": "txbjcy", "submitted_by": "Asminnow", "name": "Mr. Tayto", "description": "Mascot for Irish-based crisp and popcorn manufacturer Tayto Crisps.", "website": "", "subreddit": "", "center": [139.5, 589.5], "path": [[129.5, 579.5], [131.5, 577.5], [131.5, 576.5], [132.5, 575.5], [141.5, 575.5], [142.5, 576.5], [142.5, 578.5], [144.5, 578.5], [144.5, 579.5], [142.5, 579.5], [142.5, 580.5], [143.5, 581.5], [143.5, 584.5], [144.5, 584.5], [144.5, 586.5], [146.5, 586.5], [146.5, 584.5], [147.5, 583.5], [147.5, 582.5], [148.5, 581.5], [149.5, 581.5], [149.5, 570.5], [157.5, 570.5], [157.5, 576.5], [150.5, 576.5], [150.5, 581.5], [151.5, 581.5], [152.5, 582.5], [152.5, 585.5], [151.5, 586.5], [150.5, 586.5], [150.5, 587.5], [149.5, 587.5], [149.5, 589.5], [148.5, 589.5], [148.5, 590.5], [147.5, 591.5], [147.5, 592.5], [146.5, 593.5], [145.5, 593.5], [145.5, 599.5], [143.5, 601.5], [142.5, 601.5], [142.5, 604.5], [144.5, 606.5], [138.5, 606.5], [138.5, 601.5], [136.5, 601.5], [136.5, 606.5], [129.5, 606.5], [131.5, 604.5], [131.5, 603.5], [130.5, 602.5], [130.5, 601.5], [129.5, 600.5], [128.5, 600.5], [128.5, 599.5], [127.5, 598.5], [127.5, 590.5], [129.5, 588.5], [129.5, 585.5], [130.5, 584.5], [130.5, 581.5], [129.5, 580.5]]}, -{"id": "txbia0", "submitted_by": "TheDrlegoman", "name": "Gyraf", "description": "An elusive, little known species, the Gyraf is a many-footed carnivorous beast. The Gyraf has been known to latch onto planes with the help of its long neck in order to spread joy across the world. *If you see a Gyraf, it is too late to run. It is the face of the Stories Together discord bot, focused on bringing together communities to enjoy creating terrific tales piece by piece!", "website": "[https://discord.gg/2YvSVUtgp4](https://discord.gg/2YvSVUtgp4)", "subreddit": "", "center": [525.5, 1764.5], "path": [[516.5, 1762.5], [517.5, 1760.5], [530.5, 1760.5], [529.5, 1770.5], [526.5, 1770.5], [524.5, 1770.5], [524.5, 1768.5], [524.5, 1766.5], [523.5, 1766.5], [523.5, 1765.5], [522.5, 1765.5], [522.5, 1764.5], [521.5, 1764.5], [519.5, 1764.5], [518.5, 1763.5], [517.5, 1762.5]]}, +{"id": "txbia0", "submitted_by": "TheDrlegoman", "name": "Gyraf", "description": "An elusive, little known species, the Gyraf is a many-footed carnivorous beast. The Gyraf has been known to latch onto planes with the help of its long neck in order to spread joy across the world. *If you see a Gyraf, it is too late to run. It is the face of the Stories Together discord bot, focused on bringing together communities to enjoy creating terrific tales piece by piece!", "website": "https://discord.gg/2YvSVUtgp4", "subreddit": "", "center": [525.5, 1764.5], "path": [[516.5, 1762.5], [517.5, 1760.5], [530.5, 1760.5], [529.5, 1770.5], [526.5, 1770.5], [524.5, 1770.5], [524.5, 1768.5], [524.5, 1766.5], [523.5, 1766.5], [523.5, 1765.5], [522.5, 1765.5], [522.5, 1764.5], [521.5, 1764.5], [519.5, 1764.5], [518.5, 1763.5], [517.5, 1762.5]]}, {"id": "txhb3a", "submitted_by": "Scramel", "name": "Non-binary Pride Flag", "description": "The non-binary pride flag was created in 2014 by Kye Rowan. The different ways people can have a non-binary gender is represented by each color.", "website": "", "subreddit": "", "center": [1839.5, 1747.5], "path": [[1813.5, 1745.5], [1864.5, 1745.5], [1864.5, 1749.5], [1813.5, 1749.5]]}, -{"id": "txhakv", "submitted_by": "RedLuminous", "name": "Occlupanid", "description": "A sideways, tiny Occlupanid (Latin for bread closer), commonly known as bread clips or bread tags, formally known as bag closures. These plastic clips are mostly used to seal bread bags and often have the expiration date printed on them (represented here as a cyan line). There are hundreds of variations of occlupanids, taxonomically catalogued by the Holotypic Occlupanid Research Group (HORG). The Foundation for Occlupanology Research and Communication (FORC) formed an alliance with the Splatoon, Fez, and HHUT communities to secure this spot on the canvas.", "website": "https://www.horg.com/horg/", "subreddit": "r/occlupanids", "center": [1106.5, 1888.5], "path": [[1102.5, 1882.5], [1110.5, 1882.5], [1110.5, 1893.5], [1102.5, 1893.5], [1102.5, 1882.5]]}, +{"id": "txhakv", "submitted_by": "RedLuminous", "name": "Occlupanid", "description": "A sideways, tiny Occlupanid (Latin for bread closer), commonly known as bread clips or bread tags, formally known as bag closures. These plastic clips are mostly used to seal bread bags and often have the expiration date printed on them (represented here as a cyan line). There are hundreds of variations of occlupanids, taxonomically catalogued by the Holotypic Occlupanid Research Group (HORG). The Foundation for Occlupanology Research and Communication (FORC) formed an alliance with the Splatoon, Fez, and HHUT communities to secure this spot on the canvas.", "website": "https://www.horg.com/horg/", "subreddit": "/r/occlupanids", "center": [1106.5, 1888.5], "path": [[1102.5, 1882.5], [1110.5, 1882.5], [1110.5, 1893.5], [1102.5, 1893.5], [1102.5, 1882.5]]}, {"id": "txh9pg", "submitted_by": "manawesome326", "name": "Heartbeat row", "description": "A UI element from the rhythm game Rhythm Doctor, representing a patient's heartbeat. Hit space on the 7th beat!", "website": "https://rhythmdr.com/", "subreddit": "", "center": [1841.5, 1677.5], "path": [[1829.5, 1674.5], [1852.5, 1674.5], [1852.5, 1680.5], [1829.5, 1680.5]]}, -{"id": "txh96h", "submitted_by": "Superw0rri0", "name": "LAI LAI!", "description": "LAI LAI!", "website": "", "subreddit": "/r/lostarkgame/", "center": [1176.5, 1921.5], "path": [[1161.5, 1917.5], [1191.5, 1917.5], [1191.5, 1924.5], [1161.5, 1924.5]]}, +{"id": "txh96h", "submitted_by": "Superw0rri0", "name": "LAI LAI!", "description": "LAI LAI!", "website": "", "subreddit": "/r/lostarkgame", "center": [1176.5, 1921.5], "path": [[1161.5, 1917.5], [1191.5, 1917.5], [1191.5, 1924.5], [1161.5, 1924.5]]}, {"id": "txh8xv", "submitted_by": "FenrirCrow", "name": "koishi blob", "description": "koishi blob made by tevin_vr community or something like that protected by sponge guardian\n", "website": "https://www.twitch.tv/tevin_vr", "subreddit": "", "center": [1451.5, 357.5], "path": [[1437.5, 347.5], [1437.5, 366.5], [1466.5, 366.5], [1466.5, 348.5], [1437.5, 347.5]]}, {"id": "txh8r3", "submitted_by": "Cair0n", "name": "Epitech", "description": "French school delivering diploma to be developer sepcialized on one technology. Do not make managers or tech leads of these guys =)", "website": "", "subreddit": "", "center": [1738.5, 1592.5], "path": [[1707.5, 1588.5], [1701.5, 1584.5], [1774.5, 1584.5], [1774.5, 1599.5], [1701.5, 1599.5], [1701.5, 1584.5]]}, {"id": "txhezr", "submitted_by": "Cronkhinator", "name": "Forts RTS", "description": "Forts is a physics-based 2D real-time strategy video game developed and published by Australian studio EarthWork Games.", "website": "https://store.steampowered.com/app/410900/Forts/", "subreddit": "/r/FortsGame", "center": [388.5, 1959.5], "path": [[379.5, 1950.5], [399.5, 1950.5], [399.5, 1961.5], [391.5, 1961.5], [391.5, 1967.5], [396.5, 1967.5], [396.5, 1970.5], [379.5, 1970.5]]}, -{"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": "[homestuck.com](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": "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": "txhdvs", "submitted_by": "RealMan_Gelo", "name": "HBG Logo", "description": "HBG (House Builder Gang) is a group primarily comprised of top Minecraft speedrunners, both current and former. The MCSR on top stands for Minecraft Speedrunning. ", "website": "https://twitter.com/hbg_mc", "subreddit": "", "center": [0.5, 0.5], "path": []}, -{"id": "txhdrv", "submitted_by": "Infin1tykrew", "name": "Angry spanish barking invasion", "description": "Here, the huge coalition of American and Spanish streamers have cowardly invaded the French zone by creating a meme with the effigy of Hasbullah. Unfortunately for them, the French Nation regrouped and formed an impenetrable defensive group chasing the vile faquins out of their territory. This event marked the beginning of the fall of the dignity of the Spanish streamers who were not able to defeat the French heroes in spite of their numerical superiority 2 to 3 times superior. This was due to the organization and tactical superiority of the French general Kameto.\n\nStung in their ego, the Spanish streamers will then spend the entire rest of the event trying, in vain, to destroy the French possessions instead of building and reacting as adults.\nThey will go as far as kissing the ass of the American streamers and selling ads to the armys of the band BTS in exchange for a stream of the next album of the band on their channel.\nIn order not to hide their face and try to keep their fragile ego, they will go as far as accusing France of using bots to justify their defeat (which was only due to their lack of coordination and management of their community), to, a few hours later, admit in stream their own use of bots to install a BTS logo on the French flag.", "website": "", "subreddit": "", "center": [121.5, 1477.5], "path": [[-0.5, 1603.5], [244.5, 1603.5], [241.5, 1349.5], [-0.5, 1350.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": "txhbpu", "submitted_by": "Dr_Shadox", "name": "French political war of the left against the far right.", "description": "the left held the position successfully for more than 48 hours, the right ended up using bots because they were unable to coordinate.\nthe left, refusing to cheat, appealed to a community of a streamer (Kreeks) to help them against fascism, which solved the problem quickly in the end.", "website": "", "subreddit": "", "center": [1678.5, 743.5], "path": [[1664.5, 722.5], [1694.5, 723.5], [1688.5, 766.5], [1664.5, 766.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": "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 (\u675c\u7279\u723e\u7279\u00b7\u6885\u59c6\u65af: \u9078\u8209\u5e74), 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": "txhi4t", "submitted_by": "RealMan_Gelo", "name": "Reignex", "description": "Top minecraft speedrunner, known for getting the world record in early 2021, later to be tied with Zylenox.", "website": "https://www.twitch.tv/reignex", "subreddit": "", "center": [0.5, 0.5], "path": []}, +{"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]]}, -{"id": "txhh9y", "submitted_by": "squanch2169", "name": "KEL", "description": "dumbass with a pet rock named Hector", "website": "https://omori.fandom.com/wiki/KEL", "subreddit": "r/OMORI", "center": [1417.5, 1151.5], "path": [[1414.5, 1137.5], [1421.5, 1137.5], [1422.5, 1138.5], [1423.5, 1138.5], [1424.5, 1139.5], [1425.5, 1140.5], [1426.5, 1141.5], [1426.5, 1142.5], [1427.5, 1143.5], [1427.5, 1145.5], [1427.5, 1146.5], [1428.5, 1147.5], [1428.5, 1149.5], [1427.5, 1150.5], [1426.5, 1151.5], [1426.5, 1152.5], [1425.5, 1153.5], [1424.5, 1154.5], [1423.5, 1155.5], [1424.5, 1156.5], [1425.5, 1157.5], [1426.5, 1158.5], [1426.5, 1160.5], [1425.5, 1161.5], [1424.5, 1162.5], [1423.5, 1162.5], [1423.5, 1166.5], [1422.5, 1167.5], [1421.5, 1168.5], [1420.5, 1168.5], [1419.5, 1167.5], [1418.5, 1166.5], [1417.5, 1166.5], [1416.5, 1167.5], [1415.5, 1168.5], [1414.5, 1168.5], [1413.5, 1167.5], [1412.5, 1166.5], [1411.5, 1162.5], [1410.5, 1161.5], [1409.5, 1158.5], [1410.5, 1157.5], [1411.5, 1156.5], [1411.5, 1154.5], [1410.5, 1153.5], [1409.5, 1151.5], [1408.5, 1150.5], [1407.5, 1147.5], [1408.5, 1143.5], [1409.5, 1141.5], [1410.5, 1140.5], [1411.5, 1139.5], [1412.5, 1138.5]]}, +{"id": "txhh9y", "submitted_by": "squanch2169", "name": "KEL", "description": "dumbass with a pet rock named Hector", "website": "https://omori.fandom.com/wiki/KEL", "subreddit": "/r/OMORI", "center": [1417.5, 1151.5], "path": [[1414.5, 1137.5], [1421.5, 1137.5], [1422.5, 1138.5], [1423.5, 1138.5], [1424.5, 1139.5], [1425.5, 1140.5], [1426.5, 1141.5], [1426.5, 1142.5], [1427.5, 1143.5], [1427.5, 1145.5], [1427.5, 1146.5], [1428.5, 1147.5], [1428.5, 1149.5], [1427.5, 1150.5], [1426.5, 1151.5], [1426.5, 1152.5], [1425.5, 1153.5], [1424.5, 1154.5], [1423.5, 1155.5], [1424.5, 1156.5], [1425.5, 1157.5], [1426.5, 1158.5], [1426.5, 1160.5], [1425.5, 1161.5], [1424.5, 1162.5], [1423.5, 1162.5], [1423.5, 1166.5], [1422.5, 1167.5], [1421.5, 1168.5], [1420.5, 1168.5], [1419.5, 1167.5], [1418.5, 1166.5], [1417.5, 1166.5], [1416.5, 1167.5], [1415.5, 1168.5], [1414.5, 1168.5], [1413.5, 1167.5], [1412.5, 1166.5], [1411.5, 1162.5], [1410.5, 1161.5], [1409.5, 1158.5], [1410.5, 1157.5], [1411.5, 1156.5], [1411.5, 1154.5], [1410.5, 1153.5], [1409.5, 1151.5], [1408.5, 1150.5], [1407.5, 1147.5], [1408.5, 1143.5], [1409.5, 1141.5], [1410.5, 1140.5], [1411.5, 1139.5], [1412.5, 1138.5]]}, {"id": "txhh99", "submitted_by": "Rampieroozz", "name": "Seapeekay (cpk)", "description": "The minecraft skin of streamer Seapeekay aka Callum P. Knight (cpk), one of the latest addition to the dreamSMP and enthusiast MCC participant. ", "website": "", "subreddit": "/r/SeaPeeKay", "center": [151.5, 940.5], "path": [[146.5, 935.5], [155.5, 935.5], [155.5, 944.5], [146.5, 944.5]]}, {"id": "txhh6z", "submitted_by": "kyfaros", "name": "The Corner Store", "description": "The logo for a group of content creators called The Corner Store", "website": "https://thecornerstorelads.com/", "subreddit": "", "center": [1252.5, 1613.5], "path": [[1245.5, 1611.5], [1245.5, 1614.5], [1259.5, 1614.5], [1259.5, 1611.5], [1245.5, 1611.5]]}, -{"id": "txhh5e", "submitted_by": "lardias", "name": "Skitter", "description": "A character from the web serial Worm, written by Wildbow", "website": "https://parahumans.wordpress.com/", "subreddit": "/r/parahumans", "center": [1697.5, 233.5], "path": [[1694.5, 219.5], [1692.5, 227.5], [1690.5, 230.5], [1691.5, 232.5], [1692.5, 236.5], [1693.5, 239.5], [1692.5, 241.5], [1692.5, 248.5], [1697.5, 248.5], [1697.5, 246.5], [1695.5, 244.5], [1696.5, 243.5], [1697.5, 239.5], [1699.5, 248.5], [1703.5, 248.5], [1701.5, 245.5], [1701.5, 238.5], [1701.5, 237.5], [1700.5, 234.5], [1704.5, 237.5], [1707.5, 237.5], [1707.5, 234.5], [1701.5, 230.5], [1700.5, 227.5], [1701.5, 222.5], [1702.5, 219.5], [1694.5, 219.5]]}, -{"id": "txhgrv", "submitted_by": "falarikae", "name": "The Groke", "description": "The Groke is a fictional character in the Moomin stories created by Tove Jansson", "website": "", "subreddit": "/r/Suomi", "center": [623.5, 153.5], "path": [[631.5, 160.5], [614.5, 160.5], [617.5, 151.5], [622.5, 142.5], [628.5, 150.5], [632.5, 150.5]]}, +{"id": "txhh5e", "submitted_by": "lardias", "name": "Skitter", "description": "A character from the web serial Worm, written by Wildbow.", "website": "https://parahumans.wordpress.com/", "subreddit": "/r/parahumans", "center": [1697.5, 233.5], "path": [[1694.5, 219.5], [1692.5, 227.5], [1690.5, 230.5], [1691.5, 232.5], [1692.5, 236.5], [1693.5, 239.5], [1692.5, 241.5], [1692.5, 248.5], [1697.5, 248.5], [1697.5, 246.5], [1695.5, 244.5], [1696.5, 243.5], [1697.5, 239.5], [1699.5, 248.5], [1703.5, 248.5], [1701.5, 245.5], [1701.5, 238.5], [1701.5, 237.5], [1700.5, 234.5], [1704.5, 237.5], [1707.5, 237.5], [1707.5, 234.5], [1701.5, 230.5], [1700.5, 227.5], [1701.5, 222.5], [1702.5, 219.5], [1694.5, 219.5]]}, +{"id": "txhgrv", "submitted_by": "falarikae", "name": "The Groke", "description": "The Groke is a fictional character in the Moomin stories created by Tove Jansson.", "website": "https://en.wikipedia.org/wiki/The_Groke", "subreddit": "/r/Moomins", "center": [623.5, 153.5], "path": [[631.5, 160.5], [614.5, 160.5], [617.5, 151.5], [622.5, 142.5], [628.5, 150.5], [632.5, 150.5]]}, {"id": "txhgpp", "submitted_by": "RealMan_Gelo", "name": "Minecraft End Crystal - MCSR", "description": "", "website": "", "subreddit": "", "center": [1486.5, 1418.5], "path": [[1475.5, 1401.5], [1497.5, 1401.5], [1497.5, 1435.5], [1476.5, 1435.5]]}, -{"id": "txhgdo", "submitted_by": "OkAd8008", "name": "Tarsier ", "description": "The Tarsier is an endangered primate local to the Philippines. Prior to the FREAK SQUAD invasion, there was a mural of a tarsier with a tabby cat and a purple crab that got destroyed. After the space was given back thanks to NMP and Buddha, The tarsier was restored in between Buddha's dogs and gave them a lush forest background.\n", "website": "", "subreddit": "r/Philippines", "center": [1432.5, 615.5], "path": [[1414.5, 600.5], [1450.5, 600.5], [1450.5, 620.5], [1433.5, 637.5], [1421.5, 630.5], [1415.5, 620.5]]}, +{"id": "txhgdo", "submitted_by": "OkAd8008", "name": "Tarsier ", "description": "The Tarsier is an endangered primate local to the Philippines. Prior to the FREAK SQUAD invasion, there was a mural of a tarsier with a tabby cat and a purple crab that got destroyed. After the space was given back thanks to NMP and Buddha, The tarsier was restored in between Buddha's dogs and gave them a lush forest background.\n", "website": "", "subreddit": "/r/Philippines", "center": [1432.5, 615.5], "path": [[1414.5, 600.5], [1450.5, 600.5], [1450.5, 620.5], [1433.5, 637.5], [1421.5, 630.5], [1415.5, 620.5]]}, {"id": "txhftn", "submitted_by": "Due_Top6549", "name": "true", "description": "", "website": "", "subreddit": "", "center": [1735.5, 320.5], "path": [[1715.5, 312.5], [1754.5, 312.5], [1754.5, 327.5], [1715.5, 327.5]]}, -{"id": "txhfj9", "submitted_by": "saifhamouda", "name": "Line", "description": "a very long line", "website": "line.com/place", "subreddit": "r/line", "center": [0.5, 0.5], "path": [[12.5, 377.5], [2048.5, 378.5]]}, -{"id": "txhfi5", "submitted_by": "Epicotters", "name": "Iwo Jima Flag", "description": "Raising the Flag on Iwo Jima is an iconic photograph of six United States Marines raising the U.S. flag atop Mount Suribachi during the Battle of Iwo Jima. ", "website": "https://www.reddit.com/r/USMC/", "subreddit": "r/USMC", "center": [1945.5, 1853.5], "path": [[1939.5, 1867.5], [1939.5, 1864.5], [1939.5, 1860.5], [1941.5, 1857.5], [1941.5, 1852.5], [1944.5, 1852.5], [1931.5, 1840.5], [1932.5, 1837.5], [1943.5, 1839.5], [1948.5, 1840.5], [1951.5, 1842.5], [1952.5, 1844.5], [1953.5, 1846.5], [1951.5, 1850.5], [1948.5, 1852.5], [1961.5, 1867.5], [1958.5, 1867.5], [1939.5, 1867.5]]} - - - -] \ No newline at end of file +{"id": "txhfj9", "submitted_by": "saifhamouda", "name": "Line", "description": "a very long line", "website": "https://line.com/place", "subreddit": "/r/line", "center": [0.5, 0.5], "path": [[12.5, 377.5], [2048.5, 378.5]]}, +{"id": "txhreo", "submitted_by": "Darreugne", "name": "EPITECH", "description": "A French IT school that make C-Levels for IT & Engineering companies. Cutting edge technologies were created by alumni (Docker, Prestashop, Golem.AI, Cruise...)", "website": "https://epitech.eu", "subreddit": "/r/Epitech", "center": [1738.5, 1592.5], "path": [[1700.5, 1584.5], [1774.5, 1584.5], [1775.5, 1599.5], [1701.5, 1599.5], [1701.5, 1584.5]]}, +{"id": "txhqxy", "submitted_by": "guaguel", "name": "EsVandal", "description": "Ah, hehe... it's me... Vandal. Your trusted youtuber, local goblin and gatoparao", "website": "https://www.twitch.tv/esvandal", "subreddit": "", "center": [1771.5, 1373.5], "path": [[1766.5, 1369.5], [1766.5, 1377.5], [1775.5, 1377.5], [1775.5, 1369.5]]}, +{"id": "txhqto", "submitted_by": "PatZas", "name": "Ark sus", "description": "A little Among us who joined the arkadia community...", "website": "http://maxconn.iesllompart.cat/index.php/inici", "subreddit": "", "center": [1848.5, 1177.5], "path": [[1845.5, 1174.5], [1845.5, 1180.5], [1850.5, 1180.5], [1850.5, 1174.5]]}, +{"id": "txhqsj", "submitted_by": "nynkerosine", "name": "Kasane Teto", "description": "Kasane Teto (\u91cd\u97f3\u30c6\u30c8 (\u304b\u3055\u306d\u3066\u3068)) is a voicebank for the UTAU program.", "website": "https://vocaloid.fandom.com/wiki/Kasane_Teto", "subreddit": "", "center": [1671.5, 1500.5], "path": [[1687.5, 1516.5], [1660.5, 1516.5], [1654.5, 1510.5], [1655.5, 1488.5], [1659.5, 1484.5], [1687.5, 1485.5], [1687.5, 1494.5]]}, +{"id": "txhpwd", "submitted_by": "J4ckrh", "name": "The Golden Premier League Trophy", "description": "A special commemorative trophy given to the Arsenal FC Invincibles, a squad known for going an entire Premier League season undefeated. The Invincibles are widely regarded as the greatest Premier League squad of all time and their feat is yet to be replicated by any other side in the Premier League era.", "website": "", "subreddit": "/r/Gunners", "center": [748.5, 503.5], "path": [[745.5, 499.5], [745.5, 506.5], [751.5, 506.5], [751.5, 499.5], [745.5, 499.5]]}, +{"id": "txhpbb", "submitted_by": "Pr1nceDeLu", "name": "Indigo flower", "description": "Small indigo flower made by a small discord of French friends with the protection of Q and Tom fursonas.", "website": "", "subreddit": "", "center": [444.5, 1530.5], "path": [[444.5, 1527.5], [443.5, 1527.5], [443.5, 1528.5], [442.5, 1528.5], [442.5, 1529.5], [442.5, 1530.5], [443.5, 1530.5], [443.5, 1531.5], [443.5, 1532.5], [446.5, 1532.5], [446.5, 1531.5], [447.5, 1531.5], [447.5, 1530.5], [447.5, 1529.5], [446.5, 1529.5], [446.5, 1528.5], [445.5, 1528.5], [445.5, 1527.5]]}, +{"id": "txhp2s", "submitted_by": "nathan_dnx", "name": "TG4", "description": "A French high school class named TG4 which wanted to be part of r/place VIVE LES TG4", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": [[140.5, 166.5], [155.5, 169.5]]}, +{"id": "txhozn", "submitted_by": "slanterns", "name": "Among us", "description": "A pink among us.", "website": "", "subreddit": "", "center": [1457.5, 189.5], "path": [[1456.5, 187.5], [1458.5, 187.5], [1459.5, 188.5], [1459.5, 189.5], [1458.5, 191.5], [1456.5, 191.5], [1456.5, 187.5]]}, +{"id": "txhom4", "submitted_by": "VLADGINA_", "name": "Fifi Dragon", "description": "An 8-bit mascot of Twitch streamer FireDragon, known for speedrunning and shiny Pokemon hunting.", "website": "https://www.twitch.tv/firedragon", "subreddit": "/r/FireDragon", "center": [656.5, 1558.5], "path": [[653.5, 1552.5], [653.5, 1552.5], [664.5, 1552.5], [661.5, 1557.5], [661.5, 1564.5], [651.5, 1564.5], [651.5, 1552.5]]}, +{"id": "txhnym", "submitted_by": "New_Climate_9512", "name": "FR FLAG", "description": "By @lewizooo & @ZupShay", "website": "https://www.twitter.com/lewizooo", "subreddit": "", "center": [362.5, 1536.5], "path": [[359.5, 1535.5], [364.5, 1535.5], [364.5, 1536.5], [359.5, 1536.5]]}, +{"id": "txhnq9", "submitted_by": "Shinsuke_Shidou", "name": "Kyomu Suzume", "description": "A sparrow drawn by Holostars member Hanasaki Miyabi.", "website": "https://virtualyoutuber.fandom.com/wiki/Hanasaki_Miyabi", "subreddit": "/r/Hololive", "center": [1337.5, 1113.5], "path": [[1333.5, 1116.5], [1341.5, 1116.5], [1340.5, 1110.5], [1339.5, 1109.5], [1335.5, 1109.5], [1334.5, 1110.5], [1333.5, 1111.5], [1333.5, 1116.5]]}, +{"id": "txhnix", "submitted_by": "RealMan_Gelo", "name": "T_Wagz", "description": "Innovator in Minecraft speedrunning, known for discovering groundbreaking strategies in the game, notably bastion and monument routing. Fastest to obtain all advancements in a set seed without glitches in Minecraft.", "website": "https://www.youtube.com/c/TWagz", "subreddit": "", "center": [1486.5, 1468.5], "path": [[1482.5, 1464.5], [1489.5, 1464.5], [1489.5, 1471.5], [1482.5, 1471.5]]}, +{"id": "txhnem", "submitted_by": "Dalkeri", "name": "French political war", "description": "Political war between LFI and Z that attacked them.\n\nIn the end, no ones logo is in the final picture before the white void.\n\nIt is still funny that a political party self centered on France is participating in an event without borders and prejudice", "website": "", "subreddit": "", "center": [1677.5, 740.5], "path": [[1702.5, 717.5], [1664.5, 717.5], [1664.5, 765.5], [1689.5, 766.5], [1687.5, 730.5], [1702.5, 717.5]]}, +{"id": "txhmtd", "submitted_by": "reym17", "name": "Digital Ideation", "description": "A Swiss Bachelor's Degree.", "website": "https://www.hslu.ch/en/lucerne-school-of-information-technology/degree-programs/bachelor/digital-ideation/", "subreddit": "", "center": [1079.5, 1118.5], "path": [[1075.5, 1114.5], [1075.5, 1122.5], [1083.5, 1122.5], [1083.5, 1114.5], [1075.5, 1114.5]]}, +{"id": "txhmsg", "submitted_by": "FMk_Osu_and_RL", "name": "League of Pixels Collab Artwork", "description": "Initally designed to be the 'Revenge of the Sith' poster with an osu! hit circle speaking 'botting is a sin' due to accusations, the Black Bauhinia flag, the swiss flag in the shape of a heart, and more community logos hidden in the dark space of the left figure. A collaboration between the supposed 'League of pixels' of r/place. However, when their manpower started to dwindle near the ending of the event they struggled to claim their entire desired plot and decided to welcome other smaller communities into their space. The resulting 'fading' into surrounding artwork was even prefered by many of it's creators, as a testament the acceptance and diplomacy of the League of Pixels founding subbreddits, which was part of why this particular poster was chosen to begin with.", "website": "https://cdn.mirai.gg/tmp/dotted-place-template.png", "subreddit": "", "center": [733.5, 1637.5], "path": [[683.5, 1510.5], [710.5, 1553.5], [707.5, 1555.5], [707.5, 1571.5], [707.5, 1573.5], [697.5, 1574.5], [675.5, 1570.5], [673.5, 1591.5], [638.5, 1595.5], [627.5, 1604.5], [628.5, 1678.5], [733.5, 1684.5], [732.5, 1691.5], [724.5, 1696.5], [718.5, 1702.5], [716.5, 1714.5], [720.5, 1726.5], [728.5, 1733.5], [742.5, 1734.5], [754.5, 1728.5], [758.5, 1715.5], [757.5, 1703.5], [751.5, 1695.5], [741.5, 1690.5], [740.5, 1691.5], [739.5, 1684.5], [750.5, 1682.5], [750.5, 1670.5], [779.5, 1669.5], [786.5, 1674.5], [787.5, 1711.5], [830.5, 1713.5], [829.5, 1706.5], [834.5, 1705.5], [833.5, 1697.5], [843.5, 1695.5], [837.5, 1660.5], [831.5, 1652.5], [831.5, 1632.5], [808.5, 1609.5], [812.5, 1601.5], [810.5, 1592.5], [796.5, 1586.5], [789.5, 1586.5], [760.5, 1590.5], [752.5, 1585.5], [751.5, 1560.5], [758.5, 1558.5], [758.5, 1544.5], [753.5, 1545.5], [752.5, 1534.5], [745.5, 1541.5], [743.5, 1547.5], [733.5, 1565.5], [730.5, 1565.5], [726.5, 1563.5], [723.5, 1561.5], [698.5, 1521.5], [685.5, 1510.5]]}, +{"id": "txhmpb", "submitted_by": "Shinsuke_Shidou", "name": "Hana, Mito and Hada", "description": "The talents Hana Machia, Tsukino Mito, and Ban Hada from the Vtuber agency Nijisanji.", "website": "https://virtualyoutuber.fandom.com/wiki/NIJISANJI", "subreddit": "/r/Nijisanji", "center": [1937.5, 757.5], "path": [[1920.5, 753.5], [1953.5, 753.5], [1953.5, 760.5], [1920.5, 760.5], [1920.5, 753.5]]}, +{"id": "txhluz", "submitted_by": "Xeno_Plague", "name": "Gary", "description": "Gary the sapient octopus, the mascot of r/SpeculativeEvolution, in the sea mural of r/Portugal holding a duck along with his signature spear.", "website": "", "subreddit": "/r/SpeculativeEvolution", "center": [1086.5, 357.5], "path": [[1079.5, 352.5], [1078.5, 354.5], [1078.5, 355.5], [1079.5, 356.5], [1080.5, 360.5], [1081.5, 361.5], [1084.5, 362.5], [1086.5, 363.5], [1088.5, 362.5], [1090.5, 363.5], [1092.5, 362.5], [1093.5, 361.5], [1093.5, 358.5], [1092.5, 356.5], [1091.5, 354.5], [1096.5, 353.5], [1095.5, 352.5], [1083.5, 352.5], [1082.5, 351.5], [1080.5, 351.5]]}, +{"id": "txhljv", "submitted_by": "DylanDonut58", "name": "Red birb/Gumi", "description": "Gumi from the red birb staring/wuewuewue meme originating from the YouTube channel of Hideaki Utsumi", "website": "https://www.youtube.com/watch?v=ewf-8rx9_uQ", "subreddit": "", "center": [295.5, 718.5], "path": [[290.5, 722.5], [290.5, 715.5], [292.5, 713.5], [297.5, 713.5], [300.5, 718.5], [301.5, 721.5], [299.5, 723.5], [293.5, 723.5], [292.5, 722.5]]}, +{"id": "txhlg0", "submitted_by": "WhuteMan", "name": "Tyler, the Creator", "description": "This section was a mural of Tyler\u2019s critically acclaimed albums Call me if you get Lost and Igor. It also featured Tyler\u2019s clothing brand GOLF.", "website": "https://golfwang.com/password", "subreddit": "/r/tylerthecreator", "center": [1990.5, 1673.5], "path": [[1980.5, 1660.5], [1980.5, 1686.5], [2001.5, 1687.5], [2000.5, 1660.5]]}, +{"id": "txhldy", "submitted_by": "dicey_mikayla", "name": "VEX Robotics", "description": "VEX Robotics is educational robotics for everyone. Beyond science and engineering principles, VEX encourages creativity, teamwork, leadership, and problem solving among groups.", "website": "https://www.vexforum.com/", "subreddit": "/r/vex", "center": [1210.5, 1626.5], "path": [[1199.5, 1618.5], [1221.5, 1618.5], [1221.5, 1633.5], [1199.5, 1633.5], [1199.5, 1618.5]]}, +{"id": "txhkvv", "submitted_by": "n0psp", "name": "Republican flag", "description": "This small spanish republican flag was a battleground the whole event, you could see the struggling to keep it red every moment /place/ was live", "website": "", "subreddit": "", "center": [949.5, 281.5], "path": [[949.5, 287.5], [944.5, 282.5], [944.5, 279.5], [949.5, 277.5], [954.5, 280.5], [953.5, 283.5], [949.5, 287.5], [949.5, 287.5], [949.5, 287.5], [949.5, 287.5]]}, +{"id": "txhkg5", "submitted_by": "RealMan_Gelo", "name": "7rowl", "description": "Top minecraft speedrunner", "website": "https://www.twitch.tv/7rowl", "subreddit": "", "center": [1477.5, 1459.5], "path": [[1473.5, 1455.5], [1480.5, 1455.5], [1480.5, 1462.5], [1473.5, 1462.5]]}, +{"id": "txhk36", "submitted_by": "Galmansan1", "name": "Viking ship", "description": "Viking ships were marine vessels of unique structure, used in Scandinavia from the Viking Age throughout the Middle Ages. The boat types were quite varied depending on what the ship was intended for, but they were generally characterized as being slender and flexible boats, with symmetrical ends with true keel. They were clinker-built, which is the overlapping of planks riveted together. Some might have had a dragon's head or other circular object protruding from the bow and stern for design, although this is only inferred from historical sources. Viking ships were used both for military purposes and for long-distance trade, exploration and colonization.", "website": "https://en.wikipedia.org/wiki/Viking_ships", "subreddit": "/r/place_nordicunion", "center": [442.5, 85.5], "path": [[436.5, 97.5], [451.5, 97.5], [451.5, 96.5], [452.5, 95.5], [453.5, 94.5], [453.5, 93.5], [454.5, 93.5], [455.5, 93.5], [455.5, 87.5], [457.5, 87.5], [457.5, 85.5], [458.5, 85.5], [458.5, 82.5], [456.5, 82.5], [456.5, 81.5], [455.5, 81.5], [455.5, 77.5], [449.5, 77.5], [448.5, 76.5], [447.5, 75.5], [446.5, 74.5], [444.5, 74.5], [444.5, 71.5], [442.5, 71.5], [442.5, 69.5], [443.5, 69.5], [443.5, 68.5], [443.5, 67.5], [440.5, 67.5], [440.5, 71.5], [439.5, 71.5], [439.5, 74.5], [434.5, 74.5], [434.5, 77.5], [432.5, 77.5], [431.5, 76.5], [430.5, 75.5], [429.5, 75.5], [429.5, 87.5], [430.5, 88.5], [430.5, 92.5], [431.5, 93.5], [432.5, 94.5], [433.5, 94.5], [434.5, 95.5], [435.5, 96.5], [435.5, 97.5], [437.5, 97.5]]}, +{"id": "txhjql", "submitted_by": "squanch2169", "name": "Sus Philippine Science Highschool Logo", "description": "The logo of the Philippine Science Highschool with the flame replaced by something suspicious, PurSUS of Truth!", "website": "", "subreddit": "/r/Philippines", "center": [358.5, 715.5], "path": [[352.5, 709.5], [363.5, 709.5], [363.5, 720.5], [352.5, 720.5]]}, +{"id": "txhx4e", "submitted_by": "Jazzbone1", "name": "The blue corner", "description": "The blue corner is, unsurprisingly, a corner colored completely blue. The origin of the blue corner comes from the first hours of r/place 2017, where nearly a forth of the canvas was made entirely blue. The blue corner is one of the more contested areas of the canvas, due to several factors, such as the corner being prime real estate, the content being visually uninteresting, and the existence of a smaller rival subreddit, r/theredcorner", "website": "", "subreddit": "/r/thebluecorner", "center": [1962.5, 1936.5], "path": [[1998.5, 1997.5], [1999.5, 1869.5], [1925.5, 1868.5], [1924.5, 2000.5], [1998.5, 2007.5], [1999.5, 1870.5]]}, +{"id": "txhwzi", "submitted_by": "sofacadys", "name": "(Former) Widowmaker's butt", "description": "Streamer xQc painted here the butt of the character of the famous shotter created by Blizzard, Overwatch.", "website": "", "subreddit": "", "center": [513.5, 1276.5], "path": [[553.5, 1211.5], [553.5, 1339.5], [493.5, 1339.5], [470.5, 1339.5], [474.5, 1212.5], [475.5, 1212.5], [475.5, 1212.5]]}, +{"id": "txhwo6", "submitted_by": "LostDog_88", "name": "Namaste", "description": "Namaste, or this hand gesture is the Indian greeting", "website": "https://en.wikipedia.org/wiki/Namaste", "subreddit": "/r/IndiaPlace", "center": [230.5, 1200.5], "path": [[213.5, 1215.5], [213.5, 1209.5], [214.5, 1207.5], [220.5, 1203.5], [220.5, 1201.5], [221.5, 1199.5], [222.5, 1195.5], [223.5, 1193.5], [224.5, 1188.5], [225.5, 1189.5], [225.5, 1179.5], [226.5, 1176.5], [227.5, 1175.5], [228.5, 1175.5], [229.5, 1176.5], [229.5, 1178.5], [231.5, 1178.5], [231.5, 1177.5], [233.5, 1175.5], [234.5, 1176.5], [234.5, 1179.5], [235.5, 1189.5], [236.5, 1193.5], [237.5, 1194.5], [238.5, 1195.5], [238.5, 1199.5], [239.5, 1201.5], [240.5, 1203.5], [246.5, 1207.5], [246.5, 1215.5], [235.5, 1215.5], [235.5, 1213.5], [234.5, 1213.5], [234.5, 1210.5], [232.5, 1210.5], [231.5, 1209.5], [231.5, 1207.5], [229.5, 1207.5], [229.5, 1209.5], [228.5, 1210.5], [226.5, 1212.5], [225.5, 1215.5], [213.5, 1215.5]]}, +{"id": "txhw77", "submitted_by": "RealMan_Gelo", "name": "HBG Logo", "description": "HBG (House Builder Gang) is a group primarily comprised of top Minecraft speedrunners, both current and former. The MCSR on top stands for Minecraft Speedrunning.", "website": "https://twitter.com/hbg_mc", "subreddit": "", "center": [1445.5, 1445.5], "path": [[1437.5, 1437.5], [1453.5, 1437.5], [1453.5, 1453.5], [1437.5, 1453.5]]}, +{"id": "txhvtd", "submitted_by": "InitiativeItchy", "name": "Mikes heart", "description": "On the night of April the 4th, the user MikeGamingFun wanted to leave his mark on r/place. He decided to create a little M, representing his username and by 8:22 pm (Australian standard eastern time), It was complete. After making the M, he proceeded to post about it on Reddit, with the post saying Finally got my own little place. (pls don't grief), not soon after a user by the name of M_pacey commented on the post, saying that he will help protect it. In the proceeding hours a among us character started to develop, taking over mikes M, mike responded to this by moving the M under the portal that was close. Luckily M_placey notice what mike was doing, and proceeded to help, not soon after, the M was fully underneath the portal. At one point in time, M_placey place a grey block under the m, and so did mike, as looked cool and unique, however, a random user put another grey block between mikes and paceys blocks, creating a heart. Mike decided to keep it like that and proceeded to fill it in red, with placey and a few randoms helping. The heart mostly stayed un griefed for the remanding g hours of r/place, with only a few blocks being placed on it every now and then.", "website": "", "subreddit": "/r/placethem", "center": [754.5, 838.5], "path": [[758.5, 836.5], [762.5, 841.5], [762.5, 837.5], [759.5, 841.5]]}, +{"id": "txhviv", "submitted_by": "LostDog_88", "name": "A Lotus", "description": "The lotus, is the national flower of India", "website": "https://knowindia.india.gov.in/national-identity-elements/national-flower.php", "subreddit": "/r/IndiaPlace", "center": [193.5, 1209.5], "path": [[179.5, 1198.5], [177.5, 1203.5], [180.5, 1206.5], [182.5, 1207.5], [186.5, 1209.5], [184.5, 1210.5], [182.5, 1212.5], [184.5, 1212.5], [184.5, 1213.5], [187.5, 1213.5], [187.5, 1214.5], [191.5, 1215.5], [188.5, 1216.5], [184.5, 1217.5], [176.5, 1225.5], [211.5, 1225.5], [207.5, 1221.5], [203.5, 1219.5], [202.5, 1216.5], [192.5, 1216.5], [192.5, 1215.5], [192.5, 1214.5], [198.5, 1214.5], [201.5, 1213.5], [202.5, 1212.5], [199.5, 1209.5], [199.5, 1208.5], [202.5, 1208.5], [206.5, 1207.5], [207.5, 1206.5], [207.5, 1204.5], [209.5, 1203.5], [208.5, 1202.5], [207.5, 1202.5], [207.5, 1198.5], [204.5, 1198.5], [204.5, 1193.5], [203.5, 1192.5], [202.5, 1192.5], [197.5, 1196.5], [196.5, 1194.5], [193.5, 1191.5], [190.5, 1195.5], [187.5, 1195.5], [184.5, 1192.5], [183.5, 1192.5], [182.5, 1193.5], [182.5, 1194.5], [183.5, 1195.5], [183.5, 1196.5], [182.5, 1196.5], [182.5, 1198.5], [178.5, 1198.5]]}, +{"id": "txhvcn", "submitted_by": "Kalamanga1337", "name": "Ukrainian pepe", "description": "Small Ukrainian pepe I've been trying to do since day 1 but failed every time. Thanks to green lattice community for letting me build it in their area. 7th time`s a charm i guess", "website": "", "subreddit": "", "center": [1163.5, 435.5], "path": [[1160.5, 431.5], [1167.5, 431.5], [1166.5, 440.5], [1160.5, 440.5]]}, +{"id": "txhuwk", "submitted_by": "RealMan_Gelo", "name": "Ninjabrain", "description": "Top Minecraft speedrunner and innovator. Fastest to beat Minecraft with 1HP on hardcore mode. Invented one of the fastest methods to travel to the stronghold (Axis Calculated). Designed the fastest route for the treasure bastion at the time (Ninjabrain Route).", "website": "https://www.youtube.com/c/Ninjabrain", "subreddit": "", "center": [1495.5, 1450.5], "path": [[1491.5, 1446.5], [1498.5, 1446.5], [1498.5, 1453.5], [1491.5, 1453.5]]}, +{"id": "txhu4z", "submitted_by": "YamikaDesu", "name": "YamikaDesu", "description": "Fursona of YamikaDesu a Furry music compositor and game developer", "website": "https://www.twitter.com/yamikadesu", "subreddit": "/r/yamikadesu", "center": [986.5, 1928.5], "path": [[982.5, 1925.5], [990.5, 1925.5], [990.5, 1931.5], [982.5, 1931.5], [982.5, 1925.5]]}, +{"id": "txhtyf", "submitted_by": "Ok-Value1250", "name": "Mineclub premium token", "description": "this is one of 2 artworks by the mineclub community, this one is the premium token ingame. mineclub is a minecraft server", "website": "", "subreddit": "/r/mineclub", "center": [744.5, 1753.5], "path": [[741.5, 1751.5], [747.5, 1751.5], [745.5, 1757.5], [742.5, 1755.5], [742.5, 1755.5]]}, +{"id": "txhtmi", "submitted_by": "FormularSumo", "name": "Phrog", "description": "Phrog Discord server/esports team", "website": "https://www.instagram.com/officialphrog.esports/", "subreddit": "", "center": [1050.5, 1641.5], "path": [[1045.5, 1639.5], [1045.5, 1643.5], [1053.5, 1643.5], [1055.5, 1639.5], [1045.5, 1639.5]]}, +{"id": "txhtbk", "submitted_by": "LostDog_88", "name": "India Gate", "description": "The India Gate is a war memorial located astride the Rajpath, on the eastern edge of the ceremonial axis of New Delhi, formerly called Kingsway.", "website": "https://en.wikipedia.org/wiki/India_Gate", "subreddit": "/r/IndiaPlace", "center": [77.5, 1199.5], "path": [[60.5, 1184.5], [60.5, 1192.5], [59.5, 1193.5], [59.5, 1195.5], [61.5, 1195.5], [61.5, 1224.5], [60.5, 1224.5], [60.5, 1225.5], [61.5, 1225.5], [61.5, 1224.5], [63.5, 1224.5], [63.5, 1225.5], [75.5, 1225.5], [73.5, 1224.5], [71.5, 1224.5], [71.5, 1204.5], [73.5, 1203.5], [81.5, 1203.5], [82.5, 1203.5], [82.5, 1223.5], [79.5, 1225.5], [96.5, 1225.5], [93.5, 1223.5], [93.5, 1196.5], [95.5, 1196.5], [94.5, 1195.5], [95.5, 1194.5], [93.5, 1194.5], [93.5, 1186.5], [92.5, 1185.5], [89.5, 1185.5], [89.5, 1179.5], [88.5, 1178.5], [86.5, 1176.5], [82.5, 1176.5], [82.5, 1175.5], [71.5, 1175.5], [71.5, 1176.5], [68.5, 1176.5], [68.5, 1178.5], [68.5, 1178.5], [65.5, 1178.5], [65.5, 1181.5], [64.5, 1181.5], [64.5, 1182.5], [65.5, 1182.5], [65.5, 1185.5], [60.5, 1185.5], [60.5, 1184.5]]}, +{"id": "txhtb1", "submitted_by": "New_Climate_9512", "name": "HAPE LOGO", "description": "Launched by the HAPE Community, a famous NFT/Crypto project.", "website": "https://www.meta-legends.com/", "subreddit": "", "center": [394.5, 1556.5], "path": [[403.5, 1554.5], [403.5, 1558.5], [384.5, 1558.5], [384.5, 1554.5]]}, +{"id": "txhs3n", "submitted_by": "SnooAvocados5282", "name": "Two Lover\u00b4s best try", "description": "me and my girlfriend were triying to draw a heart on r/place. \nluckly a nice gamer community let us draw it here", "website": "", "subreddit": "/r/SnooAvocados5282", "center": [1807.5, 329.5], "path": [[1805.5, 327.5], [1804.5, 328.5], [1804.5, 330.5], [1805.5, 331.5], [1806.5, 332.5], [1807.5, 333.5], [1808.5, 332.5], [1809.5, 331.5], [1810.5, 330.5], [1810.5, 328.5], [1809.5, 328.5], [1808.5, 327.5], [1806.5, 327.5], [1805.5, 327.5]]}, +{"id": "txi44h", "submitted_by": "CrazyPenks", "name": "Am Yisrael Chai", "description": "\"Am Yisrael Chai\" (in hebrew: \u05e2\u05dd \u05d9\u05e9\u05e8\u05d0\u05dc \u05d7\u05d9) is a common sentence from a simple song expression the indomitable spirit of the Jewish People, surviving againts all odds and keeping \"their father\", namely God alive in thought and practice.", "website": "", "subreddit": "/r/israel, /r/ani_bm", "center": [1548.5, 454.5], "path": [[1531.5, 446.5], [1561.5, 447.5], [1533.5, 456.5], [1532.5, 457.5], [1532.5, 447.5], [1560.5, 448.5], [1560.5, 470.5], [1551.5, 470.5], [1550.5, 460.5], [1538.5, 453.5], [1560.5, 475.5]]}, +{"id": "txi43o", "submitted_by": "ectoplazmatic7129", "name": "amogi blake", "description": "includes the largest hint that these amogi are related to rwby and the only reason i know about them as well", "website": "", "subreddit": "", "center": [516.5, 1697.5], "path": [[514.5, 1694.5], [514.5, 1700.5], [518.5, 1700.5], [518.5, 1699.5], [519.5, 1699.5], [519.5, 1696.5], [518.5, 1696.5], [518.5, 1695.5], [518.5, 1694.5], [514.5, 1694.5]]}, +{"id": "txi3z6", "submitted_by": "mecpine", "name": "PTT(Podding Through Time)", "description": "Logo of Podding Through Time ", "website": "https://www.poddingthroughtime.com/", "subreddit": "", "center": [197.5, 312.5], "path": [[189.5, 308.5], [203.5, 316.5], [203.5, 308.5], [189.5, 308.5], [189.5, 316.5], [203.5, 316.5], [203.5, 308.5], [189.5, 308.5], [189.5, 316.5]]}, +{"id": "txi3t4", "submitted_by": "Jazzbone1", "name": "Niko", "description": "Niko is the main character of the indie game Oneshot. Here, he is depicted holding the lightbulb sun of the wastelands. This was one of the first pieces of artwork to appear on the canvas, and it managed to last all four days without being replaced.", "website": "", "subreddit": "/r/oneshot", "center": [921.5, 267.5], "path": [[912.5, 253.5], [931.5, 253.5], [932.5, 274.5], [926.5, 283.5], [917.5, 283.5], [911.5, 272.5], [911.5, 253.5]]}, +{"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": "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\u2019s 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\u2019s 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]]}, +{"id": "txi0sm", "submitted_by": "surfacefusion", "name": "SURFACEFUSION", "description": "The Minecraft skin of SURFACEFUSION, a small Minecraft YouTuber known for his Infinity snapshot survival series and his involvement in ELSEWHERE SMP.", "website": "https://youtube.com/SURFACEFUSIONmc", "subreddit": "", "center": [1160.5, 1779.5], "path": [[1155.5, 1773.5], [1164.5, 1773.5], [1164.5, 1784.5], [1155.5, 1784.5]]}, +{"id": "txi0ns", "submitted_by": "ScorpiaxCube5", "name": "Shiny Ditto (Pokemon)", "description": "This is a picture of the pokemon Ditto with its shiny colouration", "website": "https://bulbapedia.bulbagarden.net/wiki/Ditto_(Pok%C3%A9mon)#Sprites", "subreddit": "/r/pokemon", "center": [1323.5, 75.5], "path": [[1317.5, 69.5], [1317.5, 69.5], [1317.5, 69.5], [1317.5, 69.5], [1314.5, 79.5], [1327.5, 83.5], [1332.5, 74.5], [1328.5, 69.5], [1326.5, 68.5], [1318.5, 68.5], [1317.5, 69.5]]}, +{"id": "txi0fe", "submitted_by": "wiredhenry", "name": "GZE ", "description": "Made by the graduating highschool grade of the GZE, a german highschool, to unify once again before graduating.", "website": "https://www.gze-ni.de", "subreddit": "", "center": [1166.5, 1755.5], "path": [[1174.5, 1759.5], [1175.5, 1751.5], [1158.5, 1751.5], [1158.5, 1759.5]]}, +{"id": "txi0bw", "submitted_by": "SchrodingerBoy", "name": "Juan Defenders", "description": "A group of catalan friends that tried to mantain the name of their group chat inside the Spanish flag.", "website": "", "subreddit": "", "center": [1706.5, 284.5], "path": [[1698.5, 287.5], [1714.5, 287.5], [1714.5, 281.5], [1698.5, 281.5]]}, +{"id": "txi04c", "submitted_by": "-pm-me-titties", "name": "Cyan Fox", "description": "A simple icon of a fox on purple background. ", "website": "https://github.com/Mrdrakert/", "subreddit": "/r/szweka", "center": [928.5, 1357.5], "path": [[921.5, 1350.5], [921.5, 1364.5], [935.5, 1364.5], [935.5, 1350.5]]}, +{"id": "txhznw", "submitted_by": "Petroid2470", "name": "Wii logo ", "description": "It's the Wii logo (someone modified it so it says W\u00fc but it's the Wii anyways)", "website": "", "subreddit": "", "center": [1395.5, 727.5], "path": [[1389.5, 723.5], [1389.5, 730.5], [1401.5, 730.5], [1401.5, 723.5], [1389.5, 723.5]]}, +{"id": "txhzhn", "submitted_by": "LostDog_88", "name": "The mighty Himalayas", "description": "This represents the mighty himalayas, and kashmir which is a territory of Bharat(India)", "website": "https://en.wikipedia.org/wiki/Himalayas", "subreddit": "/r/IndiaPlace", "center": [293.5, 1212.5], "path": [[244.5, 1225.5], [270.5, 1192.5], [271.5, 1191.5], [271.5, 1186.5], [276.5, 1186.5], [276.5, 1188.5], [271.5, 1188.5], [271.5, 1192.5], [281.5, 1200.5], [286.5, 1194.5], [286.5, 1189.5], [291.5, 1189.5], [291.5, 1191.5], [286.5, 1191.5], [286.5, 1194.5], [288.5, 1195.5], [291.5, 1199.5], [295.5, 1197.5], [295.5, 1191.5], [300.5, 1191.5], [300.5, 1193.5], [295.5, 1193.5], [295.5, 1197.5], [301.5, 1197.5], [304.5, 1199.5], [308.5, 1196.5], [308.5, 1192.5], [310.5, 1192.5], [310.5, 1194.5], [308.5, 1194.5], [308.5, 1196.5], [310.5, 1196.5], [310.5, 1206.5], [341.5, 1206.5], [341.5, 1224.5], [244.5, 1225.5]]}, +{"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\u2019s 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. \ud83e\udd2f", "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]]}, +{"id": "txi7g7", "submitted_by": "hyena-", "name": "Triheart of Malaysia, Singapore and Bangladesh", "description": "3rd Iteration of a heart between the 3 countries. Started off initially as 2 separate hearts and was merged into 1 with the combined effort of r/singapore, r/malaysia and r/bangladesh, this was then moved downwards after all 3 countries had expanded their borders with the 3rd canvas expansion.", "website": "", "subreddit": "", "center": [323.5, 983.5], "path": [[317.5, 978.5], [320.5, 978.5], [320.5, 979.5], [321.5, 979.5], [321.5, 980.5], [325.5, 980.5], [325.5, 979.5], [326.5, 979.5], [326.5, 978.5], [329.5, 978.5], [329.5, 979.5], [330.5, 979.5], [330.5, 980.5], [331.5, 980.5], [331.5, 984.5], [330.5, 984.5], [330.5, 985.5], [329.5, 985.5], [328.5, 986.5], [328.5, 987.5], [327.5, 987.5], [327.5, 988.5], [326.5, 988.5], [326.5, 989.5], [325.5, 989.5], [325.5, 990.5], [324.5, 990.5], [324.5, 991.5], [322.5, 991.5], [322.5, 990.5], [321.5, 990.5], [321.5, 989.5], [320.5, 989.5], [320.5, 988.5], [319.5, 988.5], [319.5, 987.5], [318.5, 987.5], [318.5, 986.5], [317.5, 986.5], [317.5, 985.5], [316.5, 985.5], [315.5, 984.5], [315.5, 980.5], [316.5, 980.5], [316.5, 979.5]]}, +{"id": "txi7cm", "submitted_by": "ectoplazmatic7129", "name": "amogi ozpin", "description": "headmaster of beacon academy and banged the big bad evil lady in the time of gods", "website": "", "subreddit": "", "center": [503.5, 1697.5], "path": [[505.5, 1694.5], [501.5, 1694.5], [501.5, 1695.5], [500.5, 1695.5], [500.5, 1698.5], [501.5, 1698.5], [501.5, 1700.5], [505.5, 1700.5], [505.5, 1694.5]]}, +{"id": "txi74s", "submitted_by": "SubAccOfSecrets", "name": "Hunter x Hunter banner", "description": "The logo of the show for the anime Hunter x Hunter, based on the manga by Togashi Yoshihiro. There are two anime adaptations (1999 and 2011) both have concluded after catching up with the manga. The manga has been on hiatus for a little over 3 years as of 2022. The fanbase is smaller, but still active, and we worked together to make this humble banner! We hope for Togashi's recovery and the return of the manga!", "website": "https://discord.gg/sCwSxCBj2D", "subreddit": "/r/HunterxHunter", "center": [1599.5, 683.5], "path": [[1581.5, 676.5], [1589.5, 676.5], [1597.5, 676.5], [1606.5, 676.5], [1614.5, 676.5], [1618.5, 677.5], [1615.5, 681.5], [1617.5, 684.5], [1619.5, 689.5], [1608.5, 689.5], [1598.5, 689.5], [1591.5, 689.5], [1586.5, 690.5], [1582.5, 688.5], [1581.5, 688.5]]}, +{"id": "txi6ij", "submitted_by": "ectoplazmatic7129", "name": "the rwby amogus", "description": "originally they were random amogi but some individuals from r/RWBY decided to colour code these to be the cast of RWBY. this easter egg is was mostly unknown to even be apart of rwby by even most of r/RWBY itself", "website": "", "subreddit": "", "center": [517.5, 1695.5], "path": [[501.5, 1700.5], [501.5, 1698.5], [500.5, 1698.5], [500.5, 1695.5], [501.5, 1695.5], [501.5, 1694.5], [505.5, 1694.5], [505.5, 1695.5], [510.5, 1695.5], [510.5, 1687.5], [515.5, 1687.5], [515.5, 1694.5], [518.5, 1694.5], [518.5, 1695.5], [526.5, 1695.5], [526.5, 1686.5], [530.5, 1686.5], [530.5, 1687.5], [531.5, 1687.5], [531.5, 1690.5], [530.5, 1690.5], [530.5, 1691.5], [531.5, 1691.5], [531.5, 1694.5], [530.5, 1694.5], [530.5, 1695.5], [531.5, 1695.5], [531.5, 1698.5], [530.5, 1698.5], [530.5, 1700.5], [501.5, 1700.5]]}, +{"id": "txi5sp", "submitted_by": "FarizGaming", "name": "r/Indonesia Pancasila Symbols", "description": "Supposed to be the 5 symbols from the Garuda Pancasila, but destroyed.", "website": "", "subreddit": "/r/Indonesia", "center": [107.5, 779.5], "path": [[89.5, 777.5], [125.5, 777.5], [125.5, 780.5], [89.5, 780.5]]}, +{"id": "txi5rw", "submitted_by": "SabreYT", "name": "Tophat Koala", "description": "Originally created by /r/Australia, was abandoned by them and turned into a koala with a tophat.", "website": "", "subreddit": "/r/TophatKoala", "center": [1670.5, 624.5], "path": [[1674.5, 621.5], [1666.5, 621.5], [1666.5, 626.5], [1674.5, 626.5]]}, +{"id": "txi5pa", "submitted_by": "Bonaye59", "name": "Hommage \u00e0 Remli & Madroz", "description": "GOOD YEAR 2022 FOR REMLI & MADROZ ( bisous de l'after-cin\u00e9)", "website": "https://twitter.com/Remeli_", "subreddit": "", "center": [1415.5, 1270.5], "path": [[1387.5, 1279.5], [1442.5, 1279.5], [1442.5, 1261.5], [1387.5, 1261.5]]}, +{"id": "txi4hn", "submitted_by": "StarCiller03", "name": "Steve the Duck", "description": "Steven Duck is a little Duck made by some Duck-Enthusiast. Unfortunately his wife Henrietta Duck was taken by the Void during the final hours of the Event.", "website": "", "subreddit": "", "center": [954.5, 1502.5], "path": [[950.5, 1498.5], [957.5, 1498.5], [957.5, 1506.5], [950.5, 1506.5], [950.5, 1498.5]]}, +{"id": "txl87f", "submitted_by": "erderderderd", "name": "Drawception (covered)", "description": "Drawception is an online drawing-and-guessing telephone game.\n\nA small spot next to Marsey the cat was secured by members of the Drawception Discord. It eventually got built over by r/deepwokenplace with the help of YouTuber Agamatsu.", "website": "https://drawception.com/", "subreddit": "/r/drawception", "center": [358.5, 1384.5], "path": [[341.5, 1389.5], [376.5, 1389.5], [376.5, 1388.5], [376.5, 1387.5], [375.5, 1386.5], [374.5, 1385.5], [374.5, 1384.5], [373.5, 1383.5], [373.5, 1382.5], [373.5, 1381.5], [372.5, 1380.5], [372.5, 1379.5], [341.5, 1379.5]]}, +{"id": "txl7lg", "submitted_by": "Demonitized-picture", "name": "Ash Fields", "description": "", "website": "", "subreddit": "", "center": [715.5, 592.5], "path": [[712.5, 588.5], [717.5, 588.5], [717.5, 589.5], [718.5, 589.5], [718.5, 591.5], [719.5, 591.5], [719.5, 593.5], [718.5, 593.5], [718.5, 595.5], [717.5, 595.5], [717.5, 596.5], [712.5, 596.5], [712.5, 595.5], [711.5, 595.5], [711.5, 593.5], [710.5, 593.5], [710.5, 591.5], [711.5, 591.5], [711.5, 589.5], [712.5, 589.5]]}, +{"id": "txl7fb", "submitted_by": "Responsible_Tie7242", "name": "Big Suit David", "description": "Iconic big suit worn by David Byrne in the concert film Stop Making Sense", "website": "", "subreddit": "/r/talkingheads", "center": [537.5, 1401.5], "path": [[531.5, 1394.5], [543.5, 1394.5], [543.5, 1407.5], [531.5, 1407.5]]}, +{"id": "txl7bc", "submitted_by": "ItsVinn", "name": "NiziU", "description": "NiziU is a Japanese-Korean idol girl group formed by JYP Entertainment and Sony Music Entertainment Japan. The group is composed of nine members: Mako, Rio, Maya, Riku, Ayaka, Mayuka, Rima, Miihi and Nina. ", "website": "https://niziu.com/s/n123/?ima=3631", "subreddit": "/r/niziu", "center": [1545.5, 893.5], "path": [[1533.5, 890.5], [1534.5, 890.5], [1556.5, 890.5], [1556.5, 896.5], [1534.5, 896.5], [1534.5, 890.5]]}, +{"id": "txl6wu", "submitted_by": "JoshPoshTheGreat", "name": "Tiny Minecraft Guardian", "description": "A tiny build of a Minecraft guardian", "website": "", "subreddit": "/r/minecraft", "center": [498.5, 1438.5], "path": [[495.5, 1435.5], [495.5, 1441.5], [500.5, 1441.5], [501.5, 1441.5], [501.5, 1435.5]]}, +{"id": "txl6st", "submitted_by": "Demonitized-picture", "name": "Origin", "description": "", "website": "", "subreddit": "", "center": [708.5, 588.5], "path": [[705.5, 584.5], [710.5, 584.5], [710.5, 585.5], [711.5, 585.5], [711.5, 587.5], [712.5, 587.5], [712.5, 589.5], [711.5, 589.5], [711.5, 591.5], [710.5, 591.5], [710.5, 592.5], [705.5, 592.5], [705.5, 591.5], [704.5, 591.5], [704.5, 589.5], [703.5, 589.5], [703.5, 587.5], [704.5, 587.5], [704.5, 585.5], [705.5, 585.5]]}, +{"id": "txl6jz", "submitted_by": "Phezzy4", "name": "Socki", "description": "A trademark of streamer Reved. \"Socki\", a white sock with a smiley, consisting of black eyes and a friendly corner of the mouth, which was formerly used as a pop protection and still serves as a mascot today", "website": "https://www.twitch.tv/revedtv", "subreddit": "/r/Reved", "center": [1339.5, 1791.5], "path": [[1332.5, 1800.5], [1345.5, 1800.5], [1345.5, 1782.5], [1332.5, 1782.5]]}, +{"id": "txl6ca", "submitted_by": "Bod9001", "name": "Unitystation Reddit", "description": "one of the SS13, communities that worked with SS13 and SS14 to bring the ss13 spot to the canvas, Unitystation\n", "website": "https://unitystation.org/", "subreddit": "/r/unitystation", "center": [1715.5, 585.5], "path": [[1704.5, 582.5], [1726.5, 582.5], [1726.5, 588.5], [1704.5, 588.5]]}, +{"id": "txl69a", "submitted_by": "Demonitized-picture", "name": "Fisherman's row", "description": "", "website": "", "subreddit": "", "center": [708.5, 580.5], "path": [[705.5, 576.5], [710.5, 576.5], [710.5, 577.5], [711.5, 577.5], [711.5, 579.5], [712.5, 579.5], [712.5, 581.5], [711.5, 581.5], [711.5, 583.5], [710.5, 583.5], [710.5, 584.5], [705.5, 584.5], [705.5, 583.5], [704.5, 583.5], [704.5, 581.5], [703.5, 581.5], [703.5, 579.5], [704.5, 579.5], [704.5, 577.5], [705.5, 577.5]]}, +{"id": "txl681", "submitted_by": "xRGTMX", "name": "Nintendo Switch", "description": "As of 2022, the latest mainline video game console by Nintendo.", "website": "https://www.nintendo.com/", "subreddit": "/r/nintendo", "center": [1097.5, 904.5], "path": [[1087.5, 899.5], [1107.5, 899.5], [1109.5, 901.5], [1109.5, 906.5], [1107.5, 908.5], [1087.5, 908.5], [1085.5, 906.5], [1085.5, 901.5]]}, +{"id": "txl63n", "submitted_by": "InEnduringGrowStrong", "name": "micro turtle friend", "description": "Someone reached out to the Quebec discords to seek asylum for a tiny turtle design they had and they were welcomed on our beach even though we don't usually keep our ninja turtles there.", "website": "", "subreddit": "", "center": [907.5, 1012.5], "path": [[907.5, 1009.5], [907.5, 1009.5], [910.5, 1009.5], [910.5, 1009.5], [910.5, 1011.5], [910.5, 1011.5], [908.5, 1011.5], [908.5, 1011.5], [908.5, 1014.5], [908.5, 1014.5], [904.5, 1014.5], [904.5, 1014.5], [904.5, 1013.5], [904.5, 1013.5], [905.5, 1011.5], [905.5, 1011.5], [907.5, 1011.5], [907.5, 1011.5], [907.5, 1009.5], [907.5, 1009.5]]}, +{"id": "txl61d", "submitted_by": "xrup", "name": "Tiny map of Slovenia", "description": "Tiny map of Slovenia with Miniature flag of Slovenia", "website": "", "subreddit": "/r/Slovenia", "center": [1313.5, 259.5], "path": [[1307.5, 255.5], [1308.5, 255.5], [1310.5, 254.5], [1311.5, 256.5], [1313.5, 256.5], [1314.5, 255.5], [1316.5, 255.5], [1316.5, 254.5], [1318.5, 254.5], [1319.5, 253.5], [1319.5, 252.5], [1320.5, 252.5], [1321.5, 252.5], [1321.5, 254.5], [1322.5, 256.5], [1320.5, 258.5], [1320.5, 260.5], [1319.5, 260.5], [1318.5, 262.5], [1316.5, 263.5], [1316.5, 264.5], [1317.5, 265.5], [1317.5, 266.5], [1315.5, 266.5], [1314.5, 265.5], [1310.5, 265.5], [1310.5, 266.5], [1309.5, 267.5], [1308.5, 266.5], [1308.5, 265.5], [1307.5, 265.5], [1307.5, 262.5], [1306.5, 261.5], [1306.5, 255.5], [1307.5, 255.5]]}, +{"id": "txl5iw", "submitted_by": "Diamo0n", "name": "Pink heart", "description": "A tiny pink heart in the belgian flag", "website": "", "subreddit": "", "center": [760.5, 664.5], "path": [[762.5, 661.5], [763.5, 661.5], [764.5, 662.5], [764.5, 664.5], [760.5, 668.5], [759.5, 668.5], [755.5, 664.5], [755.5, 662.5], [756.5, 661.5], [758.5, 661.5], [759.5, 662.5], [760.5, 662.5], [761.5, 661.5], [762.5, 661.5]]}, +{"id": "txl5b3", "submitted_by": "Demonitized-picture", "name": "The Oarbreaker Isles", "description": "home to the conclave, better known as the one thing that will take your push and shove it so far up your own ass it does a YMCA", "website": "", "subreddit": "", "center": [708.5, 572.5], "path": [[705.5, 568.5], [710.5, 568.5], [710.5, 569.5], [711.5, 569.5], [711.5, 571.5], [712.5, 571.5], [712.5, 573.5], [711.5, 573.5], [711.5, 575.5], [710.5, 575.5], [710.5, 576.5], [705.5, 576.5], [705.5, 575.5], [704.5, 575.5], [704.5, 573.5], [703.5, 573.5], [703.5, 571.5], [704.5, 571.5], [704.5, 569.5], [705.5, 569.5]]}, +{"id": "txl53m", "submitted_by": "Responsible_Tie7242", "name": "David Byrne's Lamp", "description": "\"I have written a love song, though. In this film, I sing it to a lamp\"\nThe song in question is This Must Be The Place, and in the concert film Stop Making Sense, David Byrne does indeed sing it to this lamp.", "website": "", "subreddit": "/r/TalkingHeads", "center": [545.5, 1386.5], "path": [[544.5, 1380.5], [546.5, 1380.5], [546.5, 1392.5], [544.5, 1392.5]]}, +{"id": "txl50r", "submitted_by": "BaDk23", "name": "IG2I", "description": "French engineering school", "website": "https://ig2i.centralelille.fr/", "subreddit": "/r/ig2i", "center": [1815.5, 304.5], "path": [[1803.5, 299.5], [1827.5, 299.5], [1828.5, 300.5], [1829.5, 303.5], [1831.5, 304.5], [1831.5, 308.5], [1798.5, 308.5], [1800.5, 303.5]]}, +{"id": "txl4ie", "submitted_by": "Spielside8", "name": "Monika \"IQ\" Weiss", "description": "A female Operator in the game Rainbow Six: Siege, from the GSG 9. ", "website": "https://www.ubisoft.com/de-de/game/rainbow-six/siege/game-info/operators/iq", "subreddit": "/r/Rainbow6", "center": [244.5, 1159.5], "path": [[235.5, 1158.5], [235.5, 1154.5], [237.5, 1149.5], [240.5, 1147.5], [242.5, 1146.5], [245.5, 1146.5], [246.5, 1147.5], [250.5, 1149.5], [251.5, 1150.5], [252.5, 1153.5], [253.5, 1155.5], [253.5, 1157.5], [252.5, 1159.5], [251.5, 1160.5], [249.5, 1160.5], [249.5, 1161.5], [250.5, 1162.5], [251.5, 1163.5], [252.5, 1164.5], [252.5, 1165.5], [251.5, 1166.5], [250.5, 1167.5], [251.5, 1168.5], [249.5, 1168.5], [249.5, 1169.5], [249.5, 1171.5], [249.5, 1172.5], [246.5, 1172.5], [245.5, 1172.5], [245.5, 1171.5], [245.5, 1168.5], [243.5, 1168.5], [243.5, 1172.5], [239.5, 1172.5], [239.5, 1168.5], [238.5, 1167.5], [237.5, 1166.5], [237.5, 1164.5], [237.5, 1162.5], [238.5, 1162.5], [239.5, 1161.5], [239.5, 1160.5], [238.5, 1160.5], [236.5, 1160.5], [235.5, 1159.5], [235.5, 1156.5], [235.5, 1156.5]]}, +{"id": "txl4cf", "submitted_by": "Demonitized-picture", "name": "Nevish Line", "description": "", "website": "", "subreddit": "", "center": [708.5, 564.5], "path": [[705.5, 560.5], [710.5, 560.5], [710.5, 561.5], [711.5, 561.5], [711.5, 563.5], [712.5, 563.5], [712.5, 565.5], [711.5, 565.5], [711.5, 567.5], [710.5, 567.5], [710.5, 568.5], [705.5, 568.5], [705.5, 567.5], [704.5, 567.5], [704.5, 565.5], [703.5, 565.5], [703.5, 563.5], [704.5, 563.5], [704.5, 561.5], [705.5, 561.5]]}, +{"id": "txl3mf", "submitted_by": "Bod9001", "name": "Unitystation logo", "description": "a logo representing the unity station project, https://rplace.space/combined/1649108202.png a record of when it wasn't being griefed by bots", "website": "https://unitystation.org/", "subreddit": "/r/unitystation", "center": [841.5, 1618.5], "path": [[837.5, 1615.5], [844.5, 1615.5], [844.5, 1621.5], [837.5, 1621.5], [837.5, 1617.5]]}, +{"id": "txl3kj", "submitted_by": "Demonitized-picture", "name": "Callum's Cape", "description": "", "website": "", "subreddit": "", "center": [715.5, 560.5], "path": [[712.5, 556.5], [717.5, 556.5], [717.5, 557.5], [718.5, 557.5], [718.5, 559.5], [719.5, 559.5], [719.5, 561.5], [718.5, 561.5], [718.5, 563.5], [717.5, 563.5], [717.5, 564.5], [712.5, 564.5], [712.5, 563.5], [711.5, 563.5], [711.5, 561.5], [710.5, 561.5], [710.5, 559.5], [711.5, 559.5], [711.5, 557.5], [712.5, 557.5]]}, +{"id": "txl32q", "submitted_by": "ItsVinn", "name": "Aespa", "description": "is a South Korean girl group formed by SM Entertainment. The group consists of four members: Karina, Giselle, Winter and Ningning. They debuted on November 17, 2020.", "website": "https://www.smtown.com/artist/musician/10766", "subreddit": "/r/aespa", "center": [1519.5, 893.5], "path": [[1516.5, 888.5], [1524.5, 888.5], [1524.5, 897.5], [1514.5, 897.5], [1514.5, 888.5], [1515.5, 889.5], [1524.5, 889.5], [1523.5, 888.5], [1524.5, 897.5], [1514.5, 897.5], [1514.5, 888.5]]}, +{"id": "txl2y0", "submitted_by": "just-wanna-be-comfy", "name": "Gasdsden Flag", "description": "Historical American flag depicting a timber rattlesnake coiled and ready to strike with \"don't tread on me\" written at the bottom. Made by the r/Conservative sub with the help of DSP, Ancap, IsraelFlag and AmericanFlag communities.\n\nThe flag carries the notions of individualism and liberty, embodying anti-authoritarianism and the message, simply put, \"just leave me alone\"...as one may expect r/place took that message personally.\n\nNamed after the politician Christopher Gadsden who designed it in 1775 during the American Revolution as a motto flag against Great Britain, it makes several appearances in Assassin's Creed III as the game takes place during the American Revolution, as well as on the cover of Metallica's fifth studio album which contains the track \"Don't Tread On Me\".", "website": "https://www.reddit.com/r/Conservative/", "subreddit": "/r/Conservative", "center": [1486.5, 514.5], "path": [[1473.5, 501.5], [1498.5, 501.5], [1499.5, 527.5], [1473.5, 527.5]]}, +{"id": "txl2ul", "submitted_by": "Demonitized-picture", "name": "Speaking Woods", "description": "", "website": "", "subreddit": "", "center": [722.5, 556.5], "path": [[719.5, 552.5], [724.5, 552.5], [724.5, 553.5], [725.5, 553.5], [725.5, 555.5], [726.5, 555.5], [726.5, 557.5], [725.5, 557.5], [725.5, 559.5], [724.5, 559.5], [724.5, 560.5], [719.5, 560.5], [719.5, 559.5], [718.5, 559.5], [718.5, 557.5], [717.5, 557.5], [717.5, 555.5], [718.5, 555.5], [718.5, 553.5], [719.5, 553.5]]}, +{"id": "txl2o9", "submitted_by": "Spielside8", "name": "The Logo of Rainbow Six: Siege", "description": "It is a six with a downwards pointed pistol inside of it. Due to the minimal space we had, we had to simplify it a lot but it is still noticable for people who have seen the original before", "website": "https://store.playstation.com/store/api/chihiro/00_09_000/container/AT/de/99/EP0001-CUSA01788_00-AV00000000000041/0/image?_version=00_09_000&platform=chihiro&bg_color=000000&opacity=100&w=360&h=360", "subreddit": "/r/Rainbow6", "center": [254.5, 1163.5], "path": [[253.5, 1159.5], [254.5, 1158.5], [255.5, 1158.5], [256.5, 1159.5], [257.5, 1160.5], [256.5, 1161.5], [255.5, 1161.5], [255.5, 1160.5], [254.5, 1160.5], [254.5, 1161.5], [255.5, 1161.5], [256.5, 1162.5], [257.5, 1163.5], [257.5, 1164.5], [257.5, 1165.5], [256.5, 1166.5], [255.5, 1167.5], [254.5, 1167.5], [253.5, 1166.5], [252.5, 1165.5], [252.5, 1163.5], [252.5, 1162.5], [252.5, 1161.5], [252.5, 1160.5], [253.5, 1159.5]]}, +{"id": "txl2ir", "submitted_by": "Lyrinc", "name": "Pogostuck: Rage With Your Friends", "description": "Pogostuck is a game made by the developer Superku. This artwork includes Pogodude jumping from earth, the Monolith, a mushroom and a bee.", "website": "https://store.steampowered.com/app/688130/Pogostuck_Rage_With_Your_Friends/", "subreddit": "/r/PogoStuck", "center": [1228.5, 810.5], "path": [[1217.5, 802.5], [1217.5, 818.5], [1239.5, 818.5], [1239.5, 805.5], [1241.5, 803.5], [1239.5, 801.5], [1238.5, 801.5], [1237.5, 802.5], [1236.5, 801.5], [1235.5, 801.5], [1234.5, 802.5], [1226.5, 802.5], [1226.5, 803.5], [1225.5, 803.5], [1225.5, 804.5], [1224.5, 804.5], [1223.5, 803.5], [1223.5, 802.5], [1217.5, 802.5]]}, +{"id": "txl1xj", "submitted_by": "Demonitized-picture", "name": "Basin Sionnach", "description": "", "website": "", "subreddit": "", "center": [729.5, 552.5], "path": [[726.5, 556.5], [731.5, 556.5], [731.5, 555.5], [732.5, 555.5], [732.5, 553.5], [733.5, 553.5], [733.5, 551.5], [732.5, 551.5], [732.5, 549.5], [731.5, 549.5], [731.5, 548.5], [726.5, 548.5], [726.5, 549.5], [725.5, 549.5], [725.5, 551.5], [724.5, 551.5], [724.5, 553.5], [725.5, 553.5], [725.5, 555.5], [726.5, 555.5]]}, +{"id": "txl1q8", "submitted_by": "xrup", "name": "Tiny map of Austria", "description": "Tiny map of Austria with Miniature flag of Austria", "website": "", "subreddit": "/r/austria", "center": [1310.5, 248.5], "path": [[1309.5, 242.5], [1312.5, 240.5], [1315.5, 238.5], [1322.5, 241.5], [1324.5, 246.5], [1321.5, 247.5], [1321.5, 252.5], [1318.5, 254.5], [1316.5, 254.5], [1315.5, 255.5], [1314.5, 255.5], [1312.5, 256.5], [1311.5, 256.5], [1310.5, 255.5], [1310.5, 254.5], [1309.5, 254.5], [1308.5, 254.5], [1308.5, 255.5], [1307.5, 255.5], [1306.5, 254.5], [1303.5, 254.5], [1302.5, 255.5], [1300.5, 256.5], [1298.5, 255.5], [1297.5, 252.5], [1294.5, 250.5], [1293.5, 249.5], [1292.5, 249.5], [1292.5, 246.5], [1295.5, 247.5], [1296.5, 247.5], [1298.5, 246.5], [1300.5, 246.5], [1302.5, 247.5], [1304.5, 247.5], [1305.5, 248.5], [1307.5, 244.5], [1308.5, 243.5], [1309.5, 242.5]]}, +{"id": "txl11q", "submitted_by": "Demonitized-picture", "name": "Viper pit", "description": "honey, its 11pm, time for your bridge battle", "website": "", "subreddit": "", "center": [736.5, 564.5], "path": [[733.5, 560.5], [738.5, 560.5], [738.5, 561.5], [739.5, 561.5], [739.5, 563.5], [740.5, 563.5], [740.5, 565.5], [739.5, 565.5], [739.5, 567.5], [738.5, 567.5], [738.5, 568.5], [733.5, 568.5], [733.5, 567.5], [732.5, 567.5], [732.5, 565.5], [731.5, 565.5], [731.5, 563.5], [732.5, 563.5], [732.5, 561.5], [733.5, 561.5]]}, +{"id": "txl11r", "submitted_by": "Voxsyonreddit", "name": "Haunted Mound", "description": "Haunted Mound is a collective and label created by artists Sematary and Ghost Mountain in 2019. The first project associated with the group was the mixtape \"Grave House\" by the two artists. \n\nDuring Haunted mounds short lived time on place 45 people pitched in to create the Harold heart but where un successful.\n\n\nSubmitted by SunHatSoren.", "website": "https://youtube.com/channel/UCSkQGzhmKjsCmlK2q5rPRKw", "subreddit": "/r/HauntedMound", "center": [445.5, 1453.5], "path": [[435.5, 1448.5], [436.5, 1459.5], [454.5, 1459.5], [453.5, 1447.5]]}, +{"id": "txkzjo", "submitted_by": "Demonitized-picture", "name": "Weathered Expanse", "description": "", "website": "", "subreddit": "", "center": [743.5, 568.5], "path": [[740.5, 564.5], [745.5, 564.5], [745.5, 565.5], [746.5, 565.5], [746.5, 567.5], [747.5, 567.5], [747.5, 569.5], [746.5, 569.5], [746.5, 571.5], [745.5, 571.5], [745.5, 572.5], [740.5, 572.5], [740.5, 571.5], [739.5, 571.5], [739.5, 569.5], [738.5, 569.5], [738.5, 568.5], [739.5, 567.5], [739.5, 565.5], [740.5, 565.5]]}, +{"id": "txkz0k", "submitted_by": "Spielside8", "name": "Marius \"J\u00e4ger\" Streicher", "description": "A german character from the tactical shooter Rainbow Six Siege", "website": "https://www.ubisoft.com/de-de/game/rainbow-six/siege/game-info/operators/jager", "subreddit": "/r/Rainbow6", "center": [264.5, 1159.5], "path": [[254.5, 1153.5], [257.5, 1151.5], [257.5, 1149.5], [263.5, 1148.5], [269.5, 1148.5], [271.5, 1149.5], [272.5, 1152.5], [274.5, 1154.5], [274.5, 1156.5], [274.5, 1158.5], [271.5, 1159.5], [269.5, 1161.5], [270.5, 1162.5], [270.5, 1164.5], [271.5, 1166.5], [270.5, 1168.5], [269.5, 1169.5], [269.5, 1171.5], [268.5, 1172.5], [265.5, 1172.5], [265.5, 1170.5], [265.5, 1169.5], [263.5, 1169.5], [263.5, 1172.5], [260.5, 1172.5], [258.5, 1172.5], [259.5, 1168.5], [258.5, 1167.5], [257.5, 1165.5], [257.5, 1163.5], [259.5, 1162.5], [259.5, 1161.5], [257.5, 1159.5], [256.5, 1158.5], [254.5, 1155.5], [254.5, 1153.5]]}, +{"id": "txkyqq", "submitted_by": "Demonitized-picture", "name": "Endless Shore", "description": "", "website": "", "subreddit": "", "center": [743.5, 576.5], "path": [[740.5, 572.5], [745.5, 572.5], [745.5, 573.5], [746.5, 573.5], [746.5, 575.5], [747.5, 575.5], [747.5, 577.5], [746.5, 577.5], [746.5, 579.5], [745.5, 579.5], [745.5, 580.5], [740.5, 580.5], [740.5, 579.5], [739.5, 579.5], [739.5, 577.5], [738.5, 577.5], [738.5, 575.5], [739.5, 575.5], [739.5, 573.5], [740.5, 573.5]]}, +{"id": "txkyln", "submitted_by": "Responsible_Tie7242", "name": "Remain In Light", "description": "Remain In Light (1980) is the fourth studio album by American rock band Talking Heads", "website": "", "subreddit": "/r/TalkingHeads", "center": [553.5, 1386.5], "path": [[558.5, 1380.5], [547.5, 1380.5], [547.5, 1392.5], [558.5, 1392.5]]}, +{"id": "txky1w", "submitted_by": "Demonitized-picture", "name": "Allod's Bight", "description": "", "website": "", "subreddit": "", "center": [743.5, 584.5], "path": [[740.5, 580.5], [745.5, 580.5], [745.5, 581.5], [746.5, 581.5], [746.5, 583.5], [747.5, 583.5], [747.5, 585.5], [746.5, 585.5], [746.5, 587.5], [745.5, 587.5], [745.5, 588.5], [740.5, 588.5], [740.5, 587.5], [739.5, 587.5], [739.5, 585.5], [738.5, 585.5], [738.5, 583.5], [739.5, 583.5], [739.5, 581.5], [740.5, 581.5]]}, +{"id": "txkx4r", "submitted_by": "Demonitized-picture", "name": "Shackled Chasm", "description": "", "website": "", "subreddit": "", "center": [736.5, 588.5], "path": [[733.5, 584.5], [738.5, 584.5], [738.5, 585.5], [739.5, 585.5], [739.5, 587.5], [740.5, 587.5], [740.5, 589.5], [739.5, 589.5], [739.5, 591.5], [738.5, 591.5], [738.5, 592.5], [733.5, 592.5], [733.5, 591.5], [732.5, 591.5], [732.5, 589.5], [731.5, 589.5], [731.5, 587.5], [732.5, 587.5], [732.5, 585.5], [733.5, 585.5]]}, +{"id": "txkwdo", "submitted_by": "Demonitized-picture", "name": "Great March", "description": "", "website": "", "subreddit": "", "center": [729.5, 592.5], "path": [[726.5, 588.5], [731.5, 588.5], [731.5, 589.5], [732.5, 589.5], [732.5, 591.5], [733.5, 591.5], [733.5, 593.5], [732.5, 593.5], [732.5, 595.5], [731.5, 595.5], [731.5, 596.5], [726.5, 596.5], [726.5, 595.5], [725.5, 595.5], [725.5, 593.5], [724.5, 593.5], [724.5, 591.5], [725.5, 591.5], [725.5, 589.5], [726.5, 589.5]]}, +{"id": "txkw45", "submitted_by": "mokeduck", "name": "Grove City College", "description": "The project here was a miniaturized version of the Grove City College crest, and a secondary project to fit the letters \"gcc\" below it. 4 students and one alumnus helped to create and preserve this project. It was pristine until about an hour before r/place ended, but it is still recognizable later, with the \"gc\" preserved.", "website": "https://www.gcc.edu/", "subreddit": "", "center": [1598.5, 1339.5], "path": [[1595.5, 1343.5], [1595.5, 1334.5], [1600.5, 1334.5], [1600.5, 1340.5], [1602.5, 1340.5], [1602.5, 1344.5], [1599.5, 1344.5], [1599.5, 1343.5], [1595.5, 1343.5]]}, +{"id": "txkw2u", "submitted_by": "RavFromLanz", "name": "MAL/AOP", "description": "MyAnimeList logo made by club AOP An Otaku's Paradise.", "website": "https://myanimelist.net/clubs.php?cid=74201", "subreddit": "/r/MyAnimeList", "center": [831.5, 1446.5], "path": [[809.5, 1440.5], [809.5, 1453.5], [853.5, 1453.5], [854.5, 1440.5]]}, +{"id": "txkvnl", "submitted_by": "Demonitized-picture", "name": "The Heartlands", "description": "", "website": "", "subreddit": "", "center": [722.5, 588.5], "path": [[719.5, 584.5], [724.5, 584.5], [724.5, 585.5], [725.5, 585.5], [725.5, 587.5], [726.5, 587.5], [726.5, 589.5], [725.5, 589.5], [725.5, 591.5], [724.5, 591.5], [724.5, 592.5], [719.5, 592.5], [719.5, 591.5], [718.5, 591.5], [718.5, 589.5], [717.5, 589.5], [717.5, 587.5], [718.5, 587.5], [718.5, 585.5], [719.5, 585.5]]}, +{"id": "txkv8z", "submitted_by": "Seaplant13", "name": "Oregon State University", "description": "The logo for Oregon State University and its mascot, the Beavers.", "website": "https://osubeavers.com/", "subreddit": "/r/oregonstate", "center": [336.5, 1611.5], "path": [[325.5, 1600.5], [346.5, 1600.5], [346.5, 1621.5], [325.5, 1621.5]]}, +{"id": "txkuvz", "submitted_by": "Responsible_Tie7242", "name": "Speaking In Tongues", "description": "Speaking in Tongues (1983) is the fifth studio album by American rock band Talking Heads", "website": "", "subreddit": "/r/TalkingHeads", "center": [537.5, 1386.5], "path": [[531.5, 1380.5], [543.5, 1380.5], [543.5, 1392.5], [531.5, 1392.5]]}, +{"id": "txkuin", "submitted_by": "Demonitized-picture", "name": "Westgate", "description": "", "website": "", "subreddit": "", "center": [715.5, 584.5], "path": [[712.5, 580.5], [717.5, 580.5], [717.5, 581.5], [718.5, 581.5], [718.5, 583.5], [719.5, 583.5], [719.5, 585.5], [718.5, 585.5], [718.5, 587.5], [717.5, 587.5], [717.5, 588.5], [712.5, 588.5], [712.5, 587.5], [711.5, 587.5], [711.5, 585.5], [710.5, 585.5], [710.5, 583.5], [711.5, 583.5], [711.5, 581.5], [712.5, 581.5]]}, +{"id": "txku7b", "submitted_by": "PrimePacket", "name": "616 Gang", "description": "A small group of friends who managed to make it to the end. ", "website": "", "subreddit": "", "center": [1010.5, 436.5], "path": [[1003.5, 432.5], [1017.5, 432.5], [1017.5, 440.5], [1003.5, 440.5]]}, +{"id": "txku2l", "submitted_by": "WarpABoi", "name": "LBS logo", "description": "A logo for the swedish school LBS", "website": "https://www.lbs.se/", "subreddit": "/r/LBS", "center": [789.5, 1118.5], "path": [[781.5, 1114.5], [796.5, 1114.5], [796.5, 1122.5], [781.5, 1122.5]]}, +{"id": "txku0y", "submitted_by": "Mad5Milk", "name": "Andrew's Pencil", "description": "Eat the pencil Andrew", "website": "", "subreddit": "", "center": [1184.5, 42.5], "path": [[1182.5, 36.5], [1186.5, 36.5], [1186.5, 48.5], [1182.5, 48.5], [1182.5, 36.5]]}, +{"id": "txktoi", "submitted_by": "Demonitized-picture", "name": "Farranac Coast", "description": "Home of the Jade Cove incident of 2018, where on December 26th the warden side fell to infighting on whether or not to nuke its own town to prevent it from falling into enemy hands", "website": "", "subreddit": "", "center": [715.5, 576.5], "path": [[712.5, 572.5], [717.5, 572.5], [717.5, 573.5], [718.5, 573.5], [718.5, 575.5], [719.5, 575.5], [719.5, 577.5], [718.5, 577.5], [718.5, 579.5], [717.5, 579.5], [717.5, 580.5], [712.5, 580.5], [712.5, 579.5], [711.5, 579.5], [711.5, 577.5], [710.5, 577.5], [710.5, 575.5], [711.5, 575.5], [711.5, 573.5], [712.5, 573.5]]}, +{"id": "txkt54", "submitted_by": "Slipry_", "name": "SuperMega PP Amogus", "description": "An amogus with a PP in the P of 'SuperMega'... That's the joke.", "website": "", "subreddit": "", "center": [1908.5, 404.5], "path": [[1904.5, 401.5], [1904.5, 407.5], [1911.5, 407.5], [1911.5, 401.5]]}, +{"id": "txkt1p", "submitted_by": "Dourgent", "name": "Etterna Logo", "description": "Logo added by the community for the 4 key rhythm game Etterna", "website": "https://etternaonline.com/", "subreddit": "", "center": [1526.5, 1594.5], "path": [[1522.5, 1596.5], [1517.5, 1586.5], [1533.5, 1585.5], [1533.5, 1604.5], [1523.5, 1604.5], [1522.5, 1599.5], [1520.5, 1597.5], [1518.5, 1597.5], [1517.5, 1588.5], [1517.5, 1585.5]]}, +{"id": "txksmb", "submitted_by": "poyouli", "name": "Downwell", "description": "main charachter of Downwell, a indie platformer game. He has only his Gunboots for protection and weapon", "website": "", "subreddit": "", "center": [1344.5, 55.5], "path": [[1336.5, 51.5], [1348.5, 51.5], [1349.5, 54.5], [1348.5, 61.5], [1342.5, 60.5], [1340.5, 55.5]]}, +{"id": "txkqnq", "submitted_by": "Responsible_Tie7242", "name": "Talking Heads", "description": "Rock band, this particular logo was used on their seventh album, True Stories (1986).", "website": "", "subreddit": "/r/TalkingHeads", "center": [545.5, 1373.5], "path": [[531.5, 1367.5], [558.5, 1367.5], [558.5, 1378.5], [531.5, 1378.5]]}, +{"id": "txkqhq", "submitted_by": "Appropriate_Let9796", "name": "GwinGlade", "description": "Russian streamer GwinGlade, a member of the 89squad. The art was drawn by Anton T2x2 and his viewers", "website": "", "subreddit": "/r/89squad89", "center": [1987.5, 520.5], "path": [[1974.5, 502.5], [1999.5, 502.5], [1999.5, 539.5], [1976.5, 538.5], [1974.5, 533.5], [1974.5, 533.5]]}, +{"id": "txkqb1", "submitted_by": "salovana", "name": "Hero", "description": "Hero is one of the three deuteragonists in Omori. He was originally created as his headspace version, but was later changed into his normal version, after being wiped out by a streamer.", "website": "https://omori.fandom.com/wiki/HERO", "subreddit": "/r/omori", "center": [1016.5, 836.5], "path": [[1005.5, 821.5], [1026.5, 821.5], [1025.5, 852.5], [1006.5, 851.5], [1005.5, 821.5]]}, +{"id": "txkq7j", "submitted_by": "ThatOneGoldenGuy", "name": "Tact's beer.", "description": "A bottle of beer made for Tact (Tact#3686) from the Narnia discord server. This took well over 10,000 pixels to protect and a lot of peoples help from multiple communities. ", "website": "https://discord.gg/PpvEd83VNP", "subreddit": "", "center": [1111.5, 1066.5], "path": [[1110.5, 1053.5], [1112.5, 1053.5], [1112.5, 1058.5], [1115.5, 1061.5], [1115.5, 1076.5], [1107.5, 1075.5], [1107.5, 1060.5], [1110.5, 1057.5], [1110.5, 1053.5], [1112.5, 1053.5]]}, +{"id": "txkply", "submitted_by": "MTHD2022", "name": "The Cheese", "description": "it stands alone", "website": "", "subreddit": "", "center": [663.5, 1546.5], "path": [[655.5, 1540.5], [655.5, 1551.5], [670.5, 1551.5], [670.5, 1541.5], [670.5, 1540.5], [655.5, 1540.5]]}, +{"id": "txkosa", "submitted_by": "DoorbellTaco", "name": "Sonya - Kill me Baby", "description": "A foreign trained assassin attending a regular high school. As she constantly takes on assassin work she is constantly alert and often attacks Yasuna when she takes her by surprise or tries to play jokes on her. Despite her tough composure, she is scared of various things such as cockroaches, ghosts, wild animals and dogs (even domestic dogs). She also has been shown to care a little for Yasuna.", "website": "https://killmebaby.fandom.com/wiki/Kill_Me_Baby_Wiki", "subreddit": "/r/KillMeBaby", "center": [334.5, 1242.5], "path": [[342.5, 1235.5], [327.5, 1235.5], [327.5, 1249.5], [341.5, 1249.5]]}, +{"id": "txknpb", "submitted_by": "ThatOneGoldenGuy", "name": "The Narnia Discord Server", "description": "This was our first claim on the map, created by the Narnia discord server. We fought many small communities for this land and ended up claiming it.", "website": "https://discord.gg/PpvEd83VNP", "subreddit": "", "center": [851.5, 1643.5], "path": [[841.5, 1635.5], [862.5, 1635.5], [861.5, 1651.5], [855.5, 1649.5], [852.5, 1652.5], [845.5, 1652.5], [839.5, 1645.5], [839.5, 1636.5]]}, +{"id": "txknhp", "submitted_by": "Appropriate_Let9796", "name": "Vasya RazDva", "description": "Russian streamer Vasya RazDva, a member of the 89squad. The art was drawn on his birthday (April 4th) by drakeoffc and his viewers", "website": "", "subreddit": "/r/89squad89", "center": [1986.5, 713.5], "path": [[1973.5, 695.5], [1973.5, 730.5], [1999.5, 731.5], [1999.5, 695.5], [2000.5, 695.5]]}, +{"id": "txkm78", "submitted_by": "Tomlinslay", "name": "Le topipote", "description": "Territoire conquis par la Taup Company lors de la Pixel War. \nMembre de l'\u00e9quipe : Azzios, Choukette, Jeekow, Jeygha, Kod\u00e4cy\nMatvelt, Oloorea, Rasp, Dunets, Willyz\n\nGloire au g\u00e9n\u00e9ral Kamel", "website": "", "subreddit": "", "center": [1561.5, 1286.5], "path": [[1559.5, 1281.5], [1559.5, 1283.5], [1560.5, 1283.5], [1561.5, 1283.5], [1563.5, 1283.5], [1563.5, 1284.5], [1563.5, 1285.5], [1563.5, 1287.5], [1563.5, 1286.5], [1563.5, 1288.5], [1562.5, 1288.5], [1561.5, 1288.5], [1560.5, 1288.5], [1559.5, 1288.5], [1559.5, 1287.5], [1559.5, 1286.5], [1559.5, 1285.5], [1559.5, 1283.5]]}, +{"id": "txkjg9", "submitted_by": "VideoPlayer07", "name": "Quantum moon", "description": "The Quantum Moon is a satellite in the game Outer Wilds known for teleporting around from planet to planet. Similarly to the game, this pixel was moving around the planets on this illustration on the canvas.", "website": "", "subreddit": "/r/outerwilds", "center": [0.5, 0.5], "path": [[1702.5, 646.5], [1704.5, 648.5]]}, +{"id": "txki1v", "submitted_by": "ImASquidNowImAKidNow", "name": "Lagtrain", "description": "Part of the music video for the inabakumori song lagtrain", "website": "", "subreddit": "/r/inabakumori", "center": [1038.5, 1655.5], "path": [[1035.5, 1657.5], [1035.5, 1658.5], [1042.5, 1658.5], [1042.5, 1655.5], [1040.5, 1655.5], [1040.5, 1651.5], [1039.5, 1651.5], [1038.5, 1652.5], [1036.5, 1652.5], [1036.5, 1654.5], [1035.5, 1655.5], [1034.5, 1657.5], [1035.5, 1658.5]]}, +{"id": "txkhov", "submitted_by": "LeonardDM", "name": "LeonardDM", "description": "The glorious one and only redditor and gamer LeonardDM cemented himself in reddit history over here. On display is the head of his minecraft skin as well the word 'LEO'", "website": "https://www.reddit.com/user/LeonardDM", "subreddit": "", "center": [1115.5, 1604.5], "path": [[1110.5, 1596.5], [1110.5, 1611.5], [1119.5, 1611.5], [1119.5, 1596.5]]}, +{"id": "txkhgy", "submitted_by": "miciy5", "name": "Greece", "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://gov.gr/en/sdg", "subreddit": "/r/greece", "center": [1459.5, 1944.5], "path": [[1398.5, 1918.5], [1517.5, 1918.5], [1521.5, 1923.5], [1521.5, 1970.5], [1397.5, 1970.5]]}, +{"id": "txkgyj", "submitted_by": "arrioch", "name": "sunshORB", "description": "Emote by twitch streamer sunshinebread", "website": "https://www.twitch.tv/sunshinebread", "subreddit": "", "center": [1758.5, 696.5], "path": [[1756.5, 691.5], [1753.5, 694.5], [1753.5, 698.5], [1756.5, 701.5], [1760.5, 701.5], [1763.5, 698.5], [1763.5, 694.5], [1760.5, 691.5]]}, +{"id": "txkgn7", "submitted_by": "NoOneAbsolutely1", "name": "Hou (danish town)", "description": "A danish infiltration of the german flag. Put there, is the name of a small danish town called Hou. Planned by a few locals outside any subreddit.", "website": "", "subreddit": "", "center": [1630.5, 838.5], "path": [[1629.5, 834.5], [1631.5, 834.5], [1631.5, 842.5], [1629.5, 842.5]]}, +{"id": "txkg8t", "submitted_by": "Clemclemle100", "name": "CDLB", "description": "CDLB Is a French group of friend named \"Confrerie De La Biture\". At this moment, the Crypto group was invading us transforming our B in an S", "website": "https://www.tiktok.com/@confreriedelabiture", "subreddit": "", "center": [398.5, 1567.5], "path": [[391.5, 1564.5], [404.5, 1564.5], [404.5, 1570.5], [391.5, 1570.5], [391.5, 1564.5]]}, +{"id": "txkfqa", "submitted_by": "miciy5", "name": "Switzerland", "description": "Switzerland, officially the Swiss Confederation, is a landlocked country at the confluence of Western, Central and Southern Europe. ", "website": "https://www.admin.ch/gov/en/start.html", "subreddit": "/r/Switzerland/, ", "center": [271.5, 1948.5], "path": [[291.5, 1926.5], [291.5, 1969.5], [251.5, 1969.5], [251.5, 1927.5]]}, +{"id": "txkfo5", "submitted_by": "besop12", "name": "/r/gunners collaboration with 332 & the University of Pittsburgh", "description": "332; a highly secret, private cybersecurity discord = 332\n\n/r/gunners; a subreddit dedicated to Arsenal Football Club, of London. 49 = 49 undefeated matches in the famous invincible season, 523 = the 523 Rob Holding protocol, a football formation/tactic used by Mikel Arteta to great effect.\n\nUniversity of Pittsburgh; 412 = Pittsburgh area code.", "website": "", "subreddit": "/r/gunners", "center": [1503.5, 1442.5], "path": [[1499.5, 1456.5], [1508.5, 1456.5], [1508.5, 1429.5], [1500.5, 1428.5], [1498.5, 1428.5], [1498.5, 1456.5]]}, +{"id": "txkf8z", "submitted_by": "Demonitized-picture", "name": "Stone Cradle", "description": "", "website": "", "subreddit": "", "center": [715.5, 568.5], "path": [[712.5, 564.5], [717.5, 564.5], [717.5, 565.5], [718.5, 565.5], [718.5, 567.5], [719.5, 567.5], [719.5, 569.5], [718.5, 569.5], [718.5, 571.5], [717.5, 571.5], [717.5, 572.5], [712.5, 572.5], [712.5, 571.5], [711.5, 571.5], [711.5, 569.5], [710.5, 569.5], [710.5, 567.5], [711.5, 567.5], [711.5, 565.5], [712.5, 565.5]]}, +{"id": "txkek9", "submitted_by": "Demonitized-picture", "name": "The Moors", "description": "trench incarnate", "website": "", "subreddit": "", "center": [722.5, 564.5], "path": [[719.5, 560.5], [724.5, 560.5], [724.5, 561.5], [725.5, 561.5], [725.5, 563.5], [726.5, 563.5], [726.5, 565.5], [725.5, 565.5], [725.5, 567.5], [724.5, 567.5], [724.5, 568.5], [719.5, 568.5], [719.5, 567.5], [718.5, 567.5], [718.5, 565.5], [717.5, 565.5], [717.5, 563.5], [718.5, 563.5], [718.5, 561.5], [719.5, 561.5]]}, +{"id": "txkea8", "submitted_by": "TheRBGamer", "name": "Ducks", "description": "A small group of ducks made by people who love ducks.", "website": "", "subreddit": "/r/placeducks", "center": [1779.5, 1722.5], "path": [[1773.5, 1703.5], [1774.5, 1735.5], [1787.5, 1736.5], [1786.5, 1729.5], [1786.5, 1718.5], [1781.5, 1711.5], [1775.5, 1703.5]]}, +{"id": "txke6m", "submitted_by": "ImASquidNowImAKidNow", "name": "J-Music alliance", "description": "Logo of the alliance between multiple J-music groups to create the surrounding art (Eve, Zutomayo, etc) ", "website": "", "subreddit": "", "center": [1143.5, 1709.5], "path": [[1139.5, 1705.5], [1139.5, 1712.5], [1147.5, 1712.5], [1147.5, 1705.5], [1139.5, 1705.5]]}, +{"id": "txkdv5", "submitted_by": "velcom_here", "name": "I am from Austria (song reference)", "description": "I am from Austria is a famous song by Rainhard Fendrich, some see it as a second national anthem. r/Austria created this text, somebody changed it to Asstria.", "website": "", "subreddit": "/r/Austria", "center": [999.5, 275.5], "path": [[965.5, 277.5], [965.5, 273.5], [1032.5, 273.5], [1032.5, 277.5]]}, +{"id": "txkdsr", "submitted_by": "Demonitized-picture", "name": "Reaching Trail", "description": "", "website": "", "subreddit": "", "center": [729.5, 560.5], "path": [[726.5, 556.5], [731.5, 556.5], [731.5, 557.5], [732.5, 557.5], [732.5, 559.5], [733.5, 559.5], [733.5, 561.5], [732.5, 561.5], [732.5, 563.5], [731.5, 563.5], [731.5, 564.5], [726.5, 564.5], [726.5, 563.5], [725.5, 563.5], [725.5, 561.5], [724.5, 561.5], [724.5, 559.5], [725.5, 559.5], [725.5, 557.5], [726.5, 557.5]]}, +{"id": "txkdff", "submitted_by": "TheRBGamer", "name": "two ducks", "description": "My partner and I made the green duck and someone else made the yellow one that stood on its head. this screenshot is showing us in the process of moving the duck to the left in order to give space to the MLP to our rghit", "website": "", "subreddit": "", "center": [1803.5, 1731.5], "path": [[1801.5, 1728.5], [1802.5, 1732.5], [1805.5, 1734.5], [1806.5, 1732.5], [1802.5, 1727.5]]}, +{"id": "txkd33", "submitted_by": "Kreixe", "name": "osu!mania", "description": "osu!mania is a game mode which consists of a piano-like style of clicking notes to the beat, similar to the Beatmania IIDX series. The number of keys ranges from 1 to 9 (2 to 18 with the use of dual stages), with 4 keys and 7 keys being more popular among players", "website": "https://osu.ppy.sh", "subreddit": "/r/osuplace", "center": [749.5, 757.5], "path": [[739.5, 750.5], [757.5, 750.5], [755.5, 765.5], [741.5, 764.5], [741.5, 750.5], [739.5, 749.5]]}, +{"id": "txkcy2", "submitted_by": "Binsento", "name": "Cura\u00e7ao", "description": "The flag and shape of Cura\u00e7ao. A Caribbean island part of the kingdom of the Netherlands.", "website": "https://www.curacao.com/", "subreddit": "/r/curacao", "center": [851.5, 13.5], "path": [[839.5, 1.5], [839.5, 1.5], [841.5, 4.5], [842.5, 2.5], [845.5, 4.5], [846.5, 9.5], [848.5, 10.5], [849.5, 12.5], [851.5, 13.5], [854.5, 14.5], [858.5, 15.5], [860.5, 17.5], [860.5, 18.5], [862.5, 19.5], [863.5, 20.5], [864.5, 21.5], [865.5, 22.5], [861.5, 23.5], [857.5, 19.5], [855.5, 19.5], [851.5, 17.5], [847.5, 13.5], [845.5, 13.5], [842.5, 10.5], [839.5, 7.5], [841.5, 2.5]]}, +{"id": "txkcvf", "submitted_by": "ewokun", "name": "Rawbata", "description": "a restaurant in stockholm, sweden with staff from those 4 countries.", "website": "https://rawbata.se/", "subreddit": "", "center": [1046.5, 1688.5], "path": [[1034.5, 1682.5], [1058.5, 1682.5], [1058.5, 1694.5], [1038.5, 1694.5], [1034.5, 1690.5], [1034.5, 1682.5], [1033.5, 1687.5]]}, +{"id": "txkcou", "submitted_by": "miciy5", "name": "India", "description": "India, officially the Republic of India, is a country in South Asia. It is the seventh-largest country by area, the second-most populous country, and the most populous democracy in the world. ", "website": "https://india.gov.in/ ", "subreddit": "/r/india/, ", "center": [169.5, 1199.5], "path": [[0.5, 1172.5], [0.5, 1225.5], [299.5, 1226.5], [299.5, 1225.5], [307.5, 1216.5], [308.5, 1215.5], [310.5, 1216.5], [310.5, 1220.5], [312.5, 1220.5], [312.5, 1224.5], [341.5, 1224.5], [341.5, 1207.5], [340.5, 1206.5], [341.5, 1173.5]]}, +{"id": "txkckr", "submitted_by": "evaroussel", "name": "Kcaz Inc.", "description": "French group of small streamers and discord server with a unique bot and website that work together. Come check us out (it's all in french though) ! \nhttps://www.twitch.tv/kcazles\nhttps://www.twitch.tv/gowgowlaki\nhttps://www.twitch.tv/chokabl", "website": "https://kcazinc.com/", "subreddit": "", "center": [1000.5, 1681.5], "path": [[996.5, 1677.5], [1002.5, 1677.5], [1002.5, 1683.5], [1006.5, 1683.5], [1006.5, 1685.5], [996.5, 1685.5]]}, +{"id": "txkbne", "submitted_by": "Demonitized-picture", "name": "Callahans Passage", "description": "", "website": "", "subreddit": "", "center": [729.5, 568.5], "path": [[726.5, 564.5], [731.5, 564.5], [731.5, 565.5], [732.5, 565.5], [732.5, 567.5], [733.5, 567.5], [733.5, 569.5], [732.5, 569.5], [732.5, 571.5], [731.5, 571.5], [731.5, 572.5], [726.5, 572.5], [726.5, 571.5], [725.5, 571.5], [725.5, 569.5], [724.5, 569.5], [724.5, 567.5], [725.5, 567.5], [725.5, 565.5], [726.5, 565.5]]}, +{"id": "txkbmt", "submitted_by": "nasho_me", "name": "Condor", "description": "Bolivian national bird", "website": "", "subreddit": "/r/BOLIVIA", "center": [1474.5, 1221.5], "path": [[1470.5, 1232.5], [1474.5, 1228.5], [1469.5, 1225.5], [1469.5, 1223.5], [1467.5, 1221.5], [1464.5, 1218.5], [1461.5, 1218.5], [1461.5, 1216.5], [1464.5, 1212.5], [1465.5, 1209.5], [1466.5, 1208.5], [1471.5, 1208.5], [1473.5, 1210.5], [1473.5, 1213.5], [1474.5, 1215.5], [1477.5, 1216.5], [1479.5, 1217.5], [1479.5, 1218.5], [1484.5, 1223.5], [1486.5, 1226.5], [1487.5, 1227.5], [1489.5, 1228.5], [1493.5, 1230.5], [1479.5, 1231.5], [1477.5, 1232.5], [1474.5, 1232.5], [1473.5, 1232.5]]}, +{"id": "txkbe6", "submitted_by": "EresFox", "name": " Min\u00e4", "description": "A main character of the roguelite Noita made by Finnish game studio Nolla Games.", "website": "https://noitagame.com/", "subreddit": "/r/noita", "center": [600.5, 190.5], "path": [[595.5, 180.5], [603.5, 180.5], [604.5, 176.5], [606.5, 176.5], [606.5, 189.5], [605.5, 196.5], [602.5, 201.5], [592.5, 201.5], [595.5, 195.5], [595.5, 189.5], [597.5, 185.5], [595.5, 180.5]]}, +{"id": "txkaux", "submitted_by": "miciy5", "name": "Grateful dead", "description": "The Grateful Dead was an American rock band formed in 1965 in Palo Alto, California.[1][2] The band is known for its eclectic style, which fused elements of rock, folk, country, jazz, bluegrass, blues, rock and roll, gospel, reggae, world music, and psychedelia;[3][4] for live performances of lengthy instrumental jams that typically incorporated modal and tonal improvisation;[5][6] and for its devoted fan base, known as \"Deadheads\". ", "website": "https://dead.net/", "subreddit": "/r/gratefuldead", "center": [63.5, 919.5], "path": [[0.5, 943.5], [62.5, 943.5], [62.5, 941.5], [93.5, 941.5], [99.5, 929.5], [103.5, 929.5], [104.5, 928.5], [109.5, 928.5], [129.5, 929.5], [130.5, 930.5], [134.5, 931.5], [135.5, 898.5], [57.5, 898.5], [57.5, 905.5], [57.5, 906.5], [42.5, 892.5], [27.5, 906.5], [27.5, 899.5], [0.5, 898.5]]}, +{"id": "txkas6", "submitted_by": "Demonitized-picture", "name": "Marban Hollow", "description": "", "website": "", "subreddit": "", "center": [736.5, 572.5], "path": [[733.5, 576.5], [738.5, 576.5], [738.5, 575.5], [739.5, 575.5], [739.5, 573.5], [740.5, 573.5], [740.5, 571.5], [739.5, 571.5], [739.5, 569.5], [738.5, 569.5], [738.5, 568.5], [733.5, 568.5], [733.5, 569.5], [732.5, 569.5], [732.5, 571.5], [731.5, 571.5], [731.5, 573.5], [732.5, 573.5], [732.5, 575.5], [733.5, 575.5]]}, +{"id": "txk9ta", "submitted_by": "Kustogg", "name": "DDDC Marsey", "description": "A pixelated version of Marsey the Cat from a small friends' discord server called DDDC", "website": "", "subreddit": "", "center": [94.5, 631.5], "path": [[106.5, 639.5], [81.5, 640.5], [80.5, 622.5], [108.5, 622.5], [108.5, 638.5]]}, +{"id": "txk9l7", "submitted_by": "Demonitized-picture", "name": "The Drowned Vale", "description": "", "website": "", "subreddit": "", "center": [736.5, 580.5], "path": [[731.5, 581.5], [731.5, 579.5], [732.5, 579.5], [732.5, 577.5], [733.5, 577.5], [733.5, 576.5], [738.5, 576.5], [738.5, 577.5], [739.5, 577.5], [739.5, 579.5], [740.5, 579.5], [740.5, 581.5], [739.5, 581.5], [739.5, 583.5], [738.5, 583.5], [738.5, 584.5], [733.5, 584.5], [733.5, 583.5], [732.5, 583.5], [732.5, 581.5]]}, +{"id": "txk8x7", "submitted_by": "miciy5", "name": "Tux (linux mascot)", "description": " Tux is a penguin character and the official brand character of the Linux kernel. Originally created as an entry to a Linux logo competition, Tux is the most commonly used icon for Linux, although different Linux distributions depict Tux in various styles. The character is used in many other Linux programs and as a general symbol of Linux. ", "website": "", "subreddit": "/r/placetux", "center": [46.5, 722.5], "path": [[71.5, 679.5], [71.5, 765.5], [20.5, 765.5], [20.5, 679.5]]}, +{"id": "txk8kz", "submitted_by": "Demonitized-picture", "name": "Umbral Wildwood", "description": "", "website": "", "subreddit": "", "center": [729.5, 584.5], "path": [[726.5, 580.5], [731.5, 580.5], [731.5, 581.5], [732.5, 581.5], [732.5, 583.5], [733.5, 583.5], [733.5, 585.5], [732.5, 585.5], [732.5, 587.5], [731.5, 587.5], [731.5, 588.5], [726.5, 588.5], [726.5, 587.5], [725.5, 587.5], [725.5, 585.5], [724.5, 585.5], [724.5, 583.5], [725.5, 583.5], [725.5, 581.5], [726.5, 581.5]]}, +{"id": "txk84i", "submitted_by": "JamiTheFox", "name": "Neotori Logo", "description": "Neotori Is a fantasy sex toy company based in Germany, the logo was created alongside art of their popular dildo, \u201cMundir\u201d\nCaution: NSFW Website", "website": "https://neotori.com", "subreddit": "/r/fantasydildo", "center": [1894.5, 109.5], "path": [[1901.5, 104.5], [1901.5, 114.5], [1891.5, 114.5], [1891.5, 115.5], [1887.5, 115.5], [1887.5, 104.5]]}, +{"id": "txk7vc", "submitted_by": "velcom_here", "name": "Toast to Austrian-Hungarian friendship", "description": "Two glasses of beer under a crown, toasting to the friendship of Austria and Hungary.", "website": "", "subreddit": "/r/Austria", "center": [1171.5, 270.5], "path": [[1171.5, 281.5], [1164.5, 277.5], [1164.5, 264.5], [1171.5, 257.5], [1178.5, 265.5], [1178.5, 278.5]]}, +{"id": "txk7t9", "submitted_by": "Demonitized-picture", "name": "Loch M\u00f3r", "description": "", "website": "", "subreddit": "", "center": [722.5, 580.5], "path": [[719.5, 576.5], [724.5, 576.5], [724.5, 577.5], [725.5, 577.5], [725.5, 579.5], [726.5, 579.5], [726.5, 581.5], [725.5, 581.5], [725.5, 583.5], [724.5, 583.5], [724.5, 584.5], [719.5, 584.5], [719.5, 583.5], [718.5, 583.5], [718.5, 581.5], [717.5, 581.5], [717.5, 579.5], [718.5, 579.5], [718.5, 577.5], [719.5, 577.5]]}, +{"id": "txk7j9", "submitted_by": "dblVegetaMickeyMouse", "name": "Fuck NFTs", "description": "The purpose of this piece was to leave an anti-NFT message on an image that someone would most likely try to mint as an NFT. The original image was a larger blue rectangle, but it was paved over. For the final relocation, which was finished before the end but after the point in time captured in the image you see here, the deepwoken community offered some space they weren't using.", "website": "https://www.reddit.com/r/FuckNFTs/", "subreddit": "/r/fucknftsplace", "center": [421.5, 1345.5], "path": [[441.5, 1339.5], [401.5, 1338.5], [401.5, 1352.5], [442.5, 1352.5]]}, +{"id": "txk7g5", "submitted_by": "miciy5", "name": "Arsenal FC", "description": "Arsenal Football Club is a professional football club based in Islington, London, England", "website": "https://www.arsenal.com/ ", "subreddit": "/r/Gunners", "center": [727.5, 495.5], "path": [[751.5, 483.5], [751.5, 506.5], [703.5, 506.5], [703.5, 483.5]]}, +{"id": "txk6xv", "submitted_by": "GinYuH", "name": "Jharim", "description": "A town NPC from the Calamity's Vanities Mod for Terraria, who originated from the web series, Calamity Paint.", "website": "https://terrariamods.fandom.com/wiki/Calamity%27s_Vanities", "subreddit": "", "center": [1688.5, 550.5], "path": [[1691.5, 556.5], [1684.5, 556.5], [1684.5, 544.5], [1691.5, 544.5], [1691.5, 556.5]]}, +{"id": "txk5d7", "submitted_by": "nasho_me", "name": "Cristo de la Concordia", "description": "Touristic Monument in the bolivian city of Cochabamba", "website": "", "subreddit": "/r/BOLIVIA", "center": [1443.5, 1214.5], "path": [[1439.5, 1221.5], [1439.5, 1212.5], [1433.5, 1212.5], [1432.5, 1210.5], [1433.5, 1209.5], [1438.5, 1209.5], [1439.5, 1208.5], [1441.5, 1206.5], [1442.5, 1205.5], [1442.5, 1202.5], [1444.5, 1202.5], [1444.5, 1205.5], [1447.5, 1208.5], [1448.5, 1208.5], [1449.5, 1209.5], [1453.5, 1209.5], [1456.5, 1210.5], [1454.5, 1211.5], [1446.5, 1211.5], [1446.5, 1228.5]]}, +{"id": "txk4vi", "submitted_by": "Demonitized-picture", "name": "The Linn of Mercy", "description": "", "website": "", "subreddit": "", "center": [722.5, 572.5], "path": [[724.5, 576.5], [724.5, 575.5], [725.5, 575.5], [725.5, 573.5], [726.5, 573.5], [726.5, 571.5], [725.5, 571.5], [725.5, 569.5], [724.5, 569.5], [724.5, 568.5], [719.5, 568.5], [719.5, 569.5], [718.5, 569.5], [718.5, 571.5], [717.5, 571.5], [717.5, 573.5], [718.5, 573.5], [718.5, 575.5], [719.5, 575.5], [719.5, 576.5]]}, +{"id": "txk4tr", "submitted_by": "Firm_Sheepherder_999", "name": "Holly HQ (Trans H)", "description": "A dedicated 7x7 square to shleepzy/Holly HQ and her community. A Pink H with the trans flag as its background. Constantly attacked by transphobes over pixels and chats, it managed to stay strong until the very end. Allied with r/futurama, r/panama, r/IASIP and others, they formed a beautiful alliance and many friendships. Trans Rights!", "website": "https://www.twitch.tv/shleepzy", "subreddit": "", "center": [1235.5, 1957.5], "path": [[1232.5, 1954.5], [1232.5, 1960.5], [1238.5, 1960.5], [1238.5, 1954.5], [1232.5, 1954.5]]}, +{"id": "txk3fw", "submitted_by": "Demonitized-picture", "name": "Deadlands", "description": "the center hex of Foxholes online war, also the most contested in this art piece ", "website": "", "subreddit": "", "center": [729.5, 576.5], "path": [[726.5, 572.5], [731.5, 572.5], [731.5, 573.5], [732.5, 573.5], [732.5, 575.5], [733.5, 575.5], [733.5, 577.5], [732.5, 577.5], [732.5, 579.5], [731.5, 579.5], [731.5, 580.5], [726.5, 580.5], [726.5, 579.5], [725.5, 579.5], [725.5, 577.5], [724.5, 577.5], [724.5, 575.5], [725.5, 575.5], [725.5, 573.5], [726.5, 573.5]]}, +{"id": "txk2r8", "submitted_by": "HealthyDimension8868", "name": "MEDIAVIDA", "description": "SPANISH FORUM", "website": "https://www.mediavida.com", "subreddit": "", "center": [1607.5, 1502.5], "path": [[1621.5, 1484.5], [1620.5, 1519.5], [1595.5, 1519.5], [1594.5, 1519.5], [1594.5, 1486.5]]}, +{"id": "txk1dn", "submitted_by": "Fensi3", "name": "WEiTI", "description": "Wydzia\u0142 Elektroniki i Technik Informacyjnych (WEiTI) - Faculty of Electronics and Information Technology of Warsaw University of Technology ", "website": "https://www.elka.pw.edu.pl/", "subreddit": "", "center": [718.5, 1439.5], "path": [[707.5, 1414.5], [714.5, 1419.5], [718.5, 1414.5], [734.5, 1414.5], [734.5, 1463.5], [700.5, 1463.5], [702.5, 1456.5], [702.5, 1414.5], [707.5, 1414.5]]}, +{"id": "txk0xl", "submitted_by": "Demonitized-picture", "name": "Foxhole", "description": "The interactive war made by r/foxholegame to represent the game foxhole, an MMO war game that has wars between two factions that go on for weeks at a time. this art was made to represent the games map that is made of hexes to decrease server load but is still all one war, but gives a distinctive look so it was put into the art. this was often in the community referred to as either shard 3 or shard 2 (shards are different wars, however shard 2 recently went into hiatus due to minimal players) it was additionally one of the most contested areas on the heatmap, not due to greifing (although there was plenty) but from the heavy competition brewed from the games factionalism and randoms who joined in on the fun", "website": "", "subreddit": "/r/foxholegame", "center": [728.5, 570.5], "path": [[702.5, 533.5], [753.5, 533.5], [753.5, 547.5], [755.5, 547.5], [755.5, 600.5], [755.5, 601.5], [754.5, 601.5], [754.5, 602.5], [753.5, 602.5], [753.5, 607.5], [701.5, 607.5]]}, +{"id": "txk0vh", "submitted_by": "FarOrchid", "name": "Monero-chan", "description": "The unofficial moe mascot of the cryptocurrency Monero holding a Monero coin.", "website": "https://monerochan.art", "subreddit": "/r/monerochan", "center": [1375.5, 1250.5], "path": [[1386.5, 1268.5], [1386.5, 1244.5], [1385.5, 1244.5], [1385.5, 1242.5], [1384.5, 1242.5], [1384.5, 1240.5], [1383.5, 1240.5], [1383.5, 1239.5], [1382.5, 1239.5], [1382.5, 1238.5], [1381.5, 1238.5], [1376.5, 1237.5], [1371.5, 1242.5], [1371.5, 1246.5], [1370.5, 1247.5], [1370.5, 1249.5], [1368.5, 1248.5], [1368.5, 1245.5], [1369.5, 1244.5], [1369.5, 1242.5], [1369.5, 1242.5], [1368.5, 1240.5], [1367.5, 1239.5], [1366.5, 1239.5], [1365.5, 1238.5], [1363.5, 1238.5], [1362.5, 1239.5], [1361.5, 1239.5], [1360.5, 1240.5], [1360.5, 1241.5], [1359.5, 1242.5], [1359.5, 1244.5], [1360.5, 1245.5], [1360.5, 1246.5], [1361.5, 1247.5], [1362.5, 1250.5], [1363.5, 1251.5], [1365.5, 1251.5], [1366.5, 1253.5], [1369.5, 1257.5], [1370.5, 1258.5], [1370.5, 1259.5], [1372.5, 1259.5], [1372.5, 1262.5], [1373.5, 1263.5], [1383.5, 1263.5], [1384.5, 1266.5], [1384.5, 1268.5], [1386.5, 1268.5], [1386.5, 1268.5], [1386.5, 1268.5]]}, +{"id": "txjztl", "submitted_by": "Ok-Boysenberry9855", "name": "Delftsblauw kussend paartje (Delftsblue kissing pair)", "description": "A dutch artwork in the iconic Delftsblauw colour made by r/placenl", "website": "", "subreddit": "/r/placenl", "center": [1540.5, 18.5], "path": [[1556.5, 0.5], [1527.5, 0.5], [1520.5, 6.5], [1529.5, 12.5], [1525.5, 17.5], [1524.5, 19.5], [1518.5, 27.5], [1525.5, 36.5], [1556.5, 35.5], [1560.5, 22.5], [1554.5, 10.5], [1558.5, 6.5], [1556.5, 0.5]]}, +{"id": "txjzng", "submitted_by": "GinYuH", "name": "Blockaroz face", "description": "A piece depicting Terraria Modder, Blockaroz's identifying character's face. It also featured an identically colored amogus hanging off of him before being wiped out by the dragons after over 5 hours of fighting.", "website": "", "subreddit": "", "center": [780.5, 1775.5], "path": [[782.5, 1773.5], [782.5, 1775.5], [783.5, 1775.5], [784.5, 1775.5], [784.5, 1774.5], [786.5, 1774.5], [786.5, 1777.5], [786.5, 1777.5], [786.5, 1776.5], [785.5, 1776.5], [784.5, 1776.5], [784.5, 1777.5], [784.5, 1776.5], [782.5, 1776.5], [782.5, 1778.5], [777.5, 1778.5], [777.5, 1773.5], [782.5, 1773.5]]}, +{"id": "txjywc", "submitted_by": "vantilor", "name": "the armenian flag", "description": "the armenian flag made by a group of friends named le trio armenien ", "website": "", "subreddit": "", "center": [1505.5, 1339.5], "path": [[1503.5, 1338.5], [1503.5, 1340.5], [1506.5, 1340.5], [1506.5, 1338.5]]}, +{"id": "txjwjq", "submitted_by": "t-shinji", "name": "Jhay", "description": "Jhay, a Twitch streamer", "website": "https://www.twitch.tv/Jhay", "subreddit": "", "center": [1157.5, 492.5], "path": [[1153.5, 481.5], [1161.5, 481.5], [1161.5, 503.5], [1153.5, 503.5], [1153.5, 481.5]]}, +{"id": "txjwi6", "submitted_by": "miciy5", "name": "Gravity Falls", "description": "Bill Cipher from Gravity Falls tv show", "website": "https://www.preview.disneyplus.com/series/gravity-falls/HZxayxzMJqed", "subreddit": "/r/gravityfalls", "center": [1030.5, 1949.5], "path": [[1029.5, 1926.5], [1047.5, 1956.5], [1036.5, 1960.5], [1037.5, 1964.5], [1034.5, 1961.5], [1027.5, 1960.5], [1027.5, 1961.5], [1023.5, 1963.5], [1024.5, 1960.5], [1016.5, 1960.5], [1013.5, 1958.5], [1028.5, 1931.5], [1027.5, 1930.5], [1026.5, 1932.5]]}, +{"id": "txjwan", "submitted_by": "SirLinus", "name": "Exilium and Zag holding hands", "description": "The mascots of the guilds Exilium (left) and Zag (right) from the game Black Desert Online holding hands. \nExilium pictures a small blue character with a white-yellow stomach and usually wears a crown on his head. The mascot of Zag pictures the face of the pok\u00e9mon Zigzagoon, which has been slightly destructed before the white-out.\n\nTheir guilds history goes far back starting in 2018 after the fall of the guild Alterium the community mainly split into these 2 communities. A lot of the Ex-Alterium members nowadays play casually and formed bonds outside of the game Black Desert Online but due to its history Exilium and Zag share its roots together which makes them an inseperable couple. ", "website": "", "subreddit": "/r/blackdesertonline", "center": [1303.5, 1966.5], "path": [[1312.5, 1962.5], [1312.5, 1971.5], [1293.5, 1970.5], [1293.5, 1962.5], [1312.5, 1962.5]]}, +{"id": "txjw9b", "submitted_by": "_bird__Crowthebird", "name": "Subbase Delta", "description": "Subbase Delta of r/Philippines. It consists of the DLSU and Ateneo art that was once supposed to attack DLSU.", "website": "https://www.ateneo.edu/", "subreddit": "/r/Philippines", "center": [1488.5, 391.5], "path": [[1481.5, 367.5], [1495.5, 367.5], [1495.5, 416.5], [1481.5, 415.5], [1481.5, 368.5]]}, +{"id": "txjw2g", "submitted_by": "SirFloofAlot", "name": "Soup", "description": "Representation of belgium's love of soup", "website": "", "subreddit": "", "center": [1325.5, 1809.5], "path": [[1320.5, 1800.5], [1329.5, 1799.5], [1330.5, 1819.5], [1321.5, 1817.5], [1320.5, 1799.5]]}, +{"id": "txjv93", "submitted_by": "FIowerBitch", "name": "Dubhar x Drieft alliance", "description": "A small valorant esports team, which collaborated with the Drieft connoisseur to form this DBR ESPORTS logo", "website": "https://youtube.com/channel/UC47BE8B_lWUDfcY18wxHMPQ", "subreddit": "/r/Dubhar", "center": [1098.5, 1697.5], "path": [[1090.5, 1712.5], [1106.5, 1710.5], [1106.5, 1683.5], [1091.5, 1681.5]]}, +{"id": "txjuzk", "submitted_by": "StrangeRedRock", "name": "KITBOGA", "description": "Famous scambaiter over twitch and youtube", "website": "", "subreddit": "/r/kitboga", "center": [1309.5, 1742.5], "path": [[1287.5, 1739.5], [1287.5, 1745.5], [1331.5, 1745.5], [1331.5, 1739.5], [1288.5, 1739.5], [1288.5, 1739.5]]}, +{"id": "txjupr", "submitted_by": "Flashtirade", "name": "Himemori Luna", "description": "A member of Hololive's 4th generation of JP vtubers, notorious for her intentionally infuriating spoiled child-like personality and manner of speech", "website": "", "subreddit": "/r/hololive", "center": [1359.5, 977.5], "path": [[1356.5, 973.5], [1360.5, 973.5], [1361.5, 970.5], [1364.5, 977.5], [1363.5, 981.5], [1355.5, 981.5], [1354.5, 978.5], [1355.5, 974.5], [1356.5, 973.5]]}, +{"id": "txjtpw", "submitted_by": "_bird__Crowthebird", "name": "Base Bravo", "description": "Base Bravo (AKA the Visayas base) of r/Philippines. Includes the artwork \"Tumindig\", the Philippine Tarsier, Zuko and Toph (Twitch streamer Buddha's Shiba Inus), the ASEAN flag, the Myanmar flag, and the Vexillology flag. Once was the space for the Philippine Jeepney now in Base Charlie (Mindanao base) of r/Philippines.", "website": "https://www.twitch.tv/buddha", "subreddit": "/r/Philippines", "center": [1409.5, 631.5], "path": [[1490.5, 600.5], [1335.5, 601.5], [1334.5, 670.5], [1374.5, 672.5], [1375.5, 658.5], [1490.5, 658.5], [1490.5, 601.5]]}, +{"id": "txjtmz", "submitted_by": "Demonitized-picture", "name": "ARSEHOLE Alliance", "description": "An alliance of the communities r/foxholegame and r/gunners, these communities made some of the earliest finished works on r/place. brought together by an early Ukrainian flag that (after seeing the unmoderated early flag that plowed through many other works) allied together to protect each other. after the flag lost steam and fell to ill maintenance, the two communities made the alliance visible with the mixing of the two main words for their communities (foxhole and Arsenal) creating ARSEHOLE. this alliance lasted till the very end against many threats", "website": "", "subreddit": "", "center": [727.5, 545.5], "path": [[701.5, 482.5], [753.5, 482.5], [755.5, 601.5], [754.5, 601.5], [754.5, 602.5], [753.5, 602.5], [753.5, 603.5], [752.5, 603.5], [752.5, 605.5], [752.5, 607.5], [701.5, 607.5]]}, +{"id": "txjs09", "submitted_by": "NtaiRay", "name": "Tomb of the Unknown Soldier", "description": "A French memorial under the Arc de Triomphe to honor the death of millions of fighters of World War I, often unknown, lost, or killed beyond recognition.\n\nThe flame is lit up every evening at 6:30 PM.", "website": "https://en.wikipedia.org/wiki/Arc_de_Triomphe#Tomb_of_the_Unknown_Soldier", "subreddit": "/r/placefrance", "center": [124.5, 1917.5], "path": [[113.5, 1903.5], [113.5, 1931.5], [135.5, 1931.5], [134.5, 1904.5]]}, +{"id": "txjr8a", "submitted_by": "miciy5", "name": "Apex Legends", "description": "Apex Legends is a free-to-play battle royale-hero shooter game developed by Respawn Entertainment and published by Electronic Arts", "website": "https://www.ea.com/games/apex-legends", "subreddit": "/r/apexlegends", "center": [474.5, 1244.5], "path": [[501.5, 1274.5], [501.5, 1213.5], [447.5, 1213.5], [447.5, 1274.5]]}, +{"id": "txjqu9", "submitted_by": "Mynki", "name": "Slime", "description": "Slime gaming community.\nJoin discord.gg/slime", "website": "https://discord.gg/slime", "subreddit": "", "center": [1009.5, 892.5], "path": [[999.5, 887.5], [999.5, 897.5], [1019.5, 897.5], [1019.5, 887.5]]}, +{"id": "txjqce", "submitted_by": "Chemilla_98", "name": "PPORN logo", "description": "Name of a spanish group of friends.", "website": "", "subreddit": "", "center": [1582.5, 1484.5], "path": [[1570.5, 1489.5], [1593.5, 1489.5], [1593.5, 1479.5], [1570.5, 1479.5]]}, +{"id": "txjqad", "submitted_by": "PseudoNope", "name": "Former Fez", "description": "Gomez, the mascot of indie game FEZ was drawn here sleeping before being destroyed by the Netherlands Flag.", "website": "", "subreddit": "/r/FEZ", "center": [1119.5, 27.5], "path": [[1105.5, 21.5], [1105.5, 21.5], [1133.5, 21.5], [1132.5, 34.5], [1105.5, 34.5]]}, +{"id": "txjpa6", "submitted_by": "miciy5", "name": "Qu\u00e9bec", "description": "Qu\u00e9bec subreddit. Tabarnak is swear word.\n\n\n", "website": "https://www.reddit.com/r/Quebec/", "subreddit": "/r/Quebec", "center": [1057.5, 1007.5], "path": [[1083.5, 999.5], [1031.5, 999.5], [1031.5, 1001.5], [1031.5, 1003.5], [1030.5, 1003.5], [1030.5, 1004.5], [1031.5, 1005.5], [1030.5, 1007.5], [1031.5, 1010.5], [1030.5, 1010.5], [1030.5, 1011.5], [1029.5, 1012.5], [1029.5, 1013.5], [1029.5, 1014.5], [1026.5, 1014.5], [1083.5, 1015.5]]}, +{"id": "txjp8k", "submitted_by": "pikachu5159", "name": "osu!catch (osu! ruleset 3/4)", "description": "Likely the least popular osu! game mode, osu!catch has players catching fruit in a basket. Nobody really knows if it's inspired by any other rhythm game.", "website": "https://osu.ppy.sh/home", "subreddit": "/r/osuplace", "center": [734.5, 758.5], "path": [[731.5, 753.5], [731.5, 753.5], [736.5, 753.5], [738.5, 755.5], [738.5, 761.5], [736.5, 763.5], [731.5, 763.5], [729.5, 761.5], [729.5, 755.5], [731.5, 753.5]]}, +{"id": "txjp3t", "submitted_by": "Manish_NB13", "name": " UPI logo", "description": "Unified Payments Interface is an instant real-time payment system developed by National Payments Corporation of India facilitating inter-bank peer-to-peer and person-to-merchant transactions", "website": "https://www.npci.org.in/what-we-do/upi/product-overview", "subreddit": "/r/IndiaPlace", "center": [1440.5, 320.5], "path": [[1428.5, 326.5], [1428.5, 313.5], [1452.5, 313.5], [1452.5, 327.5], [1438.5, 326.5]]}, +{"id": "txjoio", "submitted_by": "noahnap", "name": "DNF FLAG", "description": "Originally started by @sapnapsthighs on twitter and their followers.\nFirst position destroyed by Foolish & Karl on stream for trying to ally heart with them, kept strong and moved positions to the other side of the road. Then moved again so that r/fuckcars could complete their road, and finally settled here.", "website": "https://twitter.com/sapnapsthighs/status/1510698979402649602", "subreddit": "", "center": [1100.5, 1108.5], "path": [[1084.5, 1102.5], [1084.5, 1113.5], [1115.5, 1113.5], [1115.5, 1102.5], [1084.5, 1102.5]]}, +{"id": "txjofn", "submitted_by": "Eclipsed_Luna", "name": "Non-binary miniflag 1", "description": "A mini non-binary pride flag. For some reason, the hivemind decided to make a non-binary miniflag even though there's already a stripe of it on the left. A second one was even made around 60 pixels above this one.", "website": "https://lgbta.miraheze.org/wiki/Non-Binary", "subreddit": "/r/placepride", "center": [461.5, 611.5], "path": [[457.5, 608.5], [465.5, 608.5], [465.5, 613.5], [457.5, 613.5], [457.5, 608.5]]}, +{"id": "txjng9", "submitted_by": "miciy5", "name": "BTS Reddit", "description": "A subreddit dedicated to the South Korean boy group \ubc29\ud0c4\uc18c\ub144\ub2e8, most commonly known as BTS, Beyond the Scene, or Bangtan Boys. News, images, videos, discussions, and anything else that relates are welcome!", "website": "https://www.reddit.com/r/bangtan/", "subreddit": "/r/bangtan", "center": [1913.5, 1199.5], "path": [[1942.5, 1172.5], [1941.5, 1226.5], [1885.5, 1227.5], [1884.5, 1172.5], [1884.5, 1228.5], [1885.5, 1172.5]]}, +{"id": "txjmsm", "submitted_by": "CandleOrdinary3998", "name": "Disii INC", "description": "group of developpers from France", "website": "https://twitter.com/Kammeto/status/1511124358160388099", "subreddit": "", "center": [663.5, 1528.5], "path": [[656.5, 1523.5], [670.5, 1523.5], [670.5, 1532.5], [656.5, 1533.5], [656.5, 1524.5]]}, +{"id": "txjlnh", "submitted_by": "_bird__Crowthebird", "name": "Base Alpha", "description": "Base Alpha of r/Philippines, characterized by Snoo, the Philippine Archipelago Shadowmap, and the Leni-Kiko banner all surrounding the Philippine flag.", "website": "", "subreddit": "/r/Philippines", "center": [332.5, 674.5], "path": [[303.5, 646.5], [362.5, 646.5], [363.5, 702.5], [301.5, 702.5]]}, +{"id": "txjla0", "submitted_by": "BlyatSenpai", "name": "zero two horns", "description": "here is a part of zero two horns\ncompleted image in link", "website": "https://cdn.discordapp.com/attachments/709090754269806604/961219478459387934/unknown.png", "subreddit": "/r/zerotwo", "center": [1485.5, 1708.5], "path": [[1480.5, 1705.5], [1490.5, 1705.5], [1490.5, 1710.5], [1480.5, 1710.5]]}, +{"id": "txjl80", "submitted_by": "miciy5", "name": "Superstonk", "description": "A place for theoretical discussions about business and stocks - specifically GameStop Stock ($GME). Opinions and memes welcome. None of this is financial advice.", "website": "https://www.reddit.com/r/Superstonk/", "subreddit": "/r/superstonk", "center": [978.5, 1986.5], "path": [[1025.5, 1974.5], [1025.5, 1998.5], [932.5, 1998.5], [931.5, 1998.5], [931.5, 1974.5], [931.5, 1974.5]]}, +{"id": "txjjrk", "submitted_by": "little_niggle", "name": "r/gunners alliances", "description": "332 - a small cybersecurity group\n\n523 - arsenal meme number; football formation used when defending a lead\n\n412 - area code of pitts university\n\n49 - arsenal unbeaten run spanning 49 games (May 7, 2003 \u2013 October 16, 2004)", "website": "", "subreddit": "/r/gunners", "center": [1504.5, 1443.5], "path": [[1499.5, 1428.5], [1500.5, 1458.5], [1509.5, 1458.5], [1509.5, 1429.5], [1509.5, 1428.5]]}, +{"id": "txjja8", "submitted_by": "BlyatSenpai", "name": "zero two", "description": "here was our 02 pixel art \nimage in link", "website": "https://cdn.discordapp.com/attachments/960517676910915657/960876314938716220/unknown.png", "subreddit": "/r/zerotwo", "center": [1109.5, 1514.5], "path": [[1116.5, 1522.5], [1116.5, 1505.5], [1101.5, 1505.5], [1102.5, 1523.5]]}, +{"id": "txjitj", "submitted_by": "clubby789", "name": "Froggy", "description": "A blushing frog with a pet duck", "website": "", "subreddit": "", "center": [1790.5, 964.5], "path": [[1782.5, 957.5], [1797.5, 957.5], [1797.5, 970.5], [1782.5, 970.5]]}, +{"id": "txjhp3", "submitted_by": "Jublex", "name": "Jub Duck", "description": "A Happy little duck walking along the road with no problem, now that all the cars are gone. \n\n- Mini self project to leave a mark on the canvas.", "website": "", "subreddit": "", "center": [1103.5, 1041.5], "path": [[1099.5, 1038.5], [1106.5, 1038.5], [1106.5, 1044.5], [1099.5, 1044.5]]}, +{"id": "txjhg5", "submitted_by": "pikachu5159", "name": "osu!taiko (osu! ruleset 2/4)", "description": "In this osu! game mode, players must hit different drums to the beat of the music. Largely inspired by the Japanese rhythm game Taiko no Tatsujin.", "website": "https://osu.ppy.sh/home", "subreddit": "/r/osuplace", "center": [721.5, 759.5], "path": [[717.5, 756.5], [719.5, 754.5], [723.5, 754.5], [725.5, 756.5], [725.5, 761.5], [723.5, 763.5], [719.5, 763.5], [717.5, 761.5]]}, +{"id": "txjg0q", "submitted_by": "pikachu5159", "name": "osu! (osu! ruleset 1/4)", "description": "The original, default, and most popular ruleset in osu! Players must click circles, slide sliders, and spin spinners to the beat of the music.", "website": "https://osu.ppy.sh/home", "subreddit": "/r/osuplace", "center": [709.5, 758.5], "path": [[706.5, 753.5], [711.5, 753.5], [713.5, 755.5], [713.5, 761.5], [711.5, 763.5], [706.5, 763.5], [704.5, 761.5], [704.5, 755.5]]}, +{"id": "txjf7n", "submitted_by": "dab00mer9", "name": "Luna", "description": "Luna is a fictional character from the Sailor Moon franchise. She is a black cat who has the ability to talk, and serves as a mentoring figure for the main character and her companions, the Sailor Guardians", "website": "", "subreddit": "/r/sailormoon", "center": [379.5, 994.5], "path": [[383.5, 998.5], [383.5, 990.5], [382.5, 989.5], [381.5, 990.5], [380.5, 991.5], [378.5, 991.5], [377.5, 990.5], [376.5, 989.5], [375.5, 990.5], [375.5, 998.5]]}, +{"id": "txjevs", "submitted_by": "KassXWolfXTigerXFox", "name": "Stand Arrow", "description": "A representation of the Stand Arrow from the manga and anime JoJo's Bizarre Adventure. Introduced in Part 4: Diamond Is Unbreakable, the arrow can pierce the body or soul of an individual and, if deemed worthy, the target will survive and gain a Stand ability. Stand users pierced by the arrow can have their Stand enhanced through extra abilities or though becoming a Requiem stand.", "website": "", "subreddit": "", "center": [26.5, 890.5], "path": [[25.5, 887.5], [26.5, 885.5], [27.5, 884.5], [31.5, 884.5], [32.5, 885.5], [34.5, 885.5], [35.5, 886.5], [36.5, 886.5], [39.5, 889.5], [40.5, 889.5], [41.5, 890.5], [40.5, 891.5], [39.5, 891.5], [37.5, 893.5], [36.5, 894.5], [35.5, 894.5], [34.5, 895.5], [32.5, 895.5], [31.5, 896.5], [27.5, 896.5], [26.5, 895.5], [25.5, 894.5], [25.5, 893.5], [26.5, 892.5], [27.5, 893.5], [29.5, 893.5], [29.5, 892.5], [28.5, 891.5], [26.5, 891.5], [25.5, 892.5], [24.5, 891.5], [23.5, 891.5], [22.5, 892.5], [21.5, 892.5], [20.5, 891.5], [1.5, 891.5], [0.5, 890.5], [1.5, 889.5], [20.5, 889.5], [20.5, 888.5], [22.5, 888.5], [23.5, 889.5], [24.5, 889.5], [25.5, 888.5], [26.5, 889.5], [28.5, 889.5], [29.5, 888.5], [29.5, 887.5], [27.5, 887.5], [26.5, 888.5], [25.5, 887.5], [25.5, 886.5], [26.5, 885.5]]}, +{"id": "txjen7", "submitted_by": "BrakeCoach", "name": "MinbokWorld", "description": "The icon of MinbokWorld, a worldbuilding community formerly on NamuLive(now ArcaLive). The hanja Min (\u6c11) is drawn on the background of a red-blue-green tricolor flag of Minbok, the fictional nation that the community got its name after.\nDuring the last few hours, the rainbowroad attempted to consume the icon.", "website": "https://Former link: [arca.live/b/minbokworld](https://arca.live/b/minbokworld) / New link: [https://cafe.naver.com/minbok2](https://cafe.naver.com/minbok2)", "subreddit": "", "center": [1429.5, 452.5], "path": [[1433.5, 446.5], [1424.5, 446.5], [1424.5, 452.5], [1425.5, 452.5], [1425.5, 459.5], [1433.5, 459.5], [1433.5, 446.5]]}, +{"id": "txje43", "submitted_by": "AJ--47", "name": "Crayator", "description": "Here stood a mural of Twitch streamer Crayator's logo STAY CRAY, before it got pranked by his friend Brodie, taken over by The Angels and later flooded in teal by streamer 5opka", "website": "https://twitch.tv/crayator", "subreddit": "", "center": [1966.5, 1671.5], "path": [[1951.5, 1683.5], [1951.5, 1658.5], [1980.5, 1658.5], [1980.5, 1683.5], [1951.5, 1683.5], [1953.5, 1682.5]]}, +{"id": "txjdp4", "submitted_by": "SteveO131313", "name": "\u0441\u043b\u0430\u0432\u0430 \u0443\u043a\u0440\u0430\u0457\u043d\u0456", "description": "\u0441\u043b\u0430\u0432\u0430 \u0443\u043a\u0440\u0430\u0457\u043d\u0456, or Slava Ukraina, meaning Glory to Ukraine, is a popular national salute in Ukraine, and gained worldwide popularity during the Russian invasion of Ukraine", "website": "https://en.wikipedia.org/wiki/Slava_Ukraini", "subreddit": "/r/placeUkraine", "center": [260.5, 214.5], "path": [[229.5, 196.5], [290.5, 197.5], [295.5, 231.5], [229.5, 232.5]]}, +{"id": "txjdmr", "submitted_by": "ysa-millora", "name": "Dr. Pepper Can", "description": "used to be a Dr. Pepper can which was later attacked by a YouTuber named Dream in quest for removing all the ads he could possibly find on r/place", "website": "https://www.youtube.com/dream", "subreddit": "/r/DreamWasTaken", "center": [1681.5, 1670.5], "path": [[1660.5, 1634.5], [1662.5, 1634.5], [1662.5, 1632.5], [1664.5, 1631.5], [1667.5, 1630.5], [1668.5, 1629.5], [1669.5, 1629.5], [1692.5, 1629.5], [1692.5, 1634.5], [1693.5, 1636.5], [1694.5, 1637.5], [1697.5, 1638.5], [1699.5, 1636.5], [1699.5, 1640.5], [1699.5, 1642.5], [1700.5, 1643.5], [1701.5, 1643.5], [1701.5, 1647.5], [1701.5, 1648.5], [1703.5, 1649.5], [1705.5, 1650.5], [1705.5, 1652.5], [1705.5, 1681.5], [1704.5, 1700.5], [1702.5, 1702.5], [1701.5, 1704.5], [1700.5, 1706.5], [1698.5, 1708.5], [1697.5, 1708.5], [1695.5, 1709.5], [1686.5, 1709.5], [1682.5, 1710.5], [1680.5, 1710.5], [1677.5, 1709.5], [1675.5, 1709.5], [1672.5, 1709.5], [1669.5, 1709.5], [1666.5, 1708.5], [1665.5, 1708.5], [1662.5, 1707.5], [1661.5, 1706.5], [1659.5, 1705.5], [1658.5, 1703.5], [1658.5, 1700.5], [1658.5, 1698.5], [1658.5, 1652.5]]}, +{"id": "txjb1g", "submitted_by": "Kioraga", "name": "Warai-itai", "description": "An attempt to recreate the Warai-itai logo. Even after several relocations, it could never be completed.", "website": "https://waraitai.gitlab.io/", "subreddit": "", "center": [1747.5, 1992.5], "path": [[1735.5, 1999.5], [1735.5, 1985.5], [1758.5, 1985.5], [1758.5, 1999.5], [1758.5, 1999.5], [1758.5, 1999.5], [1758.5, 1999.5], [1745.5, 1999.5], [1745.5, 1999.5], [1735.5, 1999.5], [1735.5, 1999.5]]}, +{"id": "txjat7", "submitted_by": "Consideration-Large", "name": "Nigerian Flag", "description": "The Nigerian Flag. Created by r/Nigeria with formal abbreviation (NG). \n\nIt includes a the Forest King Emperor (blue butterfly) as a result of a collaboration r/Nigeria made with r/lifeisstrange.", "website": "https://www.reddit.com/r/Nigeria/", "subreddit": "/r/Nigeria", "center": [789.5, 1102.5], "path": [[782.5, 1090.5], [795.5, 1090.5], [795.5, 1113.5], [782.5, 1113.5], [782.5, 1090.5], [782.5, 1090.5]]}, +{"id": "txja2c", "submitted_by": "KrishenKTulipe", "name": "ESAIP", "description": "Author : Atomik, Atalata, Alex28, Cake_Various, Deimyn, KrishenK and NeeSe (thanks to others who protected us)", "website": "https://www.youtube.com/watch?v=dQw4w9WgXcQ", "subreddit": "", "center": [1763.5, 422.5], "path": [[1758.5, 417.5], [1767.5, 417.5], [1767.5, 426.5], [1758.5, 426.5], [1758.5, 417.5]]}, +{"id": "txj7kn", "submitted_by": "manawesome326", "name": "mi mu", "description": "In Toki Pona, 'mu' is an onomatopoeic word for any animal sound (e.g., 'moo'). And 'mi' is the first-person pronoun, or in English, 'me'! So, 'mi mu' broadly means 'I make an animal sound'. Don't we all?", "website": "https://tokipona.org/", "subreddit": "/r/tokipona", "center": [744.5, 328.5], "path": [[739.5, 325.5], [749.5, 325.5], [749.5, 330.5], [739.5, 330.5]]}, +{"id": "txj7ig", "submitted_by": "Willb00", "name": "Socki", "description": "Socki is the mascot of Reved, the girlfriend of AnniTheDuck. She is known for her Minecraft and Slender Lets Plays.", "website": "", "subreddit": "/r/Reved", "center": [1338.5, 1792.5], "path": [[1345.5, 1784.5], [1332.5, 1784.5], [1332.5, 1801.5], [1345.5, 1800.5]]}, +{"id": "txj7fk", "submitted_by": "obplace", "name": "ob", "description": "this is the ob simplified logo and includes colours representing our other projects.", "website": "https://www.obcave.com", "subreddit": "/r/obcave", "center": [1847.5, 657.5], "path": [[1843.5, 648.5], [1843.5, 666.5], [1850.5, 666.5], [1850.5, 648.5], [1843.5, 648.5]]}, +{"id": "txj5dt", "submitted_by": "Nugg_Defender", "name": "Sansmaeda Heart", "description": "A heart placed between Sans from UNDERTALE and Nagito Komaeda from Danganronpa 2: Goodbye Despair, referencing a internet meme shipping the two.", "website": "", "subreddit": "", "center": [754.5, 805.5], "path": [[752.5, 805.5], [754.5, 807.5], [756.5, 804.5], [753.5, 804.5]]}, +{"id": "txj4yf", "submitted_by": "viski252", "name": "\u0160egrt hlapi\u0107", "description": "\u0160egrt Hlapi\u0107 (The little shoemaker in eng.) is a popular Croatian children's character from the 1997 movie of the same name.", "website": "", "subreddit": "/r/croatia", "center": [372.5, 1096.5], "path": [[364.5, 1077.5], [363.5, 1101.5], [362.5, 1119.5], [388.5, 1118.5], [382.5, 1079.5], [370.5, 1072.5], [360.5, 1075.5], [353.5, 1083.5], [357.5, 1092.5], [362.5, 1094.5], [362.5, 1119.5], [359.5, 1121.5]]}, +{"id": "txj3q0", "submitted_by": "chocomint1", "name": "Chessboard (destroyed)", "description": "This area was developed by r/AnarchyChess and later on became a haven for various small communities (shogi, The Binding of Isaac, Soul Knight, Hoofdkwartier 36, and others). However, during the final hours of r/Place, it was wiped out by the destructive invasion of Arkeanos.", "website": "https://www.reddit.com/r/shogi/comments/twbfj6/before_and_after/", "subreddit": "r/AnarchyChess", "center": [1666.5, 98.5], "path": [[1615.5, 48.5], [1717.5, 48.5], [1717.5, 147.5], [1615.5, 147.5]]}, +{"id": "txj2cr", "submitted_by": "WhippyFudge", "name": "Space Duck - Tribute to Reckful", "description": "The duck plushie signifies Reckful because he used to have this plushie on the side of the stream and he would sometimes put this on his chair while he was gone, he also had a duck emote (reckH) and it's been a thing since then.\n\nAn art that was made by a reckful viewer, /u/Liftaris. Which is now in r/place, all thanks to kamet0 (French Streamer) who let Mizkif take the estate to build a beautiful art dedicated to Reckful with the help of Paymoneywubby and Willneff.", "website": "", "subreddit": "/r/reckful", "center": [331.5, 1763.5], "path": [[249.5, 1680.5], [414.5, 1677.5], [411.5, 1847.5], [251.5, 1848.5]]}, +{"id": "txj25p", "submitted_by": "caroephi", "name": "Rotom", "description": "A dual-type Electric/Ghost Pok\u00e9mon introduced in Generation IV", "website": "https://www.pokemon.com", "subreddit": "/r/pokemon", "center": [258.5, 1755.5], "path": [[257.5, 1749.5], [259.5, 1749.5], [260.5, 1750.5], [260.5, 1751.5], [261.5, 1752.5], [261.5, 1753.5], [262.5, 1754.5], [262.5, 1755.5], [261.5, 1756.5], [261.5, 1757.5], [262.5, 1758.5], [261.5, 1759.5], [253.5, 1759.5], [253.5, 1757.5], [254.5, 1757.5], [254.5, 1752.5], [255.5, 1752.5], [255.5, 1751.5], [256.5, 1750.5]]}, +{"id": "txj1ta", "submitted_by": "aquaglaceon", "name": "Ornnhub homies", "description": "An Icon representing ornnhub, held by 6 lads", "website": "https://www.reddit.com/user/aquaglaceon/", "subreddit": "/r/LeagueOfMemes", "center": [927.5, 1649.5], "path": [[924.5, 1647.5], [929.5, 1647.5], [929.5, 1650.5], [924.5, 1650.5], [924.5, 1647.5]]}, +{"id": "txj0sy", "submitted_by": "Alin_Alexandru", "name": "Dacia 1300/1310", "description": "The Dacia 1300 was a car built by Romanian auto maker Dacia and based on the Renault 12. In 1979, a new version of the car was made and named Dacia 1310. The pixel art was destroyed along with the Romanian flag by Polish streamers.", "website": "", "subreddit": "/r/Romania", "center": [747.5, 226.5], "path": [[712.5, 228.5], [712.5, 223.5], [725.5, 223.5], [736.5, 216.5], [765.5, 217.5], [780.5, 230.5], [780.5, 233.5], [763.5, 233.5], [722.5, 233.5]]}, +{"id": "txj03d", "submitted_by": "_cab13_", "name": "Meat", "description": "Vinesauce's Meat. Originally designed by Kevin Yagher for a series of Microsoft MSN commercials in 1991.", "website": "https://www.youtube.com/watch?v=bO8HpsURrsM", "subreddit": "/r/vinesauce", "center": [99.5, 1079.5], "path": [[96.5, 1072.5], [93.5, 1077.5], [93.5, 1083.5], [96.5, 1087.5], [101.5, 1088.5], [104.5, 1085.5], [106.5, 1080.5], [106.5, 1077.5], [103.5, 1072.5], [98.5, 1071.5], [97.5, 1072.5]]}, +{"id": "txiz68", "submitted_by": "OkAd8008", "name": "Alliance between Philippines and Vikings", "description": "The Minnesota Vikings and Philippines have an alliance in the Tumindig area. To show that, The viking mascot is shown driving the jeepney.", "website": "", "subreddit": "/r/minnesotavikings", "center": [410.5, 1647.5], "path": [[404.5, 1643.5], [404.5, 1651.5], [415.5, 1651.5], [415.5, 1642.5], [409.5, 1642.5]]}, +{"id": "txiy8q", "submitted_by": "DunnyWasTaken", "name": "Place Kenny", "description": "Kenny McCormick, one of the four main characters in the American animated television series South Park.", "website": "https://www.reddit.com/r/southpark/", "subreddit": "/r/placekenny", "center": [498.5, 1518.5], "path": [[476.5, 1523.5], [476.5, 1509.5], [486.5, 1497.5], [493.5, 1493.5], [509.5, 1493.5], [509.5, 1495.5], [512.5, 1497.5], [515.5, 1497.5], [522.5, 1507.5], [523.5, 1508.5], [519.5, 1511.5], [519.5, 1512.5], [518.5, 1510.5], [518.5, 1509.5], [519.5, 1508.5], [518.5, 1507.5], [517.5, 1506.5], [516.5, 1507.5], [514.5, 1508.5], [513.5, 1510.5], [513.5, 1513.5], [512.5, 1513.5], [511.5, 1515.5], [511.5, 1518.5], [512.5, 1521.5], [513.5, 1522.5], [512.5, 1522.5], [512.5, 1525.5], [518.5, 1525.5], [518.5, 1526.5], [523.5, 1526.5], [523.5, 1525.5], [523.5, 1528.5], [522.5, 1528.5], [522.5, 1530.5], [522.5, 1531.5], [522.5, 1534.5], [519.5, 1537.5], [518.5, 1538.5], [518.5, 1541.5], [490.5, 1541.5], [489.5, 1540.5], [488.5, 1540.5], [477.5, 1530.5], [477.5, 1525.5], [476.5, 1523.5]]}, +{"id": "txixrd", "submitted_by": "Kumakumar", "name": "Yorushika Logo", "description": "Logo of japanese music duo Yorushika, rotated by 90 degrees.", "website": "https://yorushika.com/", "subreddit": "/r/Yorushika", "center": [1144.5, 1698.5], "path": [[1139.5, 1690.5], [1148.5, 1690.5], [1148.5, 1705.5], [1139.5, 1705.5]]}, +{"id": "txixlt", "submitted_by": "Haykira", "name": "Arc de Triomphe", "description": "Original sprite made by PowLow_Paolo on DeviantArt/Reddit. \nThanks to him/her we managed to have a template that helped building the French historical building.", "website": "https://en.wikipedia.org/wiki/Arc_de_Triomphe", "subreddit": "/r/placefrance", "center": [124.5, 1866.5], "path": [[62.5, 1922.5], [61.5, 1812.5], [63.5, 1930.5], [110.5, 1931.5], [176.5, 1930.5], [187.5, 1930.5], [193.5, 1802.5], [58.5, 1806.5], [53.5, 1809.5], [62.5, 1931.5]]}, +{"id": "txivjv", "submitted_by": "pablosantiago95", "name": "Krialia", "description": "Togepi is the mascot of Krialia's channel, spanish streamer.", "website": "https://twitch.tv/Krialia", "subreddit": "", "center": [1836.5, 684.5], "path": [[1831.5, 679.5], [1840.5, 679.5], [1840.5, 688.5], [1831.5, 688.5], [1831.5, 679.5]]}, +{"id": "txiv4x", "submitted_by": "blobishly", "name": "Hannukia", "description": "A trinational Hanukkiah with its 8 candles and one Shamash, It was made by r/Israel. \noriginally, It was a set of exclamation marks after the phrase the phrase\n!!!!! \u05e2\u05dd \u05d9\u05e9\u05e8\u05d0\u05dc \u05d7\u05d9\n-the nation of Israel lives!!!!!", "website": "https://the r/Israel Discord channel", "subreddit": "/r/Israel", "center": [1540.5, 465.5], "path": [[1540.5, 460.5], [1531.5, 461.5], [1531.5, 466.5], [1535.5, 470.5], [1545.5, 470.5], [1549.5, 466.5], [1549.5, 461.5]]}, +{"id": "txiuw9", "submitted_by": "DunnyWasTaken", "name": "Jeff Park", "description": "A collaboration between content creator 'StreetMan' and the animated television series 'South Park'. Both communities struggled to keep their art on /r/place which started the partnership. StreetMan's community contributed Jeff from the 'My Name Jeff' meme and the South Park community contributed six of the show's characters at the iconic Bus Stop. Together they created the 'Jeff Park' sign.", "website": "https://www.twitch.tv/streetmanttv", "subreddit": "/r/southpark", "center": [480.5, 1687.5], "path": [[461.5, 1675.5], [499.5, 1675.5], [499.5, 1688.5], [500.5, 1688.5], [500.5, 1699.5], [461.5, 1699.5], [461.5, 1692.5], [462.5, 1691.5], [463.5, 1690.5], [464.5, 1689.5], [464.5, 1687.5], [463.5, 1686.5], [462.5, 1686.5], [461.5, 1686.5], [461.5, 1675.5]]}, +{"id": "txitjp", "submitted_by": "Niker107", "name": "Green Pipe", "description": "A green pipe, used for transporting things and people between different locations, as popularized by the Mario game series.", "website": "", "subreddit": "", "center": [8.5, 1146.5], "path": [[0.5, 1122.5], [8.5, 1122.5], [9.5, 1121.5], [19.5, 1121.5], [19.5, 1122.5], [17.5, 1122.5], [17.5, 1128.5], [15.5, 1128.5], [15.5, 1132.5], [14.5, 1132.5], [14.5, 1144.5], [13.5, 1144.5], [13.5, 1154.5], [14.5, 1154.5], [14.5, 1160.5], [15.5, 1160.5], [15.5, 1162.5], [16.5, 1162.5], [16.5, 1165.5], [17.5, 1165.5], [17.5, 1170.5], [1.5, 1170.5], [0.5, 1169.5]]}, +{"id": "txisod", "submitted_by": "Depardim", "name": "Pogostuck", "description": "Art of the player character from the 2019 indie game, Pogostuck.", "website": "", "subreddit": "", "center": [1228.5, 810.5], "path": [[1217.5, 802.5], [1217.5, 818.5], [1239.5, 818.5], [1239.5, 802.5]]}, +{"id": "txisco", "submitted_by": "PataNautic", "name": "Tiny Towers (Juke\u2019s Towers of Hell)", "description": "Allied with the Troll Discord, the Tiny Towers are a small mural based on the Roblox game Juke\u2019s Towers of Hell (JTOH). The mural depicts two towers from the game: Tower of Hecc, and Not Even a Tower. The Tiny Towers were a subsidiary build of the main JTOH project on r/place in the event that the primary construction could not come to fruition.", "website": "https://jtoh.fandom.com/wiki/Juke%27s_Towers_of_Hell_(Game)", "subreddit": "", "center": [875.5, 543.5], "path": [[873.5, 534.5], [877.5, 534.5], [877.5, 552.5], [873.5, 552.5]]}, +{"id": "txisb0", "submitted_by": "blobishly", "name": "\u05e2\u05dd \u05d9\u05e9\u05e8\u05d0\u05dc \u05d7\u05d9", "description": "the nation of Israel lives\nthere was a short internal debate on whether or not to add flames to the tips of the letters, the compromise ended up coming with the creation of the hanukkiah. \nFor a while, it had exclamation marks -these were transformed into the Hanukkiah that now sits next to the word \u05d7\u05d9.\nthe \u05d7\u05d9 part was made over a seedling that r/Israel originally cooperated with.", "website": "https://the r/Israel Discord server", "subreddit": "/r/Israel", "center": [1546.5, 448.5], "path": [[1561.5, 456.5], [1561.5, 448.5], [1535.5, 447.5], [1534.5, 447.5], [1534.5, 454.5], [1558.5, 456.5], [1561.5, 456.5], [1557.5, 462.5], [1557.5, 468.5], [1552.5, 468.5], [1549.5, 464.5], [1549.5, 462.5], [1557.5, 462.5]]}, +{"id": "txis0w", "submitted_by": "pablosantiago95", "name": "Nini", "description": "Nini is the mascot of Cristinini's Channel", "website": "https://www.twitch.tv/iamcristinini", "subreddit": "/r/IamCristinini", "center": [1836.5, 673.5], "path": [[1840.5, 667.5], [1831.5, 667.5], [1831.5, 679.5], [1840.5, 679.5], [1840.5, 667.5]]}, +{"id": "txirpq", "submitted_by": "Ambitious_Map4507", "name": "The void survivor", "description": "Day 3 the void almost destroyed this bidoof but a good defense made him survive.", "website": "", "subreddit": "", "center": [569.5, 1480.5], "path": [[557.5, 1469.5], [556.5, 1467.5], [552.5, 1468.5], [549.5, 1472.5], [551.5, 1475.5], [547.5, 1479.5], [546.5, 1481.5], [548.5, 1484.5], [548.5, 1485.5], [546.5, 1486.5], [547.5, 1489.5], [552.5, 1494.5], [555.5, 1497.5], [560.5, 1497.5], [566.5, 1497.5], [571.5, 1500.5], [574.5, 1498.5], [574.5, 1497.5], [577.5, 1492.5], [580.5, 1492.5], [580.5, 1495.5], [587.5, 1495.5], [586.5, 1492.5], [589.5, 1480.5], [588.5, 1477.5], [589.5, 1473.5], [583.5, 1460.5], [577.5, 1460.5], [573.5, 1462.5], [566.5, 1465.5]]}, +{"id": "txirlo", "submitted_by": "Finnmiller", "name": "Chongun", "description": "A chibi of the character \"Chongyun\" from the game \"Genshin Impact\".", "website": "", "subreddit": "/r/PopsicleMains", "center": [1091.5, 1286.5], "path": [[1083.5, 1279.5], [1099.5, 1279.5], [1099.5, 1292.5], [1083.5, 1292.5], [1083.5, 1279.5]]}, +{"id": "txircg", "submitted_by": "smedvico", "name": "The r/Monero / r/Bolivia / r/RiskUniversalis Alliance ", "description": "An alliance betweeen Monero, Risk Universalis and Bolivia", "website": "", "subreddit": "", "center": [1358.5, 1234.5], "path": [[1354.5, 1231.5], [1354.5, 1237.5], [1362.5, 1237.5], [1362.5, 1231.5]]}, +{"id": "txir0o", "submitted_by": "officiallyaninja", "name": "Stormlight Archive", "description": "a fantasy book series by Brandon Sanderson known for it's sprawling huge world filled with lots of characters and factions", "website": "https://www.brandonsanderson.com/the-stormlight-archive-series/", "subreddit": "/r/stormlight_archive", "center": [1686.5, 1395.5], "path": [[1683.5, 1376.5], [1672.5, 1382.5], [1666.5, 1394.5], [1674.5, 1411.5], [1682.5, 1415.5], [1686.5, 1422.5], [1690.5, 1417.5], [1707.5, 1395.5], [1704.5, 1386.5], [1693.5, 1375.5], [1686.5, 1368.5], [1683.5, 1370.5], [1683.5, 1376.5]]}, +{"id": "txiqwe", "submitted_by": "fr3dofr0g", "name": "Brighton and Hove Albion", "description": "Premier League club from East Sussex. ", "website": "", "subreddit": "/r/BrightonHoveAlbion", "center": [721.5, 1795.5], "path": [[715.5, 1787.5], [727.5, 1787.5], [727.5, 1802.5], [715.5, 1803.5]]}, +{"id": "txiqd6", "submitted_by": "El_Geygey", "name": "Heart of the Tennessean-Mongol-Ligue Alliance", "description": "It was a pleasure defending this part of the map with you guys! Much love - the Ligue", "website": "", "subreddit": "", "center": [109.5, 467.5], "path": [[109.5, 466.5], [109.5, 465.5], [110.5, 464.5], [112.5, 464.5], [113.5, 465.5], [113.5, 467.5], [109.5, 471.5], [105.5, 467.5], [105.5, 465.5], [106.5, 464.5], [108.5, 464.5], [109.5, 466.5]]}, +{"id": "txiq2m", "submitted_by": "frishki_zrak", "name": "Lapitch the little shoemaker", "description": "Lapitch the Little Shoemaker (croatian: \u0160egrt Hlapi\u0107) is a 1997 animated feature that was originally released by Croatia Film. It is based on The Brave Adventures of Lapitch, a 1913 novel by Croatian author Ivana Brli\u0107-Ma\u017eurani\u0107. All of the characters are animals, and the title character is a mouse. Lapitch remains Croatia's most successful production in terms of viewership.\n", "website": "", "subreddit": "/r/croatia", "center": [370.5, 1096.5], "path": [[370.5, 1116.5], [364.5, 1116.5], [364.5, 1118.5], [356.5, 1118.5], [356.5, 1115.5], [364.5, 1112.5], [367.5, 1106.5], [366.5, 1102.5], [361.5, 1100.5], [362.5, 1098.5], [356.5, 1092.5], [358.5, 1091.5], [363.5, 1096.5], [366.5, 1094.5], [356.5, 1088.5], [356.5, 1079.5], [362.5, 1079.5], [365.5, 1075.5], [372.5, 1075.5], [376.5, 1081.5], [380.5, 1079.5], [382.5, 1081.5], [382.5, 1085.5], [376.5, 1093.5], [381.5, 1097.5], [378.5, 1103.5], [386.5, 1116.5], [383.5, 1117.5], [372.5, 1115.5], [370.5, 1115.5]]}, +{"id": "txipab", "submitted_by": "quetzal_3", "name": "Iridium logo", "description": "The letter 'I' of Iridium (not finished at this point)", "website": "", "subreddit": "", "center": [1099.5, 1969.5], "path": [[1096.5, 1966.5], [1101.5, 1966.5], [1101.5, 1971.5], [1096.5, 1971.5], [1096.5, 1966.5]]}, +{"id": "txiodu", "submitted_by": "RedundantGuntClear", "name": "Unfinished War Thunder logo", "description": "A short but unfinished logo of the MMO War Thunder, made by Gaijin Entertainment. As with /r/place tradition since 2017, their mark was rendered unfinished.", "website": "", "subreddit": "/r/WarThunder", "center": [852.5, 1890.5], "path": [[846.5, 1887.5], [850.5, 1895.5], [859.5, 1887.5]]}, +{"id": "txio35", "submitted_by": "WhippyFudge", "name": "Donkey Kong (Mizkif) and Kirby (Emiru)", "description": "A Twitch power couple who've defended each other's art until the final day.", "website": "https://otknetwork.com", "subreddit": "/r/emikif", "center": [1289.5, 452.5], "path": [[1260.5, 421.5], [1266.5, 421.5], [1268.5, 425.5], [1295.5, 414.5], [1312.5, 426.5], [1319.5, 449.5], [1313.5, 468.5], [1299.5, 468.5], [1300.5, 474.5], [1303.5, 476.5], [1304.5, 487.5], [1259.5, 488.5], [1260.5, 467.5], [1285.5, 468.5], [1282.5, 461.5], [1284.5, 453.5], [1284.5, 446.5], [1284.5, 442.5], [1272.5, 443.5], [1263.5, 438.5], [1259.5, 431.5]]}, +{"id": "txio0s", "submitted_by": "Nicron4", "name": "Why a Mini-Tux here ?", "description": "For historical reasons, people use to know the Windows task bar as the computer science symbol, but that's not the only one. Linux Distributions can run computers like Windows or macOS do. So that's why Linux community had to place Mini-Tux here, ironically.", "website": "https://distrowatch.com/dwres.php?resource=major", "subreddit": "", "center": [581.5, 1985.5], "path": [[569.5, 1974.5], [593.5, 1974.5], [593.5, 1996.5], [569.5, 1996.5], [569.5, 1974.5]]}, +{"id": "txinrz", "submitted_by": "Alin_Alexandru", "name": "TNO Mod", "description": "Location of the logo of The New Order: Last Days of Europe Mod for Hearts of Iron 4. Was destroyed by Polish streamers along with the Romanian flag.", "website": "", "subreddit": "/r/TNOmod", "center": [815.5, 180.5], "path": [[824.5, 167.5], [805.5, 167.5], [806.5, 192.5], [825.5, 193.5]]}, +{"id": "txinlq", "submitted_by": "cltv_representative", "name": "Zhang Xianzhong", "description": "Zhang Xianzhong (18 Sep. 1606 \u2013 2 Jan. 1647) was a leader of a peasant revolt in the late Ming Dynasty and is commonly associated with the massacres in Sichuan.\nThis character reveals the tragic fate of China's endless cycles between slavery and rebellion since the Qin Dynasty (~ bc 200), and he is now the spiritual symbol of r/CLTV and previously r/chonglangtv.\nHe is also famous for the inscription: \"Heaven brings forth innumerable things to nurture man. Man has nothing good with which to recompense Heaven. The spirits and gods are knowing, so reflect on this and examine yourselves.\"", "website": "", "subreddit": "/r/CLTV", "center": [861.5, 149.5], "path": [[849.5, 130.5], [848.5, 130.5], [848.5, 163.5], [848.5, 167.5], [873.5, 167.5], [873.5, 130.5], [850.5, 130.5], [848.5, 130.5]]}, +{"id": "txine2", "submitted_by": "azerty774", "name": "Radio France logo", "description": "This logo,also known as Po\u00eale \u00e0 Frire (frying pan), is the symbol of the building of the french public Radio Broadcaster, the Maison de la Radio et de la Musique. This drawing was initiated by the digital editorial staff of France Inter, France leading radio station, which also spoke of rplace on air a few times during the last day.", "website": "https://www.radiofrance.fr", "subreddit": "", "center": [1180.5, 799.5], "path": [[1179.5, 791.5], [1181.5, 791.5], [1181.5, 792.5], [1182.5, 792.5], [1182.5, 794.5], [1182.5, 795.5], [1183.5, 795.5], [1183.5, 796.5], [1184.5, 796.5], [1184.5, 797.5], [1185.5, 797.5], [1185.5, 801.5], [1182.5, 801.5], [1182.5, 805.5], [1181.5, 805.5], [1181.5, 806.5], [1179.5, 806.5], [1179.5, 805.5], [1178.5, 805.5], [1178.5, 803.5], [1177.5, 803.5], [1177.5, 802.5], [1176.5, 802.5], [1175.5, 802.5], [1175.5, 799.5], [1178.5, 796.5], [1178.5, 792.5], [1179.5, 792.5]]}, +{"id": "txild8", "submitted_by": "Mayor_X500", "name": "The 7 with a dot", "description": "This 7 with a dot is the remains of a fight amongst the Portuguese, some trying to keep the 7 and others trying to replace it with the logo of the best academic course of Portugal (MiEI)", "website": "https://imgur.com/gallery/vtLnpLq", "subreddit": "", "center": [956.5, 364.5], "path": [[952.5, 360.5], [952.5, 367.5], [960.5, 367.5], [960.5, 360.5]]}, +{"id": "txil9i", "submitted_by": "ectoplazmatic7129", "name": "amogi ren", "description": "has all the character traits of a rouge but still doesn't really fit that category ", "website": "", "subreddit": "", "center": [528.5, 1689.5], "path": [[526.5, 1686.5], [526.5, 1691.5], [530.5, 1691.5], [530.5, 1690.5], [531.5, 1690.5], [531.5, 1687.5], [530.5, 1687.5], [530.5, 1686.5]]}, +{"id": "txil1d", "submitted_by": "Niker107", "name": "Small Russian flag", "description": "", "website": "", "subreddit": "", "center": [1889.5, 1268.5], "path": [[1883.5, 1273.5], [1883.5, 1263.5], [1895.5, 1263.5], [1895.5, 1273.5]]}, +{"id": "txil12", "submitted_by": "frishki_zrak", "name": "Luka Modri\u0107", "description": "Luka Modri\u0107 is a Croatian professional footballer who plays as a midfielder for La Liga club Real Madrid and captains the Croatia national team. He plays mainly as a central midfielder, but can also play as an attacking midfielder or as a defensive midfielder. He is widely regarded as one of the best midfielders of all time and as the greatest Croatian footballer ever.", "website": "", "subreddit": "/r/croatia", "center": [340.5, 1105.5], "path": [[329.5, 1119.5], [329.5, 1111.5], [331.5, 1109.5], [335.5, 1106.5], [335.5, 1104.5], [334.5, 1101.5], [333.5, 1099.5], [332.5, 1097.5], [334.5, 1090.5], [340.5, 1087.5], [344.5, 1088.5], [348.5, 1091.5], [348.5, 1098.5], [345.5, 1105.5], [348.5, 1108.5], [352.5, 1113.5], [352.5, 1119.5], [329.5, 1119.5]]}, +{"id": "txijzr", "submitted_by": "ectoplazmatic7129", "name": "amogi nora", "description": "like the hulk but cute", "website": "", "subreddit": "", "center": [528.5, 1693.5], "path": [[526.5, 1690.5], [526.5, 1695.5], [530.5, 1695.5], [530.5, 1694.5], [531.5, 1694.5], [531.5, 1691.5], [530.5, 1691.5], [530.5, 1690.5]]}, +{"id": "txijgd", "submitted_by": "ectoplazmatic7129", "name": "amogi qrow", "description": "comedic drunk that ironically i cant think of a good joke for", "website": "", "subreddit": "", "center": [528.5, 1697.5], "path": [[526.5, 1694.5], [526.5, 1700.5], [530.5, 1700.5], [530.5, 1698.5], [531.5, 1698.5], [531.5, 1695.5], [530.5, 1695.5], [530.5, 1694.5], [526.5, 1694.5]]}, +{"id": "txijbe", "submitted_by": "WhippyFudge", "name": "Mizkif's Mascot (Peepo wearing an OTK merch)", "description": "Erobb's boogers made him.", "website": "", "subreddit": "/r/mizkif", "center": [645.5, 972.5], "path": [[624.5, 944.5], [666.5, 943.5], [666.5, 1000.5], [624.5, 999.5], [624.5, 969.5], [624.5, 957.5]]}, +{"id": "txij7o", "submitted_by": "ThePizzaMuncher", "name": "Ditto [lacks sub and website]", "description": "A loving rendition of the Pok\u00e9mon \u2018Ditto\u2019, built by fans of the Pok\u00e9mon franchise with help of (partly overlapping) members of the Hollow Knight / Elden Ring community.", "website": "", "subreddit": "", "center": [1324.5, 75.5], "path": [[1324.5, 70.5], [1324.5, 69.5], [1327.5, 69.5], [1327.5, 70.5], [1328.5, 70.5], [1328.5, 71.5], [1330.5, 71.5], [1330.5, 73.5], [1331.5, 73.5], [1331.5, 77.5], [1330.5, 77.5], [1330.5, 78.5], [1329.5, 78.5], [1329.5, 79.5], [1328.5, 79.5], [1328.5, 80.5], [1326.5, 80.5], [1326.5, 81.5], [1320.5, 81.5], [1320.5, 80.5], [1318.5, 80.5], [1318.5, 79.5], [1317.5, 79.5], [1317.5, 78.5], [1316.5, 78.5], [1316.5, 74.5], [1317.5, 74.5], [1317.5, 73.5], [1318.5, 73.5], [1318.5, 71.5], [1319.5, 71.5], [1319.5, 70.5], [1324.5, 70.5]]}, +{"id": "txiit8", "submitted_by": "TorriTaMalta", "name": "Malta-UCF Alliance Heart", "description": "After a lot of back and forth on where the border between UCF (top area) and Malta (bottom area) should rest, as well as a brief occupation of Malta's area by UCF, the border was establish and the '(0,589) Alliance' was formed! This heart was created in collaboration with both communities to commemorate this alliance.", "website": "", "subreddit": "", "center": [43.5, 605.5], "path": [[40.5, 603.5], [40.5, 603.5], [40.5, 603.5], [40.5, 605.5], [40.5, 606.5], [41.5, 606.5], [41.5, 607.5], [42.5, 607.5], [42.5, 608.5], [43.5, 608.5], [44.5, 608.5], [44.5, 607.5], [45.5, 607.5], [45.5, 606.5], [46.5, 606.5], [46.5, 604.5], [45.5, 603.5]]}, +{"id": "txihnw", "submitted_by": "lcbsox", "name": "Flag of Rotterdam", "description": "Rotterdam!! The most important city of the netherlands,it deserves a flag<3 010!!!", "website": "", "subreddit": "", "center": [1241.5, 7.5], "path": [[1235.5, 3.5], [1247.5, 3.5], [1247.5, 11.5], [1235.5, 11.5]]}, +{"id": "txih3b", "submitted_by": "Hyli__", "name": "Satellite", "description": "Satellite. Bar. Student Association at EPFL. We organise concerts, beer tasting, theatre plays, game evenings and our festival SatRocks.", "website": "https://satellite.bar", "subreddit": "", "center": [1552.5, 539.5], "path": [[1548.5, 535.5], [1556.5, 535.5], [1556.5, 543.5], [1548.5, 543.5]]}, +{"id": "txigx3", "submitted_by": "georgethenormal9", "name": "Kirby", "description": "Kirby is a Nintendo character from the video game series Kirby", "website": "", "subreddit": "", "center": [1466.5, 381.5], "path": [[1463.5, 383.5], [1464.5, 382.5], [1463.5, 381.5], [1463.5, 380.5], [1464.5, 379.5], [1464.5, 378.5], [1468.5, 378.5], [1468.5, 379.5], [1469.5, 380.5], [1469.5, 381.5], [1468.5, 382.5], [1469.5, 383.5]]}, +{"id": "txig8p", "submitted_by": "georgethenormal9", "name": "Waddle Dee", "description": "A character from the video game Kirby", "website": "", "subreddit": "", "center": [1473.5, 381.5], "path": [[1470.5, 383.5], [1471.5, 382.5], [1470.5, 381.5], [1470.5, 380.5], [1471.5, 378.5], [1475.5, 378.5], [1475.5, 379.5], [1476.5, 380.5], [1476.5, 381.5], [1475.5, 382.5], [1476.5, 383.5]]}, +{"id": "txig68", "submitted_by": "armcie", "name": "GNU Terry Pratchett", "description": "'Do you not know that a man is not dead while his name is still spoken?' Terry Pratchett, Going Postal\n\nWe keep the memory of Pratchett alive by speaking his name", "website": "http://www.gnuterrypratchett.com/", "subreddit": "/r/GNUTerryPratchett", "center": [1880.5, 888.5], "path": [[1870.5, 884.5], [1871.5, 892.5], [1889.5, 893.5], [1889.5, 884.5], [1878.5, 884.5], [1878.5, 884.5], [1878.5, 884.5], [1878.5, 884.5], [1876.5, 884.5], [1876.5, 884.5]]}, +{"id": "txig3h", "submitted_by": "ectoplazmatic7129", "name": "amogi pyrrha", "description": "shot through the heart! and you're to late! you give love a bad name", "website": "", "subreddit": "", "center": [512.5, 1690.5], "path": [[510.5, 1687.5], [510.5, 1692.5], [514.5, 1692.5], [514.5, 1691.5], [515.5, 1691.5], [515.5, 1688.5], [514.5, 1688.5], [514.5, 1687.5]]}, +{"id": "txievc", "submitted_by": "DFCMarxVideos", "name": "Free Hong Kong", "description": "Since the 2019 events happening in Hong Kong, democracy had half a year to shine on the small lands of Hong Kong, however the glorious protests have gone overboard, brutally suppressed, and a law was set up to force any attempt to promote so to disappear. as r/place began, this was one of the first artworks and one of the least griefed, with a black Bauhinia flower, and soon expanding to add a yellow umbrella (a sign of protest back in 2014), and change the wording. \nTrivia: xQcOw spared this in his massive purple raids, but that didn't stop everyone.", "website": "https://lihkg.com", "subreddit": "/r/hongkong", "center": [634.5, 674.5], "path": [[598.5, 649.5], [670.5, 648.5], [669.5, 699.5], [599.5, 699.5]]}, +{"id": "txiele", "submitted_by": "ukiyozen", "name": "Minecrafter & Twitch Streamer Im_a_squid_kid", "description": "The former number one potato farmer & Technoblades rival in the potato war. ", "website": "https://www.twitch.tv/im_a_squid_kid", "subreddit": "", "center": [152.5, 913.5], "path": [[142.5, 908.5], [162.5, 909.5], [154.5, 918.5], [146.5, 920.5], [146.5, 907.5], [158.5, 909.5], [147.5, 919.5], [157.5, 907.5], [158.5, 918.5], [146.5, 919.5], [145.5, 907.5], [157.5, 907.5], [158.5, 919.5], [146.5, 919.5], [145.5, 907.5], [162.5, 908.5]]}, +{"id": "txie5k", "submitted_by": "ectoplazmatic7129", "name": "amogi jaune", "description": "progressed from vomit boy to milf magnet", "website": "", "subreddit": "", "center": [512.5, 1694.5], "path": [[510.5, 1691.5], [510.5, 1696.5], [514.5, 1696.5], [514.5, 1695.5], [515.5, 1695.5], [515.5, 1692.5], [514.5, 1692.5], [514.5, 1691.5], [510.5, 1691.5]]}, +{"id": "txidlw", "submitted_by": "Niker107", "name": "Outer Wilds patch", "description": "Outer Wilds is an action-adventure game developed by Mobius Digital, featuring a solar system stuck in a 22-minute time loop, which ends as the sun goes supernova. This patch was animated in several stages, showcasing the sun go supernova, and the world resetting due to the time loop.", "website": "https://www.mobiusdigitalgames.com/outer-wilds.html", "subreddit": "/r/outerwilds", "center": [368.5, 947.5], "path": [[347.5, 959.5], [346.5, 958.5], [346.5, 955.5], [347.5, 954.5], [367.5, 925.5], [368.5, 925.5], [388.5, 954.5], [389.5, 955.5], [389.5, 958.5], [388.5, 959.5]]}, +{"id": "txicll", "submitted_by": "ectoplazmatic7129", "name": "amogi penny", "description": "died twice for our sins", "website": "", "subreddit": "", "center": [524.5, 1698.5], "path": [[522.5, 1695.5], [522.5, 1700.5], [526.5, 1700.5], [526.5, 1699.5], [527.5, 1699.5], [527.5, 1696.5], [526.5, 1696.5], [526.5, 1695.5]]}, +{"id": "txic1n", "submitted_by": "ectoplazmatic7129", "name": "amogi yang", "description": "80% more human than her neighbour", "website": "", "subreddit": "", "center": [520.5, 1698.5], "path": [[518.5, 1695.5], [518.5, 1700.5], [522.5, 1700.5], [522.5, 1699.5], [523.5, 1699.5], [523.5, 1696.5], [522.5, 1696.5], [522.5, 1695.5], [518.5, 1695.5]]}, +{"id": "txic04", "submitted_by": "RKaider", "name": "Sprout Icon", "description": "A status icon given to any new player joining in FFXIV.", "website": "", "subreddit": "/r/FFXIV", "center": [1278.5, 490.5], "path": [[1273.5, 488.5], [1283.5, 488.5], [1283.5, 491.5], [1278.5, 492.5], [1273.5, 491.5], [1273.5, 488.5]]}, +{"id": "txibzj", "submitted_by": "SpaceDragon_", "name": "Schneckchen", "description": "The Mascot of the German youtuber Maudado", "website": "https://www.youtube.com/c/maudado", "subreddit": "/r/maudadomememittwoch", "center": [1615.5, 399.5], "path": [[1612.5, 392.5], [1618.5, 392.5], [1618.5, 405.5], [1612.5, 405.5], [1612.5, 392.5]]}, +{"id": "txibw6", "submitted_by": "SamiTheAnxiousBean", "name": "The right Baba", "description": "Created on a whim to fill up space between Niko and Lia this cat started off as Baba (from indie puzzle game Baba is you) however passerbys and other users thought the sprite eyes were missplaced pixels, after attempting to fix it for a while most gave up as they didn't want a repeat of the niko roomba situation, blush was shortly added aswell as the cat to the left to fill up space between Lia and Basil", "website": "", "subreddit": "/r/BabaIsYou", "center": [910.5, 277.5], "path": [[906.5, 280.5], [906.5, 279.5], [905.5, 278.5], [905.5, 277.5], [905.5, 276.5], [905.5, 275.5], [906.5, 275.5], [906.5, 274.5], [907.5, 273.5], [908.5, 274.5], [909.5, 273.5], [910.5, 273.5], [911.5, 273.5], [912.5, 274.5], [913.5, 275.5], [914.5, 276.5], [914.5, 278.5], [914.5, 280.5]]}, +{"id": "txibq9", "submitted_by": "DFCMarxVideos", "name": "osu!", "description": "osu! is a rhythm game that started in 2007. In 2017, the osu! logo was one of the most long-lasting, organized, well-maintained and griefed logos, and continued its trend in 2022. Despite multiple raids and griefs, the osu! community has proved it undestroyable, and deserves a huge chunk in the original canvas.", "website": "https://osu.ppy.sh", "subreddit": "/r/osuplace", "center": [726.5, 727.5], "path": [[727.5, 679.5], [708.5, 681.5], [697.5, 687.5], [688.5, 696.5], [678.5, 712.5], [678.5, 735.5], [680.5, 743.5], [685.5, 757.5], [705.5, 772.5], [728.5, 778.5], [752.5, 771.5], [771.5, 750.5], [770.5, 735.5], [778.5, 735.5], [774.5, 711.5], [764.5, 694.5], [752.5, 683.5], [739.5, 679.5], [728.5, 679.5]]}, +{"id": "txiau2", "submitted_by": "BuzzLightr", "name": "Brads gazebo", "description": "Twitch stream dedicated to GameStop", "website": "https://www.twitch.tv/bradsgazebo", "subreddit": "", "center": [920.5, 892.5], "path": [[912.5, 888.5], [912.5, 888.5], [910.5, 887.5], [910.5, 896.5], [929.5, 897.5], [929.5, 887.5], [910.5, 887.5]]}, +{"id": "txialo", "submitted_by": "LostDog_88", "name": "Lord Hanuman", "description": "One of the gods from the Hindu Tradition, Hanuman was a humble servant of Lord Ram.", "website": "https://en.wikipedia.org/wiki/Hanuman", "subreddit": "/r/IndiaPlace", "center": [1243.5, 329.5], "path": [[1217.5, 330.5], [1224.5, 330.5], [1223.5, 331.5], [1224.5, 332.5], [1224.5, 333.5], [1232.5, 333.5], [1232.5, 324.5], [1233.5, 322.5], [1235.5, 320.5], [1236.5, 320.5], [1239.5, 324.5], [1239.5, 329.5], [1244.5, 325.5], [1244.5, 323.5], [1245.5, 322.5], [1249.5, 322.5], [1249.5, 327.5], [1244.5, 327.5], [1244.5, 328.5], [1242.5, 328.5], [1242.5, 329.5], [1241.5, 329.5], [1241.5, 330.5], [1240.5, 331.5], [1251.5, 331.5], [1251.5, 330.5], [1253.5, 330.5], [1253.5, 328.5], [1255.5, 328.5], [1258.5, 325.5], [1259.5, 324.5], [1260.5, 323.5], [1263.5, 321.5], [1263.5, 319.5], [1266.5, 319.5], [1266.5, 321.5], [1263.5, 321.5], [1260.5, 324.5], [1255.5, 328.5], [1255.5, 333.5], [1264.5, 333.5], [1264.5, 325.5], [1266.5, 325.5], [1269.5, 326.5], [1267.5, 327.5], [1268.5, 328.5], [1265.5, 328.5], [1265.5, 333.5], [1264.5, 334.5], [1255.5, 334.5], [1255.5, 335.5], [1225.5, 335.5], [1219.5, 331.5], [1217.5, 330.5]]}, +{"id": "txiae0", "submitted_by": "ectoplazmatic7129", "name": "amogi weiss", "description": "ice queendom hype scar included", "website": "", "subreddit": "", "center": [512.5, 1698.5], "path": [[510.5, 1695.5], [510.5, 1700.5], [514.5, 1700.5], [514.5, 1699.5], [515.5, 1699.5], [515.5, 1696.5], [514.5, 1696.5], [514.5, 1695.5], [510.5, 1695.5]]}, +{"id": "txia6q", "submitted_by": "TheSeahorseHS", "name": "Minecraft loading screen animation", "description": "This is where the Minecraft loading screen animation took place, which was one of the most upvoted posts on r/place. The animation was created by streamers NymN and Zoil", "website": "https://www.reddit.com/r/place/comments/tvoa0c/this_is_the_full_animation_of_the_minecraft/?utm_source=share&utm_medium=web2x&context=3", "subreddit": "/r/RedditAndChill", "center": [1867.5, 691.5], "path": [[1842.5, 667.5], [1892.5, 667.5], [1892.5, 715.5], [1842.5, 715.5], [1842.5, 667.5]]}, +{"id": "txi9e3", "submitted_by": "Sreeper", "name": "Stave church", "description": "A stave church is a medieval wooden Christian church building once common in north-western Europe.", "website": "https://en.wikipedia.org/wiki/Stave_church", "subreddit": "/r/place_nordicunion", "center": [254.5, 112.5], "path": [[235.5, 125.5], [235.5, 115.5], [240.5, 108.5], [240.5, 102.5], [243.5, 102.5], [244.5, 97.5], [252.5, 90.5], [258.5, 94.5], [263.5, 99.5], [269.5, 104.5], [271.5, 108.5], [271.5, 127.5]]}, +{"id": "txi8eo", "submitted_by": "ectoplazmatic7129", "name": "amogi ruby", "description": "leader of team RWBY and has the biggest plot armour of all. silver eyes", "website": "", "subreddit": "", "center": [508.5, 1698.5], "path": [[510.5, 1695.5], [506.5, 1695.5], [506.5, 1700.5], [510.5, 1700.5], [510.5, 1699.5], [511.5, 1699.5], [511.5, 1696.5], [510.5, 1696.5], [510.5, 1695.5]]}, +{"id": "txolya", "submitted_by": "GPelector", "name": "TourneBoule", "description": "Tourneboule (French name, en:dizzie) is a character in the Bob the builder animated show. It is also the icon of the most retarded discord server ever made !", "website": "https://discord.gg/NcaPHet", "subreddit": "", "center": [1752.5, 337.5], "path": [[1747.5, 330.5], [1747.5, 343.5], [1749.5, 343.5], [1749.5, 344.5], [1755.5, 344.5], [1755.5, 343.5], [1757.5, 343.5], [1757.5, 330.5], [1747.5, 330.5]]}, +{"id": "txokjp", "submitted_by": "Skik134", "name": "Taiwan + Yume Nikki heart", "description": "An alliance heart mutually drawn as a sign of cooperation between r/Taiwan and r/yumenikki.", "website": "", "subreddit": "", "center": [1229.5, 108.5], "path": [[1229.5, 106.5], [1229.5, 105.5], [1231.5, 105.5], [1231.5, 106.5], [1232.5, 106.5], [1232.5, 109.5], [1231.5, 109.5], [1231.5, 110.5], [1230.5, 110.5], [1230.5, 111.5], [1228.5, 111.5], [1228.5, 110.5], [1227.5, 110.5], [1227.5, 109.5], [1226.5, 109.5], [1226.5, 106.5], [1227.5, 106.5], [1227.5, 105.5], [1228.5, 105.5]]}, +{"id": "txokgf", "submitted_by": "Skik134", "name": "Lions + Yume Nikki heart", "description": "An alliance heart mutually drawn as a sign of cooperation between r/DetroitLions and r/yumenikki.", "website": "", "subreddit": "", "center": [1200.5, 104.5], "path": [[1200.5, 102.5], [1200.5, 101.5], [1202.5, 101.5], [1202.5, 102.5], [1203.5, 102.5], [1203.5, 105.5], [1202.5, 105.5], [1202.5, 106.5], [1201.5, 106.5], [1201.5, 107.5], [1199.5, 107.5], [1199.5, 106.5], [1198.5, 106.5], [1198.5, 105.5], [1197.5, 105.5], [1197.5, 102.5], [1198.5, 102.5], [1198.5, 101.5], [1199.5, 101.5]]}, +{"id": "txokb9", "submitted_by": "XxLAMOLA0131xX", "name": "Griefed SMG4 and Terrance", "description": "In this spot there was a pixel art of SMG4 and Terrance, characters from the SMG4 universe. It was griefed by the streamer Bratishkinoff hors before the end of the event after resisting bravely from grief attacks.", "website": "https://www.glitchprod.com", "subreddit": "/r/smg4", "center": [917.5, 1689.5], "path": [[910.5, 1675.5], [924.5, 1675.5], [924.5, 1703.5], [910.5, 1703.5], [910.5, 1675.5]]}, +{"id": "txokay", "submitted_by": "Skik134", "name": "Red Wings + Yume Nikki heart", "description": "An alliance heart mutually drawn as a sign of cooperation between r/DetroitRedWings and r/yumenikki.", "website": "", "subreddit": "", "center": [1229.5, 108.5], "path": [[1229.5, 106.5], [1229.5, 105.5], [1231.5, 105.5], [1231.5, 106.5], [1232.5, 106.5], [1232.5, 109.5], [1231.5, 109.5], [1231.5, 110.5], [1230.5, 110.5], [1230.5, 111.5], [1228.5, 111.5], [1228.5, 110.5], [1227.5, 110.5], [1227.5, 109.5], [1226.5, 109.5], [1226.5, 106.5], [1227.5, 106.5], [1227.5, 105.5], [1228.5, 105.5]]}, +{"id": "txojsj", "submitted_by": "stadlles", "name": "amogus", "description": "purple bio", "website": "", "subreddit": "", "center": [738.5, 1738.5], "path": [[740.5, 1735.5], [740.5, 1741.5], [736.5, 1741.5], [736.5, 1735.5], [740.5, 1735.5]]}, +{"id": "txojhk", "submitted_by": "XingLili", "name": "A small Hatsune Miku image", "description": "Hatsune Miku (Japanese: \u521d\u97f3\u30df\u30af) is a Vocaloid software voicebank with a character developed by Crypton Future Media. Hatsune Miku have special meaning for trans community as she is assigned to be the writer of Harry Potter jokingly because of the anti-transgender stance of it's original writer J.K. Rowling.", "website": "", "subreddit": "/r/transplace", "center": [563.5, 472.5], "path": [[558.5, 476.5], [558.5, 467.5], [568.5, 467.5], [568.5, 476.5]]}, +{"id": "txoirn", "submitted_by": "parelaxel", "name": "AEtherNova and EggUwU", "description": "The names of a small content creator named AEtherNova and his girlfriend known as EggUwU", "website": "https://www.youtube.com/channel/UC8FP9-i1gMejWqME0v90FQg", "subreddit": "", "center": [490.5, 1653.5], "path": [[479.5, 1649.5], [479.5, 1657.5], [495.5, 1657.5], [495.5, 1658.5], [500.5, 1658.5], [500.5, 1657.5], [501.5, 1657.5], [501.5, 1649.5]]}, +{"id": "txogcf", "submitted_by": "SenorAles", "name": "SNIFFA", "description": "BTTV/7tv/FFZ Emote\nFrom the homies xx", "website": "https://7tv.app/emotes/60e787dd375879d78fc6b25e", "subreddit": "", "center": [1341.5, 1273.5], "path": [[1332.5, 1265.5], [1347.5, 1265.5], [1349.5, 1265.5], [1349.5, 1281.5], [1332.5, 1281.5], [1332.5, 1265.5]]}, +{"id": "txofo3", "submitted_by": "LaBete_", "name": "Rat", "description": "8bit ratatouille pixel art, a symbol to immortalize the power of progress. Created by u/LaBete_ & Co", "website": "https://discord.gg/UqpQqxnkhp", "subreddit": "", "center": [126.5, 1259.5], "path": [[121.5, 1253.5], [130.5, 1253.5], [130.5, 1265.5], [121.5, 1265.5]]}, +{"id": "txod7k", "submitted_by": "greese1", "name": "osu! fish", "description": "", "website": "", "subreddit": "/r/PlaceFishCult, /r/osuplace", "center": [489.5, 897.5], "path": [[487.5, 896.5], [487.5, 898.5], [490.5, 898.5], [490.5, 896.5], [487.5, 896.5]]}, +{"id": "txochk", "submitted_by": "greese1", "name": "Charles", "description": "Mellony's fish Charles", "website": "", "subreddit": "/r/PlaceFishCult", "center": [494.5, 900.5], "path": [[492.5, 899.5], [492.5, 901.5], [495.5, 901.5], [495.5, 899.5], [492.5, 899.5]]}, +{"id": "txobj4", "submitted_by": "AlexErdman", "name": "University of Massachusetts and George Washington University", "description": "UMass, in red, and GWU, in dark blue, are mostly covered in the final image.", "website": "", "subreddit": "/r/gwu", "center": [1502.5, 1694.5], "path": [[1492.5, 1680.5], [1512.5, 1679.5], [1512.5, 1708.5], [1490.5, 1707.5]]}, +{"id": "txob3m", "submitted_by": "greese1", "name": "Tom(DapperFish)", "description": "TheKidPyro's fish Tom", "website": "", "subreddit": "/r/PlaceFishCult", "center": [498.5, 897.5], "path": [[496.5, 896.5], [496.5, 898.5], [499.5, 898.5], [499.5, 896.5], [496.5, 896.5]]}, +{"id": "txoaiq", "submitted_by": "Ngp3", "name": "The New Order: The Last Days of Europe", "description": "The New Order: The Last Days of Europe is an alternate history mod for strategy game Hearts of Iron IV that depicts a three-way cold war between the United States, Nazi Germany, and Imperial Japan. The torch is the logo of the Organization of Free Nations, the alliance headed by the Untied States in the setting. Additionally, TNO's color palate heavily features neon blue and neon pink to further represent its dark Cold War style.", "website": "https://discord.com/invite/tno", "subreddit": "/r/TNOmod", "center": [463.5, 1948.5], "path": [[450.5, 1970.5], [475.5, 1970.5], [475.5, 1925.5], [450.5, 1925.5]]}, +{"id": "txoa5x", "submitted_by": "conduxit", "name": "Whole Lotta Red album cover", "description": "An artpiece that thrived under the management of Playboi Carti Vamps until streamer Adin Ross called on his viewers to destroy it because of his resentment for the sub. r/playboicarti began posting pictures of his sisters boobs on their sub which made Adin even angrier. He got his followers to paint over the Whole Lotta Red album cover with Lil Uzi Vert's Eternal Atake, during this stream he telephoned Uzi to tell him of his great feat, but Uzi just called him \"rude\" and urged Adin to tell her sister to \"stay off OnlyFans\"", "website": "", "subreddit": "/r/playboicarti", "center": [73.5, 498.5], "path": [[92.5, 468.5], [92.5, 528.5], [53.5, 528.5], [53.5, 468.5], [92.5, 468.5]]}, +{"id": "txo91r", "submitted_by": "greese1", "name": "calcifer", "description": "TmicKeyD's fish calcifer", "website": "", "subreddit": "/r/PlaceFishCult", "center": [498.5, 893.5], "path": [[496.5, 892.5], [496.5, 894.5], [499.5, 894.5], [499.5, 892.5], [496.5, 892.5]]}, +{"id": "txo7vn", "submitted_by": "paulobaiano", "name": "Menes suecos", "description": "The logo of the Menes Suecos channel (Brazilian Comedy youtube channel) was there for a day before being destroyed by the P\u00f4le IIID community", "website": "https://youtube.com/MENESSUECOSS", "subreddit": "/r/MenesSuecos", "center": [259.5, 1897.5], "path": [[251.5, 1904.5], [251.5, 1890.5], [267.5, 1890.5], [267.5, 1904.5], [261.5, 1904.5]]}, +{"id": "txo7o6", "submitted_by": "xRGTMX", "name": "smol pepe", "description": "A very tiny Pepe face. Where do you think he's looking?", "website": "", "subreddit": "", "center": [767.5, 693.5], "path": [[765.5, 691.5], [765.5, 695.5], [769.5, 695.5], [769.5, 693.5], [770.5, 691.5], [765.5, 691.5]]}, +{"id": "txo6q6", "submitted_by": "accidentalprancingmt", "name": "It's Always Sunny in Philadelphia ", "description": "Mac, Dee Reynolds, Frank Reynolds, Charlie, Dennis Reynolds.", "website": "https://en.wikipedia.org/wiki/It%27s_Always_Sunny_in_Philadelphia", "subreddit": "", "center": [1253.5, 1992.5], "path": [[1220.5, 1974.5], [1221.5, 1999.5], [1286.5, 1999.5], [1286.5, 1986.5], [1226.5, 1987.5]]}, +{"id": "txo5w9", "submitted_by": "xRGTMX", "name": "pop'n music", "description": "The cute little notes (called Pop-kuns) from pop'n music, a 9-button rhythm game series by KONAMI since 1998. You can find a more complete version of this area by looking at screenshots prior to the start of the white void.", "website": "https://p.eagate.573.jp/game/popn/", "subreddit": "", "center": [781.5, 711.5], "path": [[780.5, 709.5], [776.5, 713.5], [777.5, 714.5], [778.5, 714.5], [779.5, 713.5], [782.5, 713.5], [782.5, 712.5], [785.5, 709.5], [784.5, 708.5], [783.5, 708.5], [782.5, 709.5]]}, +{"id": "txo5f6", "submitted_by": "Rarang", "name": "Garuda Pancasila", "description": "National Emblem of Indonesia. Garuda with a heraldic shield on its chest representing the five principles of Indonesia's national ideology and a scroll gripped by its claws inscribed with the national motto.", "website": "https://en.wikipedia.org/wiki/National_emblem_of_Indonesia", "subreddit": "", "center": [95.5, 798.5], "path": [[91.5, 794.5], [92.5, 794.5], [93.5, 795.5], [93.5, 794.5], [93.5, 793.5], [96.5, 793.5], [96.5, 794.5], [97.5, 794.5], [97.5, 795.5], [98.5, 795.5], [98.5, 794.5], [99.5, 794.5], [100.5, 794.5], [100.5, 795.5], [100.5, 797.5], [100.5, 798.5], [99.5, 798.5], [99.5, 799.5], [99.5, 800.5], [100.5, 800.5], [100.5, 801.5], [100.5, 802.5], [99.5, 802.5], [99.5, 803.5], [92.5, 803.5], [91.5, 803.5], [91.5, 802.5], [90.5, 802.5], [90.5, 801.5], [90.5, 800.5], [91.5, 800.5], [91.5, 798.5], [90.5, 798.5], [90.5, 797.5], [90.5, 796.5], [90.5, 795.5], [90.5, 794.5]]}, +{"id": "txo4ln", "submitted_by": "Riojanito", "name": "La Rioja", "description": "La Rioja is an autonomous community in the north of Spain (Europe). It is well known for its wines and its San Mill\u00e1n glosses, the earliest examples of written Spanish. Its flag consists of four horizontal stripes of equal size, colored in red, white, green and yellow, plus a coat of arms that may appear in the center.", "website": "", "subreddit": "/r/LaRioja", "center": [1069.5, 281.5], "path": [[1069.5, 279.5], [1068.5, 278.5], [1067.5, 278.5], [1066.5, 279.5], [1065.5, 280.5], [1065.5, 282.5], [1066.5, 283.5], [1067.5, 284.5], [1068.5, 285.5], [1069.5, 286.5], [1070.5, 285.5], [1071.5, 284.5], [1072.5, 283.5], [1073.5, 282.5], [1073.5, 280.5], [1072.5, 279.5], [1071.5, 278.5], [1070.5, 278.5]]}, +{"id": "txo47v", "submitted_by": "The_Master_Puppet", "name": "Ghost Power 13", "description": "The logo of a Geometry Dash YouTuber (his icon).\nGF is a reference to GhostPower, the tv series where he was inspired to make his name and logo", "website": "https://www.youtube.com/channel/UCC_S4bHTIGVJiCfZsKU15Gw", "subreddit": "", "center": [1831.5, 321.5], "path": [[1823.5, 309.5], [1838.5, 309.5], [1838.5, 333.5], [1823.5, 333.5], [1823.5, 309.5]]}, +{"id": "txo3bm", "submitted_by": "laxihal217", "name": "Pat Pryce", "description": "A small piece of pixel art valiantly defended by a group of 9 accounts.", "website": "", "subreddit": "", "center": [102.5, 1233.5], "path": [[100.5, 1228.5], [104.5, 1228.5], [104.5, 1237.5], [100.5, 1237.5]]}, +{"id": "txo1lq", "submitted_by": "Xebarno", "name": "The Mole (Krtek)", "description": "The mole is an animated character in a series of cartoons created by Czech animator Zden\u011bk Miler.", "website": "", "subreddit": "", "center": [1298.5, 184.5], "path": [[1284.5, 161.5], [1283.5, 206.5], [1312.5, 206.5], [1312.5, 161.5], [1284.5, 161.5]]}, +{"id": "txo19e", "submitted_by": "Oats720", "name": "Mallard", "description": "Quack", "website": "", "subreddit": "", "center": [1632.5, 1437.5], "path": [[1628.5, 1434.5], [1635.5, 1434.5], [1635.5, 1440.5], [1628.5, 1440.5]]}, +{"id": "txo03u", "submitted_by": "Oats720", "name": "A Horse and a Tree", "description": "Simple pixel art depicting the beauty of nature...and Kevin", "website": "", "subreddit": "", "center": [1571.5, 1421.5], "path": [[1560.5, 1416.5], [1575.5, 1416.5], [1575.5, 1421.5], [1581.5, 1421.5], [1581.5, 1425.5], [1577.5, 1425.5], [1576.5, 1429.5], [1570.5, 1429.5], [1570.5, 1422.5], [1560.5, 1422.5]]}, +{"id": "txnzbm", "submitted_by": "Sharkscanbecute", "name": "Mspec Flag", "description": "Mspec stands for multisexual or multi-attraction spectrum. The term is used to refer to people who are attracted to more than one gender. Such as bisexuals, pansexuals, polyromantics, etc.", "website": "", "subreddit": "/r/mspec_community", "center": [453.5, 534.5], "path": [[456.5, 537.5], [455.5, 536.5], [448.5, 537.5], [449.5, 532.5], [456.5, 532.5], [457.5, 534.5], [457.5, 536.5], [457.5, 537.5], [455.5, 537.5], [454.5, 537.5], [454.5, 537.5], [454.5, 537.5], [455.5, 536.5], [454.5, 536.5], [454.5, 536.5], [451.5, 537.5], [451.5, 537.5], [457.5, 537.5], [458.5, 537.5]]}, +{"id": "txnyug", "submitted_by": "give_pizza_chance", "name": "David Pastrnak", "description": "A bowl of pasta symbolizing the Boston Bruins player (88) David Pastrnak, often lovingly referred to by fans as 'Pasta'.", "website": "https://en.wikipedia.org/wiki/David_Pastr%C5%88%C3%A1k", "subreddit": "/r/BostonBruins", "center": [485.5, 1920.5], "path": [[482.5, 1917.5], [482.5, 1917.5], [482.5, 1923.5], [488.5, 1923.5], [488.5, 1917.5], [482.5, 1917.5]]}, +{"id": "txnye2", "submitted_by": "HerrScotti", "name": "r/placeDE", "description": "The german sub to coordinate actions on r/place.\nOfficial description from r/placede: \nUnser Offizielles Subreddit f\u00fcr Diskussionen und Planung zu Ereignissen in r/place.", "website": "", "subreddit": "/r/placede", "center": [18.5, 859.5], "path": [[0.5, 856.5], [36.5, 856.5], [36.5, 862.5], [0.5, 862.5]]}, +{"id": "txnyat", "submitted_by": "mariokra", "name": "Nigeria", "description": "The country Nigeria", "website": "", "subreddit": "", "center": [788.5, 1101.5], "path": [[781.5, 1090.5], [795.5, 1090.5], [795.5, 1113.5], [782.5, 1113.5]]}, +{"id": "txnxtf", "submitted_by": "_Falcon-_", "name": "BadBoyHalo", "description": "Twitch streamer, member of the Dream SMP", "website": "", "subreddit": "/r/badboyhalo", "center": [160.5, 922.5], "path": [[156.5, 918.5], [162.5, 918.5], [163.5, 926.5], [156.5, 926.5], [157.5, 925.5], [156.5, 918.5]]}, +{"id": "txnwh1", "submitted_by": "LeakedFinder", "name": "OnlyNekos Logo", "description": "A very special logo designed during the r/place 2022 event. This logo represents a team on Twitch called the OnlyNekos. The OnlyNekos team consists of four members which are Kromia, Totless, Asby, and Krisuna. Although there is a subreddit for Totless, it is not necessarily 100% family friendly.", "website": "https://www.twitch.tv/team/onlynekos", "subreddit": "[/r/Totless", "center": [1597.5, 1449.5], "path": [[1605.5, 1420.5], [1591.5, 1420.5], [1589.5, 1421.5], [1585.5, 1421.5], [1585.5, 1422.5], [1583.5, 1422.5], [1583.5, 1423.5], [1581.5, 1423.5], [1581.5, 1424.5], [1580.5, 1424.5], [1577.5, 1427.5], [1572.5, 1432.5], [1570.5, 1434.5], [1569.5, 1446.5], [1569.5, 1455.5], [1572.5, 1455.5], [1572.5, 1456.5], [1573.5, 1456.5], [1574.5, 1457.5], [1574.5, 1459.5], [1573.5, 1461.5], [1572.5, 1463.5], [1573.5, 1467.5], [1575.5, 1469.5], [1578.5, 1469.5], [1579.5, 1470.5], [1582.5, 1475.5], [1583.5, 1475.5], [1585.5, 1476.5], [1586.5, 1477.5], [1586.5, 1478.5], [1610.5, 1478.5], [1610.5, 1477.5], [1611.5, 1476.5], [1612.5, 1475.5], [1613.5, 1474.5], [1614.5, 1473.5], [1618.5, 1473.5], [1618.5, 1472.5], [1619.5, 1471.5], [1620.5, 1470.5], [1621.5, 1469.5], [1621.5, 1451.5], [1627.5, 1451.5], [1627.5, 1439.5], [1626.5, 1438.5], [1625.5, 1437.5], [1625.5, 1436.5], [1624.5, 1435.5], [1624.5, 1433.5], [1620.5, 1429.5], [1620.5, 1428.5], [1619.5, 1427.5], [1617.5, 1425.5], [1616.5, 1425.5], [1616.5, 1424.5], [1615.5, 1424.5], [1614.5, 1423.5], [1613.5, 1423.5], [1612.5, 1422.5], [1611.5, 1422.5], [1610.5, 1422.5], [1609.5, 1422.5], [1608.5, 1421.5], [1607.5, 1421.5], [1606.5, 1420.5]]}, +{"id": "txnvc1", "submitted_by": "343CreeperMaster", "name": "The Ori side of the Ori-Taiwan heart", "description": "The Ori managed side of the Ori-Taiwan heart, religiously protected by the self-titled Guardian of the Heart, u/343CreeperMaster", "website": "", "subreddit": "/r/OriandthrBlindForest, /r/taiwan", "center": [966.5, 540.5], "path": [[960.5, 537.5], [971.5, 535.5], [973.5, 544.5], [960.5, 544.5]]}, +{"id": "txnuvo", "submitted_by": "GrinkStone", "name": "San's Glowing Eyes", "description": "During the whole /r Place ordeal people actively put blue eyes inside the Onepiece skulls. A reference to Sans from Undertale, which also takes the form of a skeleton. One of the more subtle struggles, appreciated nonetheless.", "website": "https://undertale.fandom.com/wiki/Sans", "subreddit": "/r/Undertale", "center": [1686.5, 1204.5], "path": [[1679.5, 1202.5], [1681.5, 1202.5], [1681.5, 1203.5], [1693.5, 1203.5], [1693.5, 1205.5], [1691.5, 1205.5], [1691.5, 1204.5], [1679.5, 1204.5], [1679.5, 1202.5]]}, +{"id": "txntqq", "submitted_by": "mattcho2", "name": "Political parasitism of the event", "description": "LFI, a so-called \"left-wing\" French political organization, highly subsidized by taxpayer's money and infiltrating the event for electoral interest, were too lazy to defend their own logo standing for two days, against the letter Z drawn on a French flag (a last-minute and improvised effort from a bunch of patriots supporting opponent presidential candidate Zemmour) so much so that in the end, they prefered to incite some community of foreign residents to destroy the new drawing, in a last attempt to recover it with the flag of Morocco... a perfect analogy of how they actually proceed against their own country IRL", "website": "", "subreddit": "", "center": [1679.5, 744.5], "path": [[1664.5, 722.5], [1694.5, 722.5], [1694.5, 766.5], [1664.5, 766.5], [1664.5, 722.5]]}, +{"id": "txntka", "submitted_by": "nxnxnxnxnx", "name": "Meat", "description": "Meat originated as an earthworm puppet that was featured in a British 1999 commercial for MSN. The character gained newfound popularity when Vinny made it a recurrent meme in his streams. Meat got its name due to a meme that associated the puppet to an euphemism for male genitalia.\n\nEEEEYOW! - Meat", "website": "https://www.youtube.com/channel/UCzORJV8l3FWY4cFO8ot-F2w", "subreddit": "/r/Vinesauce", "center": [99.5, 1079.5], "path": [[102.5, 1089.5], [104.5, 1083.5], [106.5, 1080.5], [106.5, 1078.5], [105.5, 1077.5], [103.5, 1072.5], [101.5, 1071.5], [98.5, 1071.5], [96.5, 1072.5], [95.5, 1073.5], [94.5, 1075.5], [93.5, 1078.5], [93.5, 1082.5], [95.5, 1085.5], [97.5, 1087.5], [99.5, 1087.5], [100.5, 1088.5], [101.5, 1088.5]]}, +{"id": "txnt9i", "submitted_by": "ferreju", "name": "\ud0dc\uadf9\uae30, Taegeukgi (The National flag)", "description": "The National Flag of Korea, \ud0dc\uadf9\uae30 [Taegeukgi]\nRepublic of Korea (South Korea)", "website": "https://www.mois.go.kr/eng/sub/a03/nationalSymbol/screen.do", "subreddit": "/r/southkorea", "center": [1221.5, 687.5], "path": [[1200.5, 674.5], [1200.5, 700.5], [1241.5, 700.5], [1241.5, 674.5]]}, +{"id": "txnsou", "submitted_by": "KingDLetsPlay", "name": "Sardine remnants", "description": "the remnants of the sardine that previously accompanied the sturgeon to the right", "website": "", "subreddit": "", "center": [1055.5, 364.5], "path": [[1052.5, 364.5], [1054.5, 362.5], [1057.5, 363.5], [1057.5, 365.5], [1053.5, 365.5], [1052.5, 363.5]]}, +{"id": "txnsjt", "submitted_by": "Booty156", "name": "Echo Arena VR ", "description": "The Echo Arena VR Logo. \n Echo VR is a free-to-play multiplayer game with high intensity 4v4 multiplayer competition in zero gravity. ", "website": "https://www.oculus.com/experiences/quest/2215004568539258/?locale=en_GB", "subreddit": "/r/echoarena", "center": [1562.5, 1769.5], "path": [[1549.5, 1775.5], [1549.5, 1762.5], [1574.5, 1762.5], [1575.5, 1775.5], [1549.5, 1775.5]]}, +{"id": "txnrjn", "submitted_by": "GrinkStone", "name": "Sans' Glowing Eye", "description": "During the whole /r Place ordeal people actively put blue eyes inside the Onepiece skull. A reference to Sans from Undertale, which also takes the form of a skeleton. One of the more subtle struggles, appreciated nonetheless.", "website": "https://undertale.fandom.com/wiki/Sans", "subreddit": "/r/Undertale", "center": [359.5, 564.5], "path": [[358.5, 562.5], [360.5, 562.5], [360.5, 565.5], [358.5, 565.5], [358.5, 562.5]]}, +{"id": "txnrh5", "submitted_by": "mynameisjoa", "name": "Teddy Fresh x The H3 Podcast x Pok\u00e9mon - War Efforts Collaboration", "description": "The H3 Podcast and a random Pok\u00e9mon group decided to come together in the great /r/place war of 2022. They did this in order to defend their lands. They were then joined by Teddy Fresh when the logo suddenly appeared without anyone having planned it. Check episode #30 of the H3TV to hear H3's crew member Love talk more about this.\n", "website": "", "subreddit": "", "center": [561.5, 1470.5], "path": [[592.5, 1502.5], [574.5, 1502.5], [574.5, 1522.5], [539.5, 1522.5], [539.5, 1526.5], [534.5, 1526.5], [535.5, 1524.5], [524.5, 1524.5], [524.5, 1513.5], [532.5, 1513.5], [532.5, 1499.5], [530.5, 1499.5], [530.5, 1498.5], [529.5, 1498.5], [529.5, 1496.5], [530.5, 1496.5], [531.5, 1495.5], [532.5, 1495.5], [532.5, 1494.5], [531.5, 1494.5], [529.5, 1494.5], [528.5, 1494.5], [527.5, 1494.5], [527.5, 1493.5], [528.5, 1493.5], [529.5, 1493.5], [529.5, 1492.5], [530.5, 1492.5], [531.5, 1492.5], [531.5, 1491.5], [532.5, 1490.5], [533.5, 1489.5], [534.5, 1488.5], [534.5, 1487.5], [535.5, 1487.5], [536.5, 1487.5], [537.5, 1487.5], [537.5, 1416.5], [587.5, 1416.5], [587.5, 1450.5], [588.5, 1450.5], [588.5, 1451.5], [591.5, 1451.5], [591.5, 1452.5], [592.5, 1452.5]]}, +{"id": "txnrg5", "submitted_by": "furman82", "name": "Tinker Company", "description": "Tinker Company: An independently-owned jewelry company based out of Brooklyn, New York that specializes in handcrafted pieces.", "website": "https://tinkercompany.com", "subreddit": "", "center": [1036.5, 1902.5], "path": [[1033.5, 1899.5], [1039.5, 1899.5], [1039.5, 1905.5], [1033.5, 1905.5]]}, +{"id": "txnqdh", "submitted_by": "mcbirbo343", "name": "War of the top left corner", "description": "In the top left corner of the canvas there was a mini war that was unnoticed. The war went on from the start of place to be the last one next to the snoo Easter egg. The winner of the war was a red pixel made by an unknown user.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": [[0.5, 0.5], [0.5, 0.5], [0.5, 0.5], [1.5, 0.5], [0.5, 1.5]]}, +{"id": "txnpuq", "submitted_by": "baron33333333", "name": "Flag of the Swedish-speaking Finns", "description": "Swedish-speaking Finns are a linguistic minority in Finland. A substantial amount of Finland's great men were and are Swedish-speaking Finns, such as: Gustaf Mannerheim (military leader), Jean Sibelius (composer), Johan Ludvig Runeberg (poet), Tove Jansson (writer), Linus Torvalds (creator of the Linux operating system).", "website": "https://en.wikipedia.org/wiki/Flag_of_the_Swedish-speaking_Finns", "subreddit": "/r/Suomi", "center": [571.5, 172.5], "path": [[562.5, 170.5], [562.5, 170.5], [562.5, 171.5], [562.5, 172.5], [562.5, 173.5], [562.5, 174.5], [563.5, 173.5], [564.5, 173.5], [565.5, 173.5], [566.5, 173.5], [567.5, 173.5], [567.5, 174.5], [568.5, 174.5], [568.5, 173.5], [569.5, 173.5], [570.5, 173.5], [571.5, 173.5], [571.5, 174.5], [572.5, 174.5], [572.5, 173.5], [573.5, 173.5], [574.5, 173.5], [575.5, 173.5], [576.5, 173.5], [577.5, 173.5], [578.5, 173.5], [579.5, 173.5], [579.5, 174.5], [580.5, 173.5], [581.5, 173.5], [581.5, 172.5], [581.5, 171.5], [580.5, 172.5], [579.5, 171.5], [578.5, 172.5], [577.5, 172.5], [576.5, 172.5], [575.5, 172.5], [574.5, 172.5], [573.5, 172.5], [573.5, 173.5], [574.5, 173.5], [573.5, 171.5], [573.5, 171.5], [574.5, 171.5], [574.5, 171.5], [573.5, 171.5], [572.5, 172.5], [571.5, 172.5], [571.5, 173.5], [570.5, 172.5], [569.5, 172.5], [570.5, 171.5], [569.5, 171.5], [568.5, 172.5], [567.5, 172.5], [566.5, 172.5], [566.5, 171.5], [565.5, 171.5], [564.5, 171.5], [563.5, 171.5], [562.5, 170.5], [579.5, 172.5]]}, +{"id": "txnoae", "submitted_by": "Basmage", "name": "CINILI (cinilicafe)", "description": "A small coffee shop in Istanbul, Grand Bazaar. ", "website": "https://linktr.ee/cinilicafe", "subreddit": "", "center": [1765.5, 1568.5], "path": [[1759.5, 1559.5], [1770.5, 1559.5], [1770.5, 1576.5], [1759.5, 1576.5], [1759.5, 1559.5]]}, +{"id": "txno7x", "submitted_by": "xRGTMX", "name": "Green Pipe", "description": "Object from the Mario video game franchise. Traveling through a pipe takes you... places.", "website": "https://mario.nintendo.com", "subreddit": "/r/Mario", "center": [8.5, 1145.5], "path": [[0.5, 1122.5], [8.5, 1122.5], [9.5, 1121.5], [19.5, 1121.5], [20.5, 1122.5], [21.5, 1122.5], [22.5, 1123.5], [24.5, 1125.5], [24.5, 1127.5], [17.5, 1127.5], [17.5, 1128.5], [16.5, 1128.5], [15.5, 1129.5], [15.5, 1132.5], [14.5, 1133.5], [14.5, 1144.5], [13.5, 1145.5], [13.5, 1153.5], [14.5, 1154.5], [14.5, 1158.5], [14.5, 1160.5], [15.5, 1161.5], [15.5, 1162.5], [16.5, 1163.5], [16.5, 1166.5], [17.5, 1167.5], [25.5, 1167.5], [24.5, 1167.5], [23.5, 1168.5], [22.5, 1168.5], [21.5, 1169.5], [21.5, 1170.5], [9.5, 1170.5], [8.5, 1169.5], [7.5, 1170.5], [1.5, 1170.5], [0.5, 1169.5]]}, +{"id": "txnnnh", "submitted_by": "33zus", "name": "Nosh and Teef", "description": "The Teef skin from the game Fortnite Battle Royale and his backbling, Nosh, made in memory of Peter Rotar.", "website": "", "subreddit": "", "center": [403.5, 1790.5], "path": [[399.5, 1779.5], [408.5, 1779.5], [409.5, 1800.5], [397.5, 1800.5], [399.5, 1780.5]]}, +{"id": "txnn8w", "submitted_by": "empirebacks", "name": "FDP LAND ", "description": "FDP LAND Discord community fought here to leave a trace of their not so friendly discord", "website": "", "subreddit": "", "center": [1234.5, 659.5], "path": [[1227.5, 655.5], [1225.5, 656.5], [1227.5, 663.5], [1227.5, 664.5], [1242.5, 664.5], [1242.5, 655.5]]}, +{"id": "txnmkm", "submitted_by": "annichan1999", "name": "Gay Men Server Logo", "description": "The Logo of Shisuka's queer community server \"gay men\".", "website": "", "subreddit": "", "center": [1207.5, 1259.5], "path": [[1203.5, 1257.5], [1203.5, 1263.5], [1209.5, 1262.5], [1210.5, 1260.5], [1209.5, 1257.5], [1206.5, 1256.5], [1204.5, 1257.5], [1209.5, 1263.5], [1210.5, 1257.5]]}, +{"id": "txnmf4", "submitted_by": "TrashSmashE", "name": "Fungie the Dolphin", "description": "Fungie was a male bottle nosed dolphin that lived in very close contact with humans on the southwest coast of Ireland.", "website": "", "subreddit": "/r/ireland", "center": [154.5, 742.5], "path": [[149.5, 737.5], [149.5, 746.5], [158.5, 746.5], [158.5, 737.5]]}, +{"id": "txnl3o", "submitted_by": "GrinkStone", "name": "Among Us", "description": "An Among Us pixel art found inside the Arkadia Artwork.\n\nI've spotted 8 of them, how many can you find?", "website": "", "subreddit": "", "center": [1834.5, 1200.5], "path": [[1832.5, 1198.5], [1832.5, 1197.5], [1836.5, 1197.5], [1836.5, 1203.5], [1832.5, 1201.5], [1831.5, 1201.5], [1831.5, 1198.5], [1832.5, 1198.5]]}, +{"id": "txnjfz", "submitted_by": "ferreju", "name": "\ud0dc\uadf9\uae30 Taegeukgi of South Korea", "description": "The National Flag : \ud0dc\uadf9\uae30 [Taegeukgi], Republic of Korea (South Korea)", "website": "https://www.mois.go.kr/eng/sub/a03/nationalSymbol/screen.do", "subreddit": "/r/southkorea", "center": [307.5, 165.5], "path": [[296.5, 158.5], [296.5, 171.5], [317.5, 171.5], [317.5, 158.5]]}, +{"id": "txnhum", "submitted_by": "RockinJack18", "name": "allnewDog", "description": "A representation of a friend group within the Super Mario Odyssey Speedrunning community. Originally the profile picture of a former member.", "website": "https://twitter.com/RockinJack_/status/1510678767869599760", "subreddit": "", "center": [1117.5, 1236.5], "path": [[1113.5, 1239.5], [1113.5, 1231.5], [1120.5, 1231.5], [1120.5, 1240.5], [1113.5, 1240.5], [1113.5, 1239.5]]}, +{"id": "txngpu", "submitted_by": "darkness0410", "name": "Tower of XD", "description": "A small discord community", "website": "", "subreddit": "", "center": [437.5, 1673.5], "path": [[433.5, 1671.5], [433.5, 1675.5], [441.5, 1675.5], [441.5, 1671.5], [433.5, 1671.5]]}, +{"id": "txngfl", "submitted_by": "ottogame", "name": "CyrusTWO's banner", "description": "A banner for swedens biggest streamer cyrusTWO.", "website": "https://www.twitch.tv/cyrustwo", "subreddit": "", "center": [192.5, 979.5], "path": [[190.5, 994.5], [190.5, 964.5], [194.5, 964.5], [194.5, 994.5]]}, +{"id": "txnfun", "submitted_by": "SpasticLogond", "name": "Praise Orb", "description": "The Orb is the most powerful entity to ever exist, it (The Orb) provides light, freedom, and immeasurable power to everyone in the Universe. Praise the Orb.", "website": "https://discord.gg/HNY95mk9Rx", "subreddit": "/r/praiseorb", "center": [1951.5, 1239.5], "path": [[1942.5, 1236.5], [1959.5, 1236.5], [1959.5, 1241.5], [1942.5, 1241.5]]}, +{"id": "txnfo3", "submitted_by": "maxitrash", "name": "Sapnap's flame", "description": "Sapnap is minecraft content creator affialted with the Dream SMP who took part in the creation of the Punz/Foolish/Tina/Karl Jacobs pannel. He is often associated to fire as his minecraft skin has a flame on it, and his fictionous character in the dream smp is known to be related to fire. The panda is also one of his symbol as sapnap used to be called pandas and is panda backwards with the d becoming a p. ", "website": "", "subreddit": "", "center": [1178.5, 958.5], "path": [[1162.5, 960.5], [1167.5, 940.5], [1172.5, 964.5], [1175.5, 957.5], [1175.5, 952.5], [1174.5, 947.5], [1175.5, 943.5], [1178.5, 938.5], [1180.5, 934.5], [1182.5, 930.5], [1184.5, 929.5], [1186.5, 932.5], [1188.5, 939.5], [1190.5, 945.5], [1191.5, 949.5], [1192.5, 943.5], [1194.5, 932.5], [1199.5, 941.5], [1201.5, 930.5], [1204.5, 935.5], [1199.5, 947.5], [1186.5, 958.5], [1183.5, 963.5], [1182.5, 965.5], [1181.5, 979.5], [1177.5, 979.5], [1175.5, 980.5], [1174.5, 982.5], [1174.5, 985.5], [1172.5, 985.5], [1170.5, 987.5], [1167.5, 986.5], [1167.5, 983.5], [1164.5, 984.5], [1161.5, 988.5], [1161.5, 967.5], [1164.5, 963.5], [1163.5, 961.5], [1162.5, 960.5]]}, +{"id": "txndjj", "submitted_by": "Mifume", "name": "Satellite Bar", "description": "The logo of the bar Satellite at EPFL, a famous engineering school in Lausanne, Switzerland.", "website": "https://satellite.bar/", "subreddit": "", "center": [1552.5, 539.5], "path": [[1548.5, 535.5], [1548.5, 543.5], [1556.5, 543.5], [1556.5, 535.5], [1548.5, 535.5]]}, +{"id": "txnck6", "submitted_by": "thewhistleblower018", "name": "War against Dmitry_Lixx", "description": "April, 4th, 2022, +7 GMT, a Russian streamer called 'Dmitry_Lixxx', with his 2k followers, tried to ruin the artworks of Nijisanji East, KyoAni, Kobo Kanaeru, r/LapfoxTrax, Beastars/FMA, Steven Universe and the other communities. He tried to put a picture of him, being a clown and a Russian girl. Fortunately, our warriors fought back really hard and the art of the Russian girl got deleted.", "website": "https://www.twitch.tv/videos/1445988868", "subreddit": "/r/kyoani", "center": [1937.5, 765.5], "path": [[1920.5, 760.5], [1953.5, 760.5], [1953.5, 769.5], [1920.5, 769.5]]}, +{"id": "txnce8", "submitted_by": "Anomii", "name": "Benny uwu", "description": "An Icon of the German Streamer BennyGee_, who uses an interactive model of a dog as his facecam. Created by him and his community.\n\nBennyg187 BennygHadili", "website": "https://Twitch.TV/BennyGee_", "subreddit": "", "center": [1373.5, 149.5], "path": [[1364.5, 160.5], [1364.5, 141.5], [1370.5, 141.5], [1369.5, 140.5], [1370.5, 139.5], [1380.5, 139.5], [1383.5, 143.5], [1383.5, 152.5], [1380.5, 152.5], [1380.5, 153.5], [1379.5, 154.5], [1379.5, 155.5], [1378.5, 155.5], [1378.5, 156.5], [1378.5, 157.5], [1378.5, 158.5], [1378.5, 159.5], [1378.5, 159.5], [1378.5, 160.5], [1371.5, 160.5], [1368.5, 160.5], [1367.5, 160.5], [1365.5, 160.5], [1366.5, 160.5]]}, +{"id": "txnbwt", "submitted_by": "_rukiri", "name": "7-1", "description": "Sneaky 7-1 placed on the world cup trophy.\n\nThe Brazil versus Germany football match that took place on 8 July 2014 at the Est\u00e1dio Mineir\u00e3o in Belo Horizonte was the first of two semi-final matches of the 2014 FIFA World Cup.\n\nBoth Brazil and Germany reached the semi-finals with an undefeated record in the competition, with the Brazilians' quarter-final with Colombia causing them to lose forward Neymar to injury, and defender and captain Thiago Silva to accumulation of yellow cards. Despite the absence of these players, a close match was expected, given both teams were traditional FIFA World Cup forces, sharing eight tournaments won and having previously met in the 2002 FIFA World Cup Final, where Brazil won 2\u20130 and earned their fifth title. This match, however, ended in a shocking loss for Brazil; Germany led 5\u20130 at half time, with four goals scored within six minutes, and subsequently brought the score up to 7\u20130 in the second half. Brazil scored a consolation goal in the last minute, ending the match 7\u20131. Germany's Toni Kroos was selected as the man of the match.\n\nThe game marked several tournament records. Germany's win marked the largest margin of victory in a FIFA World Cup semi-final. The game saw Germany overtake Brazil as the highest scoring team in World Cup tournament history and become the first team to reach eight World Cup Finals. Miroslav Klose scored his 16th career World Cup goal and surpassed Brazil's own Ronaldo as the tournament's all-time record goalscorer. Brazil's loss broke their 62-match unbeaten streak at home in competitive matches, going back to the 1975 Copa Am\u00e9rica (where they lost 3\u20131 to Peru in same stadium), and equalled their biggest margin of defeat in a match alongside a 6\u20130 loss to Uruguay in 1920. Ultimately, the match was described as a national humiliation.\n\nThe game has subsequently been dubbed the Mineirazo (Mineira\u00e7o [minej\u02c8\u027easu], Agony of Mineir\u00e3o), evoking a previous \"spirit of national shame\" known as the Maracanazo (Maracana\u00e7o) in which Brazil unexpectedly lost the 1950 FIFA World Cup on home soil to Uruguay. Brazil subsequently lost 3\u20130 to the Netherlands in the third place play-off. Germany went on to win the World Cup for the fourth time, defeating Argentina in the final. \n", "website": "https://en.wikipedia.org/wiki/Brazil_v_Germany_(2014_FIFA_World_Cup)", "subreddit": "", "center": [1034.5, 633.5], "path": [[1024.5, 628.5], [1023.5, 638.5], [1045.5, 637.5], [1043.5, 627.5], [1023.5, 628.5]]}, +{"id": "txnbqc", "submitted_by": "DXPower", "name": "DotA2 Health/Mana Bar", "description": "The in-game health/mana bar aka HP Bar in the 5v5 hero strategy game DotA 2.\n\nThe green represents current health, and the blue represents current mana. The player dies when health is 0, and cannot cast spells when mana is 0.\n\nThe current health is 322 in this depiction.", "website": "https://www.dota2.com/home", "subreddit": "/r/DotA2", "center": [14.5, 140.5], "path": [[0.5, 137.5], [27.5, 137.5], [27.5, 143.5], [0.5, 143.5], [0.5, 137.5], [0.5, 137.5]]}, +{"id": "txnbfh", "submitted_by": "ferreju", "name": "\ud0dc\uadf9\uae30 Taegeukgi of South Korea", "description": "The National Flag : \ud0dc\uadf9\uae30 [Taegeukgi]", "website": "https://www.mois.go.kr/eng/sub/a03/nationalSymbol/screen.do", "subreddit": "/r/southkorea", "center": [1221.5, 687.5], "path": [[1200.5, 674.5], [1200.5, 700.5], [1241.5, 700.5], [1241.5, 674.5]]}, +{"id": "txnb2h", "submitted_by": "Lord-ofDerp", "name": "VoidPunk flag", "description": "the flag of the Void Punk community. After being destroyed several times, the flag survived because of an alliance between TierZoo, Binding of Issac, Inscyrption, and Cascadia. ", "website": "", "subreddit": "/r/voidpunk", "center": [55.5, 356.5], "path": [[48.5, 350.5], [61.5, 350.5], [61.5, 360.5], [61.5, 361.5], [48.5, 361.5], [48.5, 350.5]]}, +{"id": "txnaod", "submitted_by": "KelTecKSG12", "name": "Weeallian flag", "description": "The flag of a fictional country named Weeallia", "website": "", "subreddit": "", "center": [602.5, 1371.5], "path": [[599.5, 1368.5], [602.5, 1368.5], [603.5, 1369.5], [604.5, 1369.5], [605.5, 1370.5], [606.5, 1370.5], [606.5, 1371.5], [605.5, 1371.5], [604.5, 1372.5], [603.5, 1373.5], [599.5, 1373.5]]}, +{"id": "txna9p", "submitted_by": "Pitipaporro", "name": "BANDERA DEL BETIS", "description": "Humilde contribuci\u00f3n de la comunidad de fulleros.com , la bandera del Betis fue forjada por los fulleros y defendida de las acometidas de los randoms. Finalmente obtuvimos una victoria, y, esta marca quedar\u00e1 aqu\u00ed para el resto de los tiempos", "website": "", "subreddit": "", "center": [1720.5, 280.5], "path": [[1718.5, 278.5], [1718.5, 282.5], [1722.5, 282.5], [1722.5, 277.5], [1718.5, 277.5]]}, +{"id": "txn9tf", "submitted_by": "xRGTMX", "name": "Moomins", "description": "A Moomin, from the series of books, comics, and animated cartoons by Finnish illustrator Tove Jansson.", "website": "https://www.moomin.com/", "subreddit": "/r/Moomins", "center": [589.5, 193.5], "path": [[592.5, 185.5], [592.5, 192.5], [593.5, 192.5], [595.5, 193.5], [595.5, 198.5], [594.5, 197.5], [592.5, 197.5], [591.5, 198.5], [591.5, 200.5], [590.5, 201.5], [589.5, 201.5], [588.5, 200.5], [587.5, 201.5], [586.5, 201.5], [584.5, 199.5], [584.5, 198.5], [583.5, 197.5], [583.5, 196.5], [584.5, 195.5], [584.5, 194.5], [585.5, 193.5], [585.5, 192.5], [584.5, 192.5], [583.5, 191.5], [583.5, 189.5], [587.5, 185.5], [587.5, 184.5], [588.5, 183.5], [589.5, 184.5], [590.5, 183.5]]}, +{"id": "txn968", "submitted_by": "ferreju", "name": "Republic of Korea", "description": "Republic of Korea, \ub300\ud55c\ubbfc\uad6d\nThe National Flower (The Background) : The Rose of Sharon, \ubb34\uad81\ud654 [Mugunghwa]", "website": "https://www.mois.go.kr/eng/sub/a03/nationalSymbol_3/screen.do", "subreddit": "/r/southkorea", "center": [1221.5, 669.5], "path": [[1200.5, 665.5], [1200.5, 673.5], [1241.5, 673.5], [1241.5, 665.5]]}, +{"id": "txn913", "submitted_by": "FluidFluxion", "name": "A smol French flag", "description": "Creators are unknown but it is simply a small French flag.", "website": "https://www.reddit.com/r/france/", "subreddit": "/r/France", "center": [1301.5, 1957.5], "path": [[1303.5, 1953.5], [1303.5, 1954.5], [1302.5, 1954.5], [1301.5, 1954.5], [1301.5, 1953.5], [1302.5, 1953.5], [1301.5, 1952.5], [1302.5, 1952.5], [1303.5, 1952.5], [1303.5, 1951.5], [1302.5, 1951.5], [1301.5, 1951.5], [1301.5, 1950.5], [1302.5, 1950.5], [1303.5, 1950.5], [1303.5, 1949.5], [1302.5, 1949.5], [1301.5, 1949.5]]}, +{"id": "txn8fe", "submitted_by": "djulioo", "name": "/r/bulgaria - Subreddit of the Bulgarian community", "description": "A subreddit about the country Bulgaria", "website": "https://www.reddit.com/r/bulgaria/", "subreddit": "/r/bulgaria", "center": [504.5, 389.5], "path": [[482.5, 386.5], [482.5, 392.5], [525.5, 392.5], [525.5, 386.5], [482.5, 386.5]]}, +{"id": "txn8ef", "submitted_by": "toby_plumb_1", "name": "Baby Bee Tree", "description": "A baby bee who relocated from the top left of the Ukraine Flag during day 3 to become part of Place Trees", "website": "", "subreddit": "/r/placetrees", "center": [789.5, 913.5], "path": [[786.5, 905.5], [785.5, 920.5], [793.5, 921.5], [793.5, 906.5], [793.5, 906.5]]}, +{"id": "txn7og", "submitted_by": "ChaseADuck", "name": "Chase's Storm", "description": "A symbol representing the small community of Chase's Storm Discord server!", "website": "", "subreddit": "", "center": [1732.5, 574.5], "path": [[1737.5, 569.5], [1737.5, 578.5], [1727.5, 578.5], [1727.5, 569.5], [1737.5, 569.5]]}, +{"id": "txn5d7", "submitted_by": "GrinkStone", "name": "Torp (architecture)", "description": "A torp is a type of croft emblematic of the Swedish countryside. It comes from the Old Norse \u00feorp. In modern usage, it is the emblematic Swedish summer house, a small cottage painted Falu r\u00f6d and white, and evidence of the way in which urbanization came quite late to all of Scandinavia. Its characteristic Falu r\u00f6d colour is ubiquitous in Sweden and became popular due to the paint's affordability. In the meaning of 'simple second home', the concept exists under other names in Danish, Norwegian (hytte \u2013 but the term torp is also used in Norwegian) and Finnish (m\u00f6kki or torppa).\n\nIn the strict sense, crofts refer to a form of lease, with long contract periods but without the right of occupancy, whose lease was paid in full or in part in kind. In Finland, the croft institution was abolished in 1918, and in Sweden in 1943.", "website": "https://en.wikipedia.org/wiki/Torp_(architecture)", "subreddit": "/r/sweden", "center": [553.5, 76.5], "path": [[538.5, 91.5], [538.5, 80.5], [537.5, 80.5], [537.5, 71.5], [542.5, 71.5], [541.5, 71.5], [541.5, 67.5], [537.5, 61.5], [537.5, 44.5], [539.5, 45.5], [540.5, 48.5], [541.5, 49.5], [547.5, 49.5], [547.5, 56.5], [550.5, 62.5], [548.5, 68.5], [548.5, 71.5], [558.5, 71.5], [558.5, 63.5], [560.5, 63.5], [560.5, 64.5], [569.5, 64.5], [569.5, 71.5], [570.5, 71.5], [570.5, 75.5], [572.5, 75.5], [572.5, 76.5], [577.5, 76.5], [577.5, 80.5], [572.5, 80.5], [572.5, 88.5], [574.5, 89.5], [575.5, 88.5], [576.5, 90.5], [578.5, 91.5], [578.5, 92.5], [538.5, 92.5], [538.5, 90.5]]}, +{"id": "txn568", "submitted_by": "itspossession", "name": "Joywave", "description": "Album cover of Possession (2020) by Joywave.", "website": "", "subreddit": "/r/joywave", "center": [945.5, 1619.5], "path": [[941.5, 1617.5], [941.5, 1621.5], [949.5, 1621.5], [949.5, 1616.5]]}, +{"id": "txn4km", "submitted_by": "Micker003", "name": "Hololive-Germany heart", "description": "A heart between Hololive art and the German flag. The Hololive heart follows the color scheme of the Hololive logo", "website": "", "subreddit": "", "center": [1406.5, 1125.5], "path": [[1413.5, 1122.5], [1413.5, 1126.5], [1406.5, 1133.5], [1399.5, 1126.5], [1399.5, 1122.5], [1402.5, 1119.5], [1403.5, 1119.5], [1405.5, 1121.5], [1406.5, 1121.5], [1408.5, 1119.5], [1410.5, 1119.5], [1413.5, 1122.5]]}, +{"id": "txn3lj", "submitted_by": "CptRenko", "name": "SOMBRA", "description": "The logo of SOMBRA, a french multigaming team. \nWe play mainly on Star Citizen, Escape from Tarkov, Barotrauma, or some party games, but as a multigaming you'll always find someone playing the same game as you.\n", "website": "https://www.sombra.fr", "subreddit": "/r/sombrafr", "center": [1114.5, 1247.5], "path": [[1109.5, 1240.5], [1119.5, 1240.5], [1119.5, 1249.5], [1115.5, 1256.5], [1113.5, 1256.5], [1109.5, 1252.5], [1109.5, 1250.5], [1108.5, 1248.5], [1108.5, 1242.5], [1109.5, 1240.5]]}, +{"id": "txn3k2", "submitted_by": "shark_yyy", "name": "The Lesbian flag", "description": "A lesbian flag that sparked a lot of controversy between lesbians and DreamNotFound shippers, the flag having originally been a DNF flag. Lesbian twitter user @ Star0Arts played a big role in the conquering of the land, being sent death threats and lesbiphobic messages by raging DNF shippers in the process. But with the help of Star's followers, they built their flag and defeated the DNF shippers, together. Go lesbians!", "website": "https://twitter.com/Star0Arts/status/1511210583546232832", "subreddit": "", "center": [255.5, 988.5], "path": [[245.5, 989.5], [245.5, 985.5], [247.5, 985.5], [247.5, 987.5], [254.5, 987.5], [254.5, 985.5], [254.5, 988.5], [260.5, 988.5], [261.5, 988.5], [261.5, 985.5], [262.5, 985.5], [262.5, 987.5], [267.5, 987.5], [267.5, 989.5], [245.5, 989.5]]}, +{"id": "txn3dy", "submitted_by": "willietrom", "name": "Code Miko", "description": "Art coordinated by Twitch streamer CodeMiko and built and maintained by her community, with organizational help from PayMoneyWubby's community whose art is below it. A majority of the art constitutes a cartoon of the face of the CodeMiko Vtuber avatar with her name in the upper corners, also containing icons of Vtuber Castlehead in the lower left, her cat Pearl in the lower right, and stream manager Jormh mid right.", "website": "https://twitch.tv/codemiko", "subreddit": "/r/CodeMiko", "center": [398.5, 1439.5], "path": [[370.5, 1418.5], [370.5, 1460.5], [425.5, 1460.5], [425.5, 1418.5]]}, +{"id": "txn2rw", "submitted_by": "de_g0od", "name": "the Tornado Bear Logo", "description": "Tornado Bear is a small indie games studio, notably making Homewind, Gladio & Glory as well as Piratopia.", "website": "https://discord.com/invite/AFePFjQCsw", "subreddit": "none", "center": [870.5, 1370.5], "path": [[865.5, 1365.5], [874.5, 1365.5], [874.5, 1374.5], [865.5, 1374.5]]}, +{"id": "txn2mt", "submitted_by": "Kasspaetzle", "name": "I am from Austria", "description": "The text originally spelled out \"I am from r/Austria\".\nIt references the 1989 song \"I am from Austria\" by Austrian singer Rainhard Fendrich.", "website": "https://youtu.be/wANQRC4GO8E", "subreddit": "/r/Austria", "center": [999.5, 275.5], "path": [[965.5, 272.5], [1033.5, 272.5], [1033.5, 278.5], [964.5, 278.5], [964.5, 272.5]]}, +{"id": "txn2ll", "submitted_by": "Chef_Orion", "name": "Hippotichat", "description": "This Bulgarian revolutionary looked suspiciously like the French streamer Hippotichat. He shamefully took the opportunity to tell his followers that it was about him.\n\nHis community added tears to him when the Z appeared on his right...", "website": "https://twitch.tv/hippotichat", "subreddit": "", "center": [1645.5, 736.5], "path": [[1632.5, 751.5], [1632.5, 755.5], [1653.5, 755.5], [1651.5, 754.5], [1655.5, 749.5], [1656.5, 748.5], [1657.5, 743.5], [1656.5, 740.5], [1660.5, 733.5], [1660.5, 726.5], [1649.5, 717.5], [1648.5, 716.5], [1644.5, 715.5], [1637.5, 720.5], [1634.5, 721.5], [1633.5, 732.5], [1634.5, 734.5], [1634.5, 739.5], [1632.5, 753.5]]}, +{"id": "txn1ps", "submitted_by": "FluidFluxion", "name": "Finn the Human", "description": "A cartoon character from the TV show called Adventure Time.", "website": "https://www.reddit.com/r/adventuretime/", "subreddit": "/r/adventuretime", "center": [1499.5, 1342.5], "path": [[1497.5, 1338.5], [1497.5, 1339.5], [1498.5, 1339.5], [1499.5, 1339.5], [1500.5, 1339.5], [1501.5, 1339.5], [1502.5, 1339.5], [1502.5, 1338.5], [1502.5, 1340.5], [1501.5, 1340.5], [1500.5, 1340.5], [1499.5, 1340.5], [1498.5, 1340.5], [1497.5, 1340.5], [1497.5, 1341.5], [1498.5, 1341.5], [1499.5, 1341.5], [1500.5, 1341.5], [1501.5, 1341.5], [1502.5, 1341.5], [1502.5, 1342.5], [1497.5, 1342.5], [1498.5, 1342.5], [1499.5, 1342.5], [1500.5, 1342.5], [1501.5, 1342.5], [1501.5, 1342.5], [1501.5, 1342.5], [1501.5, 1343.5], [1501.5, 1342.5], [1502.5, 1343.5], [1500.5, 1343.5], [1499.5, 1343.5], [1498.5, 1343.5], [1497.5, 1343.5], [1496.5, 1343.5], [1496.5, 1344.5], [1497.5, 1344.5], [1498.5, 1344.5], [1499.5, 1344.5], [1500.5, 1344.5], [1501.5, 1344.5], [1502.5, 1344.5], [1503.5, 1344.5], [1503.5, 1343.5], [1503.5, 1345.5], [1502.5, 1345.5], [1501.5, 1345.5], [1500.5, 1345.5], [1499.5, 1345.5], [1498.5, 1345.5], [1497.5, 1345.5], [1496.5, 1345.5]]}, +{"id": "txn1kv", "submitted_by": "DenebVegaAltair", "name": "Unicycle in the Canal", "description": "A unicycle is an alternate form of cycling. Not many people want to buy a unicycle, so it is also being tossed into the canal. This piece was done in partnership with /r/PlaceNL and /r/unicycling.", "website": "", "subreddit": "/r/unicycling", "center": [1607.5, 30.5], "path": [[1605.5, 26.5], [1603.5, 34.5], [1609.5, 35.5], [1610.5, 25.5]]}, +{"id": "txn0jw", "submitted_by": "Puzzleheaded-Wish-85", "name": "\"G\" of GANG", "description": "GANG is a spanish/english Discord gaming community", "website": "https://discord.gg/xQF49XFDP6", "subreddit": "", "center": [594.5, 1579.5], "path": [[591.5, 1576.5], [597.5, 1576.5], [597.5, 1582.5], [591.5, 1582.5]]}, +{"id": "txmzyl", "submitted_by": "John567852", "name": "The Asmongold Pot", "description": "This is the exact location where the streamer Asmongold raided and built a pot as it was the center of the canvas on day 2. He was going to put it right on ori, but as his viewers asked him to not hurt ori and he also appreciated ori, he decided to put it right above ori.", "website": "", "subreddit": "", "center": [1021.5, 455.5], "path": [[965.5, 509.5], [965.5, 400.5], [1076.5, 400.5], [1076.5, 509.5], [965.5, 509.5]]}, +{"id": "txmzna", "submitted_by": "maxitrash", "name": "Niki Nuhachu", "description": "This is Niki Nuhachu's minecraft skin. She is a twitch streamer mainly known to be on the dream smp. ", "website": "", "subreddit": "", "center": [169.5, 904.5], "path": [[164.5, 899.5], [164.5, 908.5], [173.5, 908.5], [173.5, 900.5], [173.5, 899.5], [168.5, 899.5], [164.5, 899.5]]}, +{"id": "txmyvq", "submitted_by": "dreadfulol", "name": "The Gazebo", "description": "The Gazebo is a sub-community of Superstonk. We love the stock and welcome apes to join the party at the GME Hype Stream!", "website": "https://www.twitch.tv/bradsgazebo", "subreddit": "/r/Superstonk", "center": [920.5, 892.5], "path": [[909.5, 886.5], [909.5, 898.5], [930.5, 898.5], [930.5, 886.5], [909.5, 886.5]]}, +{"id": "txmy58", "submitted_by": "Eurosprinter", "name": "Endou Minecraft face", "description": "A minecraft style face of the character Endou Mamoru from the series Inazuma Eleven was here until it was taken over by the green lattice. The remains of his brown hair can still be seen here.", "website": "https://inazuma-eleven.fandom.com/wiki/Endou_Mamoru", "subreddit": "/r/inazumaeleven", "center": [1503.5, 1504.5], "path": [[1507.5, 1499.5], [1507.5, 1509.5], [1499.5, 1509.5], [1498.5, 1499.5]]}, +{"id": "txmxpz", "submitted_by": "xRGTMX", "name": "Chicken (Minecraft)", "description": "A chicken from Minecraft, a 2010 sandbox game by Moj- screw it, do I even need to explain what it is? Come on, bruh.", "website": "https://www.minecraft.net", "subreddit": "/r/Minecraft", "center": [1141.5, 447.5], "path": [[1140.5, 442.5], [1139.5, 443.5], [1139.5, 447.5], [1138.5, 447.5], [1138.5, 449.5], [1139.5, 449.5], [1139.5, 451.5], [1142.5, 451.5], [1142.5, 450.5], [1143.5, 450.5], [1143.5, 445.5], [1142.5, 445.5], [1142.5, 443.5], [1141.5, 443.5]]}, +{"id": "txmx7w", "submitted_by": "Bazilijonas", "name": "Gaming community", "description": "A discord invite to a small lithuanian gamers community. Each evening you can almost certainly find someone playing together and having fun. Feel free to join :P", "website": "https://discord.gg/JW6HRNM", "subreddit": "", "center": [603.5, 1658.5], "path": [[581.5, 1654.5], [624.5, 1654.5], [624.5, 1661.5], [581.5, 1661.5], [581.5, 1654.5]]}, +{"id": "txmvc9", "submitted_by": "ItsVinn", "name": "NiziU", "description": "NiziU is a Japanese-Korean idol girl group formed by JYP Entertainment and Sony Music Entertainment Japan. The group is composed of nine members: Mako, Rio, Maya, Riku, Ayaka, Mayuka, Rima, Miihi and Nina.", "website": "https://niziu.com/s/n123/?ima=3631", "subreddit": "/r/niziu", "center": [1544.5, 893.5], "path": [[1532.5, 889.5], [1556.5, 889.5], [1556.5, 897.5], [1533.5, 897.5], [1533.5, 890.5]]}, +{"id": "txmud9", "submitted_by": "PM_ME_FAVOURITE_GAME", "name": "The End of Everything", "description": "A spell from the game Noita, upon being cast, it will summon a series of 13 chaotic and destructive effects. \n\nYou're heavily advised not to cast this spell.", "website": "https://noita.fandom.com/wiki/The_End_of_Everything", "subreddit": "/r/noita", "center": [557.5, 926.5], "path": [[549.5, 929.5], [549.5, 922.5], [554.5, 917.5], [561.5, 918.5], [565.5, 923.5], [564.5, 930.5], [560.5, 933.5], [554.5, 934.5], [551.5, 932.5]]}, +{"id": "txmu62", "submitted_by": "maxitrash", "name": "Punz", "description": "This is Punz's minecraft skin. He is a twitch streamer known to be in the dream smp. This was make by the dsmp and punz community", "website": "", "subreddit": "", "center": [159.5, 957.5], "path": [[155.5, 953.5], [164.5, 953.5], [164.5, 961.5], [155.5, 962.5], [155.5, 953.5]]}, +{"id": "txmtny", "submitted_by": "Huge-Statistician892", "name": "Burt's Casino", "description": "Private community.", "website": "", "subreddit": "", "center": [1764.5, 462.5], "path": [[1747.5, 459.5], [1781.5, 459.5], [1781.5, 464.5], [1747.5, 464.5]]}, +{"id": "txmtao", "submitted_by": "Just-Someone243", "name": "Madeira, Azores and CR7", "description": "The flags of Madeira and Azores island (By order) which are autonomous regions of Portugal. The seven represents Cristiano Ronaldo who is a portuguese and world football icon.", "website": "", "subreddit": "/r/azores, /r/Madeira, /r/portugal.", "center": [941.5, 363.5], "path": [[923.5, 361.5], [923.5, 366.5], [960.5, 366.5], [960.5, 361.5], [923.5, 360.5]]}, +{"id": "txmrtw", "submitted_by": "Pinky135", "name": "Avi", "description": "Avi is a young girl from the Netherlands who has fought hard to keep her space. Her father contacted r/PlaceNL to ask for help in keeping her name on the canvas. They have succeeded.", "website": "", "subreddit": "", "center": [1089.5, 1802.5], "path": [[1085.5, 1800.5], [1085.5, 1804.5], [1093.5, 1804.5], [1093.5, 1800.5], [1085.5, 1800.5]]}, +{"id": "txmr28", "submitted_by": "GrinkStone", "name": "Three Crowns", "description": "Three Crowns (Swedish: tre kronor) is the national emblem of Sweden, present in the coat of arms of Sweden, and composed of three yellow or gilded coronets ordered two above and one below, placed on a blue background. Similar designs are found on a number of other coats of arms or flags.", "website": "https://en.wikipedia.org/wiki/Three_Crowns", "subreddit": "/r/sweden", "center": [555.5, 47.5], "path": [[539.5, 38.5], [545.5, 38.5], [545.5, 37.5], [547.5, 37.5], [547.5, 38.5], [553.5, 38.5], [551.5, 38.5], [553.5, 38.5], [553.5, 39.5], [557.5, 39.5], [557.5, 38.5], [563.5, 38.5], [563.5, 37.5], [565.5, 37.5], [565.5, 38.5], [571.5, 38.5], [571.5, 39.5], [572.5, 39.5], [572.5, 45.5], [571.5, 45.5], [571.5, 46.5], [571.5, 47.5], [570.5, 47.5], [570.5, 49.5], [563.5, 49.5], [563.5, 58.5], [562.5, 58.5], [562.5, 59.5], [561.5, 59.5], [561.5, 61.5], [549.5, 61.5], [549.5, 59.5], [548.5, 59.5], [548.5, 57.5], [547.5, 57.5], [547.5, 49.5], [540.5, 49.5], [540.5, 47.5], [539.5, 47.5], [539.5, 45.5], [538.5, 45.5], [538.5, 39.5], [539.5, 39.5]]}, +{"id": "txmqrk", "submitted_by": "ItsVinn", "name": "f(x)", "description": "f(x) is a South Korean girl group formed by SM Entertainment in 2009. The group is composed of Victoria, Amber, Luna, and Krystal and previously Sulli until her departure from the group in August 2015. f(x) officially debuted in September 2009 with the release of the digital single 'La Cha Ta'.", "website": "", "subreddit": "/r/fxKorea", "center": [1691.5, 904.5], "path": [[1686.5, 898.5], [1696.5, 898.5], [1696.5, 910.5], [1696.5, 909.5], [1686.5, 909.5], [1686.5, 898.5]]}, +{"id": "txmpth", "submitted_by": "Talolacat123", "name": "The Radiohead Cock War", "description": "A group of people were trying to give the Radiohead minotaur a penis for hours, re-placing the same pixels as r/radiohead people were trying to stop the cock.", "website": "https://www.reddit.com/r/RadioheadPlacePenis/", "subreddit": "/r/RadioheadPlacePenis", "center": [102.5, 563.5], "path": [[99.5, 560.5], [104.5, 560.5], [104.5, 565.5], [99.5, 565.5], [99.5, 560.5]]}, +{"id": "txmpt7", "submitted_by": "Lezimbo", "name": "Flat Eric ", "description": "\"Flat Eric\" the character is the mascot of the community site choualbox.com (a French sharing site).\n\nThe character of Flat Eric is originally a puppet visible in the clips of the artist Quentin Dupieux (Mr Oizo), but also in Levi's advertisements in the late 90s, early 2000s.", "website": "https://choualbox.com/", "subreddit": "", "center": [1688.5, 367.5], "path": [[1682.5, 356.5], [1682.5, 378.5], [1693.5, 378.5], [1693.5, 356.5], [1682.5, 356.5]]}, +{"id": "txmn5e", "submitted_by": "False-Credit-8603", "name": "Amongus in love", "description": "Two Among Us crewmates have found love in the chaos of r/place. Created by Michael & Ivan.", "website": "", "subreddit": "", "center": [838.5, 1796.5], "path": [[843.5, 1791.5], [833.5, 1791.5], [833.5, 1801.5], [843.5, 1801.5]]}, +{"id": "txmlog", "submitted_by": "Alathic", "name": "Annoying Dog (Undertale)", "description": "Undertale is an indie RPG by Toby Fox who is represented in the game as a small white dog which usually ruins a character's plan whenever it appears.", "website": "https://undertale.com/", "subreddit": "/r/undertale", "center": [680.5, 771.5], "path": [[671.5, 763.5], [681.5, 763.5], [685.5, 766.5], [690.5, 766.5], [690.5, 775.5], [688.5, 779.5], [682.5, 779.5], [681.5, 778.5], [679.5, 778.5], [678.5, 779.5], [671.5, 779.5], [671.5, 779.5], [671.5, 779.5], [671.5, 779.5], [671.5, 779.5], [671.5, 779.5]]}, +{"id": "txmjnh", "submitted_by": "F1Lcsgo", "name": "GwinGlade", "description": "Russian streamer, part of 89SQUAD (created by bratishkinoff)", "website": "https://www.twitch.tv/gwinglade", "subreddit": "", "center": [1986.5, 521.5], "path": [[1973.5, 502.5], [1999.5, 503.5], [1998.5, 540.5], [1973.5, 539.5]]}, +{"id": "txmj9w", "submitted_by": "Arctiquaza", "name": "Heart chain", "description": "A heart chain originally built by the Mystery dungeon badge. It built off of hearts that Ralsei had already made. The plan Mystery Dungeon had was to use the hearts as a border to better transition into the Ralsei piece. Not everyone was on the same page, though, and the incoming raid on OSU stopped all plans and forced then to maintain the original border. Others later changed the heart's colors, some into flags such as the Ace flag.", "website": "", "subreddit": "/r/MysteryDungeon, /r/Deltarune", "center": [707.5, 793.5], "path": [[708.5, 785.5], [706.5, 785.5], [706.5, 801.5], [708.5, 801.5], [708.5, 801.5], [708.5, 785.5]]}, +{"id": "txmis6", "submitted_by": "izohell", "name": "Momonkunn", "description": "Minecraft skin of the Paraguayan/Spanish streamer Momonkunn inspired by the character Momonga from Overlord. Known for streaming GTA V Roleplay and his love for Japanese culture and Anime.", "website": "https://www.twitch.tv/momonkunn", "subreddit": "", "center": [1994.5, 1389.5], "path": [[1990.5, 1385.5], [1998.5, 1385.5], [1998.5, 1392.5], [1990.5, 1392.5]]}, +{"id": "txmi5r", "submitted_by": "CactusBack", "name": "Cactus", "description": "Just a little cactus as my personal mark on r/place.\n\nI am u/CactusBack, a video game modder, dataminer and 3d art enthusiast.\n\nMy projects include esomodelviewer.com, a video game 3d art museum with the focus on The Elder Scrolls Online, and Inspired Patch (youtube.com/InspiredWrestling), a mod for the video game WWF SmackDown! 2: Know Your Role.\n\nBig thank you to u/Valeriia_kh and members of r/cactus for helping me defend this little guy from being wiped out!", "website": "https://www.reddit.com/user/CactusBack", "subreddit": "/r/cactus", "center": [1105.5, 496.5], "path": [[1102.5, 491.5], [1102.5, 501.5], [1108.5, 501.5], [1108.5, 491.5], [1102.5, 491.5]]}, +{"id": "txmi30", "submitted_by": "bram__", "name": "Pikachu", "description": "An electric-type mouse pokemon.\nThe favorite pokemon of trainer Ash in the animated series.", "website": "https://bulbapedia.bulbagarden.net/wiki/Pikachu_(Pok%C3%A9mon)", "subreddit": "", "center": [1795.5, 151.5], "path": [[1791.5, 148.5], [1798.5, 148.5], [1798.5, 154.5], [1791.5, 154.5]]}, +{"id": "txmhut", "submitted_by": "Objective_Ear5415", "name": "Borderlands logo", "description": "It's a logo of the game borderlands.", "website": "https://borderlands.com/", "subreddit": "/r/borderlands3", "center": [1160.5, 413.5], "path": [[1155.5, 408.5], [1164.5, 408.5], [1164.5, 417.5], [1155.5, 417.5], [1155.5, 408.5]]}, +{"id": "txmhf5", "submitted_by": "Royal_lobster", "name": "Loona Lightstick", "description": "Dino Holding loona Lightstick.", "website": "", "subreddit": "", "center": [320.5, 792.5], "path": [[317.5, 794.5], [317.5, 789.5], [323.5, 789.5], [323.5, 794.5]]}, +{"id": "txmfdm", "submitted_by": "tyresmoke", "name": "Nigerian Flag", "description": "The Flag of Nigeria, a populous state in West Africa.\n", "website": "", "subreddit": "/r/Nigeria", "center": [789.5, 1102.5], "path": [[782.5, 1090.5], [782.5, 1113.5], [795.5, 1114.5], [795.5, 1090.5], [782.5, 1090.5]]}, +{"id": "txmfda", "submitted_by": "willietrom", "name": "Emiru Homage", "description": "This art was coordinated by members of Twitch streamer Emiru's community without any organization from the streamer herself. Imagery includes a portrait of her real-life rabbit Peepo, a Kirby representing her being a Kirby fanatic who owns approximately 100 pieces of Kirby merchandise, 'wicked' sunglasses referencing the safety gear worn when she exploded a pumpkin on stream, and her catchphrase 'FOK' which she habitually says when making errors during Super Mario 64 Speedruns.", "website": "https://twitch.tv/emiru", "subreddit": "/r/emiru", "center": [1281.5, 477.5], "path": [[1259.5, 467.5], [1259.5, 487.5], [1303.5, 487.5], [1303.5, 478.5], [1305.5, 478.5], [1305.5, 474.5], [1299.5, 474.5], [1299.5, 467.5]]}, +{"id": "txmexy", "submitted_by": "swissyroll", "name": "Niki Nihachu", "description": "Prominently known for her character on the Dream SMP, Nihachu is a variety streamer on Twitch. She is featured here alongside other members of the Dream SMP and other Minecraft YouTubers.", "website": "https://twitch.tv/nihachu", "subreddit": "/r/Nihachu", "center": [169.5, 904.5], "path": [[164.5, 899.5], [173.5, 899.5], [173.5, 908.5], [164.5, 908.5]]}, +{"id": "txmeum", "submitted_by": "MegaNexas", "name": "Perry The Platypus", "description": "A Pixel Art of the Popular Animated Character from the show \"Phineas and Ferb\" made by schaffrillas and his community", "website": "https://twitter.com/Schaffrillas/status/1511075678615179268", "subreddit": "/r/phineasandferb", "center": [463.5, 1164.5], "path": [[460.5, 1159.5], [460.5, 1160.5], [456.5, 1164.5], [462.5, 1171.5], [460.5, 1171.5], [458.5, 1171.5], [463.5, 1170.5], [464.5, 1169.5], [465.5, 1170.5], [465.5, 1171.5], [466.5, 1171.5], [467.5, 1171.5], [468.5, 1171.5], [467.5, 1170.5], [467.5, 1169.5], [467.5, 1168.5], [468.5, 1167.5], [469.5, 1167.5], [469.5, 1168.5], [468.5, 1166.5], [466.5, 1165.5], [468.5, 1164.5], [468.5, 1163.5], [469.5, 1163.5], [467.5, 1162.5], [467.5, 1159.5], [468.5, 1159.5], [467.5, 1158.5], [463.5, 1157.5], [465.5, 1156.5]]}, +{"id": "txmd8j", "submitted_by": "_killbunny_", "name": "Bebe-chan", "description": "Nanahira's pet rabbit. Nanahira is one of the most recognizable denpa song singers. She's featured in dozens of rhythm games. Denpa song (\u96fb\u6ce2\u30bd\u30f3\u30b0) is a Japanese slang term to describe a kind of music which often features intentionally off-key vocals, weird lyrics, and an extreme ability to get stuck in your head. Part of the rhythm game alliance", "website": "http://denpa.omaera.org/", "subreddit": "/r/denpa", "center": [1277.5, 63.5], "path": [[1275.5, 58.5], [1273.5, 59.5], [1271.5, 61.5], [1271.5, 63.5], [1270.5, 65.5], [1274.5, 68.5], [1283.5, 68.5], [1282.5, 65.5], [1281.5, 63.5], [1281.5, 57.5], [1278.5, 57.5], [1278.5, 58.5], [1277.5, 60.5], [1275.5, 59.5]]}, +{"id": "txmcwo", "submitted_by": "Alathic", "name": "White Glint emblem/Eye of Horus (Armored Core)", "description": "Armored Core is a third-person shooter video game series by FromSoftware. The stylized Eye of Horus (an old Egyptian symbol of royal power and protection) is used in the series as the emblem of the character White Glint. It is located on the Rainbow Dash flag since it kept getting removed from their space so the MLP group allowed them to put the logo onto their flag.", "website": "", "subreddit": "/r/armoredcore", "center": [950.5, 1840.5], "path": [[940.5, 1831.5], [941.5, 1850.5], [960.5, 1850.5], [960.5, 1831.5]]}, +{"id": "txmayl", "submitted_by": "bluehoodedwitch", "name": "Chongyun", "description": "A character from Genshin Impact, Chongyun, in chibi version. He is depicted here eating a blue popsicle.", "website": "", "subreddit": "/r/PopsicleMains", "center": [1091.5, 1286.5], "path": [[1084.5, 1280.5], [1084.5, 1291.5], [1098.5, 1291.5], [1098.5, 1280.5]]}, +{"id": "txm9cv", "submitted_by": "Gigo_G", "name": "Slava Ukraini", "description": "'Glory to Ukraine!' (Ukrainian: \u0421\u043b\u0430\u0432\u0430 \u0423\u043a\u0440\u0430\u0457\u043d\u0456!) is a Ukrainian national salute, known as a symbol of Ukrainian sovereignty and resistance and as the official salute of the Armed Forces of Ukraine since 2018. It is often accompanied by the response 'Glory to the heroes!' (Ukrainian: \u0413\u0435\u0440\u043e\u044f\u043c \u0441\u043b\u0430\u0432\u0430!).", "website": "", "subreddit": "", "center": [260.5, 214.5], "path": [[229.5, 195.5], [228.5, 232.5], [295.5, 231.5], [289.5, 198.5]]}, +{"id": "txm935", "submitted_by": "Screechyaurora", "name": "Among us Dumpy", "description": "everyone has already seen this mystery crewmate. ", "website": "https://knowyourmeme.com/memes/among-us-twerk", "subreddit": "", "center": [1494.5, 469.5], "path": [[1488.5, 467.5], [1489.5, 467.5], [1490.5, 466.5], [1491.5, 466.5], [1492.5, 467.5], [1493.5, 468.5], [1495.5, 466.5], [1497.5, 466.5], [1499.5, 467.5], [1499.5, 469.5], [1498.5, 472.5], [1495.5, 473.5], [1495.5, 472.5], [1492.5, 472.5], [1492.5, 473.5], [1489.5, 470.5]]}, +{"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": "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\u2026", "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]]}, +{"id": "txm3wp", "submitted_by": "TheIronWolfy", "name": "Waldo Dog Tribute", "description": "A red and white pattern representing a dog with Waldo from Where's Waldo's clothing. D-Cell added it to their logo to represent the attempt of building Quaver on the German flag, when they built it next to the dog.", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": [[1381.5, 1288.5], [1382.5, 1288.5], [1386.5, 1288.5], [1383.5, 1288.5]]}, +{"id": "txm3k1", "submitted_by": "dieserRobin", "name": "Socki", "description": "The sock of the lost streamer RevedTV, known for her voicecracks.", "website": "https://reved.tv", "subreddit": "/r/reved", "center": [1339.5, 1791.5], "path": [[1330.5, 1801.5], [1346.5, 1801.5], [1345.5, 1786.5], [1346.5, 1783.5], [1346.5, 1780.5], [1332.5, 1780.5], [1331.5, 1802.5]]}, +{"id": "txm3j9", "submitted_by": "AhmedAXDM", "name": "Polycrylate", "description": "The name of a gigachad who was fighting for his plaque and being attacked by griefers", "website": "", "subreddit": "", "center": [1164.5, 1770.5], "path": [[1155.5, 1766.5], [1173.5, 1766.5], [1173.5, 1773.5], [1155.5, 1773.5], [1155.5, 1773.5], [1155.5, 1766.5]]}, +{"id": "txm2yp", "submitted_by": "BreadFlops", "name": "Juan", "description": "Juan is a pet snail owned by BreadFlops that was made by a small community of friends to immortalize him in r/place.", "website": "", "subreddit": "", "center": [308.5, 1869.5], "path": [[305.5, 1861.5], [311.5, 1861.5], [311.5, 1876.5], [305.5, 1876.5]]}, +{"id": "txm2ko", "submitted_by": "zundaa_", "name": "Cold beetroot soup (\u0160altibar\u0161\u010diai)", "description": "A very popular soup in Lithuania. Traditional soup in Lithuania, Poland, Latvia, Russia and Belarus.", "website": "", "subreddit": "/r/lithuania", "center": [543.5, 1638.5], "path": [[539.5, 1644.5], [547.5, 1644.5], [547.5, 1643.5], [550.5, 1643.5], [550.5, 1642.5], [552.5, 1642.5], [552.5, 1641.5], [554.5, 1641.5], [554.5, 1640.5], [555.5, 1640.5], [555.5, 1638.5], [556.5, 1638.5], [556.5, 1635.5], [555.5, 1635.5], [555.5, 1634.5], [554.5, 1634.5], [554.5, 1633.5], [553.5, 1633.5], [552.5, 1633.5], [552.5, 1632.5], [534.5, 1632.5], [534.5, 1634.5], [532.5, 1633.5], [532.5, 1634.5], [531.5, 1634.5], [531.5, 1635.5], [530.5, 1635.5], [530.5, 1638.5], [531.5, 1638.5], [531.5, 1639.5], [531.5, 1640.5], [532.5, 1640.5], [532.5, 1641.5], [534.5, 1641.5], [534.5, 1642.5], [536.5, 1642.5], [536.5, 1643.5], [539.5, 1643.5]]}, +{"id": "txm2ip", "submitted_by": "Obvious_Client1191", "name": "Garden", "description": "A lovely little garden featuring a capybara and hornero, Among Us crewmates, and flowers.", "website": "", "subreddit": "/r/argentina", "center": [940.5, 675.5], "path": [[912.5, 666.5], [913.5, 667.5], [914.5, 668.5], [914.5, 680.5], [913.5, 681.5], [912.5, 682.5], [912.5, 683.5], [912.5, 684.5], [966.5, 684.5], [966.5, 665.5], [911.5, 665.5]]}, +{"id": "txm18z", "submitted_by": "kimlimpp", "name": "Oregon State University", "description": "The First letters of the Ohio State University with a picture of their mascot Benny Beaver.", "website": "https://oregonstate.edu/", "subreddit": "", "center": [336.5, 1611.5], "path": [[325.5, 1601.5], [346.5, 1601.5], [346.5, 1621.5], [325.5, 1621.5]]}, +{"id": "txm05j", "submitted_by": "SuperMegaCat", "name": "Captain Viridian from VVVVVV", "description": "The second depiction of Captain Viridian on the canvas, graciously hosted by r/HKplace. This art is only visable in the final few hours of place", "website": "", "subreddit": "/r/HKplace", "center": [1400.5, 73.5], "path": [[1396.5, 70.5], [1397.5, 69.5], [1402.5, 69.5], [1403.5, 70.5], [1403.5, 75.5], [1402.5, 76.5], [1397.5, 76.5], [1396.5, 75.5]]}, +{"id": "txlzfi", "submitted_by": "Obvious_Client1191", "name": "Red and purple flower", "description": "A little flower for someone special ", "website": "", "subreddit": "", "center": [965.5, 682.5], "path": [[966.5, 679.5], [965.5, 679.5], [963.5, 681.5], [963.5, 682.5], [964.5, 683.5], [965.5, 684.5], [966.5, 684.5], [966.5, 679.5]]}, +{"id": "txlyvs", "submitted_by": "miniturepenguin", "name": "Honse Rabbit", "description": "A tiny honse by some gamers and a rabbit", "website": "", "subreddit": "", "center": [1568.5, 1419.5], "path": [[1560.5, 1416.5], [1560.5, 1422.5], [1575.5, 1422.5], [1575.5, 1416.5], [1567.5, 1416.5]]}, +{"id": "txlyc8", "submitted_by": "Geroni-Bro", "name": "Ookami Mio's Evergreen Tree", "description": "The evergreen tree is the oshi mark (fan symbol) of virtual YouTuber Ookami Mio from hololive GAMERS. It is said to reflect the tree-like silhouette of Mio's feathered hair. ", "website": "https://www.youtube.com/channel/UCp-5t9SrOQwXMU7iIjQfARg", "subreddit": "/r/Hololive", "center": [1399.5, 974.5], "path": [[1399.5, 969.5], [1400.5, 969.5], [1400.5, 970.5], [1401.5, 970.5], [1401.5, 971.5], [1401.5, 972.5], [1402.5, 972.5], [1402.5, 973.5], [1402.5, 974.5], [1403.5, 975.5], [1403.5, 976.5], [1403.5, 977.5], [1402.5, 977.5], [1401.5, 977.5], [1401.5, 978.5], [1400.5, 978.5], [1399.5, 978.5], [1398.5, 978.5], [1397.5, 978.5], [1397.5, 977.5], [1397.5, 976.5], [1396.5, 976.5], [1396.5, 975.5], [1396.5, 974.5], [1396.5, 973.5], [1396.5, 972.5], [1397.5, 972.5], [1397.5, 971.5], [1397.5, 970.5], [1398.5, 970.5], [1398.5, 969.5], [1399.5, 969.5]]}, +{"id": "txlxqp", "submitted_by": "Pospes", "name": "A TF2 heart", "description": "A heart made by r/czech to celebrate the alliance with r/tf2", "website": "", "subreddit": "/r/czech", "center": [1320.5, 170.5], "path": [[1320.5, 173.5], [1319.5, 172.5], [1318.5, 171.5], [1317.5, 170.5], [1317.5, 168.5], [1318.5, 167.5], [1319.5, 167.5], [1319.5, 168.5], [1321.5, 168.5], [1321.5, 167.5], [1322.5, 167.5], [1323.5, 168.5], [1323.5, 170.5], [1320.5, 173.5]]}, +{"id": "txlxc2", "submitted_by": "afrangry", "name": "Red Heart", "description": "A mini red heart", "website": "", "subreddit": "", "center": [1603.5, 1362.5], "path": [[1603.5, 1360.5], [1602.5, 1359.5], [1601.5, 1359.5], [1599.5, 1361.5], [1599.5, 1362.5], [1602.5, 1365.5], [1604.5, 1365.5], [1607.5, 1362.5], [1607.5, 1361.5], [1605.5, 1359.5], [1604.5, 1359.5], [1603.5, 1360.5]]}, +{"id": "txlx4c", "submitted_by": "Aurheig__", "name": "Town Deam", "description": "A very small discord group which managed to get representation on the canvas by working together.", "website": "", "subreddit": "/r/TownDeam", "center": [1697.5, 1619.5], "path": [[1692.5, 1616.5], [1701.5, 1616.5], [1701.5, 1621.5], [1700.5, 1622.5], [1699.5, 1623.5], [1693.5, 1623.5], [1693.5, 1618.5], [1692.5, 1617.5], [1692.5, 1616.5]]}, +{"id": "txlv1u", "submitted_by": "Azalkor", "name": "CUL", "description": "A group of french friends from r/cul that bravely fought to stay there.\nTrivia : cul means ass in french", "website": "", "subreddit": "/r/cul", "center": [1735.5, 498.5], "path": [[1729.5, 495.5], [1741.5, 495.5], [1741.5, 501.5], [1729.5, 501.5]]}, +{"id": "txluwl", "submitted_by": "Prothex", "name": "Satellite logo", "description": "Logo of the famous Swiss associative bar located at EPFL.", "website": "", "subreddit": "", "center": [1552.5, 539.5], "path": [[1548.5, 543.5], [1548.5, 535.5], [1556.5, 535.5], [1556.5, 543.5]]}, +{"id": "txluvf", "submitted_by": "ChiIIout", "name": "Delft's blue boy and girl kissing", "description": "A typical Dutch image of a boy and girl dressed up in traditional Dutch clothing.", "website": "https://www.delftsblauw.com/db_en/holland/figurines/kissing-couple.html", "subreddit": "", "center": [1537.5, 17.5], "path": [[1519.5, 0.5], [1519.5, 34.5], [1556.5, 33.5], [1556.5, 0.5], [1519.5, 0.5]]}, +{"id": "txluqs", "submitted_by": "SuperMegaCat", "name": "Captain Viridian from VVVVVV", "description": "A miniature 6x6 art of Captain Viridian, the main character from the indie platformer VVVVVV. The art was built and maintained by 3 VVVVVV fans after this area was recovering from the void.", "website": "https://thelettervsixtim.es/", "subreddit": "", "center": [1060.5, 1655.5], "path": [[1057.5, 1651.5], [1062.5, 1651.5], [1063.5, 1652.5], [1063.5, 1657.5], [1062.5, 1658.5], [1057.5, 1658.5], [1056.5, 1657.5], [1056.5, 1652.5]]}, +{"id": "txlujm", "submitted_by": "RayhemMusic", "name": "Isle of Man", "description": "Self Governing Island in the middle of the Irish Sea inbetween Ireland, Scotland, Wales and England. The artist behind the creation of the Shadow Map is from the Isle of Man and originally designed the map to have the IOM included", "website": "https://en.wikipedia.org/wiki/Isle_of_Man", "subreddit": "/r/UKPlace", "center": [606.5, 521.5], "path": [[608.5, 518.5], [605.5, 519.5], [604.5, 523.5], [607.5, 522.5], [607.5, 521.5]]}, +{"id": "txltaz", "submitted_by": "jellyfishlikejelly", "name": "Angyfish's World", "description": "AngyFish is a Twitch streamer and, an emotes artist. This cute jellyfish is her character.", "website": "https://www.twitch.tv/angyfish", "subreddit": "/r/angyfishworld", "center": [1439.5, 742.5], "path": [[1435.5, 737.5], [1443.5, 737.5], [1443.5, 746.5], [1435.5, 746.5], [1435.5, 737.5]]}, +{"id": "txlt22", "submitted_by": "ChiIIout", "name": "Map of The Netherlands", "description": "", "website": "https://en.wikipedia.org/wiki/Netherlands", "subreddit": "", "center": [1922.5, 15.5], "path": [[1918.5, 0.5], [1914.5, 7.5], [1913.5, 15.5], [1909.5, 21.5], [1907.5, 27.5], [1908.5, 29.5], [1911.5, 29.5], [1914.5, 27.5], [1917.5, 26.5], [1923.5, 28.5], [1925.5, 30.5], [1923.5, 34.5], [1928.5, 34.5], [1927.5, 31.5], [1929.5, 25.5], [1926.5, 21.5], [1933.5, 20.5], [1931.5, 19.5], [1934.5, 15.5], [1931.5, 13.5], [1935.5, 8.5], [1936.5, 4.5], [1931.5, 0.5], [1918.5, 0.5]]}, +{"id": "txlslu", "submitted_by": "iKunX", "name": "Ghost Power 13", "description": "Art created by the Ghost Power 13 Community. GF also means \"Ghost Force\"", "website": "https://twitch.tv/gozpawa", "subreddit": ", ", "center": [1831.5, 321.5], "path": [[1823.5, 309.5], [1838.5, 309.5], [1838.5, 333.5], [1823.5, 333.5], [1823.5, 309.5]]}, +{"id": "txls98", "submitted_by": "Gercke", "name": "L z z ", "description": "The three letter L z z tag , when viewed from the side displays the negative space of a 3D block letter 'E'. Personal tag of users Gercke, FiveMacanudos, GattMourley, and L-z-z", "website": "", "subreddit": "", "center": [1340.5, 277.5], "path": [[1335.5, 279.5], [1336.5, 274.5], [1344.5, 274.5], [1346.5, 279.5]]}, +{"id": "txlrqu", "submitted_by": "ChiIIout", "name": "Vincent van Gogh", "description": "Vincent van Gogh, painter of the Starry Night painting on the left. He's drinking some absinth.", "website": "https://en.wikipedia.org/wiki/Vincent_van_Gogh", "subreddit": "", "center": [1506.5, 21.5], "path": [[1505.5, 5.5], [1510.5, 5.5], [1512.5, 8.5], [1512.5, 16.5], [1515.5, 22.5], [1515.5, 35.5], [1501.5, 35.5], [1501.5, 25.5], [1494.5, 25.5], [1494.5, 20.5], [1494.5, 14.5], [1502.5, 14.5], [1502.5, 8.5], [1505.5, 5.5], [1510.5, 5.5]]}, +{"id": "txlrod", "submitted_by": "seriousgamer753", "name": "Cartoon character Hlapi\u0107", "description": "Character from a classic childrens cartoon show called \u0160egrt Hlapi\u0107. It originally comes from a childrens story that was later made into a cartoon with animal characters.", "website": "https://en.wikipedia.org/wiki/Lapitch_the_Little_Shoemaker", "subreddit": "", "center": [369.5, 1096.5], "path": [[363.5, 1076.5], [372.5, 1075.5], [375.5, 1081.5], [380.5, 1080.5], [382.5, 1084.5], [377.5, 1090.5], [375.5, 1093.5], [378.5, 1101.5], [383.5, 1114.5], [385.5, 1117.5], [380.5, 1117.5], [376.5, 1115.5], [373.5, 1116.5], [356.5, 1117.5], [360.5, 1114.5], [365.5, 1112.5], [367.5, 1106.5], [366.5, 1103.5], [361.5, 1100.5], [361.5, 1097.5], [356.5, 1093.5], [357.5, 1088.5], [356.5, 1081.5], [362.5, 1078.5], [363.5, 1076.5]]}, +{"id": "txlro1", "submitted_by": "TwistedAsylumMC", "name": "Galaxite", "description": "A featured Minecraft Minigame Server on Minecraft Bedrock Edition!", "website": "https://galaxite.net/", "subreddit": "/r/GalaxiteMC", "center": [845.5, 1809.5], "path": [[833.5, 1801.5], [833.5, 1816.5], [856.5, 1816.5], [856.5, 1801.5], [833.5, 1801.5]]}, +{"id": "txlr61", "submitted_by": "Dilly__Red", "name": "ConnorEatsPants Pants", "description": "Pants added to Big Chungus (Made by Pantscord)", "website": "https://discord.gg/connoreatspants", "subreddit": "/r/connoreatspants", "center": [731.5, 1827.5], "path": [[734.5, 1824.5], [734.5, 1830.5], [728.5, 1830.5], [728.5, 1824.5], [728.5, 1824.5]]}, +{"id": "txlq0i", "submitted_by": "ChiIIout", "name": "Cannabis leaf", "description": "Weed is decriminalized in the Netherlands", "website": "https://en.wikipedia.org/wiki/Cannabis_in_the_Netherlands", "subreddit": "", "center": [1868.5, 17.5], "path": [[1868.5, 3.5], [1859.5, 8.5], [1857.5, 18.5], [1859.5, 27.5], [1869.5, 29.5], [1877.5, 26.5], [1879.5, 16.5], [1877.5, 8.5], [1868.5, 3.5]]}, +{"id": "txlpa2", "submitted_by": "xrup", "name": "Tiny map of Bosnia and Herzegovina", "description": "Tiny map of Bosnia and Herzegovina with Miniature flag of Bosnia and Herzegovina", "website": "", "subreddit": "/r/bosnia", "center": [1325.5, 272.5], "path": [[1325.5, 268.5], [1318.5, 268.5], [1317.5, 270.5], [1315.5, 273.5], [1317.5, 276.5], [1318.5, 277.5], [1322.5, 277.5], [1323.5, 276.5], [1327.5, 276.5], [1329.5, 276.5], [1331.5, 275.5], [1333.5, 274.5], [1334.5, 272.5], [1335.5, 270.5], [1334.5, 268.5], [1333.5, 266.5], [1330.5, 267.5], [1327.5, 268.5], [1322.5, 268.5], [1322.5, 268.5]]}, +{"id": "txlp4m", "submitted_by": "TheShadow2007", "name": "ElRichemece", "description": "tambi\u00e9n conocido como EL admin, el eyeyey, el borra eso...\nElRichMC es un youtuber hispano hablante de minecraft, creador de series como Elitecraft, Permadeath o UHC Espa\u00f1a.\nA su vez es reconocido por sus logros en el minecraft t\u00e9cnico como puede ser OROGEDON la granja autom\u00e1tica de oro que mas produce del mundo.\nTambi\u00e9n quedo primero del mundo en un Twitch rival de minecraft en 2020\n", "website": "", "subreddit": "/r/RichMC", "center": [1799.5, 1382.5], "path": [[1803.5, 1386.5], [1803.5, 1386.5], [1803.5, 1386.5], [1803.5, 1386.5], [1803.5, 1377.5], [1794.5, 1377.5], [1794.5, 1386.5], [1799.5, 1386.5], [1803.5, 1386.5]]}, +{"id": "txlp0z", "submitted_by": "kinokololi", "name": "GwinGlade", "description": "Pixel art of a streamer from the GwinGlade twitch, a member of the 89th squad", "website": "https://www.twitch.tv/gwinglade", "subreddit": "", "center": [1986.5, 520.5], "path": [[1974.5, 502.5], [1999.5, 502.5], [1999.5, 538.5], [1973.5, 538.5]]}, +{"id": "txlozt", "submitted_by": "Timmee-memes", "name": "Mr. Anderbro", "description": "A small group of friends came up with the idea to draw Mr. Anderbro from Broforce, they asked for help on the Broforce Subreddit and carried their Artwork till the end", "website": "", "subreddit": "/r/Broforce", "center": [1591.5, 1364.5], "path": [[1587.5, 1360.5], [1594.5, 1360.5], [1594.5, 1367.5], [1587.5, 1367.5], [1587.5, 1363.5]]}, +{"id": "txlogk", "submitted_by": "ISA", "name": "ISA", "description": "Discord user ISA, a notable member from the Political Compass Memes community and former owner of the PCM5 server.", "website": "", "subreddit": "/r/politicalcompassmemes", "center": [24.5, 343.5], "path": [[19.5, 341.5], [19.5, 345.5], [29.5, 345.5], [29.5, 341.5], [19.5, 341.5]]}, +{"id": "txlnn9", "submitted_by": "xrup", "name": "Tiny map of Serbia", "description": "Tiny map of northern Serbia (mostly Vojvodina) with Miniature flag of Serbia/Vojvodina", "website": "", "subreddit": "/r/serbia", "center": [1338.5, 261.5], "path": [[1333.5, 256.5], [1335.5, 256.5], [1337.5, 255.5], [1341.5, 255.5], [1341.5, 257.5], [1341.5, 259.5], [1342.5, 260.5], [1343.5, 261.5], [1344.5, 262.5], [1345.5, 263.5], [1345.5, 264.5], [1343.5, 264.5], [1342.5, 264.5], [1342.5, 265.5], [1341.5, 266.5], [1340.5, 267.5], [1339.5, 267.5], [1338.5, 266.5], [1337.5, 266.5], [1335.5, 265.5], [1334.5, 264.5], [1334.5, 263.5], [1333.5, 262.5], [1333.5, 261.5], [1334.5, 261.5], [1334.5, 260.5], [1334.5, 258.5], [1333.5, 258.5], [1333.5, 256.5]]}, +{"id": "txlnm7", "submitted_by": "Geroni-Bro", "name": "Ookami Mio's Hairpin", "description": "The hairpin of virtual YouTuber Ookami Mio from hololive GAMERS", "website": "https://www.youtube.com/channel/UCp-5t9SrOQwXMU7iIjQfARg", "subreddit": "/r/Hololive", "center": [1399.5, 957.5], "path": [[1396.5, 958.5], [1395.5, 958.5], [1395.5, 957.5], [1395.5, 956.5], [1395.5, 955.5], [1396.5, 955.5], [1397.5, 955.5], [1398.5, 955.5], [1399.5, 955.5], [1400.5, 955.5], [1402.5, 955.5], [1403.5, 955.5], [1403.5, 956.5], [1403.5, 957.5], [1403.5, 958.5], [1402.5, 958.5], [1402.5, 959.5], [1401.5, 959.5], [1400.5, 959.5], [1399.5, 959.5], [1398.5, 959.5], [1397.5, 959.5], [1396.5, 959.5], [1396.5, 958.5]]}, +{"id": "txlmpo", "submitted_by": "lilmarcck", "name": "Squirtle", "description": "The rebirth of a Pokemon after his destruction by the Mizkif's 100k soldiers army. This art (finished on the last screenshot of r/Place) was created and defended by the discord groups WTF Tante and La niche des Alphas. ", "website": "", "subreddit": "", "center": [1357.5, 1349.5], "path": [[1353.5, 1345.5], [1353.5, 1353.5], [1361.5, 1353.5], [1361.5, 1345.5]]}, +{"id": "txllu0", "submitted_by": "sarperen2004", "name": "The Middle-Eastern Allience", "description": "The Middle-Eastern alliance is an alliance consisting of the groups who made the art in this area, in addition to r/monstercat, r/Bengals, r/Cardinals, and other supporting groups.", "website": "https://discord.gg/Z5p4hQF6", "subreddit": "", "center": [1773.5, 961.5], "path": [[1708.5, 1043.5], [1768.5, 1043.5], [1768.5, 999.5], [1769.5, 999.5], [1769.5, 975.5], [1781.5, 975.5], [1781.5, 969.5], [1797.5, 969.5], [1797.5, 970.5], [1799.5, 970.5], [1799.5, 1045.5], [1830.5, 1045.5], [1830.5, 1013.5], [1800.5, 1013.5], [1800.5, 971.5], [1805.5, 971.5], [1805.5, 965.5], [1797.5, 965.5], [1797.5, 935.5], [1806.5, 935.5], [1806.5, 951.5], [1830.5, 951.5], [1830.5, 869.5], [1785.5, 869.5], [1785.5, 889.5], [1784.5, 889.5], [1780.5, 893.5], [1777.5, 890.5], [1774.5, 890.5], [1772.5, 895.5], [1772.5, 901.5], [1750.5, 901.5], [1749.5, 902.5], [1749.5, 933.5], [1748.5, 934.5], [1740.5, 934.5], [1740.5, 941.5], [1729.5, 941.5], [1729.5, 963.5], [1708.5, 963.5], [1708.5, 989.5], [1721.5, 989.5], [1721.5, 979.5], [1731.5, 979.5], [1731.5, 989.5], [1741.5, 989.5], [1741.5, 999.5], [1708.5, 999.5]]}, +{"id": "txljny", "submitted_by": "Sunizu", "name": "MASTOUFFE", "description": "A Shiny Chatot named Mastouffe, mascot Pok\u00e9mon of Sneaze, a French Pok\u00e9tuber", "website": "https://www.youtube.com/channel/UCQjurXV2DUU1LU2FiSWamIg", "subreddit": "/r/pokemon", "center": [81.5, 756.5], "path": [[72.5, 764.5], [72.5, 747.5], [91.5, 748.5], [90.5, 764.5], [72.5, 764.5], [89.5, 764.5], [72.5, 764.5], [72.5, 748.5], [90.5, 748.5], [91.5, 764.5]]}, +{"id": "txljg1", "submitted_by": "xrup", "name": "Tiny map of Croatia", "description": "Tiny map of part of Croatia with Miniature flag of Croatia", "website": "", "subreddit": "/r/croatia", "center": [1322.5, 264.5], "path": [[1307.5, 265.5], [1308.5, 265.5], [1308.5, 266.5], [1309.5, 267.5], [1310.5, 267.5], [1310.5, 265.5], [1314.5, 265.5], [1315.5, 266.5], [1317.5, 266.5], [1317.5, 265.5], [1315.5, 264.5], [1316.5, 263.5], [1317.5, 263.5], [1318.5, 262.5], [1319.5, 261.5], [1319.5, 260.5], [1320.5, 260.5], [1320.5, 258.5], [1321.5, 258.5], [1321.5, 257.5], [1324.5, 257.5], [1325.5, 257.5], [1325.5, 258.5], [1330.5, 258.5], [1330.5, 257.5], [1332.5, 257.5], [1333.5, 258.5], [1334.5, 258.5], [1334.5, 261.5], [1333.5, 261.5], [1333.5, 262.5], [1334.5, 263.5], [1334.5, 264.5], [1335.5, 265.5], [1336.5, 266.5], [1336.5, 267.5], [1333.5, 267.5], [1333.5, 266.5], [1331.5, 266.5], [1330.5, 267.5], [1328.5, 267.5], [1327.5, 268.5], [1326.5, 267.5], [1315.5, 268.5], [1313.5, 269.5], [1314.5, 271.5], [1315.5, 275.5], [1314.5, 275.5], [1313.5, 273.5], [1310.5, 272.5], [1307.5, 271.5], [1306.5, 266.5]]}, +{"id": "txljfp", "submitted_by": "1amfaceti0us", "name": "Bubble O'Bill Ice cream", "description": "Australian icecream: Bubble O'Bill is a classic blend of strawberry, chocolate and caramel ice confection, with a mega bubblegum nose, and a bullet hole through his hat.", "website": "", "subreddit": "", "center": [674.5, 717.5], "path": [[674.5, 716.5], [674.5, 716.5], [672.5, 711.5], [675.5, 711.5], [677.5, 715.5], [678.5, 713.5], [678.5, 716.5], [677.5, 720.5], [675.5, 720.5], [675.5, 725.5], [673.5, 725.5], [673.5, 720.5], [671.5, 720.5], [671.5, 712.5], [671.5, 712.5], [671.5, 712.5], [672.5, 713.5], [672.5, 712.5]]}, +{"id": "txlisy", "submitted_by": "Wafflesome", "name": "Reset Kalar", "description": "Reset Kalar is a famous character from the Rance series", "website": "", "subreddit": "", "center": [1063.5, 454.5], "path": [[1054.5, 461.5], [1054.5, 461.5], [1054.5, 460.5], [1054.5, 459.5], [1055.5, 459.5], [1055.5, 452.5], [1054.5, 452.5], [1054.5, 448.5], [1055.5, 448.5], [1055.5, 446.5], [1056.5, 446.5], [1056.5, 445.5], [1057.5, 445.5], [1057.5, 444.5], [1059.5, 444.5], [1059.5, 443.5], [1065.5, 443.5], [1065.5, 444.5], [1067.5, 444.5], [1067.5, 445.5], [1068.5, 445.5], [1068.5, 446.5], [1068.5, 447.5], [1069.5, 447.5], [1069.5, 449.5], [1070.5, 449.5], [1070.5, 451.5], [1071.5, 451.5], [1071.5, 452.5], [1072.5, 452.5], [1072.5, 453.5], [1073.5, 453.5], [1073.5, 458.5], [1072.5, 458.5], [1072.5, 459.5], [1071.5, 459.5], [1071.5, 460.5], [1069.5, 460.5], [1068.5, 460.5], [1068.5, 461.5], [1067.5, 461.5], [1067.5, 462.5], [1066.5, 462.5], [1066.5, 463.5], [1065.5, 463.5], [1065.5, 464.5], [1061.5, 464.5], [1061.5, 463.5], [1058.5, 463.5], [1058.5, 462.5], [1056.5, 462.5], [1056.5, 461.5], [1055.5, 461.5]]}, +{"id": "txlh60", "submitted_by": "MagorCZ", "name": "TF2 heart", "description": "a heart made by the Czech community to celebrate the alliance with r/tf2 and r/titanfall2. A Czech heart can also be found on tf2's part of the canvas", "website": "", "subreddit": "", "center": [1320.5, 169.5], "path": [[1320.5, 167.5], [1318.5, 166.5], [1317.5, 167.5], [1316.5, 168.5], [1316.5, 169.5], [1316.5, 170.5], [1317.5, 171.5], [1318.5, 172.5], [1319.5, 173.5], [1320.5, 174.5], [1321.5, 173.5], [1322.5, 172.5], [1323.5, 171.5], [1324.5, 170.5], [1324.5, 169.5], [1324.5, 168.5], [1323.5, 167.5], [1322.5, 166.5], [1321.5, 166.5], [1320.5, 167.5]]}, +{"id": "txlgtl", "submitted_by": "ArcaniteM", "name": "EPITA - Ecole Pour l'Informatique et les Techniques Avanc\u00e9es", "description": "One of the very best schools of Computer Science and Engineering in France.\n\nThe presence of this logo for days, and until the antivoid, is not only a testimony to the sheer will and resilience of its students, but also the proof that diplomacy, peacefulness and loyalty are a valid strategy in a game of survival of the fittest.\n\nHaving befriended r/WallStreetBets, r/Trans, r/Hinduism, r/PuzzleGames, r/esPlace, r/Blasphemous, and much more, the students gathered allies who both protected them and were protected by them.\n\nThis logo proudly stands here, in the hand of a Hindu god, despite the many attacks by GreenLattice, 4chan, EFREI, CESI, and other jealous communities and French schools.\nIt was also honored to be held for hours by fuckboy, r/wallstreetbet's mascot, before they both got betrayed by rogue members of r/greenlattice community.", "website": "https://www.epita.fr/", "subreddit": "[/r/epita", "center": [1210.5, 319.5], "path": [[1192.5, 319.5], [1193.5, 319.5], [1194.5, 318.5], [1195.5, 318.5], [1196.5, 317.5], [1197.5, 316.5], [1198.5, 316.5], [1199.5, 315.5], [1198.5, 314.5], [1197.5, 314.5], [1196.5, 313.5], [1196.5, 308.5], [1197.5, 308.5], [1198.5, 308.5], [1199.5, 307.5], [1199.5, 306.5], [1201.5, 305.5], [1202.5, 306.5], [1203.5, 306.5], [1203.5, 305.5], [1205.5, 305.5], [1206.5, 306.5], [1206.5, 308.5], [1208.5, 308.5], [1209.5, 308.5], [1222.5, 308.5], [1224.5, 307.5], [1225.5, 308.5], [1225.5, 313.5], [1223.5, 314.5], [1223.5, 316.5], [1224.5, 317.5], [1224.5, 318.5], [1225.5, 320.5], [1226.5, 320.5], [1227.5, 321.5], [1228.5, 322.5], [1229.5, 323.5], [1228.5, 324.5], [1226.5, 325.5], [1227.5, 326.5], [1230.5, 329.5], [1216.5, 329.5], [1215.5, 330.5], [1212.5, 330.5], [1212.5, 336.5], [1210.5, 336.5], [1209.5, 335.5], [1205.5, 331.5], [1203.5, 331.5], [1202.5, 332.5], [1200.5, 332.5], [1200.5, 328.5], [1196.5, 328.5], [1195.5, 327.5], [1196.5, 326.5], [1195.5, 324.5], [1192.5, 321.5], [1192.5, 320.5], [1193.5, 319.5]]}, +{"id": "txlgg0", "submitted_by": "MarcelMiner", "name": "Ankh", "description": "The ankh also known as key of life representing the word life in ancient Egyptian hieroglyphics.", "website": "", "subreddit": "/r/Egypt", "center": [ 34.5, 146.5 ], "path": [ [ 33.5, 149.5 ], [ 30.5, 149.5 ], [ 30.5, 146.5 ], [ 33.5, 146.5 ], [ 31.5, 145.5 ], [ 31.5, 142.5 ], [ 33.5, 140.5 ], [ 36.5, 140.5 ], [ 38.5, 142.5 ], [ 38.5, 145.5 ], [ 36.5, 146.5 ], [ 39.5, 146.5 ], [ 39.5, 149.5 ], [ 36.5, 149.5 ], [ 36.5, 151.5 ], [ 33.5, 155.5 ], [ 33.5, 149.5 ] ] }, +{"id": "txlfxa", "submitted_by": "danuhpl0x", "name": "aespa", "description": "Logo of 4th Generation girl group aespa (\u00e6spa), which debuted under SM Entertainment", "website": "https://www.instagram.com/aespa_official/?hl=en", "subreddit": "/r/Aespa", "center": [1519.5, 894.5], "path": [[1514.5, 891.5], [1514.5, 897.5], [1523.5, 897.5], [1523.5, 890.5], [1514.5, 890.5]]}, +{"id": "txlevt", "submitted_by": "BaDk23", "name": "RTBF", "description": "Radio t\u00e9l\u00e9vision Belge Francophone. French speaking belgian Radio & TV\n", "website": "https://www.rtbf.be/", "subreddit": "", "center": [1961.5, 273.5], "path": [[1953.5, 270.5], [1969.5, 270.5], [1969.5, 276.5], [1953.5, 276.5]]}, +{"id": "txlevk", "submitted_by": "xrup", "name": "Tiny map of Hungary", "description": "Tiny map of Hungary with Miniature flag of Hungary", "website": "", "subreddit": "/r/hungary", "center": [1334.5, 250.5], "path": [[1321.5, 248.5], [1323.5, 246.5], [1324.5, 246.5], [1326.5, 245.5], [1328.5, 246.5], [1330.5, 246.5], [1332.5, 245.5], [1333.5, 245.5], [1334.5, 244.5], [1335.5, 244.5], [1337.5, 243.5], [1340.5, 243.5], [1341.5, 242.5], [1343.5, 242.5], [1344.5, 243.5], [1344.5, 244.5], [1346.5, 244.5], [1347.5, 245.5], [1348.5, 247.5], [1347.5, 248.5], [1346.5, 249.5], [1346.5, 251.5], [1344.5, 252.5], [1342.5, 253.5], [1342.5, 254.5], [1341.5, 254.5], [1341.5, 255.5], [1337.5, 255.5], [1336.5, 255.5], [1336.5, 256.5], [1333.5, 256.5], [1333.5, 257.5], [1330.5, 257.5], [1330.5, 258.5], [1325.5, 258.5], [1325.5, 257.5], [1322.5, 257.5], [1322.5, 255.5], [1321.5, 254.5]]}, +{"id": "txlei8", "submitted_by": "xRGTMX", "name": "Flower", "description": "An indigo colored flower, most likely a forget-me-not, which symbolizes remembrance. Placed by a random user, but kept and preserved by Dance Dance Revolution place users.", "website": "", "subreddit": "", "center": [785.5, 696.5], "path": [[784.5, 693.5], [784.5, 699.5], [786.5, 699.5], [786.5, 693.5]]}, +{"id": "txlefk", "submitted_by": "DrawdEcho", "name": "Yorushika (logo)", "description": "A sideways logo of the JRock duo Yorushika, composed of N-buna and Suis.", "website": "", "subreddit": "/r/Yorushika", "center": [1144.5, 1697.5], "path": [[1139.5, 1690.5], [1148.5, 1690.5], [1148.5, 1704.5], [1139.5, 1704.5]]}, +{"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": "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": "https://www.reddit.com/r/bubatz/", "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]]}, +{"id": "txl9mn", "submitted_by": "xRGTMX", "name": "Nintendo Switch", "description": "As of 2022, the latest mainline video game console by Nintendo.", "website": "https://www.nintendo.com/", "subreddit": "/r/nintendo", "center": [1097.5, 904.5], "path": [[1087.5, 899.5], [1107.5, 899.5], [1109.5, 901.5], [1109.5, 906.5], [1107.5, 908.5], [1087.5, 908.5], [1085.5, 906.5], [1085.5, 901.5]]}, +{"id": "txt1em", "submitted_by": "ThatOtherKageBoi", "name": "Flag of Christiania", "description": "The Freetown Christiania is a micronation located in Denmarks capital, Copenhagen. The place is famous for its unique architecture and w e e d. It has become a symbol of anti-government and socialist movement in Denmark since the 1970s.", "website": "", "subreddit": "", "center": [376.5, 135.5], "path": [[368.5, 137.5], [367.5, 137.5], [365.5, 135.5], [365.5, 134.5], [367.5, 132.5], [368.5, 132.5], [370.5, 134.5], [370.5, 135.5], [373.5, 135.5], [373.5, 134.5], [375.5, 132.5], [376.5, 132.5], [378.5, 134.5], [378.5, 135.5], [381.5, 135.5], [381.5, 134.5], [383.5, 132.5], [384.5, 132.5], [386.5, 134.5], [386.5, 135.5], [384.5, 137.5], [383.5, 137.5], [381.5, 135.5], [378.5, 135.5], [376.5, 137.5], [375.5, 137.5], [373.5, 135.5], [370.5, 135.5], [368.5, 137.5]]}, +{"id": "txt1br", "submitted_by": "Just-Someone243", "name": "The Flag of Peru", "description": "The national flag of Peru. ", "website": "", "subreddit": "/r/PERU", "center": [1077.5, 1573.5], "path": [[1064.5, 1567.5], [1091.5, 1567.5], [1091.5, 1578.5], [1063.5, 1578.5], [1063.5, 1568.5]]}, +{"id": "txsyhj", "submitted_by": "t_agaoglu", "name": "90pixel", "description": "A Turkish web based software development Firm", "website": "https://www.90pixel.com", "subreddit": "/r/90pixel", "center": [757.5, 1917.5], "path": [[750.5, 1915.5], [750.5, 1920.5], [767.5, 1921.5], [767.5, 1913.5], [749.5, 1913.5], [749.5, 1921.5], [767.5, 1921.5]]}, +{"id": "txsy99", "submitted_by": "roneyq123", "name": "Bonde do Fracasso", "description": "Bonde do Fracasso (BDF) is a private Discord guild where friends from around the world talk to each other everyday.", "website": "", "subreddit": "", "center": [724.5, 1688.5], "path": [[718.5, 1685.5], [730.5, 1685.5], [730.5, 1691.5], [718.5, 1691.5], [718.5, 1685.5]]}, +{"id": "txsy4l", "submitted_by": "Choripan_con_Palta", "name": "Chilean Flag", "description": "Here was one of the small Chilean flags that were propagated in all the canvas. It remained until last hours because they were banning all the users that were fighting in the France flag.", "website": "", "subreddit": "/r/chile", "center": [271.5, 1948.5], "path": [[250.5, 1927.5], [292.5, 1927.5], [291.5, 1970.5], [250.5, 1969.5]]}, +{"id": "txswy7", "submitted_by": "ducku_", "name": "Fly-Goop", "description": "A small contribution made by a group of viewers of Twitch streamer and Youtuber Flyann.\n\nGoop is a 'fakemon' made by Flyann and has since become somewhat of a mascot for his channel.\n", "website": "https://www.twitch.tv/flyann", "subreddit": "/r/flyann", "center": [1157.5, 682.5], "path": [[1154.5, 678.5], [1154.5, 680.5], [1154.5, 681.5], [1153.5, 681.5], [1155.5, 683.5], [1159.5, 683.5], [1155.5, 679.5], [1154.5, 683.5], [1155.5, 678.5], [1156.5, 678.5], [1156.5, 679.5], [1155.5, 682.5], [1154.5, 683.5], [1154.5, 682.5], [1153.5, 683.5], [1152.5, 683.5], [1151.5, 683.5], [1153.5, 682.5], [1152.5, 682.5], [1157.5, 682.5], [1155.5, 682.5], [1156.5, 681.5], [1155.5, 681.5]]}, +{"id": "txsvfe", "submitted_by": "Oscar2504", "name": "Gato Poto ", "description": "Logo of the most fantastic and cool discord group El Gato Poto VIP Club. People tried to destroy it but they fighted to death for the red kitty.\nLong live Gato Poto!", "website": "https://www.instagram.com/gatopoto_/?hl=es", "subreddit": "", "center": [1668.5, 1974.5], "path": [[1663.5, 1967.5], [1662.5, 1968.5], [1662.5, 1973.5], [1661.5, 1973.5], [1662.5, 1973.5], [1662.5, 1975.5], [1661.5, 1975.5], [1662.5, 1975.5], [1662.5, 1977.5], [1664.5, 1977.5], [1664.5, 1982.5], [1666.5, 1982.5], [1666.5, 1981.5], [1669.5, 1981.5], [1669.5, 1982.5], [1671.5, 1982.5], [1671.5, 1977.5], [1673.5, 1977.5], [1673.5, 1975.5], [1674.5, 1975.5], [1673.5, 1975.5], [1673.5, 1974.5], [1673.5, 1973.5], [1674.5, 1973.5], [1673.5, 1973.5], [1673.5, 1972.5], [1673.5, 1971.5], [1673.5, 1967.5]]}, +{"id": "txssi1", "submitted_by": "Skik134", "name": "Madotsuki", "description": "Madotsuki is the protagonist of ‘Yume Nikki’. She is shown wielding a knife, which is an iconic collectible item in the game and is not a part of her default appearance", "website": "https://yumenikki.fandom.com/wiki/Yume_Nikki_Wiki", "subreddit": "/r/yumenikki", "center": [1220.5, 121.5], "path": [[1214.5, 120.5], [1214.5, 117.5], [1213.5, 117.5], [1213.5, 112.5], [1214.5, 112.5], [1214.5, 110.5], [1215.5, 110.5], [1215.5, 109.5], [1216.5, 109.5], [1216.5, 108.5], [1218.5, 108.5], [1218.5, 107.5], [1223.5, 107.5], [1223.5, 108.5], [1225.5, 108.5], [1225.5, 109.5], [1226.5, 109.5], [1226.5, 110.5], [1227.5, 110.5], [1227.5, 112.5], [1228.5, 112.5], [1228.5, 117.5], [1227.5, 117.5], [1227.5, 120.5], [1228.5, 120.5], [1228.5, 122.5], [1229.5, 122.5], [1229.5, 124.5], [1228.5, 124.5], [1228.5, 125.5], [1227.5, 125.5], [1227.5, 127.5], [1228.5, 127.5], [1228.5, 130.5], [1227.5, 130.5], [1227.5, 133.5], [1226.5, 133.5], [1226.5, 134.5], [1222.5, 134.5], [1222.5, 133.5], [1221.5, 133.5], [1221.5, 134.5], [1215.5, 134.5], [1215.5, 133.5], [1214.5, 133.5], [1214.5, 131.5], [1213.5, 131.5], [1213.5, 129.5], [1212.5, 129.5], [1212.5, 126.5], [1214.5, 126.5], [1214.5, 125.5], [1213.5, 125.5], [1213.5, 124.5], [1212.5, 124.5], [1212.5, 122.5], [1213.5, 122.5], [1213.5, 120.5]]}, +{"id": "txss9l", "submitted_by": "Duncanisabot", "name": "Dunc", "description": "An attempt was made on multiple occasions to change the Dune Logo to say Dunc. Partly because of the movie poster looking like it says Dunc. Partly because a discord server called the Duncord convinced a bunch of people to do it", "website": "", "subreddit": "", "center": [1982.5, 169.5], "path": [[1964.5, 163.5], [1999.5, 163.5], [1999.5, 174.5], [1965.5, 174.5], [1964.5, 174.5]]}, +{"id": "txsrer", "submitted_by": "Goldndeer", "name": "Saucy Flower!", "description": "A little flower created by twitch streamer saucini's community!", "website": "https://Twitch.tv/saucini", "subreddit": "/r/saucini", "center": [874.5, 1380.5], "path": [[869.5, 1375.5], [878.5, 1375.5], [878.5, 1384.5], [869.5, 1384.5], [869.5, 1375.5]]}, +{"id": "txsr34", "submitted_by": "Immortal_Toast", "name": "Grian", "description": "A Minecraft Youtuber known for his building skills. He has been a member of Hermitcraft since season six. He is the creator of Evolution SMP, 3rd/Last Life SMP, and the co-owner of the Minecraft MMO known as Wynncraft", "website": "https://www.youtube.com/c/Grian", "subreddit": "/r/hermitcraft", "center": [883.5,603.5],"path": [[878.5,599.5],[878.5,607.5],[887.5,607.5],[887.5,599.5]]}, +{"id": "txsqeb", "submitted_by": "TOBIMIZER", "name": "Heisenberg Drawing", "description": "The iconic drawing of Heisenberg from the TV show Breaking Bad.", "website": "", "subreddit": "", "center": [266.5, 1719.5], "path": [[261.5, 1713.5], [261.5, 1725.5], [271.5, 1725.5], [271.5, 1713.5]]}, +{"id": "txspw1", "submitted_by": "lol2364", "name": "Indo-Pak Massacre 3 ", "description": "3rd Massacre of Pakistan from r/India. This was the former site of a Pakistani flag.", "website": "", "subreddit": "/r/india, /r/pakistan", "center": [561.5, 967.5], "path": [[550.5, 960.5], [569.5, 960.5], [572.5, 961.5], [573.5, 960.5], [572.5, 974.5], [550.5, 974.5], [550.5, 960.5]]}, +{"id": "txsoo5", "submitted_by": "IgnoreMyNamePlease", "name": "r/Ooer", "description": "The subreddit R/Ooer which helped maintain the Emotiguy icon (Who they lovingly refer to as \"Botto\")\n The 36 included is an inside joke on the discord server", "website": "", "subreddit": "/r/Ooer", "center": [1548.5, 165.5], "path": [[1539.5, 170.5], [1539.5, 170.5], [1558.5, 170.5], [1558.5, 165.5], [1557.5, 163.5], [1555.5, 163.5], [1555.5, 162.5], [1554.5, 162.5], [1553.5, 162.5], [1553.5, 159.5], [1549.5, 159.5], [1549.5, 158.5], [1548.5, 158.5], [1547.5, 158.5], [1547.5, 159.5], [1545.5, 159.5], [1545.5, 160.5], [1540.5, 160.5], [1539.5, 160.5], [1539.5, 166.5]]}, +{"id": "txsmec", "submitted_by": "_Kingsan_", "name": "Karl", "description": "The greatest dwarf of them all. His location is unknown, but we fight for him, for rock and stone!", "website": "", "subreddit": "", "center": [213.5, 304.5], "path": [[205.5, 301.5], [205.5, 306.5], [221.5, 306.5], [221.5, 301.5]]}, +{"id": "txsm1h", "submitted_by": "Stuart98", "name": "TMT", "description": "'Towa-sama Maji Tenshi': Fan nickname for hololive 4th gen member Tokoyami Towa, meaning 'Towa-sama is actually an angel'. Towa-sama vehemently rejects the accusation, insisting that she is in fact a devil despite all evidence being to the contrary. Related acronyms include TMD (which can be interpreted as Towa-sama Maji Debiru/Devil or Towa-sama Maji Daitenshi) and TMA (Towa-sama Maji Akuma or Towa-sama Maji Angel).", "website": "https://www.youtube.com/channel/UC1uv2Oq6kNxgATlCiez59hw", "subreddit": "/r/tokoyamitowa", "center": [254.5, 809.5], "path": [[252.5, 804.5], [252.5, 814.5], [256.5, 814.5], [256.5, 804.5]]}, +{"id": "txslz3", "submitted_by": "Zaxoosh", "name": "Animity ", "description": "It was made my anonymous.", "website": "", "subreddit": "", "center": [1850.5, 998.5], "path": [[1861.5, 1023.5], [1859.5, 970.5], [1831.5, 950.5], [1868.5, 951.5], [1870.5, 1045.5], [1830.5, 1044.5], [1832.5, 952.5], [1859.5, 967.5]]}, +{"id": "txsl5e", "submitted_by": "Goldndeer", "name": "Duck!", "description": "A little duckling made by twitch streamer saucini's community!", "website": "https://Twitch.tv/saucini", "subreddit": "/r/Saucini", "center": [843.5, 1380.5], "path": [[836.5, 1375.5], [844.5, 1375.5], [845.5, 1375.5], [844.5, 1376.5], [846.5, 1376.5], [845.5, 1377.5], [847.5, 1377.5], [847.5, 1378.5], [848.5, 1378.5], [848.5, 1379.5], [848.5, 1379.5], [848.5, 1379.5], [849.5, 1379.5], [849.5, 1380.5], [850.5, 1380.5], [850.5, 1381.5], [851.5, 1381.5], [851.5, 1382.5], [852.5, 1382.5], [852.5, 1383.5], [852.5, 1384.5], [836.5, 1384.5], [836.5, 1375.5]]}, +{"id": "txsjdm", "submitted_by": "SoapyMacNCheese", "name": "Plane Crash Corner", "description": "Reference to a frequent segment on the Hello Internet Podcast in which Grey and Brady discuss Plane Crash related events and news", "website": "https://www.hellointernet.fm", "subreddit": "/r/HelloInternet", "center": [88.5, 828.5], "path": [[81.5, 826.5], [81.5, 830.5], [94.5, 830.5], [94.5, 825.5], [89.5, 825.5], [89.5, 826.5], [81.5, 826.5]]}, +{"id": "txsi2u", "submitted_by": "lol2364", "name": "Indo-Pak Massacre 3", "description": "This was the site of a third attempt at placing a Pakistani flag by the r/pakistan community. It was quickly then destroyed. Some have attributed this to the addition of a Kashmir separatist flag by r/pakistan.", "website": "", "subreddit": "/r/india, /r/pakistan", "center": [1329.5, 328.5], "path": [[1226.5, 315.5], [1406.5, 315.5], [1466.5, 315.5], [1464.5, 327.5], [1403.5, 326.5], [1402.5, 343.5], [1226.5, 344.5], [1226.5, 316.5]]}, +{"id": "txsi1e", "submitted_by": "AlexeiM", "name": "Andean condor", "description": "An Iconic vulture, national symbol of Bolivia.", "website": "", "subreddit": "/r/Bolivia", "center": [1474.5, 1220.5], "path": [[1473.5, 1228.5], [1464.5, 1220.5], [1460.5, 1218.5], [1462.5, 1207.5], [1470.5, 1205.5], [1475.5, 1213.5], [1480.5, 1219.5], [1487.5, 1226.5], [1492.5, 1229.5], [1494.5, 1230.5], [1489.5, 1232.5], [1481.5, 1232.5], [1473.5, 1229.5]]}, +{"id": "txsfoj", "submitted_by": "mber7531", "name": "CLC", "description": "CLC (\uc528\uc5d8\uc528) is a South Korean girl group under Cube Entertainment. It currently consists of 5 members: Seungyeon, Seunghee, Yujin, Yeeun, and Eunbin. The group debuted on March 19, 2015 with the mini-album \u201cFirst Love\u201d and title track \u201cPePe\u201d.", "website": "", "subreddit": "/r/crystalclear", "center": [1493.5, 881.5], "path": [[1487.5, 879.5], [1487.5, 883.5], [1498.5, 883.5], [1498.5, 879.5]]}, +{"id": "txsfck", "submitted_by": "Katscraatch", "name": "KD Love", "description": "A love carving fought for valiantly by two lovers, and the great people of the North West Alliance.", "website": "", "subreddit": "", "center": [171.5, 53.5], "path": [[165.5, 52.5], [168.5, 52.5], [170.5, 50.5], [172.5, 50.5], [174.5, 52.5], [176.5, 52.5], [177.5, 53.5], [176.5, 54.5], [174.5, 54.5], [173.5, 55.5], [172.5, 56.5], [170.5, 56.5], [168.5, 54.5], [165.5, 54.5]]}, +{"id": "txsf5a", "submitted_by": "lol2364", "name": "Indo-Pak Massacre", "description": "Former site of the first attempted Pakistani flag. This was quickly destroyed by India, and is now the site of a memorial to cricketer, Shane Warne. ", "website": "", "subreddit": "/r/India, /r/Pakistan, /r/cricket", "center": [314.5, 274.5], "path": [[294.5, 250.5], [334.5, 252.5], [334.5, 297.5], [293.5, 296.5], [294.5, 250.5]]}, +{"id": "txsf00", "submitted_by": "Otakawai", "name": "The C from UCA - le Puy-en-Velay", "description": "The C banner that was made and protected in honor of the IUT of informatic of Le Puy-en-Velay by the students. (also, OmegaProd, you're a traitor)", "website": "https://iut.uca.fr/formations/but-informatique-le-puy", "subreddit": "", "center": [920.5, 1966.5], "path": [[913.5, 1971.5], [913.5, 1961.5], [927.5, 1961.5], [927.5, 1971.5]]}, +{"id": "txsd8y", "submitted_by": "GokhanP", "name": "Turkish Cat", "description": "Logo of the Turkish Cats subreddit.", "website": "", "subreddit": "/r/TurkishCats", "center": [1558.5, 1438.5], "path": [[1566.5, 1430.5], [1553.5, 1430.5], [1547.5, 1440.5], [1554.5, 1446.5], [1563.5, 1444.5], [1567.5, 1441.5]]}, +{"id": "txsbmu", "submitted_by": "ChocolateBoar", "name": "Heave Ho", "description": "Heave Ho is a platform party video game developed by Le Cartel Studio and published by Devolver Digital. In Heave Ho, players must navigate their characters through a ravine across a series of increasingly complex levels in order to reach the end goal.", "website": "https://www.heavehogame.com/", "subreddit": "/r/Heave_Ho", "center": [1123.5, 980.5], "path": [[1110.5, 974.5], [1136.5, 974.5], [1134.5, 986.5], [1113.5, 985.5]]}, +{"id": "txsawz", "submitted_by": "ciroc__obama", "name": "Rip City", "description": "Portland Trail Blazers Pinwheel. Rip City - Home of Damian Lillard, father of Russell Westbrick.", "website": "https://damedolla.com", "subreddit": "/r/ripcity", "center": [487.5, 1107.5], "path": [[477.5, 1092.5], [475.5, 1093.5], [497.5, 1092.5], [497.5, 1122.5], [478.5, 1122.5], [478.5, 1122.5]]}, +{"id": "txsa05", "submitted_by": "YouMakeYourMomSad", "name": "KD Love", "description": "A love carving fought for valiantly by two lovers, and the great people of the North West Alliance.", "website": "", "subreddit": "", "center": [171.5, 53.5], "path": [[165.5, 54.5], [165.5, 52.5], [169.5, 52.5], [169.5, 51.5], [170.5, 51.5], [170.5, 50.5], [172.5, 50.5], [172.5, 51.5], [173.5, 51.5], [173.5, 52.5], [177.5, 52.5], [177.5, 54.5], [174.5, 54.5], [173.5, 54.5], [173.5, 55.5], [172.5, 55.5], [172.5, 56.5], [170.5, 56.5], [170.5, 55.5], [169.5, 55.5], [169.5, 54.5], [165.5, 54.5]]}, +{"id": "txs9cz", "submitted_by": "maauri16_uy", "name": "SoulKnight", "description": "Just a random group of Uruguayan friends that managed to infiltrate in place 2022.", "website": "", "subreddit": "", "center": [1893.5, 1327.5], "path": [[1883.5, 1323.5], [1901.5, 1323.5], [1902.5, 1323.5], [1902.5, 1330.5], [1883.5, 1330.5], [1883.5, 1323.5]]}, +{"id": "txs97b", "submitted_by": "DoerteMaulwurf", "name": "Christiania", "description": "The 3 dots are the symbol of Christiania, a free-city that lies within Copenhagen. The city is most popular for allowing the use of Cannabis, as well as the famous Christiania-bikes. ", "website": "", "subreddit": "/r/Denmark", "center": [376.5, 135.5], "path": [[365.5, 132.5], [386.5, 132.5], [386.5, 137.5], [365.5, 137.5], [365.5, 137.5], [365.5, 137.5], [365.5, 137.5]]}, +{"id": "txs946", "submitted_by": "frickingfemboy", "name": "Trans flag of r/Neoliberal and r/Noncredible Defence", "description": "An initially 3 pixel wide trans flag on the left side of the neoliberal/noncredibledefence collaborative art. The flag quickly grew to six pixels before extending out further to the left and reaching the Hungarian flag. Sweden and Hungary would eventually take over this flag.", "website": "", "subreddit": "", "center": [777.5, 114.5], "path": [[799.5, 129.5], [799.5, 99.5], [754.5, 100.5], [755.5, 129.5]]}, +{"id": "txs8wu", "submitted_by": "_Neroxis", "name": "Neroxis", "description": "The profile picture of the redditor _Neroxis.", "website": "http://neroxis.net", "subreddit": "/u/_neroxis", "center": [1530.5, 163.5], "path": [[1522.5, 159.5], [1527.5, 154.5], [1534.5, 154.5], [1539.5, 160.5], [1539.5, 166.5], [1534.5, 171.5], [1527.5, 171.5], [1522.5, 166.5]]}, +{"id": "txs8wk", "submitted_by": "mber7531", "name": "Weeekly", "description": "WEEEKLY (\uc704\ud074\ub9ac) (formerly known as PlayM Girls and FAVE Girls) is a seven-member girl group under under IST Entertainment (formerly Play M Entertainment), consisting of Lee Soojin, Shin Jiyoon, Monday, Park Soeun, Lee Jaehee, Jihan, and Zoa. They debuted in June 30, 2020 with their debut album \u2018We Are\u2019 which features the title track Tag Me (@Me).", "website": "", "subreddit": "/r/weeekly", "center": [1470.5, 881.5], "path": [[1453.5, 879.5], [1453.5, 883.5], [1486.5, 883.5], [1486.5, 879.5]]}, +{"id": "txs7pd", "submitted_by": "AugustImperator", "name": "Commnad Prompt", "description": "A command line interpreter in many computer operating systems, such as OS/2 and Windows.", "website": "", "subreddit": "", "center": [1462.5, 342.5], "path": [[1456.5, 337.5], [1467.5, 337.5], [1467.5, 347.5], [1456.5, 347.5], [1456.5, 340.5], [1456.5, 337.5]]}, +{"id": "txs72v", "submitted_by": "Saferosayshi", "name": "HoliHowls", "description": "trans artist and streamer HoliHowls, the wolf depicted is her fursona", "website": "https://www.twitch.tv/holihowls", "subreddit": "", "center": [547.5, 444.5], "path": [[541.5, 430.5], [535.5, 437.5], [533.5, 437.5], [534.5, 440.5], [534.5, 453.5], [555.5, 454.5], [554.5, 446.5], [561.5, 447.5], [565.5, 440.5], [565.5, 432.5], [554.5, 442.5], [544.5, 441.5], [547.5, 435.5], [541.5, 434.5]]}, +{"id": "txs5ho", "submitted_by": "DoctorWhoops", "name": "Nothing But Lag logo", "description": "Editor for Supermega 'Justin' aka. Nothing But Lag's initials were represented here in the final version of /r/place", "website": "", "subreddit": "", "center": [1855.5, 397.5], "path": [[1852.5, 395.5], [1858.5, 395.5], [1858.5, 398.5], [1852.5, 398.5], [1852.5, 395.5]]}, +{"id": "txs3hw", "submitted_by": "Dark_Phoenix_11", "name": "The Green Line", "description": "The Green Line is a train line in Boston, MA.", "website": "https://www.mbta.com/schedules/Green", "subreddit": "", "center": [322.5, 1569.5], "path": [[300.5, 1564.5], [344.5, 1565.5], [343.5, 1574.5], [300.5, 1574.5], [301.5, 1565.5]]}, +{"id": "txs238", "submitted_by": "Acusticboy", "name": "Ecuadorian Flag", "description": "After difficulties with the Colombian community trying to make a combined flag akin to La Gran Colombia from the first r/place, the Ecuadorian Community relocated here. Initially with a small flag but quickly expanded to include the volcano Chimborazo, La perla (a ferris wheel), the monument to the middle of the world, the cerro santana lighthouse and a pixel art of a modified shield from the original Ecuadorian Flag. On the last day it was consumed by the Polish flag, allegedly with the help from Polish streamers.", "website": "", "subreddit": "/r/ecuador", "center": [1610.5, 586.5], "path": [[1548.5, 568.5], [1581.5, 568.5], [1581.5, 576.5], [1678.5, 576.5], [1678.5, 599.5], [1549.5, 598.5], [1548.5, 568.5]]}, +{"id": "txs118", "submitted_by": "TheHalidor", "name": "Stegmenschen Memorial", "description": "Stegmenschen (eng. pier people) is a small group of people that formed a cult around a small wooden pier at the Millst\u00e4tter Lake in Austria.", "website": "", "subreddit": "", "center": [882.5, 1833.5], "path": [[872.5, 1830.5], [892.5, 1830.5], [892.5, 1836.5], [872.5, 1836.5], [872.5, 1830.5]]}, +{"id": "txs0wq", "submitted_by": "Skieblu", "name": "Feh", "description": "Feh is an owl and a mascot of the mobile gacha game, Fire Emblem Heroes (released in 2017)", "website": "", "subreddit": "/r/Fireemblemheroes", "center": [473.5, 688.5], "path": [[473.5, 689.5], [479.5, 689.5], [479.5, 684.5], [476.5, 684.5]]}, +{"id": "txrzdm", "submitted_by": "Magicgive", "name": "FSU/F5 Alliance", "description": "A wholesome alliance was made here inbetween magicgive's American team and Netherlands Sonross's team. \n\nFSU stood for Fitchburg State University, and F5 stood for Sonross's 5 Friends, all of whom liked F1 racing.", "website": "", "subreddit": "", "center": [760.5, 1852.5], "path": [[755.5, 1851.5], [755.5, 1855.5], [761.5, 1855.5], [761.5, 1857.5], [760.5, 1857.5], [761.5, 1857.5], [761.5, 1855.5], [763.5, 1855.5], [763.5, 1857.5], [764.5, 1857.5], [763.5, 1857.5], [763.5, 1846.5], [762.5, 1846.5], [762.5, 1847.5], [761.5, 1847.5], [761.5, 1851.5], [755.5, 1851.5]]}, +{"id": "txrz99", "submitted_by": "nikolajrk", "name": "The small symbol of Nikolaj-Mikkel-Peter-Jakob-Daniel-Kurt", "description": "This was what the initial logo of the person with many names was finally cooked down to, as this was how much he was able to protect alone.", "website": "", "subreddit": "", "center": [748.5, 680.5], "path": [[747.5, 679.5], [748.5, 679.5], [748.5, 680.5], [747.5, 680.5]]}, +{"id": "txrxtl", "submitted_by": "reallifepotatos", "name": "Vysena Studios", "description": "Vysena Studios is a group of creators experts in developing unique experiences in Fortnite creative. Custom fortnite creative experiences can be made for brand activations, events, contests, tournaments or even for twitch or youtube content creators.", "website": "", "subreddit": "", "center": [1590.5, 810.5], "path": [[1590.5, 798.5], [1590.5, 804.5], [1578.5, 804.5], [1578.5, 819.5], [1600.5, 819.5], [1600.5, 798.5]]}, +{"id": "txrx2f", "submitted_by": "victor_rrzz", "name": "Spanish chicken", "description": "Just a lil chicken made by three spanish bois", "website": "", "subreddit": "", "center": [462.5, 1518.5], "path": [[458.5, 1513.5], [458.5, 1513.5], [466.5, 1513.5], [466.5, 1523.5], [458.5, 1523.5], [458.5, 1518.5], [458.5, 1515.5], [458.5, 1515.5]]}, +{"id": "txrwi6", "submitted_by": "Lesbian_Cops", "name": "LY", "description": "Onion boi artwork done by LY, a Yogscast fan group, in collaboration with Blebs and other Yogscast related artworks", "website": "", "subreddit": "", "center": [1571.5, 1810.5], "path": [[1565.5, 1803.5], [1576.5, 1803.5], [1576.5, 1811.5], [1577.5, 1811.5], [1577.5, 1817.5], [1565.5, 1817.5]]}, +{"id": "txrwde", "submitted_by": "pow__", "name": "Among us", "description": "two crewmates that don't seem to like each other very much", "website": "", "subreddit": "/r/amongus", "center": [704.5, 1710.5], "path": [[700.5, 1712.5], [707.5, 1712.5], [707.5, 1708.5], [700.5, 1708.5]]}, +{"id": "txru9h", "submitted_by": "Neutracity", "name": "Neutra logo", "description": "I'm just a random french player who place his logo with a lot of determination and some friends. If you want you can add me on discord : Neutracity#1644", "website": "", "subreddit": "", "center": [1808.5, 403.5], "path": [[1805.5, 398.5], [1803.5, 400.5], [1803.5, 405.5], [1805.5, 407.5], [1810.5, 407.5], [1812.5, 405.5], [1812.5, 400.5], [1810.5, 398.5], [1805.5, 398.5]]}, +{"id": "txrsi1", "submitted_by": "sciencecw", "name": "Black Bauhinia Flag", "description": "Hongkongers' epic lightsaber battle with the Chinese government, and Mug root beer", "website": "https://cwylo.github.io/hkprotestart/thread1.html", "subreddit": "/r/HongKong", "center": [816.5, 1693.5], "path": [[795.5, 1683.5], [806.5, 1685.5], [811.5, 1672.5], [822.5, 1669.5], [821.5, 1681.5], [831.5, 1681.5], [840.5, 1691.5], [828.5, 1695.5], [833.5, 1702.5], [826.5, 1715.5], [818.5, 1706.5], [807.5, 1714.5], [798.5, 1710.5], [803.5, 1700.5], [795.5, 1691.5]]}, +{"id": "txrs3f", "submitted_by": "MrPoporetaman", "name": "mr_poporetaman", "description": "An abbreviation to my nickname mr_poporetaman. I'm just a random guy.", "website": "", "subreddit": "", "center": [941.5, 1972.5], "path": [[948.5, 1970.5], [948.5, 1973.5], [934.5, 1973.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [935.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [934.5, 1970.5], [948.5, 1970.5]]}, +{"id": "txrqmq", "submitted_by": "squidrobotfriend", "name": "Zaku II head", "description": "The head of a 'MS-06 Zaku II', a type of 'Mobile Suit' mecha used by the various Zeon factions in the 'Universal Century' timeline of the Japanese multimedia franchise 'Gundam'.", "website": "", "subreddit": "/r/Gundam", "center": [1569.5, 1544.5], "path": [[1566.5, 1542.5], [1567.5, 1541.5], [1571.5, 1541.5], [1572.5, 1542.5], [1573.5, 1543.5], [1574.5, 1544.5], [1574.5, 1545.5], [1573.5, 1546.5], [1572.5, 1547.5], [1571.5, 1547.5], [1570.5, 1548.5], [1568.5, 1548.5], [1567.5, 1547.5], [1566.5, 1547.5], [1565.5, 1546.5], [1564.5, 1545.5], [1564.5, 1544.5], [1565.5, 1543.5], [1566.5, 1542.5]]}, +{"id": "txrqgx", "submitted_by": "reallifepotatos", "name": "Horizon Zero Dawn", "description": "The first of a series of videogames made by Guerrilla Games. The plot follows Aloy, a young huntress in a world overrun by machines, who sets out to uncover her past. She wears a Focus, a small triangular head piece that scans machines.", "website": "", "subreddit": "/r/HorizonZeroDawn", "center": [98.5, 75.5], "path": [[93.5, 72.5], [103.5, 72.5], [103.5, 77.5], [93.5, 77.5]]}, +{"id": "txrqct", "submitted_by": "VegetableKicKnight", "name": "Baguette", "description": "On the initiative of the french streamer ZeratoR, a baguette was placed on some characters with open hands. This one was erased soon after being placed.", "website": "", "subreddit": "", "center": [863.5, 646.5], "path": [[858.5, 662.5], [850.5, 656.5], [869.5, 629.5], [876.5, 636.5]]}, +{"id": "txrp3j", "submitted_by": "mc360plays", "name": "Redstone Torch", "description": "A partially complete redstone torch from the 2009 Swedish video game Minecraft.", "website": "", "subreddit": "/r/minecraft", "center": [701.5, 311.5], "path": [[701.5, 309.5], [702.5, 309.5], [703.5, 310.5], [703.5, 311.5], [702.5, 312.5], [702.5, 313.5], [701.5, 314.5], [701.5, 313.5], [701.5, 312.5], [700.5, 311.5], [700.5, 310.5]]}, +{"id": "txrp1f", "submitted_by": "velcom_here", "name": "Cow (Fleckvieh breed)", "description": "The Fleckvieh is the dominating breed of cattle in Austria. It is suitable for both milk and meat production. The artwork shows a happy cow in an alpine meadow sourrounding, possibly subsidized by EU funding for mountain farmers.", "website": "https://en.wikipedia.org/wiki/Fleckvieh", "subreddit": "/r/Austria", "center": [1089.5, 273.5], "path": [[1097.5, 279.5], [1084.5, 279.5], [1081.5, 276.5], [1081.5, 265.5], [1090.5, 266.5], [1101.5, 273.5], [1097.5, 279.5]]}, +{"id": "txrooj", "submitted_by": "BigPPguyn1", "name": "Hondurian Flag", "description": "This is the flag from the cetroamerican country known as Honduras", "website": "", "subreddit": "", "center": [961.5, 1605.5], "path": [[950.5, 1599.5], [972.5, 1599.5], [972.5, 1610.5], [950.5, 1610.5], [950.5, 1599.5]]}, +{"id": "txro77", "submitted_by": "bruhccoli3", "name": "Chocobo", "description": "The iconic bird from the Final Fantasy series.", "website": "", "subreddit": "/r/FinalFantasy", "center": [1257.5, 528.5], "path": [[1259.5, 540.5], [1259.5, 540.5], [1257.5, 539.5], [1259.5, 537.5], [1259.5, 536.5], [1255.5, 536.5], [1252.5, 533.5], [1252.5, 532.5], [1256.5, 528.5], [1256.5, 527.5], [1253.5, 527.5], [1252.5, 528.5], [1251.5, 527.5], [1251.5, 524.5], [1254.5, 520.5], [1264.5, 520.5], [1262.5, 523.5], [1263.5, 524.5], [1260.5, 527.5], [1260.5, 529.5], [1261.5, 532.5], [1261.5, 533.5], [1261.5, 536.5], [1262.5, 537.5], [1259.5, 540.5]]}, +{"id": "txrnpu", "submitted_by": "VegetableKicKnight", "name": "Baguette", "description": "On the initiative of the french streamer ZeratoR, a baguette was placed on some characters with their hands open. After the Bratishkin community wrote \"stop baguette\" ZeratoR's community stopped placing baguette here and replied with a small \"Ok\" accompanied by a french flag.", "website": "", "subreddit": "", "center": [1887.5, 1940.5], "path": [[1905.5, 1969.5], [1855.5, 1930.5], [1872.5, 1911.5], [1920.5, 1954.5]]}, +{"id": "txrnkr", "submitted_by": "Lornedon", "name": ".gg/placeDE", "description": "Short for discord.gg/placeDE, an invite link to the official /r/placeDE discord server.", "website": "", "subreddit": "/r/placeDE", "center": [608.5, 852.5], "path": [[607.5, 865.5], [607.5, 858.5], [588.5, 858.5], [588.5, 846.5], [629.5, 846.5], [629.5, 858.5], [609.5, 858.5], [609.5, 865.5]]}, +{"id": "txrmlq", "submitted_by": "Ninja332", "name": "Menacing Kanji", "description": "Common occurance in the manga/anime Jojo's Bizzare Adventure, it is Japanese for Menacing. It signifies a moment of tension in a scene", "website": "https://knowyourmeme.com/memes/menacing-%E3%82%B4%E3%82%B4%E3%82%B4%E3%82%B4", "subreddit": "/r/Shitpostcrusaders", "center": [125.5, 904.5], "path": [[129.5, 900.5], [128.5, 900.5], [124.5, 901.5], [121.5, 903.5], [121.5, 907.5], [124.5, 908.5], [127.5, 907.5], [129.5, 901.5]]}, +{"id": "txrkt8", "submitted_by": "marioamiibo", "name": "Space Duck - Tribute to Reckful", "description": "In honor of the late Byron Daniel Bernstein (Reckful), this art piece of his duck made by u/Liftaris was put into place as a collaborative effort between the communities of Mizkif, PayMoneyWubby, and Will Neff.", "website": "", "subreddit": "/r/reckful", "center": [331.5, 1764.5], "path": [[250.5, 1683.5], [281.5, 1683.5], [281.5, 1679.5], [411.5, 1677.5], [411.5, 1848.5], [251.5, 1849.5], [250.5, 1683.5]]}, +{"id": "txrkoq", "submitted_by": "mc360plays", "name": "Kirby", "description": "Kirby (Japanese: \u30ab\u30fc\u30d3\u30a3, Hepburn: K\u0101b\u012b, Japanese pronunciation: [ka\u02d0bi\u02d0]) is a fictional character and the titular protagonist of the Kirby series of video games owned by Nintendo and HAL Laboratory.", "website": "", "subreddit": "/r/kirby", "center": [37.5, 358.5], "path": [[38.5, 355.5], [39.5, 355.5], [35.5, 355.5], [35.5, 356.5], [34.5, 357.5], [34.5, 361.5], [40.5, 362.5], [40.5, 356.5]]}, +{"id": "txrjyk", "submitted_by": "FluffyTachyon", "name": "Kawaii transgender cat pile", "description": "A pile of cute kittens for trans people who love it cute and subtle. Original work from Irene Koh.", "website": "https://irenekohstudio.com/products/kawaii-cat-pile-transgender-pride-sticker", "subreddit": "/r/transplace", "center": [491.5, 459.5], "path": [[485.5, 438.5], [487.5, 439.5], [492.5, 439.5], [493.5, 437.5], [495.5, 437.5], [495.5, 440.5], [494.5, 441.5], [497.5, 447.5], [496.5, 448.5], [496.5, 451.5], [495.5, 452.5], [497.5, 456.5], [496.5, 460.5], [497.5, 463.5], [499.5, 462.5], [502.5, 463.5], [504.5, 468.5], [503.5, 471.5], [501.5, 474.5], [499.5, 474.5], [500.5, 473.5], [495.5, 473.5], [493.5, 473.5], [480.5, 474.5], [481.5, 472.5], [481.5, 469.5], [480.5, 468.5], [480.5, 465.5], [481.5, 464.5], [482.5, 463.5], [486.5, 464.5], [487.5, 462.5], [485.5, 460.5], [487.5, 459.5], [487.5, 457.5], [483.5, 454.5], [485.5, 451.5], [486.5, 449.5], [484.5, 448.5], [485.5, 446.5], [486.5, 444.5], [486.5, 441.5], [485.5, 441.5]]}, +{"id": "txrjxw", "submitted_by": "FishNChips657", "name": "CLC Logo", "description": "CLC (Crystal Clear) is a South Korean girl group formed by Cube Entertainment. The group consists of five members: Seunghee, Yujin, Seungyeon, Yeeun, and Eunbin. A seven-piece ensemble for most of their career, Elkie departed from the group in February 2021 and Sorn departed from the group in November 2021.", "website": "", "subreddit": "/r/crystalclear", "center": [1493.5, 882.5], "path": [[1488.5, 879.5], [1488.5, 884.5], [1498.5, 884.5], [1498.5, 879.5]]}, +{"id": "txri6s", "submitted_by": "FishNChips657", "name": "IU", "description": "IU is a South Korean singer, songwriter, and actress. The name IU is a combination of 'I' and 'you' meaning 'you and I become one through music'. She signed with Kakao M in 2007 as a trainee and debuted as a singer with her first mini album Lost and Found (2008).", "website": "", "subreddit": "/r/aiyu", "center": [1675.5, 885.5], "path": [[1670.5, 880.5], [1670.5, 890.5], [1680.5, 890.5], [1680.5, 880.5]]}, +{"id": "txrgvc", "submitted_by": "DefinitelyNotSascha", "name": "Tiny Danganronpa-characters", "description": "Along with the big Nagito and his green Amogus, several other characters from the Danganronpa franchise resided here, namely Makoto Naegi, Hajime Hinata, Kaede Akamatsu and Korekiyo Shinguchi.", "website": "", "subreddit": "", "center": [743.5, 824.5], "path": [[732.5, 820.5], [753.5, 820.5], [753.5, 828.5], [732.5, 828.5], [732.5, 820.5]]}, +{"id": "txrg84", "submitted_by": "Alexandre_Moonwell", "name": "Flag of France", "description": "A very large flag of France, made by the French Twitch sphere of streamers and their community, coordinated by streamer and e-sports leader Kameto, who also negotiated with various other streamers and subreddits worldwide (mainly Spain and North America) who tried to grief or take territory by making consensus. It started as a banner bearing a poorly-done Eiffel Tower, but went through several changes and additions, with the help of r/placefrance, to make it a pedestal of French culture. BTS fans tried to plaster the logo in the upper half, without success. It was the first large piece to be erased during the Great Erasure.", "website": "https://en.wikipedia.org/wiki/France", "subreddit": "/r/placefrance", "center": [125.5, 1719.5], "path": [[249.5, 1469.5], [0.5, 1469.5], [0.5, 1969.5], [249.5, 1969.5], [249.5, 1469.5]]}, +{"id": "txrg5c", "submitted_by": "Lornedon", "name": "rm -rf", "description": "A command for removing a folder and all it's contents on Linux and other Unix-like operating systems.", "website": "", "subreddit": "", "center": [1563.5, 264.5], "path": [[1553.5, 261.5], [1553.5, 262.5], [1552.5, 262.5], [1552.5, 266.5], [1573.5, 266.5], [1573.5, 262.5], [1553.5, 262.5], [1553.5, 261.5]]}, +{"id": "txrf5u", "submitted_by": "max_rebo42", "name": "The Giant Rat", "description": "He makes all of the rules", "website": "https://www.youtube.com/watch?v=jAXioRNYy4s", "subreddit": "/r/jerma985", "center": [100.5, 1039.5], "path": [[93.5, 1046.5], [93.5, 1032.5], [95.5, 1035.5], [99.5, 1034.5], [99.5, 1036.5], [109.5, 1030.5], [111.5, 1034.5], [93.5, 1051.5]]}, +{"id": "txrew2", "submitted_by": "StreetStickerLoverAK", "name": "Kalamari Stickers", "description": "Cute pixelated squid from street artist based in Spain. Stands out for Travelling and Pasting his squid stickers around the world. \n\nFor the first minutes of /r/place, the squid was located next to the Osu! logo, with a size of 36x36. Then it was moved next to trollface, forming an alliance with them and defending the logo. Once the first canvas expansion arrived after 27 hours, the squid was moved a third time, giving the area the squid was to Washington State University Logo.\n\nThis design was the latest one and kept alive until the whitening. Main allies were the duck icon on the left, \"03\" text representing a small minecraft server community, and /r/onepiece 's Thousand Sunny logo.", "website": "https://instagram.com/kalamarinios", "subreddit": "", "center": [1505.5, 213.5], "path": [[1494.5, 204.5], [1494.5, 222.5], [1514.5, 222.5], [1515.5, 222.5], [1515.5, 204.5], [1494.5, 204.5]]}, +{"id": "txrdcs", "submitted_by": "DefinitelyNotSascha", "name": "Wizard-Amogus (R.I.P.)", "description": "On the first day, a tiny Among Us-crewmate wearing a wizard hat and holding a magical staff resided here.\nFew knew of the spellcaster's existence, and so, he was never able to appear on another space on the canvas.", "website": "", "subreddit": "", "center": [767.5, 764.5], "path": [[764.5, 761.5], [770.5, 761.5], [770.5, 767.5], [764.5, 767.5], [764.5, 761.5], [764.5, 761.5]]}, +{"id": "txrcns", "submitted_by": "Matuquicas", "name": "Chito, Yuuri and Nuko", "description": "Chito and Yuuri are the main protagonist of Girls' Last Tour. They travel through a post-apocaliptic world in their Kettenkrad. At some point they find Nuko, an animal that resembles a cat.", "website": "https://girls-last-tour.fandom.com/wiki/Girls_Last_Tour_Anime", "subreddit": "[/r/GirlsLastTour", "center": [1343.5, 1162.5], "path": [[1334.5, 1169.5], [1333.5, 1167.5], [1334.5, 1166.5], [1333.5, 1165.5], [1334.5, 1164.5], [1336.5, 1162.5], [1334.5, 1162.5], [1333.5, 1159.5], [1336.5, 1155.5], [1336.5, 1154.5], [1343.5, 1154.5], [1343.5, 1155.5], [1345.5, 1155.5], [1345.5, 1154.5], [1349.5, 1154.5], [1352.5, 1157.5], [1352.5, 1159.5], [1350.5, 1161.5], [1350.5, 1163.5], [1353.5, 1167.5], [1351.5, 1169.5], [1342.5, 1170.5], [1340.5, 1170.5], [1334.5, 1169.5], [1335.5, 1155.5]]}, +{"id": "txrapb", "submitted_by": "mondatta98", "name": "Codde", "description": "A mysterious being managed to sneak his name inside r/place... how selfish. Who is this guy!? We may never know.", "website": "", "subreddit": "", "center": [1801.5, 1115.5], "path": [[1795.5, 1116.5], [1795.5, 1114.5], [1807.5, 1114.5], [1807.5, 1116.5], [1807.5, 1116.5]]}, +{"id": "txr9zd", "submitted_by": "Nexciting", "name": "The Coffee Cup", "description": "After a long battle to establish territory to the east of the Hungarian Flag, humble Coffee enjoyers from Canada sought diplomacy with the Hungarians to clean up their flag and share the love of k\u00e1v\u00e9.", "website": "", "subreddit": "", "center": [1491.5, 253.5], "path": [[1485.5, 249.5], [1485.5, 255.5], [1489.5, 257.5], [1497.5, 257.5], [1497.5, 249.5], [1485.5, 249.5], [1487.5, 252.5], [1485.5, 249.5], [1485.5, 250.5], [1485.5, 251.5], [1485.5, 249.5], [1485.5, 249.5]]}, +{"id": "txr9xm", "submitted_by": "NoRodent", "name": "Cathedral of St. Peter and Paul, Brno", "description": "Silhouette of the Petrov Hill with the Cathedral of St. Peter and Paul located in the centre of the city of Brno, second largest city in the Czech Republic.", "website": "https://en.wikipedia.org/wiki/Cathedral_of_St._Peter_and_Paul,_Brno", "subreddit": "/r/czech", "center": [1267.5, 197.5], "path": [[1245.5, 210.5], [1250.5, 205.5], [1253.5, 198.5], [1254.5, 190.5], [1257.5, 194.5], [1265.5, 192.5], [1266.5, 186.5], [1268.5, 169.5], [1271.5, 186.5], [1273.5, 169.5], [1275.5, 187.5], [1278.5, 189.5], [1281.5, 197.5], [1285.5, 205.5]]}, +{"id": "txr9kl", "submitted_by": "Lornedon", "name": "The Doodler", "description": "The Doodler from Doodle Jump, a platforming video game developed and published by Croatian studio Lima Sky.", "website": "", "subreddit": "/r/Doodlejump", "center": [391.5, 1100.5], "path": [[387.5, 1109.5], [386.5, 1109.5], [386.5, 1106.5], [385.5, 1106.5], [385.5, 1096.5], [387.5, 1094.5], [394.5, 1094.5], [396.5, 1096.5], [396.5, 1098.5], [400.5, 1098.5], [400.5, 1100.5], [396.5, 1100.5], [396.5, 1106.5], [395.5, 1106.5], [395.5, 1109.5], [396.5, 1109.5], [395.5, 1109.5], [395.5, 1106.5], [392.5, 1106.5], [392.5, 1109.5], [393.5, 1109.5], [392.5, 1109.5], [392.5, 1106.5], [389.5, 1106.5], [389.5, 1109.5], [390.5, 1109.5], [389.5, 1109.5], [389.5, 1106.5], [386.5, 1106.5], [386.5, 1109.5]]}, +{"id": "txr97g", "submitted_by": "NoRodent", "name": "Charles Bridge", "description": "Silhouette of Charles Bridge (Czech: Karl\u016fv most) with Old Town Bridge Tower. Located in Prague, Czech Republic crossing the Vltava river. Construction of this medieval stone arch bridge started in 1357, finished in 1405.", "website": "https://en.wikipedia.org/wiki/Charles_Bridge", "subreddit": "/r/czech", "center": [1224.5, 212.5], "path": [[1198.5, 210.5], [1206.5, 210.5], [1208.5, 205.5], [1211.5, 210.5], [1220.5, 210.5], [1222.5, 205.5], [1225.5, 210.5], [1236.5, 210.5], [1236.5, 195.5], [1244.5, 195.5], [1244.5, 214.5], [1238.5, 219.5], [1224.5, 220.5], [1198.5, 220.5]]}, +{"id": "txr929", "submitted_by": "Lamkac", "name": "\u010do u\u017e", "description": "'\u010do u\u017e' is a magical phrase that can be used for any occasion. Usually meant as a nihilistic response to an event that one either can't or just does not want to affect. It became a meme in our small circle of friends due to one of us overusing it too much and spreading it onto others as well as beyond the borders of our miniscule community.", "website": "", "subreddit": "", "center": [1726.5, 984.5], "path": [[1721.5, 979.5], [1731.5, 979.5], [1731.5, 989.5], [1721.5, 989.5]]}, +{"id": "txr6e0", "submitted_by": "KingDededeThe3rd", "name": "Jack Frost", "description": "A demon from the JRPG series, Megami Tensei. This design first appeared in Shin Megami Tensei and has since become the mascot of the franchise.", "website": "", "subreddit": "/r/megaten", "center": [1794.5, 1662.5], "path": [[1794.5, 1668.5], [1791.5, 1668.5], [1789.5, 1665.5], [1789.5, 1663.5], [1790.5, 1662.5], [1791.5, 1659.5], [1789.5, 1658.5], [1788.5, 1657.5], [1789.5, 1656.5], [1791.5, 1657.5], [1793.5, 1659.5], [1797.5, 1659.5], [1800.5, 1656.5], [1802.5, 1656.5], [1802.5, 1657.5], [1798.5, 1660.5], [1800.5, 1662.5], [1799.5, 1663.5]]}, +{"id": "txr6bq", "submitted_by": "New_Climate_9512", "name": "ROCKET SPACESHIP", "description": "Drawed by LWZ from Midway RP.\n", "website": "https://www.twitter.com/lewizooo", "subreddit": "", "center": [415.5, 1575.5], "path": [[426.5, 1600.5], [427.5, 1552.5], [415.5, 1549.5], [404.5, 1552.5], [405.5, 1600.5]]}, +{"id": "txr62x", "submitted_by": "gofl124", "name": "Jaylen Waddle Duck ", "description": "Graciously donated by r/ducks_place, this OG duck was converted to a penguin to represent the Miami Dolphin's newest stud wide receiver, Jaylen Waddle ", "website": "", "subreddit": "/r/miamidolphins, ", "center": [309.5, 909.5], "path": [[305.5, 904.5], [306.5, 915.5], [312.5, 915.5], [312.5, 904.5]]}, +{"id": "txr4n6", "submitted_by": "New_Climate_9512", "name": "MIDWAY", "description": "Midway logo, famous FiveM (GTA5 RP) project. Made by the community of this project.\n", "website": "https://discord.gg/midway", "subreddit": "", "center": [362.5, 1495.5], "path": [[355.5, 1490.5], [369.5, 1490.5], [369.5, 1499.5], [355.5, 1499.5]]}, +{"id": "txr3wx", "submitted_by": "ZeroT3K", "name": "Black Mage", "description": "The Black Mage is the dedicated offensive spellcaster of Final Fantasy, able to cast all Black Magic that can deal heavy damage to enemies or outright kill them, but it is minimal physical proficiency.", "website": "https://finalfantasy.fandom.com/wiki/Black_Mage_(Final_Fantasy)", "subreddit": "/r/finalfantasy", "center": [1264.5, 554.5], "path": [[1258.5, 540.5], [1268.5, 545.5], [1273.5, 546.5], [1273.5, 547.5], [1270.5, 549.5], [1270.5, 551.5], [1273.5, 553.5], [1273.5, 555.5], [1274.5, 558.5], [1273.5, 559.5], [1273.5, 562.5], [1274.5, 563.5], [1273.5, 565.5], [1257.5, 565.5], [1257.5, 563.5], [1258.5, 562.5], [1258.5, 560.5], [1257.5, 559.5], [1257.5, 555.5], [1258.5, 555.5], [1255.5, 553.5], [1256.5, 551.5], [1259.5, 548.5], [1256.5, 541.5], [1257.5, 540.5]]}, +{"id": "txr38x", "submitted_by": "XingLili", "name": "The 480 line (disappeared)", "description": "The 480 line is the border of the US flag and the trans pride flag. However in order to cause conflict between the trans community and the US community, attackers from 4-chan always trying to extend the trans flag over the 480 line. When the US flag moved, the 480 line disappeared and trans pride flag take some place used to belong to the US flag.", "website": "", "subreddit": "/r/transplace", "center": [480.5, 463.5], "path": [[478.5, 449.5], [478.5, 476.5], [483.5, 476.5], [482.5, 450.5]]}, +{"id": "txr29j", "submitted_by": "GoldenDonut01", "name": "Dark Bramble", "description": "A large natural satellite that appears in the Outer Wilds solar system. It is home to a labyrinth of non-euclidean rooms with a maze-like formation, entered by passing through holes in seeds. It came to be when a dark seed crashed onto a previous, unknown planet, replacing it and growing into dark bramble.", "website": "", "subreddit": "/r/outerwilds", "center": [1697.5, 641.5], "path": [[1693.5, 637.5], [1701.5, 637.5], [1701.5, 645.5], [1693.5, 644.5]]}, +{"id": "txr0jk", "submitted_by": "ZeroT3K", "name": "The Great Serpent of Ronka", "description": "Hailing from FFXIV's Shadowbringer's expansion, this creature, Quinfort insists, is none other than the all-seeing, all-powerful Great Serpent of Ronka. Though its wobbly girth may deceive the eye, that is, presumably, a mere mark of the serpent's mercy, for its true form would be too terrible for mortal minds to comprehend.", "website": "https://ffxiv.consolegameswiki.com/wiki/The_Great_Serpent_of_Ronka", "subreddit": "/r/ffxiv", "center": [1265.5, 507.5], "path": [[1266.5, 505.5], [1266.5, 503.5], [1266.5, 500.5], [1270.5, 503.5], [1272.5, 512.5], [1261.5, 512.5], [1259.5, 508.5], [1262.5, 501.5], [1267.5, 500.5]]}, +{"id": "txqxx3", "submitted_by": "muhdickens", "name": "Turbofish", "description": "Turbofish is a piece of syntax in the Rust Programming Language.", "website": "https://turbo.fish", "subreddit": "/r/rust", "center": [735.5, 611.5], "path": [[725.5, 608.5], [744.5, 608.5], [745.5, 611.5], [743.5, 614.5], [725.5, 614.5], [725.5, 608.5]]}, +{"id": "txqxsw", "submitted_by": "Zupyta", "name": "Armenian flag #2", "description": "", "website": "", "subreddit": "/r/armenia", "center": [1425.5, 1648.5], "path": [[1422.5, 1650.5], [1422.5, 1645.5], [1422.5, 1644.5], [1435.5, 1644.5], [1435.5, 1644.5], [1435.5, 1652.5], [1413.5, 1651.5], [1414.5, 1644.5], [1421.5, 1644.5]]}, +{"id": "txqvl2", "submitted_by": "TheNe0nGuy", "name": "El\u00e9trico (Tram)", "description": "First introduced in Oporto in 1895, the Portuguese tram as a means of transportation for its people, these iconic vehicles still work to this day, although used mainly in the current era for tourism. ", "website": "https://en.wikipedia.org/wiki/Trams_in_Lisbon", "subreddit": "/r/Portugal", "center": [1050.5, 354.5], "path": [[1053.5, 351.5], [1053.5, 350.5], [1050.5, 350.5], [1046.5, 354.5], [1046.5, 357.5], [1050.5, 357.5], [1053.5, 354.5]]}, +{"id": "txqslg", "submitted_by": "XingLili", "name": "The intersex plant", "description": "The intersex plant on the trans flag represents the support of the intersex from trans community. Intersex people are individuals born with any of several sex characteristics including chromosome patterns, gonads, or genitals that, according to the Office of the United Nations High Commissioner for Human Rights, \"do not fit typical binary notions of male or female bodies\".", "website": "", "subreddit": "/r/transplace", "center": [632.5, 466.5], "path": [[634.5, 471.5], [639.5, 466.5], [630.5, 461.5], [625.5, 466.5]]}, +{"id": "txqpk1", "submitted_by": "MutantEpic", "name": "Yedek Velets II", "description": "A small non-public discord server that has the lenny face as their logo.\n", "website": "https://yedekvelets.flarum.cloud/", "subreddit": "", "center": [696.5, 304.5], "path": [[696.5, 306.5], [696.5, 306.5], [698.5, 307.5], [696.5, 306.5], [693.5, 308.5], [693.5, 300.5], [699.5, 300.5], [701.5, 302.5], [701.5, 306.5], [699.5, 308.5], [693.5, 308.5], [691.5, 306.5], [691.5, 302.5], [693.5, 300.5], [699.5, 300.5], [696.5, 304.5], [692.5, 301.5], [693.5, 301.5], [693.5, 301.5], [691.5, 302.5], [691.5, 303.5], [692.5, 305.5], [692.5, 302.5], [693.5, 301.5]]}, +{"id": "txqp78", "submitted_by": "XingLili", "name": "r/placepride word", "description": "r/placepride word shows the subreddit responsible for the only parts of the western rainbow remaining. However the world is always being attacking in the last day of the place. r/transplace and r/transplace cooperated to defensed the attack.", "website": "", "subreddit": "/r/placepride", "center": [524.5, 496.5], "path": [[496.5, 492.5], [553.5, 493.5], [553.5, 500.5], [496.5, 501.5], [497.5, 497.5], [497.5, 497.5]]}, +{"id": "txqoys", "submitted_by": "Dredd4DoM", "name": "MANIAKI Greek Revolution", "description": "This is the flag of Greek Revolution 1821 against Ottoman Empire, we also use it as a flag in our Holdfast regiment named MANIAKI Greek Revolution", "website": "https://discord.gg/GBHGsn8eM9", "subreddit": "", "center": [1744.5, 340.5], "path": [[1741.5, 337.5], [1741.5, 337.5], [1741.5, 337.5], [1746.5, 337.5], [1746.5, 342.5], [1741.5, 342.5]]}, +{"id": "txqoeo", "submitted_by": "Donutworryboutit", "name": "Rice University", "description": "The R from Rice University and a bowl of rice!", "website": "https://www.rice.edu/", "subreddit": "/r/riceuniversity", "center": [362.5, 1595.5], "path": [[371.5, 1599.5], [371.5, 1591.5], [353.5, 1591.5], [353.5, 1599.5]]}, +{"id": "txqme2", "submitted_by": "TheNe0nGuy", "name": "Portuguese Caravelas & Gold", "description": "The caravel (Portuguese: caravela, is a small highly-maneuverable sailing ship developed in the 15th century by the Portuguese to explore along the West African coast and into the Atlantic Ocean. The lateen sails gave it speed and the capacity for sailing windward (beating). Caravels were used by the Portuguese and Castilians for the oceanic exploration voyages during the 15th and the 16th centuries, during the Age of Discovery. The gold represents the riches discovered and taken from Brazil and other colonies, which were then sent back to the kingdom.\n", "website": "https://en.wikipedia.org/wiki/Caravel", "subreddit": "/r/portugal", "center": [1102.5, 340.5], "path": [[1089.5, 351.5], [1111.5, 351.5], [1119.5, 347.5], [1124.5, 344.5], [1117.5, 338.5], [1120.5, 337.5], [1120.5, 334.5], [1101.5, 324.5], [1079.5, 343.5], [1087.5, 350.5]]}, +{"id": "txqm4d", "submitted_by": "FacundoNoobAccount", "name": "Mate en bombilla", "description": "The legendary argentinian beverage", "website": "", "subreddit": "", "center": [1092.5, 657.5], "path": [[1083.5, 665.5], [1098.5, 665.5], [1099.5, 664.5], [1100.5, 663.5], [1100.5, 656.5], [1097.5, 651.5], [1102.5, 645.5], [1100.5, 644.5], [1098.5, 644.5], [1094.5, 649.5], [1088.5, 649.5], [1083.5, 654.5], [1083.5, 655.5], [1082.5, 656.5], [1082.5, 662.5], [1084.5, 665.5], [1083.5, 665.5], [1084.5, 665.5]]}, +{"id": "txql03", "submitted_by": "loucarinol5124", "name": "Hylian shield (perhaps?)", "description": "it looks like a hylian shield, from zelda", "website": "", "subreddit": "", "center": [985.5, 1902.5], "path": [[985.5, 1898.5], [985.5, 1899.5], [983.5, 1899.5], [983.5, 1900.5], [982.5, 1900.5], [982.5, 1902.5], [983.5, 1902.5], [983.5, 1904.5], [984.5, 1904.5], [984.5, 1905.5], [985.5, 1906.5], [987.5, 1904.5], [987.5, 1902.5], [988.5, 1902.5], [988.5, 1901.5], [987.5, 1899.5], [985.5, 1899.5]]}, +{"id": "txqkxf", "submitted_by": "loucarinol5124", "name": "pepe outside", "description": "sometimes, the memes needs a walking break", "website": "", "subreddit": "", "center": [1091.5, 1320.5], "path": [[1084.5, 1313.5], [1098.5, 1313.5], [1098.5, 1326.5], [1084.5, 1326.5]]}, +{"id": "txqkgf", "submitted_by": "XingLili", "name": "LGBTQ pride flag and trans pride flag crossed together.", "description": "The rainbow flag is a symbol of lesbian, gay, bisexual, transgender (LGBT) and queer pride and LGBT social movements. The transgender flag is a light blue, pink and white pentacolour pride flag representing the transgender community, organizations, and individuals. The cross flags represent LGBTQs and trans are helping each other. In fact that at the last 1.5 day of the place the /r/placepride and /r/transplace cooperate together to draw new image and defend the attack.", "website": "", "subreddit": "/t/transplace", "center": [524.5, 474.5], "path": [[513.5, 460.5], [499.5, 474.5], [508.5, 483.5], [520.5, 474.5], [508.5, 492.5], [524.5, 480.5], [533.5, 492.5], [537.5, 490.5], [526.5, 475.5], [529.5, 473.5], [538.5, 482.5], [549.5, 472.5], [535.5, 459.5], [525.5, 472.5], [525.5, 471.5]]}, +{"id": "txqi4m", "submitted_by": "greese1", "name": "Central Alliance Logo", "description": "the logo for the central alliance", "website": "", "subreddit": "/r/place_CentralAlliance", "center": [584.5, 1051.5], "path": [[579.5, 1046.5], [579.5, 1056.5], [589.5, 1056.5], [589.5, 1046.5], [579.5, 1046.5]]}, +{"id": "txqf0w", "submitted_by": "ALENT_212", "name": "Merluso ", "description": "former tarkov youtuber now video game opinion youtuber", "website": "http://linktr.ee/merluso", "subreddit": "/r/Merluso", "center": [1390.5, 1956.5], "path": [[1382.5, 1949.5], [1382.5, 1963.5], [1397.5, 1963.5], [1397.5, 1949.5]]}, +{"id": "txqexh", "submitted_by": "WonderWhyImOdd", "name": "N of NAO", "description": "NAO is a shortened version of Nesibe Ayd\u0131n Schools(Okullar\u0131) which first started as special classes alongside normal schools and turned into a college in 2014, the school is in Turkey", "website": "", "subreddit": "", "center": [858.5, 965.5], "path": [[855.5, 962.5], [861.5, 962.5], [861.5, 968.5], [855.5, 968.5]]}, +{"id": "txqemn", "submitted_by": "Yvant2000", "name": "Le Royaume des Past\u00e8ques", "description": "The Discord server logo of the Pastek Kingdom", "website": "https://www.discord.gg/F442veS", "subreddit": "", "center": [1243.5, 1892.5], "path": [[1240.5, 1887.5], [1247.5, 1887.5], [1250.5, 1890.5], [1249.5, 1897.5], [1236.5, 1896.5], [1237.5, 1888.5]]}, +{"id": "txqd98", "submitted_by": "Alathic", "name": "Original Kentaro Miura Memorial", "description": "Kentaro Miura was the mangaka (manga author) of Berserk and died less than a year before r/place happened. The \"RIP MIURA\" text and the famous greatsword were drawn on the lower part of the former Rainbow Dash mural which was given to the Berserk community. This original memorial would later be expanded by streamer Asmongold conquering Rainbow Dash's entire spot.", "website": "", "subreddit": "/r/Berserk", "center": [644.5, 269.5], "path": [[595.5, 276.5], [693.5, 276.5], [693.5, 262.5], [595.5, 262.5]]}, +{"id": "txqbww", "submitted_by": "PrincesStarfire1234", "name": "tiny Purple Guy", "description": "Tiny pixel art of Purple Guy (aka William Afton) who is the main villain and person responsible for several child murders in the popular indie horror series Five Nights at Freddy's. The iconic color and smile is there, although his security badge has been replaced with an Among Us crewmate.", "website": "", "subreddit": "/r/fivenightsatfreddys", "center": [132.5, 1011.5], "path": [[130.5, 1000.5], [134.5, 1000.5], [134.5, 1001.5], [135.5, 1001.5], [135.5, 1028.5], [135.5, 1024.5], [134.5, 1024.5], [134.5, 1024.5], [134.5, 1020.5], [133.5, 1020.5], [133.5, 1019.5], [129.5, 1019.5], [129.5, 1017.5], [127.5, 1017.5], [127.5, 1016.5], [127.5, 1016.5], [123.5, 1016.5], [123.5, 1015.5], [120.5, 1015.5], [121.5, 1015.5], [121.5, 1015.5], [121.5, 1014.5], [121.5, 1014.5], [123.5, 1014.5], [123.5, 1015.5], [125.5, 1015.5], [125.5, 1015.5], [125.5, 1016.5], [130.5, 1016.5], [130.5, 1016.5], [130.5, 1011.5], [129.5, 1011.5], [129.5, 1010.5], [127.5, 1010.5], [127.5, 1010.5], [127.5, 1008.5], [127.5, 1010.5], [131.5, 1010.5], [131.5, 1009.5], [132.5, 1009.5], [132.5, 1007.5], [130.5, 1007.5], [130.5, 1005.5], [129.5, 1006.5], [129.5, 1001.5], [130.5, 1001.5], [130.5, 1000.5]]}, +{"id": "txq9w0", "submitted_by": "dfdsgbfisdh", "name": "Avocado (Palta)", "description": "A humble avocado (palta in spanish) designed by 1\u00ba scientific bachiller from IES E.Merello (Juanma, Iago, Victor T, Victor L, Diego, Carlos, Pablo V, Pablo A, Alex, Jaume, Hector, Angel and Micky)", "website": "https://twitter.com/Juanma_M_05 in twitter and https://www.instagram.com/diegor0n/?utm_medium=copy_link in instagram", "subreddit": "", "center": [38.5, 1110.5], "path": [[35.5, 1108.5], [35.5, 1112.5], [40.5, 1112.5], [40.5, 1108.5]]}, +{"id": "txq9p4", "submitted_by": "Matt_hew_99", "name": "Among Us", "description": "In case you don't know Among Us (bruh) this is the small pixel art of the crewmate.", "website": "", "subreddit": "/r/amogus", "center": [1717.5, 289.5], "path": [[1717.5, 289.5], [1715.5, 289.5], [1715.5, 288.5], [1716.5, 287.5], [1718.5, 287.5], [1718.5, 292.5], [1717.5, 290.5], [1716.5, 292.5]]}, +{"id": "txq89f", "submitted_by": "Beatbattles", "name": "Ast\u00e9rix est l\u00e0!", "description": "Ast\u00e9rix est l\u00e0! is a popular song in the french world, the singer is Plastic Bertrand from the movie Ast\u00e9rix Et La Surprise De C\u00e9sar.", "website": "https://www.youtube.com/watch?v=YoU9FWpHlNA", "subreddit": "/r/franceplace", "center": [403.5, 823.5], "path": [[376.5, 819.5], [430.5, 819.5], [429.5, 828.5], [376.5, 828.5], [376.5, 828.5], [376.5, 828.5], [376.5, 828.5]]}, +{"id": "txq7ut", "submitted_by": "KeksToGo", "name": "the secret \"owo\"", "description": "this secret owo is made by Turkish furries in last secounds of r/place.", "website": "", "subreddit": "/r/FurryTurks", "center": [308.5, 137.5], "path": [[301.5, 136.5], [315.5, 136.5], [315.5, 138.5], [301.5, 138.5]]}, +{"id": "txq7na", "submitted_by": "maestrodidi", "name": "Percy the Rooster", "description": "Symbol of 'The Roost', a group of loyal friends and Eagle Scouts from Royersford Pennsylvania.", "website": "https://youtu.be/PdxDPvH7t3c", "subreddit": "", "center": [1132.5, 1889.5], "path": [[1128.5, 1884.5], [1136.5, 1884.5], [1136.5, 1893.5], [1128.5, 1893.5], [1128.5, 1884.5]]}, +{"id": "txq73b", "submitted_by": "AirSamuel314", "name": "Nelson Mandela", "description": "Morgan Freeman", "website": "", "subreddit": "/r/southafrica", "center": [751.5, 1036.5], "path": [[720.5, 1066.5], [773.5, 1066.5], [760.5, 1056.5], [772.5, 1044.5], [773.5, 1016.5], [756.5, 1003.5], [738.5, 1008.5], [730.5, 1026.5], [730.5, 1036.5], [733.5, 1046.5], [735.5, 1054.5], [733.5, 1057.5], [728.5, 1062.5]]}, +{"id": "txq6n9", "submitted_by": "Ailury", "name": "Community of Madrid", "description": "The Community of Madrid is in the center of the Iberian Peninsula. Its capital, Madrid, is also the capital of Spain.\n\nThe flag is red (in reference to Castile) with seven white stars that represent the constellation Ursa Minor (in reference to Madrid's coat of arms).", "website": "", "subreddit": "/r/esPlace", "center": [1045.5, 281.5], "path": [[1043.5, 278.5], [1041.5, 280.5], [1041.5, 282.5], [1045.5, 286.5], [1049.5, 282.5], [1049.5, 280.5], [1047.5, 278.5], [1045.5, 279.5]]}, +{"id": "txq636", "submitted_by": "loucarinol5124", "name": "Loving creepers (minecraft)", "description": "awww they are cute together :)\n\nthese are the iconic monsters from minecraft", "website": "", "subreddit": "/r/minecraft", "center": [787.5, 85.5], "path": [[774.5, 91.5], [774.5, 78.5], [785.5, 78.5], [785.5, 87.5], [788.5, 87.5], [788.5, 78.5], [799.5, 78.5], [799.5, 91.5]]}, +{"id": "txq5mr", "submitted_by": "stonkyagraha", "name": "Trees of nonaggression", "description": "These trees were the result of a treaty between r/PlaceTrees and r/Superstonk who were initially contending for the territory. The NFT aspect of the Superstonk section drew in a lot of outside antagonism and attacks due to several perceptions (one of which being the oversimplification that ALL NFTs, including those on blockchains transitioning to proof-of-stake consensus protocols, would be environmentally destructive). r/PlaceTrees initially took over the Ethereum layer 2 section but was fought off and both sides agreed to stop fighting and plant a few trees in the area. Planting those trees was a difficult task for Superstonk that took over 24 hours of repeated coordinated efforts to change the pixels in this section since. It was too well defended for its own good, but eventually the ones unaware of the new design gave way to make what you see here.", "website": "", "subreddit": "/r/PlaceTrees, /r/Superstonk", "center": [826.5, 890.5], "path": [[821.5, 879.5], [827.5, 879.5], [831.5, 885.5], [837.5, 893.5], [833.5, 898.5], [832.5, 900.5], [831.5, 901.5], [831.5, 905.5], [829.5, 904.5], [829.5, 897.5], [825.5, 895.5], [825.5, 898.5], [821.5, 900.5], [820.5, 892.5], [817.5, 889.5], [817.5, 882.5], [820.5, 880.5]]}, +{"id": "txq4ot", "submitted_by": "XingLili", "name": "Amogi with a pansexual symbol", "description": "Amogi with a pansexual symbol shows the support of pansexual individuals and the pansexual community from trans community.", "website": "", "subreddit": "/r/transplace", "center": [752.5, 444.5], "path": [[747.5, 447.5], [747.5, 440.5], [757.5, 441.5], [758.5, 447.5]]}, +{"id": "txq49k", "submitted_by": "janbrit", "name": "Prague castle and Charles bridge", "description": "Prague castle (the largest ancient castle in the world) connected to charles bridge (Charles Bridge was the most important connection between Prague Castle and the city's Old Town and adjacent areas. This land connection made Prague important as a trade route between Eastern and Western Europe.). Both located in Prague, capital city of Czechia", "website": "https://en.wikipedia.org/wiki/Prague_Castle", "subreddit": "[/r/czech](/r/czech)", "center": [1244.5, 203.5], "path": [[1198.5, 210.5], [1206.5, 210.5], [1207.5, 209.5], [1207.5, 206.5], [1208.5, 206.5], [1209.5, 205.5], [1210.5, 206.5], [1210.5, 209.5], [1211.5, 209.5], [1211.5, 210.5], [1220.5, 210.5], [1220.5, 209.5], [1221.5, 209.5], [1221.5, 205.5], [1223.5, 205.5], [1223.5, 206.5], [1224.5, 206.5], [1224.5, 209.5], [1225.5, 209.5], [1225.5, 210.5], [1226.5, 210.5], [1233.5, 210.5], [1233.5, 209.5], [1237.5, 209.5], [1237.5, 210.5], [1237.5, 204.5], [1236.5, 198.5], [1237.5, 198.5], [1238.5, 198.5], [1238.5, 199.5], [1238.5, 197.5], [1239.5, 197.5], [1239.5, 194.5], [1241.5, 194.5], [1241.5, 197.5], [1242.5, 197.5], [1242.5, 199.5], [1242.5, 198.5], [1243.5, 198.5], [1244.5, 198.5], [1244.5, 204.5], [1243.5, 204.5], [1243.5, 209.5], [1244.5, 209.5], [1244.5, 210.5], [1244.5, 209.5], [1245.5, 209.5], [1245.5, 208.5], [1247.5, 208.5], [1247.5, 207.5], [1248.5, 207.5], [1248.5, 206.5], [1249.5, 206.5], [1249.5, 205.5], [1250.5, 205.5], [1250.5, 201.5], [1251.5, 201.5], [1251.5, 199.5], [1252.5, 199.5], [1252.5, 198.5], [1253.5, 198.5], [1253.5, 194.5], [1254.5, 194.5], [1254.5, 190.5], [1255.5, 190.5], [1256.5, 190.5], [1256.5, 194.5], [1261.5, 194.5], [1261.5, 193.5], [1265.5, 193.5], [1265.5, 188.5], [1266.5, 188.5], [1266.5, 186.5], [1267.5, 186.5], [1267.5, 169.5], [1268.5, 169.5], [1269.5, 169.5], [1269.5, 181.5], [1270.5, 181.5], [1270.5, 187.5], [1271.5, 187.5], [1271.5, 189.5], [1271.5, 186.5], [1272.5, 186.5], [1272.5, 170.5], [1273.5, 170.5], [1274.5, 170.5], [1274.5, 186.5], [1275.5, 186.5], [1275.5, 188.5], [1276.5, 188.5], [1276.5, 195.5], [1276.5, 188.5], [1278.5, 188.5], [1278.5, 193.5], [1279.5, 193.5], [1279.5, 197.5], [1281.5, 197.5], [1281.5, 198.5], [1281.5, 204.5], [1262.5, 204.5], [1261.5, 204.5], [1261.5, 205.5], [1260.5, 205.5], [1260.5, 206.5], [1259.5, 206.5], [1258.5, 206.5], [1258.5, 207.5], [1257.5, 207.5], [1257.5, 208.5], [1256.5, 208.5], [1255.5, 208.5], [1255.5, 209.5], [1254.5, 209.5], [1254.5, 210.5], [1253.5, 210.5], [1252.5, 210.5], [1252.5, 209.5], [1253.5, 209.5], [1253.5, 208.5], [1254.5, 208.5], [1254.5, 207.5], [1254.5, 206.5], [1253.5, 206.5], [1252.5, 206.5], [1251.5, 206.5], [1250.5, 206.5], [1250.5, 207.5], [1250.5, 208.5], [1249.5, 208.5], [1248.5, 208.5], [1248.5, 209.5], [1247.5, 209.5], [1247.5, 210.5], [1247.5, 211.5], [1246.5, 211.5], [1246.5, 212.5], [1245.5, 212.5], [1244.5, 212.5], [1244.5, 213.5], [1242.5, 213.5], [1242.5, 214.5], [1240.5, 214.5], [1240.5, 215.5], [1239.5, 215.5], [1239.5, 216.5], [1238.5, 216.5], [1238.5, 217.5], [1238.5, 216.5], [1236.5, 216.5], [1236.5, 212.5], [1235.5, 212.5], [1235.5, 211.5], [1233.5, 211.5], [1233.5, 210.5], [1226.5, 210.5], [1226.5, 211.5], [1226.5, 214.5], [1227.5, 214.5], [1227.5, 217.5], [1226.5, 217.5], [1226.5, 220.5], [1224.5, 220.5], [1224.5, 219.5], [1220.5, 219.5], [1220.5, 220.5], [1217.5, 220.5], [1217.5, 221.5], [1198.5, 221.5], [1198.5, 210.5]]}, +{"id": "txq2sy", "submitted_by": "XingLili", "name": "A turtle holding bisexual flag", "description": "The bisexual flag is a pride flag representing bisexual individuals and the bisexual community. The image shows the support of bisexual individuals and the bisexual community from trans community.", "website": "", "subreddit": "/r/transplace", "center": [671.5, 471.5], "path": [[666.5, 475.5], [663.5, 472.5], [667.5, 466.5], [679.5, 468.5], [679.5, 472.5], [674.5, 473.5], [674.5, 475.5]]}, +{"id": "txq2l1", "submitted_by": "gothic_rage", "name": "Lucky Purple Shorts", "description": "An image of one of the most famous items in the game Stardew Valley - Mayor Lewis' underwear. There are many fun things in the game you can do with these shorts to tease out a reaction from the corrupt mayor.", "website": "https://www.stardewvalley.net/", "subreddit": "/r/StardewValley", "center": [1759.5, 1054.5], "path": [[1749.5, 1044.5], [1749.5, 1063.5], [1768.5, 1063.5], [1768.5, 1044.5]]}, +{"id": "txq1uz", "submitted_by": "Friendly-Dark5180", "name": "KJ TIME!", "description": "\"KJ time!\" is a phrase frequently used by the character KJ (NoPixel - GTA5) who is played by streamer Kongfue.\n\nColors - The spot was previously occupied by NASCAR, in an agreement between the communities, they have both agreed to have the phrase written in NASCAR colors instead of having it exclusively in black and/or yellow. Fd.", "website": "https://twitch.tv/kongfue", "subreddit": "/r/nascar", "center": [1432.5, 749.5], "path": [[1418.5, 746.5], [1445.5, 746.5], [1445.5, 752.5], [1418.5, 752.5]]}, +{"id": "txq0kg", "submitted_by": "xRGTMX", "name": "Little My", "description": "A character from the Moomin series by Finnish illustrator Tove Jansson.", "website": "https://www.moomin.com/", "subreddit": "/r/Moomins", "center": [609.5, 197.5], "path": [[609.5, 191.5], [608.5, 191.5], [608.5, 192.5], [606.5, 192.5], [606.5, 197.5], [607.5, 197.5], [606.5, 197.5], [606.5, 199.5], [605.5, 199.5], [605.5, 201.5], [607.5, 201.5], [607.5, 202.5], [608.5, 202.5], [609.5, 202.5], [609.5, 201.5], [609.5, 202.5], [610.5, 202.5], [611.5, 202.5], [611.5, 201.5], [612.5, 201.5], [613.5, 201.5], [613.5, 199.5], [612.5, 199.5], [612.5, 197.5], [611.5, 197.5], [612.5, 197.5], [612.5, 192.5], [610.5, 192.5], [610.5, 191.5]]}, +{"id": "txq0h7", "submitted_by": "cappiepony", "name": "Oumae Kumiko", "description": "Oumae Kumiko, the main character in the anime Hibike! Euphonium.", "website": "", "subreddit": "/r/HibikeEuphonium", "center": [1908.5, 685.5], "path": [[1894.5, 681.5], [1894.5, 689.5], [1923.5, 688.5], [1922.5, 681.5]]}, +{"id": "txq0ex", "submitted_by": "Beanzoboy", "name": "Lovestruck", "description": "Lovestruck was a romance Visual Novel app by Voltage Entertainment, with dozens of stories containing over one hundred love interests that ranged from straight, to lesbian, to gay, and even contained non-binary love interests. Lovestruck shut down March 31st 2022, after four years.", "website": "", "subreddit": "/r/Lovestruck", "center": [1032.5, 1838.5], "path": [[1030.5, 1843.5], [1027.5, 1838.5], [1030.5, 1835.5], [1037.5, 1835.5], [1035.5, 1839.5], [1030.5, 1843.5]]}, +{"id": "txpzf0", "submitted_by": "KingDominoIII", "name": "Spear of Cassius", "description": "The Spear of Cassius, a superweapon from the Rebuild of Evangelion films.", "website": "https://evangelion.fandom.com/wiki/Spear_of_Cassius", "subreddit": "/r/evangelion", "center": [674.5, 1391.5], "path": [[673.5, 1399.5], [671.5, 1391.5], [671.5, 1388.5], [674.5, 1383.5], [677.5, 1388.5], [677.5, 1392.5], [675.5, 1400.5]]}, +{"id": "txpylf", "submitted_by": "XingLili", "name": "Lesbian heart ", "description": "A heart image representing the support for lesbian from trans community.", "website": "", "subreddit": "/r/transplace", "center": [608.5, 443.5], "path": [[603.5, 437.5], [599.5, 444.5], [609.5, 451.5], [615.5, 444.5], [613.5, 436.5], [611.5, 436.5]]}, +{"id": "txpych", "submitted_by": "gothic_rage", "name": "Ancient Fruit", "description": "One of the many crops you can plant in the game farming game Stardew Valley. Many in the community believe this is the best crop in the game.", "website": "https://www.stardewvalley.net/", "subreddit": "/r/StardewValley", "center": [1739.5, 1054.5], "path": [[1729.5, 1044.5], [1729.5, 1063.5], [1748.5, 1063.5], [1748.5, 1044.5]]}, +{"id": "txpwsb", "submitted_by": "Turil", "name": "Tiny Sideways Red Square", "description": "Tribute to 2017's Sideways Red Square, which was a tribute to Peter Draws' Sideways Red Square, which was a tribute to the artist Kazmir Malevich's Suprematism square paintings", "website": "https://www.peterdraws.com/sold/sideways-red-square", "subreddit": "/r/peterdraws", "center": [1715.5, 310.5], "path": [[1716.5, 310.5], [1716.5, 311.5], [1714.5, 311.5], [1714.5, 309.5], [1716.5, 309.5], [1716.5, 311.5], [1716.5, 311.5]]}, +{"id": "txpw7v", "submitted_by": "Unknown0ne7", "name": "Web Serial Alliance", "description": "An Alliance of several Web Serials (web novels or web comics)", "website": "", "subreddit": "/r/readwebserials", "center": [1761.5, 1290.5], "path": [[1724.5, 1255.5], [1811.5, 1255.5], [1812.5, 1255.5], [1812.5, 1272.5], [1812.5, 1273.5], [1810.5, 1273.5], [1809.5, 1274.5], [1808.5, 1274.5], [1807.5, 1275.5], [1801.5, 1275.5], [1789.5, 1282.5], [1790.5, 1289.5], [1790.5, 1290.5], [1790.5, 1307.5], [1794.5, 1313.5], [1792.5, 1319.5], [1792.5, 1329.5], [1785.5, 1329.5], [1781.5, 1333.5], [1777.5, 1329.5], [1724.5, 1329.5], [1724.5, 1255.5]]}, +{"id": "txpv33", "submitted_by": "gothic_rage", "name": "ConcernedApe", "description": "The icon of ConcernedApe (real name Eric Barone) the creator of Stardew Valley who is working on a new game called Haunted Chocolatier", "website": "https://twitter.com/ConcernedApe?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor", "subreddit": "/r/StardewValley", "center": [1719.5, 1054.5], "path": [[1709.5, 1043.5], [1709.5, 1064.5], [1729.5, 1064.5], [1729.5, 1044.5]]}, +{"id": "txpuzh", "submitted_by": "CrazyPenks", "name": "Titanfolk", "description": "\"Attack on titan\" Manga fans subreddit", "website": "", "subreddit": "/r/titanfolk", "center": [193.5, 123.5], "path": [[173.5, 120.5], [212.5, 119.5], [213.5, 126.5], [173.5, 127.5]]}, +{"id": "txpuur", "submitted_by": "Rubi-neverstops", "name": "Spanish Flag ", "description": "One of the many spanish flag made by the patriots from r/esplace. Spain fought against France ", "website": "", "subreddit": "/r/esplace", "center": [1943.5, 1370.5], "path": [[1937.5, 1369.5], [1937.5, 1371.5], [1949.5, 1371.5], [1949.5, 1369.5], [1949.5, 1369.5]]}, +{"id": "txpupl", "submitted_by": "cowdill", "name": "Dostot / Arose", "description": "A Discord Server who made a Gaming org as a joke and then people joined it unironically.", "website": "https://www.youtube.com/channel/UCXmCW6QkLM9HgvX4RirJQtQ", "subreddit": "", "center": [763.5, 1126.5], "path": [[761.5, 1123.5], [765.5, 1123.5], [765.5, 1129.5], [761.5, 1129.5]]}, +{"id": "txpttj", "submitted_by": "mimitchifan", "name": "Squishmallows", "description": "The battle to keep these Squishmallow cows on r/place was well-fought and long. At first, their neighbor was Big Chungus.\n Then Chrono Trigger quickly overtook him and started invading the Squishmallows' space. Luckily a diplomat from r/squishmallow got in contact with Chrono Trigger, and we came to a peace agreement where they allowed the Squishmallows to overlap their border.\nAfter that battle, an alliance formed in the entire area and we all helped defend each other from future raids. ", "website": "https://squishmallows.com/", "subreddit": "/r/squishmallow", "center": [425.5, 1957.5], "path": [[418.5, 1944.5], [419.5, 1969.5], [431.5, 1970.5], [431.5, 1945.5]]}, +{"id": "txpsyk", "submitted_by": "489518", "name": "Nightblood", "description": "The legendary sentient sword Nightblood. It consumes the souls of it's victims and gradually also consumes the soul of it's wielder when it is drawn. It is able to harm gods.", "website": "https://coppermind.net/wiki/Nightblood?&oldid=161606", "subreddit": "/r/Cosmere", "center": [1850.5, 875.5], "path": [[1830.5, 869.5], [1869.5, 869.5], [1869.5, 880.5], [1830.5, 880.5]]}, +{"id": "txpsb9", "submitted_by": "HonestPollution623", "name": "Joeseppi", "description": "Joessepi is a Streamer and Youtuber. \nBest known for alliance with CUL, \nAlso for saying CUL IS GETTING FUK.", "website": "https://www.twitch.tv/joeseppi_", "subreddit": "", "center": [1312.5, 669.5], "path": [[1290.5, 664.5], [1333.5, 664.5], [1333.5, 673.5], [1290.5, 673.5]]}, +{"id": "txps8h", "submitted_by": "LilGregou", "name": "Mini Gojo", "description": "Made by french streamers: ShyroBoy, MinoStreaming, Koumo, Takiro", "website": "", "subreddit": "", "center": [880.5, 1188.5], "path": [[855.5, 1173.5], [855.5, 1203.5], [905.5, 1203.5], [904.5, 1174.5], [904.5, 1174.5]]}, +{"id": "txpr8y", "submitted_by": "CH3CKM4TED", "name": "Glasses of the Ukrainian president ", "description": "The glasses of the current Ukrainian president had been griefed just before the event ended but quickly reformed from two red dots for eyes back to the actual intended look", "website": "", "subreddit": "/r/Ukraine", "center": [176.5, 217.5], "path": [[162.5, 210.5], [160.5, 211.5], [190.5, 210.5], [191.5, 222.5], [162.5, 224.5]]}, +{"id": "txpr67", "submitted_by": "Mazetron", "name": "Lenna", "description": "The protagonist, Lenna, from the indie game Lenna's Inception. The game is a procedurally generated Zelda-like.", "website": "", "subreddit": "/r/lennasinception", "center": [960.5, 1530.5], "path": [[953.5, 1534.5], [958.5, 1537.5], [965.5, 1534.5], [968.5, 1527.5], [962.5, 1523.5], [954.5, 1525.5]]}, +{"id": "txpqgc", "submitted_by": "Floofythecat", "name": "Bermuda", "description": "A small island in the middle of the Atlantic Ocean populated by about 60,000 people. The image represents the shape of the island, that being a fish hook.", "website": "", "subreddit": "/r/bermuda", "center": [1833.5, 145.5], "path": [[1830.5, 143.5], [1836.5, 143.5], [1836.5, 146.5], [1830.5, 147.5]]}, +{"id": "txpq43", "submitted_by": "Darekfiction", "name": "Pipo", "description": "Pipo is one of the most known and loved and hated meme from Alexelcapo, a Spanish youtuber/streamer. It was made after a joke he said in a Gameplay from the game Firewatch, in which he adopted a dog called Pipo, this one died and, after he found a bottle of bleach he said: bleach? oh great! you drink this and the game ends, and then you say: i'm going with you, Pipo! (this is the most common phrase used when we are referring to this meme, Voy contigo pipo in spanish). A youtuber called Maskter made a song with this joke, immortalizing Pipo even up to this day, being one of the most overused memes from his community and, by that reason, being hated even by Alexelcapo, but after all the years with it, we learned to appreciate it.", "website": "https://www.youtube.com/watch?v=huie2_3Pekg", "subreddit": "", "center": [1500.5, 1019.5], "path": [[1477.5, 1014.5], [1477.5, 1023.5], [1522.5, 1023.5], [1522.5, 1014.5]]}, +{"id": "txppti", "submitted_by": "putzer_thomas", "name": "TFO Bruneck Logo", "description": "The -Technologische Fachoberschule Bruneck- is a technological high school in Bruneck in northern Italy.", "website": "https://www.tfo-bruneck.it/", "subreddit": "", "center": [1526.5, 1673.5], "path": [[1520.5, 1669.5], [1532.5, 1669.5], [1532.5, 1676.5], [1520.5, 1676.5]]}, +{"id": "txpoeb", "submitted_by": "GTAnonymous", "name": "Sertle", "description": "Pixel art of chicken-themed VTuber streamer Sertle.", "website": "https://twitch.tv/sertle", "subreddit": "", "center": [898.5, 1380.5], "path": [[891.5, 1376.5], [891.5, 1383.5], [905.5, 1383.5], [905.5, 1376.5], [891.5, 1376.5]]}, +{"id": "txpngt", "submitted_by": "CKlinck", "name": "Klinck!", "description": "Pixel art of Klinck, a VRChat world creator and overall crazy red panda.\n\nMade by friends, members from the Nan Chi community, and with help from furry_irl", "website": "https://twitter.com/kayklinck", "subreddit": "", "center": [1037.5, 1823.5], "path": [[1030.5, 1827.5], [1030.5, 1813.5], [1033.5, 1812.5], [1039.5, 1812.5], [1042.5, 1816.5], [1044.5, 1819.5], [1047.5, 1824.5], [1049.5, 1824.5], [1046.5, 1826.5], [1038.5, 1834.5], [1032.5, 1834.5], [1031.5, 1829.5], [1030.5, 1827.5]]}, +{"id": "txpnba", "submitted_by": "_Falcon-_", "name": "Callahan", "description": "The most epic coder, developer and Dream SMP moderator. Member of the Dream SMP.\n", "website": "", "subreddit": "/r/Callahan", "center": [160.5, 940.5], "path": [[156.5, 936.5], [163.5, 936.5], [163.5, 943.5], [156.5, 943.5], [156.5, 936.5]]}, +{"id": "txpmmz", "submitted_by": "Jopiter31", "name": "YOMU", "description": "Yomu is a reference to one of the best manga.\nThose pixels has been attacked many times, and with Zecroum Disgression, Solshy and Jopiter, we had to defend our pixels.", "website": "", "subreddit": "", "center": [1955.5, 1645.5], "path": [[1947.5, 1643.5], [1963.5, 1643.5], [1963.5, 1646.5], [1947.5, 1646.5], [1947.5, 1643.5]]}, +{"id": "txpkqw", "submitted_by": "CrazyPenks", "name": "Steve", "description": "one of the main protagonists and default player characters in the game Minecraft", "website": "", "subreddit": "/r/Minecraft", "center": [870.5, 1823.5], "path": [[872.5, 1817.5], [867.5, 1817.5], [867.5, 1828.5], [872.5, 1828.5]]}, +{"id": "txpjmh", "submitted_by": "GiAnMMV", "name": "KEL", "description": "A small version of KEL, one of the deuteragonists of the video game OMORI.", "website": "https://omori.fandom.com/wiki/KEL", "subreddit": "/r/OMORI", "center": [1052.5, 833.5], "path": [[1050.5, 827.5], [1054.5, 827.5], [1054.5, 828.5], [1055.5, 828.5], [1055.5, 829.5], [1056.5, 829.5], [1056.5, 830.5], [1057.5, 830.5], [1057.5, 831.5], [1056.5, 831.5], [1056.5, 836.5], [1054.5, 836.5], [1054.5, 838.5], [1049.5, 838.5], [1049.5, 836.5], [1048.5, 836.5], [1048.5, 835.5], [1047.5, 835.5], [1047.5, 834.5], [1048.5, 834.5], [1048.5, 829.5], [1049.5, 829.5], [1049.5, 828.5], [1050.5, 828.5], [1050.5, 827.5]]}, +{"id": "txpjiz", "submitted_by": "xRGTMX", "name": "Rhythm Gaming Alliance mural", "description": "Former and attempted location of a mural by the Rhythm Gaming Alliance. The mural consisted of Don-chan from Taiko no Tatsujin, an arrow from Dance Dance Revolution, a blue note block from Beat Saber, and another Don-chan, but with the osu! logo on its face. The background contained notes/columns from beatmania IIDX and blue/pink FX trails from SOUND VOLTEX. Unfortunately, due to the small number of participants, the mural wasn't finished in time. It was slowly overtaken by other factions and artworks before being fully consumed by Freak Squad's poster. Click on the website link to view the full proposed layout.", "website": "https://imgur.com/a/ECcydyI", "subreddit": "", "center": [1255.5, 1674.5], "path": [[1232.5, 1657.5], [1277.5, 1657.5], [1277.5, 1691.5], [1232.5, 1691.5]]}, +{"id": "txpi8w", "submitted_by": "CrazyPenks", "name": "Small Russian Flag", "description": "Small russian flag that was created by russian contributors", "website": "", "subreddit": "", "center": [877.5, 1624.5], "path": [[875.5, 1625.5], [879.5, 1625.5], [879.5, 1623.5], [875.5, 1623.5]]}, +{"id": "txphxw", "submitted_by": "GiAnMMV", "name": "AUBREY", "description": "A small version of AUBREY, on of the deuteragonists of the video game OMORI.", "website": "https://omori.fandom.com/wiki/AUBREY", "subreddit": "/r/OMORI", "center": [1051.5, 844.5], "path": [[1049.5, 838.5], [1056.5, 838.5], [1056.5, 839.5], [1055.5, 839.5], [1055.5, 845.5], [1054.5, 845.5], [1054.5, 848.5], [1053.5, 848.5], [1053.5, 850.5], [1052.5, 850.5], [1052.5, 851.5], [1051.5, 851.5], [1051.5, 852.5], [1050.5, 852.5], [1050.5, 850.5], [1048.5, 850.5], [1048.5, 851.5], [1047.5, 851.5], [1047.5, 850.5], [1048.5, 850.5], [1048.5, 847.5], [1047.5, 847.5], [1047.5, 846.5], [1046.5, 846.5], [1046.5, 845.5], [1047.5, 845.5], [1047.5, 840.5], [1048.5, 840.5], [1048.5, 839.5]]}, +{"id": "txphfg", "submitted_by": "zlovantuzu", "name": "RISE", "description": "In-development russian-languaged GTA RP server on alt:V Multiplayer platform", "website": "https://riserp.net/", "subreddit": "", "center": [1055.5, 1747.5], "path": [[1040.5, 1742.5], [1068.5, 1742.5], [1068.5, 1756.5], [1064.5, 1756.5], [1063.5, 1753.5], [1063.5, 1750.5], [1040.5, 1750.5]]}, +{"id": "txphe2", "submitted_by": "koryNomaly", "name": "Half-life 2 21Century Edition", "description": "A Half-Life 2 mod Created by NvC_DmN_CH And the Community focusing on memes and iconic references from the internet and games.", "website": "https://www.youtube.com/channel/UCvyVX9_sfi8vuFZFqAON2gA/videos", "subreddit": "", "center": [664.5, 1573.5], "path": [[674.5, 1564.5], [660.5, 1564.5], [654.5, 1570.5], [654.5, 1577.5], [658.5, 1582.5], [660.5, 1583.5], [667.5, 1583.5], [670.5, 1581.5], [672.5, 1579.5], [672.5, 1578.5], [673.5, 1577.5], [673.5, 1574.5], [674.5, 1573.5], [674.5, 1564.5]]}, +{"id": "txpgdz", "submitted_by": "rezidentvx", "name": "Order 332", "description": "The main hub of The Order, a private collective of groups dedicated to computer science and related studies", "website": "https://www.order332.com", "subreddit": "", "center": [1504.5, 1432.5], "path": [[1499.5, 1429.5], [1499.5, 1435.5], [1508.5, 1435.5], [1508.5, 1429.5]]}, +{"id": "txpg7v", "submitted_by": "Spirited-Breath-5010", "name": "Kris", "description": "One of the main characters in Deltarune, a game created by Toby Fox. They are always hungry", "website": "", "subreddit": "/r/Deltarune", "center": [1793.5, 195.5], "path": [[1790.5, 185.5], [1790.5, 186.5], [1788.5, 186.5], [1788.5, 187.5], [1787.5, 187.5], [1787.5, 188.5], [1787.5, 188.5], [1787.5, 189.5], [1786.5, 189.5], [1786.5, 196.5], [1787.5, 196.5], [1787.5, 197.5], [1788.5, 197.5], [1788.5, 198.5], [1788.5, 199.5], [1785.5, 199.5], [1785.5, 200.5], [1786.5, 200.5], [1786.5, 205.5], [1795.5, 205.5], [1795.5, 204.5], [1798.5, 204.5], [1798.5, 201.5], [1798.5, 201.5], [1799.5, 201.5], [1799.5, 200.5], [1800.5, 200.5], [1800.5, 198.5], [1799.5, 197.5], [1800.5, 196.5], [1800.5, 188.5], [1799.5, 188.5], [1799.5, 187.5], [1798.5, 186.5], [1797.5, 186.5], [1796.5, 186.5], [1796.5, 185.5]]}, +{"id": "txpg68", "submitted_by": "CrazyPenks", "name": "Tubbo", "description": "Tubbo is an English gaming YouTuber, avid musician, and Twitch streamer known for his Minecraft collaborations.", "website": "", "subreddit": "/r/Tubbo_", "center": [862.5, 1443.5], "path": [[888.5, 1440.5], [888.5, 1447.5], [835.5, 1446.5], [836.5, 1440.5]]}, +{"id": "txpfk5", "submitted_by": "noway1234567891010", "name": "keep fighting Michael", "description": "dedicated to the German motorsport legend Michael Schumacher", "website": "", "subreddit": "/r/formula1", "center": [499.5, 766.5], "path": [[461.5, 762.5], [461.5, 770.5], [538.5, 769.5], [538.5, 762.5], [531.5, 762.5]]}, +{"id": "txpem6", "submitted_by": "agathoorr", "name": "U", "description": "A reference to Onesimee a french albion online streamer who said :\n\nf*ck i ruined my yeslife\nI woke up like 5 times last night suddenly at 10 a.m. I woke up, I wanted to type hi yeslife on discord, I typed \"U\" and I went back to sleep instantly lmao", "website": "", "subreddit": "", "center": [656.5, 1514.5], "path": [[653.5, 1511.5], [653.5, 1517.5], [659.5, 1517.5], [659.5, 1511.5], [653.5, 1511.5]]}, +{"id": "txpef6", "submitted_by": "chfsac", "name": "Proller's little dude", "description": "A leshen VTuber learning how to be human. The brown paper bag with a face is his human disguise. Allied with France and Inscryption to have him riding bread cat with Goobert.", "website": "https://www.twitch.tv/proller/about", "subreddit": "", "center": [169.5, 301.5], "path": [[166.5, 297.5], [166.5, 303.5], [167.5, 304.5], [168.5, 305.5], [169.5, 306.5], [171.5, 306.5], [171.5, 297.5]]}, +{"id": "txpdg3", "submitted_by": "PrettyLost", "name": "Friendly Hidden Turtle", "description": "", "website": "", "subreddit": "", "center": [927.5, 680.5], "path": [[930.5, 678.5], [931.5, 678.5], [931.5, 679.5], [932.5, 679.5], [932.5, 680.5], [931.5, 680.5], [931.5, 681.5], [930.5, 681.5], [929.5, 681.5], [929.5, 683.5], [928.5, 683.5], [928.5, 682.5], [925.5, 682.5], [925.5, 683.5], [924.5, 683.5], [924.5, 682.5], [924.5, 681.5], [923.5, 681.5], [923.5, 679.5], [925.5, 679.5], [925.5, 678.5], [928.5, 678.5], [928.5, 679.5], [929.5, 679.5]]}, +{"id": "txpbzt", "submitted_by": "gothic_rage", "name": "Mermaid's Pendant", "description": "A representation of a mermaids pendant which is used to propose marriage in the game Stardew Valley", "website": "https://www.stardewvalley.net/", "subreddit": "/r/StardewValley", "center": [1718.5, 1073.5], "path": [[1708.5, 1064.5], [1708.5, 1081.5], [1728.5, 1081.5], [1728.5, 1064.5]]}, +{"id": "txpbxx", "submitted_by": "GiAnMMV", "name": "HUMPHREY", "description": "Character of the video game OMORI", "website": "https://omori.fandom.com/wiki/HUMPHREY", "subreddit": "/r/OMORI", "center": [974.5, 811.5], "path": [[965.5, 803.5], [982.5, 803.5], [982.5, 813.5], [981.5, 813.5], [981.5, 816.5], [980.5, 816.5], [980.5, 817.5], [979.5, 817.5], [979.5, 818.5], [978.5, 818.5], [978.5, 819.5], [977.5, 819.5], [977.5, 820.5], [970.5, 820.5], [970.5, 819.5], [969.5, 819.5], [969.5, 818.5], [968.5, 818.5], [968.5, 817.5], [967.5, 817.5], [967.5, 816.5], [966.5, 816.5], [966.5, 813.5], [965.5, 813.5], [965.5, 804.5], [966.5, 804.5], [966.5, 803.5]]}, +{"id": "txpbm6", "submitted_by": "lgmlrtm", "name": "Inform", "description": "Famous Collective of Elite Osnabrooklyn based CS Students", "website": "", "subreddit": "", "center": [98.5, 91.5], "path": [[87.5, 88.5], [87.5, 94.5], [108.5, 94.5], [108.5, 88.5], [87.5, 88.5], [87.5, 88.5]]}, +{"id": "txpaff", "submitted_by": "CrazyPenks", "name": "Vysena", "description": "Vysena Studios is a group of creators experts in developing unique experiences in Fortnite Creative.", "website": "", "subreddit": "/r/FortniteCreative", "center": [1590.5, 810.5], "path": [[1600.5, 799.5], [1599.5, 818.5], [1579.5, 818.5], [1579.5, 805.5], [1590.5, 805.5], [1592.5, 799.5]]}, +{"id": "txpa9l", "submitted_by": "GiAnMMV", "name": "OMOLI", "description": "Character of the video game OMORI", "website": "https://omori.fandom.com/wiki/OMOLI", "subreddit": "/r/OMORI", "center": [1109.5, 820.5], "path": [[1108.5, 804.5], [1110.5, 804.5], [1110.5, 805.5], [1115.5, 805.5], [1115.5, 806.5], [1114.5, 806.5], [1114.5, 807.5], [1109.5, 807.5], [1109.5, 808.5], [1108.5, 808.5], [1108.5, 809.5], [1107.5, 809.5], [1107.5, 813.5], [1110.5, 813.5], [1110.5, 814.5], [1112.5, 814.5], [1112.5, 812.5], [1112.5, 813.5], [1113.5, 813.5], [1113.5, 814.5], [1114.5, 814.5], [1113.5, 814.5], [1113.5, 816.5], [1114.5, 816.5], [1114.5, 817.5], [1115.5, 817.5], [1115.5, 824.5], [1119.5, 824.5], [1119.5, 827.5], [1113.5, 827.5], [1113.5, 826.5], [1105.5, 826.5], [1105.5, 827.5], [1100.5, 827.5], [1100.5, 824.5], [1103.5, 824.5], [1103.5, 822.5], [1102.5, 822.5], [1102.5, 818.5], [1103.5, 818.5], [1103.5, 816.5], [1104.5, 816.5], [1104.5, 815.5], [1105.5, 815.5], [1105.5, 814.5], [1106.5, 814.5], [1106.5, 813.5], [1107.5, 813.5], [1107.5, 809.5], [1108.5, 809.5], [1108.5, 808.5], [1109.5, 808.5], [1109.5, 806.5], [1108.5, 806.5], [1108.5, 804.5]]}, +{"id": "txp8u0", "submitted_by": "gothic_rage", "name": "Stardew Pufferfish", "description": "A small image of one of the many possible fish that can be caught in the game Stardew Valley", "website": "https://www.stardewvalley.net/", "subreddit": "/r/StardewValley", "center": [1739.5, 1073.5], "path": [[1729.5, 1064.5], [1729.5, 1081.5], [1749.5, 1082.5], [1749.5, 1064.5]]}, +{"id": "txp8q7", "submitted_by": "TheKingOfKings75", "name": "whipCozy", "description": "An emote of streamer Whippy, destroyed in the final hours.", "website": "https://twitch.tv/whippy", "subreddit": "", "center": [1926.5, 1715.5], "path": [[1911.5, 1703.5], [1911.5, 1727.5], [1942.5, 1727.5], [1941.5, 1704.5], [1940.5, 1703.5]]}, +{"id": "txp76h", "submitted_by": "suckayna", "name": "1337 coding school", "description": "1337 is the first to provide IT training in Morocco, completely free of charge, open and accessible to anyone between the ages of 18 and 30. No need for an IT degree, or of having undergone extensive IT training.", "website": "https://1337.ma/en/", "subreddit": "we, dont, have, an, official, subreddit", "center": [1641.5, 774.5], "path": [[1645.5, 767.5], [1645.5, 767.5], [1625.5, 767.5], [1626.5, 781.5], [1656.5, 781.5], [1656.5, 767.5], [1655.5, 767.5], [1655.5, 767.5]]}, +{"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\u2019s 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": "Earth", "description": "A small drawing of planet earth.", "website": "", "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]]}, +{"id": "txp4h4", "submitted_by": "NaelleIllyana", "name": "Utophia", "description": "Utophia is a French story shared on the Internet since 2018, told by a few novels and many drawings, which are freely available online\nThose chibi girls are Io, M\u00e9lissandre, Louwie and Wonn-Sha, some of the main characters!", "website": "https://utophia.fr/", "subreddit": "/r/Utophia", "center": [1111.5, 403.5], "path": [[1100.5, 393.5], [1122.5, 393.5], [1122.5, 412.5], [1100.5, 412.5]]}, +{"id": "txp46a", "submitted_by": "God_Of_Pretzels", "name": "God King Tim", "description": "Tim is a Bullywug cleric and spiritual leader of the Followers of Tim. Inspired by the Knights of Anura D&D party.", "website": "", "subreddit": "/r/KingTim", "center": [694.5, 1533.5], "path": [[688.5, 1542.5], [688.5, 1535.5], [687.5, 1535.5], [687.5, 1534.5], [687.5, 1532.5], [688.5, 1532.5], [688.5, 1531.5], [689.5, 1531.5], [689.5, 1530.5], [690.5, 1530.5], [690.5, 1524.5], [689.5, 1524.5], [689.5, 1523.5], [689.5, 1522.5], [689.5, 1521.5], [693.5, 1521.5], [693.5, 1522.5], [694.5, 1522.5], [694.5, 1524.5], [695.5, 1524.5], [695.5, 1525.5], [696.5, 1525.5], [696.5, 1527.5], [697.5, 1527.5], [697.5, 1528.5], [698.5, 1528.5], [698.5, 1529.5], [699.5, 1529.5], [699.5, 1530.5], [700.5, 1530.5], [700.5, 1532.5], [701.5, 1532.5], [701.5, 1535.5], [700.5, 1535.5], [700.5, 1538.5], [701.5, 1538.5], [701.5, 1542.5]]}, +{"id": "txp35h", "submitted_by": "domo-drama", "name": "FRANK", "description": "The teddy bear Domo gave as a present to his girlfriend Alizka", "website": "", "subreddit": "", "center": [1807.5, 785.5], "path": [[1811.5, 788.5], [1810.5, 788.5], [1810.5, 789.5], [1806.5, 789.5], [1806.5, 785.5], [1803.5, 785.5], [1803.5, 782.5], [1802.5, 782.5], [1802.5, 780.5], [1804.5, 780.5], [1804.5, 782.5], [1810.5, 782.5], [1810.5, 780.5], [1811.5, 780.5], [1811.5, 788.5]]}, +{"id": "txp0pn", "submitted_by": "simanthegratest", "name": "Map of Austria-Hungary", "description": "A map of the former Austria-Hungarian Empire with the borders of the modern states. It was made in collaboration by all its member state subreddits.", "website": "", "subreddit": "/r/Austria", "center": [1322.5, 251.5], "path": [[1290.5, 246.5], [1290.5, 250.5], [1291.5, 250.5], [1291.5, 251.5], [1292.5, 251.5], [1292.5, 252.5], [1293.5, 252.5], [1293.5, 253.5], [1294.5, 253.5], [1299.5, 258.5], [1301.5, 258.5], [1303.5, 256.5], [1304.5, 256.5], [1304.5, 263.5], [1305.5, 263.5], [1305.5, 265.5], [1304.5, 266.5], [1304.5, 270.5], [1308.5, 274.5], [1309.5, 273.5], [1311.5, 273.5], [1315.5, 278.5], [1341.5, 278.5], [1341.5, 276.5], [1339.5, 274.5], [1339.5, 270.5], [1343.5, 265.5], [1343.5, 255.5], [1349.5, 246.5], [1348.5, 244.5], [1351.5, 241.5], [1351.5, 238.5], [1343.5, 234.5], [1332.5, 232.5], [1324.5, 226.5], [1319.5, 227.5], [1311.5, 221.5], [1306.5, 225.5], [1302.5, 226.5], [1299.5, 229.5], [1307.5, 240.5], [1303.5, 245.5]]}, +{"id": "txp0ih", "submitted_by": "Eragonnogare", "name": "Four Leaf Studios Logo", "description": "Katawa Shoujo is a bishoujo-style visual novel set in the fictional Yamaku Academy, located somewhere in modern Japan. Hisao Nakai, an average boy living a \"normal\" life, has his life turned upside down when a congenital heart defect forces him to move to a new school after a long hospitalization. Despite his difficulties, Hisao is able to find friends\u2014and perhaps love, if he plays his cards right. This is the logo for Four Leaf Studios, the developers of the game. To the right, you can see the heart that is the game's main logo.", "website": "https://www.katawa-shoujo.com", "subreddit": "/r/katawashoujo", "center": [1467.5, 768.5], "path": [[1461.5, 764.5], [1461.5, 771.5], [1472.5, 771.5], [1472.5, 764.5]]}, +{"id": "txozep", "submitted_by": "LxwFi", "name": "COHR", "description": "Children of Hartford Road", "website": "https://www.beths.bexley.sch.uk/", "subreddit": "", "center": [1779.5, 406.5], "path": [[1768.5, 403.5], [1789.5, 403.5], [1789.5, 408.5], [1768.5, 408.5]]}, +{"id": "txoxl7", "submitted_by": "Hlidskialf", "name": "Brazilian Among Us", "description": "While people from /r/Brasil flooded peoples DM who just wanted to had fun instead of helping on the flag, users /u/DynamitePanda, /u/Hlidskialf and /u/bear-throwaway7769 stood their ground through day and night to defend their among us against the Brazilian opposition.\n\nIn the end the operation was SUSccessful.", "website": "", "subreddit": "", "center": [931.5, 578.5], "path": [[928.5, 574.5], [928.5, 581.5], [933.5, 581.5], [933.5, 574.5], [928.5, 574.5]]}, +{"id": "txownu", "submitted_by": "KingKRoulle", "name": "Latvia flag and coast of armes", "description": "The latvian flag with in center the coast of arms of latvia inside of the Baltics land", "website": "https://en.wikipedia.org/wiki/Latvia", "subreddit": "/r/latvia", "center": [406.5, 696.5], "path": [[363.5, 683.5], [363.5, 709.5], [448.5, 709.5], [448.5, 683.5], [363.5, 683.5]]}, +{"id": "txoweg", "submitted_by": "Granzu", "name": "XD", "description": "A symbol with X being the eyes and D being the mouth, to make a seeming of the person having squinched eyes and a mouth wide open laughing. This is usually used to replace rofl, as the X for eyes indicates that they are laughing so hard they may have fallen off their chair.\n\nThis was made by some ramdom guys.", "website": "", "subreddit": "/u/Granzu", "center": [919.5, 1492.5], "path": [[916.5, 1489.5], [923.5, 1489.5], [923.5, 1494.5], [916.5, 1494.5], [915.5, 1494.5], [915.5, 1489.5]]}, +{"id": "txovwm", "submitted_by": "dblVegetaMickeyMouse", "name": "juansguarnizo", "description": "Twitch streamer who had his likeness added to the canvas during a stream. The clown nose was added seconds after this was made out of protest.", "website": "https://www.twitch.tv/juansguarnizo?sr=a", "subreddit": "", "center": [288.5, 1082.5], "path": [[255.5, 1043.5], [321.5, 1045.5], [320.5, 1120.5], [255.5, 1120.5]]}, +{"id": "txovp9", "submitted_by": "robinpeep246", "name": "Grape vine swing", "description": "A swing where the rope is made out of grape vine. It's meant to represent wine(making), which is heavily associated with the Moravian region of Czech Republic.", "website": "https://en.wikipedia.org/wiki/Czech_wine", "subreddit": "/r/Czech", "center": [1290.5, 192.5], "path": [[1281.5, 169.5], [1281.5, 206.5], [1287.5, 205.5], [1287.5, 169.5], [1279.5, 169.5], [1279.5, 206.5], [1313.5, 206.5], [1312.5, 203.5], [1282.5, 203.5], [1283.5, 203.5], [1281.5, 206.5], [1312.5, 206.5], [1313.5, 169.5], [1308.5, 170.5], [1311.5, 205.5], [1288.5, 203.5]]}, +{"id": "txovol", "submitted_by": "Hyakanime", "name": "Hyak.", "description": "Short name of Hyakanime application", "website": "https://hyakanime.fr/", "subreddit": "", "center": [1500.5, 1579.5], "path": [[1498.5, 1568.5], [1498.5, 1589.5], [1502.5, 1589.5], [1502.5, 1568.5], [1500.5, 1568.5]]}, +{"id": "txouzx", "submitted_by": "SongoThyChef", "name": "Celtic Knot", "description": "Originally the Celtic Knot was there only to be outnumbered by a Yoshi. Here's what remains of the knot. ", "website": "", "subreddit": "/r/mabinogi", "center": [1021.5, 1661.5], "path": [[1017.5, 1657.5], [1017.5, 1665.5], [1025.5, 1665.5], [1025.5, 1657.5], [1017.5, 1657.5]]}, +{"id": "txoubd", "submitted_by": "Soy_Fray", "name": "F IN THE CHAT & SOY_FRAY", "description": "F to respect \nAnd the F represents to Soy_Fray", "website": "https://www.twitch.tv/soy_fray", "subreddit": "", "center": [1060.5, 1815.5], "path": [[1058.5, 1813.5], [1058.5, 1817.5], [1062.5, 1817.5], [1062.5, 1813.5]]}, +{"id": "txou0b", "submitted_by": "Flawed_L0gic", "name": "The r/fuckcars Highway", "description": "Much like the stroads (street-road hybrids) that cover the majority of suburban North America, the r/fuckcars highway at one point spread across much of Place, connecting communities in perhaps one of the least efficient and most disruptive methods possible. \n\nThe green lines bordering some of the highway are meant to represent protected bike lanes.\n\nHowever, unlike real-world stroads, the r/fuckcars highway was eventually reduced to a smaller area, and made collaborative pieces with many communities, including France (Arc de Triomphe), Argentina (Obelisco de Buenos Aires), Brazil (Maracan\u00e3 Stadium), Germany (Autobahn), and others. ", "website": "", "subreddit": "/r/fuckcars", "center": [1081.5, 900.5], "path": [[905.5, 714.5], [1117.5, 714.5], [1117.5, 709.5], [1123.5, 705.5], [1123.5, 665.5], [1119.5, 665.5], [1117.5, 661.5], [1117.5, 650.5], [1123.5, 646.5], [1123.5, 606.5], [1117.5, 606.5], [1108.5, 597.5], [1108.5, 588.5], [1117.5, 579.5], [1133.5, 579.5], [1136.5, 572.5], [1136.5, 567.5], [1141.5, 567.5], [1140.5, 572.5], [1137.5, 577.5], [1137.5, 581.5], [1144.5, 590.5], [1144.5, 597.5], [1139.5, 603.5], [1134.5, 606.5], [1129.5, 606.5], [1129.5, 646.5], [1135.5, 651.5], [1135.5, 660.5], [1129.5, 665.5], [1129.5, 702.5], [1134.5, 704.5], [1134.5, 709.5], [1137.5, 711.5], [1137.5, 725.5], [1128.5, 732.5], [1129.5, 869.5], [1128.5, 1137.5], [1109.5, 1156.5], [1109.5, 1177.5], [1099.5, 1177.5], [1099.5, 1149.5], [1117.5, 1132.5], [1116.5, 1051.5], [1083.5, 1051.5], [1031.5, 1103.5], [1042.5, 1114.5], [1041.5, 1125.5], [1030.5, 1132.5], [1024.5, 1133.5], [1024.5, 1154.5], [1015.5, 1154.5], [1016.5, 1132.5], [1007.5, 1132.5], [999.5, 1122.5], [999.5, 1112.5], [1009.5, 1102.5], [1018.5, 1100.5], [1022.5, 1099.5], [1080.5, 1038.5], [1117.5, 1038.5], [1117.5, 841.5], [1124.5, 829.5], [1123.5, 801.5], [1123.5, 733.5], [1111.5, 720.5], [917.5, 720.5], [917.5, 799.5], [909.5, 800.5], [910.5, 720.5], [905.5, 720.5], [905.5, 717.5]]}, +{"id": "txot2g", "submitted_by": "Hakon121", "name": "Swift", "description": "Twitch streamer Qtcinderellas dog named Swift", "website": "", "subreddit": "/r/QTCinderella", "center": [1814.5, 229.5], "path": [[1807.5, 223.5], [1807.5, 236.5], [1815.5, 238.5], [1823.5, 230.5], [1823.5, 226.5], [1816.5, 221.5], [1811.5, 221.5], [1807.5, 223.5]]}, +{"id": "tx89ry", "submitted_by": "conflicting_claim", "name": "Disputed heart art", "description": "There are conflicting claims for ownership of this heart.\nSome claim it is a heart made by Chase's Storm People resembling weather, while others say it depicts the logo of American emo band The Front Bottoms.", "website": "", "subreddit": "", "center": [1721.5, 606.5], "path": [[1720.5, 603.5], [1719.5, 604.5], [1718.5, 606.5], [1721.5, 609.5], [1724.5, 606.5], [1722.5, 603.5], [1721.5, 604.5]]}, +{"id": "txorn3", "submitted_by": "KingKRoulle", "name": "Bosnia and Herzegovina", "description": "The flag of Bosnia and Herzegovina community", "website": "https://en.wikipedia.org/wiki/Bosnia_and_Herzegovina", "subreddit": "/r/bosnia", "center": [347.5, 761.5], "path": [[321.5, 743.5], [321.5, 780.5], [373.5, 780.5], [373.5, 740.5], [363.5, 740.5], [363.5, 743.5], [321.5, 743.5]]}, +{"id": "txorab", "submitted_by": "simanthegratest", "name": "AEIOU", "description": "A small contribution by the austrian meme sub r/aeiou supported by the sub r/Austria and r/okoidawappler. It states the motto of the von Habsburg Dynasty, which could stand for: Austria erit in orbe ultima (Austria will be supreme in the world) or Aller Erdreich ist \u00d6sterreich untertan (The whole earth is subject to Austria), on top of the austrian flag.", "website": "", "subreddit": "/r/aeiou", "center": [255.5, 1874.5], "path": [[251.5, 1887.5], [259.5, 1887.5], [259.5, 1861.5], [251.5, 1861.5]]}, +{"id": "txoq2x", "submitted_by": "DiamondCraftGirl", "name": "Hardcore Hearts", "description": "Three hearts that appear in the game Minecraft, an infinite open world sandbox game. In one of the modes of the game, the player only has one life, and in that mode, the hearts present within the health bar are replaced with these. The hearts are also commonly associated with the content creator Ph1LzA, also known as Phil Watson, who is well known for his hardcore series and his association with the Hardcore Hearts.", "website": "", "subreddit": "/r/minecraft", "center": [237.5, 1116.5], "path": [[225.5, 1111.5], [250.5, 1111.5], [250.5, 1120.5], [250.5, 1121.5], [224.5, 1121.5], [224.5, 1111.5]]}, +{"id": "txopi4", "submitted_by": "zhanglika", "name": "A little turtle ", "description": "A little turtle that survived till the end, I'm proud of you little turtle. The result of the procrastination of a french student girl. Made by u/Zhanglika", "website": "", "subreddit": "", "center": [1477.5, 275.5], "path": [[1472.5, 271.5], [1482.5, 272.5], [1482.5, 279.5], [1471.5, 279.5], [1471.5, 271.5], [1482.5, 271.5], [1482.5, 279.5], [1471.5, 279.5], [1471.5, 279.5], [1471.5, 279.5], [1471.5, 279.5], [1471.5, 279.5], [1471.5, 279.5], [1471.5, 279.5]]}, +{"id": "txoonj", "submitted_by": "dvdkon", "name": "Map of Bermuda", "description": "A pixelated map of the archipelago", "website": "", "subreddit": "/r/bermuda", "center": [1833.5, 145.5], "path": [[1830.5, 143.5], [1830.5, 147.5], [1836.5, 147.5], [1836.5, 143.5], [1830.5, 143.5]]}, +{"id": "txompu", "submitted_by": "dvdkon", "name": "The flag of Bermuda", "description": "After multiple moves, the flag of Bermuda, a British Overseas Territory, ended up here.", "website": "", "subreddit": "/r/bermuda", "center": [1835.5, 152.5], "path": [[1833.5, 149.5], [1836.5, 149.5], [1836.5, 155.5], [1833.5, 155.5], [1833.5, 149.5], [1833.5, 149.5], [1833.5, 149.5]]}, +{"id": "txokhf", "submitted_by": "Sophira", "name": "Former /r/ABDL diaper", "description": "Artwork depicting a diaper, before it was wiped from the /r/place map.", "website": "", "subreddit": "/r/ABDL", "center": [1463.5, 236.5], "path": [[1450.5, 215.5], [1458.5, 215.5], [1461.5, 216.5], [1467.5, 217.5], [1470.5, 216.5], [1478.5, 215.5], [1480.5, 217.5], [1481.5, 217.5], [1483.5, 218.5], [1485.5, 220.5], [1485.5, 221.5], [1487.5, 225.5], [1488.5, 234.5], [1486.5, 240.5], [1485.5, 242.5], [1484.5, 244.5], [1483.5, 245.5], [1483.5, 247.5], [1472.5, 258.5], [1471.5, 258.5], [1469.5, 260.5], [1468.5, 260.5], [1466.5, 262.5], [1462.5, 262.5], [1460.5, 260.5], [1459.5, 260.5], [1457.5, 258.5], [1456.5, 258.5], [1453.5, 255.5], [1452.5, 255.5], [1449.5, 252.5], [1448.5, 253.5], [1447.5, 253.5], [1446.5, 252.5], [1446.5, 248.5], [1445.5, 248.5], [1443.5, 246.5], [1441.5, 245.5], [1440.5, 243.5], [1440.5, 238.5], [1439.5, 236.5], [1438.5, 226.5], [1441.5, 220.5], [1442.5, 220.5], [1445.5, 217.5], [1446.5, 216.5], [1449.5, 216.5], [1450.5, 215.5]]}, +{"id": "txobwd", "submitted_by": "Flawed_L0gic", "name": "r/fuckcars parking lot", "description": "An illustration of how much space in our communities is taken up by vehicle storage. \n\nHave you ever taken a moment to look around and see how much space we sacrifice for cars? \n\nIt doesn't need to be this way. Visit the subreddit to learn more. ", "website": "", "subreddit": "/r/fuckcars", "center": [1020.5, 757.5], "path": [[909.5, 800.5], [909.5, 715.5], [1131.5, 715.5], [1128.5, 801.5], [963.5, 801.5], [962.5, 792.5], [957.5, 792.5], [951.5, 796.5], [950.5, 799.5], [934.5, 799.5], [925.5, 792.5], [920.5, 793.5], [920.5, 799.5], [916.5, 799.5]]}, +{"id": "txobbm", "submitted_by": "legentil42", "name": "Ariane Rocket", "description": "An Ariane rocket suggested and designed by the french youtuber Willong, in reference to his daughter name (Ariane)", "website": "https://twitter.com/willongshow/status/1510409890849869837", "subreddit": "/r/franceplace", "center": [1163.5, 783.5], "path": [[1169.5, 762.5], [1169.5, 803.5], [1157.5, 803.5], [1157.5, 762.5], [1169.5, 762.5]]}, +{"id": "txo5lx", "submitted_by": "dr_vanille", "name": "Zidane's eyebrows", "description": "During the French-Spanish battle, the French community focused on the defense of Zidane's eyebrows against Spanish attacks, so they could remain visible and the face of Zidane could be recognized. These eyebrows became a symbol of the defense of the French community.", "website": "https://en.wikipedia.org/wiki/Zinedine_Zidane", "subreddit": "/r/placefrance", "center": [126.5, 1522.5], "path": [[85.5, 1516.5], [85.5, 1532.5], [127.5, 1529.5], [166.5, 1531.5], [165.5, 1513.5]]}, +{"id": "txo1va", "submitted_by": "accidentalprancingmt", "name": "Coat of Arms Mexican Flag", "description": "Coat of Arms depicting a golden eagle eating a snake on a cactus. Symbolizes where the Aztecs were to build their empire.", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_Mexico", "subreddit": "/r/mexico", "center": [666.5, 1237.5], "path": [[660.5, 1232.5], [656.5, 1219.5], [645.5, 1239.5], [666.5, 1259.5], [683.5, 1244.5], [684.5, 1226.5], [657.5, 1218.5], [658.5, 1220.5], [662.5, 1237.5], [658.5, 1219.5], [658.5, 1219.5]]}, +{"id": "txnrkv", "submitted_by": "EmersonEsq", "name": "Genderfluid Anarchist A", "description": "Anarchist symbol in the colors of the genderfluid pride flag.", "website": "", "subreddit": "/r/genderfluid", "center": [4.5, 400.5], "path": [[0.5, 397.5], [0.5, 403.5], [8.5, 403.5], [8.5, 397.5], [5.5, 397.5], [1.5, 398.5]]}, +{"id": "txvmxr", "submitted_by": "AikoGinji", "name": "Akuma Nihmune", "description": "An Independent English Vtuber.", "website": "https://discord.gg/numination", "subreddit": "", "center": [1980.5, 1328.5], "path": [[1986.5, 1322.5], [1985.5, 1335.5], [1974.5, 1334.5], [1974.5, 1323.5]]}, +{"id": "txvmms", "submitted_by": "Quack_Attack_99", "name": "Kai Havertz", "description": "German footballer (or soccer player for you Americans and Canadians) who currently plays as midfielder for Chelsea Football Club ", "website": "https://www.chelseafc.com/en/teams/first-team/kai-havertz?pageTab=biography", "subreddit": "/r/chelseafc", "center": [1241.5, 1854.5], "path": [[1234.5, 1829.5], [1243.5, 1829.5], [1250.5, 1837.5], [1247.5, 1846.5], [1254.5, 1852.5], [1253.5, 1861.5], [1259.5, 1864.5], [1254.5, 1869.5], [1250.5, 1868.5], [1247.5, 1871.5], [1242.5, 1870.5], [1241.5, 1880.5], [1234.5, 1882.5], [1232.5, 1879.5], [1233.5, 1875.5], [1233.5, 1867.5], [1228.5, 1862.5], [1233.5, 1855.5], [1232.5, 1845.5], [1229.5, 1839.5], [1233.5, 1830.5]]}, +{"id": "txvk95", "submitted_by": "Sproxa-Guy", "name": "Egyptian ankh", "description": "The Egyptian ankh is an ancient Egyptian hieroglyphic symbol used to represent the word for life.", "website": "", "subreddit": "/r/egypt", "center": [902.5, 1986.5], "path": [[894.5, 1975.5], [910.5, 1975.5], [910.5, 1997.5], [894.5, 1998.5], [894.5, 1985.5], [894.5, 1983.5]]}, +{"id": "txvjn6", "submitted_by": "Rychagames", "name": "Giant Dad", "description": "GiantDad, also known as The Legend, is a custom-built playable character often used by griefers in PvP", "website": "https://www.reddit.com/r/darksouls/comments/tvlk6k/rplace_build_giant_dad/?utm_source=share&utm_medium=web2x&context=3", "subreddit": "/r/darksouls", "center": [927.5, 1392.5], "path": [[905.5, 1365.5], [949.5, 1365.5], [949.5, 1420.5], [906.5, 1420.5], [905.5, 1365.5]]}, +{"id": "txvhgz", "submitted_by": "Leonard_Church814", "name": "Avatar Aang", "description": "Portrait of Avatar Aang, main character of the hit animated series Avatar the Last Airbender. ", "website": "https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwj_ycmao4D3AhWGJTQIHc5LAMMQFnoECGIQAQ&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FAvatar%3A_The_Last_Airbender&usg=AOvVaw09wRfYybTR6acKjwjzZJDX", "subreddit": "/r/ATLA", "center": [289.5, 947.5], "path": [[281.5, 938.5], [297.5, 938.5], [297.5, 956.5], [281.5, 956.5]]}, +{"id": "txvg40", "submitted_by": "AnniMannii", "name": "Super Animal Royale Skullcat", "description": "The Skullcat Avatar from the cute Battle Royale Game \"Super Animal Royale\"", "website": "https://animalroyale.com/", "subreddit": "/r/animalroyale", "center": [1456.5, 746.5], "path": [[1452.5, 741.5], [1452.5, 750.5], [1455.5, 751.5], [1459.5, 749.5], [1460.5, 747.5], [1459.5, 742.5], [1458.5, 742.5], [1457.5, 743.5], [1456.5, 744.5], [1453.5, 744.5], [1451.5, 742.5], [1453.5, 742.5], [1453.5, 743.5], [1451.5, 743.5], [1451.5, 748.5], [1451.5, 749.5], [1450.5, 749.5], [1451.5, 748.5], [1450.5, 747.5], [1451.5, 746.5], [1454.5, 746.5], [1457.5, 745.5], [1454.5, 745.5], [1454.5, 744.5], [1452.5, 743.5], [1452.5, 742.5]]}, +{"id": "txvg13", "submitted_by": "BoggyD", "name": "Artberry", "description": "Artberry is a Ukrainian based agricultural holding, that focuses on growing blueberries, sweet cherries, blackberries and raspberries. The berry at the top is the logo, followed by the Ukrainian flag in the middle, followed by the word Art rotated 90\u00ba clockwise also in Ukrainian flag colours.", "website": "https://www.instagram.com/artberry.ua/?hl=en", "subreddit": "", "center": [350.5, 1611.5], "path": [[347.5, 1600.5], [352.5, 1600.5], [352.5, 1622.5], [347.5, 1622.5], [347.5, 1600.5]]}, +{"id": "txvfqv", "submitted_by": "Wengzan", "name": "Overwatch Retribution [1836]", "description": "1836 is a score-checkpoint used by score-runners in the first section of the Overwatch Archives PvE mission Retribution. It is heavily RNG based, becoming infamous in the PvE community for its heavy run-resetting nature.", "website": "https://discord.gg/jEj8QdN", "subreddit": "", "center": [705.5, 272.5], "path": [[694.5, 269.5], [694.5, 275.5], [715.5, 275.5], [715.5, 269.5]]}, +{"id": "txvfhb", "submitted_by": "pasi123567", "name": "The Bible (Book)", "description": "A depiction of the Bible which is a collection of religious texts important for Christianity, Judaism and other faiths.", "website": "", "subreddit": "/r/Christianity", "center": [637.5, 1725.5], "path": [[634.5, 1719.5], [640.5, 1719.5], [640.5, 1730.5], [634.5, 1730.5]]}, +{"id": "txvf9p", "submitted_by": "Podria_Ser_Peor", "name": "Our Flag Means Death", "description": "Made by the fandom reddit for Our Flag Means Death, new show in HBO based on Blackbeard\u00b4s pirate flag", "website": "", "subreddit": "/r/OurFlagMeansDeath", "center": [1911.5, 905.5], "path": [[1900.5, 893.5], [1900.5, 917.5], [1921.5, 917.5], [1921.5, 892.5], [1921.5, 892.5], [1900.5, 892.5]]}, +{"id": "txve99", "submitted_by": "Nyask", "name": "flapin", "description": "6x6 representation of a flaming bunny created and maintained by naskial", "website": "", "subreddit": "", "center": [4.5, 1016.5], "path": [[2.5, 1017.5], [5.5, 1017.5], [5.5, 1014.5], [2.5, 1014.5], [2.5, 1017.5]]}, +{"id": "txvdak", "submitted_by": "Crazymango11", "name": "UGLY LOSER ", "description": "ey if she [ redacted] im [ redacted] ya smell me? ", "website": "https://www.twitch.tv/erobb221", "subreddit": "/r/emoney", "center": [637.5, 928.5], "path": [[619.5, 920.5], [650.5, 920.5], [650.5, 940.5], [622.5, 942.5], [623.5, 942.5], [622.5, 920.5], [624.5, 920.5], [622.5, 920.5], [622.5, 910.5], [652.5, 911.5], [654.5, 942.5], [622.5, 943.5], [622.5, 924.5], [622.5, 926.5], [616.5, 928.5], [616.5, 929.5], [622.5, 931.5], [619.5, 930.5], [616.5, 926.5], [621.5, 931.5], [622.5, 921.5], [622.5, 931.5], [621.5, 920.5], [623.5, 932.5], [622.5, 934.5], [623.5, 926.5]]}, +{"id": "txvcm4", "submitted_by": "mura_vr", "name": "mura_vr", "description": "Blue haired, funny, dorky, boobtastic streamer!", "website": "https://twitch.tv/mura_vr", "subreddit": "", "center": [613.5, 1058.5], "path": [[609.5, 1054.5], [609.5, 1061.5], [617.5, 1061.5], [617.5, 1054.5], [609.5, 1054.5]]}, +{"id": "txvap2", "submitted_by": "Leonard_Church814", "name": "Garrus Vakarian", "description": "Garrus is a beloved companion in the Mass Effect franchise, and is long considered the players closest ally.", "website": "https://en.wikipedia.org/wiki/Garrus_Vakarian", "subreddit": "/r/MassEffect", "center": [835.5, 1014.5], "path": [[831.5, 1010.5], [839.5, 1010.5], [839.5, 1017.5], [831.5, 1017.5]]}, +{"id": "txvaa1", "submitted_by": "jasonrubik", "name": "Texas Flag and Alamo", "description": "The Alamo Mission, originally known as the Misi\u00f3n San Antonio de Valero, is a historic Spanish mission and fortress compound founded in the 18th century in what is now San Antonio, Texas, United States. It was the site of the Battle of the Alamo in 1836.", "website": "https://en.wikipedia.org/wiki/Alamo_Mission_in_San_Antonio", "subreddit": "/r/texasplace", "center": [1776.5, 1743.5], "path": [[1772.5, 1750.5], [1780.5, 1750.5], [1780.5, 1735.5], [1772.5, 1735.5]]}, +{"id": "txva0u", "submitted_by": "LinkRar", "name": "The cat (\"Lucy\")", "description": "At one point, this cat was adopted by a Redditor named Nate. Her collar was red with a gold tag. She liked it a lot.", "website": "", "subreddit": "/r/placetrees", "center": [967.5, 919.5], "path": [[964.5, 921.5], [964.5, 922.5], [969.5, 922.5], [968.5, 921.5], [968.5, 920.5], [969.5, 919.5], [969.5, 915.5], [967.5, 917.5], [965.5, 915.5], [965.5, 919.5], [967.5, 921.5]]}, +{"id": "txv9my", "submitted_by": "PHANG0", "name": "MILFS", "description": "Milfs are the members of Twitch Partner Melibela's community. It stands for Melibela's International League of Friends. ", "website": "https://www.twitch.tv/melibela", "subreddit": "/r/Melibela", "center": [1960.5, 691.5], "path": [[1947.5, 687.5], [1947.5, 696.5], [1975.5, 695.5], [1974.5, 687.5]]}, +{"id": "txv9kd", "submitted_by": "te-freddy-faz-doctor", "name": "ARI", "description": "The purple 'A' logo and white/blue rabbit mascot of Aegis Robotics.\n\nBuilt with assistance from Freddit Freebuild. You can find their work up by the right-hand side of the slovakian flag.", "website": "", "subreddit": "", "center": [1753.5, 391.5], "path": [[1750.5, 388.5], [1750.5, 393.5], [1757.5, 393.5], [1757.5, 389.5]]}, +{"id": "txv927", "submitted_by": "TahLaFrance", "name": "Cat", "description": "Simply just a cute cat", "website": "", "subreddit": "", "center": [306.5, 706.5], "path": [[303.5, 703.5], [303.5, 708.5], [309.5, 708.5], [309.5, 703.5], [303.5, 703.5]]}, +{"id": "txv6ms", "submitted_by": "Daily-Lucaria", "name": "Trollpixia", "description": "These 4 gray Pixels are owned by u/Lord_Zekonas and his friends at ZGN and The Beanary (Discord Servers), there has been an Alliance made on the r/yumenikki Discord to protect Trollpixia.\n\nhttps://www.reddit.com/r/yumenikki/comments/tvlmot/there_has_been_an_alliance_founded_with_the_guys/", "website": "", "subreddit": "/r/thebeanary", "center": [1247.5, 133.5], "path": [[1245.5, 131.5], [1248.5, 131.5], [1248.5, 134.5], [1245.5, 134.5], [1245.5, 131.5]]}, +{"id": "txv6b6", "submitted_by": "Isengrine", "name": "Tikal", "description": "Tikal is the ruin of an ancient city, found in a rainforest in Guatemala. It is one of the largest archeological sites and urban centers of the pre-Columbian Maya civilization. It is located in the archeological region of the Pet\u00e9n Basin in what is now northern Guatemala.", "website": "", "subreddit": "", "center": [837.5, 1217.5], "path": [[828.5, 1210.5], [827.5, 1223.5], [848.5, 1223.5], [847.5, 1211.5]]}, +{"id": "txv4fu", "submitted_by": "yotsubashi19", "name": "Finana Ryugu", "description": "A member of LazuLight, the first wave of VTubers from NIJISANJI's English branch. Finana is said to be as 'pure' and 'calm' as the sea... allegedly.", "website": "https://www.youtube.com/channel/UCu-J8uIXuLZh16gG-cT1naw", "subreddit": "/r/Nijisanji", "center": [1925.5, 740.5], "path": [[1925.5, 743.5], [1919.5, 743.5], [1918.5, 741.5], [1922.5, 738.5], [1924.5, 737.5], [1922.5, 736.5], [1924.5, 734.5], [1926.5, 734.5], [1927.5, 736.5], [1927.5, 738.5], [1930.5, 738.5], [1933.5, 741.5], [1932.5, 743.5], [1927.5, 743.5]]}, +{"id": "txv2w1", "submitted_by": "RawBerserker", "name": "The Spot Spot", "description": "Here lies The Spot Spot, a yellow square initially held by Duck, CoC, Pinny and Raw of The Spot Discord server until it was taken over as part of UoM", "website": "", "subreddit": "", "center": [1365.5, 1908.5], "path": [[1365.5, 1907.5], [1364.5, 1907.5], [1364.5, 1908.5], [1365.5, 1908.5]]}, +{"id": "txv0vy", "submitted_by": "Environmental-Big369", "name": "Team Zero Logo", "description": "The logo for the European group of elite gamers known as \"Team Zero\". Very exclusive invite-only community.", "website": "", "subreddit": "", "center": [1691.5, 339.5], "path": [[1686.5, 334.5], [1696.5, 334.5], [1696.5, 344.5], [1685.5, 344.5], [1685.5, 334.5], [1684.5, 334.5]]}, +{"id": "txuzl6", "submitted_by": "yotsubashi19", "name": "Elira Pendora", "description": "A member of LazuLight, the first wave of VTubers from NIJISANJI's English branch. She's a solar sky dragon (deez nuts, sheeeeesh).", "website": "https://www.youtube.com/channel/UCIeSUTOTkF9Hs7q3SGcO-Ow", "subreddit": "/r/Nijisanji", "center": [1908.5, 740.5], "path": [[1903.5, 743.5], [1916.5, 743.5], [1914.5, 739.5], [1914.5, 737.5], [1917.5, 734.5], [1912.5, 737.5], [1906.5, 737.5], [1901.5, 734.5], [1900.5, 735.5], [1904.5, 738.5], [1902.5, 740.5]]}, +{"id": "txux3o", "submitted_by": "TheBombasticBrown", "name": "The Bombastic Brown/The Whimsical White", "description": "Originally meant to be a joke that would later become a relatively big ball of turd before getting forcefully overwhelmed and overthrown by OSP. The organization known as The Bombastic Brown would then be formed to combat OSP to not get completely snuffed out. They fought valiantly and managed to stay on the atlas, albeit only on one pixel. OSP was known to have many alliances to help keep The Bombastic Brown off, a group of no more than 3 men until The Bombastic Brown allied themselves with a Russian streamer Who forced his Dr Pepper can on the canvas. The Whimsical White would be their later adopted name when people could no longer place anything but white tiles, viewing it as divine retribution they considered themselves a part of that white void.", "website": "", "subreddit": "", "center": [1705.5, 1638.5], "path": [[1704.5, 1637.5], [1706.5, 1637.5], [1706.5, 1639.5], [1704.5, 1639.5], [1704.5, 1638.5]]}, +{"id": "txuvai", "submitted_by": "MeghruhuDanak", "name": "Armenian Genocide Remembranc", "description": "A small easter egg created by the Armenians that created and defended the nearby \"Gort\" (AM: frog) with the Armenian flag on top of a transgender pride flag. The purple heart with an orange core in its middle is an hommage to the \"Forget-Me-Not Flower\" symbol of Armenian Genocide Remembrance.\n\nAfter numerous campaigns to erase any Armenian art and symbolism by Turkish and Azerbaijani actors, a decision was made to secretly place a sort of time capsule in case all Armenian flags were erased and overwritten. It was agreed upon that a miniature heart with something that wasn't the Armenian tricolor would likely fly under the radar succesfully.", "website": "https://encyclopedia.ushmm.org/content/en/article/the-armenian-genocide-1915-16-in-depth", "subreddit": "/r/Armenia", "center": [1753.5, 495.5], "path": [[1752.5, 492.5], [1753.5, 493.5], [1754.5, 492.5], [1757.5, 495.5], [1753.5, 499.5], [1749.5, 495.5], [1752.5, 492.5]]}, +{"id": "txuv05", "submitted_by": "Qyuwi_Art", "name": "The Qyuwi Q", "description": "The Remnants of the letter Q from the VTuber Qyuwi, Her discord tried their best but the among us were powerful and soon took it over.", "website": "https://linktr.ee/Qyuwi", "subreddit": "", "center": [90.5, 1993.5], "path": [[88.5, 1989.5], [88.5, 1996.5], [92.5, 1996.5], [92.5, 1989.5], [88.5, 1989.5]]}, +{"id": "txuuvt", "submitted_by": "K1t_Cat", "name": "Remnants of the old Greek flag", "description": "", "website": "", "subreddit": "", "center": [358.5, 165.5], "path": [[348.5, 161.5], [367.5, 161.5], [367.5, 168.5], [348.5, 168.5], [348.5, 161.5]]}, +{"id": "txuuo2", "submitted_by": "yotsubashi19", "name": "Pomu Rainpuff", "description": "A member of LazuLight, the first wave of VTubers from NIJISANJI's English branch. She's Pomu!", "website": "https://www.youtube.com/channel/UCP4nMSTdwU1KqYWu3UH5DHQ", "subreddit": "/r/Nijisanji", "center": [1892.5, 739.5], "path": [[1893.5, 743.5], [1886.5, 743.5], [1885.5, 741.5], [1888.5, 738.5], [1887.5, 735.5], [1890.5, 734.5], [1892.5, 738.5], [1894.5, 735.5], [1894.5, 734.5], [1896.5, 734.5], [1897.5, 735.5], [1895.5, 737.5], [1900.5, 741.5], [1899.5, 743.5]]}, +{"id": "txuudl", "submitted_by": "Difficult_Basil2254", "name": "canary island flag", "description": "The Canary Islands are an archipelago located in the Atlantic Ocean that forms a Spanish autonomous community in Northwest Africa, with the status of historical nationality. It is also one of the outermost regions of the European Union.", "website": "https://es.wikipedia.org/wiki/Canarias", "subreddit": "", "center": [1070.5, 1376.5], "path": [[1066.5, 1368.5], [1065.5, 1386.5], [1076.5, 1368.5], [1075.5, 1369.5], [1065.5, 1368.5], [1065.5, 1387.5], [1076.5, 1386.5], [1076.5, 1368.5], [1076.5, 1368.5], [1070.5, 1368.5]]}, +{"id": "txutus", "submitted_by": "ShawermaBox", "name": "Vandalism", "description": "Previously, this space was occupied by an Israeli flag, but changed to a Palestinian flag, then back to an Israeli flag, and then finally to a Palestinian flag. Pro-Israel & pro-Palestine leaders came to an agreement to not attack one another afterwards. Yet, one blue dot remains - which was placed in a portion of the Palestinian flag which is all white (which is also all white on an Israeli flag), in an effort to vandalize it. ", "website": "", "subreddit": "", "center": [56.5, 661.5], "path": [[55.5, 660.5], [57.5, 660.5], [57.5, 662.5], [55.5, 662.5], [55.5, 660.5], [55.5, 660.5]]}, +{"id": "txusul", "submitted_by": "AccordingClassroom30", "name": "Slovenian Flag", "description": "A shorter version was placed in the early stages of Place and was expanded to it's final lenght towards the end of the first day. Altho tryes to expand the white part of the flag were halted multiple times by Germany, an agrerement was proposed and accepted to have Bernd das Brot's beer foam spill into the white part of the flag. It was briefly invaded by the Cool S pattern after the second expansion, but quickly reconstructed and additional pixel art was added to the flag.", "website": "", "subreddit": "/r/slovenia", "center": [288.5, 879.5], "path": [[216.5, 868.5], [216.5, 888.5], [353.5, 888.5], [353.5, 886.5], [354.5, 885.5], [355.5, 884.5], [356.5, 883.5], [357.5, 883.5], [358.5, 884.5], [358.5, 868.5], [297.5, 868.5], [297.5, 874.5], [296.5, 875.5], [295.5, 875.5], [294.5, 876.5], [293.5, 877.5], [291.5, 879.5], [289.5, 879.5], [288.5, 880.5], [287.5, 880.5], [286.5, 881.5], [282.5, 881.5], [281.5, 882.5], [280.5, 882.5], [279.5, 883.5], [278.5, 883.5], [277.5, 884.5], [273.5, 884.5], [272.5, 883.5], [271.5, 883.5], [270.5, 882.5], [269.5, 882.5], [268.5, 881.5], [264.5, 881.5], [263.5, 880.5], [262.5, 880.5], [261.5, 879.5], [259.5, 879.5], [258.5, 878.5], [255.5, 875.5], [255.5, 875.5], [254.5, 875.5], [253.5, 874.5], [253.5, 865.5], [238.5, 865.5], [237.5, 866.5], [237.5, 867.5], [236.5, 868.5], [236.5, 869.5], [235.5, 870.5], [229.5, 870.5], [228.5, 869.5], [227.5, 869.5], [226.5, 868.5], [225.5, 867.5], [218.5, 867.5], [218.5, 868.5], [216.5, 868.5]]}, +{"id": "txusjm", "submitted_by": "baga1706", "name": "TTC", "description": "The most powerful school in the world\nSCI - +