Skip to content

Instantly share code, notes, and snippets.

@ZackMattor
Last active September 7, 2019 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZackMattor/75e02f297180213df8927ffe6477dd69 to your computer and use it in GitHub Desktop.
Save ZackMattor/75e02f297180213df8927ffe6477dd69 to your computer and use it in GitHub Desktop.
scraping quake3 maps
const puppeteer = require('puppeteer');
const fs = require('fs');
(async () => {
let maps = [];
let count = 0;
let finished = false;
const browser = await puppeteer.launch();
const page = await browser.newPage();
while(!finished) {
let page_url = `https://lvlworld.com/topmaps/${count}`;
console.log(`On page: ${page_url}`);
await page.goto(page_url);
let maps_on_page = await page.evaluate(() => {
let items = [];
document.querySelectorAll('.trnd').forEach((element) => {
let url = element.querySelectorAll('a')[0].href
let text = element.querySelectorAll('.trndTxt')[0].textContent;
// 'https://lvlworld.com/media/id:446': { rating: 'Battle zone by QuidScore: 2.162/5 (17 votes)' },
items.push({
url: url,
id: url.match(/id:(\d*)/)[1],
name: text.match(/(.*)by/)[1],
rating: parseFloat(text.match(/Score: (.*)\/5/)[1]),
author: text.match(/by (.*)Score/)[1],
num_votes: parseInt(text.match(/\((\d*) votes/)[1])
});
});
return items;
});
if(maps_on_page.length == 0) finished = true;
maps.push(maps_on_page);
count++;
}
await browser.close();
maps = maps.flat();
console.log(maps);
fs.writeFileSync('./maps.json', JSON.stringify(maps));
})();
[
{
"url": "https://lvlworld.com/media/id:2311",
"id": "2311",
"name": "Endurance ",
"rating": 4.933,
"author": "flipout",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:2314",
"id": "2314",
"name": "Geotechnic ",
"rating": 4.917,
"author": "Phantazm11",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:2323",
"id": "2323",
"name": "Trespass ",
"rating": 4.917,
"author": "Pat Howard",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:2208",
"id": "2208",
"name": "Terminatria ",
"rating": 4.882,
"author": "bst",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:2142",
"id": "2142",
"name": "Derwyll's Castle 2 ",
"rating": 4.857,
"author": "Noruen",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:2091",
"id": "2091",
"name": "The Edge of Forever ",
"rating": 4.855,
"author": "Sock",
"num_votes": 38
},
{
"url": "https://lvlworld.com/media/id:2178",
"id": "2178",
"name": "Achromatic ",
"rating": 4.855,
"author": "flipout",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:2131",
"id": "2131",
"name": "Corrosion ",
"rating": 4.844,
"author": "Phantazm11",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:2291",
"id": "2291",
"name": "Rustgrad ",
"rating": 4.833,
"author": "Hipshot",
"num_votes": 30
},
{
"url": "https://lvlworld.com/media/id:1841",
"id": "1841",
"name": "Evolution ",
"rating": 4.75,
"author": "thefury",
"num_votes": 52
},
{
"url": "https://lvlworld.com/media/id:2126",
"id": "2126",
"name": "Solitude ",
"rating": 4.739,
"author": "Hipshot",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:2346",
"id": "2346",
"name": "Deep Purple ",
"rating": 4.737,
"author": "AKUTA",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:2136",
"id": "2136",
"name": "Tortured ",
"rating": 4.711,
"author": "thefury",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:2184",
"id": "2184",
"name": "Fluorescent ",
"rating": 4.705,
"author": "cityy",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1244",
"id": "1244",
"name": "ChiropteraTA ",
"rating": 4.7,
"author": "Alcatraz, nunuk and Sock",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1743",
"id": "1743",
"name": "Pyramid of the Magician ",
"rating": 4.695,
"author": "Sock",
"num_votes": 127
},
{
"url": "https://lvlworld.com/media/id:2306",
"id": "2306",
"name": "Kora ",
"rating": 4.692,
"author": "Rota",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1833",
"id": "1833",
"name": "Polish Duel Mappack ",
"rating": 4.688,
"author": "Various",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:2089",
"id": "2089",
"name": "Obec: Zastavka u Brna ",
"rating": 4.683,
"author": "Maxell",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:2337",
"id": "2337",
"name": "Military Complex ",
"rating": 4.682,
"author": "AKUTA",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1708",
"id": "1708",
"name": "TNK gas station ",
"rating": 4.667,
"author": "Anton",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1845",
"id": "1845",
"name": "Hot Place ",
"rating": 4.655,
"author": "thefury",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:2238",
"id": "2238",
"name": "You'll Shoot Your Eye Out ",
"rating": 4.654,
"author": "Lunaran and KungFuSquirrel",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:1847",
"id": "1847",
"name": "The Very End of The Longest Yard ",
"rating": 4.653,
"author": "DIXOFT<ReMiX<",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:1947",
"id": "1947",
"name": "Iris ",
"rating": 4.651,
"author": "Rota",
"num_votes": 43
},
{
"url": "https://lvlworld.com/media/id:2336",
"id": "2336",
"name": "PowerStroke ",
"rating": 4.636,
"author": "AKUTA",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1773",
"id": "1773",
"name": "WTF Q3A v3 ",
"rating": 4.636,
"author": "Various",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:2362",
"id": "2362",
"name": "Running Man ",
"rating": 4.625,
"author": "AKUTA",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:2001",
"id": "2001",
"name": "The Proving Grounds CTF - Extended ",
"rating": 4.617,
"author": "sst13",
"num_votes": 30
},
{
"url": "https://lvlworld.com/media/id:1475",
"id": "1475",
"name": "A Shot In The Back ",
"rating": 4.615,
"author": "RushFur",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:2071",
"id": "2071",
"name": "..::LvL 10th Anniversary Duel Map pack ",
"rating": 4.604,
"author": "Various",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:2166",
"id": "2166",
"name": "Ballistophobia ",
"rating": 4.6,
"author": "Jester",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:2109",
"id": "2109",
"name": "Substation 11 ",
"rating": 4.594,
"author": "Phantazm11",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:2190",
"id": "2190",
"name": "Windsong Keep ",
"rating": 4.583,
"author": "Phantazm11",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:2148",
"id": "2148",
"name": "Shibam ",
"rating": 4.568,
"author": "DaEngineer",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1202",
"id": "1202",
"name": "Winter Games ",
"rating": 4.564,
"author": "Comic Relief",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1757",
"id": "1757",
"name": "The Forlorn Hope ",
"rating": 4.563,
"author": "JustOneFiX",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1884",
"id": "1884",
"name": "suboptimal ",
"rating": 4.56,
"author": "thefury",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1807",
"id": "1807",
"name": "The Vast And Furious - 13th RMX ",
"rating": 4.557,
"author": "sst13",
"num_votes": 44
},
{
"url": "https://lvlworld.com/media/id:2121",
"id": "2121",
"name": "Left Behind ",
"rating": 4.55,
"author": "cityy",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1937",
"id": "1937",
"name": "Winternacht & Sommergewitter ",
"rating": 4.544,
"author": "Wakey",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:1778",
"id": "1778",
"name": "The Color Of Anger ",
"rating": 4.536,
"author": "Kell",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1519",
"id": "1519",
"name": "Inner Sanctum ",
"rating": 4.535,
"author": "kat",
"num_votes": 36
},
{
"url": "https://lvlworld.com/media/id:1882",
"id": "1882",
"name": "exit the proFa[tory ",
"rating": 4.533,
"author": "the_nookie",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1953",
"id": "1953",
"name": "Revenga! ",
"rating": 4.532,
"author": "Strahlemann",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:2287",
"id": "2287",
"name": "McSarge's ",
"rating": 4.531,
"author": "cityy",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:2100",
"id": "2100",
"name": "Rainy Day ",
"rating": 4.529,
"author": "cityy",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1849",
"id": "1849",
"name": "oktogon ",
"rating": 4.528,
"author": "=puppetmaster=",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:2349",
"id": "2349",
"name": "ALIEN ",
"rating": 4.526,
"author": "AKUTA",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1747",
"id": "1747",
"name": "graviton ",
"rating": 4.526,
"author": "redfella",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1996",
"id": "1996",
"name": "Darkness Awaits ",
"rating": 4.521,
"author": "Twisted",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:2098",
"id": "2098",
"name": "Paranoid ",
"rating": 4.519,
"author": "cityy",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1433",
"id": "1433",
"name": "Tatatu ",
"rating": 4.515,
"author": "GrindSpire",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:2042",
"id": "2042",
"name": "Dreamscape ",
"rating": 4.506,
"author": "sst13",
"num_votes": 43
},
{
"url": "https://lvlworld.com/media/id:2348",
"id": "2348",
"name": "Kepple Bay ",
"rating": 4.5,
"author": "dONKEY",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1380",
"id": "1380",
"name": "After Forever ",
"rating": 4.5,
"author": "Raven & KnightMB",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1972",
"id": "1972",
"name": "East Berlin Roofs ",
"rating": 4.489,
"author": "Zihaben and Alex Vishnevsky",
"num_votes": 67
},
{
"url": "https://lvlworld.com/media/id:1886",
"id": "1886",
"name": "q3pong2 ",
"rating": 4.484,
"author": "cjk2",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1691",
"id": "1691",
"name": "Grindill 2.0 ",
"rating": 4.481,
"author": "Quaker-X",
"num_votes": 27
},
{
"url": "https://lvlworld.com/media/id:2095",
"id": "2095",
"name": "Rotten soul ",
"rating": 4.478,
"author": "ShadoW",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1913",
"id": "1913",
"name": "Last Trip ",
"rating": 4.475,
"author": "Rota",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1761",
"id": "1761",
"name": "Bones and Pieces of Eight ",
"rating": 4.472,
"author": "Blurr",
"num_votes": 44
},
{
"url": "https://lvlworld.com/media/id:2242",
"id": "2242",
"name": "The Lost Yard ",
"rating": 4.471,
"author": "sst13",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1735",
"id": "1735",
"name": "POOLSHARK ",
"rating": 4.469,
"author": "seremtan",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1863",
"id": "1863",
"name": "Deep Freeze ",
"rating": 4.466,
"author": "Shadowdane",
"num_votes": 59
},
{
"url": "https://lvlworld.com/media/id:1875",
"id": "1875",
"name": "moonstone ",
"rating": 4.466,
"author": "orfi",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:2342",
"id": "2342",
"name": "Core Gravity Drive ",
"rating": 4.464,
"author": "AKUTA",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1832",
"id": "1832",
"name": "Story to tell ",
"rating": 4.464,
"author": "NecrosiS",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:2225",
"id": "2225",
"name": "AEon's DM7 Redux ",
"rating": 4.461,
"author": "AEon",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1375",
"id": "1375",
"name": "Patibuh's Lair ",
"rating": 4.458,
"author": "blemish",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:2352",
"id": "2352",
"name": "Desalination ",
"rating": 4.458,
"author": "AKUTA",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:2103",
"id": "2103",
"name": "Gothic Dawn ",
"rating": 4.45,
"author": "sst13",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1836",
"id": "1836",
"name": "House of Evil ",
"rating": 4.45,
"author": "ShadowZombie",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1929",
"id": "1929",
"name": "Arena Gate CTF - Extended ",
"rating": 4.444,
"author": "sst13",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:1992",
"id": "1992",
"name": "Unholy Formula ",
"rating": 4.444,
"author": "Zihaben and Himitsu",
"num_votes": 40
},
{
"url": "https://lvlworld.com/media/id:1912",
"id": "1912",
"name": "JUL16 ",
"rating": 4.439,
"author": "Julek",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:2120",
"id": "2120",
"name": "Battlegrounds ",
"rating": 4.438,
"author": "ShadoW",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1864",
"id": "1864",
"name": "Stabilized Warfare: Resurrection ",
"rating": 4.429,
"author": "Tymo",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1966",
"id": "1966",
"name": "Passing Uranus ",
"rating": 4.429,
"author": "Wakey",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1471",
"id": "1471",
"name": "Dirty Little Secret ",
"rating": 4.427,
"author": "ButterB",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1281",
"id": "1281",
"name": "Egyptian Outpost ",
"rating": 4.424,
"author": "Q",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1686",
"id": "1686",
"name": "Dead Souls ",
"rating": 4.421,
"author": "GlassMan",
"num_votes": 54
},
{
"url": "https://lvlworld.com/media/id:2082",
"id": "2082",
"name": "Haunted ",
"rating": 4.421,
"author": "InsaneKid",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1963",
"id": "1963",
"name": "JUL22 ",
"rating": 4.42,
"author": "Julek",
"num_votes": 44
},
{
"url": "https://lvlworld.com/media/id:1793",
"id": "1793",
"name": "Black Belvedere ",
"rating": 4.414,
"author": "Kell",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:2061",
"id": "2061",
"name": "The Place Of Many Deaths CTF ",
"rating": 4.409,
"author": "sst13",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2075",
"id": "2075",
"name": "Tech Edge ",
"rating": 4.409,
"author": "fKd",
"num_votes": 41
},
{
"url": "https://lvlworld.com/media/id:1717",
"id": "1717",
"name": "Aerowalk [Hubster's Remix II] by The Preacher - conversion ",
"rating": 4.407,
"author": "The Preacher - conversion by the Hubster",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1617",
"id": "1617",
"name": "AEon's Neon Light ",
"rating": 4.406,
"author": "AEon",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:1842",
"id": "1842",
"name": "Prayers Nest II - Pray Again ",
"rating": 4.406,
"author": "Hipshot",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1656",
"id": "1656",
"name": "Saint CTF 2 ",
"rating": 4.406,
"author": "Kaz",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:2219",
"id": "2219",
"name": "Undergod ",
"rating": 4.404,
"author": "fKd",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1533",
"id": "1533",
"name": "Uzuldaroum III ",
"rating": 4.399,
"author": "Vondur",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:1558",
"id": "1558",
"name": "AEon's Timeless ",
"rating": 4.391,
"author": "AEon",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1824",
"id": "1824",
"name": "Between Darkness & Light ",
"rating": 4.389,
"author": "ShadowZombie",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:1555",
"id": "1555",
"name": "Estatica ",
"rating": 4.388,
"author": "Cardigan",
"num_votes": 152
},
{
"url": "https://lvlworld.com/media/id:2130",
"id": "2130",
"name": "Null And Void ",
"rating": 4.388,
"author": "fKd",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:2353",
"id": "2353",
"name": "The Campgrounds - Matrix Edition ",
"rating": 4.385,
"author": "sst13",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:2282",
"id": "2282",
"name": "Ironwood ",
"rating": 4.385,
"author": "Pat Howard",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:800",
"id": "800",
"name": "Blood Run Tourney ",
"rating": 4.381,
"author": "ztn",
"num_votes": 90
},
{
"url": "https://lvlworld.com/media/id:1920",
"id": "1920",
"name": "JUL18 ",
"rating": 4.38,
"author": "Julek",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1631",
"id": "1631",
"name": "Almost Lost ",
"rating": 4.375,
"author": "id Software",
"num_votes": 46
},
{
"url": "https://lvlworld.com/media/id:1599",
"id": "1599",
"name": "Kritische Masse ",
"rating": 4.375,
"author": "-cha0s-",
"num_votes": 46
},
{
"url": "https://lvlworld.com/media/id:1950",
"id": "1950",
"name": "Pillamyd ",
"rating": 4.375,
"author": "evillair",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1869",
"id": "1869",
"name": "wisdomrun ",
"rating": 4.367,
"author": "orfi",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1505",
"id": "1505",
"name": "WolkenBruch ",
"rating": 4.367,
"author": "Schulz-VR",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:2108",
"id": "2108",
"name": "DIFFICULTY:MAXIMAL First Person Edition ",
"rating": 4.364,
"author": "D-Meat",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2351",
"id": "2351",
"name": "Powerstation - Extended ",
"rating": 4.364,
"author": "sst13",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2369",
"id": "2369",
"name": "BlackHurricane ",
"rating": 4.364,
"author": "Martinus",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2351",
"id": "2351",
"name": "Powerstation - Extended ",
"rating": 4.364,
"author": "sst13",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2183",
"id": "2183",
"name": "Ludonarrative Dissonance ",
"rating": 4.357,
"author": "Lunaran",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1465",
"id": "1465",
"name": "The Platform ",
"rating": 4.357,
"author": "StormShadow",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1127",
"id": "1127",
"name": "Platform6 ",
"rating": 4.352,
"author": "Cyben",
"num_votes": 54
},
{
"url": "https://lvlworld.com/media/id:1862",
"id": "1862",
"name": "Citadel Fantasia ",
"rating": 4.349,
"author": "Myth",
"num_votes": 53
},
{
"url": "https://lvlworld.com/media/id:929",
"id": "929",
"name": "..::LvL & PlanetQuake Pack 2: The Top Peg ",
"rating": 4.346,
"author": "Various",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1570",
"id": "1570",
"name": "Citadel Insatiable ",
"rating": 4.345,
"author": "Myth",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1559",
"id": "1559",
"name": "AEon's Pyramid ",
"rating": 4.345,
"author": "AEon",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:2125",
"id": "2125",
"name": "Lost at Sea ",
"rating": 4.341,
"author": "Kaz",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1806",
"id": "1806",
"name": "Dark Void ",
"rating": 4.338,
"author": "sst13",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1612",
"id": "1612",
"name": "Decidia ",
"rating": 4.335,
"author": "wviperw",
"num_votes": 44
},
{
"url": "https://lvlworld.com/media/id:1764",
"id": "1764",
"name": "Polish MidAir Mappack ",
"rating": 4.333,
"author": "Various",
"num_votes": 30
},
{
"url": "https://lvlworld.com/media/id:1095",
"id": "1095",
"name": "ColdWar[TA] ",
"rating": 4.333,
"author": "sedric",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1651",
"id": "1651",
"name": "Trial by Error ",
"rating": 4.333,
"author": "Error by R.P.G.",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1428",
"id": "1428",
"name": "Frozen Colors ",
"rating": 4.333,
"author": "79DieselRabbit",
"num_votes": 39
},
{
"url": "https://lvlworld.com/media/id:1955",
"id": "1955",
"name": "The Rage ",
"rating": 4.33,
"author": "Foralarx",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:1305",
"id": "1305",
"name": "Des Hertogens Hove ",
"rating": 4.329,
"author": "Geit",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1507",
"id": "1507",
"name": "Winter chill ",
"rating": 4.327,
"author": "swelt",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1061",
"id": "1061",
"name": "Casablanca ",
"rating": 4.325,
"author": "Comic Relief",
"num_votes": 30
},
{
"url": "https://lvlworld.com/media/id:1941",
"id": "1941",
"name": "KARIN ",
"rating": 4.324,
"author": "Rota",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:2041",
"id": "2041",
"name": "Adelline ",
"rating": 4.321,
"author": "Rota",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1347",
"id": "1347",
"name": "Swiss Cheese Trickster ",
"rating": 4.32,
"author": "Q-Fraggel",
"num_votes": 164
},
{
"url": "https://lvlworld.com/media/id:1592",
"id": "1592",
"name": "Octopus Revenge ",
"rating": 4.319,
"author": "LordSquart",
"num_votes": 87
},
{
"url": "https://lvlworld.com/media/id:1062",
"id": "1062",
"name": "blood stream ",
"rating": 4.318,
"author": "FRENZIC",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2199",
"id": "2199",
"name": "Looking For Free Doom ",
"rating": 4.317,
"author": "DaEngineer",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1968",
"id": "1968",
"name": "Not Yet ",
"rating": 4.316,
"author": "Xavier Ferrairo",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:2017",
"id": "2017",
"name": "The First Step ",
"rating": 4.313,
"author": "fKd",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1016",
"id": "1016",
"name": "Pure Evil ",
"rating": 4.307,
"author": "Castle",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:637",
"id": "637",
"name": "Iron Yard ",
"rating": 4.299,
"author": "Friction",
"num_votes": 256
},
{
"url": "https://lvlworld.com/media/id:1386",
"id": "1386",
"name": "Pharaoh's Gate ",
"rating": 4.299,
"author": "haste",
"num_votes": 36
},
{
"url": "https://lvlworld.com/media/id:1374",
"id": "1374",
"name": "HardWired ",
"rating": 4.298,
"author": "Akuma",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1928",
"id": "1928",
"name": "Floating Stonefaces ",
"rating": 4.296,
"author": "sst13",
"num_votes": 38
},
{
"url": "https://lvlworld.com/media/id:1927",
"id": "1927",
"name": "Hastenpu ",
"rating": 4.292,
"author": "Takkie",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1964",
"id": "1964",
"name": "Temple of Amun & Temple of Amun 2v2 ",
"rating": 4.292,
"author": "noctis",
"num_votes": 36
},
{
"url": "https://lvlworld.com/media/id:1795",
"id": "1795",
"name": "Junk Data ",
"rating": 4.288,
"author": "Bal",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1723",
"id": "1723",
"name": "Heavy Metal Machine (2) ",
"rating": 4.286,
"author": "Lukin",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1990",
"id": "1990",
"name": "unbalanced II ",
"rating": 4.281,
"author": "acid",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:1804",
"id": "1804",
"name": "The Black Realm - Special Edition ",
"rating": 4.281,
"author": "sst13",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:2023",
"id": "2023",
"name": "Quake 3 Arena skybox collection ",
"rating": 4.279,
"author": "Various",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1032",
"id": "1032",
"name": "Desert Temple ",
"rating": 4.278,
"author": "LordSquart",
"num_votes": 81
},
{
"url": "https://lvlworld.com/media/id:1974",
"id": "1974",
"name": "rushed ",
"rating": 4.277,
"author": "acid",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1659",
"id": "1659",
"name": "Hogwarts ",
"rating": 4.275,
"author": "Comic Relief",
"num_votes": 40
},
{
"url": "https://lvlworld.com/media/id:2097",
"id": "2097",
"name": "Suriel ",
"rating": 4.273,
"author": "Bliccer",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1684",
"id": "1684",
"name": "BDOG3DM1 ",
"rating": 4.273,
"author": "Black Dog",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2200",
"id": "2200",
"name": "Roman Duel ",
"rating": 4.271,
"author": "Bliccer and DaEngineer",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1699",
"id": "1699",
"name": "Cityrush ",
"rating": 4.269,
"author": "Hack-writer",
"num_votes": 40
},
{
"url": "https://lvlworld.com/media/id:1250",
"id": "1250",
"name": "MKSTEEL - Fistful of Steel ",
"rating": 4.269,
"author": "Killer",
"num_votes": 27
},
{
"url": "https://lvlworld.com/media/id:1783",
"id": "1783",
"name": "The Black Realm ",
"rating": 4.268,
"author": "sst13",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1779",
"id": "1779",
"name": "unbalanced ",
"rating": 4.266,
"author": "acid",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1923",
"id": "1923",
"name": "Claustrophobic Edge ",
"rating": 4.26,
"author": "sst13",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1159",
"id": "1159",
"name": "Liquid Carbon (v2) ",
"rating": 4.26,
"author": "Charon",
"num_votes": 74
},
{
"url": "https://lvlworld.com/media/id:1178",
"id": "1178",
"name": "Epoch ",
"rating": 4.259,
"author": "Reservoir DoG",
"num_votes": 55
},
{
"url": "https://lvlworld.com/media/id:818",
"id": "818",
"name": "..::LvL & PlanetQuake Pack 1: Space Madness ",
"rating": 4.259,
"author": "Various",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:1866",
"id": "1866",
"name": "Q3Deck ",
"rating": 4.25,
"author": "kinetix",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:122",
"id": "122",
"name": "railroad ",
"rating": 4.25,
"author": "Jon",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1788",
"id": "1788",
"name": "Halls of the Damned ",
"rating": 4.25,
"author": "StormShadow",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1554",
"id": "1554",
"name": "Courtyard Reloaded ",
"rating": 4.25,
"author": "seremtan",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1472",
"id": "1472",
"name": "Aqua Arena ",
"rating": 4.25,
"author": "Phillip Quilter",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1197",
"id": "1197",
"name": "Kineterra1 ",
"rating": 4.247,
"author": "Kit Carson & Nemo",
"num_votes": 75
},
{
"url": "https://lvlworld.com/media/id:2002",
"id": "2002",
"name": "Mystic Gemini ",
"rating": 4.242,
"author": "Sock and Mr.Lake",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:1223",
"id": "1223",
"name": "Home of the gamer ",
"rating": 4.242,
"author": "Fiesling",
"num_votes": 30
},
{
"url": "https://lvlworld.com/media/id:1081",
"id": "1081",
"name": "Black Shining Leather ",
"rating": 4.241,
"author": "Geit",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:1389",
"id": "1389",
"name": "Heavy Metal Town ",
"rating": 4.241,
"author": "Ekat",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1177",
"id": "1177",
"name": "Drift Away ",
"rating": 4.239,
"author": "wviperw",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1871",
"id": "1871",
"name": "Tribute (2) ",
"rating": 4.232,
"author": "thefury",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1782",
"id": "1782",
"name": "q3_TrueBlue ",
"rating": 4.229,
"author": "KIIIA",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:2006",
"id": "2006",
"name": "poptart ",
"rating": 4.229,
"author": "NaturalSpringWater",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1621",
"id": "1621",
"name": "AEon's Desert ",
"rating": 4.228,
"author": "AEon",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:793",
"id": "793",
"name": "The Doom That Came To Dunwich ",
"rating": 4.228,
"author": "Fingers and Zdim",
"num_votes": 184
},
{
"url": "https://lvlworld.com/media/id:2253",
"id": "2253",
"name": "High Speed Graffiti ",
"rating": 4.227,
"author": "fKd",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1868",
"id": "1868",
"name": "Nu Clear Lunch Time ",
"rating": 4.216,
"author": "Requiem",
"num_votes": 58
},
{
"url": "https://lvlworld.com/media/id:1613",
"id": "1613",
"name": "Never Enough ",
"rating": 4.214,
"author": "The cess Map Team",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1371",
"id": "1371",
"name": "Trajectory GeoComp ",
"rating": 4.214,
"author": "Mr.LyCon",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:2076",
"id": "2076",
"name": "Return to the Cistern ",
"rating": 4.213,
"author": "Tabun",
"num_votes": 41
},
{
"url": "https://lvlworld.com/media/id:1596",
"id": "1596",
"name": "Place Of Two Deaths (2) ",
"rating": 4.213,
"author": "sst13",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1424",
"id": "1424",
"name": "Take to the Sky ",
"rating": 4.212,
"author": "amethyst7",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1006",
"id": "1006",
"name": "Shinning Forces ",
"rating": 4.212,
"author": "Crewmaac",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:243",
"id": "243",
"name": "Coriolis Storm (v2) ",
"rating": 4.211,
"author": "Lunaran",
"num_votes": 422
},
{
"url": "https://lvlworld.com/media/id:889",
"id": "889",
"name": "Team Arena Map Pak #2 ",
"rating": 4.211,
"author": "Various",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1880",
"id": "1880",
"name": "Schizophrenic remix ",
"rating": 4.211,
"author": "DIXOFT<ReMiX<",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1609",
"id": "1609",
"name": "Dimension Of The Doomed ",
"rating": 4.211,
"author": "SoKaR",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1215",
"id": "1215",
"name": "Empty Voice of Despair ",
"rating": 4.208,
"author": "ButterB",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:2069",
"id": "2069",
"name": "..::LvL 10th Anniversary TDM Map pack ",
"rating": 4.206,
"author": "Various",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1469",
"id": "1469",
"name": "Stir Fried Rocks Attack ",
"rating": 4.205,
"author": "Charon",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:782",
"id": "782",
"name": "Dangercity ",
"rating": 4.205,
"author": "M. Kupfer",
"num_votes": 165
},
{
"url": "https://lvlworld.com/media/id:367",
"id": "367",
"name": "Ancient Archipelago ",
"rating": 4.204,
"author": "Lloyd Morris",
"num_votes": 381
},
{
"url": "https://lvlworld.com/media/id:1678",
"id": "1678",
"name": "The Longer Way Home ",
"rating": 4.202,
"author": "JustOneFiX",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1967",
"id": "1967",
"name": "JUL24 ",
"rating": 4.197,
"author": "Julek",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1445",
"id": "1445",
"name": "Kryptonite ",
"rating": 4.196,
"author": "wviperw",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:203",
"id": "203",
"name": "Blood Run ",
"rating": 4.195,
"author": "ztn",
"num_votes": 382
},
{
"url": "https://lvlworld.com/media/id:1922",
"id": "1922",
"name": "Projectile Vomiting ",
"rating": 4.194,
"author": "StjartMunnen",
"num_votes": 27
},
{
"url": "https://lvlworld.com/media/id:1332",
"id": "1332",
"name": "Mouldy Old Bastard ",
"rating": 4.194,
"author": "Tigger-oN",
"num_votes": 49
},
{
"url": "https://lvlworld.com/media/id:80",
"id": "80",
"name": "Overkill! ",
"rating": 4.194,
"author": "Wiebo de Wit",
"num_votes": 258
},
{
"url": "https://lvlworld.com/media/id:1693",
"id": "1693",
"name": "Saint Tourney 1 ",
"rating": 4.192,
"author": "Kaz",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:2066",
"id": "2066",
"name": "JUL38 ",
"rating": 4.19,
"author": "Julek",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:1452",
"id": "1452",
"name": "The Abandoned Post ",
"rating": 4.189,
"author": "Electro and Killazontherun",
"num_votes": 102
},
{
"url": "https://lvlworld.com/media/id:854",
"id": "854",
"name": "Ancient Greek Arena ",
"rating": 4.188,
"author": "ResidentSCUM",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1487",
"id": "1487",
"name": "Memento Mori ",
"rating": 4.188,
"author": "ShadoW",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1768",
"id": "1768",
"name": "Shake your body ",
"rating": 4.182,
"author": "Strahlemann",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2027",
"id": "2027",
"name": "Capture the Karin ",
"rating": 4.182,
"author": "Rota",
"num_votes": 44
},
{
"url": "https://lvlworld.com/media/id:1372",
"id": "1372",
"name": "avengeance ",
"rating": 4.181,
"author": "psion",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:1365",
"id": "1365",
"name": "Geometrica ",
"rating": 4.181,
"author": "wviperw",
"num_votes": 36
},
{
"url": "https://lvlworld.com/media/id:1243",
"id": "1243",
"name": "ChiropteraDM ",
"rating": 4.18,
"author": "Alcatraz, nunuk and Sock",
"num_votes": 136
},
{
"url": "https://lvlworld.com/media/id:1562",
"id": "1562",
"name": "Pull Your Socks Up ",
"rating": 4.18,
"author": "Lunaran",
"num_votes": 64
},
{
"url": "https://lvlworld.com/media/id:2350",
"id": "2350",
"name": "Powerstation CTF ",
"rating": 4.179,
"author": "sst13",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:879",
"id": "879",
"name": "Troubled Sleep ",
"rating": 4.179,
"author": "Rroff",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1918",
"id": "1918",
"name": "Map-Center's 1st Turtle Speed Map pack ",
"rating": 4.177,
"author": "Various",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1576",
"id": "1576",
"name": "Capture In Distress ",
"rating": 4.176,
"author": "SoKaR",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:1050",
"id": "1050",
"name": "ColdwarCTF ",
"rating": 4.176,
"author": "sedric",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:1147",
"id": "1147",
"name": "Shakedown ",
"rating": 4.175,
"author": "Reservoir DoG",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1110",
"id": "1110",
"name": "Lucid Enigma ",
"rating": 4.172,
"author": "Dubbilan",
"num_votes": 58
},
{
"url": "https://lvlworld.com/media/id:1946",
"id": "1946",
"name": "JUL20 ",
"rating": 4.17,
"author": "Julek",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1451",
"id": "1451",
"name": "Burning Reminders ",
"rating": 4.17,
"author": "Mr.Lake",
"num_votes": 222
},
{
"url": "https://lvlworld.com/media/id:1973",
"id": "1973",
"name": "Gajapoor ",
"rating": 4.169,
"author": "Zihaben and Yan Zaraki",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:1919",
"id": "1919",
"name": "The Strange House ",
"rating": 4.167,
"author": "Amphetamine",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1017",
"id": "1017",
"name": "Bitter Embrace ",
"rating": 4.166,
"author": "Mr.CleaN",
"num_votes": 158
},
{
"url": "https://lvlworld.com/media/id:1610",
"id": "1610",
"name": "The Long Way Home ",
"rating": 4.166,
"author": "JustOneFiX",
"num_votes": 92
},
{
"url": "https://lvlworld.com/media/id:251",
"id": "251",
"name": "Runtfest ",
"rating": 4.166,
"author": "Xzed",
"num_votes": 424
},
{
"url": "https://lvlworld.com/media/id:1286",
"id": "1286",
"name": "Q2DM1-ISH: The Edge Remix ",
"rating": 4.163,
"author": "Jamin Bulyk",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:1229",
"id": "1229",
"name": "Renaissance ",
"rating": 4.163,
"author": "r3tina",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:857",
"id": "857",
"name": "Scrap Metal ][ ",
"rating": 4.161,
"author": "Bal",
"num_votes": 101
},
{
"url": "https://lvlworld.com/media/id:1598",
"id": "1598",
"name": "Station 52 ",
"rating": 4.159,
"author": "Quaker-X",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:2119",
"id": "2119",
"name": "Camelot Castle / Sahra Catacombs ",
"rating": 4.159,
"author": "Camel-XP",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1704",
"id": "1704",
"name": "Arena 13 ",
"rating": 4.158,
"author": "ALMighty",
"num_votes": 30
},
{
"url": "https://lvlworld.com/media/id:890",
"id": "890",
"name": "Threewave Compilation Pak1 ",
"rating": 4.158,
"author": "Various",
"num_votes": 57
},
{
"url": "https://lvlworld.com/media/id:2015",
"id": "2015",
"name": "Jumpin' Jack Flash ",
"rating": 4.156,
"author": "headrot",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1632",
"id": "1632",
"name": "Jam Number 17 ",
"rating": 4.156,
"author": "pjw",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:808",
"id": "808",
"name": "H2SO4 ",
"rating": 4.156,
"author": "Krash",
"num_votes": 143
},
{
"url": "https://lvlworld.com/media/id:2047",
"id": "2047",
"name": "Manic Depression ",
"rating": 4.152,
"author": "StjartMunnen",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:920",
"id": "920",
"name": "Burial Grounds ",
"rating": 4.152,
"author": "Jax_Gator",
"num_votes": 99
},
{
"url": "https://lvlworld.com/media/id:1492",
"id": "1492",
"name": "MaXimus ",
"rating": 4.147,
"author": "LordSquart & Jax_Gator",
"num_votes": 56
},
{
"url": "https://lvlworld.com/media/id:1279",
"id": "1279",
"name": "The Vast and Furious ",
"rating": 4.147,
"author": "ButterB",
"num_votes": 51
},
{
"url": "https://lvlworld.com/media/id:848",
"id": "848",
"name": "MKEXP - Industrial Experience ",
"rating": 4.144,
"author": "Killer",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:670",
"id": "670",
"name": "Disinformation ",
"rating": 4.143,
"author": "Bal",
"num_votes": 212
},
{
"url": "https://lvlworld.com/media/id:524",
"id": "524",
"name": "The Very End Of You Too ",
"rating": 4.141,
"author": "Munyul Verminard",
"num_votes": 46
},
{
"url": "https://lvlworld.com/media/id:523",
"id": "523",
"name": "Quarea 51 ",
"rating": 4.137,
"author": "M. Kupfer",
"num_votes": 51
},
{
"url": "https://lvlworld.com/media/id:1201",
"id": "1201",
"name": "GLooM ",
"rating": 4.137,
"author": "StormShadow",
"num_votes": 42
},
{
"url": "https://lvlworld.com/media/id:994",
"id": "994",
"name": "Meatball Grinder (v1.1) ",
"rating": 4.137,
"author": "Fingers",
"num_votes": 97
},
{
"url": "https://lvlworld.com/media/id:1306",
"id": "1306",
"name": "Nuclear Wasteland ",
"rating": 4.135,
"author": "StormShadow",
"num_votes": 124
},
{
"url": "https://lvlworld.com/media/id:822",
"id": "822",
"name": "Dismemberment ",
"rating": 4.134,
"author": "the Hubster",
"num_votes": 86
},
{
"url": "https://lvlworld.com/media/id:1170",
"id": "1170",
"name": "ZeitGeist ",
"rating": 4.13,
"author": "-cha0s-",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:1652",
"id": "1652",
"name": "Until The Next Life ",
"rating": 4.13,
"author": "GlassMan",
"num_votes": 27
},
{
"url": "https://lvlworld.com/media/id:1228",
"id": "1228",
"name": "Speed Metal (TA) ",
"rating": 4.125,
"author": "Quaker-X",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1874",
"id": "1874",
"name": "Andeh's Arena ",
"rating": 4.125,
"author": "AndehX",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1309",
"id": "1309",
"name": "Six Sided Figure ",
"rating": 4.125,
"author": "Krash",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1056",
"id": "1056",
"name": "Vermilion Dream ",
"rating": 4.125,
"author": "Goose & Castle",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1412",
"id": "1412",
"name": "Xtreme Insanity ",
"rating": 4.125,
"author": "WarMachine",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1729",
"id": "1729",
"name": "Dumb All Over ",
"rating": 4.125,
"author": "unitool",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1983",
"id": "1983",
"name": "MiREA ",
"rating": 4.125,
"author": "*ZeRo*",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1532",
"id": "1532",
"name": "shaman&dragon ",
"rating": 4.125,
"author": "acid",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:2218",
"id": "2218",
"name": "Dawn of Time ",
"rating": 4.125,
"author": "Scourge",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1526",
"id": "1526",
"name": "Deathroom Bathroom ",
"rating": 4.125,
"author": "Requiem",
"num_votes": 64
},
{
"url": "https://lvlworld.com/media/id:1728",
"id": "1728",
"name": "The Soremill v2 ",
"rating": 4.125,
"author": "psion",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:410",
"id": "410",
"name": "Caliburnus ",
"rating": 4.123,
"author": "Ned Man",
"num_votes": 154
},
{
"url": "https://lvlworld.com/media/id:1308",
"id": "1308",
"name": "n i t r a ",
"rating": 4.121,
"author": "psion",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:254",
"id": "254",
"name": "Kihaku (Intensity) ",
"rating": 4.12,
"author": "Mr.CleaN",
"num_votes": 279
},
{
"url": "https://lvlworld.com/media/id:107",
"id": "107",
"name": "Beatbox ",
"rating": 4.119,
"author": "ztn",
"num_votes": 239
},
{
"url": "https://lvlworld.com/media/id:1606",
"id": "1606",
"name": "5quid ",
"rating": 4.118,
"author": "Charon",
"num_votes": 38
},
{
"url": "https://lvlworld.com/media/id:1139",
"id": "1139",
"name": "apologie ",
"rating": 4.118,
"author": "polo",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:516",
"id": "516",
"name": "Arenaholica ",
"rating": 4.117,
"author": "Bushboy",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1482",
"id": "1482",
"name": "cynosure ",
"rating": 4.117,
"author": "psion",
"num_votes": 118
},
{
"url": "https://lvlworld.com/media/id:1376",
"id": "1376",
"name": "Victimized ",
"rating": 4.116,
"author": "Kit Carson",
"num_votes": 43
},
{
"url": "https://lvlworld.com/media/id:614",
"id": "614",
"name": "OverWhelming Hostility ",
"rating": 4.116,
"author": "Auhsan",
"num_votes": 270
},
{
"url": "https://lvlworld.com/media/id:2048",
"id": "2048",
"name": "Crescent ",
"rating": 4.115,
"author": "Hipshot",
"num_votes": 72
},
{
"url": "https://lvlworld.com/media/id:607",
"id": "607",
"name": "Si'Metrik ",
"rating": 4.114,
"author": "Sock",
"num_votes": 174
},
{
"url": "https://lvlworld.com/media/id:581",
"id": "581",
"name": "Deftones ",
"rating": 4.113,
"author": "Mr.Lake",
"num_votes": 120
},
{
"url": "https://lvlworld.com/media/id:836",
"id": "836",
"name": "Aerowalk ",
"rating": 4.112,
"author": "the Hubster",
"num_votes": 94
},
{
"url": "https://lvlworld.com/media/id:1605",
"id": "1605",
"name": "Evil Gemini CTF ",
"rating": 4.111,
"author": "Mr.Lake",
"num_votes": 119
},
{
"url": "https://lvlworld.com/media/id:1513",
"id": "1513",
"name": "Ascension ",
"rating": 4.111,
"author": "Gael",
"num_votes": 36
},
{
"url": "https://lvlworld.com/media/id:174",
"id": "174",
"name": "Nemesis Online ",
"rating": 4.111,
"author": "Vondur",
"num_votes": 156
},
{
"url": "https://lvlworld.com/media/id:2010",
"id": "2010",
"name": "Marilyn ",
"rating": 4.11,
"author": "Rota",
"num_votes": 59
},
{
"url": "https://lvlworld.com/media/id:481",
"id": "481",
"name": "distonic_small ",
"rating": 4.109,
"author": "nunuk",
"num_votes": 176
},
{
"url": "https://lvlworld.com/media/id:1892",
"id": "1892",
"name": "gon3 ",
"rating": 4.107,
"author": "Pasquake",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1406",
"id": "1406",
"name": "The Bad Ball ",
"rating": 4.107,
"author": "on-X",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1195",
"id": "1195",
"name": "Home of the Giant ",
"rating": 4.105,
"author": "Fiesling",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:76",
"id": "76",
"name": "Sin City ",
"rating": 4.105,
"author": "Jon",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:429",
"id": "429",
"name": "Golconda ",
"rating": 4.104,
"author": "Bal",
"num_votes": 211
},
{
"url": "https://lvlworld.com/media/id:1431",
"id": "1431",
"name": "Ev_tpmc ",
"rating": 4.104,
"author": "Eversor Omni Rei",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1926",
"id": "1926",
"name": "The Proving Grounds CTF ",
"rating": 4.104,
"author": "sst13",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:2165",
"id": "2165",
"name": "feel the rush ",
"rating": 4.104,
"author": "Kaffeewunder",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:244",
"id": "244",
"name": "Falling Higher ",
"rating": 4.104,
"author": "Senn",
"num_votes": 173
},
{
"url": "https://lvlworld.com/media/id:684",
"id": "684",
"name": "Timeless Classic ",
"rating": 4.103,
"author": "Charon",
"num_votes": 131
},
{
"url": "https://lvlworld.com/media/id:1077",
"id": "1077",
"name": "Discontent ",
"rating": 4.101,
"author": "Kamarov",
"num_votes": 114
},
{
"url": "https://lvlworld.com/media/id:83",
"id": "83",
"name": "Lonely Planet ",
"rating": 4.099,
"author": "SmallPileOfGibs",
"num_votes": 131
},
{
"url": "https://lvlworld.com/media/id:1854",
"id": "1854",
"name": "little rock ",
"rating": 4.098,
"author": "kat",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1282",
"id": "1282",
"name": "SYSTEM FAILURE - Burial Grounds Map Pak 1 ",
"rating": 4.097,
"author": "Various",
"num_votes": 131
},
{
"url": "https://lvlworld.com/media/id:2067",
"id": "2067",
"name": "Q ",
"rating": 4.097,
"author": "Pat Howard",
"num_votes": 49
},
{
"url": "https://lvlworld.com/media/id:44",
"id": "44",
"name": "Japanese Castles ",
"rating": 4.097,
"author": "g1zm0",
"num_votes": 334
},
{
"url": "https://lvlworld.com/media/id:482",
"id": "482",
"name": "Natestah's Beotch ",
"rating": 4.096,
"author": "Nathan Silvers",
"num_votes": 138
},
{
"url": "https://lvlworld.com/media/id:1098",
"id": "1098",
"name": "Out on a Limb ",
"rating": 4.096,
"author": "Tigger-oN",
"num_votes": 73
},
{
"url": "https://lvlworld.com/media/id:1249",
"id": "1249",
"name": "Mustaine Return ",
"rating": 4.095,
"author": "LordSquart",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:1861",
"id": "1861",
"name": "galvanized ",
"rating": 4.094,
"author": "zorius",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:725",
"id": "725",
"name": "Reassimilation ",
"rating": 4.092,
"author": "Charon",
"num_votes": 57
},
{
"url": "https://lvlworld.com/media/id:1296",
"id": "1296",
"name": "GON2 - Back to Navarone ",
"rating": 4.092,
"author": "Quint",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:2202",
"id": "2202",
"name": "Testing Procedures ",
"rating": 4.091,
"author": "Eraser",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1138",
"id": "1138",
"name": "Speed Metal Q3 ",
"rating": 4.091,
"author": "Quaker-X",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2000",
"id": "2000",
"name": "Thunderlipps - A New Beginning ",
"rating": 4.091,
"author": "Killumall",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:339",
"id": "339",
"name": "Majesty ",
"rating": 4.09,
"author": "Ned Man",
"num_votes": 189
},
{
"url": "https://lvlworld.com/media/id:54",
"id": "54",
"name": "Quake3:Addiction ",
"rating": 4.09,
"author": "Peej",
"num_votes": 342
},
{
"url": "https://lvlworld.com/media/id:551",
"id": "551",
"name": "fff ",
"rating": 4.09,
"author": "stecki",
"num_votes": 89
},
{
"url": "https://lvlworld.com/media/id:1437",
"id": "1437",
"name": "Community Map Pack 1 ",
"rating": 4.089,
"author": "CMP team",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1154",
"id": "1154",
"name": "inextremis ",
"rating": 4.089,
"author": "Charon",
"num_votes": 112
},
{
"url": "https://lvlworld.com/media/id:1436",
"id": "1436",
"name": "Pretend Girlfriend ",
"rating": 4.089,
"author": "pjw",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:219",
"id": "219",
"name": "The Omnipresent Eye ",
"rating": 4.088,
"author": "Lloyd Morris",
"num_votes": 113
},
{
"url": "https://lvlworld.com/media/id:273",
"id": "273",
"name": "Pit and the Pendulum ",
"rating": 4.088,
"author": "KODIAK",
"num_votes": 199
},
{
"url": "https://lvlworld.com/media/id:838",
"id": "838",
"name": "sedistic ",
"rating": 4.088,
"author": "sedric",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:2057",
"id": "2057",
"name": "Five Steps Ahead - Duel ",
"rating": 4.087,
"author": "pulchr",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:25",
"id": "25",
"name": "Revelation ",
"rating": 4.086,
"author": "Darren Lafreniere",
"num_votes": 172
},
{
"url": "https://lvlworld.com/media/id:500",
"id": "500",
"name": "Return to the Edge ",
"rating": 4.086,
"author": "Charon",
"num_votes": 73
},
{
"url": "https://lvlworld.com/media/id:1040",
"id": "1040",
"name": "Castle CTF ",
"rating": 4.085,
"author": "Geit",
"num_votes": 50
},
{
"url": "https://lvlworld.com/media/id:428",
"id": "428",
"name": "Heavy Duty ",
"rating": 4.085,
"author": "Mr.CleaN",
"num_votes": 174
},
{
"url": "https://lvlworld.com/media/id:297",
"id": "297",
"name": "Mutually Assured Destruction - Tournament ed. ",
"rating": 4.085,
"author": "Mr.CleaN",
"num_votes": 133
},
{
"url": "https://lvlworld.com/media/id:224",
"id": "224",
"name": "Coitus Interuptus ",
"rating": 4.084,
"author": "[69]Streamer",
"num_votes": 188
},
{
"url": "https://lvlworld.com/media/id:753",
"id": "753",
"name": "Abusive Intentions ",
"rating": 4.083,
"author": "Mr.CleaN",
"num_votes": 51
},
{
"url": "https://lvlworld.com/media/id:699",
"id": "699",
"name": "Slipgate ",
"rating": 4.082,
"author": "izeColt",
"num_votes": 73
},
{
"url": "https://lvlworld.com/media/id:628",
"id": "628",
"name": "PadKitchen ",
"rating": 4.081,
"author": "ENTE",
"num_votes": 105
},
{
"url": "https://lvlworld.com/media/id:1616",
"id": "1616",
"name": "Viralis - Burial Grounds Map Pak 2 ",
"rating": 4.08,
"author": "Various",
"num_votes": 109
},
{
"url": "https://lvlworld.com/media/id:591",
"id": "591",
"name": "INFERNAL GENESIS ",
"rating": 4.08,
"author": "DeV",
"num_votes": 94
},
{
"url": "https://lvlworld.com/media/id:1914",
"id": "1914",
"name": "Psychophobia ",
"rating": 4.079,
"author": "dmschaos",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1711",
"id": "1711",
"name": "PhobosBase1 - Prohecy Of Doom ",
"rating": 4.077,
"author": "Shub-Niggurath",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:502",
"id": "502",
"name": "Prophecy ",
"rating": 4.077,
"author": "Mr.CleaN",
"num_votes": 192
},
{
"url": "https://lvlworld.com/media/id:228",
"id": "228",
"name": "Ash Rain ",
"rating": 4.077,
"author": "Bal",
"num_votes": 114
},
{
"url": "https://lvlworld.com/media/id:27",
"id": "27",
"name": "Vexar's Level Pak 2 ",
"rating": 4.077,
"author": "Vexar",
"num_votes": 75
},
{
"url": "https://lvlworld.com/media/id:2072",
"id": "2072",
"name": "..::LvL 10th Anniversary FFA Map pack ",
"rating": 4.076,
"author": "Various",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:423",
"id": "423",
"name": "Let's Drink Beer and Shoot Things ",
"rating": 4.075,
"author": "Lunaran",
"num_votes": 219
},
{
"url": "https://lvlworld.com/media/id:1055",
"id": "1055",
"name": "Power Metal ",
"rating": 4.075,
"author": "ALMighty",
"num_votes": 80
},
{
"url": "https://lvlworld.com/media/id:359",
"id": "359",
"name": "kleskonian hights ",
"rating": 4.073,
"author": "nunuk",
"num_votes": 185
},
{
"url": "https://lvlworld.com/media/id:191",
"id": "191",
"name": "Mindfields ",
"rating": 4.072,
"author": "Senn",
"num_votes": 159
},
{
"url": "https://lvlworld.com/media/id:15",
"id": "15",
"name": "The Dead Simple ",
"rating": 4.071,
"author": "Cyber",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1504",
"id": "1504",
"name": "Frank Lloyd Wright's - Falling Water ",
"rating": 4.071,
"author": "187-J4CK4L",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1534",
"id": "1534",
"name": "q3jdm9a ",
"rating": 4.071,
"author": "the Hubster",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:218",
"id": "218",
"name": "MeatPak ",
"rating": 4.071,
"author": "Pete Parisi",
"num_votes": 201
},
{
"url": "https://lvlworld.com/media/id:809",
"id": "809",
"name": "Certain Ruin ",
"rating": 4.07,
"author": "Tigger-oN",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:494",
"id": "494",
"name": "Short Circuit ",
"rating": 4.07,
"author": "Binaryshi",
"num_votes": 68
},
{
"url": "https://lvlworld.com/media/id:1625",
"id": "1625",
"name": "Saint CTF 1 ",
"rating": 4.069,
"author": "Kaz",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:1736",
"id": "1736",
"name": "Fortress 2089 ",
"rating": 4.069,
"author": "psion",
"num_votes": 40
},
{
"url": "https://lvlworld.com/media/id:284",
"id": "284",
"name": "MeatPak Two ",
"rating": 4.069,
"author": "Pete Parisi",
"num_votes": 193
},
{
"url": "https://lvlworld.com/media/id:993",
"id": "993",
"name": "PadGallery (DeLuxe Version) ",
"rating": 4.068,
"author": "ENTE",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:689",
"id": "689",
"name": "GrindMill ",
"rating": 4.066,
"author": "[Kona]",
"num_votes": 57
},
{
"url": "https://lvlworld.com/media/id:730",
"id": "730",
"name": "flying plutonians ",
"rating": 4.065,
"author": "nunuk",
"num_votes": 213
},
{
"url": "https://lvlworld.com/media/id:921",
"id": "921",
"name": "Flea Fights ",
"rating": 4.064,
"author": "Charon",
"num_votes": 43
},
{
"url": "https://lvlworld.com/media/id:2039",
"id": "2039",
"name": "The Valley of Redemption ",
"rating": 4.063,
"author": "ShadowZombie",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:546",
"id": "546",
"name": "White Collar Violence ",
"rating": 4.061,
"author": "Laerth",
"num_votes": 107
},
{
"url": "https://lvlworld.com/media/id:1969",
"id": "1969",
"name": "Sunset Isle ",
"rating": 4.06,
"author": "Scourge",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:307",
"id": "307",
"name": "Tig's Den ",
"rating": 4.059,
"author": "Tigger-oN",
"num_votes": 412
},
{
"url": "https://lvlworld.com/media/id:1356",
"id": "1356",
"name": "Shad3DM1 - Damaged (v1.1) ",
"rating": 4.059,
"author": "Shadowdane",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1366",
"id": "1366",
"name": "Quimera ",
"rating": 4.059,
"author": "JAJ",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:899",
"id": "899",
"name": "MKBASE - Feel The Base ",
"rating": 4.059,
"author": "Killer",
"num_votes": 85
},
{
"url": "https://lvlworld.com/media/id:1278",
"id": "1278",
"name": "Freefall ",
"rating": 4.059,
"author": "Myth",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:32",
"id": "32",
"name": "Wicked ",
"rating": 4.058,
"author": "FxR|jude",
"num_votes": 201
},
{
"url": "https://lvlworld.com/media/id:2024",
"id": "2024",
"name": "bloodsky ",
"rating": 4.057,
"author": "NaturalSpringWater",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:784",
"id": "784",
"name": "Gothic Rage ",
"rating": 4.057,
"author": "Quaker-X",
"num_votes": 53
},
{
"url": "https://lvlworld.com/media/id:1709",
"id": "1709",
"name": "Asian Nights ",
"rating": 4.057,
"author": "thefury",
"num_votes": 53
},
{
"url": "https://lvlworld.com/media/id:49",
"id": "49",
"name": "Khaooohs ",
"rating": 4.056,
"author": "Vondur",
"num_votes": 144
},
{
"url": "https://lvlworld.com/media/id:1644",
"id": "1644",
"name": "Heart O' The City ",
"rating": 4.055,
"author": "seremtan",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:1958",
"id": "1958",
"name": "The Simpsons Map ",
"rating": 4.054,
"author": "Maggu",
"num_votes": 1389
},
{
"url": "https://lvlworld.com/media/id:1242",
"id": "1242",
"name": "Berserker ",
"rating": 4.054,
"author": "polo",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1769",
"id": "1769",
"name": "TLQ3Dm1 - Blood, Sweat, and Frags ",
"rating": 4.053,
"author": "Truthful Liar",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:585",
"id": "585",
"name": "Reloaded ",
"rating": 4.052,
"author": "Yogi",
"num_votes": 53
},
{
"url": "https://lvlworld.com/media/id:162",
"id": "162",
"name": "Devolved ",
"rating": 4.051,
"author": "mexx",
"num_votes": 200
},
{
"url": "https://lvlworld.com/media/id:968",
"id": "968",
"name": "A Load of Useless Bloody Loonies ",
"rating": 4.05,
"author": "Lunaran",
"num_votes": 55
},
{
"url": "https://lvlworld.com/media/id:415",
"id": "415",
"name": "Andronicus ",
"rating": 4.049,
"author": "Zarathustra",
"num_votes": 163
},
{
"url": "https://lvlworld.com/media/id:1604",
"id": "1604",
"name": "The Bunker (2) ",
"rating": 4.047,
"author": "Mr.Lake",
"num_votes": 74
},
{
"url": "https://lvlworld.com/media/id:1106",
"id": "1106",
"name": "Desperation ",
"rating": 4.045,
"author": "Gael",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1196",
"id": "1196",
"name": "A Hymn To Rocket Launcher ",
"rating": 4.045,
"author": "IMMORTAL",
"num_votes": 44
},
{
"url": "https://lvlworld.com/media/id:1700",
"id": "1700",
"name": "Industrial Skin and Bone ",
"rating": 4.045,
"author": "Geit",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1924",
"id": "1924",
"name": "subdm1 ",
"rating": 4.045,
"author": "subst",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1417",
"id": "1417",
"name": "Cold Metal ",
"rating": 4.044,
"author": "Geit",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:1070",
"id": "1070",
"name": "God Of Emptiness ",
"rating": 4.043,
"author": "RRROOOAAARRR",
"num_votes": 52
},
{
"url": "https://lvlworld.com/media/id:1312",
"id": "1312",
"name": "once upon a brush ",
"rating": 4.043,
"author": "Zippie",
"num_votes": 104
},
{
"url": "https://lvlworld.com/media/id:779",
"id": "779",
"name": "Early Settlers ",
"rating": 4.043,
"author": "[Kona]",
"num_votes": 47
},
{
"url": "https://lvlworld.com/media/id:598",
"id": "598",
"name": "Bloodhouse ",
"rating": 4.042,
"author": "Gamma",
"num_votes": 184
},
{
"url": "https://lvlworld.com/media/id:1359",
"id": "1359",
"name": "The Eternal Prisoner ",
"rating": 4.042,
"author": "Morgoth",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1673",
"id": "1673",
"name": "Deimos2 ",
"rating": 4.042,
"author": "Shub-Niggurath",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:639",
"id": "639",
"name": "A Glasswork Fishbowl ",
"rating": 4.04,
"author": "Redchurch",
"num_votes": 93
},
{
"url": "https://lvlworld.com/media/id:1997",
"id": "1997",
"name": "rush to the disco ",
"rating": 4.04,
"author": "acid",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:17",
"id": "17",
"name": "Vexar's Level Pak 1 ",
"rating": 4.039,
"author": "Vexar",
"num_votes": 64
},
{
"url": "https://lvlworld.com/media/id:1626",
"id": "1626",
"name": "noq3dm5 ",
"rating": 4.038,
"author": "noname",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1624",
"id": "1624",
"name": "Chartres ",
"rating": 4.038,
"author": "QkennyQ",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:82",
"id": "82",
"name": "Asunder ",
"rating": 4.038,
"author": "Laerth",
"num_votes": 99
},
{
"url": "https://lvlworld.com/media/id:1542",
"id": "1542",
"name": "State Prison 36 ",
"rating": 4.036,
"author": "r3tina",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:775",
"id": "775",
"name": "A Warm Place ",
"rating": 4.035,
"author": "Dross",
"num_votes": 79
},
{
"url": "https://lvlworld.com/media/id:501",
"id": "501",
"name": "The BackStab ",
"rating": 4.034,
"author": "Auhsan",
"num_votes": 116
},
{
"url": "https://lvlworld.com/media/id:1184",
"id": "1184",
"name": "MKVDV - Vorsprung durch Vernichtung ",
"rating": 4.034,
"author": "Killer",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:562",
"id": "562",
"name": "Quake3Stuff ",
"rating": 4.034,
"author": "Senn",
"num_votes": 80
},
{
"url": "https://lvlworld.com/media/id:1580",
"id": "1580",
"name": "Howling Wilderness v2 ",
"rating": 4.032,
"author": "Jugulator",
"num_votes": 39
},
{
"url": "https://lvlworld.com/media/id:114",
"id": "114",
"name": "PQ Arena ",
"rating": 4.032,
"author": "BugBear",
"num_votes": 158
},
{
"url": "https://lvlworld.com/media/id:146",
"id": "146",
"name": "Nothing At All ",
"rating": 4.032,
"author": "Laerth",
"num_votes": 119
},
{
"url": "https://lvlworld.com/media/id:208",
"id": "208",
"name": "Airborne ",
"rating": 4.031,
"author": "KODIAK",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:839",
"id": "839",
"name": "Wasted Time ",
"rating": 4.031,
"author": "Requiem",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:155",
"id": "155",
"name": "Sinister Purpose ",
"rating": 4.03,
"author": "Wiebo de Wit",
"num_votes": 100
},
{
"url": "https://lvlworld.com/media/id:584",
"id": "584",
"name": "Space Jam ",
"rating": 4.03,
"author": "}{ammer",
"num_votes": 75
},
{
"url": "https://lvlworld.com/media/id:1391",
"id": "1391",
"name": "Eternal Blue V.1.0 ",
"rating": 4.029,
"author": "LordSquart",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:1749",
"id": "1749",
"name": "Ostentatiously Organometallic ",
"rating": 4.029,
"author": "Laerth",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:629",
"id": "629",
"name": "kleskonian curves ",
"rating": 4.028,
"author": "nunuk",
"num_votes": 126
},
{
"url": "https://lvlworld.com/media/id:265",
"id": "265",
"name": "Gate to Hell ",
"rating": 4.027,
"author": "nihil",
"num_votes": 148
},
{
"url": "https://lvlworld.com/media/id:1904",
"id": "1904",
"name": "Lithium Flower ",
"rating": 4.026,
"author": "NemiX",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1991",
"id": "1991",
"name": "Stoneface Islands ",
"rating": 4.026,
"author": "sst13",
"num_votes": 39
},
{
"url": "https://lvlworld.com/media/id:1141",
"id": "1141",
"name": "Iron and Stone ",
"rating": 4.026,
"author": "Jax_Gator",
"num_votes": 49
},
{
"url": "https://lvlworld.com/media/id:878",
"id": "878",
"name": "platypus ",
"rating": 4.025,
"author": "nunuk",
"num_votes": 108
},
{
"url": "https://lvlworld.com/media/id:20",
"id": "20",
"name": "Future Brownie ",
"rating": 4.025,
"author": "Fingers",
"num_votes": 228
},
{
"url": "https://lvlworld.com/media/id:754",
"id": "754",
"name": "Mu.innellim ",
"rating": 4.025,
"author": "Charon",
"num_votes": 70
},
{
"url": "https://lvlworld.com/media/id:566",
"id": "566",
"name": "Hot and Moist ",
"rating": 4.025,
"author": "pjw",
"num_votes": 101
},
{
"url": "https://lvlworld.com/media/id:1645",
"id": "1645",
"name": "Cajun Hell ",
"rating": 4.024,
"author": "StormShadow",
"num_votes": 74
},
{
"url": "https://lvlworld.com/media/id:1344",
"id": "1344",
"name": "bern.stein.zimmer ",
"rating": 4.023,
"author": "acid",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:2016",
"id": "2016",
"name": "Hangar Base ",
"rating": 4.023,
"author": "sst13",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:1140",
"id": "1140",
"name": "revolution 909 ",
"rating": 4.022,
"author": "polo",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:680",
"id": "680",
"name": "Entertain Us (v2) ",
"rating": 4.021,
"author": "GrindSpire",
"num_votes": 84
},
{
"url": "https://lvlworld.com/media/id:1304",
"id": "1304",
"name": "In The Well of Time ",
"rating": 4.02,
"author": "Blurr",
"num_votes": 38
},
{
"url": "https://lvlworld.com/media/id:814",
"id": "814",
"name": "When Worlds Collide ",
"rating": 4.019,
"author": "Various",
"num_votes": 65
},
{
"url": "https://lvlworld.com/media/id:1959",
"id": "1959",
"name": "MonoLith ",
"rating": 4.018,
"author": "Sock",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1831",
"id": "1831",
"name": "Storm's Edge ",
"rating": 4.017,
"author": "dONKEY",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:2084",
"id": "2084",
"name": "Focal Point ",
"rating": 4.015,
"author": "Sock",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:1270",
"id": "1270",
"name": "Vacant ",
"rating": 4.015,
"author": "wviperw",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:4",
"id": "4",
"name": "Agony & Ecstasy ",
"rating": 4.014,
"author": "Senn",
"num_votes": 105
},
{
"url": "https://lvlworld.com/media/id:374",
"id": "374",
"name": "Fugue State:Tetrad ",
"rating": 4.013,
"author": "fuguestate team",
"num_votes": 99
},
{
"url": "https://lvlworld.com/media/id:1096",
"id": "1096",
"name": "Cadavre's domain ",
"rating": 4.012,
"author": "nihil",
"num_votes": 63
},
{
"url": "https://lvlworld.com/media/id:1742",
"id": "1742",
"name": "Quake Monkeys ",
"rating": 4.012,
"author": "Nathan Silvers",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1638",
"id": "1638",
"name": "SecularDM ",
"rating": 4.011,
"author": "<secs.>",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1082",
"id": "1082",
"name": "Villain's Village ",
"rating": 4.011,
"author": "{STD}General",
"num_votes": 47
},
{
"url": "https://lvlworld.com/media/id:2004",
"id": "2004",
"name": "Lobby [The Matrix] ",
"rating": 4.01,
"author": "[The Matrix] by cruelstroke",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1128",
"id": "1128",
"name": "Tomb of Necrobiosis ",
"rating": 4.01,
"author": "Killazontherun",
"num_votes": 51
},
{
"url": "https://lvlworld.com/media/id:913",
"id": "913",
"name": "Degree of Power ",
"rating": 4.01,
"author": "Thunda",
"num_votes": 77
},
{
"url": "https://lvlworld.com/media/id:506",
"id": "506",
"name": "Cosmik Debris ",
"rating": 4.009,
"author": "unitool",
"num_votes": 158
},
{
"url": "https://lvlworld.com/media/id:3",
"id": "3",
"name": "Threewave CTF ",
"rating": 4.009,
"author": "Zoid and Casey",
"num_votes": 246
},
{
"url": "https://lvlworld.com/media/id:658",
"id": "658",
"name": "WhirlWind ",
"rating": 4.008,
"author": "Vexar",
"num_votes": 62
},
{
"url": "https://lvlworld.com/media/id:1160",
"id": "1160",
"name": "Stranglehold ",
"rating": 4.007,
"author": "Jax_Gator",
"num_votes": 36
},
{
"url": "https://lvlworld.com/media/id:821",
"id": "821",
"name": "Miniman ",
"rating": 4.004,
"author": "THS",
"num_votes": 56
},
{
"url": "https://lvlworld.com/media/id:1011",
"id": "1011",
"name": "Nebulus ",
"rating": 4.003,
"author": "Lanzelot",
"num_votes": 88
},
{
"url": "https://lvlworld.com/media/id:1635",
"id": "1635",
"name": "The Shield Generator ",
"rating": 4,
"author": "guile09",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:1216",
"id": "1216",
"name": "Cachectic Machination ",
"rating": 4,
"author": "Shallow[BAP]",
"num_votes": 51
},
{
"url": "https://lvlworld.com/media/id:1667",
"id": "1667",
"name": "Far and Away ",
"rating": 4,
"author": "Scythe",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1675",
"id": "1675",
"name": "Disaster Area ",
"rating": 4,
"author": "X-Nova",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1982",
"id": "1982",
"name": "Sonne ",
"rating": 4,
"author": "*ZeRo*",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2081",
"id": "2081",
"name": "Divided We Fall ",
"rating": 4,
"author": "Kell",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:351",
"id": "351",
"name": "Quatrix ",
"rating": 3.996,
"author": "M. Kupfer",
"num_votes": 125
},
{
"url": "https://lvlworld.com/media/id:525",
"id": "525",
"name": "Clowning Around ",
"rating": 3.996,
"author": "FxR|jude",
"num_votes": 60
},
{
"url": "https://lvlworld.com/media/id:2",
"id": "2",
"name": "Mustaine Madness ",
"rating": 3.995,
"author": "ParadoX",
"num_votes": 55
},
{
"url": "https://lvlworld.com/media/id:974",
"id": "974",
"name": "Base X ",
"rating": 3.993,
"author": "D-Bone_[HAGG]",
"num_votes": 38
},
{
"url": "https://lvlworld.com/media/id:831",
"id": "831",
"name": "Duff's Castle ",
"rating": 3.992,
"author": "duff-miver",
"num_votes": 131
},
{
"url": "https://lvlworld.com/media/id:2031",
"id": "2031",
"name": "jumprun ",
"rating": 3.989,
"author": "NaturalSpringWater",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:777",
"id": "777",
"name": "Two Souls ",
"rating": 3.987,
"author": "uoz",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1488",
"id": "1488",
"name": "Qvisions map pack ",
"rating": 3.986,
"author": "Quint",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:662",
"id": "662",
"name": "Last Fortress ",
"rating": 3.984,
"author": "Q-Fraggel",
"num_votes": 91
},
{
"url": "https://lvlworld.com/media/id:2070",
"id": "2070",
"name": "..::LvL 10th Anniversary CTF Map pack ",
"rating": 3.983,
"author": "Various",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:728",
"id": "728",
"name": "Rhapsody In Blue ",
"rating": 3.982,
"author": "Dubbilan",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1005",
"id": "1005",
"name": "Intestinal Distress ",
"rating": 3.981,
"author": "EASE",
"num_votes": 27
},
{
"url": "https://lvlworld.com/media/id:1637",
"id": "1637",
"name": "LANS Asteroid ",
"rating": 3.981,
"author": "ALMighty",
"num_votes": 27
},
{
"url": "https://lvlworld.com/media/id:1302",
"id": "1302",
"name": "Qbeast ",
"rating": 3.981,
"author": "Quint",
"num_votes": 53
},
{
"url": "https://lvlworld.com/media/id:1501",
"id": "1501",
"name": "Tower of despair ",
"rating": 3.981,
"author": "Devlin",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1476",
"id": "1476",
"name": "In Perfect Harmony ",
"rating": 3.979,
"author": "MaGiC-WaLkEr",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:330",
"id": "330",
"name": "Alphanoid 3d ",
"rating": 3.979,
"author": "snail",
"num_votes": 83
},
{
"url": "https://lvlworld.com/media/id:604",
"id": "604",
"name": "Human experiments ",
"rating": 3.977,
"author": "Gummo",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:683",
"id": "683",
"name": "DEADline ",
"rating": 3.977,
"author": "Yogi",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:1089",
"id": "1089",
"name": "are friends gothic? ",
"rating": 3.976,
"author": "Kit Carson",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:697",
"id": "697",
"name": "LevelsQ3 ",
"rating": 3.975,
"author": "Jackass",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:440",
"id": "440",
"name": "Skullduggery ",
"rating": 3.974,
"author": "DieharD",
"num_votes": 146
},
{
"url": "https://lvlworld.com/media/id:1954",
"id": "1954",
"name": "Annihilation ",
"rating": 3.974,
"author": "ShadoW",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:841",
"id": "841",
"name": "The Crucified Colony ",
"rating": 3.973,
"author": "Charon",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:705",
"id": "705",
"name": "Total Anarki ",
"rating": 3.971,
"author": "HELLvis",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1878",
"id": "1878",
"name": "Dum ",
"rating": 3.971,
"author": "Rota",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1263",
"id": "1263",
"name": "Deadmeat ",
"rating": 3.971,
"author": "Pete Parisi",
"num_votes": 51
},
{
"url": "https://lvlworld.com/media/id:1636",
"id": "1636",
"name": "Pain From Spain ",
"rating": 3.97,
"author": "Binaryshi and Munyul",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:2062",
"id": "2062",
"name": "Return to the Entryway ",
"rating": 3.969,
"author": "Tabun",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:495",
"id": "495",
"name": "No Class! ",
"rating": 3.967,
"author": "Wiebo de Wit",
"num_votes": 46
},
{
"url": "https://lvlworld.com/media/id:1193",
"id": "1193",
"name": "Grim Shores 3 ~ Atlantis ",
"rating": 3.966,
"author": "Sir Fragalot",
"num_votes": 67
},
{
"url": "https://lvlworld.com/media/id:582",
"id": "582",
"name": "Mister Rocket ",
"rating": 3.966,
"author": "Dross",
"num_votes": 88
},
{
"url": "https://lvlworld.com/media/id:2058",
"id": "2058",
"name": "Kamasutra ",
"rating": 3.965,
"author": "thefury",
"num_votes": 85
},
{
"url": "https://lvlworld.com/media/id:1122",
"id": "1122",
"name": "Orbital Rampage ",
"rating": 3.964,
"author": "}{ammer",
"num_votes": 42
},
{
"url": "https://lvlworld.com/media/id:248",
"id": "248",
"name": "AlleyQ3 - The Directors Cut 2 ",
"rating": 3.963,
"author": "THS",
"num_votes": 47
},
{
"url": "https://lvlworld.com/media/id:1951",
"id": "1951",
"name": "The Summoning ",
"rating": 3.963,
"author": "evillair",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1207",
"id": "1207",
"name": "Flashback ",
"rating": 3.962,
"author": "Tymo",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:643",
"id": "643",
"name": "Upon a Cross of Gold ",
"rating": 3.962,
"author": "tequila",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1352",
"id": "1352",
"name": "lichtwärts ",
"rating": 3.96,
"author": "-cha0s-",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:1889",
"id": "1889",
"name": "InsinuatoR_DM17 ",
"rating": 3.959,
"author": "InsinuatoR",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:414",
"id": "414",
"name": "Lost Forever ",
"rating": 3.959,
"author": "KODIAK",
"num_votes": 160
},
{
"url": "https://lvlworld.com/media/id:1553",
"id": "1553",
"name": "Terra Incognita ",
"rating": 3.959,
"author": "MopAn",
"num_votes": 43
},
{
"url": "https://lvlworld.com/media/id:86",
"id": "86",
"name": "Bad Blood ",
"rating": 3.958,
"author": "ztn",
"num_votes": 30
},
{
"url": "https://lvlworld.com/media/id:944",
"id": "944",
"name": "Subversive Tendencies ",
"rating": 3.957,
"author": "tequila",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1004",
"id": "1004",
"name": "simplicity ",
"rating": 3.955,
"author": "Geit",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1837",
"id": "1837",
"name": "camo-retro ",
"rating": 3.955,
"author": "mic",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:928",
"id": "928",
"name": "Contortion ",
"rating": 3.954,
"author": "GONNAKILLYA!",
"num_votes": 27
},
{
"url": "https://lvlworld.com/media/id:1008",
"id": "1008",
"name": "batcula ",
"rating": 3.954,
"author": "nunuk",
"num_votes": 81
},
{
"url": "https://lvlworld.com/media/id:24",
"id": "24",
"name": "Satan's Playground ",
"rating": 3.952,
"author": "(MA)Greenthumb",
"num_votes": 84
},
{
"url": "https://lvlworld.com/media/id:578",
"id": "578",
"name": "Uncle´s inspiration ",
"rating": 3.952,
"author": "DruZli",
"num_votes": 115
},
{
"url": "https://lvlworld.com/media/id:1619",
"id": "1619",
"name": "Black Town ",
"rating": 3.952,
"author": "XPac",
"num_votes": 47
},
{
"url": "https://lvlworld.com/media/id:663",
"id": "663",
"name": "Up Close and Personal ",
"rating": 3.951,
"author": "DruZli",
"num_votes": 139
},
{
"url": "https://lvlworld.com/media/id:2052",
"id": "2052",
"name": "VERTICAL INTEGRATION ",
"rating": 3.95,
"author": "Rynvord",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:106",
"id": "106",
"name": "MKFINGERS - Itchy Trigger Finger ",
"rating": 3.948,
"author": "Killer",
"num_votes": 82
},
{
"url": "https://lvlworld.com/media/id:1908",
"id": "1908",
"name": "Reise Rei/se ",
"rating": 3.947,
"author": "Master Jed",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:840",
"id": "840",
"name": "A Cold Wind ",
"rating": 3.946,
"author": "Requiem",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1706",
"id": "1706",
"name": "Guns ",
"rating": 3.946,
"author": "pjw",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1503",
"id": "1503",
"name": "Dead of Winter ",
"rating": 3.946,
"author": "Jax_Gator",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:532",
"id": "532",
"name": "ObiwansHouse ",
"rating": 3.945,
"author": "obiwan",
"num_votes": 41
},
{
"url": "https://lvlworld.com/media/id:1162",
"id": "1162",
"name": "NBDM5 - Ouange - Grostarin DM4 ",
"rating": 3.944,
"author": "Grostarin",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:1149",
"id": "1149",
"name": "The 3 Dayer ",
"rating": 3.942,
"author": "x0r",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:70",
"id": "70",
"name": "Zeist - The Coming ",
"rating": 3.939,
"author": "Karma",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:632",
"id": "632",
"name": "$p@cE's $hrine ",
"rating": 3.938,
"author": "$p@cE",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1341",
"id": "1341",
"name": "Obsolete ",
"rating": 3.938,
"author": "EpicGlottis",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:707",
"id": "707",
"name": "Ice cold ",
"rating": 3.938,
"author": "Killazontherun",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1317",
"id": "1317",
"name": "-Hampster- ",
"rating": 3.938,
"author": "cavefish",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1402",
"id": "1402",
"name": "Stormatorium ",
"rating": 3.935,
"author": "Evil_Cremator & StormShadow",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:973",
"id": "973",
"name": "Blast Food ",
"rating": 3.934,
"author": "Juz",
"num_votes": 38
},
{
"url": "https://lvlworld.com/media/id:1107",
"id": "1107",
"name": "Water Giant ",
"rating": 3.932,
"author": "Castle",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:1819",
"id": "1819",
"name": "Dynablast ",
"rating": 3.932,
"author": "sst13",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1671",
"id": "1671",
"name": "Ice Storm ",
"rating": 3.931,
"author": "SoKaR",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:988",
"id": "988",
"name": "Up & Down ",
"rating": 3.931,
"author": "uoz",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:856",
"id": "856",
"name": "Beyond Gothic ",
"rating": 3.931,
"author": "Bentarr",
"num_votes": 47
},
{
"url": "https://lvlworld.com/media/id:1509",
"id": "1509",
"name": "Murder of a King ",
"rating": 3.931,
"author": "Drazsé",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:324",
"id": "324",
"name": "Unnatural Selection ",
"rating": 3.928,
"author": "Hexadecimal",
"num_votes": 59
},
{
"url": "https://lvlworld.com/media/id:296",
"id": "296",
"name": "The castle ",
"rating": 3.927,
"author": "rockN79",
"num_votes": 75
},
{
"url": "https://lvlworld.com/media/id:449",
"id": "449",
"name": "MIND CONTROL ",
"rating": 3.926,
"author": "DeV",
"num_votes": 95
},
{
"url": "https://lvlworld.com/media/id:710",
"id": "710",
"name": "House of Ishus ",
"rating": 3.923,
"author": "RushFur",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1569",
"id": "1569",
"name": "Leaks2 ",
"rating": 3.923,
"author": "Speedy",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:1321",
"id": "1321",
"name": "Geckos Desert ",
"rating": 3.923,
"author": "gecko",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:2065",
"id": "2065",
"name": "Oetoe q3version ",
"rating": 3.923,
"author": "Takkie",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:888",
"id": "888",
"name": "The Edge Revisted! ",
"rating": 3.923,
"author": "ShoveL",
"num_votes": 42
},
{
"url": "https://lvlworld.com/media/id:1101",
"id": "1101",
"name": "Team Temple ",
"rating": 3.922,
"author": "BerneyBoy",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:561",
"id": "561",
"name": "Toxic Skirmish ",
"rating": 3.922,
"author": "Wiebo de Wit",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:599",
"id": "599",
"name": "a longer shadow ",
"rating": 3.922,
"author": "eFDAT",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:490",
"id": "490",
"name": "The New Flesh ",
"rating": 3.921,
"author": "Riscchip",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:991",
"id": "991",
"name": "AEon's DM17 ",
"rating": 3.921,
"author": "AEon",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1840",
"id": "1840",
"name": "Platform M26, Hibernia, North Atlantic ",
"rating": 3.919,
"author": "gloogun",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:550",
"id": "550",
"name": "Desolation ",
"rating": 3.919,
"author": "Tymo",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:78",
"id": "78",
"name": "One Night Stand ",
"rating": 3.919,
"author": "smeghead",
"num_votes": 83
},
{
"url": "https://lvlworld.com/media/id:41",
"id": "41",
"name": "Atomic Flow ",
"rating": 3.918,
"author": "Cole Savage",
"num_votes": 58
},
{
"url": "https://lvlworld.com/media/id:909",
"id": "909",
"name": "All Your Base Are Belong To Us ",
"rating": 3.917,
"author": "KnightMB",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1054",
"id": "1054",
"name": "The Birth Machine ",
"rating": 3.917,
"author": "Quint",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1906",
"id": "1906",
"name": "Petrofied Remix ",
"rating": 3.917,
"author": "187-J4CK4L",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1949",
"id": "1949",
"name": "where fears collide ",
"rating": 3.917,
"author": "spirit",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:186",
"id": "186",
"name": "Fusion Plant ",
"rating": 3.914,
"author": "[uM]Greenthumb",
"num_votes": 76
},
{
"url": "https://lvlworld.com/media/id:801",
"id": "801",
"name": "Skylancer ",
"rating": 3.914,
"author": "Priv",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1342",
"id": "1342",
"name": "DSI:4.7 ",
"rating": 3.913,
"author": "evillair",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:295",
"id": "295",
"name": "RocknRoland ",
"rating": 3.912,
"author": "Binaryshi",
"num_votes": 71
},
{
"url": "https://lvlworld.com/media/id:1046",
"id": "1046",
"name": "The Guns Of Navarone ",
"rating": 3.91,
"author": "Quint",
"num_votes": 47
},
{
"url": "https://lvlworld.com/media/id:1251",
"id": "1251",
"name": "sparth ",
"rating": 3.909,
"author": "nunuk",
"num_votes": 44
},
{
"url": "https://lvlworld.com/media/id:1255",
"id": "1255",
"name": "Chickenteam CTF - Mappack 1 ",
"rating": 3.909,
"author": "Chickenteam",
"num_votes": 99
},
{
"url": "https://lvlworld.com/media/id:877",
"id": "877",
"name": "McKinley's Vengeance for TA ",
"rating": 3.909,
"author": "Eraser",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:325",
"id": "325",
"name": "Annoyance ",
"rating": 3.906,
"author": "Erlandr",
"num_votes": 93
},
{
"url": "https://lvlworld.com/media/id:855",
"id": "855",
"name": "In Hell I Born ",
"rating": 3.904,
"author": "IMMORTAL",
"num_votes": 39
},
{
"url": "https://lvlworld.com/media/id:1447",
"id": "1447",
"name": "Pigs Pit ",
"rating": 3.904,
"author": "occ|pigbomb",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:1158",
"id": "1158",
"name": "Jumping to Contusions ",
"rating": 3.903,
"author": "pjw",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:314",
"id": "314",
"name": "Once upon a Frag ",
"rating": 3.901,
"author": "Ygdrazil",
"num_votes": 43
},
{
"url": "https://lvlworld.com/media/id:869",
"id": "869",
"name": "peccary of destiny ",
"rating": 3.901,
"author": "unitool",
"num_votes": 86
},
{
"url": "https://lvlworld.com/media/id:306",
"id": "306",
"name": "The Call of Ktulu ",
"rating": 3.901,
"author": "Robert Muetzner",
"num_votes": 151
},
{
"url": "https://lvlworld.com/media/id:394",
"id": "394",
"name": "Sector5a ",
"rating": 3.899,
"author": "Bulldog",
"num_votes": 89
},
{
"url": "https://lvlworld.com/media/id:1153",
"id": "1153",
"name": "Stranglehold (FFA) ",
"rating": 3.898,
"author": "Jax_Gator",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:786",
"id": "786",
"name": "House of Shannara ",
"rating": 3.897,
"author": "Jax_Gator",
"num_votes": 73
},
{
"url": "https://lvlworld.com/media/id:1221",
"id": "1221",
"name": "Central Park ",
"rating": 3.896,
"author": "LooF",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:279",
"id": "279",
"name": "Outpost Omega ",
"rating": 3.896,
"author": "RENEGADE -187-",
"num_votes": 67
},
{
"url": "https://lvlworld.com/media/id:763",
"id": "763",
"name": "Eat Steak ",
"rating": 3.895,
"author": "Shallow[BAP]",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:470",
"id": "470",
"name": "Dead Simple (4) ",
"rating": 3.895,
"author": "[iF]Gonad",
"num_votes": 57
},
{
"url": "https://lvlworld.com/media/id:862",
"id": "862",
"name": "Alien Temple ",
"rating": 3.895,
"author": "EmaentrA",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:436",
"id": "436",
"name": "Apotheosis ",
"rating": 3.895,
"author": "Tulip",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:835",
"id": "835",
"name": "Grim Shores 2 ~ Devil's Island ",
"rating": 3.894,
"author": "Sir Fragalot",
"num_votes": 80
},
{
"url": "https://lvlworld.com/media/id:720",
"id": "720",
"name": "Aethernal Nights ",
"rating": 3.893,
"author": "nanoSpawn",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1466",
"id": "1466",
"name": "Bullet Ride (2) ",
"rating": 3.889,
"author": "Teddy",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:1995",
"id": "1995",
"name": "EADM Maps ",
"rating": 3.888,
"author": "Various",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1799",
"id": "1799",
"name": "tribute ",
"rating": 3.886,
"author": "redfella",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1397",
"id": "1397",
"name": "Pora umieraæ (Time to die) ",
"rating": 3.886,
"author": "ShadoW",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:117",
"id": "117",
"name": "Claustrophobopolis ",
"rating": 3.886,
"author": "Mike Zuber",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:734",
"id": "734",
"name": "Zero Hour ",
"rating": 3.885,
"author": "Juz",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:781",
"id": "781",
"name": "It's blue and it smells funny ",
"rating": 3.885,
"author": "Geit",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1331",
"id": "1331",
"name": "La Bastille ",
"rating": 3.884,
"author": "Sock",
"num_votes": 56
},
{
"url": "https://lvlworld.com/media/id:1756",
"id": "1756",
"name": "Full Moon - Team Edition ",
"rating": 3.883,
"author": "TymoN",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:2014",
"id": "2014",
"name": "canyafigureitout ",
"rating": 3.883,
"author": "NaturalSpringWater",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:2007",
"id": "2007",
"name": "Weird Wood ",
"rating": 3.882,
"author": "DaEngineer",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1222",
"id": "1222",
"name": "[ e v i l s p a c e ] ",
"rating": 3.881,
"author": "evillair",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:2043",
"id": "2043",
"name": "Battleforged ",
"rating": 3.881,
"author": "Phantazm11",
"num_votes": 44
},
{
"url": "https://lvlworld.com/media/id:765",
"id": "765",
"name": "Version 666 ",
"rating": 3.879,
"author": "Charon",
"num_votes": 68
},
{
"url": "https://lvlworld.com/media/id:1653",
"id": "1653",
"name": "XCM_Tricks2 ",
"rating": 3.878,
"author": "|XCM|SouL & b3nt",
"num_votes": 84
},
{
"url": "https://lvlworld.com/media/id:1752",
"id": "1752",
"name": "Emerge Station ",
"rating": 3.875,
"author": "RotaryFist.cz",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1421",
"id": "1421",
"name": "zaxxonia ",
"rating": 3.875,
"author": "<<<ALIEN>>>",
"num_votes": 58
},
{
"url": "https://lvlworld.com/media/id:783",
"id": "783",
"name": "Mission:Control! ",
"rating": 3.875,
"author": "lobster",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:986",
"id": "986",
"name": "the lost warriors ",
"rating": 3.875,
"author": "q3freak",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1345",
"id": "1345",
"name": "Hong Exploder ",
"rating": 3.875,
"author": "Wren Hong & Johnny Hong",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:2034",
"id": "2034",
"name": "Curse of the Liandri ",
"rating": 3.875,
"author": "Speaker",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:2053",
"id": "2053",
"name": "Sublevel Tokay ",
"rating": 3.872,
"author": "fKd",
"num_votes": 49
},
{
"url": "https://lvlworld.com/media/id:253",
"id": "253",
"name": "Tienial Talavista ",
"rating": 3.869,
"author": "DEZPERADO",
"num_votes": 84
},
{
"url": "https://lvlworld.com/media/id:938",
"id": "938",
"name": "AltarBeta ",
"rating": 3.869,
"author": "79DieselRabbit",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:2050",
"id": "2050",
"name": "The Altar ",
"rating": 3.867,
"author": "RotaryFist.cz",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1491",
"id": "1491",
"name": "Return to Castle: Quake ",
"rating": 3.867,
"author": "<|3FG20K>",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:872",
"id": "872",
"name": "Mice are Blue ",
"rating": 3.865,
"author": "Charon",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:669",
"id": "669",
"name": "Kummerfeld ",
"rating": 3.864,
"author": "eFDAT",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1703",
"id": "1703",
"name": "Through the glass darkly ",
"rating": 3.864,
"author": "dONKEY",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1330",
"id": "1330",
"name": "Cascade Rails ",
"rating": 3.861,
"author": "shadowland2000",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:767",
"id": "767",
"name": "Team Arena Map Pak #1 ",
"rating": 3.86,
"author": "Various",
"num_votes": 43
},
{
"url": "https://lvlworld.com/media/id:2063",
"id": "2063",
"name": "JUL32 ",
"rating": 3.86,
"author": "Julek",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:1271",
"id": "1271",
"name": "Propaganda ",
"rating": 3.86,
"author": "tequila",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:2005",
"id": "2005",
"name": "bball ",
"rating": 3.859,
"author": "NaturalSpringWater",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:766",
"id": "766",
"name": "Tribute to n1*dK ",
"rating": 3.858,
"author": "Druzli and xfoo",
"num_votes": 53
},
{
"url": "https://lvlworld.com/media/id:227",
"id": "227",
"name": "Schadenfreude CTF ",
"rating": 3.858,
"author": "Cornelius",
"num_votes": 144
},
{
"url": "https://lvlworld.com/media/id:1121",
"id": "1121",
"name": "Blobby Goo ",
"rating": 3.855,
"author": "Goo by Fusion",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1590",
"id": "1590",
"name": "Duel Arena ",
"rating": 3.854,
"author": "TymoN",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1047",
"id": "1047",
"name": "dead boy's poem ",
"rating": 3.854,
"author": "polo",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:400",
"id": "400",
"name": "Sanctus ",
"rating": 3.853,
"author": "fatmanfat",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1310",
"id": "1310",
"name": "Neorganic Epiphany ",
"rating": 3.851,
"author": "Dubbilan",
"num_votes": 52
},
{
"url": "https://lvlworld.com/media/id:422",
"id": "422",
"name": "Lunar Outpost ",
"rating": 3.85,
"author": "Yngwie",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:288",
"id": "288",
"name": "BDRA3 - Rail Arena ",
"rating": 3.847,
"author": "Bulldog",
"num_votes": 157
},
{
"url": "https://lvlworld.com/media/id:1090",
"id": "1090",
"name": "Der Mond ",
"rating": 3.846,
"author": "Psycotic",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:259",
"id": "259",
"name": "Space Odysseys 4 ",
"rating": 3.845,
"author": "Yuri Davidov",
"num_votes": 42
},
{
"url": "https://lvlworld.com/media/id:1097",
"id": "1097",
"name": "Ranger's Playground ",
"rating": 3.844,
"author": "hOlycOw",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:338",
"id": "338",
"name": "PadGarden ",
"rating": 3.842,
"author": "ENTE",
"num_votes": 38
},
{
"url": "https://lvlworld.com/media/id:651",
"id": "651",
"name": "SW3KL ",
"rating": 3.841,
"author": "Knight Lore''FC",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:452",
"id": "452",
"name": "Tourniquet ",
"rating": 3.84,
"author": "NiVeN",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:2028",
"id": "2028",
"name": "Blood Run tribute ",
"rating": 3.839,
"author": "Obsessed",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1120",
"id": "1120",
"name": "Pharaoh's Revenge ",
"rating": 3.839,
"author": "Dutch[K]",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:1525",
"id": "1525",
"name": "Blue Stone ",
"rating": 3.838,
"author": "TymoN",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1551",
"id": "1551",
"name": "Unofficial Map Pack 3 ",
"rating": 3.838,
"author": "Various",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1407",
"id": "1407",
"name": "Polaris ",
"rating": 3.833,
"author": "MopAn",
"num_votes": 90
},
{
"url": "https://lvlworld.com/media/id:1694",
"id": "1694",
"name": "Through with you ",
"rating": 3.833,
"author": "NemiX",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1763",
"id": "1763",
"name": "Knightmare Keep ",
"rating": 3.833,
"author": "ShadowZombie",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1064",
"id": "1064",
"name": "Mental Oasis ",
"rating": 3.833,
"author": "Bushboy",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:498",
"id": "498",
"name": "Body of DOOM ",
"rating": 3.833,
"author": "Cold",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1935",
"id": "1935",
"name": "Hypothermia ",
"rating": 3.833,
"author": "RotaryFist.cz",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:220",
"id": "220",
"name": "Tigger-oN Goes Q*bert ",
"rating": 3.833,
"author": "Tigger-oN",
"num_votes": 27
},
{
"url": "https://lvlworld.com/media/id:602",
"id": "602",
"name": "Broken Silence ",
"rating": 3.833,
"author": "Quaker-X",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:664",
"id": "664",
"name": "..::LvL Pack - The cream off the top ",
"rating": 3.831,
"author": "Various",
"num_votes": 59
},
{
"url": "https://lvlworld.com/media/id:729",
"id": "729",
"name": "A Forgotten Creed ",
"rating": 3.83,
"author": "Jherax",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:850",
"id": "850",
"name": "T I T A N S (Classic Edition) ",
"rating": 3.828,
"author": "Johnny Law",
"num_votes": 51
},
{
"url": "https://lvlworld.com/media/id:961",
"id": "961",
"name": "Offworld ",
"rating": 3.827,
"author": "[Kona]",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:392",
"id": "392",
"name": "q3newst1 ",
"rating": 3.827,
"author": "brutal1ty",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:2021",
"id": "2021",
"name": "Slipgate (2) ",
"rating": 3.825,
"author": "Nickster",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:381",
"id": "381",
"name": "r33t ownAge ",
"rating": 3.824,
"author": "Nathan Silvers",
"num_votes": 44
},
{
"url": "https://lvlworld.com/media/id:337",
"id": "337",
"name": "The Middle Of Nowhere ",
"rating": 3.824,
"author": "Ivan",
"num_votes": 51
},
{
"url": "https://lvlworld.com/media/id:845",
"id": "845",
"name": "spacemap-nkd ",
"rating": 3.823,
"author": "nakedape",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:736",
"id": "736",
"name": "All The Aces ",
"rating": 3.821,
"author": "SgtGhost & Wiebo de Wit",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1295",
"id": "1295",
"name": "Under The Hammer ",
"rating": 3.821,
"author": "IMMORTAL",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:187",
"id": "187",
"name": "Willpower ",
"rating": 3.821,
"author": "Spiike",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1897",
"id": "1897",
"name": "Bruce's Rail Yard ",
"rating": 3.821,
"author": "DIXOFT<ReMiX<",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:140",
"id": "140",
"name": "Cast Into Shadows ",
"rating": 3.818,
"author": "QuartZ",
"num_votes": 162
},
{
"url": "https://lvlworld.com/media/id:477",
"id": "477",
"name": "Old School ",
"rating": 3.817,
"author": "r_speeds",
"num_votes": 41
},
{
"url": "https://lvlworld.com/media/id:1657",
"id": "1657",
"name": "Fear Factory ",
"rating": 3.817,
"author": "MaGiC-WaLkEr",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:978",
"id": "978",
"name": "Dead Cells ",
"rating": 3.816,
"author": "Quaker-X",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:455",
"id": "455",
"name": "bullshit ",
"rating": 3.816,
"author": "DruZli",
"num_votes": 76
},
{
"url": "https://lvlworld.com/media/id:573",
"id": "573",
"name": "Stronghold Opposition ",
"rating": 3.813,
"author": "SithLord",
"num_votes": 87
},
{
"url": "https://lvlworld.com/media/id:798",
"id": "798",
"name": "Customs ",
"rating": 3.813,
"author": "Priv",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1326",
"id": "1326",
"name": "Nafley pack b1 ",
"rating": 3.813,
"author": "oNiCkz",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1485",
"id": "1485",
"name": "Ra3map1 OSP ",
"rating": 3.813,
"author": "Mortal",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:105",
"id": "105",
"name": "House by the cemetery ",
"rating": 3.813,
"author": "the cemetery by Gummo",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1826",
"id": "1826",
"name": "hellrazor ",
"rating": 3.813,
"author": "ROODOG",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:579",
"id": "579",
"name": "Use of Weapons ",
"rating": 3.811,
"author": "Decker",
"num_votes": 57
},
{
"url": "https://lvlworld.com/media/id:812",
"id": "812",
"name": "Darkpact duel - Pit of Despair ",
"rating": 3.809,
"author": "[DP] LoJiK",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1247",
"id": "1247",
"name": "Darkness of Christ ",
"rating": 3.809,
"author": "ALMighty",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1086",
"id": "1086",
"name": "Return To Atlantis ",
"rating": 3.808,
"author": "Imric",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1208",
"id": "1208",
"name": "Journey ",
"rating": 3.808,
"author": "[Kona]",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1478",
"id": "1478",
"name": "Arena of Despair ",
"rating": 3.806,
"author": "guile09",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:668",
"id": "668",
"name": "Bad Mojo ",
"rating": 3.806,
"author": "GONNAKILLYA!",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:77",
"id": "77",
"name": "wdf ",
"rating": 3.806,
"author": "WEB DESIGN FACTORY",
"num_votes": 54
},
{
"url": "https://lvlworld.com/media/id:787",
"id": "787",
"name": "Curved Space ",
"rating": 3.804,
"author": "Kommissar",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:387",
"id": "387",
"name": "Gotham ",
"rating": 3.803,
"author": "dur",
"num_votes": 66
},
{
"url": "https://lvlworld.com/media/id:1355",
"id": "1355",
"name": "Maximum Carnage ",
"rating": 3.803,
"author": "}{ammer",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1182",
"id": "1182",
"name": "The Wisdom Machine ",
"rating": 3.8,
"author": "Quint",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1405",
"id": "1405",
"name": "Asteroid ",
"rating": 3.8,
"author": "Dodo",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1705",
"id": "1705",
"name": "Full Moon ",
"rating": 3.8,
"author": "TymoN",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:154",
"id": "154",
"name": "Invitation to Darkness ",
"rating": 3.8,
"author": "Rafal Szkolnicki *> DeV <*",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:924",
"id": "924",
"name": "The Chastity Belt Duel ",
"rating": 3.797,
"author": "JaLisk0",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:567",
"id": "567",
"name": "Crossed Paths ",
"rating": 3.797,
"author": "Drunken Boxer",
"num_votes": 106
},
{
"url": "https://lvlworld.com/media/id:987",
"id": "987",
"name": "Deep Space 1 ",
"rating": 3.797,
"author": "cyberhazard",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:797",
"id": "797",
"name": "Vertigo ",
"rating": 3.794,
"author": "Sai-KO",
"num_votes": 45
},
{
"url": "https://lvlworld.com/media/id:1856",
"id": "1856",
"name": "Derazor Arena ",
"rating": 3.794,
"author": "Pasquake",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:966",
"id": "966",
"name": "Source of Agony ",
"rating": 3.792,
"author": "Alcatraz",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:508",
"id": "508",
"name": "Close to the Edge ",
"rating": 3.792,
"author": "Binary Arts Software",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:2083",
"id": "2083",
"name": "A tight little Italian ",
"rating": 3.79,
"author": "dONKEY",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:1660",
"id": "1660",
"name": "Optimal - Ishii ",
"rating": 3.788,
"author": "ydnar",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1623",
"id": "1623",
"name": "Gravity Lab ",
"rating": 3.786,
"author": "Anton",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:834",
"id": "834",
"name": "McKinley's Vengeance ",
"rating": 3.786,
"author": "Eraser",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:545",
"id": "545",
"name": "Dynatron ",
"rating": 3.784,
"author": "Ned Man",
"num_votes": 82
},
{
"url": "https://lvlworld.com/media/id:509",
"id": "509",
"name": "An Iteration of Hell ",
"rating": 3.781,
"author": "Hal9000",
"num_votes": 80
},
{
"url": "https://lvlworld.com/media/id:661",
"id": "661",
"name": "footyctf ",
"rating": 3.779,
"author": "slight",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:185",
"id": "185",
"name": "The Bad Place (2) ",
"rating": 3.779,
"author": "Mike Zuber",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:469",
"id": "469",
"name": "Harsh Grounds ",
"rating": 3.776,
"author": "Beefster",
"num_votes": 172
},
{
"url": "https://lvlworld.com/media/id:347",
"id": "347",
"name": "Arena of Death ",
"rating": 3.775,
"author": "Gamma",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:654",
"id": "654",
"name": "White Noise - F3 Edition ",
"rating": 3.774,
"author": "Publius",
"num_votes": 63
},
{
"url": "https://lvlworld.com/media/id:1105",
"id": "1105",
"name": "Dead Simple (5) ",
"rating": 3.771,
"author": "BerneyBoy",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1808",
"id": "1808",
"name": "Last Minutes Of Pompeii ",
"rating": 3.771,
"author": "aVe",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1867",
"id": "1867",
"name": "World of Nihilism ",
"rating": 3.771,
"author": "Vymmiatacz",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:40",
"id": "40",
"name": "Fog in Hell ",
"rating": 3.769,
"author": "Matt Sefton",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:849",
"id": "849",
"name": "Clavious ",
"rating": 3.769,
"author": "Hal9000",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:380",
"id": "380",
"name": "A Dark Secret ",
"rating": 3.768,
"author": "PowZeR",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1952",
"id": "1952",
"name": "Hyperblast-q3 ",
"rating": 3.768,
"author": "FluSyndrome",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1079",
"id": "1079",
"name": "Bridging the Gap ",
"rating": 3.768,
"author": "Hr.O",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1133",
"id": "1133",
"name": "WTF-Q3A ",
"rating": 3.767,
"author": "BerneyBoy",
"num_votes": 58
},
{
"url": "https://lvlworld.com/media/id:2009",
"id": "2009",
"name": "Still Alive ",
"rating": 3.767,
"author": "Requiem",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:1821",
"id": "1821",
"name": "Gormenghast ",
"rating": 3.767,
"author": "zyg0t3",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:678",
"id": "678",
"name": "Worlds Apart ",
"rating": 3.767,
"author": "Munyul Verminard",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:540",
"id": "540",
"name": "mountain64 ",
"rating": 3.765,
"author": "sedric",
"num_votes": 66
},
{
"url": "https://lvlworld.com/media/id:263",
"id": "263",
"name": "Eighty Tons ",
"rating": 3.76,
"author": "Shmitz",
"num_votes": 103
},
{
"url": "https://lvlworld.com/media/id:1859",
"id": "1859",
"name": "Otherworld ",
"rating": 3.76,
"author": "thefury",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:1857",
"id": "1857",
"name": "aim_map ",
"rating": 3.75,
"author": "Bliccer",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2037",
"id": "2037",
"name": "Hipertrofia ",
"rating": 3.75,
"author": "ShadoW",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:93",
"id": "93",
"name": "The Ring of Bone ",
"rating": 3.75,
"author": "Riscchip",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:934",
"id": "934",
"name": "15 Days to BoilerMaker ",
"rating": 3.75,
"author": "Monsto Brukes",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:613",
"id": "613",
"name": "Devonaire ",
"rating": 3.75,
"author": "[Kona]",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:851",
"id": "851",
"name": "T I T A N S (TA Edition) ",
"rating": 3.75,
"author": "Johnny Law",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1021",
"id": "1021",
"name": "Wall of Cement ",
"rating": 3.75,
"author": "NULL",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1186",
"id": "1186",
"name": "Rubic's Back and He's Pissed! ",
"rating": 3.75,
"author": "RaiLBaiT! -DMU-",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1647",
"id": "1647",
"name": "necro4 ",
"rating": 3.75,
"author": "NecrosiS",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1036",
"id": "1036",
"name": "Anticipating Oblivion ",
"rating": 3.75,
"author": "Charon",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:1508",
"id": "1508",
"name": "foolish legacy ",
"rating": 3.744,
"author": "swelt",
"num_votes": 42
},
{
"url": "https://lvlworld.com/media/id:1214",
"id": "1214",
"name": "roquefort ",
"rating": 3.743,
"author": "Zippie",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1998",
"id": "1998",
"name": "Lifeline ",
"rating": 3.743,
"author": "Mikko Sandt",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:372",
"id": "372",
"name": "Fast and Furious ",
"rating": 3.74,
"author": "}{ammer",
"num_votes": 73
},
{
"url": "https://lvlworld.com/media/id:362",
"id": "362",
"name": "The LC Divide ",
"rating": 3.74,
"author": "[LC]d3CIb3L",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:171",
"id": "171",
"name": "Vanishing Hope ",
"rating": 3.739,
"author": "[uM]Greenthumb",
"num_votes": 70
},
{
"url": "https://lvlworld.com/media/id:2038",
"id": "2038",
"name": "chlorophyl ",
"rating": 3.738,
"author": "acid",
"num_votes": 41
},
{
"url": "https://lvlworld.com/media/id:303",
"id": "303",
"name": "Public Execution ",
"rating": 3.737,
"author": "Ricochet",
"num_votes": 75
},
{
"url": "https://lvlworld.com/media/id:2018",
"id": "2018",
"name": "Monsoon by Lukin (xtn's remix) ",
"rating": 3.736,
"author": "Lukin (xtn's remix) by extone",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:645",
"id": "645",
"name": "Shadowlands ",
"rating": 3.735,
"author": "Charon",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:627",
"id": "627",
"name": "Boiling Mercury ",
"rating": 3.734,
"author": "GrindSpire",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:620",
"id": "620",
"name": "Stigmata ",
"rating": 3.734,
"author": "Behemoth",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1045",
"id": "1045",
"name": "Foreshadows CTF ",
"rating": 3.734,
"author": "Dragonne{TRIAD}",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:100",
"id": "100",
"name": "Two Halves ",
"rating": 3.734,
"author": "Suicide20",
"num_votes": 61
},
{
"url": "https://lvlworld.com/media/id:18",
"id": "18",
"name": "Lots O' Frags ",
"rating": 3.733,
"author": "Quaker-X",
"num_votes": 45
},
{
"url": "https://lvlworld.com/media/id:769",
"id": "769",
"name": "Heartburn ",
"rating": 3.731,
"author": "[MNKY]AkaokA",
"num_votes": 39
},
{
"url": "https://lvlworld.com/media/id:1357",
"id": "1357",
"name": "Walk Don't Run ",
"rating": 3.731,
"author": "wviperw",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1024",
"id": "1024",
"name": "Flatiron ",
"rating": 3.73,
"author": "Snickelfritz",
"num_votes": 63
},
{
"url": "https://lvlworld.com/media/id:329",
"id": "329",
"name": "INTENSE! ",
"rating": 3.73,
"author": "David Davidson",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:264",
"id": "264",
"name": "Grazer Station ",
"rating": 3.729,
"author": "Johnny Law",
"num_votes": 146
},
{
"url": "https://lvlworld.com/media/id:1594",
"id": "1594",
"name": "overBounce ",
"rating": 3.729,
"author": "Dim_Walker",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:151",
"id": "151",
"name": "We all need hope! ",
"rating": 3.729,
"author": "Spiike",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:71",
"id": "71",
"name": "Castles Arrrghhh ",
"rating": 3.728,
"author": "John E. Schuch",
"num_votes": 125
},
{
"url": "https://lvlworld.com/media/id:583",
"id": "583",
"name": "Until The End Of Time ",
"rating": 3.727,
"author": "[Kona]",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1259",
"id": "1259",
"name": "Fatal Fastness ",
"rating": 3.727,
"author": "Q",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1901",
"id": "1901",
"name": "\"Rocket\" Arena ",
"rating": 3.727,
"author": "remnent",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1069",
"id": "1069",
"name": "Space Jam 2 ",
"rating": 3.724,
"author": "}{ammer",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:555",
"id": "555",
"name": "E1M7-ish III ",
"rating": 3.722,
"author": "Sub-Zero",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:621",
"id": "621",
"name": "Iron Oxide ",
"rating": 3.722,
"author": "Killer",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:352",
"id": "352",
"name": "Over Under ",
"rating": 3.72,
"author": "TwitchFactor",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:286",
"id": "286",
"name": "The Court of the Vadrigar ",
"rating": 3.719,
"author": "Harrynator",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:1190",
"id": "1190",
"name": "xdm4 ",
"rating": 3.719,
"author": "x0r",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:371",
"id": "371",
"name": "Camel-Camel CTF ",
"rating": 3.717,
"author": "MeNtHoL",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:589",
"id": "589",
"name": "Blasted Acid ",
"rating": 3.717,
"author": "GrindSpire",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1872",
"id": "1872",
"name": "Till the end ",
"rating": 3.717,
"author": "Pasquake",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:23",
"id": "23",
"name": "Midnight Requiem ",
"rating": 3.716,
"author": "Papa",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:124",
"id": "124",
"name": "The Keep ",
"rating": 3.715,
"author": "Legarto",
"num_votes": 230
},
{
"url": "https://lvlworld.com/media/id:865",
"id": "865",
"name": "Cellular Rage ",
"rating": 3.714,
"author": "pjw",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:1940",
"id": "1940",
"name": "Let Me Go ",
"rating": 3.714,
"author": "DOOMer",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:319",
"id": "319",
"name": "Reloader ",
"rating": 3.712,
"author": "WaSp",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:606",
"id": "606",
"name": "Deadly Grounds ",
"rating": 3.712,
"author": "Killazontherun",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:190",
"id": "190",
"name": "Golgotha Core ",
"rating": 3.711,
"author": "PowZeR",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:1620",
"id": "1620",
"name": "Wysokie napiêcie II ",
"rating": 3.708,
"author": "ShadoW",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1176",
"id": "1176",
"name": "RODEZ ",
"rating": 3.707,
"author": "SilverClem",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:881",
"id": "881",
"name": "PC Gamer presents PadShop ",
"rating": 3.707,
"author": "ENTE",
"num_votes": 81
},
{
"url": "https://lvlworld.com/media/id:1109",
"id": "1109",
"name": "Deimos ",
"rating": 3.705,
"author": "Jax_Gator",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:1164",
"id": "1164",
"name": "Lunar Landings ",
"rating": 3.703,
"author": "Scancode",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:572",
"id": "572",
"name": "The Practice of Bleeding ",
"rating": 3.703,
"author": "Mr.Lake",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:967",
"id": "967",
"name": "The Abandoned Crate ",
"rating": 3.703,
"author": "Unitool",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:743",
"id": "743",
"name": "Davinci ",
"rating": 3.703,
"author": "WaSp",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:806",
"id": "806",
"name": "Hydropain ",
"rating": 3.702,
"author": "Beefster",
"num_votes": 42
},
{
"url": "https://lvlworld.com/media/id:2022",
"id": "2022",
"name": "Sublevel 27 ",
"rating": 3.701,
"author": "fKd",
"num_votes": 36
},
{
"url": "https://lvlworld.com/media/id:557",
"id": "557",
"name": "The Kristall Keep ",
"rating": 3.7,
"author": "Q-Fraggel",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:955",
"id": "955",
"name": "Operation: MINDCRIME ",
"rating": 3.7,
"author": "RivrStyx",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1091",
"id": "1091",
"name": "Q3Pacman ",
"rating": 3.696,
"author": "CuBeBoY",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:590",
"id": "590",
"name": "Crippled Ice-Cubes ",
"rating": 3.696,
"author": "DeFrag[SK]",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:123",
"id": "123",
"name": "metro ",
"rating": 3.694,
"author": "Bauul",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:1658",
"id": "1658",
"name": ",,Bleach'' ",
"rating": 3.691,
"author": "MaGiC-WaLKeR",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:541",
"id": "541",
"name": "Whatever ",
"rating": 3.69,
"author": "vedder",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1565",
"id": "1565",
"name": "Spirit Of The Age ",
"rating": 3.688,
"author": "187-J4CK4L",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1851",
"id": "1851",
"name": "The New Sorrow ",
"rating": 3.688,
"author": "Mr.Lake",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:2106",
"id": "2106",
"name": "Orichalciane ",
"rating": 3.688,
"author": "Scorn",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:609",
"id": "609",
"name": "DeathMatch [bbB] ",
"rating": 3.688,
"author": "Bomerlunder",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1267",
"id": "1267",
"name": "WTF-Q3A-v2 ",
"rating": 3.687,
"author": "Various",
"num_votes": 79
},
{
"url": "https://lvlworld.com/media/id:701",
"id": "701",
"name": "Wicked (cpm1a) ",
"rating": 3.687,
"author": "FxR|jude and Decker",
"num_votes": 67
},
{
"url": "https://lvlworld.com/media/id:1094",
"id": "1094",
"name": "Giants Among Us ",
"rating": 3.684,
"author": "ButterB",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1080",
"id": "1080",
"name": "Bouncin 'Tween Da Boxen ",
"rating": 3.683,
"author": "BadMonkey",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:419",
"id": "419",
"name": "Steel Belted! ",
"rating": 3.683,
"author": "ShoveL",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1753",
"id": "1753",
"name": "Tokay's Tourney ",
"rating": 3.679,
"author": "=PiT=Leone",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:965",
"id": "965",
"name": "Leviathan ",
"rating": 3.679,
"author": "MopAn",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:2046",
"id": "2046",
"name": "SubAir Reloaded ",
"rating": 3.679,
"author": "DaEngineer",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:261",
"id": "261",
"name": "ThreeWave Textures ",
"rating": 3.677,
"author": "ThreeWave / LvL",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1063",
"id": "1063",
"name": "Bullet Ride ",
"rating": 3.675,
"author": "Qthulu",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:832",
"id": "832",
"name": "Palingenesis [bbB] ",
"rating": 3.675,
"author": "Bomerlunder",
"num_votes": 40
},
{
"url": "https://lvlworld.com/media/id:462",
"id": "462",
"name": "Tubular Transport ",
"rating": 3.673,
"author": "Alchemist",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1236",
"id": "1236",
"name": "Deeper blue ",
"rating": 3.673,
"author": "blemish",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:1264",
"id": "1264",
"name": "Petty Larceny ",
"rating": 3.671,
"author": "Felonious",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:726",
"id": "726",
"name": "on an all game radio ",
"rating": 3.669,
"author": "Scampie",
"num_votes": 40
},
{
"url": "https://lvlworld.com/media/id:99",
"id": "99",
"name": "The Malevolent Cathedral ",
"rating": 3.667,
"author": "Inflict",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:1975",
"id": "1975",
"name": "Destroyer ",
"rating": 3.662,
"author": "ShadoW",
"num_votes": 37
},
{
"url": "https://lvlworld.com/media/id:564",
"id": "564",
"name": "MonkeyMadness ",
"rating": 3.662,
"author": "GONNAKILLYA!",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1787",
"id": "1787",
"name": "Malfunctioning Nano-Constructor ",
"rating": 3.662,
"author": "Bal",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1611",
"id": "1611",
"name": "2thecore pack 1 ",
"rating": 3.659,
"author": "Idolator",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1668",
"id": "1668",
"name": "Pacemaker ",
"rating": 3.659,
"author": "redfella",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:776",
"id": "776",
"name": "XENON ",
"rating": 3.659,
"author": "WEXAL",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:393",
"id": "393",
"name": "CV DM ",
"rating": 3.659,
"author": "TokeNter",
"num_votes": 41
},
{
"url": "https://lvlworld.com/media/id:1873",
"id": "1873",
"name": "Processor ",
"rating": 3.656,
"author": "Pasquake",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1987",
"id": "1987",
"name": "Simple brushes ",
"rating": 3.656,
"author": "ShadoW",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1939",
"id": "1939",
"name": "XPRESS YOUR IMAGINATION 3 ",
"rating": 3.655,
"author": "AmonG0D",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:118",
"id": "118",
"name": "q3jdm9 ",
"rating": 3.654,
"author": "FxR|jude",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:37",
"id": "37",
"name": "Claustrophobopolis - The Return ",
"rating": 3.654,
"author": "shizbaz",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:150",
"id": "150",
"name": "I Like Your Hair Long ",
"rating": 3.65,
"author": "vedder",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:201",
"id": "201",
"name": "BD Tourney 1 ",
"rating": 3.65,
"author": "Bulldog",
"num_votes": 30
},
{
"url": "https://lvlworld.com/media/id:463",
"id": "463",
"name": "Coral ctf ",
"rating": 3.65,
"author": "Willow",
"num_votes": 45
},
{
"url": "https://lvlworld.com/media/id:673",
"id": "673",
"name": "Post-industrial? ",
"rating": 3.648,
"author": "G A Z E B O",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:1275",
"id": "1275",
"name": "Harder Than Hate ",
"rating": 3.647,
"author": "pjw",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:63",
"id": "63",
"name": "Opposing Platforms ",
"rating": 3.647,
"author": "RedLick",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:535",
"id": "535",
"name": "God told me to ",
"rating": 3.646,
"author": "Gummo",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:539",
"id": "539",
"name": "PadSpace ",
"rating": 3.646,
"author": "ENTE",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:711",
"id": "711",
"name": "Q3NGI Arena2 ",
"rating": 3.646,
"author": "Kit Carson",
"num_votes": 36
},
{
"url": "https://lvlworld.com/media/id:242",
"id": "242",
"name": "Mario Arena ",
"rating": 3.645,
"author": "Pen-Pen",
"num_votes": 43
},
{
"url": "https://lvlworld.com/media/id:343",
"id": "343",
"name": "Chronic ",
"rating": 3.645,
"author": "MasterPlan",
"num_votes": 179
},
{
"url": "https://lvlworld.com/media/id:1670",
"id": "1670",
"name": "Beyond Reality II ",
"rating": 3.645,
"author": "id Software",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:241",
"id": "241",
"name": "Stairway to Heaven ",
"rating": 3.643,
"author": "Itchy",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:290",
"id": "290",
"name": "PadCenter ",
"rating": 3.641,
"author": "ENTE",
"num_votes": 87
},
{
"url": "https://lvlworld.com/media/id:61",
"id": "61",
"name": "Maximum Chaos ",
"rating": 3.64,
"author": "TwitchFactor",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:169",
"id": "169",
"name": "Undeniable Opression ",
"rating": 3.64,
"author": "Suicide20",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:29",
"id": "29",
"name": "grey matter ",
"rating": 3.638,
"author": "zippie",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:1739",
"id": "1739",
"name": "Everything Else Is Green ",
"rating": 3.636,
"author": "Fjoggs",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1010",
"id": "1010",
"name": "New World Disorder ",
"rating": 3.636,
"author": "Cart2K",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1335",
"id": "1335",
"name": "Doghouse ",
"rating": 3.636,
"author": "Sara",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1362",
"id": "1362",
"name": "Palindrome ",
"rating": 3.635,
"author": "Hal9000",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:534",
"id": "534",
"name": "Acacias Crimson Laboratorie ",
"rating": 3.634,
"author": "cyberhazard",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:893",
"id": "893",
"name": "Space BattleGround ",
"rating": 3.632,
"author": "SamaeL",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:135",
"id": "135",
"name": "SiNdm9 ",
"rating": 3.631,
"author": "Jon",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:507",
"id": "507",
"name": "SpaceZone1 ",
"rating": 3.63,
"author": "Bill Brooks",
"num_votes": 27
},
{
"url": "https://lvlworld.com/media/id:302",
"id": "302",
"name": "Devolved CTF v.2 ",
"rating": 3.628,
"author": "mexx",
"num_votes": 137
},
{
"url": "https://lvlworld.com/media/id:688",
"id": "688",
"name": "stairs of hell ",
"rating": 3.627,
"author": "IMMORTAL",
"num_votes": 53
},
{
"url": "https://lvlworld.com/media/id:675",
"id": "675",
"name": "Morphium Seeky ",
"rating": 3.625,
"author": "Riscchip",
"num_votes": 42
},
{
"url": "https://lvlworld.com/media/id:1801",
"id": "1801",
"name": "the GrimSpa[e (v1.1) ",
"rating": 3.625,
"author": "the_nookie",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1993",
"id": "1993",
"name": "brickyard ",
"rating": 3.625,
"author": "NaturalSpringWater",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:2077",
"id": "2077",
"name": "The Dreadful Place ",
"rating": 3.625,
"author": "ShadoW",
"num_votes": 54
},
{
"url": "https://lvlworld.com/media/id:2013",
"id": "2013",
"name": "Nova Fortress ",
"rating": 3.618,
"author": "DaEngineer",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:959",
"id": "959",
"name": "Dracula ",
"rating": 3.618,
"author": "Priv",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:520",
"id": "520",
"name": "Big Tobacco ",
"rating": 3.617,
"author": "Riscchip",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1022",
"id": "1022",
"name": "Under Pressure ",
"rating": 3.615,
"author": "Turbo",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:389",
"id": "389",
"name": "ESQ3DM1 ",
"rating": 3.615,
"author": "Etienne Smith",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1888",
"id": "1888",
"name": "DESP-DM2 ",
"rating": 3.614,
"author": "D3$P3R4D0",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2003",
"id": "2003",
"name": "Grease Lightning ",
"rating": 3.614,
"author": "headrot",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:983",
"id": "983",
"name": "between the conduits ",
"rating": 3.613,
"author": "q3freak",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:824",
"id": "824",
"name": "doom_v19 ",
"rating": 3.611,
"author": "id Software",
"num_votes": 45
},
{
"url": "https://lvlworld.com/media/id:1383",
"id": "1383",
"name": "Skytown II ",
"rating": 3.61,
"author": "Anton",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:397",
"id": "397",
"name": "Goths in Space ",
"rating": 3.609,
"author": "Lunachick",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1203",
"id": "1203",
"name": "Turtle Speedmap #2 ",
"rating": 3.609,
"author": "Various",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:384",
"id": "384",
"name": "FastWay to Die!! ",
"rating": 3.609,
"author": "SLoB",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:258",
"id": "258",
"name": "Oblivion Temple ",
"rating": 3.605,
"author": "ShoveL",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:305",
"id": "305",
"name": "Delirium ",
"rating": 3.604,
"author": "Gummo",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1674",
"id": "1674",
"name": "Just bring it ",
"rating": 3.6,
"author": "Mj",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:379",
"id": "379",
"name": "The Q3 Hivebrain experience ",
"rating": 3.598,
"author": "Rokscott",
"num_votes": 64
},
{
"url": "https://lvlworld.com/media/id:1517",
"id": "1517",
"name": "Sleep to Dream ",
"rating": 3.596,
"author": "amethyst7",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:792",
"id": "792",
"name": "Mostly Harmless ",
"rating": 3.594,
"author": "Hal9000",
"num_votes": 53
},
{
"url": "https://lvlworld.com/media/id:656",
"id": "656",
"name": "Complication ",
"rating": 3.592,
"author": "spike-",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1399",
"id": "1399",
"name": "The Bad Place (3) ",
"rating": 3.591,
"author": "SpAwN",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1710",
"id": "1710",
"name": "The Gantlet ",
"rating": 3.583,
"author": "..::WHAT!?",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1685",
"id": "1685",
"name": "eulogy ",
"rating": 3.583,
"author": "jex",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1175",
"id": "1175",
"name": "Beneath the Remains ",
"rating": 3.583,
"author": "StormShadow",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:272",
"id": "272",
"name": "Ministry of Death (v3) ",
"rating": 3.583,
"author": "Snotman",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:94",
"id": "94",
"name": "GrayLiotta ",
"rating": 3.579,
"author": "Slowtreme",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1544",
"id": "1544",
"name": "Apocalypse ",
"rating": 3.578,
"author": "Burnz and Moze",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:402",
"id": "402",
"name": "final shutdown ",
"rating": 3.577,
"author": "RainmanTD",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1855",
"id": "1855",
"name": "exit the Fa[tory ",
"rating": 3.577,
"author": "the_nookie",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:748",
"id": "748",
"name": "Time2Fly ",
"rating": 3.577,
"author": "Binaryshi",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:301",
"id": "301",
"name": "Can I Take It To The Bridge? (2nd Ed) ",
"rating": 3.575,
"author": "Pax",
"num_votes": 159
},
{
"url": "https://lvlworld.com/media/id:277",
"id": "277",
"name": "Well of Mortality ",
"rating": 3.575,
"author": "Shmitz",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:448",
"id": "448",
"name": "Genom Warehouse [DM Edition] ",
"rating": 3.575,
"author": "W2k",
"num_votes": 67
},
{
"url": "https://lvlworld.com/media/id:344",
"id": "344",
"name": "Space Confusion ",
"rating": 3.573,
"author": "rockN79",
"num_votes": 41
},
{
"url": "https://lvlworld.com/media/id:269",
"id": "269",
"name": "Drastic City ",
"rating": 3.57,
"author": "Fubar",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:271",
"id": "271",
"name": "Event Horizont ",
"rating": 3.569,
"author": "KODIAK",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:1921",
"id": "1921",
"name": "subdm8 ",
"rating": 3.568,
"author": "subst",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:193",
"id": "193",
"name": "Halven ",
"rating": 3.567,
"author": "Neo Cerberus",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:84",
"id": "84",
"name": "Last Rites ",
"rating": 3.566,
"author": "Mr.CleaN",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1986",
"id": "1986",
"name": "Hypercube 13 ",
"rating": 3.565,
"author": "sst13",
"num_votes": 42
},
{
"url": "https://lvlworld.com/media/id:476",
"id": "476",
"name": "Twisted Palace of Hate ",
"rating": 3.565,
"author": "Sock",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:488",
"id": "488",
"name": "Halls of Death ",
"rating": 3.563,
"author": "Castle",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:505",
"id": "505",
"name": "Cathedral of Chaos ",
"rating": 3.563,
"author": "Nickster",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:972",
"id": "972",
"name": "Butchered Creatures ",
"rating": 3.563,
"author": "[Kona]",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:418",
"id": "418",
"name": "Smokem ",
"rating": 3.563,
"author": "Z_Buffer",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:740",
"id": "740",
"name": "Major Pain ",
"rating": 3.559,
"author": "RKone",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:907",
"id": "907",
"name": "Roomdm ",
"rating": 3.558,
"author": "MopAn",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1473",
"id": "1473",
"name": "Temple Of Solstice ",
"rating": 3.558,
"author": "Requiem",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:85",
"id": "85",
"name": "Face To Fate ",
"rating": 3.557,
"author": "Peej",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:915",
"id": "915",
"name": "colo2001 ",
"rating": 3.554,
"author": "Tirmex vel Yeltzyn",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1151",
"id": "1151",
"name": "Dark Castle ",
"rating": 3.554,
"author": "Jan Janele",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:439",
"id": "439",
"name": "Voodoo's Revenge ",
"rating": 3.55,
"author": "JonTart",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1479",
"id": "1479",
"name": "Turtlemap 5 ",
"rating": 3.55,
"author": "Various",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:368",
"id": "368",
"name": "The Gate of Dreams ",
"rating": 3.546,
"author": "Prophet",
"num_votes": 27
},
{
"url": "https://lvlworld.com/media/id:212",
"id": "212",
"name": "DooBall's CTF Pack ",
"rating": 3.545,
"author": "DooBall",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:717",
"id": "717",
"name": "Skeet Rip ",
"rating": 3.545,
"author": "Casey",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:485",
"id": "485",
"name": "Hells Left Nut ",
"rating": 3.545,
"author": "Castle",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1776",
"id": "1776",
"name": "wolfenwinter ",
"rating": 3.545,
"author": "ROODOG",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:196",
"id": "196",
"name": "Gutterland_CTF ",
"rating": 3.544,
"author": "Gutterman",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:170",
"id": "170",
"name": "A Very Bad Place ",
"rating": 3.543,
"author": "PowZeR",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1253",
"id": "1253",
"name": "Forgivable Sins ",
"rating": 3.542,
"author": "SLoB",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1426",
"id": "1426",
"name": "LDAQ3A06DM ",
"rating": 3.542,
"author": "Lee David Ash",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1390",
"id": "1390",
"name": "Q3W Newbiecomp ",
"rating": 3.539,
"author": "Various",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:19",
"id": "19",
"name": "Garden Satanica ",
"rating": 3.536,
"author": "PrimeviL",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:260",
"id": "260",
"name": "The Haunting ",
"rating": 3.536,
"author": "BodyCounter [APS]",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:2032",
"id": "2032",
"name": "Rat Race ",
"rating": 3.535,
"author": "headrot",
"num_votes": 36
},
{
"url": "https://lvlworld.com/media/id:1103",
"id": "1103",
"name": "fraghouse ",
"rating": 3.533,
"author": "apfrag",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:322",
"id": "322",
"name": "Dead Simple (2) ",
"rating": 3.531,
"author": "KODIAK",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1119",
"id": "1119",
"name": "Team Temple (Q3A) ",
"rating": 3.53,
"author": "BerneyBoy",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:249",
"id": "249",
"name": "Gauntlet III ",
"rating": 3.526,
"author": "Equino-x Forever",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:366",
"id": "366",
"name": "The Old Neighborhood ",
"rating": 3.526,
"author": "QuartZ",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:152",
"id": "152",
"name": "Clockwerks ",
"rating": 3.525,
"author": "Timewax*HUNTER*",
"num_votes": 40
},
{
"url": "https://lvlworld.com/media/id:320",
"id": "320",
"name": "HeadsAb! ",
"rating": 3.524,
"author": "DrWildPet",
"num_votes": 124
},
{
"url": "https://lvlworld.com/media/id:1220",
"id": "1220",
"name": "DustRun ",
"rating": 3.523,
"author": "*papri-K*",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1076",
"id": "1076",
"name": "Kiss Of Death ",
"rating": 3.522,
"author": "Jax_Gator",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:1087",
"id": "1087",
"name": "otown ",
"rating": 3.521,
"author": "fuel",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:700",
"id": "700",
"name": "Midnights Possession ",
"rating": 3.521,
"author": "Christopher (killer) Miller",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:774",
"id": "774",
"name": "Metro (2) ",
"rating": 3.521,
"author": "Priv",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:529",
"id": "529",
"name": "Welcome Home ",
"rating": 3.519,
"author": "Wolfen",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:130",
"id": "130",
"name": "Air Superiority ",
"rating": 3.519,
"author": "Catalyst",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:706",
"id": "706",
"name": "Big Mix ",
"rating": 3.519,
"author": "RainmanTD",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1971",
"id": "1971",
"name": "What's That Smell? ",
"rating": 3.519,
"author": "Nickster",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:104",
"id": "104",
"name": "Recursive Shutdown ",
"rating": 3.518,
"author": "GrindSpire",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:293",
"id": "293",
"name": "THE CAGE ",
"rating": 3.518,
"author": "FUNATIC",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:176",
"id": "176",
"name": "The Edge of Oblivion ",
"rating": 3.515,
"author": "Mike Zuber",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:313",
"id": "313",
"name": "The Tas Tier v1.1 ",
"rating": 3.514,
"author": "Arcane & Krusty",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:318",
"id": "318",
"name": "Life Functions Critical ",
"rating": 3.513,
"author": "Dilvish",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:211",
"id": "211",
"name": "AntiLogic ",
"rating": 3.51,
"author": "Zoid",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:871",
"id": "871",
"name": "Jump ",
"rating": 3.51,
"author": "Spank",
"num_votes": 149
},
{
"url": "https://lvlworld.com/media/id:925",
"id": "925",
"name": "Outpost 0240 ",
"rating": 3.5,
"author": "Akuma",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:611",
"id": "611",
"name": "The Shiny Cage ",
"rating": 3.5,
"author": "uoz",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1169",
"id": "1169",
"name": "unlimited ",
"rating": 3.5,
"author": "Rebel Assault",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1180",
"id": "1180",
"name": "Space BattleGround Pro ",
"rating": 3.5,
"author": "Qd",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:716",
"id": "716",
"name": "Duck Hunt ",
"rating": 3.5,
"author": "g1zm0",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1916",
"id": "1916",
"name": "q30dm1 ",
"rating": 3.5,
"author": "*ZeRo*",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:435",
"id": "435",
"name": "House of the Rising Sun ",
"rating": 3.492,
"author": "r_speeds",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:125",
"id": "125",
"name": "The Abandoned Base III ",
"rating": 3.489,
"author": "Obi-Wan",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:136",
"id": "136",
"name": "Keepers Bridge ",
"rating": 3.485,
"author": "Thred",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:2020",
"id": "2020",
"name": "Zacharias ",
"rating": 3.485,
"author": "Takkie",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1805",
"id": "1805",
"name": "Dead Sun Skies ",
"rating": 3.484,
"author": "sst13",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1292",
"id": "1292",
"name": "Operation: Mark of the Beast ",
"rating": 3.483,
"author": "RivrStyx",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:331",
"id": "331",
"name": "Reaping Flesh ",
"rating": 3.483,
"author": "Dave Waters",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:1679",
"id": "1679",
"name": "Quake it, Sam !!! ",
"rating": 3.482,
"author": "Dim_Walker",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1844",
"id": "1844",
"name": "Time to die ",
"rating": 3.481,
"author": "ShadoW",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1999",
"id": "1999",
"name": "Map for Rota ",
"rating": 3.481,
"author": "E=mc2",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:2035",
"id": "2035",
"name": "Bloodflowers ",
"rating": 3.481,
"author": "Speaker",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1363",
"id": "1363",
"name": "The Frag Pipe 2002 ",
"rating": 3.481,
"author": "Simon",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:2011",
"id": "2011",
"name": "EM Pack ",
"rating": 3.477,
"author": "Emelis",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:640",
"id": "640",
"name": "The Musashi Encounter ",
"rating": 3.477,
"author": "tequila",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:326",
"id": "326",
"name": "AEon's Arena ",
"rating": 3.474,
"author": "AEon",
"num_votes": 38
},
{
"url": "https://lvlworld.com/media/id:1640",
"id": "1640",
"name": "Kill You ",
"rating": 3.471,
"author": "dAde",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:2036",
"id": "2036",
"name": "Raeuber Hotzeplotz is in the House ",
"rating": 3.469,
"author": "Meisterlampe",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:98",
"id": "98",
"name": "L-Complex ",
"rating": 3.464,
"author": "miljam",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:624",
"id": "624",
"name": "Cypertheater ",
"rating": 3.462,
"author": "izeColt",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1457",
"id": "1457",
"name": "Crescents ",
"rating": 3.462,
"author": "tanyeli",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1810",
"id": "1810",
"name": "Face (map pack) ",
"rating": 3.458,
"author": "BerneyBoy",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1893",
"id": "1893",
"name": "Animoe + Animoe'd ",
"rating": 3.455,
"author": "Takkie",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1548",
"id": "1548",
"name": "XCMCTF-Pak1 ",
"rating": 3.455,
"author": "|XCM|SouL",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:378",
"id": "378",
"name": "THE P.H.4.T. BASE ",
"rating": 3.455,
"author": "DooBall",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2019",
"id": "2019",
"name": "thefront ",
"rating": 3.453,
"author": "NaturalSpringWater",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1241",
"id": "1241",
"name": "Invalid Transmission ",
"rating": 3.452,
"author": "Jax_Gator",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:713",
"id": "713",
"name": "Lucid Dream ",
"rating": 3.447,
"author": "Yogi",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1354",
"id": "1354",
"name": "Skytown ",
"rating": 3.446,
"author": "Anton",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:519",
"id": "519",
"name": "Ultima Thule ",
"rating": 3.443,
"author": "[HK]Vd",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1300",
"id": "1300",
"name": "Beneath A Distant Sun ",
"rating": 3.436,
"author": "pjw",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:358",
"id": "358",
"name": "Titan Orbital Platform ",
"rating": 3.435,
"author": "[QR]Boner",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:126",
"id": "126",
"name": "Mali'e (Further Away) ",
"rating": 3.432,
"author": "Dru",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:257",
"id": "257",
"name": "BROGAN ",
"rating": 3.429,
"author": "Myth",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:270",
"id": "270",
"name": "Hard Steel ",
"rating": 3.422,
"author": "Shmitz",
"num_votes": 51
},
{
"url": "https://lvlworld.com/media/id:458",
"id": "458",
"name": "Smo's Tower ",
"rating": 3.421,
"author": "Tim Smulders",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:990",
"id": "990",
"name": "AEon's Arcs ",
"rating": 3.417,
"author": "AEon",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:113",
"id": "113",
"name": "Place of Two Deaths ",
"rating": 3.417,
"author": "Mike Zuber",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:184",
"id": "184",
"name": "Place of Two Kings ",
"rating": 3.409,
"author": "DaveBulow",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1524",
"id": "1524",
"name": "Lost At Satan's Sea ",
"rating": 3.409,
"author": "SoKaR",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:497",
"id": "497",
"name": "Botulism ",
"rating": 3.405,
"author": "PE#668",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:742",
"id": "742",
"name": "The Plaza ",
"rating": 3.391,
"author": "Scancode",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:59",
"id": "59",
"name": "Ziggurat Vertigo ",
"rating": 3.391,
"author": "Jamnbam",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:350",
"id": "350",
"name": "McKinley Remember'd ",
"rating": 3.391,
"author": "rmbuddha",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1385",
"id": "1385",
"name": "Green ",
"rating": 3.386,
"author": "Munyul Verminard",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:960",
"id": "960",
"name": "LDAQ3A00CTF ",
"rating": 3.383,
"author": "Lee David Ash",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1688",
"id": "1688",
"name": "The Regulator ",
"rating": 3.383,
"author": "Jared Prince",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:13",
"id": "13",
"name": "A Shadow Lost ",
"rating": 3.382,
"author": "Charon",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1948",
"id": "1948",
"name": "Ripper's Play Ground ",
"rating": 3.38,
"author": "dONKEY",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1261",
"id": "1261",
"name": "Turtle Speedmap #3 ",
"rating": 3.375,
"author": "Various",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1470",
"id": "1470",
"name": "Deep Inside ",
"rating": 3.375,
"author": "Teddy",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:33",
"id": "33",
"name": "Organicfusion ",
"rating": 3.375,
"author": "G.C.",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:233",
"id": "233",
"name": "The Art of Kanly ",
"rating": 3.375,
"author": "Agent Orange",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:48",
"id": "48",
"name": "A Night at The Fragsbury ",
"rating": 3.368,
"author": "G.C.",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1622",
"id": "1622",
"name": "Space ",
"rating": 3.368,
"author": "Wiggles",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1337",
"id": "1337",
"name": "courbe dominante ",
"rating": 3.367,
"author": "Elmar Steinböck",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:2051",
"id": "2051",
"name": "The Vomitorium ",
"rating": 3.365,
"author": "Obsessed",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:735",
"id": "735",
"name": "Chill Factor ",
"rating": 3.364,
"author": "Hal9000",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:528",
"id": "528",
"name": "Smear Campaign ",
"rating": 3.357,
"author": "Riscchip",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:757",
"id": "757",
"name": "Slingshot ",
"rating": 3.357,
"author": "Geit",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:289",
"id": "289",
"name": "Veterans Haunt ",
"rating": 3.354,
"author": "marc kelly",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1",
"id": "1",
"name": "The Final Hour ",
"rating": 3.352,
"author": "QuartZ",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:247",
"id": "247",
"name": "The Mansion ",
"rating": 3.342,
"author": "Willennium",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:408",
"id": "408",
"name": "Railgun Void ",
"rating": 3.342,
"author": "Mista T",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:413",
"id": "413",
"name": "Reptilian1 ",
"rating": 3.341,
"author": "Scampie",
"num_votes": 33
},
{
"url": "https://lvlworld.com/media/id:518",
"id": "518",
"name": "cnid2 ",
"rating": 3.339,
"author": "QkennyQ",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:647",
"id": "647",
"name": "Imperial Base ",
"rating": 3.339,
"author": "Knight Lore''FC",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:796",
"id": "796",
"name": "Holy Space! ",
"rating": 3.337,
"author": "Oliver",
"num_votes": 75
},
{
"url": "https://lvlworld.com/media/id:794",
"id": "794",
"name": "Ancient City ",
"rating": 3.333,
"author": "Comic Relief",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:1073",
"id": "1073",
"name": "Aerial Dreams ",
"rating": 3.327,
"author": "syKotic",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1663",
"id": "1663",
"name": "noq3dm4 ",
"rating": 3.327,
"author": "noname",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1858",
"id": "1858",
"name": "Tribal ",
"rating": 3.324,
"author": "ROODOG",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1828",
"id": "1828",
"name": "Reign of Fire ",
"rating": 3.318,
"author": "ShadowZombie",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:823",
"id": "823",
"name": "bitter_pak ",
"rating": 3.318,
"author": "nakedape",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:199",
"id": "199",
"name": "Light and Darkness ",
"rating": 3.313,
"author": "r_speeds",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:388",
"id": "388",
"name": "Black/Q1DM2 ",
"rating": 3.308,
"author": "Digital1 [69]",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:1314",
"id": "1314",
"name": "Quake, Beer, and Wrestling ",
"rating": 3.308,
"author": "{MoD}SnyperKiLL",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:537",
"id": "537",
"name": "ONDA DM1 ",
"rating": 3.304,
"author": "ONDA",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1662",
"id": "1662",
"name": "redq3dm2'squared' ",
"rating": 3.3,
"author": "redfella",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1287",
"id": "1287",
"name": "Secluded Complex ",
"rating": 3.295,
"author": "Cyben",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:577",
"id": "577",
"name": "The Dark Zone 2020 ",
"rating": 3.295,
"author": "[=CC=]Lunacy",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:294",
"id": "294",
"name": "Asimetryk ",
"rating": 3.295,
"author": "Krash",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:451",
"id": "451",
"name": "Duel Twilight ",
"rating": 3.293,
"author": "Requiem",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:161",
"id": "161",
"name": "Malthusian Temple ",
"rating": 3.292,
"author": "Equim",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1960",
"id": "1960",
"name": "Neon Light ",
"rating": 3.286,
"author": "r3x.theCat",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:411",
"id": "411",
"name": "Dark Temples ",
"rating": 3.283,
"author": "mac",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:356",
"id": "356",
"name": "Dead Simple (3) ",
"rating": 3.279,
"author": "R.P.G.",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:8",
"id": "8",
"name": "One Down ",
"rating": 3.278,
"author": "Tigger-oN",
"num_votes": 27
},
{
"url": "https://lvlworld.com/media/id:1965",
"id": "1965",
"name": "Rail Circus ",
"rating": 3.273,
"author": "DOOMer",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:437",
"id": "437",
"name": "The Grim Fate ",
"rating": 3.271,
"author": "Michael Reed",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1462",
"id": "1462",
"name": "Beyond The Cemetery ",
"rating": 3.271,
"author": "Kirk Barnes",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:465",
"id": "465",
"name": "Submarine ",
"rating": 3.271,
"author": "Kit Carson",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:179",
"id": "179",
"name": "Fallen From Space ",
"rating": 3.267,
"author": "QuartZ",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:892",
"id": "892",
"name": "Psyho ",
"rating": 3.261,
"author": "Knight Lore''FC",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:940",
"id": "940",
"name": "Together We Frag, Together We Fall ",
"rating": 3.25,
"author": "Munyul Verminard",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:751",
"id": "751",
"name": "Blood Cage ",
"rating": 3.25,
"author": "RainmanTD",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:772",
"id": "772",
"name": "Htog 2:More of the same ",
"rating": 3.25,
"author": "Hrewty",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:310",
"id": "310",
"name": "Relief ",
"rating": 3.25,
"author": "Balder",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1642",
"id": "1642",
"name": "Anguis in herba ",
"rating": 3.25,
"author": "dAde",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1102",
"id": "1102",
"name": "Fiemus Ravi ",
"rating": 3.233,
"author": "Anwulf",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:2064",
"id": "2064",
"name": "Frozen Ice ",
"rating": 3.231,
"author": "^Ghost",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:10",
"id": "10",
"name": "Beaumaris Keep ",
"rating": 3.231,
"author": "Neo Genesis",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:749",
"id": "749",
"name": "009 ",
"rating": 3.229,
"author": "macho",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:328",
"id": "328",
"name": "Boneyardz ",
"rating": 3.227,
"author": "Ultima",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:427",
"id": "427",
"name": "Mario Opposing Castles ",
"rating": 3.225,
"author": "Pen-Pen",
"num_votes": 40
},
{
"url": "https://lvlworld.com/media/id:407",
"id": "407",
"name": "Black Forest ",
"rating": 3.224,
"author": "todd gantzler",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:262",
"id": "262",
"name": "Brutality ",
"rating": 3.217,
"author": "Brute",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:145",
"id": "145",
"name": "The Dark Zone for Q3 ",
"rating": 3.214,
"author": "Povo-HaT",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1174",
"id": "1174",
"name": "Safari ",
"rating": 3.212,
"author": "Futureprobe",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1648",
"id": "1648",
"name": "A Genius Trapped in an Idiot's Mind ",
"rating": 3.212,
"author": "R.P.G.",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1512",
"id": "1512",
"name": "Sweet Surrender ",
"rating": 3.208,
"author": "amethyst7",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1187",
"id": "1187",
"name": "FreeBase ",
"rating": 3.208,
"author": "Tscaboid",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1351",
"id": "1351",
"name": "Just Like Suicide ",
"rating": 3.208,
"author": "Lukin",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1393",
"id": "1393",
"name": "Neotech ",
"rating": 3.205,
"author": "Mr.LyCon",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:612",
"id": "612",
"name": "the lost mines ",
"rating": 3.2,
"author": "l0st h0p3",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1346",
"id": "1346",
"name": "Pure Ugly ",
"rating": 3.192,
"author": "Munyul Verminard",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:560",
"id": "560",
"name": "Jailhouse Frag ",
"rating": 3.191,
"author": "iGREKKESS",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:370",
"id": "370",
"name": "The Aiigmanon ",
"rating": 3.191,
"author": "thanatonaute",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1980",
"id": "1980",
"name": "Castle of Peladon ",
"rating": 3.191,
"author": "Speaker",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:1942",
"id": "1942",
"name": "Glassy Blue Labirinth ",
"rating": 3.19,
"author": "Pasquake",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:2026",
"id": "2026",
"name": "CUBEdotMAP ",
"rating": 3.188,
"author": "DaEngineer",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:660",
"id": "660",
"name": "Curvy (aka Slopy:Arena) ",
"rating": 3.183,
"author": "Aardappel",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:799",
"id": "799",
"name": "SW4KL ",
"rating": 3.182,
"author": "Knight Lore''FC",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:2113",
"id": "2113",
"name": "Ultima Guardia ",
"rating": 3.182,
"author": "Guillenet74",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:544",
"id": "544",
"name": "Hpak ",
"rating": 3.181,
"author": "}{ammer",
"num_votes": 47
},
{
"url": "https://lvlworld.com/media/id:91",
"id": "91",
"name": "Mowjoes' Joust Hall 2 ",
"rating": 3.179,
"author": "Mowjoe",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1794",
"id": "1794",
"name": "Leafland ",
"rating": 3.171,
"author": "skin[NCN]master",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:7",
"id": "7",
"name": "The Evil One ",
"rating": 3.167,
"author": "Tom Fritzon",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1930",
"id": "1930",
"name": "Old Church ",
"rating": 3.146,
"author": "AmonG0D",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:755",
"id": "755",
"name": "Dry Ice ",
"rating": 3.133,
"author": "Foo",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:592",
"id": "592",
"name": "The Maze ",
"rating": 3.125,
"author": "Tscheckepp",
"num_votes": 26
},
{
"url": "https://lvlworld.com/media/id:1962",
"id": "1962",
"name": "SGDTT7 ",
"rating": 3.125,
"author": "Deathhead The Tormentor",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1641",
"id": "1641",
"name": "DM17 Egyptian Redux ",
"rating": 3.118,
"author": "heffalump",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:1210",
"id": "1210",
"name": "ASSault ",
"rating": 3.114,
"author": "LEVELORD®",
"num_votes": 44
},
{
"url": "https://lvlworld.com/media/id:1690",
"id": "1690",
"name": "The Third Encounter ",
"rating": 3.114,
"author": "NemiX",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1423",
"id": "1423",
"name": "Turtle Map Pack 4 ",
"rating": 3.111,
"author": "Various",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:771",
"id": "771",
"name": "Iron Lady ",
"rating": 3.109,
"author": "Munyul Verminard",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:46",
"id": "46",
"name": "Dead Wrong ",
"rating": 3.106,
"author": "johnny",
"num_votes": 40
},
{
"url": "https://lvlworld.com/media/id:391",
"id": "391",
"name": "Facing Worlds ",
"rating": 3.104,
"author": "Bauul",
"num_votes": 123
},
{
"url": "https://lvlworld.com/media/id:533",
"id": "533",
"name": "Angry Hatred ",
"rating": 3.098,
"author": "nakedape",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1634",
"id": "1634",
"name": "CTF Cinnamon Toast ",
"rating": 3.091,
"author": "SomeRhino",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:438",
"id": "438",
"name": "Temple of Osiris ",
"rating": 3.091,
"author": "DaveBulow",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:999",
"id": "999",
"name": "Dreamcast Maps (..::LvL Edition) ",
"rating": 3.09,
"author": "Various",
"num_votes": 53
},
{
"url": "https://lvlworld.com/media/id:2074",
"id": "2074",
"name": "Dark Reign ",
"rating": 3.08,
"author": "Anonymous",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:745",
"id": "745",
"name": "the ultimate race ",
"rating": 3.078,
"author": "chris",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:56",
"id": "56",
"name": "MorpheusX ",
"rating": 3.077,
"author": "Chainsaw",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1235",
"id": "1235",
"name": "an eye for an eye ",
"rating": 3.067,
"author": "Cart2K",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1879",
"id": "1879",
"name": "Icon Basilica ",
"rating": 3.063,
"author": "dONKEY",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:119",
"id": "119",
"name": "Rail Arena ",
"rating": 3.063,
"author": "Ivan",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:570",
"id": "570",
"name": "Breakthru ",
"rating": 3.063,
"author": "BFG20K",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:638",
"id": "638",
"name": "The Garden of Eight ",
"rating": 3.063,
"author": "izeColt",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:686",
"id": "686",
"name": "Tiamat's Revenge ",
"rating": 3.061,
"author": "suckmonkey",
"num_votes": 57
},
{
"url": "https://lvlworld.com/media/id:1171",
"id": "1171",
"name": "Dantesca - Book One ",
"rating": 3.057,
"author": "Quint",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:234",
"id": "234",
"name": "Mario Quaked ",
"rating": 3.056,
"author": "Johnny Death",
"num_votes": 31
},
{
"url": "https://lvlworld.com/media/id:472",
"id": "472",
"name": "Pure and Simple ",
"rating": 3.054,
"author": "Goose",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1152",
"id": "1152",
"name": "TurtleSpeedmap 1 ",
"rating": 3.05,
"author": "Various",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:1301",
"id": "1301",
"name": "4 for a Laugh ",
"rating": 3.036,
"author": "Munyul Verminard",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:574",
"id": "574",
"name": "Populass ",
"rating": 3.033,
"author": "ZeroSquared",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:868",
"id": "868",
"name": "Runaround ",
"rating": 3.031,
"author": "Neotic",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1741",
"id": "1741",
"name": "Been smoking too long ",
"rating": 3.026,
"author": "dAde",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:887",
"id": "887",
"name": "oops, lost my map file... ",
"rating": 3.021,
"author": "weasy",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1124",
"id": "1124",
"name": "A HAIL OF RAIL by axba",
"rating": 3.017,
"author": "axbaby",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:511",
"id": "511",
"name": "If you want blood... ",
"rating": 3.014,
"author": "S*LT",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:504",
"id": "504",
"name": "f8smappak0 ",
"rating": 3.013,
"author": "Crewmaac",
"num_votes": 40
},
{
"url": "https://lvlworld.com/media/id:1318",
"id": "1318",
"name": "Lost Canyon ",
"rating": 3,
"author": "187-J4CK4L",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:109",
"id": "109",
"name": "Castle at Dawn ",
"rating": 3,
"author": "[HSF] Psycho",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:68",
"id": "68",
"name": "The Edge ",
"rating": 3,
"author": "Finko",
"num_votes": 40
},
{
"url": "https://lvlworld.com/media/id:1495",
"id": "1495",
"name": "NeverSummer Nights ",
"rating": 3,
"author": "RasputiN",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:60",
"id": "60",
"name": "2CastlesCTF ",
"rating": 2.993,
"author": "BeLaC",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:2008",
"id": "2008",
"name": "Almost Done - Rage ",
"rating": 2.988,
"author": "dAde",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:360",
"id": "360",
"name": "Kken1 ",
"rating": 2.982,
"author": "Patrik Bruckner",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:461",
"id": "461",
"name": "The Devil Deranged ",
"rating": 2.979,
"author": "[Kona]",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1970",
"id": "1970",
"name": "Quake Shareware ",
"rating": 2.979,
"author": "id Software",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:1126",
"id": "1126",
"name": "Kiss the Sky ",
"rating": 2.974,
"author": "pjw",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:510",
"id": "510",
"name": "Duel of the Fates ",
"rating": 2.967,
"author": "Zymotico",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:1320",
"id": "1320",
"name": "60 minutes of hell ",
"rating": 2.964,
"author": "Evil_Cremator",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1730",
"id": "1730",
"name": "<[tSN]> Terror Tombs ",
"rating": 2.958,
"author": "<[tSN]=[KbE]>",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:198",
"id": "198",
"name": "McKinley Arena ",
"rating": 2.957,
"author": "MapLAB",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:81",
"id": "81",
"name": "The Crossroads ",
"rating": 2.955,
"author": "AzrKnight",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:132",
"id": "132",
"name": "The Killer Rig ",
"rating": 2.942,
"author": "Armageddon",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1931",
"id": "1931",
"name": "The RiP ",
"rating": 2.942,
"author": "*ZeRo*",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:721",
"id": "721",
"name": "The Frag Pipe ",
"rating": 2.938,
"author": "sillybilly",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:22",
"id": "22",
"name": "The Even Longer Yard ",
"rating": 2.933,
"author": "LedMan",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:778",
"id": "778",
"name": "Fade in Gothic ",
"rating": 2.933,
"author": "Kit Carson",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:910",
"id": "910",
"name": "Impaled ",
"rating": 2.932,
"author": "[Kona]",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:837",
"id": "837",
"name": "Gothic Yard ",
"rating": 2.929,
"author": "D0kt0r X",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:300",
"id": "300",
"name": "Final Crossing ",
"rating": 2.925,
"author": "Beefster",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:97",
"id": "97",
"name": "Lsdctf (2 maps) ",
"rating": 2.898,
"author": "Salt & Loco",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:396",
"id": "396",
"name": "My Very Own Room ",
"rating": 2.881,
"author": "DoMiNiQuE",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:932",
"id": "932",
"name": "200 Brush Map Comp ",
"rating": 2.875,
"author": "Various",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1420",
"id": "1420",
"name": "SpaceArena 1 ",
"rating": 2.875,
"author": "Deek",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:453",
"id": "453",
"name": "Sirius Arena ",
"rating": 2.869,
"author": "(Sirius)",
"num_votes": 44
},
{
"url": "https://lvlworld.com/media/id:603",
"id": "603",
"name": "Reverberation ",
"rating": 2.864,
"author": "Dubbilan",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:443",
"id": "443",
"name": "Deviant ",
"rating": 2.857,
"author": "Kiltron",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:323",
"id": "323",
"name": "Tusk and Bone ",
"rating": 2.841,
"author": "[Kona]",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:450",
"id": "450",
"name": "The Lenghtned ",
"rating": 2.833,
"author": "Deathmonger",
"num_votes": 24
},
{
"url": "https://lvlworld.com/media/id:652",
"id": "652",
"name": "No Love Map ",
"rating": 2.827,
"author": "Kit Carson",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:62",
"id": "62",
"name": "The Train Station ",
"rating": 2.818,
"author": "DarkArtist",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:274",
"id": "274",
"name": "The Gargoylian ",
"rating": 2.818,
"author": "Kilagan",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1956",
"id": "1956",
"name": "Frag Dungeon ",
"rating": 2.813,
"author": "Cricket",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:2073",
"id": "2073",
"name": "Ciudad de Torres ",
"rating": 2.809,
"author": "Guillenet74",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:2193",
"id": "2193",
"name": "Carmack Fortress ",
"rating": 2.795,
"author": "deQer",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:459",
"id": "459",
"name": "The Pool ",
"rating": 2.792,
"author": "Hydra",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1442",
"id": "1442",
"name": "LDAQ3A05CTF ",
"rating": 2.792,
"author": "Lee David Ash",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:5",
"id": "5",
"name": "jackflash ",
"rating": 2.792,
"author": "Tom Winger",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:283",
"id": "283",
"name": "Arrakeen Alpha ",
"rating": 2.792,
"author": "Smack2[SiN]",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1297",
"id": "1297",
"name": "SK8 PARK ",
"rating": 2.789,
"author": "187-J4CK4L",
"num_votes": 32
},
{
"url": "https://lvlworld.com/media/id:412",
"id": "412",
"name": "k-za-cage ",
"rating": 2.779,
"author": "keditok",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:826",
"id": "826",
"name": "Brithney Spears Castle ",
"rating": 2.776,
"author": "Seb",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:332",
"id": "332",
"name": "Goldeneye's Complex ",
"rating": 2.771,
"author": "SMKnight",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:630",
"id": "630",
"name": "Demented Dream ",
"rating": 2.771,
"author": "Dr Faustus",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:69",
"id": "69",
"name": "Hall Of Confusion ",
"rating": 2.75,
"author": "Kiltron",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1877",
"id": "1877",
"name": "The Largest Yard ",
"rating": 2.75,
"author": "Virtu0",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1981",
"id": "1981",
"name": "Ultraviolence ",
"rating": 2.727,
"author": "Speaker",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:101",
"id": "101",
"name": "Sincity rebuilt ",
"rating": 2.727,
"author": "dd sCrEAm",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:692",
"id": "692",
"name": "Carpe Diem ",
"rating": 2.717,
"author": "Rampage",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:460",
"id": "460",
"name": "niv3space1 ",
"rating": 2.712,
"author": "niven of g&p",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:649",
"id": "649",
"name": "Waste Processing Plant 13 ",
"rating": 2.705,
"author": "r3tina",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1989",
"id": "1989",
"name": "Dance Hall 2 ",
"rating": 2.705,
"author": "FeniX",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:434",
"id": "434",
"name": "im in hell ",
"rating": 2.7,
"author": "Scampie",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:2060",
"id": "2060",
"name": "COBRA CTF1 ",
"rating": 2.683,
"author": "Bek*{COBRA}*",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:255",
"id": "255",
"name": "Lupo House 3 ",
"rating": 2.672,
"author": "Destroy",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:420",
"id": "420",
"name": "The Cage (2) ",
"rating": 2.663,
"author": "toad",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:405",
"id": "405",
"name": "= Berserk = ",
"rating": 2.658,
"author": "THS",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:676",
"id": "676",
"name": "The Kindred's Keep ",
"rating": 2.639,
"author": "Ken Hawver",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:159",
"id": "159",
"name": "Very bad neibors ",
"rating": 2.635,
"author": "dd SCREAM",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:252",
"id": "252",
"name": "The Clock Tower ",
"rating": 2.625,
"author": "Destroy",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:346",
"id": "346",
"name": ".::Infirmity::. ",
"rating": 2.604,
"author": "ImPaQT",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:50",
"id": "50",
"name": "Extreme Overload ",
"rating": 2.6,
"author": "KILLSPY",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:256",
"id": "256",
"name": "The Colosseum ",
"rating": 2.589,
"author": "armageddon",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:681",
"id": "681",
"name": "No man's Land ",
"rating": 2.563,
"author": "Meatball",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1976",
"id": "1976",
"name": "BLoodmart ",
"rating": 2.548,
"author": "Mayhem",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:1925",
"id": "1925",
"name": "sgdtt5 ",
"rating": 2.538,
"author": "Deathhead The Tormentor",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:2059",
"id": "2059",
"name": "Rockets Please! ",
"rating": 2.538,
"author": "adamllis",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:96",
"id": "96",
"name": "The Goblin Stronghold ",
"rating": 2.533,
"author": "undeaddemon",
"num_votes": 15
},
{
"url": "https://lvlworld.com/media/id:39",
"id": "39",
"name": "CTF Longest Yards ",
"rating": 2.516,
"author": "Schlong Chimp",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:431",
"id": "431",
"name": "The Pit ",
"rating": 2.5,
"author": "B2K",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:445",
"id": "445",
"name": "Q3 High and WaReHoUsE x2 ",
"rating": 2.5,
"author": "RivrStyx",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:971",
"id": "971",
"name": "Rotten ",
"rating": 2.482,
"author": "VIAGRAA",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1429",
"id": "1429",
"name": "SpaceArena 3 ",
"rating": 2.472,
"author": "Deek",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:2033",
"id": "2033",
"name": "blueray ",
"rating": 2.452,
"author": "Bret C. Sheppard",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:2025",
"id": "2025",
"name": "pictish_ruins ",
"rating": 2.434,
"author": "Bret C. Sheppard",
"num_votes": 19
},
{
"url": "https://lvlworld.com/media/id:334",
"id": "334",
"name": "rtsindm1 ",
"rating": 2.432,
"author": "Flava Clown",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:1744",
"id": "1744",
"name": "Maze3 ",
"rating": 2.417,
"author": "Nickliff",
"num_votes": 18
},
{
"url": "https://lvlworld.com/media/id:1724",
"id": "1724",
"name": "The Rail Pit ",
"rating": 2.413,
"author": "Nickliff",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:825",
"id": "825",
"name": "Shafting the Moist Hole ",
"rating": 2.4,
"author": ">Silken--Tofu<",
"num_votes": 30
},
{
"url": "https://lvlworld.com/media/id:89",
"id": "89",
"name": "P79.1 - First flight ",
"rating": 2.396,
"author": "Pecora79",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:11",
"id": "11",
"name": "Conundrum ",
"rating": 2.364,
"author": "Snicker",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:311",
"id": "311",
"name": "Q3 ARENAX ",
"rating": 2.316,
"author": "TheQleaner",
"num_votes": 53
},
{
"url": "https://lvlworld.com/media/id:2056",
"id": "2056",
"name": "Unfinished Map ",
"rating": 2.301,
"author": "dONKEY",
"num_votes": 34
},
{
"url": "https://lvlworld.com/media/id:1438",
"id": "1438",
"name": "Temple of Many Deaths ",
"rating": 2.288,
"author": "Fraggel*of*Quebec",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:299",
"id": "299",
"name": "The Span ",
"rating": 2.281,
"author": "Froofy",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1329",
"id": "1329",
"name": "Towers of death ",
"rating": 2.25,
"author": "Anton",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:491",
"id": "491",
"name": "Rail-a-rama ",
"rating": 2.208,
"author": "Ironuts{NAD}",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:304",
"id": "304",
"name": "Gothic Waters ",
"rating": 2.207,
"author": "SLoB",
"num_votes": 23
},
{
"url": "https://lvlworld.com/media/id:1289",
"id": "1289",
"name": "The Dome Of Mayhem ",
"rating": 2.179,
"author": "Shub-Niggurath",
"num_votes": 14
},
{
"url": "https://lvlworld.com/media/id:1042",
"id": "1042",
"name": "The ruin ",
"rating": 2.173,
"author": "LooF",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:859",
"id": "859",
"name": "The Cold Weather of Abu Dhabi ",
"rating": 2.167,
"author": "Knight Cloud",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:446",
"id": "446",
"name": "Battle zone ",
"rating": 2.162,
"author": "Quid",
"num_votes": 17
},
{
"url": "https://lvlworld.com/media/id:471",
"id": "471",
"name": "Tube Wars ",
"rating": 2.146,
"author": "notime",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:34",
"id": "34",
"name": "2fort9CTF ",
"rating": 2.071,
"author": "=UA=Static",
"num_votes": 39
},
{
"url": "https://lvlworld.com/media/id:298",
"id": "298",
"name": "Tribute to shmitz ",
"rating": 2.025,
"author": "Wreta",
"num_votes": 20
},
{
"url": "https://lvlworld.com/media/id:287",
"id": "287",
"name": "The Lost Dungeon ",
"rating": 1.955,
"author": "Harrynator",
"num_votes": 128
},
{
"url": "https://lvlworld.com/media/id:1256",
"id": "1256",
"name": "Maligo ",
"rating": 1.91,
"author": "Sloanbone",
"num_votes": 25
},
{
"url": "https://lvlworld.com/media/id:333",
"id": "333",
"name": "Da Monkey Luv Shak ",
"rating": 1.886,
"author": "WEXAL",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:752",
"id": "752",
"name": "Zero Cube 74 ",
"rating": 1.875,
"author": "Munyul Verminard",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:416",
"id": "416",
"name": "Blood-Feud ",
"rating": 1.813,
"author": "ZOD",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:309",
"id": "309",
"name": "MarioTowers ",
"rating": 1.75,
"author": "Madmardagan",
"num_votes": 21
},
{
"url": "https://lvlworld.com/media/id:538",
"id": "538",
"name": "TESTNASA ",
"rating": 1.75,
"author": "-=kasper=-",
"num_votes": 86
},
{
"url": "https://lvlworld.com/media/id:2078",
"id": "2078",
"name": "Yonydm3 ",
"rating": 1.729,
"author": "elpibewer",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:1789",
"id": "1789",
"name": "pro-q3dm17 ",
"rating": 1.693,
"author": "<n00b>pall",
"num_votes": 22
},
{
"url": "https://lvlworld.com/media/id:1474",
"id": "1474",
"name": "Sixth_Sense ",
"rating": 1.69,
"author": "CP]I[Omega",
"num_votes": 29
},
{
"url": "https://lvlworld.com/media/id:266",
"id": "266",
"name": "Heavy Metal Machine ",
"rating": 1.688,
"author": "Apocalypso the Miraculous",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:355",
"id": "355",
"name": "The Longest Yard - Duel ",
"rating": 1.688,
"author": "Ma{DM}aX",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:398",
"id": "398",
"name": "Pressure Cooker ",
"rating": 1.519,
"author": "Joseph Stalin",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:90",
"id": "90",
"name": "Clash of Colors ",
"rating": 1.5,
"author": "Blink",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:308",
"id": "308",
"name": "Pillars of Hell ",
"rating": 1.5,
"author": "Kneecapt",
"num_votes": 12
},
{
"url": "https://lvlworld.com/media/id:456",
"id": "456",
"name": "pindm2 ",
"rating": 1.467,
"author": "Pinball",
"num_votes": 30
},
{
"url": "https://lvlworld.com/media/id:2092",
"id": "2092",
"name": "1961 ",
"rating": 1.327,
"author": "vnekOnator",
"num_votes": 13
},
{
"url": "https://lvlworld.com/media/id:1323",
"id": "1323",
"name": "NEON GENESIS ",
"rating": 1.25,
"author": "187-J4CK4L",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:369",
"id": "369",
"name": "mfspacedm1 ",
"rating": 1.156,
"author": "TheMic",
"num_votes": 16
},
{
"url": "https://lvlworld.com/media/id:1607",
"id": "1607",
"name": "Two Worlds Collide! ",
"rating": 1.036,
"author": "Firethrottle",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:914",
"id": "914",
"name": "mosh ",
"rating": 0.973,
"author": "tetsuo -Q-",
"num_votes": 28
},
{
"url": "https://lvlworld.com/media/id:157",
"id": "157",
"name": "Darkayne ",
"rating": 0.955,
"author": "Bauul",
"num_votes": 11
},
{
"url": "https://lvlworld.com/media/id:285",
"id": "285",
"name": "Arena ",
"rating": 0.951,
"author": "Zero",
"num_votes": 36
},
{
"url": "https://lvlworld.com/media/id:1600",
"id": "1600",
"name": "Chilli Pepper's Marble Palace! ",
"rating": 0.929,
"author": "Firethrottle",
"num_votes": 35
},
{
"url": "https://lvlworld.com/media/id:1608",
"id": "1608",
"name": "Wilderness! ",
"rating": 0.882,
"author": "Firethrottle",
"num_votes": 38
},
{
"url": "https://lvlworld.com/media/id:406",
"id": "406",
"name": "Spank Me! Chapter One ",
"rating": 0.789,
"author": "spanksteR",
"num_votes": 19
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment