Skip to content

Instantly share code, notes, and snippets.

@barmartland
Last active April 28, 2017 13:09
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 barmartland/654b49dff55493325860f9b9874729b2 to your computer and use it in GitHub Desktop.
Save barmartland/654b49dff55493325860f9b9874729b2 to your computer and use it in GitHub Desktop.
Team Fortress 2 - Players per Map
license: gpl-3.0
Players per map on Team Fortress 2 community servers, March 2017. Data from https://teamwork.tf
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.title{
font-family: Verdana;
font-weight: bold;
font-size: 28px;
fill: #5d5d5d;
}
.subtitle{
font-family: Verdana;
font-weight: bold;
font-size: 20px;
fill: #c3c3c3;
}
.labelText{
font-family: Verdana;
font-size: 16px;
fill: #5d5d5d;
}
.Payload_Race{
fill: #CC4949;
}
.Capture_the_Flag{
fill: #7e3e66;
}
.King_of_the_Hill{
fill: #f67c92;
}
.Capture_Point{
fill: #FCDC4D;
}
.Payload{
fill: #9A031E;
}
.Man_vs_Machine{
fill: #6dd66d;
}
.Trade_and_Achievement{
fill: #3e7e57;
}
.Deathmatch{
fill: #e59000;
}
.Other {
fill: #a5a5a5;
}
.tooltip {
position: absolute;
text-align: center;
width: 300px;
height: 52px;
padding: 2px;
font-size: 14px;
font-family: Verdana;
background: #e1e1e1;
border: 0px;
border-radius: 8px;
pointer-events: none;
}
</style>
<svg width="1100" height="1000"><g transform="translate(1,1)"></g></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
var drawHeight = 800;
//Tooltip
var div = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 0);
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr(drawHeight);
var format = d3.format(",");
var pack = d3.pack()
.size([width - 300 - 2, drawHeight - 2])
.padding(3);
d3.csv("TF2CommunityMaps.csv", type, function(error, data) {
if (error) throw error;
var root = d3.hierarchy({children: data})
.sum(function(d) { return d.Players; })
.sort(function(a, b) { return b.Players - a.Players; });
pack(root);
var node = svg.select("g")
.attr("transform", "translate(0,100)")
.selectAll("g")
.data(root.children)
.enter().append("g")
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; })
.attr("class", "node");
node.append("circle")
.attr("id", function(d) { return "node-" + d.data.Map; })
.attr("r", function(d) { return d.r; })
.attr("class", function(d){return d.data.GameModeLabel.split(' ').join('_');})
//ToolTip
.on("mouseover", function(d) {
div.transition()
.duration(200)
.style("opacity", 1.0);
div.html("Map: " + d.data.Map + "<br/>" + "Number of Players: " + format(d.data.Players) + "<br/>" + "Percentage of Total: " + d.data.Percentage)
.style("left", (d3.event.pageX) + "px")
.style("top", (d3.event.pageY - 28) + "px");
})
.on("mouseout", function(d) {
div.transition()
.duration(500)
.style("opacity", 0);
});
var labelKeys = d3.map(root.children,function(d){return d.data.GameModeLabel;}).keys();
//Custom sort to put "Other" at bottom
var otherAtBottom = function(){
return function(a,b){
if(a=="Other"){
return 1;
}
else if(b=="Other"){
return -1;
}
else{
return a < b ? -1 : 1;
}
};
}
labelKeys.sort(otherAtBottom());
var labels = d3.select("svg")
.append("g")
.attr("transform", "translate(820, 200)")
.attr("class", "labels")
.text("Game mode")
.selectAll("g")
.data(labelKeys)
.enter().append("g")
.attr("class", "label")
.attr("transform", function(d,i) { return "translate(" + "0" + "," + (200 + (25* i)) + ")"; });
labels.append("circle")
.attr("id", function(d) { return "label-" + d; })
.attr("r", 10)
.attr("class", function(d){return d.split(' ').join('_');});
labels.append("text")
.attr("class", "labelText")
.attr("transform", "translate(15,5)")
.text(function(d) { return d; });
});
var title = d3.select("svg").append("g")
.append("text")
.attr("class", "title")
.attr("x", 30)
.attr("y", 50)
.text("Players per Map, Community Servers")
var subtitle = d3.select("svg")
.append("text")
.attr("x", 30)
.attr("y", 75)
.attr("class", "subtitle")
.text("Hover a bubble to see name of map and more details")
function type(d) {
return (d.Players = +d.Players) ? d : null;
}
</script>
We can't make this file beautiful and searchable because it's too large.
Map,Players,Percentage,GameMode,GameModeLabel
ctf_2fort,2308792,5.182537%,ctf,Capture the Flag
plr_hightower,1682104,3.775813%,plr,Payload Race
ctf_turbine,1608917,3.611530%,ctf,Capture the Flag
cp_orange_x3,1278781,2.870475%,cp,Capture Point
cp_orange_x_7,930825,2.089420%,cp,Capture Point
cp_dustbowl,843396,1.893168%,cp,Capture Point
achievement_idle_awesomebox9,779108,1.748861%,achievement,Trade and Achievement
mge_training_v8_beta4b,695225,1.560569%,mge,Other
trade_plaza_2,597187,1.340504%,trade,Trade and Achievement
trade_plaza,577419,1.296130%,trade,Trade and Achievement
achievement_engineer,476666,1.069971%,achievement,Trade and Achievement
cp_orange_x3_exe,460616,1.033943%,cp,Capture Point
mario_kart_2_v30,453791,1.018623%,mario,Other
pl_upward,444181,0.997052%,pl,Payload
pl_badwater,423068,0.949659%,pl,Payload
mvm_ghost_town,420083,0.942959%,mvm,Man vs Machine
achievement_apg_r15,406011,0.911372%,achievement,Trade and Achievement
cp_degrootkeep,333001,0.747486%,cp,Capture Point
achievement_idle_awesomebox8,331558,0.744247%,achievement,Trade and Achievement
cp_towdar_v3_eco,296539,0.665640%,cp,Capture Point
jump_academy_easy_d,294615,0.661321%,jump,Other
trade_minecraft_neon_v177,268033,0.601653%,trade,Trade and Achievement
koth_harvest_final,267977,0.601527%,koth,King of the Hill
minecraftworld_a7,256098,0.574862%,minecraftworld,Other
ba_mlcastle_v10,248002,0.556689%,ba,Other
mvm_coaltown,229810,0.515854%,mvm,Man vs Machine
cp_process_final,227908,0.511584%,cp,Capture Point
trade_minecraft_realms_v2,227312,0.510246%,trade,Trade and Achievement
cp_orange_x5,206789,0.464179%,cp,Capture Point
pl_goldrush,206526,0.463588%,pl,Payload
plr_hightower_tdm_r5,196677,0.441480%,plr,Payload Race
achievement_idledg_megabox10,196406,0.440872%,achievement,Trade and Achievement
trade_minecraft_b42,195675,0.439231%,trade,Trade and Achievement
jail_minecraft_dynf_v10d,194925,0.437547%,jail,Other
mvm_bigrock,187481,0.420838%,mvm,Man vs Machine
cp_badlands,185508,0.416409%,cp,Capture Point
achievement_idle_vaticanbox_11,171706,0.385428%,achievement,Trade and Achievement
achievement_engineer_idle_a1,166683,0.374153%,achievement,Trade and Achievement
tr_walkway_rc2,162774,0.365378%,tr,Other
dm_duel_v1,161898,0.363412%,dm,Deathmatch
trade_minecraft_2016_st_v3,161172,0.361782%,trade,Trade and Achievement
mvm_decoy,160096,0.359367%,mvm,Man vs Machine
cp_orange_x4,157919,0.354480%,cp,Capture Point
vsh_military_area_b1,154792,0.347461%,vsh,Other
mvm_mannhattan,152184,0.341607%,mvm,Man vs Machine
trade_plaza_hg_at2a12,149066,0.334608%,trade,Trade and Achievement
ach_villains_city_day_v3,146558,0.328978%,ach,Other
mvm_mannworks,145927,0.327562%,mvm,Man vs Machine
achievement_engineer_a2_3,144608,0.324601%,achievement,Trade and Achievement
trade_hopi_plaza_v2,140536,0.315461%,trade,Trade and Achievement
cp_gullywash_final1,139308,0.312704%,cp,Capture Point
surf_10x_tf2_complete,137044,0.307622%,surf,Other
koth_suijin,135234,0.303559%,koth,King of the Hill
cp_orange_x3_fix,132147,0.296630%,cp,Capture Point
trade_unusual_vatican_city_v2,130702,0.293386%,trade,Trade and Achievement
trade_minecraft_neon_v63_xmas,124625,0.279745%,trade,Trade and Achievement
pl_borneo,123795,0.277882%,pl,Payload
trade_minecraftworld_a4,116590,0.261709%,trade,Trade and Achievement
trade_plaza_ox3_b4_fixed,115964,0.260304%,trade,Trade and Achievement
mvm_rottenburg,115646,0.259590%,mvm,Man vs Machine
vsh_skyhigh_resort_b8,110837,0.248795%,vsh,Other
koth_product_rc8,107709,0.241774%,koth,King of the Hill
cp_orange_x_7_fix,102991,0.231184%,cp,Capture Point
cp_orange_sg_v4,102290,0.229610%,cp,Capture Point
trade_unusual_center_v3,101665,0.228207%,trade,Trade and Achievement
surf_utopia_v3,100818,0.226306%,surf,Other
idle_engineer_m4,98693,0.221536%,idle,Other
cp_orange_z4_v3,97969,0.219911%,cp,Capture Point
achievement_idle_awesomebox60,97786,0.219500%,achievement,Trade and Achievement
achievement_idle_awesomebox8f2,96030,0.215558%,achievement,Trade and Achievement
trade_portal2_beta5,94290,0.211652%,trade,Trade and Achievement
achievement_idle_awesomebox32,94074,0.211168%,achievement,Trade and Achievement
trade_minecraft_5bo_v2,93992,0.210984%,trade,Trade and Achievement
trade_minecraft_neon_v174_w,93756,0.210454%,trade,Trade and Achievement
pl_frontier_final,93097,0.208975%,pl,Payload
idle_servers_v20,92264,0.207105%,idle,Other
cp_snakewater_final1,91521,0.205437%,cp,Capture Point
vsh_manncohq_v14,90614,0.203401%,vsh,Other
trade_minecraftworld_a7,88706,0.199118%,trade,Trade and Achievement
surf_10x_reload_tf2_fix_v1,87098,0.195509%,surf,Other
achievement_idlefight_v3,86724,0.194669%,achievement,Trade and Achievement
surf_greatriver,85514,0.191953%,surf,Other
pl_barnblitz,85483,0.191883%,pl,Payload
ba_chretien_v1c,85442,0.191791%,ba,Other
cp_lazytown_lazyday,85142,0.191118%,cp,Capture Point
vsh_2fortdesk_v8,84658,0.190032%,vsh,Other
dr_supermario64_v6b,83769,0.188036%,dr,Other
ba_space_jail_v7,81178,0.182220%,ba,Other
achievement_idle,81128,0.182108%,achievement,Trade and Achievement
trade_minecraft_neon_v182,80843,0.181468%,trade,Trade and Achievement
cp_orange_z7,79958,0.179481%,cp,Capture Point
pl_thundermountain,79560,0.178588%,pl,Payload
achievement_apg_r12bm,78447,0.176090%,achievement,Trade and Achievement
achievement_idle_noglass,77330,0.173582%,achievement,Trade and Achievement
achievement_idle_slideshow_mod,76401,0.171497%,achievement,Trade and Achievement
cp_orange_longway_e,75030,0.168420%,cp,Capture Point
surf_air_arena_v4,74270,0.166714%,surf,Other
vsh_crevice_b5,73714,0.165466%,vsh,Other
trade_portal_13,73467,0.164911%,trade,Trade and Achievement
plr_hightower_event,73459,0.164893%,plr,Payload Race
achievement_idlefight_fixed,72272,0.162229%,achievement,Trade and Achievement
trade_minecraft_neon_v180,72071,0.161778%,trade,Trade and Achievement
dm_duel_v2,68734,0.154287%,dm,Deathmatch
ctf_doublecross,68211,0.153113%,ctf,Capture the Flag
idle_wyd,67203,0.150850%,idle,Other
dm_duel_v1c,66455,0.149171%,dm,Deathmatch
koth_nucleus,66238,0.148684%,koth,King of the Hill
ba_jail_tf2turkiye,65626,0.147310%,ba,Other
tf2ware2_a4,65263,0.146496%,tf2ware2,Other
trade_minecraft_sk_v6,64979,0.145858%,trade,Trade and Achievement
cp_towdar_v2,64945,0.145782%,cp,Capture Point
achievement_idle_awesomeboxo31,64890,0.145658%,achievement,Trade and Achievement
dr_bank_v7,64262,0.144249%,dr,Other
ba_jail_snowday,63078,0.141591%,ba,Other
balloon_race_v1,62400,0.140069%,balloon,Other
achievement_apg_r14b,62319,0.139887%,achievement,Trade and Achievement
trade_minecraft_2014_v2a_hg,62031,0.139241%,trade,Trade and Achievement
pl_badwater_pro_v9,60703,0.136260%,pl,Payload
jump_home_v2,58717,0.131802%,jump,Other
cp_sunshine,58422,0.131140%,cp,Capture Point
plr_pipeline,58178,0.130592%,plr,Payload Race
dm_duel_rg_v6,57545,0.129171%,dm,Deathmatch
surf_10x_redone_rv8,57383,0.128807%,surf,Other
trade_bigcity,56413,0.126630%,trade,Trade and Achievement
trade_minecraftworld_a5,56369,0.126531%,trade,Trade and Achievement
achievement_apg_remade9j,56210,0.126174%,achievement,Trade and Achievement
cp_orange_towers_2,55279,0.124085%,cp,Capture Point
ctf_2fort_invasion,54993,0.123443%,ctf,Capture the Flag
cp_orange_x3_topway_f,54615,0.122594%,cp,Capture Point
jb_supermario_v13,54320,0.121932%,jb,Other
dr_safety_first_final,53796,0.120756%,dr,Other
jail_casuarina_b5_tf2jail,52563,0.117988%,jail,Other
vsh_castle_siege_b11,51973,0.116664%,vsh,Other
koth_sawmill,51341,0.115245%,koth,King of the Hill
ach_idle_strange_lanes_v3,50327,0.112969%,ach,Other
dm_mariokart2_b3,50139,0.112547%,dm,Deathmatch
tfdb_blucourt_intox,50011,0.112260%,tfdb,Other
mario_kart_2_v36,49904,0.112019%,mario,Other
pl_swiftwater_final1,49806,0.111799%,pl,Payload
minecraft_city,49517,0.111151%,minecraft,Other
trade_darkly,49198,0.110435%,trade,Trade and Achievement
ach_idle_neon_ben_v13,49172,0.110376%,ach,Other
koth_king,48985,0.109956%,koth,King of the Hill
trade_plaza_final,48928,0.109829%,trade,Trade and Achievement
dr_baby_pirate_adventure_fix2,48412,0.108670%,dr,Other
cp_steel,48244,0.108293%,cp,Capture Point
jump_4starters,48051,0.107860%,jump,Other
ba_jail_minecart_b13_fix_gr5,47962,0.107660%,ba,Other
dr_wintervalley_final,47602,0.106852%,dr,Other
idle_box_v6,47278,0.106125%,idle,Other
ba_jail_wip_a6v4,46819,0.105094%,ba,Other
ba_jailfort_b1,46629,0.104668%,ba,Other
vsh_hakurei_shrine_v3,46539,0.104466%,vsh,Other
pl_hoodoo_final,46358,0.104060%,pl,Payload
trade_kerekerdo_v2_b21,46308,0.103947%,trade,Trade and Achievement
jb_minecraft_night_final,45947,0.103137%,jb,Other
jump_rush_ro_gamma,45156,0.101362%,jump,Other
achievement_idle_botbox_b1,44640,0.100203%,achievement,Trade and Achievement
trade_minecraft_neon_v165,44461,0.099801%,trade,Trade and Achievement
dm_mariokart3_v1,44429,0.099730%,dm,Deathmatch
ba_jail_casuarina_b5,44364,0.099584%,ba,Other
club_hfc_v3,44307,0.099456%,club,Other
koth_lakeside_final,44273,0.099379%,koth,King of the Hill
achievement_idle_awesomebox002,43862,0.098457%,achievement,Trade and Achievement
ach_figbeach_v6,43749,0.098203%,ach,Other
pk_bigcity_tf,43344,0.097294%,pk,Other
dm_duel_ro_v5,43274,0.097137%,dm,Deathmatch
ctf_outset_dewdleb6,43089,0.096722%,ctf,Capture the Flag
cp_orange_x5_shark_v1,42508,0.095418%,cp,Capture Point
cp_orange_minecraft_2013,41941,0.094145%,cp,Capture Point
trade_suncity_a15,41905,0.094064%,trade,Trade and Achievement
cp_gorge,41739,0.093691%,cp,Capture Point
trade_sunshine_tg_v7,41523,0.093207%,trade,Trade and Achievement
cp_orange_x3_minecraft_june,41278,0.092657%,cp,Capture Point
achievement_apg_remade6b,41220,0.092526%,achievement,Trade and Achievement
jump_jurf_a2,41198,0.092477%,jump,Other
cp_granary_pro_rc4,40988,0.092006%,cp,Capture Point
dr_bandicoot_egypt_v8,40936,0.091889%,dr,Other
vsh_dust_showdown_final1,40855,0.091707%,vsh,Other
dr_undertale_final,40147,0.090118%,dr,Other
achievement_idle_skbox_v16,40031,0.089857%,achievement,Trade and Achievement
trade_minecraft_realms_final,39750,0.089227%,trade,Trade and Achievement
pl_snowycoast,39413,0.088470%,pl,Payload
koth_viaduct,39365,0.088362%,koth,King of the Hill
ctf_2fort_cool,39268,0.088145%,ctf,Capture the Flag
achievement_kvkidlefight,39114,0.087799%,achievement,Trade and Achievement
trade_minecraft_skial_xmas_skyf,39098,0.087763%,trade,Trade and Achievement
dr_horrors,39019,0.087586%,dr,Other
achieve_funnel,38354,0.086093%,achieve,Other
idle_sniper_war_v4_6,38250,0.085860%,idle,Other
achievement_bots_v3,38180,0.085703%,achievement,Trade and Achievement
koth_ashville_rc1,38072,0.085460%,koth,King of the Hill
arena_badlands,38028,0.085361%,arena,Other
trade_rawr_v2_2,37872,0.085011%,trade,Trade and Achievement
jump_academy_easy_c,37495,0.084165%,jump,Other
mario_kart_3_v4,37470,0.084109%,mario,Other
trade_mukyuktang_v4,37391,0.083931%,trade,Trade and Achievement
cp_orange_s2gaming_rxz1,37346,0.083830%,cp,Capture Point
ig_idle7d,37234,0.083579%,ig,Other
pl_cactuscanyon,36895,0.082818%,pl,Payload
trade_museum_final,36884,0.082793%,trade,Trade and Achievement
dm_warrock_marien_v8,36802,0.082609%,dm,Deathmatch
mge_oihguv_sucks_a12,35725,0.080192%,mge,Other
ba_minecart_v9f_ig,35661,0.080048%,ba,Other
dr_undertale_v2f,35598,0.079907%,dr,Other
trade_plaza_sg_a6,35007,0.078580%,trade,Trade and Achievement
mario_kart_3v1,34762,0.078030%,mario,Other
trade_minecraft_fc_v6,34213,0.076798%,trade,Trade and Achievement
trade_clocktown_b2a,33754,0.075767%,trade,Trade and Achievement
trade_bigcity_s,33583,0.075384%,trade,Trade and Achievement
achievement_idle_skbox_v18,33304,0.074757%,achievement,Trade and Achievement
vsh_reservoir_v2,33301,0.074751%,vsh,Other
trademon_plaza_4,33280,0.074704%,trademon,Other
iim_strange_up_v02,32791,0.073606%,iim,Other
achievement_idle_awesomebox_cit,32786,0.073595%,achievement,Trade and Achievement
achievement_nekocity_v13,32672,0.073339%,achievement,Trade and Achievement
cp_orange_x3_namazso_b3,32575,0.073121%,cp,Capture Point
trade_sandbox_city1,32527,0.073013%,trade,Trade and Achievement
vsh_warebloom_r1a,32427,0.072789%,vsh,Other
dr_steamworks_extreme_b3a,32146,0.072158%,dr,Other
cp_granary,32072,0.071992%,cp,Capture Point
ach_yosuganosora_remakev2,31846,0.071485%,ach,Other
jb_famous_final,31763,0.071298%,jb,Other
walmart_bettermeme_v7,31680,0.071112%,walmart,Other
trade_rudolf_alpha,31618,0.070973%,trade,Trade and Achievement
vsh_minegay_b3,31565,0.070854%,vsh,Other
trade_minecraft_2016_v4,31541,0.070800%,trade,Trade and Achievement
ctf_well,31414,0.070515%,ctf,Capture the Flag
arena_sawmill,31386,0.070452%,arena,Other
tfdb_float_a2,31025,0.069642%,tfdb,Other
cp_orange_z7_d_fix_6,30917,0.069399%,cp,Capture Point
vsh_top_arena_v1,30512,0.068490%,vsh,Other
koth_badlands,30467,0.068389%,koth,King of the Hill
jump_sketchy2_rc1,30465,0.068385%,jump,Other
cp_metalworks,30447,0.068344%,cp,Capture Point
lmz_peace_beach_v1,30255,0.067913%,lmz,Other
koth_harvest_event,30200,0.067790%,koth,King of the Hill
cp_orange_z7_ntocvc_fix10,30081,0.067523%,cp,Capture Point
arena_2fort10,29994,0.067327%,arena,Other
cp_snakewater_u13,29947,0.067222%,cp,Capture Point
cp_gravelpit,29939,0.067204%,cp,Capture Point
arena_watchtower,29885,0.067083%,arena,Other
trade_retro_v9,29824,0.066946%,trade,Trade and Achievement
trade_minecraft_realms_v2_1,29636,0.066524%,trade,Trade and Achievement
trade_rawr_club_day_v3,29252,0.065662%,trade,Trade and Achievement
jump_academy_beta3_v1,29217,0.065583%,jump,Other
tf_bigcity_1,29090,0.065298%,tf,Other
achievement_idle_slideshow_b15,28738,0.064508%,achievement,Trade and Achievement
arena_granary,28544,0.064073%,arena,Other
achievement_idlefight_pro2,28431,0.063819%,achievement,Trade and Achievement
cp_manor_event,28420,0.063794%,cp,Capture Point
dr_bank_v6,28248,0.063408%,dr,Other
achievement_idle_awesomeboxkvkb,28190,0.063278%,achievement,Trade and Achievement
tfdb_octagon_a5_fix,28091,0.063056%,tfdb,Other
ctf_landfall,28033,0.062926%,ctf,Capture the Flag
sd_doomsday_event,27535,0.061808%,sd,Other
cp_mountainlab,27494,0.061716%,cp,Capture Point
cp_orange_x3_se2_fix5a,27433,0.061579%,cp,Capture Point
dr_psykopat2_v2,26677,0.059882%,dr,Other
arena_lumberyard,26348,0.059143%,arena,Other
vsh_rockslide_2,26339,0.059123%,vsh,Other
cp_orange_alpine_parumango,26174,0.058753%,cp,Capture Point
vsh_weaponsdepot_final,26120,0.058631%,vsh,Other
jb_fuckzz_final_v11,26071,0.058521%,jb,Other
dm_duel_v1a_b4,25843,0.058010%,dm,Deathmatch
vsh_apg_v2,25710,0.057711%,vsh,Other
cp_orange_z3,25513,0.057269%,cp,Capture Point
tfdb_octagon_a7,25482,0.057199%,tfdb,Other
cp_orange_cross,25297,0.056784%,cp,Capture Point
cp_egypt_final,25099,0.056340%,cp,Capture Point
idle_sniper_war_v5_1,25039,0.056205%,idle,Other
ba_hopjb_v8,25028,0.056180%,ba,Other
dr_cryptnecrodancer_v6,24876,0.055839%,dr,Other
cp_orange_x3_uni,24807,0.055684%,cp,Capture Point
ach_idle_strange_lanes_v4_b4,24765,0.055590%,ach,Other
ctf_sawmill,24727,0.055505%,ctf,Capture the Flag
ultiduo_baloo,24614,0.055251%,ultiduo,Other
trade_plaza_lord_b10a,24607,0.055235%,trade,Trade and Achievement
dr_castle_steveh_2c,24466,0.054919%,dr,Other
mvm_mannhattan_advanced2,24461,0.054908%,mvm,Man vs Machine
ach_ysidletst_v4fa,24237,0.054405%,ach,Other
cp_orange_toyfort_tbrv2,24206,0.054335%,cp,Capture Point
idle_sniper_war_v4_9,24113,0.054126%,idle,Other
idle_servers_v10,23878,0.053599%,idle,Other
koth_lakeside_event,23828,0.053487%,koth,King of the Hill
vsh_remains_of_king_b1,23546,0.052854%,vsh,Other
pl_orange_x_b5a,23514,0.052782%,pl,Payload
dr_sawmill_final,23307,0.052317%,dr,Other
jail_minecraft_dynfestivecommun,23301,0.052304%,jail,Other
cp_orange_x3_se2_fix5b,22909,0.051424%,cp,Capture Point
achievement_botfarm_v9,22817,0.051217%,achievement,Trade and Achievement
meem_kills_1,22798,0.051175%,meem,Other
oot3d_hyrule,22796,0.051170%,oot3d,Other
arena_nucleus,22700,0.050955%,arena,Other
dr_bearun_b3,22460,0.050416%,dr,Other
trade_minecraft_glorified_v4,22286,0.050025%,trade,Trade and Achievement
tfdb_bitch_ass_final,22180,0.049787%,tfdb,Other
dm_halo_bloodgulch_v3,21981,0.049341%,dm,Deathmatch
trade_plaza_lord_b10a_night,21926,0.049217%,trade,Trade and Achievement
achievement_tinyhuge-h25-night,21919,0.049202%,achievement,Trade and Achievement
arena_ravine,21880,0.049114%,arena,Other
surf_snow_arena_v3,21822,0.048984%,surf,Other
jump_rush,21782,0.048894%,jump,Other
arena_well,21626,0.048544%,arena,Other
vsh_toys_b2,21551,0.048375%,vsh,Other
dr_aconian_final,21543,0.048357%,dr,Other
mvm_rottenburg_advanced2,21482,0.048221%,mvm,Man vs Machine
dr_4halls_v6,21449,0.048146%,dr,Other
dr_pirate_adventure_fix,21413,0.048066%,dr,Other
jb_famouz_2_prereliz,21411,0.048061%,jb,Other
achievement_siusiaczkowo_v8d,21406,0.048050%,achievement,Trade and Achievement
mvm_coaltown_intermediate2,21385,0.048003%,mvm,Man vs Machine
sd_doomsday,21320,0.047857%,sd,Other
vsh_urban_works_final_fix,21158,0.047493%,vsh,Other
achievement_all_v4,21144,0.047462%,achievement,Trade and Achievement
jump_beef,21002,0.047143%,jump,Other
mvm_coaltown_intermediate,20812,0.046717%,mvm,Man vs Machine
vsh_military_area_se2,20798,0.046685%,vsh,Other
mvm_decoy_30wave_v46_h,20720,0.046510%,mvm,Man vs Machine
cp_coldfront,20636,0.046322%,cp,Capture Point
dr_cocainum_v2_1_xmas,20386,0.045760%,dr,Other
idle_cy4g_poke_icecavernz,20332,0.045639%,idle,Other
cp_orange_final,20329,0.045632%,cp,Capture Point
jail_snowballsv20_opst,20244,0.045442%,jail,Other
ba_jail_hopjb_b5,20126,0.045177%,ba,Other
mario_kart_2014_vk,20080,0.045074%,mario,Other
mochilabr_neon_,19993,0.044878%,mochilabr,Other
td_rampant_v2d,19825,0.044501%,td,Other
achievement_solddemoachievs7,19703,0.044227%,achievement,Trade and Achievement
slender_bloodwood_r1,19615,0.044030%,slender,Other
arena_a_supply_base_v1,19490,0.043749%,arena,Other
pkmn_goldenrodcity_b3,19467,0.043698%,pkmn,Other
ba_hopjb_v6,19256,0.043224%,ba,Other
jump_quba,19171,0.043033%,jump,Other
achievement_idle_nomercy_hdr_v4,18997,0.042643%,achievement,Trade and Achievement
cp_5gorge,18880,0.042380%,cp,Capture Point
tc_hydro,18860,0.042335%,tc,Other
vsh_chemical_v1,18781,0.042158%,vsh,Other
dr_psykopat_fix,18766,0.042124%,dr,Other
achievement_egypt_night_v6,18762,0.042115%,achievement,Trade and Achievement
jump_minecraftia_preview12,18649,0.041861%,jump,Other
vsh_area_54tress_b4,18469,0.041457%,vsh,Other
mvm_decoy_intermediate,18444,0.041401%,mvm,Man vs Machine
vsh_egyptyspot_fix_skial,18373,0.041242%,vsh,Other
rd_asteroid,18354,0.041199%,rd,Other
vsh_livingroom_v2,18295,0.041067%,vsh,Other
balloon_race_v2b,18292,0.041060%,balloon,Other
jb_soviet,18134,0.040705%,jb,Other
duel_duel2,17928,0.040243%,duel,Other
tfdb_octagon_a6,17923,0.040232%,tfdb,Other
mvm_mannhattan_advanced1,17847,0.040061%,mvm,Man vs Machine
tfdb_spacebox_a2,17788,0.039929%,tfdb,Other
dm_duel_v2_b,17711,0.039756%,dm,Deathmatch
koth_highpass,17684,0.039695%,koth,King of the Hill
cp_fastlane,17647,0.039612%,cp,Capture Point
surf_entrance_v2,17524,0.039336%,surf,Other
trade_minecraft_realms_ff1,17491,0.039262%,trade,Trade and Achievement
slender_scp_087_b_v3,17363,0.038975%,slender,Other
achievement_egypt_night_dt12,17338,0.038919%,achievement,Trade and Achievement
cp_orange_shcrit_x_7,17264,0.038752%,cp,Capture Point
achi_apg_whitey_v5c,17216,0.038645%,achi,Other
arena_offblast_final,17171,0.038544%,arena,Other
mvm_bigrock_advanced2,17147,0.038490%,mvm,Man vs Machine
trade_plaza_neon,17144,0.038483%,trade,Trade and Achievement
gmodtech_hotel_v1,17129,0.038449%,gmodtech,Other
jail_casuarina_b5_tf,17081,0.038342%,jail,Other
dr_office_final,17062,0.038299%,dr,Other
cp_orange_asylum,16966,0.038084%,cp,Capture Point
vsh_citypeak_v1,16948,0.038043%,vsh,Other
dr_egypt_v4,16864,0.037855%,dr,Other
vsh_oilrig_v18,16765,0.037632%,vsh,Other
trade_masscc_h1,16615,0.037296%,trade,Trade and Achievement
jb_ponyjail_a2_fix,16527,0.037098%,jb,Other
dr_r60d_final_x,16383,0.036775%,dr,Other
vsh_coldvine_b1,16281,0.036546%,vsh,Other
vsh_oh_multimaps_b1,15916,0.035727%,vsh,Other
dr_dungeon_beta,15859,0.035599%,dr,Other
cp_gorge_event,15834,0.035543%,cp,Capture Point
vsh_tower_of_peril_redux_v6,15767,0.035392%,vsh,Other
cp_orange_towers_tf2ss,15713,0.035271%,cp,Capture Point
dr_psykopat,15699,0.035239%,dr,Other
mario_kart_2_v30_breadit,15535,0.034871%,mario,Other
vsh_reiltas_hills_v2,15534,0.034869%,vsh,Other
achievement_4fragers_r3b,15433,0.034642%,achievement,Trade and Achievement
trade_plaza_snow_valley,15361,0.034481%,trade,Trade and Achievement
cp_well,15280,0.034299%,cp,Capture Point
mvm_coaltown_expert1,15179,0.034072%,mvm,Man vs Machine
trade_pokemon_gc_skufs_b2,15161,0.034032%,trade,Trade and Achievement
achievement_idle_skbox_v15,15120,0.033940%,achievement,Trade and Achievement
achievement_idle_inferno_b2,15077,0.033843%,achievement,Trade and Achievement
27015_com_idle_wc_v2,14995,0.033659%,27015,Other
trade_minecraft_vatican_v1,14914,0.033477%,trade,Trade and Achievement
achi_helms_deep_v3,14859,0.033354%,achi,Other
achievement_turbov14,14776,0.033168%,achievement,Trade and Achievement
dr_trollrun_final_fix,14756,0.033123%,dr,Other
vsh_secret_base_b2,14739,0.033085%,vsh,Other
tfdb_desert_madness_a9,14685,0.032963%,tfdb,Other
mvm_decoy_expert1,14672,0.032934%,mvm,Man vs Machine
vsh_arakawa_b1a,14617,0.032811%,vsh,Other
slender_swarm_v1b,14588,0.032746%,slender,Other
vsh_megaman6_b5d,14556,0.032674%,vsh,Other
surf_forbidden_ways_njv,14500,0.032548%,surf,Other
ponyville_net_v4,14482,0.032508%,ponyville,Other
vsh_skyhigh_resort_gl_cap,14463,0.032465%,vsh,Other
cp_reckoner_rc1,14436,0.032404%,cp,Capture Point
minecraft_egypt_ctf,14379,0.032276%,minecraft,Other
cp_foundry,14376,0.032270%,cp,Capture Point
minecraft_river,14369,0.032254%,minecraft,Other
mvm_coaltown_advanced,14346,0.032202%,mvm,Man vs Machine
vsh_supermario_v2,14256,0.032000%,vsh,Other
trade_minecraft_river_f108,14236,0.031956%,trade,Trade and Achievement
ctf_convoy_v2,14235,0.031953%,ctf,Capture the Flag
dr_timetravel_fix,14227,0.031935%,dr,Other
mvm_rottenburg_advanced1,14210,0.031897%,mvm,Man vs Machine
vsh_weaponsdepot_lz_b2,14180,0.031830%,vsh,Other
vsh_horyuji_v1,14130,0.031718%,vsh,Other
trade_mega,14119,0.031693%,trade,Trade and Achievement
trade_ztg_space_plaza_v2_1,14107,0.031666%,trade,Trade and Achievement
pl_metropolis_b5,14078,0.031601%,pl,Payload
dr_cocainum_xmas_morning_v4p,14054,0.031547%,dr,Other
idle_sniper_war_v14,14020,0.031471%,idle,Other
achievement_turbov15_betav5,14006,0.031439%,achievement,Trade and Achievement
jump_elephant_a2,13960,0.031336%,jump,Other
dm_duel_pl,13950,0.031314%,dm,Deathmatch
koth_harvest_minecraft,13883,0.031163%,koth,King of the Hill
mvm_bigrock_advanced1,13828,0.031040%,mvm,Man vs Machine
mario_kart,13806,0.030990%,mario,Other
tfdb_box_sides_a3,13766,0.030900%,tfdb,Other
dr_4halls_v4,13747,0.030858%,dr,Other
slender_hospice_b5,13677,0.030701%,slender,Other
dr_prison_escape_v7,13640,0.030618%,dr,Other
surf_snow_arena_ssv3,13606,0.030541%,surf,Other
tf2hats_idle_awesomebox_v9,13581,0.030485%,tf2hats,Other
mvm_decoy_intermediate2,13467,0.030229%,mvm,Man vs Machine
ach_jpcity_v5,13360,0.029989%,ach,Other
vsh_pineyard_final,13359,0.029987%,vsh,Other
trade_goldenrodcity_v1b,13347,0.029960%,trade,Trade and Achievement
slender_swamp_v3,13342,0.029949%,slender,Other
achievement_idle_sakuraz,13301,0.029857%,achievement,Trade and Achievement
dr_office_v6_b3p,13250,0.029742%,dr,Other
koth_viaduct_event,13231,0.029700%,koth,King of the Hill
surf_horizon_v3,13222,0.029679%,surf,Other
plr_nightfall_final,13200,0.029630%,plr,Payload Race
minecraft_x3,13196,0.029621%,minecraft,Other
dr_trollrun_v2_dg6_fix,13173,0.029569%,dr,Other
cp_freight_final1,13119,0.029448%,cp,Capture Point
mvm_decoy_advanced,13030,0.029248%,mvm,Man vs Machine
ba_jail_minecart_b13_v3_skial_f,13001,0.029183%,ba,Other
mario_kart_panda_winter1,12979,0.029134%,mario,Other
cp_orange_transition_v2,12967,0.029107%,cp,Capture Point
ba_jail_wip_a6v2,12963,0.029098%,ba,Other
dr_runoff,12944,0.029055%,dr,Other
vsh_snowflakes_b1,12866,0.028880%,vsh,Other
vsh_minegay_b3_fixb,12853,0.028851%,vsh,Other
surf_revolution_v1,12851,0.028847%,surf,Other
vsh_dr_ironworks_beta03,12825,0.028788%,vsh,Other
jump_summer_rc1,12804,0.028741%,jump,Other
vsh_turret_testing_b2,12738,0.028593%,vsh,Other
cp_yukon_final,12701,0.028510%,cp,Capture Point
vsh_yammoe_v4,12675,0.028452%,vsh,Other
cp_sunshine_event,12673,0.028447%,cp,Capture Point
trade_minecraft_river_j_s108,12660,0.028418%,trade,Trade and Achievement
trade_minecraft_b45_hg,12637,0.028366%,trade,Trade and Achievement
dr_tantrum,12636,0.028364%,dr,Other
vsh_pumpkin_fort,12602,0.028288%,vsh,Other
achievement_idlefight_v4,12503,0.028065%,achievement,Trade and Achievement
cp_powerhouse,12495,0.028047%,cp,Capture Point
vsh_rats_office_fix_b3a,12451,0.027949%,vsh,Other
vsh_jurassic_v2,12371,0.027769%,vsh,Other
vsh_egyptyspot_v2,12357,0.027738%,vsh,Other
tfdb_country_b1,12309,0.027630%,tfdb,Other
achievement_idlefight_chillpod6,12277,0.027558%,achievement,Trade and Achievement
dr_safety_first_fix,12250,0.027498%,dr,Other
achievement_idle_panda6,12230,0.027453%,achievement,Trade and Achievement
vsh_spotline_r1a,12197,0.027379%,vsh,Other
gm_bigcity,12130,0.027228%,gm,Other
jump_sitood,12121,0.027208%,jump,Other
dr_cocainum_spooky_betap,12117,0.027199%,dr,Other
koth_bagel_b4,12056,0.027062%,koth,King of the Hill
vsh_streets_v2,12006,0.026950%,vsh,Other
ctf_minedesert_b4,11998,0.026932%,ctf,Capture the Flag
koth_trainsawlaser_rc2,11987,0.026907%,koth,King of the Hill
dr_industrial_v2b,11950,0.026824%,dr,Other
pl_pier_b20,11923,0.026764%,pl,Payload
tf_rmcity_sunset_club_v2fix3,11909,0.026732%,tf,Other
dm_mariokart2_b4,11863,0.026629%,dm,Deathmatch
trade_minecraft_2014_v2,11829,0.026553%,trade,Trade and Achievement
achievement_idlefight,11807,0.026503%,achievement,Trade and Achievement
cp_blackmesa_final,11774,0.026429%,cp,Capture Point
mge_training_v8_beta4a,11772,0.026425%,mge,Other
vsh_barn_night_final,11766,0.026411%,vsh,Other
vsh_outdoors_b2a,11740,0.026353%,vsh,Other
vsh_cactustemple_v1,11733,0.026337%,vsh,Other
cp_orange_cx_b5,11728,0.026326%,cp,Capture Point
ctf_2fort_classic_mod_bd50,11699,0.026261%,ctf,Capture the Flag
cp_snowplow,11676,0.026209%,cp,Capture Point
vsh_silo_park_b1,11643,0.026135%,vsh,Other
pl_millstone_event,11589,0.026014%,pl,Payload
vsh_volcanic_b2,11581,0.025996%,vsh,Other
jump_eons_b2,11550,0.025926%,jump,Other
vsh_castle_siege_b8,11547,0.025920%,vsh,Other
vsh_dustshowdown_panda,11533,0.025888%,vsh,Other
vsh_2fortdesk_s2b,11530,0.025881%,vsh,Other
idle_n_hate,11473,0.025753%,idle,Other
dr_winterhill_beta2,11404,0.025599%,dr,Other
vsh_2tower_spirals_v2,11321,0.025412%,vsh,Other
trade_minecraft_2014_v3,11317,0.025403%,trade,Trade and Achievement
idle_cy4g_pokebeachb4,11316,0.025401%,idle,Other
tfdb_baseball_rc1,11310,0.025388%,tfdb,Other
achievement_idle_bad,11281,0.025322%,achievement,Trade and Achievement
achievement_idle4life_v3,11239,0.025228%,achievement,Trade and Achievement
cp_orange_bonk_v9c_noel,11216,0.025177%,cp,Capture Point
jump_oats_b3,11175,0.025084%,jump,Other
dr_cocainum_v2_1_xmas_fix,11148,0.025024%,dr,Other
trade_appleloosa_v2,11101,0.024918%,trade,Trade and Achievement
idle_sniper_war_v10,11007,0.024707%,idle,Other
cp_orange_vote_2016b,10970,0.024624%,cp,Capture Point
td_firstone_v11,10883,0.024429%,td,Other
trade_plaza_disco_beats,10873,0.024407%,trade,Trade and Achievement
mvm_decoy_advanced3,10862,0.024382%,mvm,Man vs Machine
acg_apartment_redux_14_tfix,10857,0.024371%,acg,Other
dr_wolfenstein_v1_2,10847,0.024348%,dr,Other
ba_jail_casuarina_b5_final2,10820,0.024288%,ba,Other
dr_cocainum_v6_dg6_fix,10811,0.024267%,dr,Other
tfdb_box_space_a5_fix_v2,10804,0.024252%,tfdb,Other
cp_orange_bonk_v9c,10798,0.024238%,cp,Capture Point
tfdb_cwg_gym_v1,10756,0.024144%,tfdb,Other
jump_4starters_rc1,10728,0.024081%,jump,Other
dr_trollrun_final_v2,10702,0.024023%,dr,Other
vsh_nova_prospekt_beta,10693,0.024003%,vsh,Other
cp_orange_x,10691,0.023998%,cp,Capture Point
jump_airships_v2,10652,0.023911%,jump,Other
vsh_industrial_v1,10645,0.023895%,vsh,Other
vsh_track,10616,0.023830%,vsh,Other
cp_junction_final,10591,0.023774%,cp,Capture Point
vsh_minecraft_b2,10580,0.023749%,vsh,Other
surf_greatriver_vgames_v7,10537,0.023652%,surf,Other
surf_snow_arena_v2,10535,0.023648%,surf,Other
vsh_partyisland_v7,10535,0.023648%,vsh,Other
vsh_dunger_b2a,10512,0.023596%,vsh,Other
minecraft_realm,10348,0.023228%,minecraft,Other
vsh_streets_v3,10323,0.023172%,vsh,Other
surf_rainbow_v1,10232,0.022968%,surf,Other
surf_classics,10175,0.022840%,surf,Other
slender_arizona_a6,10147,0.022777%,slender,Other
arena_farm_feud_b1,10137,0.022754%,arena,Other
cp_snakewater_u14,10136,0.022752%,cp,Capture Point
cp_orange_x3_ft_241_86131,10120,0.022716%,cp,Capture Point
vsh_drejun_v2,10052,0.022564%,vsh,Other
slender_sanatorium_b2,9987,0.022418%,slender,Other
ach_for_all_pl_rus_v11,9949,0.022332%,ach,Other
vsh_courtyard,9932,0.022294%,vsh,Other
cp_standin_final,9858,0.022128%,cp,Capture Point
jail_night_dynf_v5b,9836,0.022079%,jail,Other
ba_jail_hopjb_b4,9830,0.022065%,ba,Other
jump_sketchy_final,9823,0.022050%,jump,Other
mvm_mannworks_expert1,9781,0.021955%,mvm,Man vs Machine
vsh_nebula_v6,9770,0.021931%,vsh,Other
cp_orange_x_7_2013,9762,0.021913%,cp,Capture Point
dr_mlg_bearun_b3_fix,9740,0.021863%,dr,Other
orange_tdl_mx_playa_v6,9729,0.021839%,orange,Other
ba_hopjb_v7,9700,0.021774%,ba,Other
vsh_nale_b1e,9667,0.021699%,vsh,Other
surf_crzyfrog_reloaded,9662,0.021688%,surf,Other
trade_neon,9650,0.021661%,trade,Trade and Achievement
tfdb_redcourt_intox,9641,0.021641%,tfdb,Other
cp_orange_x_lolz_v18,9641,0.021641%,cp,Capture Point
surf_forbidden_ways_reloaded,9582,0.021509%,surf,Other
vsh_convoy_v2_a4_fix,9571,0.021484%,vsh,Other
trade_pyro_v4a,9498,0.021320%,trade,Trade and Achievement
koth_moonshine_event,9437,0.021183%,koth,King of the Hill
trade_lucky_3,9392,0.021082%,trade,Trade and Achievement
arena_rust_remake,9365,0.021022%,arena,Other
mvm_coaltown_advanced2,9310,0.020898%,mvm,Man vs Machine
ctf_gorge,9304,0.020885%,ctf,Capture the Flag
slender_decay_b5,9275,0.020820%,slender,Other
mvm_coaltown_30waves_rekt,9271,0.020811%,mvm,Man vs Machine
koth_orange_50f_tower,9267,0.020802%,koth,King of the Hill
cp_orange_50f_tower_v6,9266,0.020799%,cp,Capture Point
slender_two_fort_b2a,9252,0.020768%,slender,Other
vsh_swamp_outpost_b1a,9244,0.020750%,vsh,Other
dr_family_guy_v5,9206,0.020665%,dr,Other
vsh_tower_of_peril_redux_v6_fix,9194,0.020638%,vsh,Other
jail_casuarina_b5_tf2jail_pbfix,9156,0.020552%,jail,Other
trade_minecraft_kvkbeta2,9103,0.020433%,trade,Trade and Achievement
ba_jail_albany_b7,9051,0.020317%,ba,Other
arena_ratssaxy,8981,0.020160%,arena,Other
koth_probed,8918,0.020018%,koth,King of the Hill
slender_return_to_freddys_b2,8901,0.019980%,slender,Other
mvm_mannworks_intermediate2,8895,0.019967%,mvm,Man vs Machine
ctf_turbine_pro_b1,8892,0.019960%,ctf,Capture the Flag
trade_rawr_v1,8889,0.019953%,trade,Trade and Achievement
surf_utopia_njv,8873,0.019917%,surf,Other
dr_trollrun_final_fixis,8855,0.019877%,dr,Other
vsh_farm_feud,8836,0.019834%,vsh,Other
pl_barnblitz_pro6,8828,0.019816%,pl,Payload
slender_4way_v3_fix,8813,0.019783%,slender,Other
mvm_mannworks_advanced,8793,0.019738%,mvm,Man vs Machine
vsh_detra_v3,8775,0.019697%,vsh,Other
vsh_stream_platform,8766,0.019677%,vsh,Other
vsh_megaman6_b4,8732,0.019601%,vsh,Other
ba_mlcastle_v10_skial_fix,8697,0.019522%,ba,Other
vsh_grid_walls_3,8666,0.019453%,vsh,Other
vsh_aquaticbase_b5,8571,0.019239%,vsh,Other
cp_orange_x3_top,8549,0.019190%,cp,Capture Point
vsh_spaaaaace_v1_fix_s3,8502,0.019084%,vsh,Other
slender_weepers_b3,8485,0.019046%,slender,Other
ba_jail_casuarina_b6_secret2,8483,0.019042%,ba,Other
arena_warehouse_v2,8448,0.018963%,arena,Other
trade_snowshine_v2,8428,0.018918%,trade,Trade and Achievement
slender_biotics_lab_v1b,8414,0.018887%,slender,Other
jb_minecart_chromeb4,8410,0.018878%,jb,Other
cp_bellas_roomz_v3,8409,0.018876%,cp,Capture Point
achievement_idlefight_chillpod5,8362,0.018770%,achievement,Trade and Achievement
tr_walkway_fix,8336,0.018712%,tr,Other
koth_wubwubwub_remix_vip,8329,0.018696%,koth,King of the Hill
surf_overlook_v2,8324,0.018685%,surf,Other
vsh_military_area_b1_d2,8299,0.018629%,vsh,Other
surf_mesa_tf2,8289,0.018606%,surf,Other
achievement_all_reloaded_v13,8251,0.018521%,achievement,Trade and Achievement
tfdb_orangebox_b2,8248,0.018514%,tfdb,Other
slender_fiveroundsatfreddys_b4,8238,0.018492%,slender,Other
vsh_arcticbase_b3,8211,0.018431%,vsh,Other
mvm_decoy_30wave_v30,8205,0.018418%,mvm,Man vs Machine
achievement_idle_awesomebox_1,8203,0.018413%,achievement,Trade and Achievement
mvm_mannworks_intermediate,8194,0.018393%,mvm,Man vs Machine
pd_watergate,8160,0.018317%,pd,Other
vsh_chernobyl_beta,8146,0.018285%,vsh,Other
cp_orange_h!gh$tyle_ragequit,8136,0.018263%,cp,Capture Point
vsh_sewers_final,8129,0.018247%,vsh,Other
cp_orange_desert_x3_b1,8125,0.018238%,cp,Capture Point
ctf_2fort_engi_power,8082,0.018142%,ctf,Capture the Flag
vsh_dr_office_v2,8018,0.017998%,vsh,Other
vsh_weaponsdepot_fix,8014,0.017989%,vsh,Other
cp_convoy,8011,0.017982%,cp,Capture Point
vsh_island_b1,8010,0.017980%,vsh,Other
slender_mansion_b2b,7965,0.017879%,slender,Other
slender_abandoned_b2,7954,0.017854%,slender,Other
cp_orange_x-treme,7945,0.017834%,cp,Capture Point
arena_b_degroot_keep,7932,0.017805%,arena,Other
surf_kitsune_final,7930,0.017800%,surf,Other
ba_jail_minecart_b7,7886,0.017702%,ba,Other
surf_toast_llf,7874,0.017675%,surf,Other
vsh_minedepressao_reborn,7838,0.017594%,vsh,Other
slender_dustbowl_b1d,7838,0.017594%,slender,Other
trademon_plaza_3,7791,0.017488%,trademon,Other
tfdb_rocketbucks_v2,7789,0.017484%,tfdb,Other
dr_undertale_b3_fix4p,7744,0.017383%,dr,Other
trade_hyrule_oot3d_final1,7742,0.017378%,trade,Trade and Achievement
war3sourc_e_ver7,7740,0.017374%,war3sourc,Other
vsh_dr_block_v9,7733,0.017358%,vsh,Other
trade_piazza_lz_b5b,7690,0.017262%,trade,Trade and Achievement
slender_sector_six_b1b,7664,0.017203%,slender,Other
jump_bomb,7655,0.017183%,jump,Other
slender_the_ward_b2,7649,0.017170%,slender,Other
zf_lake_v4,7601,0.017062%,zf,Other
arena_harvest_v2,7595,0.017048%,arena,Other
vsh_moving_in_v3,7591,0.017039%,vsh,Other
slender_manor_final1,7584,0.017024%,slender,Other
surf_rebel_scaz,7578,0.017010%,surf,Other
mario_kart_deluxe_v3,7570,0.016992%,mario,Other
jump_renard,7568,0.016988%,jump,Other
achievement_idle_negro19g,7519,0.016878%,achievement,Trade and Achievement
dr_r60d_finalplus_optimized,7480,0.016790%,dr,Other
dr_mario_b4,7458,0.016741%,dr,Other
trade_hyrule_oot3d_alpha_13a,7414,0.016642%,trade,Trade and Achievement
vsh_spaaaaace_v1_fix_s4,7379,0.016564%,vsh,Other
pl_cashworks_final1,7358,0.016516%,pl,Payload
vsh_west_fix,7351,0.016501%,vsh,Other
dr_running_v5,7334,0.016463%,dr,Other
tr_rocket_shooting2,7328,0.016449%,tr,Other
mvm_mannworks_30wave_v30,7309,0.016406%,mvm,Man vs Machine
dr_office_vrs4,7304,0.016395%,dr,Other
sm64_star_road_b2,7302,0.016391%,sm64,Other
jump_adventure,7299,0.016384%,jump,Other
strange_level_minecraft_v1,7294,0.016373%,strange,Other
slender_containmentbreach_v1b,7292,0.016368%,slender,Other
cp_spire_a1b,7286,0.016355%,cp,Capture Point
vsh_absolute_zero_v1,7246,0.016265%,vsh,Other
slender_forgotten_tomb_b2,7225,0.016218%,slender,Other
cp_orange_gamerland_classic,7223,0.016213%,cp,Capture Point
vsh_lake_b3,7206,0.016175%,vsh,Other
achievement_idle_friendly_v14,7204,0.016171%,achievement,Trade and Achievement
dm_duel_vbios_v1b2,7203,0.016169%,dm,Deathmatch
vsh_mc_village_beta,7187,0.016133%,vsh,Other
jump_blueberry_b3,7130,0.016005%,jump,Other
cyberpunk2_a,7095,0.015926%,cyberpunk2,Other
zm_blood_gulch,7068,0.015866%,zm,Other
trade_masscc_g1,7067,0.015863%,trade,Trade and Achievement
slender_storage_zero_b1c,7060,0.015848%,slender,Other
vsh_wild_canyon,7060,0.015848%,vsh,Other
slender_atomics_b4b,7050,0.015825%,slender,Other
achievement_idle4life_v2,7045,0.015814%,achievement,Trade and Achievement
dr_undertale_v1f,7044,0.015812%,dr,Other
cp_orange_x3_panda_b2,7043,0.015809%,cp,Capture Point
slender_scp_087_b_v3b,7042,0.015807%,slender,Other
zs_inferno,7032,0.015785%,zs,Other
vsh_sandbox_v7,6983,0.015675%,vsh,Other
slender_claustrophobia_b1,6965,0.015634%,slender,Other
vsh_ram_shacked_final,6949,0.015598%,vsh,Other
vsh_north_mountain_pb,6948,0.015596%,vsh,Other
dr_time_travel_b4,6942,0.015583%,dr,Other
2fortsniper_tf2_f,6933,0.015562%,2fortsniper,Other
tfdb_greybox,6926,0.015547%,tfdb,Other
sniper_orange_110_nobridge,6906,0.015502%,sniper,Other
vsh_snow_area_b1,6889,0.015464%,vsh,Other
dr_aztecan_v5,6886,0.015457%,dr,Other
surf_tf_japan_v1,6875,0.015432%,surf,Other
dr_cocainum_fixed_v3,6870,0.015421%,dr,Other
pl_upward_abandoned,6830,0.015331%,pl,Payload
vsh_pruvia_v8,6803,0.015271%,vsh,Other
tfdb_box_space_a5_fix,6795,0.015253%,tfdb,Other
surf_10x_reload_tf2,6769,0.015194%,surf,Other
achievement_gagetxs_servers_28,6754,0.015161%,achievement,Trade and Achievement
dr_cocainum_v3_xmas_final,6745,0.015140%,dr,Other
mario_kart2_ig8,6744,0.015138%,mario,Other
cp_balloon_race,6728,0.015102%,cp,Capture Point
dm_duel_pro_xm16,6712,0.015066%,dm,Deathmatch
dr_minefarm_final1,6631,0.014885%,dr,Other
mario_kart_park_v2_1,6626,0.014873%,mario,Other
dr_delay_b3,6615,0.014849%,dr,Other
slender_scp_087_b_v3_h,6606,0.014828%,slender,Other
cp_vanguard,6601,0.014817%,cp,Capture Point
vsh_n_orange_tower_fix,6576,0.014761%,vsh,Other
arena_pool_day,6568,0.014743%,arena,Other
dr_bearun_vrs2b,6539,0.014678%,dr,Other
dr_bank_v2,6529,0.014656%,dr,Other
achievement_for_all_rus_v9,6509,0.014611%,achievement,Trade and Achievement
ph_mountain_a2,6500,0.014591%,ph,Other
mvm_mannworks_ironman,6473,0.014530%,mvm,Man vs Machine
jump_baqu_a2,6463,0.014507%,jump,Other
cp_oranges_rc1,6432,0.014438%,cp,Capture Point
jump_cube_b6,6431,0.014436%,jump,Other
cp_granary_pro_rc3,6430,0.014433%,cp,Capture Point
vsh_mountanbash_v3,6430,0.014433%,vsh,Other
vsh_military_area_tex,6403,0.014373%,vsh,Other
surf_pulse_v2,6395,0.014355%,surf,Other
vsh_town_v2,6381,0.014323%,vsh,Other
pass_brickyard,6370,0.014299%,pass,Other
cp_orange_x3_fus_b2,6364,0.014285%,cp,Capture Point
vsh_dr_crash_bandicoot_v6,6358,0.014272%,vsh,Other
arena_assault_ultimate,6352,0.014258%,arena,Other
dr_volvagias_lair_beta03,6329,0.014207%,dr,Other
slender_atomics_b4a,6328,0.014204%,slender,Other
pl_jungle_a1c,6314,0.014173%,pl,Payload
sniper_orange_110,6305,0.014153%,sniper,Other
surf_telstar_b4,6305,0.014153%,surf,Other
jump_orbital_rc1,6298,0.014137%,jump,Other
ctf_turbine_pro_rc4,6290,0.014119%,ctf,Capture the Flag
vsh_military_area_tex_fix,6275,0.014085%,vsh,Other
mvm_coaltown_30wave_v30,6274,0.014083%,mvm,Man vs Machine
pkmn_ecruteakcity_v4f,6268,0.014070%,pkmn,Other
jump_academy_winter16a,6267,0.014068%,jump,Other
cp_orange_superfort_tbrv3,6227,0.013978%,cp,Capture Point
vsh_crevice_northpole_fix,6207,0.013933%,vsh,Other
orange_a3b,6202,0.013922%,orange,Other
ctf_facing_worlds_2011,6202,0.013922%,ctf,Capture the Flag
vsh_dr_cocainum_v2_1_xmas,6183,0.013879%,vsh,Other
jump_sexydev_v3,6182,0.013877%,jump,Other
vsh_crashbox_b4,6182,0.013877%,vsh,Other
jump_beyond_b3,6174,0.013859%,jump,Other
slender_frost_run_b4,6146,0.013796%,slender,Other
cp_orange_h!gh$tyle_ragequit_2,6141,0.013785%,cp,Capture Point
cp_vidya_a3,6118,0.013733%,cp,Capture Point
dr_dlux_nightfall_v2,6115,0.013726%,dr,Other
ba_jail_kisnowday_v1_tf2jail,6063,0.013610%,ba,Other
idle_sniper_war_wyd_final,6055,0.013592%,idle,Other
cp_orange_vote_2016c,6055,0.013592%,cp,Capture Point
surf_aircontrol,6050,0.013580%,surf,Other
vsh_snowglobe_e2,6044,0.013567%,vsh,Other
dm_sdm_final,6040,0.013558%,dm,Deathmatch
cp_orange_nsr_x7,6008,0.013486%,cp,Capture Point
trade_plaza_4_xy,6007,0.013484%,trade,Trade and Achievement
achievement_idle_bad_v2,6001,0.013470%,achievement,Trade and Achievement
cp_abandoned_orange,5950,0.013356%,cp,Capture Point
slender_containmentbreach_v2,5949,0.013354%,slender,Other
vsh_museum_night_v2,5947,0.013349%,vsh,Other
slender_elementary_b1a,5926,0.013302%,slender,Other
rusty_bucket_bay,5902,0.013248%,rusty,Other
dm_madcap,5888,0.013217%,dm,Deathmatch
vsh_rats_office_pb1,5877,0.013192%,vsh,Other
trade_minecraftworld_a9_hg,5865,0.013165%,trade,Trade and Achievement
cp_orange_x3_8cp,5860,0.013154%,cp,Capture Point
dr_mysterious_underground_v10c,5860,0.013154%,dr,Other
vsh_dustshowdown_redux_rc2,5837,0.013102%,vsh,Other
mvm_ma_ep8_1_easy,5833,0.013093%,mvm,Man vs Machine
vsh_kakariko_playboy3,5820,0.013064%,vsh,Other
ctf_minedesert_b6,5815,0.013053%,ctf,Capture the Flag
trade_minecraft_neon_v169,5791,0.012999%,trade,Trade and Achievement
vsh_cairo_pyramid_v4,5782,0.012979%,vsh,Other
trade_idle_practice_v4,5778,0.012970%,trade,Trade and Achievement
vsh_arktown_v3,5772,0.012956%,vsh,Other
trade_pokemon_tf2ss,5769,0.012950%,trade,Trade and Achievement
trade_frantic_factory_v4a,5738,0.012880%,trade,Trade and Achievement
arena_farm,5736,0.012876%,arena,Other
slender_forgotten_tomb_b2b,5730,0.012862%,slender,Other
slender_hydro_b1e,5727,0.012855%,slender,Other
dr_minecraft_b10_fix3,5719,0.012837%,dr,Other
vsh_dr_block_v6_fix2,5714,0.012826%,vsh,Other
vsh_nebula_v5,5704,0.012804%,vsh,Other
dr_office_v2,5700,0.012795%,dr,Other
trade_plaza_max,5690,0.012772%,trade,Trade and Achievement
achievement_apg_r14,5687,0.012766%,achievement,Trade and Achievement
slender_mansion_b3a,5670,0.012727%,slender,Other
cp_orange_n,5660,0.012705%,cp,Capture Point
vsh_reservoir_v2_fix,5651,0.012685%,vsh,Other
cp_lushbowl_final,5639,0.012658%,cp,Capture Point
vsh_pyramidtime,5629,0.012635%,vsh,Other
strange_level_v1,5620,0.012615%,strange,Other
vsh_kakariko_pb2_rc1,5606,0.012584%,vsh,Other
ctf_2fort_classic_uber_18,5598,0.012566%,ctf,Capture the Flag
pl_rainbowride_b7e,5587,0.012541%,pl,Payload
mvm_ma_ep8_1,5576,0.012516%,mvm,Man vs Machine
cp_green_basement_mbm_final,5558,0.012476%,cp,Capture Point
jump_canyon_b1,5557,0.012474%,jump,Other
mvm_decoy_uberupgrades,5539,0.012433%,mvm,Man vs Machine
dr_darkenergy_v3,5531,0.012415%,dr,Other
zm_boatescape6_1_remix_tf2,5522,0.012395%,zm,Other
ba_sincinatti_v3,5485,0.012312%,ba,Other
vsh_faced_v2,5485,0.012312%,vsh,Other
vsh_hakurei_winter_v2,5479,0.012299%,vsh,Other
trade_unusual_gov_tf2tv9a,5476,0.012292%,trade,Trade and Achievement
ph_cchotel_b3,5458,0.012252%,ph,Other
ph_farm_a5,5435,0.012200%,ph,Other
vsh_poolparty_v3,5433,0.012195%,vsh,Other
jump_toxic_v6,5428,0.012184%,jump,Other
achievement_idle_cy4g_tropicz,5412,0.012148%,achievement,Trade and Achievement
cp_orange_x3_t,5399,0.012119%,cp,Capture Point
trade_retro_christmas,5399,0.012119%,trade,Trade and Achievement
achi_idlefight_kruk,5394,0.012108%,achi,Other
trade_minecraft_ff1i,5394,0.012108%,trade,Trade and Achievement
vsh_toys_b2_sg4,5391,0.012101%,vsh,Other
pl_fifthcurve_event,5376,0.012067%,pl,Payload
td_cavern_v4a,5359,0.012029%,td,Other
jail_minecraft_dynf_v9,5356,0.012023%,jail,Other
vsh_skyhigh_resort_b6,5345,0.011998%,vsh,Other
dr_cocainum_v4_fix2,5344,0.011996%,dr,Other
dm_duel_gts_v2,5343,0.011993%,dm,Deathmatch
slender_swamp_v3b,5342,0.011991%,slender,Other
mvm_coaltown_uberupgrades,5306,0.011910%,mvm,Man vs Machine
mvm_decoy_advanced2,5298,0.011892%,mvm,Man vs Machine
jump_above_rc1,5293,0.011881%,jump,Other
arena_byre,5287,0.011868%,arena,Other
tfdb_spacetube_a2_fix,5273,0.011836%,tfdb,Other
vsh_warebloom_b7,5266,0.011821%,vsh,Other
cp_gasigorange_rush_fix2,5264,0.011816%,cp,Capture Point
trade_plaza_tf2ss,5253,0.011791%,trade,Trade and Achievement
vsh_teul_rc3,5234,0.011749%,vsh,Other
jump_christmas,5232,0.011744%,jump,Other
surf_congo_black,5230,0.011740%,surf,Other
trade_psykopat2_fix,5192,0.011654%,trade,Trade and Achievement
dr_bank_v5,5177,0.011621%,dr,Other
vsh_mansionrats,5171,0.011607%,vsh,Other
vsh_pruvia_v9,5170,0.011605%,vsh,Other
dr_hourglass_v3,5163,0.011589%,dr,Other
slender_underground_r1,5157,0.011576%,slender,Other
cp_orange_x_10_2016_final,5152,0.011565%,cp,Capture Point
trade_minecraft_river_,5147,0.011553%,trade,Trade and Achievement
zs_turbine_v4,5144,0.011547%,zs,Other
cp_helmsdeep_v2,5142,0.011542%,cp,Capture Point
slender_hospice_b5c,5135,0.011527%,slender,Other
dm_cloudsdale_b9,5131,0.011518%,dm,Deathmatch
td_swampy_a6,5130,0.011515%,td,Other
vsh_skyhigh_resort_b8_sg2,5128,0.011511%,vsh,Other
vsh_kakariko_pb2,5123,0.011500%,vsh,Other
vsh_minedepressao,5122,0.011497%,vsh,Other
ultiduo_baloo_v2,5088,0.011421%,ultiduo,Other
wacky_races_v2,5087,0.011419%,wacky,Other
dr_horrors_skial_alpha,5080,0.011403%,dr,Other
vsh_crevice_b2,5080,0.011403%,vsh,Other
surf_utopia_aa,5073,0.011387%,surf,Other
vsh_killbox_fix_v3,5057,0.011351%,vsh,Other
slender_arizona_a5a,5034,0.011300%,slender,Other
slender_the_ward_b2a,5010,0.011246%,slender,Other
vsh_dustshowdown_new,5004,0.011232%,vsh,Other
vsh_minecroft_b3,5002,0.011228%,vsh,Other
mlp_appleloosa_v2,4994,0.011210%,mlp,Other
ph_lumberyard_a2,4983,0.011185%,ph,Other
vsh_moving_in_v1,4980,0.011179%,vsh,Other
ww_outset_island,4975,0.011167%,ww,Other
vsh_factoryhell_v2,4967,0.011149%,vsh,Other
cp_orange_x3_natural,4966,0.011147%,cp,Capture Point
slender_abandoned_b2a,4961,0.011136%,slender,Other
ctf_facing_worlds,4960,0.011134%,ctf,Capture the Flag
slender_the_abyss_r1a,4959,0.011131%,slender,Other
mario_kart2_ig10_7_3,4954,0.011120%,mario,Other
surf_quack,4952,0.011116%,surf,Other
surf_buck-wild_tf2,4950,0.011111%,surf,Other
vsh_dr_sawmill_final,4947,0.011105%,vsh,Other
trade_event_obc_4,4945,0.011100%,trade,Trade and Achievement
cp_sacred_pa02,4922,0.011048%,cp,Capture Point
surf_reprise,4910,0.011021%,surf,Other
tfdb_gov_spacedodgeball,4904,0.011008%,tfdb,Other
ssbl_arena_tf2ss,4898,0.010995%,ssbl,Other
jump_when_b2_fix,4895,0.010988%,jump,Other
strange_level_metal,4870,0.010932%,strange,Other
vsh_cairo_pyramid_v8,4869,0.010929%,vsh,Other
cp_orange_x3_ddr,4851,0.010889%,cp,Capture Point
dr_cocainum_v3_dg7-ben_fix,4847,0.010880%,dr,Other
ba_jail_xm_huaijiu_v8,4845,0.010876%,ba,Other
vsh_snowdime_b1c,4833,0.010849%,vsh,Other
dr_hallway_final,4829,0.010840%,dr,Other
ctf_thundermountain,4805,0.010786%,ctf,Capture the Flag
ph_oasis_a1,4804,0.010784%,ph,Other
ach_villains_city_winter_v3,4790,0.010752%,ach,Other
dr_atomic_warfare_tf2_fixed,4789,0.010750%,dr,Other
zom_office_horror_ig_v3,4773,0.010714%,zom,Other
trade_houseofchaos2,4767,0.010700%,trade,Trade and Achievement
dr_mandrillmaze_v2_4,4762,0.010689%,dr,Other
tfdb_float_a2_fix,4761,0.010687%,tfdb,Other
koth_maple_ridge_event,4754,0.010671%,koth,King of the Hill
pd_pit_of_death_event,4753,0.010669%,pd,Other
cp_orange_aarmy_b12_e,4753,0.010669%,cp,Capture Point
ph_cargo_b7,4746,0.010653%,ph,Other
ba_jail_hellsgamers_tf2b8a,4739,0.010638%,ba,Other
vsh_delfino_airstrip_pb1,4738,0.010635%,vsh,Other
slender_the_ward_b1a,4735,0.010629%,slender,Other
slender_elementary_b2a,4724,0.010604%,slender,Other
slender_noexit_b2a,4709,0.010570%,slender,Other
pl_badwater_pro_v7,4707,0.010566%,pl,Payload
tfdb_baseball_a4,4667,0.010476%,tfdb,Other
arena_hydrothunder_b4,4646,0.010429%,arena,Other
trade_minecraft_neon_v87,4642,0.010420%,trade,Trade and Achievement
vsh_teul_v5,4640,0.010415%,vsh,Other
ph_watchtower_a1,4636,0.010406%,ph,Other
trade_plaza_cool,4630,0.010393%,trade,Trade and Achievement
rats_toys,4625,0.010382%,rats,Other
surf_tensile,4617,0.010364%,surf,Other
vsh_complex_d_v10,4604,0.010335%,vsh,Other
ba_mlcastle_v5,4596,0.010317%,ba,Other
mvm_ma_ep7_1,4595,0.010314%,mvm,Man vs Machine
vsh_calamity_beach_v4,4591,0.010305%,vsh,Other
zom_panic_apartment_a_ig,4588,0.010299%,zom,Other
tfdb_box_night_a3,4585,0.010292%,tfdb,Other
trade_pf2_d4_1,4572,0.010263%,trade,Trade and Achievement
ctf_foundry,4569,0.010256%,ctf,Capture the Flag
vsh_brewery_v2a,4553,0.010220%,vsh,Other
vsh_mountanbash_v4_d,4527,0.010162%,vsh,Other
koth_ultiduo_r_b7,4504,0.010110%,koth,King of the Hill
vsh_rats_office_fix2_sg1,4501,0.010103%,vsh,Other
duel_store_3_rebuild,4501,0.010103%,duel,Other
vsh_manncohq_v14_fix,4489,0.010076%,vsh,Other
vsh_snowdime_b2,4484,0.010065%,vsh,Other
dm_ponyville_poni_a1,4483,0.010063%,dm,Deathmatch
jail_minecraft_jodc_v6,4482,0.010061%,jail,Other
slender_the_abyss_v2,4479,0.010054%,slender,Other
vsh_towertop_final,4479,0.010054%,vsh,Other
jb_gulag,4475,0.010045%,jb,Other
vsh_egypt_final,4471,0.010036%,vsh,Other
zm_helmsdeep_v2,4463,0.010018%,zm,Other
slender_asylum_redux_fix,4458,0.010007%,slender,Other
jump_pagoda,4438,0.009962%,jump,Other
slender_containmentbreach_v1d,4432,0.009948%,slender,Other
slender_cry_of_fear_a3,4432,0.009948%,slender,Other
vsh_fuiji_fix1,4426,0.009935%,vsh,Other
slender_parish_b2,4425,0.009933%,slender,Other
slender_sewer_b2b,4414,0.009908%,slender,Other
orange_tdl_mx_playa_3,4409,0.009897%,orange,Other
plr_hightower_rainy,4406,0.009890%,plr,Payload Race
jump_spaghetti_v2,4399,0.009874%,jump,Other
cp_orange_transport_alpha1,4387,0.009847%,cp,Capture Point
cp_orange_skyward,4383,0.009839%,cp,Capture Point
trade_tbgsatellite_v3,4363,0.009794%,trade,Trade and Achievement
vsh_dr_block_v6,4358,0.009782%,vsh,Other
cp_orange_z7_d_event,4356,0.009778%,cp,Capture Point
koth_sky_tower,4354,0.009773%,koth,King of the Hill
slender_the_citadel_b1d,4345,0.009753%,slender,Other
slender_underground_r1a,4322,0.009702%,slender,Other
mvm_ma_ep7_1_easy,4315,0.009686%,mvm,Man vs Machine
mvm_coaltown_30wave_v46_e,4311,0.009677%,mvm,Man vs Machine
tfdb_octagon_a5_fix_nocross,4304,0.009661%,tfdb,Other
tfdb_redcourt_panda_a2,4297,0.009645%,tfdb,Other
dm_duel_hell,4295,0.009641%,dm,Deathmatch
cp_sunshine_rc9,4289,0.009628%,cp,Capture Point
vsh_seasons_v3,4285,0.009619%,vsh,Other
pl_orange_x_b3,4282,0.009612%,pl,Payload
vsh_snowglobe_e1,4278,0.009603%,vsh,Other
jump_deserted_b1,4277,0.009601%,jump,Other
vsh_horyuji,4270,0.009585%,vsh,Other
vsh_partyisland_v7nw,4257,0.009556%,vsh,Other
jump_competitive_b2,4250,0.009540%,jump,Other
vsh_project_powerup_a17,4229,0.009493%,vsh,Other
dr_ironworks_beta05,4225,0.009484%,dr,Other
mvm_machine_attacks_ep8,4223,0.009479%,mvm,Man vs Machine
dr_firetemple_b2a,4223,0.009479%,dr,Other
cp_priderock_b2,4219,0.009470%,cp,Capture Point
vsh_military_area_b1_gsn,4214,0.009459%,vsh,Other
dr_divinity_vfinal,4208,0.009446%,dr,Other
trade_mega_oagwinter,4205,0.009439%,trade,Trade and Achievement
vsh_poletaa,4189,0.009403%,vsh,Other
zom_rooftops_v5,4184,0.009392%,zom,Other
ach_villains_city_night_v3,4183,0.009390%,ach,Other
slender_hydro_b1b,4172,0.009365%,slender,Other
zf_asylum_b2,4171,0.009363%,zf,Other
arena_2fort_night_final,4161,0.009340%,arena,Other
mvm_open_final_swamp,4128,0.009266%,mvm,Man vs Machine
jump_littleman_v3,4125,0.009259%,jump,Other
dm_ponyvillenightmarenight_b3,4100,0.009203%,dm,Deathmatch
zom_floating_city_v1,4094,0.009190%,zom,Other
cp_oranges_z99,4091,0.009183%,cp,Capture Point
vsh_hl1_crossfire_bunker_v16,4090,0.009181%,vsh,Other
dm_vikings_final,4090,0.009181%,dm,Deathmatch
jump_underworld_v2,4087,0.009174%,jump,Other
achievement_idle_awesome_tf2ss,4086,0.009172%,achievement,Trade and Achievement
dr_dlux_nightfall_v2_fixc,4079,0.009156%,dr,Other
vsh_egyptyspot_b4,4071,0.009138%,vsh,Other
mvm_machine_atks_ep15_sh2,4063,0.009120%,mvm,Man vs Machine
harbl_hotel,4045,0.009080%,harbl,Other
cp_orange_x6_a2,4036,0.009060%,cp,Capture Point
koth_coalplant_b7,4033,0.009053%,koth,King of the Hill
vsh_military_medieval_lz_b6,4028,0.009042%,vsh,Other
cyberpunk_2_2,4027,0.009039%,cyberpunk,Other
jump_impact,4025,0.009035%,jump,Other
jump_academy_easy_a,3985,0.008945%,jump,Other
slender_noexit_b1a,3982,0.008938%,slender,Other
vsh_peaches_castle_v1e,3975,0.008923%,vsh,Other
dr_area_51_a3,3972,0.008916%,dr,Other
trade_minecraft_neon_v173,3971,0.008914%,trade,Trade and Achievement
cp_orange_x_oreon,3967,0.008905%,cp,Capture Point
cp_orange_flip_v1,3967,0.008905%,cp,Capture Point
tfdb_tunnel_nud,3964,0.008898%,tfdb,Other
jump_descent_v5,3960,0.008889%,jump,Other
cp_innercity_v3,3943,0.008851%,cp,Capture Point
jump_sweetnawful_rc2,3941,0.008846%,jump,Other
ctf_hellfire,3933,0.008828%,ctf,Capture the Flag
slender_unease_133_a4,3917,0.008792%,slender,Other
cp_phantom_grave,3917,0.008792%,cp,Capture Point
dr_supermario64_v6b_fix,3911,0.008779%,dr,Other
trade_minecraft_2014_v3_hg,3908,0.008772%,trade,Trade and Achievement
mvm_open_final_industry,3899,0.008752%,mvm,Man vs Machine
vsh_wintermountainsv4a,3891,0.008734%,vsh,Other
jump_panama,3891,0.008734%,jump,Other
achievement_idlewyd_megabox,3888,0.008727%,achievement,Trade and Achievement
dr_pauseahead_v13,3885,0.008721%,dr,Other
zom_military_cl1,3880,0.008709%,zom,Other
cp_orange_basement_mbm,3871,0.008689%,cp,Capture Point
mlp_manehattan_b2,3865,0.008676%,mlp,Other
tfdb_octagon,3864,0.008674%,tfdb,Other
trade_coni,3850,0.008642%,trade,Trade and Achievement
slender_alpha_complex_b1,3837,0.008613%,slender,Other
tm_stadium_b2d,3836,0.008611%,tm,Other
slender_2fort_b1,3833,0.008604%,slender,Other
ph_timbertown_a3,3823,0.008581%,ph,Other
war3sourc_d_ver7,3822,0.008579%,war3sourc,Other
jump_babylon,3812,0.008557%,jump,Other
jump_mirage,3812,0.008557%,jump,Other
vsh_cross_b3,3807,0.008546%,vsh,Other
vsh_villa_rosa_v3,3802,0.008534%,vsh,Other
trade_rogueport,3793,0.008514%,trade,Trade and Achievement
jump_littleman_v4,3789,0.008505%,jump,Other
zom_military_rm,3789,0.008505%,zom,Other
vsh_dr_office_v2_custom_v2,3777,0.008478%,vsh,Other
dr_orange_v8,3773,0.008469%,dr,Other
pl_orange_x_b4a,3771,0.008465%,pl,Payload
zs_viaduct,3768,0.008458%,zs,Other
dr_trollrun_final1,3760,0.008440%,dr,Other
cp_orange_weaver_7_b14,3757,0.008433%,cp,Capture Point
dr_mineshaft_v16,3745,0.008406%,dr,Other
vsh_jurassic_v2ffix,3743,0.008402%,vsh,Other
trade_apadiel,3736,0.008386%,trade,Trade and Achievement
mvm_limburgh_final,3727,0.008366%,mvm,Man vs Machine
slender_sanatorium_b2a,3723,0.008357%,slender,Other
tfdb_box_space_a6,3715,0.008339%,tfdb,Other
jail_snowballsv12_opst,3704,0.008314%,jail,Other
trade_echidna_shrine,3702,0.008310%,trade,Trade and Achievement
cp_lazytown_pm,3699,0.008303%,cp,Capture Point
cp_orange_x3-3,3699,0.008303%,cp,Capture Point
ach_for_all_pl_rus_v12,3688,0.008278%,ach,Other
surf_japan_reloaded,3678,0.008256%,surf,Other
vsh_mineboi_b8fixed,3665,0.008227%,vsh,Other
vsh_outpost_v2,3662,0.008220%,vsh,Other
achievement_idle_4towerswyds3,3656,0.008207%,achievement,Trade and Achievement
ph_kakariko_b1,3651,0.008195%,ph,Other
ph_sawmill_a2,3635,0.008159%,ph,Other
idle_cy4g_poke_ghostcarnival,3629,0.008146%,idle,Other
slender_expedition_b1,3626,0.008139%,slender,Other
dm_lunar_b5,3620,0.008126%,dm,Deathmatch
zs_turbine_v5,3604,0.008090%,zs,Other
pl_abandoned_upward_finalfix,3600,0.008081%,pl,Payload
sniperz_ridge,3592,0.008063%,sniperz,Other
zf_warehouse_b1,3581,0.008038%,zf,Other
dm_vgc_v1,3575,0.008025%,dm,Deathmatch
zom_halo_up_ig,3572,0.008018%,zom,Other
trade_minecraft_b63,3567,0.008007%,trade,Trade and Achievement
slender_sewer_b1a,3563,0.007998%,slender,Other
strange_level_sphere,3563,0.007998%,strange,Other
zm_desert,3562,0.007996%,zm,Other
cp_paint_can_x10_event_r3_a,3561,0.007993%,cp,Capture Point
vsh_absolute_zero_v2,3560,0.007991%,vsh,Other
tr_newbots,3560,0.007991%,tr,Other
dr_minecraft_reduxb9,3556,0.007982%,dr,Other
arena_sky_pillar,3549,0.007966%,arena,Other
pl_vigil_b2a,3538,0.007942%,pl,Payload
dr_simpsons_custom_dg6_fix,3525,0.007913%,dr,Other
vsh_crevice_fix,3523,0.007908%,vsh,Other
vsh_bc_capani_v6,3499,0.007854%,vsh,Other
dr_bearun_b1,3499,0.007854%,dr,Other
jump_annex_v5,3493,0.007841%,jump,Other
trade_gogangswim_v3_night,3492,0.007838%,trade,Trade and Achievement
jump_waves_final,3483,0.007818%,jump,Other
jump_void_b1,3477,0.007805%,jump,Other
ctf_orange_v7a5,3465,0.007778%,ctf,Capture the Flag
cp_orange_x4_ut4,3464,0.007776%,cp,Capture Point
dr_minecraft_b10,3462,0.007771%,dr,Other
mvm_ma_ep6_1,3462,0.007771%,mvm,Man vs Machine
cp_dustbowl_zombie,3462,0.007771%,cp,Capture Point
ach_naithon_v2,3462,0.007771%,ach,Other
slender_atomics_b2,3450,0.007744%,slender,Other
ctf_royal_b3,3444,0.007731%,ctf,Capture the Flag
sniper_orange_110_xxl,3437,0.007715%,sniper,Other
dr_grizzly_a2,3434,0.007708%,dr,Other
mcwall-mart_b12,3413,0.007661%,mcwall-mart,Other
vsh_halo_foundation_v1,3410,0.007654%,vsh,Other
vsh_age_of_chivalry_siege,3410,0.007654%,vsh,Other
vsh_dr_bandicoot_egypt_tf2_v6,3407,0.007648%,vsh,Other
ph_switcheroo_a4,3406,0.007645%,ph,Other
cp_oragne_z7_ntocvc_fix7,3400,0.007632%,cp,Capture Point
mvm_decoy_30wave,3397,0.007625%,mvm,Man vs Machine
ba_jail_wip_v2,3383,0.007594%,ba,Other
my_world_x8_1,3380,0.007587%,my,Other
mvm_bigrock_uberupgrades,3380,0.007587%,mvm,Man vs Machine
dr_watchout_b1,3378,0.007583%,dr,Other
surf_derpis,3367,0.007558%,surf,Other
orange_tdl_mx_playa_v7,3363,0.007549%,orange,Other
dm_duel_pro_rc4,3362,0.007547%,dm,Deathmatch
ph_manor_event_a1,3355,0.007531%,ph,Other
ph_grassland_a1,3352,0.007524%,ph,Other
tfdb_groove_v2,3350,0.007520%,tfdb,Other
dr_mario_b3,3348,0.007515%,dr,Other
vsh_northkorea_v4new,3339,0.007495%,vsh,Other
ba_jail_downfall_b6,3318,0.007448%,ba,Other
cp_granary_pro_b10,3306,0.007421%,cp,Capture Point
surf_rebound_v1,3302,0.007412%,surf,Other
dr_hourglass_v1,3300,0.007407%,dr,Other
vsh_facing_worlds_beta,3299,0.007405%,vsh,Other
slender_lobbys_b2,3288,0.007381%,slender,Other
arena_suijin_rc2,3288,0.007381%,arena,Other
vsh_minecraftcloudstuck_b3,3282,0.007367%,vsh,Other
dr_office_hmx_final,3281,0.007365%,dr,Other
vsh_nowhere_a4,3273,0.007347%,vsh,Other
mvm_machine_attacks_ep7,3272,0.007345%,mvm,Man vs Machine
zm_scaryfort,3272,0.007345%,zm,Other
mvm_bigrock_30waves_rekt,3267,0.007333%,mvm,Man vs Machine
slender_the_abyss_r1,3265,0.007329%,slender,Other
zm_spookytown_v1a,3259,0.007315%,zm,Other
mvm_ma_ep1_1,3257,0.007311%,mvm,Man vs Machine
slender_return_to_freddys_b3,3255,0.007306%,slender,Other
mvm_ma_ep8_1_hard,3237,0.007266%,mvm,Man vs Machine
vsh_dr_office_v2_fixed,3236,0.007264%,vsh,Other
sniper_orange_110_ved6,3234,0.007259%,sniper,Other
jump_heavy_b1,3234,0.007259%,jump,Other
mvm_machine_attacks_ep1,3232,0.007255%,mvm,Man vs Machine
jump_junk_solly_b1,3231,0.007253%,jump,Other
vsh_marioland_v4,3230,0.007250%,vsh,Other
vsh_dr_office_v3_fix,3222,0.007232%,vsh,Other
vsh_toyfort_playboy1,3222,0.007232%,vsh,Other
ph_maze_a4,3213,0.007212%,ph,Other
dr_undertale_v2b,3213,0.007212%,dr,Other
ctf_turbine_minecraft_,3211,0.007208%,ctf,Capture the Flag
zf_cp_volcano_b1_c,3210,0.007205%,zf,Other
mvm_ghost_town_666,3209,0.007203%,mvm,Man vs Machine
ba_jail_albany_b5,3208,0.007201%,ba,Other
cp_orange_50f_tower,3201,0.007185%,cp,Capture Point
trade_alley_rc5d,3200,0.007183%,trade,Trade and Achievement
slender_frost_run_b4b,3194,0.007170%,slender,Other
zom_floating_rock_ig,3192,0.007165%,zom,Other
mvm_coaltown_30wave_v46_h,3190,0.007161%,mvm,Man vs Machine
cp_redfort_b5,3189,0.007158%,cp,Capture Point
vsh_dr_steamworks_extreme_b3a,3186,0.007152%,vsh,Other
mvm_ma_ep2_1_easy,3179,0.007136%,mvm,Man vs Machine
ph_canyon_a1,3174,0.007125%,ph,Other
dr_hereafter_b4,3174,0.007125%,dr,Other
slender_cellars_b4c,3172,0.007120%,slender,Other
dm_scarletdevilmansion_xmas,3169,0.007113%,dm,Deathmatch
mvm_2fort_b1_3,3167,0.007109%,mvm,Man vs Machine
cp_desperados_b2,3161,0.007095%,cp,Capture Point
arena_refinery_b3,3159,0.007091%,arena,Other
trade_stardust,3157,0.007087%,trade,Trade and Achievement
koth_brazil_rc1,3152,0.007075%,koth,King of the Hill
mvm_hillside_v7,3145,0.007060%,mvm,Man vs Machine
slender_laboratory_133_a2,3141,0.007051%,slender,Other
dr_derelict_prime_x,3140,0.007048%,dr,Other
dr_missing_skial_v2p,3138,0.007044%,dr,Other
tfdb_float_a3,3137,0.007042%,tfdb,Other
pl_barnblitz_pro7,3131,0.007028%,pl,Payload
vsh_egyptyspot_b4_gsn,3128,0.007021%,vsh,Other
tf_bigcity,3127,0.007019%,tf,Other
surf_overcast_v1,3125,0.007015%,surf,Other
tfdb_box_night_a8,3125,0.007015%,tfdb,Other
arena_tundra_b3,3123,0.007010%,arena,Other
mvm_decoy_ubup_bosses,3122,0.007008%,mvm,Man vs Machine
slender_lockers_b7,3113,0.006988%,slender,Other
cp_orange_5bo_v7,3108,0.006977%,cp,Capture Point
dr_bigroom_remake_final_fix,3103,0.006965%,dr,Other
vsh_evil_pumpkin_farm_b6new2,3102,0.006963%,vsh,Other
vsh_mini_city_v3,3094,0.006945%,vsh,Other
pl_retawdab,3092,0.006941%,pl,Payload
cp_overgrown_b3,3089,0.006934%,cp,Capture Point
mvm_machine_attacks_ep8_sh2,3086,0.006927%,mvm,Man vs Machine
tfdb_redcourt_intox_v4,3086,0.006927%,tfdb,Other
surf_lux,3082,0.006918%,surf,Other
vsh_roadfromnowhere_v2,3080,0.006914%,vsh,Other
ph_headquarters_b3,3065,0.006880%,ph,Other
mvm_coaltown_ubup_bosses,3065,0.006880%,mvm,Man vs Machine
zm_polar,3062,0.006873%,zm,Other
slender_lockers_b5a,3060,0.006869%,slender,Other
vsh_dr_hot_desert_v9_fix,3052,0.006851%,vsh,Other
pl_manngrove_rc5,3048,0.006842%,pl,Payload
jump_apex_b1,3038,0.006819%,jump,Other
surf_ag_texture_final,3038,0.006819%,surf,Other
vsh_c17_prison,3032,0.006806%,vsh,Other
dr_block_v9,3027,0.006795%,dr,Other
ba_jail_xtreme_wakka_b2_fixed,3023,0.006786%,ba,Other
slender_hellfire_b1,3022,0.006783%,slender,Other
vsh_citydirtbox_rc2,3021,0.006781%,vsh,Other
surf_lullaby_vc,3014,0.006766%,surf,Other
vsh_factoryhell,3013,0.006763%,vsh,Other
mvm_decoyinvasion,3011,0.006759%,mvm,Man vs Machine
ctf_minecraftland_v2b3-3_sg2-1,3004,0.006743%,ctf,Capture the Flag
dr_missing_final,2996,0.006725%,dr,Other
slender_cellars_b4a,2994,0.006721%,slender,Other
trade_minecraft_village_f23,2985,0.006700%,trade,Trade and Achievement
cp_2towers_v3,2973,0.006673%,cp,Capture Point
mario_kart_cp_a8_8f,2962,0.006649%,mario,Other
slender_lockers_b3_fix,2962,0.006649%,slender,Other
achievement_idle_awesomebox_cm_,2961,0.006647%,achievement,Trade and Achievement
mvm_sewer_invasion_b7,2958,0.006640%,mvm,Man vs Machine
arena_yunshu_rc1,2958,0.006640%,arena,Other
surf_rookie_fix,2955,0.006633%,surf,Other
vsh_rattyratrat,2953,0.006629%,vsh,Other
trade_hopi_plaza_v2_custom_vidy,2951,0.006624%,trade,Trade and Achievement
tfdb_beandevil_a3,2950,0.006622%,tfdb,Other
slender_gutters_b2b,2950,0.006622%,slender,Other
vsh_fuiji,2948,0.006617%,vsh,Other
cp_orange2_b3_1,2946,0.006613%,cp,Capture Point
mlp_canterlot_winter_v1,2938,0.006595%,mlp,Other
slender_dustbowl_b1b,2938,0.006595%,slender,Other
slender_tunnels_133_a4,2937,0.006593%,slender,Other
dr_smexytraps_v2_d,2933,0.006584%,dr,Other
dr_workplace,2931,0.006579%,dr,Other
zm_manor,2919,0.006552%,zm,Other
zs_hellfire,2919,0.006552%,zs,Other
cp_ponyland_1,2917,0.006548%,cp,Capture Point
ph_spookyharvest_a3,2916,0.006546%,ph,Other
pl_repository_rc3,2914,0.006541%,pl,Payload
cp_orange_x3_mug,2914,0.006541%,cp,Capture Point
ctf_2fort_night,2909,0.006530%,ctf,Capture the Flag
surf_greatfissure,2909,0.006530%,surf,Other
zf_fortress_v4,2904,0.006519%,zf,Other
vsh_polar_rc1,2898,0.006505%,vsh,Other
vsh_castle_siege_unreal,2891,0.006489%,vsh,Other
surf_frictional,2885,0.006476%,surf,Other
jump_soar_a4,2884,0.006474%,jump,Other
spooky_ravine_a1,2884,0.006474%,spooky,Other
vsh_redstorage_a04,2881,0.006467%,vsh,Other
pl_pharaoh_rc1,2880,0.006465%,pl,Payload
achievement_turbo_rhob,2879,0.006462%,achievement,Trade and Achievement
surf_beginner,2875,0.006454%,surf,Other
mvm_hangtown_v1_3,2875,0.006454%,mvm,Man vs Machine
ph_redstone_a2,2873,0.006449%,ph,Other
sniper_crevasse,2872,0.006447%,sniper,Other
jb_snowvill_dozt,2864,0.006429%,jb,Other
koth_lego_town,2863,0.006427%,koth,King of the Hill
cp_orange_x_koth_alpha5,2859,0.006418%,cp,Capture Point
slender_hellfire_b1a,2858,0.006415%,slender,Other
orange_tdl_mx_playa_v2,2857,0.006413%,orange,Other
vsh_mario64_bbb,2856,0.006411%,vsh,Other
pl_deadwood,2852,0.006402%,pl,Payload
gm_excess_island,2843,0.006382%,gm,Other
tfdb_pingpong_ig,2841,0.006377%,tfdb,Other
vsh_octagon_a4_fix,2840,0.006375%,vsh,Other
vsh_bigrock_b4,2839,0.006373%,vsh,Other
slender_abandoned_b2_h,2830,0.006352%,slender,Other
arena_shipment_b2,2825,0.006341%,arena,Other
arena_polar_rc1,2823,0.006337%,arena,Other
ctf_minecraft_cave_f1_a5,2823,0.006337%,ctf,Capture the Flag
dm_ponyville_hospital_b4,2817,0.006323%,dm,Deathmatch
cp_orange_50f_tower_d_nomusic,2815,0.006319%,cp,Capture Point
jump_fox,2813,0.006314%,jump,Other
cp_dustbowl_mirror,2804,0.006294%,cp,Capture Point
trade_sunset_saloon_r2_2,2804,0.006294%,trade,Trade and Achievement
ph_warehouse_b1,2800,0.006285%,ph,Other
vsh_seasons_v1,2799,0.006283%,vsh,Other
dr_trollrun_fixed_v1f,2797,0.006278%,dr,Other
dr_undertale_v2d,2787,0.006256%,dr,Other
vsh_aperture_b2a,2780,0.006240%,vsh,Other
cp_granary_pro_rc8,2779,0.006238%,cp,Capture Point
surf_halloween_v2b,2773,0.006225%,surf,Other
arena_cargo,2773,0.006225%,arena,Other
trade_frostbyte_v1_1,2771,0.006220%,trade,Trade and Achievement
jump_steak_a2,2770,0.006218%,jump,Other
zm_campground,2763,0.006202%,zm,Other
dr_asylum_skial_v5p,2759,0.006193%,dr,Other
slender_frost_run_classic2,2756,0.006186%,slender,Other
ctf_ballin_sky,2754,0.006182%,ctf,Capture the Flag
mario_kart_2_v20,2752,0.006177%,mario,Other
jb_carceris_b3,2751,0.006175%,jb,Other
mvm_rottenburg_uberupgrades,2750,0.006173%,mvm,Man vs Machine
dr_supermario64_v5,2746,0.006164%,dr,Other
vsh_disneyworld_spooky_v1,2740,0.006150%,vsh,Other
jump_straight,2739,0.006148%,jump,Other
jump_smarticlee,2738,0.006146%,jump,Other
jump_mario_beta1,2729,0.006126%,jump,Other
dm_mentles_ponyville_b2,2727,0.006121%,dm,Deathmatch
strange_level_pyramid,2725,0.006117%,strange,Other
jump_tpn_final1,2724,0.006115%,jump,Other
trade_enjucity_a1,2722,0.006110%,trade,Trade and Achievement
vsh_skyway_beta,2722,0.006110%,vsh,Other
jail_hopjb_b5_tf2jail,2716,0.006097%,jail,Other
dr_woods_b5,2716,0.006097%,dr,Other
cp_orange_x3-5a,2711,0.006085%,cp,Capture Point
dr_baby_pirate_adventure_fix3b,2709,0.006081%,dr,Other
ctf_2fort_classic_mod_bd42,2708,0.006079%,ctf,Capture the Flag
cp_orange_hg_v8,2702,0.006065%,cp,Capture Point
vsh_megaman6_rc1,2702,0.006065%,vsh,Other
slender_gutters_b1b_fix,2697,0.006054%,slender,Other
pl_volcanic_a26,2697,0.006054%,pl,Payload
dr_minecraftworld_b4e,2696,0.006052%,dr,Other
mvm_coaltown_30wave,2692,0.006043%,mvm,Man vs Machine
surf_lullaby_redone_rc1,2691,0.006040%,surf,Other
trade_houseofpancakes_v1,2687,0.006031%,trade,Trade and Achievement
trade_houseofpancakes_v2a,2684,0.006025%,trade,Trade and Achievement
cp_orange_transport_beta1_v1_fi,2682,0.006020%,cp,Capture Point
surf_torrent_v1b,2682,0.006020%,surf,Other
vsh_park_expanded_a3,2680,0.006016%,vsh,Other
vsh_lolcano_pb1,2673,0.006000%,vsh,Other
vsh_abandoned_office_v2,2667,0.005987%,vsh,Other
jump_pickles_v2,2666,0.005984%,jump,Other
trade_minecraft_neon_v149,2662,0.005975%,trade,Trade and Achievement
vsh_infraquaticus_b3c,2662,0.005975%,vsh,Other
jump_proto_a2,2643,0.005933%,jump,Other
jump_exile_v3,2640,0.005926%,jump,Other
vsh_vidlers_bedroom_b02,2639,0.005924%,vsh,Other
dr_bank_v3,2635,0.005915%,dr,Other
vsh_battle_creek_v2,2631,0.005906%,vsh,Other
surf_me,2629,0.005901%,surf,Other
pl_vigil_b2,2624,0.005890%,pl,Payload
vsh_harbour_base_reworked,2624,0.005890%,vsh,Other
mvm_machine_atks_ep13_sh2,2620,0.005881%,mvm,Man vs Machine
dr_aconian_final_fix,2620,0.005881%,dr,Other
trade_koganecity_b2,2620,0.005881%,trade,Trade and Achievement
trade_minecraft_village_s21,2612,0.005863%,trade,Trade and Achievement
pl_escarpment_rc1,2607,0.005852%,pl,Payload
zom_mannworks,2605,0.005847%,zom,Other
slender_lobbys_b2a,2604,0.005845%,slender,Other
tr_karma_rc1,2601,0.005838%,tr,Other
zf_volcanoevac_v7,2589,0.005812%,zf,Other
slender_cry_of_fear_a2d,2588,0.005809%,slender,Other
zf_tunnel_base_v2,2577,0.005785%,zf,Other
mvm_warehouse_v1,2576,0.005782%,mvm,Man vs Machine
zom_panic_fixv2_ig,2575,0.005780%,zom,Other
cp_purple_valley_night,2575,0.005780%,cp,Capture Point
vsh_summercamp_v3_70,2572,0.005773%,vsh,Other
pl_clifftop_b3,2572,0.005773%,pl,Payload
trade_noradoktora_3,2570,0.005769%,trade,Trade and Achievement
pl_badwater_mirror,2568,0.005764%,pl,Payload
2fort_sniper_idle,2561,0.005749%,2fort,Other
vsh_luigis_mansion_smaller,2557,0.005740%,vsh,Other
mvm_rottenburg_30waves_rekt,2554,0.005733%,mvm,Man vs Machine
cp_bedrooms3,2549,0.005722%,cp,Capture Point
mvm_decoy_30wave_v46_s,2549,0.005722%,mvm,Man vs Machine
jump_noskillrequired_b1,2546,0.005715%,jump,Other
zom_indoor,2544,0.005711%,zom,Other
zm_crevice,2543,0.005708%,zm,Other
jump_bangarang,2543,0.005708%,jump,Other
trade_goldenrodcity_v1c,2541,0.005704%,trade,Trade and Achievement
ph_otherside_a1,2532,0.005684%,ph,Other
trade_abstract2,2530,0.005679%,trade,Trade and Achievement
vsh_dr_minecraftworld_b4e,2528,0.005675%,vsh,Other
trade_shoppa_r10,2522,0.005661%,trade,Trade and Achievement
zm_king,2514,0.005643%,zm,Other
mvm_ma_ep8_1_normal,2508,0.005630%,mvm,Man vs Machine
ph_goldtooth_a1,2508,0.005630%,ph,Other
arena_towertop_final,2507,0.005627%,arena,Other
zm_mountainhome_sp1_ig,2503,0.005618%,zm,Other
jump_amazon_b1,2502,0.005616%,jump,Other
koth_skyway_c,2495,0.005601%,koth,King of the Hill
pl_eclipse_rc2,2495,0.005601%,pl,Payload
orange_a3c,2490,0.005589%,orange,Other
pl_beerbowl_rc1,2488,0.005585%,pl,Payload
cp_orange_toyfort_tbrv1,2488,0.005585%,cp,Capture Point
vsh_asylum_v1,2488,0.005585%,vsh,Other
arena_ravage_b1,2483,0.005574%,arena,Other
tfdb_butts_panda_a4,2480,0.005567%,tfdb,Other
cp_orange_x3_e3,2477,0.005560%,cp,Capture Point
mvm_machine_attacks_ep2,2476,0.005558%,mvm,Man vs Machine
vsh_square_saxxy,2474,0.005553%,vsh,Other
zm_panic2014_v3,2473,0.005551%,zm,Other
zf_topsecret_v2_1,2469,0.005542%,zf,Other
vsh_beach_xsp1b1,2467,0.005538%,vsh,Other
mvm_ma_ep11_1,2464,0.005531%,mvm,Man vs Machine
pl_halfacre,2463,0.005529%,pl,Payload
ctf_convoy_d2,2454,0.005508%,ctf,Capture the Flag
zom_rage,2452,0.005504%,zom,Other
vsh_rooftop_b2,2451,0.005502%,vsh,Other
vsh_chamber_of_exigency_v10,2448,0.005495%,vsh,Other
koth_sandvich_b1,2448,0.005495%,koth,King of the Hill
cp_mojave_b2,2447,0.005493%,cp,Capture Point
trade_minecastle_b5,2436,0.005468%,trade,Trade and Achievement
zm_harbour,2428,0.005450%,zm,Other
zom_lostisle_rm_ig,2427,0.005448%,zom,Other
zf_mountainhome2_final_ig,2425,0.005443%,zf,Other
jump_ultra_alpha,2425,0.005443%,jump,Other
jump_chambers_v2,2419,0.005430%,jump,Other
pl_borax_b1,2414,0.005419%,pl,Payload
zf_maze_a2,2410,0.005410%,zf,Other
ultiduo_grove_b2,2409,0.005407%,ultiduo,Other
cp_daytrip,2408,0.005405%,cp,Capture Point
vsh_spotline_reworked,2406,0.005401%,vsh,Other
dm_store,2401,0.005390%,dm,Deathmatch
cp_metalworks_rc7,2400,0.005387%,cp,Capture Point
jump_oretachi_rc5,2396,0.005378%,jump,Other
slender_fiveroundsatfreddys_b5,2391,0.005367%,slender,Other
zom_asylum_ig,2385,0.005354%,zom,Other
trade_clocktown_b2a_fixed,2379,0.005340%,trade,Trade and Achievement
zom_gravelpit_v5,2376,0.005333%,zom,Other
slender_storage_zero_b1b,2374,0.005329%,slender,Other
xerniv_trade,2373,0.005327%,xerniv,Other
trade_rafflesmash_v3,2373,0.005327%,trade,Trade and Achievement
koth_drogentote_1,2371,0.005322%,koth,King of the Hill
slender_the_ward_b2_h,2369,0.005318%,slender,Other
sniper_orange_towers,2365,0.005309%,sniper,Other
cp_orange_x3_gfl_fix_final,2360,0.005297%,cp,Capture Point
vsh_pruvia_v8_fix,2358,0.005293%,vsh,Other
bhop_whitewaters_a1a,2357,0.005291%,bhop,Other
vsh_orion,2355,0.005286%,vsh,Other
strange_level_flatgrass_v2,2351,0.005277%,strange,Other
cp_orange_usk_xmas09_b4,2349,0.005273%,cp,Capture Point
zm_lumberyard,2349,0.005273%,zm,Other
ph_cliffface_b1,2341,0.005255%,ph,Other
mvm_downtown_final1,2336,0.005244%,mvm,Man vs Machine
dr_belaul_a4,2335,0.005241%,dr,Other
dr_cryptnecrodancer_v7,2335,0.005241%,dr,Other
trade_gamersun_v3,2333,0.005237%,trade,Trade and Achievement
mvm_sludge_b4_fix1_uberupgrades,2327,0.005223%,mvm,Man vs Machine
zm_woodland_v1_intox,2327,0.005223%,zm,Other
mvm_machine_atks_ep7_sh1,2323,0.005214%,mvm,Man vs Machine
arena_mach2,2322,0.005212%,arena,Other
vsh_arktown_v2,2321,0.005210%,vsh,Other
zm_nomercy,2320,0.005208%,zm,Other
trade_smsdelfinoplaza_a4,2313,0.005192%,trade,Trade and Achievement
tr_aim,2308,0.005181%,tr,Other
slender_alpha_complex_b1b,2303,0.005170%,slender,Other
vsh_dr_office_v2_noee,2300,0.005163%,vsh,Other
cp_orange2_b1,2292,0.005145%,cp,Capture Point
dr_may_fixed3,2289,0.005138%,dr,Other
vsh_helms_deep_v1,2288,0.005136%,vsh,Other
mvm_machine_atks_ep14_sh3,2288,0.005136%,mvm,Man vs Machine
vsh_teul_rc2,2284,0.005127%,vsh,Other
cp_cliff_hanger,2274,0.005104%,cp,Capture Point
zm_rooftops_rmv1_intox,2274,0.005104%,zm,Other
trade_minecraft_fishpo,2273,0.005102%,trade,Trade and Achievement
dm_pon3future_v1,2273,0.005102%,dm,Deathmatch
arena_dam-it_b1,2271,0.005098%,arena,Other
slender_noexit_classic,2270,0.005095%,slender,Other
koth_persia_b4,2268,0.005091%,koth,King of the Hill
cp_orange_x5_fixed,2267,0.005089%,cp,Capture Point
vsh_island_b1_fix,2267,0.005089%,vsh,Other
jump_pathos,2266,0.005086%,jump,Other
surf_effortless,2266,0.005086%,surf,Other
pl_barnblitz_pro7c,2265,0.005084%,pl,Payload
jb_sketch_dzot,2264,0.005082%,jb,Other
hgss_goldenrodcity_b2,2264,0.005082%,hgss,Other
arena_draft_b1,2260,0.005073%,arena,Other
cp_rallycall,2255,0.005062%,cp,Capture Point
dr_ironworks_beta03,2254,0.005060%,dr,Other
jump_something_rc1,2253,0.005057%,jump,Other
zom_lila_panic_v9,2252,0.005055%,zom,Other
mvm_ma_ep10b_1,2247,0.005044%,mvm,Man vs Machine
slender_the_tower_b4c,2246,0.005042%,slender,Other
vsh_riverwood_v2,2241,0.005030%,vsh,Other
tfdb_minecraft,2240,0.005028%,tfdb,Other
awp_india_tf2_a1,2231,0.005008%,awp,Other
mvm_machine_attacks_ep4,2223,0.004990%,mvm,Man vs Machine
zom_egypt_v4,2222,0.004988%,zom,Other
cp_orange_superfort_tbrv2,2218,0.004979%,cp,Capture Point
trade_plaza_station_square_v1,2217,0.004976%,trade,Trade and Achievement
ph_northural_a2,2215,0.004972%,ph,Other
zf_blockade_final_ig,2214,0.004970%,zf,Other
arena_knothole_cliff_a3,2214,0.004970%,arena,Other
bate_rpg,2210,0.004961%,bate,Other
jump_something_rc1_fix_v2,2203,0.004945%,jump,Other
mvm_ma_ep4_1,2200,0.004938%,mvm,Man vs Machine
pl_swiftwater_ugc,2199,0.004936%,pl,Payload
dr_office_v4,2199,0.004936%,dr,Other
zf_ranch_fix_ig,2193,0.004923%,zf,Other
s_lasaxp_v4,2190,0.004916%,s,Other
zf_alpine_b4_2,2188,0.004911%,zf,Other
bball_tf_v2,2187,0.004909%,bball,Other
zm_harvest,2187,0.004909%,zm,Other
vsh_lonely_warehouse_a2,2185,0.004905%,vsh,Other
dr_divinity,2183,0.004900%,dr,Other
surf_nexus,2177,0.004887%,surf,Other
zm_chapel,2176,0.004884%,zm,Other
ph_basalt_a2,2175,0.004882%,ph,Other
freespace06_v1,2172,0.004875%,freespace06,Other
koth_canada_rc1,2166,0.004862%,koth,King of the Hill
vsh_rats_office_dg6_fix,2155,0.004837%,vsh,Other
cp_orangeharbor,2153,0.004833%,cp,Capture Point
slender_gutters_b2c,2150,0.004826%,slender,Other
cp_whiterock_rc2,2148,0.004822%,cp,Capture Point
koth_aurora_mansion_b2,2148,0.004822%,koth,King of the Hill
dm_museum_final,2144,0.004813%,dm,Deathmatch
mvm_ma_ep5_1_easy,2144,0.004813%,mvm,Man vs Machine
dr_gaytower_v2_fixed,2143,0.004810%,dr,Other
jump_cubic,2143,0.004810%,jump,Other
mvm_machine_attacks_ep1_sh1,2143,0.004810%,mvm,Man vs Machine
jump_underworld_final,2141,0.004806%,jump,Other
cp_orange_sg_v5,2134,0.004790%,cp,Capture Point
idle_nightlife_v1,2134,0.004790%,idle,Other
trade_rawr_v2_1,2130,0.004781%,trade,Trade and Achievement
cp_floorislava_rc2,2127,0.004774%,cp,Capture Point
trade_portal2_rev2,2123,0.004765%,trade,Trade and Achievement
vsh_toys_pbfix02,2121,0.004761%,vsh,Other
dr_castle_steveh_2,2120,0.004759%,dr,Other
jump_tholos,2120,0.004759%,jump,Other
idle_msk_revamp_v3,2119,0.004757%,idle,Other
dr_atomic_warfare_tf2,2118,0.004754%,dr,Other
jump_tx_final,2112,0.004741%,jump,Other
ph_devils_canyon_a1,2108,0.004732%,ph,Other
dr_mineshaft_final,2108,0.004732%,dr,Other
mvm_sandstone_s23,2104,0.004723%,mvm,Man vs Machine
vsh_egyptyspot_b5,2104,0.004723%,vsh,Other
zom_planks_v2,2104,0.004723%,zom,Other
trade_psykopat2_xmas,2104,0.004723%,trade,Trade and Achievement
mvm_oilrig_rc3,2102,0.004718%,mvm,Man vs Machine
slender_sector_six_b2,2100,0.004714%,slender,Other
balloon_race_v3_t7,2095,0.004703%,balloon,Other
my_world_x8_2,2087,0.004685%,my,Other
siusiaczkowo3_v1,2086,0.004682%,siusiaczkowo3,Other
idle_friendly_v3,2080,0.004669%,idle,Other
vsh_road_from_nowhere_v2ffix,2078,0.004664%,vsh,Other
jump_flashblack,2077,0.004662%,jump,Other
vsh_icerink_rc2,2071,0.004649%,vsh,Other
mvm_ma_ep2_1,2070,0.004647%,mvm,Man vs Machine
vsh_infraquaticus_b1,2067,0.004640%,vsh,Other
sniper_field_a8,2064,0.004633%,sniper,Other
arena_namicott_rc4,2064,0.004633%,arena,Other
vsh_lakeside_pb1,2063,0.004631%,vsh,Other
vsh_minecreu_b3,2062,0.004629%,vsh,Other
pl_yamashiro_medieval_b3,2060,0.004624%,pl,Payload
vsh_jurassic_medicfix2,2059,0.004622%,vsh,Other
cp_orange_x_hawk,2059,0.004622%,cp,Capture Point
koth_lava,2059,0.004622%,koth,King of the Hill
zf_hauntedmansion_v1,2058,0.004620%,zf,Other
vsh_skyhigh_resort_fix4,2053,0.004608%,vsh,Other
pl_dustbowl_b4,2049,0.004599%,pl,Payload
ctf_vikings_final,2048,0.004597%,ctf,Capture the Flag
slender_theeightpages_classic5,2048,0.004597%,slender,Other
tfdb_box_night_a5,2047,0.004595%,tfdb,Other
strange_level_middle_match,2044,0.004588%,strange,Other
mvm_ma_ep5_1,2044,0.004588%,mvm,Man vs Machine
mvm_ma_ep13_1_easy,2043,0.004586%,mvm,Man vs Machine
koth_sunset_saloon_r2_2,2039,0.004577%,koth,King of the Hill
vsh_snow_valley_v4,2036,0.004570%,vsh,Other
slim_slam_double_bridge_2_f_2,2030,0.004557%,slim,Other
achievement_siusiaczkowo_v7d,2030,0.004557%,achievement,Trade and Achievement
mario_kart_mh_v2,2029,0.004554%,mario,Other
vsh_orange_x3,2025,0.004546%,vsh,Other
vsh_spaaaaace_v2,2024,0.004543%,vsh,Other
dr_bearun_b3_skial,2020,0.004534%,dr,Other
koth_rocktop_rc2,2019,0.004532%,koth,King of the Hill
cp_orange_weaver_7_b12,2016,0.004525%,cp,Capture Point
ach_villains_city_fall_v3,2015,0.004523%,ach,Other
zf_industry_v2_1b2,2014,0.004521%,zf,Other
achievement_idle_awesomeboxwyd,2014,0.004521%,achievement,Trade and Achievement
zf_underbase,2013,0.004519%,zf,Other
zf_outsetisland_v1_2,2011,0.004514%,zf,Other
surf_legendary_lite_fix_v3,2008,0.004507%,surf,Other
achievement_idle_dark_b6,2006,0.004503%,achievement,Trade and Achievement
slender_monophobia_reborn_b1a,2006,0.004503%,slender,Other
vsh_mitrav3_map_001,2004,0.004498%,vsh,Other
slender_frost_run_b4_h,2003,0.004496%,slender,Other
dm_boostertower_v2,2002,0.004494%,dm,Deathmatch
vsh_crashbox_b4_fix,2002,0.004494%,vsh,Other
jb_gulag_rc_0_20_0bg,1997,0.004483%,jb,Other
trade_manhatten,1997,0.004483%,trade,Trade and Achievement
cp_hadal_b13a,1997,0.004483%,cp,Capture Point
zm_moonshine,1995,0.004478%,zm,Other
vsh_roadway_v1,1993,0.004474%,vsh,Other
zm_anubis_catharsis,1992,0.004471%,zm,Other
surf_twilight_rc2,1987,0.004460%,surf,Other
trade_windfallisland_final,1982,0.004449%,trade,Trade and Achievement
trade_3d_land_v3,1980,0.004444%,trade,Trade and Achievement
vsh_blarfff,1971,0.004424%,vsh,Other
slender_cellars_b2a,1970,0.004422%,slender,Other
mvm_machine_attacks_ep11,1969,0.004420%,mvm,Man vs Machine
mvm_machine_attacks_ep11_sh2,1965,0.004411%,mvm,Man vs Machine
slender_cellars_b4,1965,0.004411%,slender,Other
surf_meister_v3_final2,1962,0.004404%,surf,Other
cp_glacier_rc6,1957,0.004393%,cp,Capture Point
jump_bigbutt_b1,1956,0.004391%,jump,Other
arena_waste_final,1948,0.004373%,arena,Other
vsh_pipelines_a1,1944,0.004364%,vsh,Other
zom_zoleus_v3,1940,0.004355%,zom,Other
tfdb_tennis,1940,0.004355%,tfdb,Other
koth_c17_square,1938,0.004350%,koth,King of the Hill
dr_office_v7,1937,0.004348%,dr,Other
tfdb_box_space_fix,1936,0.004346%,tfdb,Other
jump_cheval,1936,0.004346%,jump,Other
mvm_ma_ep1_1_hard,1936,0.004346%,mvm,Man vs Machine
vsh_engidle_r1,1933,0.004339%,vsh,Other
zom_gultch_v33,1925,0.004321%,zom,Other
mvm_ma_ep7_1_hard,1925,0.004321%,mvm,Man vs Machine
mvm_manndarin_final,1924,0.004319%,mvm,Man vs Machine
tfdb_warehouse,1918,0.004305%,tfdb,Other
cp_steel_aftermath,1918,0.004305%,cp,Capture Point
dr_undertale_v1c,1915,0.004299%,dr,Other
arena_ferrous_rc1,1915,0.004299%,arena,Other
tfdb_triangle_a2,1913,0.004294%,tfdb,Other
vsh_zelda_ww_outset_island,1911,0.004290%,vsh,Other
zm_watermill,1911,0.004290%,zm,Other
cp_superline_a2,1910,0.004287%,cp,Capture Point
vsh_spunky_a3,1910,0.004287%,vsh,Other
surf_fantastic_v3,1907,0.004281%,surf,Other
arena_freight,1898,0.004260%,arena,Other
dr_aztecan_v5_finalefix1a,1898,0.004260%,dr,Other
surf_vgames_beta_v2,1895,0.004254%,surf,Other
gm_lair,1895,0.004254%,gm,Other
vsh_snowdown_v8,1894,0.004251%,vsh,Other
mvm_mannhattan_30waves_rekt,1893,0.004249%,mvm,Man vs Machine
arena_brawl_b1,1892,0.004247%,arena,Other
slender_hospice_b5b,1888,0.004238%,slender,Other
vsh_vrtraining_b2,1888,0.004238%,vsh,Other
trade_bsor_b4,1875,0.004209%,trade,Trade and Achievement
zm_persia,1874,0.004207%,zm,Other
vsh_cortin_v1b,1873,0.004204%,vsh,Other
dr_asylum_final_fixed,1871,0.004200%,dr,Other
arena_cube_v5,1868,0.004193%,arena,Other
slender_w3d_e3m09_b3,1866,0.004189%,slender,Other
vsh_magazine_b2,1864,0.004184%,vsh,Other
surf_beginner_fix,1863,0.004182%,surf,Other
jb_junglecompound_theescapists,1862,0.004180%,jb,Other
trade_minecraft_realms_final_no,1857,0.004168%,trade,Trade and Achievement
dr_dlux_v8,1855,0.004164%,dr,Other
arena_hmp_irongate,1855,0.004164%,arena,Other
manor_of_fun,1852,0.004157%,manor,Other
vsh_railyard_a2,1851,0.004155%,vsh,Other
achievement_apg_r11b,1850,0.004153%,achievement,Trade and Achievement
dm_pony_sweetandelite_b3,1850,0.004153%,dm,Deathmatch
vsh_industrial_v1_gsn,1849,0.004150%,vsh,Other
slender_mansion_b2b_h,1843,0.004137%,slender,Other
dr_mysterious_underground_v9b,1843,0.004137%,dr,Other
zm_blood_harvest_v1,1842,0.004135%,zm,Other
jump_destination,1840,0.004130%,jump,Other
dr_pauseahead_v6,1838,0.004126%,dr,Other
dr_pool_party_final_fix,1838,0.004126%,dr,Other
tfdb_box_space_a5_fix_giga_v1,1836,0.004121%,tfdb,Other
zs_mannworks,1835,0.004119%,zs,Other
dr_trollrun_r_final1,1834,0.004117%,dr,Other
trade_classic_mochilabr,1834,0.004117%,trade,Trade and Achievement
surf_serpent_v6,1831,0.004110%,surf,Other
koth_airfield_b7,1831,0.004110%,koth,King of the Hill
sb_smashbros4,1829,0.004106%,sb,Other
vsh_secretcomplex_a2,1827,0.004101%,vsh,Other
zm_field,1825,0.004097%,zm,Other
mlp_appleloosa_toe_b3_1,1822,0.004090%,mlp,Other
jump_bojack_v2,1820,0.004085%,jump,Other
vsh_faced_v3,1820,0.004085%,vsh,Other
pass_timbertown,1818,0.004081%,pass,Other
vsh_rats_office_medic1,1818,0.004081%,vsh,Other
gm_valley,1816,0.004076%,gm,Other
ba_jail_albany_b3,1814,0.004072%,ba,Other
jail_anthology_b2_tf2jail,1813,0.004070%,jail,Other
mvm_ma_ep1_1_easy,1812,0.004067%,mvm,Man vs Machine
ctf_aerospace_b4,1811,0.004065%,ctf,Capture the Flag
pl_geclburg,1810,0.004063%,pl,Payload
captains_custom_final,1810,0.004063%,captains,Other
slender_atomics_b4a_h,1809,0.004061%,slender,Other
surf_kitsune2_tf2,1805,0.004052%,surf,Other
achievement_idle_neon_v6,1805,0.004052%,achievement,Trade and Achievement
pl_beerbowl_b6c,1805,0.004052%,pl,Payload
vsh_rats_office_pbfix03,1804,0.004049%,vsh,Other
gm_mobenix_v3_final,1796,0.004031%,gm,Other
vsh_megaman6,1796,0.004031%,vsh,Other
surf_year3000,1792,0.004022%,surf,Other
trade_beach_v3_a1,1792,0.004022%,trade,Trade and Achievement
tfdb_bupycourt_a5,1789,0.004016%,tfdb,Other
tfdb_octagon_a5_fix_giga_v1,1789,0.004016%,tfdb,Other
dm_warzone,1788,0.004014%,dm,Deathmatch
cp_purple_x2,1787,0.004011%,cp,Capture Point
vsh_minecube_v2,1785,0.004007%,vsh,Other
pl_rocketravine_b6,1782,0.004000%,pl,Payload
trade_minecraft_fishpond_j_f15,1782,0.004000%,trade,Trade and Achievement
cp_simple_test6,1782,0.004000%,cp,Capture Point
tfdb_mc_tunnel_sup,1780,0.003996%,tfdb,Other
trade_what_fix,1780,0.003996%,trade,Trade and Achievement
mvm_ma_ep6_1_easy,1777,0.003989%,mvm,Man vs Machine
cp_glassworks_rc6a,1776,0.003987%,cp,Capture Point
ba_sincinatti_v2,1775,0.003984%,ba,Other
trade_sunshine_remixed,1775,0.003984%,trade,Trade and Achievement
vsh_drejun_v1,1773,0.003980%,vsh,Other
jump_hexahedron_v2,1771,0.003975%,jump,Other
cp_degrootkeep_pro_b5,1763,0.003957%,cp,Capture Point
mvm_machine_attacks_ep6,1760,0.003951%,mvm,Man vs Machine
pl_badwater_pro_v9_thg,1758,0.003946%,pl,Payload
vsh_west_fix_d3,1756,0.003942%,vsh,Other
mario_kart_deluxe_v8,1755,0.003939%,mario,Other
slender_the_abyss_r1_h,1754,0.003937%,slender,Other
arena_kolob,1750,0.003928%,arena,Other
vsh_arktown,1749,0.003926%,vsh,Other
trade_minecraft_neon_v65_xmas,1748,0.003924%,trade,Trade and Achievement
idle_fight_space_v1,1746,0.003919%,idle,Other
cp_orange_way_long1c,1745,0.003917%,cp,Capture Point
pl_curve,1745,0.003917%,pl,Payload
vsh_aperture_b4,1743,0.003913%,vsh,Other
trade_plaza_hg_unusual_a3,1741,0.003908%,trade,Trade and Achievement
arena_concord_b3,1739,0.003904%,arena,Other
jump_kilo,1738,0.003901%,jump,Other
vsh_island_house_b4,1738,0.003901%,vsh,Other
pl_moonbase_rc1,1733,0.003890%,pl,Payload
koth_moonshine_rc,1731,0.003886%,koth,King of the Hill
achievement_idlefight_shark,1728,0.003879%,achievement,Trade and Achievement
ach_idle_neon_ben_v10,1725,0.003872%,ach,Other
achievement_idle_box_wyd,1724,0.003870%,achievement,Trade and Achievement
dr_cocainum_v2_1_xmas_fix2,1723,0.003868%,dr,Other
dr_asylum_final,1722,0.003865%,dr,Other
slender_frost_run_classic,1719,0.003859%,slender,Other
mvm_ma_ep15_1,1719,0.003859%,mvm,Man vs Machine
surf_gforce,1718,0.003856%,surf,Other
dr_block_v6,1717,0.003854%,dr,Other
zs_lumberyard,1714,0.003847%,zs,Other
vsh_kakariko_b1,1713,0.003845%,vsh,Other
ctf_ballin_skyfall,1713,0.003845%,ctf,Capture the Flag
cp_orange_x3_dc7,1712,0.003843%,cp,Capture Point
pl_orange_x_b2,1709,0.003836%,pl,Payload
ph_grassland_a1_fixed,1705,0.003827%,ph,Other
mvm_machine_attacks_ep13,1703,0.003823%,mvm,Man vs Machine
pl_badwater_zombie,1701,0.003818%,pl,Payload
sb_ssbhyrule64_v7,1699,0.003814%,sb,Other
vsh_dunger_b2a_gsn,1692,0.003798%,vsh,Other
vsh_dr_office_v5,1692,0.003798%,vsh,Other
zm_anthem,1689,0.003791%,zm,Other
koth_wubwubwub_dw,1688,0.003789%,koth,King of the Hill
jump_jakey_a2,1688,0.003789%,jump,Other
vsh_coldvine_b1_gsn,1685,0.003782%,vsh,Other
cp_reckoner_b3a,1685,0.003782%,cp,Capture Point
slender_facility_b2,1684,0.003780%,slender,Other
surf_akai_f1n4l,1683,0.003778%,surf,Other
dr_safety_first_v4,1682,0.003776%,dr,Other
slender_arizona_a5,1682,0.003776%,slender,Other
trade_peach_castle_b2,1682,0.003776%,trade,Trade and Achievement
dr_delay_b3_vidya_custom_v2,1682,0.003776%,dr,Other
surf_venice_v2b,1681,0.003773%,surf,Other
vsh_dark_hospital_v2,1681,0.003773%,vsh,Other
vsh_pumpkin_fort_v3,1678,0.003767%,vsh,Other
zm_egypt_rm,1673,0.003755%,zm,Other
vsh_grid_floors_8,1669,0.003746%,vsh,Other
vsh_yammoe_v2,1668,0.003744%,vsh,Other
vsh_dunes_b2,1666,0.003740%,vsh,Other
vsh_merida_v2,1665,0.003737%,vsh,Other
jail_italia_b1_tf2jail,1663,0.003733%,jail,Other
cp_orange_x3ified,1654,0.003713%,cp,Capture Point
mvm_machine_attacks_ep15,1653,0.003710%,mvm,Man vs Machine
mvm_skullcove_rc1,1651,0.003706%,mvm,Man vs Machine
zf_desert_b2,1648,0.003699%,zf,Other
surf_bathroom_final,1646,0.003695%,surf,Other
arena_haul_b4,1645,0.003693%,arena,Other
arena_discovery_rc1,1643,0.003688%,arena,Other
trade_plaza_newbs,1642,0.003686%,trade,Trade and Achievement
pl_stonedepths_a2,1635,0.003670%,pl,Payload
zom_ravine_v3,1634,0.003668%,zom,Other
vsh_dr_time_travel_v5,1621,0.003639%,vsh,Other
dr_marioworld_b08,1621,0.003639%,dr,Other
vsh_hac_castlecanals_v4_tex,1617,0.003630%,vsh,Other
ph_spookyharvest_a3_fixed,1617,0.003630%,ph,Other
vsh_desert_dark,1616,0.003627%,vsh,Other
koth_kemptown_b8,1616,0.003627%,koth,King of the Hill
jump_rewind,1614,0.003623%,jump,Other
zf_industry_rc1_cpless,1613,0.003621%,zf,Other
surf_codeprotected_v2_fix,1613,0.003621%,surf,Other
mvm_machine_atks_ep16b_sh1,1613,0.003621%,mvm,Man vs Machine
ba_buns_minecraft_v1,1612,0.003618%,ba,Other
rj_training_v3,1612,0.003618%,rj,Other
pl_moonlit_b6,1612,0.003618%,pl,Payload
cp_orange_50f_v4,1612,0.003618%,cp,Capture Point
slender_abandoned_b1a,1611,0.003616%,slender,Other
trade_jollyrogerbay_v3,1609,0.003612%,trade,Trade and Achievement
ctf_the_lava_giant_b2,1608,0.003609%,ctf,Capture the Flag
jump_armaldo,1608,0.003609%,jump,Other
pass_district,1607,0.003607%,pass,Other
trade_marioworld_2017,1605,0.003603%,trade,Trade and Achievement
dr_goodwater,1604,0.003600%,dr,Other
koth_windmilltrainsaw_,1603,0.003598%,koth,King of the Hill
dr_winterhill_beta2_fix,1602,0.003596%,dr,Other
arena_doomsday_dusk,1597,0.003585%,arena,Other
vsh_jurassic_2data,1596,0.003583%,vsh,Other
dr_undertale_v1e,1591,0.003571%,dr,Other
pl_dorado,1591,0.003571%,pl,Payload
slender_lockers_b6,1586,0.003560%,slender,Other
tfdb_box_glass_floor_a4_fix2,1585,0.003558%,tfdb,Other
mvm_ma_ep10_1,1583,0.003553%,mvm,Man vs Machine
jump_shelter_b1,1579,0.003544%,jump,Other
trade_minecraft_fishpond_f15,1579,0.003544%,trade,Trade and Achievement
zf_egyptmansion_v2_1,1578,0.003542%,zf,Other
trade_minecraft_b38,1569,0.003522%,trade,Trade and Achievement
cp_lunas_castle_b4,1568,0.003520%,cp,Capture Point
idle_plaza_v1,1568,0.003520%,idle,Other
vsh_arenagate_v2,1568,0.003520%,vsh,Other
fw_gas_a2,1567,0.003517%,fw,Other
zf_helmsdeep_sd_v1,1564,0.003511%,zf,Other
jump_ezpz_v4,1563,0.003508%,jump,Other
ctf_1fort_rc1,1561,0.003504%,ctf,Capture the Flag
jump_koi,1560,0.003502%,jump,Other
cp_abyss_b81,1558,0.003497%,cp,Capture Point
trade_rawr_vl_2_1,1558,0.003497%,trade,Trade and Achievement
tfdb_spacebox_a1_giga_v1,1557,0.003495%,tfdb,Other
dr_steam_works_extreme_b2,1557,0.003495%,dr,Other
zs_turbine,1557,0.003495%,zs,Other
dr_minecaves_final,1556,0.003493%,dr,Other
surf_blackout_v3,1555,0.003491%,surf,Other
mvm_machine_attacks_ep6_sh1,1554,0.003488%,mvm,Man vs Machine
drudtown_028,1553,0.003486%,drudtown,Other
slender_theeightpages_classic,1549,0.003477%,slender,Other
vsh_castle_siege_pbfix01,1548,0.003475%,vsh,Other
vsh_weaponsdepot_redux_rc2,1544,0.003466%,vsh,Other
arena_waterfort_winter,1542,0.003461%,arena,Other
cp_warpath2,1542,0.003461%,cp,Capture Point
tfdb_block_boom!_v1,1541,0.003459%,tfdb,Other
dm_mariokart_summer_2014,1541,0.003459%,dm,Deathmatch
jump_jurf2_a2,1540,0.003457%,jump,Other
vsh_roadfromnowhere_v2_gsn,1536,0.003448%,vsh,Other
vsh_deserted_mirage_a4,1535,0.003446%,vsh,Other
zf_cliff_v3_day,1534,0.003443%,zf,Other
vsh_cinema_b2,1534,0.003443%,vsh,Other
tfdb_bitch_ass_b6,1533,0.003441%,tfdb,Other
cp_orange_n_rc3,1533,0.003441%,cp,Capture Point
zf_manncoscience_v3,1531,0.003437%,zf,Other
slender_cellars_b4a_h,1531,0.003437%,slender,Other
ba_jail_sand_b2,1530,0.003434%,ba,Other
vsh_streets,1529,0.003432%,vsh,Other
zs_lumberyard_v2,1526,0.003425%,zs,Other
zf_port_v2,1525,0.003423%,zf,Other
vsh_ravenholm_v2,1524,0.003421%,vsh,Other
zf_cliff_v3_r3,1521,0.003414%,zf,Other
mvm_mannhattan_16wave,1521,0.003414%,mvm,Man vs Machine
idle_xavi_v1,1520,0.003412%,idle,Other
dm_congo_b1,1519,0.003410%,dm,Deathmatch
jump_it_final,1518,0.003407%,jump,Other
surf_lewler,1517,0.003405%,surf,Other
pf_temple_b3,1514,0.003398%,pf,Other
surf_akai_f1n4l_doorfix,1514,0.003398%,surf,Other
arena_desolation_pb1,1513,0.003396%,arena,Other
trade_rogueport_hades,1511,0.003392%,trade,Trade and Achievement
slender_frontier_engineering_fi,1510,0.003389%,slender,Other
arena_cranetop_b1,1509,0.003387%,arena,Other
surf_buck-around_tf2,1506,0.003381%,surf,Other
cp_orange_50f_v2,1505,0.003378%,cp,Capture Point
zm_mountainrush_winter,1505,0.003378%,zm,Other
cp_orange_cross2_v2,1504,0.003376%,cp,Capture Point
ph_manorgrounds_a4,1503,0.003374%,ph,Other
tfdb_castle,1502,0.003372%,tfdb,Other
cp_cloak,1502,0.003372%,cp,Capture Point
vsh_tower_of_peril_redux_v6_gsn,1502,0.003372%,vsh,Other
mvm_ma_ep4_1_easy,1501,0.003369%,mvm,Man vs Machine
surf_the_gloaming_v2,1501,0.003369%,surf,Other
vsh_pool_b1,1500,0.003367%,vsh,Other
mvm_ma_ep7_1_normal,1500,0.003367%,mvm,Man vs Machine
koth_skyward_b2,1498,0.003363%,koth,King of the Hill
koth_aquaticruin_final,1495,0.003356%,koth,King of the Hill
koth_sollytude,1494,0.003354%,koth,King of the Hill
koth_nightclub_b6,1494,0.003354%,koth,King of the Hill
vsh_seismic_b1,1493,0.003351%,vsh,Other
jump_carrot_a5,1491,0.003347%,jump,Other
jump_annex_v2,1486,0.003336%,jump,Other
vsh_military_area_se1,1484,0.003331%,vsh,Other
cp_scarab,1483,0.003329%,cp,Capture Point
slender_asylum_redux_fix2,1483,0.003329%,slender,Other
vsh_hella_swag_b1,1482,0.003327%,vsh,Other
slender_cry_of_fearv5,1481,0.003324%,slender,Other
mvm_machine_attacks_ep14,1479,0.003320%,mvm,Man vs Machine
vsh_skytowers_b2,1478,0.003318%,vsh,Other
dom_cliffhanger_b11,1478,0.003318%,dom,Other
vsh_turbine_lz_b3,1476,0.003313%,vsh,Other
cp_orange_tairan_kon,1473,0.003306%,cp,Capture Point
tfdb_bridge,1471,0.003302%,tfdb,Other
pl_fifthcurve_b6,1471,0.003302%,pl,Payload
tfdb_butts_a4,1471,0.003302%,tfdb,Other
vsh_hl1_boot_camp_v1,1469,0.003297%,vsh,Other
vsh_minegay_data,1468,0.003295%,vsh,Other
zf_nightmine_b1,1464,0.003286%,zf,Other
zf_outsetisland_v1_fix,1463,0.003284%,zf,Other
bhop_arcane_v1,1463,0.003284%,bhop,Other
pl_barnblitz_pro8,1461,0.003280%,pl,Payload
surf_prelude_b3p,1461,0.003280%,surf,Other
mvm_mannworks_uberupgrades,1452,0.003259%,mvm,Man vs Machine
cp_orange_aarmy_alpha,1452,0.003259%,cp,Capture Point
cp_orange_l,1451,0.003257%,cp,Capture Point
cp_furnace_rc,1450,0.003255%,cp,Capture Point
orange_tdl_mx_playa,1449,0.003253%,orange,Other
cp_orange_weaver_7_b13,1443,0.003239%,cp,Capture Point
vsh_rats_office,1442,0.003237%,vsh,Other
dm_pinnapark_a11,1440,0.003232%,dm,Deathmatch
tfdb_amazon_b1,1437,0.003226%,tfdb,Other
dr_bearush_a4,1435,0.003221%,dr,Other
achievement_apg_r13,1435,0.003221%,achievement,Trade and Achievement
mvm_decoy_survival_x10,1435,0.003221%,mvm,Man vs Machine
mvm_coaltown_30wave_v46_n,1435,0.003221%,mvm,Man vs Machine
mvm_coaltown_10wave,1434,0.003219%,mvm,Man vs Machine
dr_dungeon_final,1432,0.003214%,dr,Other
slender_noexit_classic3,1432,0.003214%,slender,Other
dr_area_51_b1,1431,0.003212%,dr,Other
surf_christmas2,1429,0.003208%,surf,Other
jump_aperture,1424,0.003196%,jump,Other
vsh_marioland_v6_gsn,1424,0.003196%,vsh,Other
ph_laboratory_rc1,1423,0.003194%,ph,Other
cp_purple_fix_b22a3,1419,0.003185%,cp,Capture Point
eventplaza_dynext_v35,1414,0.003174%,eventplaza,Other
vsh_grid_walls,1411,0.003167%,vsh,Other
pl_borax_rc2,1409,0.003163%,pl,Payload
slender_elementary_b1b_h2,1409,0.003163%,slender,Other
zf_isaac_v1_7,1405,0.003154%,zf,Other
surf_rez,1404,0.003152%,surf,Other
vsh_hardrock,1402,0.003147%,vsh,Other
rats_tequila_b01,1401,0.003145%,rats,Other
cp_kakariko_a3,1397,0.003136%,cp,Capture Point
sb_masterleague_v4,1397,0.003136%,sb,Other
pl_goldrock_rc2,1395,0.003131%,pl,Payload
jump_legion_beta3,1394,0.003129%,jump,Other
tfdb_catland_v1,1394,0.003129%,tfdb,Other
cp_orange_b1,1393,0.003127%,cp,Capture Point
vsh_paradise_island_pb2,1386,0.003111%,vsh,Other
dr_trollrun_finalv2,1385,0.003109%,dr,Other
jump_linear_final_fix,1384,0.003107%,jump,Other
ctf_turbine_pro_rc2,1380,0.003098%,ctf,Capture the Flag
trade_minecraft_b45,1379,0.003095%,trade,Trade and Achievement
koth_occult_rc5,1375,0.003086%,koth,King of the Hill
sm64_hazy_maze_cave,1373,0.003082%,sm64,Other
vsh_dr_pain_facility,1372,0.003080%,vsh,Other
vsh_trump_valley_v2,1372,0.003080%,vsh,Other
jump_onit_b4,1372,0.003080%,jump,Other
trade_plaza_final_fix,1366,0.003066%,trade,Trade and Achievement
dr_family_guy_v5_fix,1362,0.003057%,dr,Other
dr_mineshaft_v12,1359,0.003051%,dr,Other
vsh_snowed_in_b04,1357,0.003046%,vsh,Other
jump_collab,1354,0.003039%,jump,Other
tfdb_snow_b1,1353,0.003037%,tfdb,Other
cp_orange_2lines,1352,0.003035%,cp,Capture Point
zf_biotics_lab_v4,1352,0.003035%,zf,Other
vsh_absolute_zero_v1_gsn,1351,0.003033%,vsh,Other
pf_dark_meat,1351,0.003033%,pf,Other
koth_saturnvalley,1350,0.003030%,koth,King of the Hill
vsh_brewery,1350,0.003030%,vsh,Other
vsh_teul_rc1,1349,0.003028%,vsh,Other
arena_powerground_b5,1348,0.003026%,arena,Other
vsh_warebloom_r1a_gsn,1345,0.003019%,vsh,Other
jb_famouz_2,1344,0.003017%,jb,Other
slender_hellfire_b1b,1343,0.003015%,slender,Other
ctf_turbine_upsidedown_02,1339,0.003006%,ctf,Capture the Flag
cp_orange_x_[lolz]_v18,1339,0.003006%,cp,Capture Point
jump_tissue,1338,0.003003%,jump,Other
jump_embrace,1335,0.002997%,jump,Other
vsh_manncohq_v14_d2_power3,1335,0.002997%,vsh,Other
surf_reanimation_v1,1333,0.002992%,surf,Other
vsh_ravine_revamped,1333,0.002992%,vsh,Other
vsh_harbour_base_final,1333,0.002992%,vsh,Other
arena_watchtower_b3,1333,0.002992%,arena,Other
zf_farm_field_v2_a1,1332,0.002990%,zf,Other
jump_sync,1330,0.002985%,jump,Other
pl_goldrush_zombie,1328,0.002981%,pl,Payload
vsh_cidesdeathpit_v2,1327,0.002979%,vsh,Other
koth_former_cornfield_b1,1326,0.002976%,koth,King of the Hill
dr_dlux_tf2_gmtfix1,1325,0.002974%,dr,Other
vsh_cont,1325,0.002974%,vsh,Other
dm_disco_commcen_b1,1323,0.002970%,dm,Deathmatch
dr_running_v5_fixed2,1320,0.002963%,dr,Other
arena_orange,1320,0.002963%,arena,Other
surf_greatriver_v1,1320,0.002963%,surf,Other
jump_quick_b2,1318,0.002959%,jump,Other
vsh_reactor_v2,1318,0.002959%,vsh,Other
dr_aztecan_vidya,1317,0.002956%,dr,Other
vsh_n_orange_tower,1316,0.002954%,vsh,Other
mario_kart_2_v15,1315,0.002952%,mario,Other
plr_dogbread_b3,1313,0.002947%,plr,Payload Race
mvm_decay_rc1_nightmare,1312,0.002945%,mvm,Man vs Machine
zs_junction_v2,1311,0.002943%,zs,Other
fw_bridge_a1,1311,0.002943%,fw,Other
cp_hotelhell,1311,0.002943%,cp,Capture Point
vsh_house_halloween_v1,1307,0.002934%,vsh,Other
cp_orange_giant,1306,0.002932%,cp,Capture Point
jump_ayers_v2,1305,0.002929%,jump,Other
tfdb_lithium,1305,0.002929%,tfdb,Other
mvm_degrootkeep_b1,1302,0.002923%,mvm,Man vs Machine
koth_trainsawlaser_rc1,1302,0.002923%,koth,King of the Hill
jump_pharaoh_a6,1302,0.002923%,jump,Other
mvm_machine_attacks_ep10,1300,0.002918%,mvm,Man vs Machine
trade_plaza_hats_day_v1,1300,0.002918%,trade,Trade and Achievement
koth_dryway_final,1299,0.002916%,koth,King of the Hill
dr_running_v3,1298,0.002914%,dr,Other
vsh_old_town_b3,1296,0.002909%,vsh,Other
koth_dropdown_rc1,1294,0.002905%,koth,King of the Hill
mvm_rottenburg_wrath_of_the_rob,1293,0.002902%,mvm,Man vs Machine
jump_synapse_rc3,1292,0.002900%,jump,Other
cp_orange_minecraft_2015,1291,0.002898%,cp,Capture Point
jump_abuq,1290,0.002896%,jump,Other
ph_hanger18_b7,1288,0.002891%,ph,Other
vsh_mountain_pb2,1287,0.002889%,vsh,Other
mvm_ma_ep9_1_fixed2_easy,1287,0.002889%,mvm,Man vs Machine
fw_cube_b8,1287,0.002889%,fw,Other
koth_slaughterhouse_72_rc1,1285,0.002884%,koth,King of the Hill
tfdb_mutu_nud,1285,0.002884%,tfdb,Other
ctf_fishy_b4,1284,0.002882%,ctf,Capture the Flag
vsh_poolparty_v6,1284,0.002882%,vsh,Other
cp_dustbowl_event,1283,0.002880%,cp,Capture Point
sb_skybrawl_v1,1282,0.002878%,sb,Other
mvm_badwater_final_survival,1278,0.002869%,mvm,Man vs Machine
sb_citypeak_v1,1277,0.002866%,sb,Other
ctf_2fort_classic_mod_bd29,1277,0.002866%,ctf,Capture the Flag
pf_dreams_v5,1276,0.002864%,pf,Other
koth_bagel_rc2a,1275,0.002862%,koth,King of the Hill
surf_halloween_v3a,1275,0.002862%,surf,Other
vsh_dr_mario_b4_custom_vidya_v2,1274,0.002860%,vsh,Other
sn_dot,1274,0.002860%,sn,Other
mvm_ma_ep9_1,1272,0.002855%,mvm,Man vs Machine
vsh_sg_minecraft5,1272,0.002855%,vsh,Other
vsh_nebula_v2,1271,0.002853%,vsh,Other
strange_level_greybox,1270,0.002851%,strange,Other
zs_junction,1269,0.002849%,zs,Other
zom_wild_cbble_rm2,1268,0.002846%,zom,Other
vsh_chinatown_b2,1265,0.002840%,vsh,Other
arena_scorched_final,1265,0.002840%,arena,Other
ctf_facing_worlds_1999c,1264,0.002837%,ctf,Capture the Flag
tr_aim_training_b13,1264,0.002837%,tr,Other
vsh_citypeak_v1_gsn,1263,0.002835%,vsh,Other
jump_academy_beta3a_v1,1263,0.002835%,jump,Other
cp_firewatch,1262,0.002833%,cp,Capture Point
koth_bagel_rc1,1259,0.002826%,koth,King of the Hill
vsh_mario64_bbb_pbfix01,1258,0.002824%,vsh,Other
vsh_megaman6_b5d_gsn,1258,0.002824%,vsh,Other
mvm_ma_ep10_1_easy,1257,0.002822%,mvm,Man vs Machine
koth_dark-assassins,1255,0.002817%,koth,King of the Hill
koth_avalanche_rc4,1255,0.002817%,koth,King of the Hill
vsh_arcticbase_beta,1254,0.002815%,vsh,Other
arena_coldfront_pb4,1249,0.002804%,arena,Other
vsh_brewery_v2a_gsn,1248,0.002801%,vsh,Other
koth_railbridge_rc2,1248,0.002801%,koth,King of the Hill
pl_goldheist_canyon_final_v1,1244,0.002792%,pl,Payload
vsh_dustynight_a1,1244,0.002792%,vsh,Other
cp_toy_fort_v2,1242,0.002788%,cp,Capture Point
cp_wacky_races,1241,0.002786%,cp,Capture Point
arena_2fort_b2,1239,0.002781%,arena,Other
surf_meme,1239,0.002781%,surf,Other
cp_badlands_pro,1238,0.002779%,cp,Capture Point
mvm_ma_ep14_1,1235,0.002772%,mvm,Man vs Machine
pkmn_celadoncity_v1,1235,0.002772%,pkmn,Other
vsh_hiddenbase_a4,1235,0.002772%,vsh,Other
arena_powercore_v1,1235,0.002772%,arena,Other
vsh_treasureroom_ff1,1234,0.002770%,vsh,Other
mvm_ma_ep2_1_normal,1234,0.002770%,mvm,Man vs Machine
jump_zero,1233,0.002768%,jump,Other
vsh_pbjungle_b1,1233,0.002768%,vsh,Other
jump_wallfox_rc1,1232,0.002765%,jump,Other
vsh_manncohq_v14_gsn,1229,0.002759%,vsh,Other
vsh_calamity_beach_v4_gsn,1227,0.002754%,vsh,Other
vsh_killbox_bridge_new_b6fixed,1227,0.002754%,vsh,Other
jump_4starters_rc1_fix,1226,0.002752%,jump,Other
vsh_nale_b1d,1226,0.002752%,vsh,Other
jump_underground_final,1225,0.002750%,jump,Other
vsh_cinema_b3,1224,0.002748%,vsh,Other
surf_the_flow,1222,0.002743%,surf,Other
pkmn_saffroncity_b3fix,1221,0.002741%,pkmn,Other
pl_cranetop_b8,1218,0.002734%,pl,Payload
zf_yard_v3,1217,0.002732%,zf,Other
zf_christmas_nucleus_v1,1217,0.002732%,zf,Other
dr_aufgeben_v2,1217,0.002732%,dr,Other
pf_kijun_b4,1215,0.002727%,pf,Other
dm_duel_v4,1213,0.002723%,dm,Deathmatch
mvm_strider_a6,1212,0.002721%,mvm,Man vs Machine
newsuperweenie_b1,1212,0.002721%,newsuperweenie,Other
pl_stovepipe_b3,1209,0.002714%,pl,Payload
vsh_twinfalls_b1,1208,0.002712%,vsh,Other
surf_reytx,1208,0.002712%,surf,Other
dm_duel_dz_v1,1207,0.002709%,dm,Deathmatch
vsh_planestorage_v1a,1207,0.002709%,vsh,Other
koth_warmtic_rc4,1206,0.002707%,koth,King of the Hill
zf_degrootkeep_v3,1206,0.002707%,zf,Other
bhop_lego2,1204,0.002703%,bhop,Other
vsh_cyberport_new_b1,1201,0.002696%,vsh,Other
vsh_cross_b3_gsn,1197,0.002687%,vsh,Other
mvm_ma_ep13_1,1195,0.002682%,mvm,Man vs Machine
vsh_doublecross_beta,1193,0.002678%,vsh,Other
vsh_citadel_b1,1193,0.002678%,vsh,Other
pl_flowerlab_b5a,1191,0.002673%,pl,Payload
szf_isaac_v1_7,1190,0.002671%,szf,Other
vsh_dr_pool_party_final_fix,1189,0.002669%,vsh,Other
mvm_machine_attacks_ep10b_s2,1189,0.002669%,mvm,Man vs Machine
cp_orange_z4,1188,0.002667%,cp,Capture Point
jump_arctic_a2,1187,0.002664%,jump,Other
vsh_dr_horrors_fixed_v2,1185,0.002660%,vsh,Other
ctf_bedrooms3,1185,0.002660%,ctf,Capture the Flag
szf_turtle_attack_v4_7,1183,0.002655%,szf,Other
dm_pony_skyrim_b2_fix,1182,0.002653%,dm,Deathmatch
cp_orange_x3_night_2015,1182,0.002653%,cp,Capture Point
zf_towerless_td_v32,1181,0.002651%,zf,Other
vsh_west_event,1180,0.002649%,vsh,Other
vsh_sewers_final_gsn,1178,0.002644%,vsh,Other
vsh_dr_family_guy_v5,1175,0.002638%,vsh,Other
vsh_dr_newporkcity_v4,1171,0.002629%,vsh,Other
dr_goldfever_b2,1171,0.002629%,dr,Other
surf_calycate2,1171,0.002629%,surf,Other
cp_cabrakan_rc2,1170,0.002626%,cp,Capture Point
jump_heaven_a3,1170,0.002626%,jump,Other
mvm_mannworks_30wave_bossonly,1168,0.002622%,mvm,Man vs Machine
mvm_machine_attacks_ep16b,1168,0.002622%,mvm,Man vs Machine
trade_bazaar_b4,1168,0.002622%,trade,Trade and Achievement
trade_industry,1167,0.002620%,trade,Trade and Achievement
slender_the_citadel_b1,1167,0.002620%,slender,Other
ph_campsite_a6,1167,0.002620%,ph,Other
zf_degrootkeep_v3w,1166,0.002617%,zf,Other
pl_borax_final,1165,0.002615%,pl,Payload
jump_edgebug_b2,1165,0.002615%,jump,Other
jump_isak_b4,1162,0.002608%,jump,Other
jump_fauvism_a2,1162,0.002608%,jump,Other
jump_jurf2_a1,1162,0.002608%,jump,Other
slender_dustbowl_b1c,1162,0.002608%,slender,Other
cp_tidal_v4,1161,0.002606%,cp,Capture Point
koth_nebula,1161,0.002606%,koth,King of the Hill
vsh_pruvia_v5_gsn,1161,0.002606%,vsh,Other
dm_house_of_fun_fix,1159,0.002602%,dm,Deathmatch
cp_dustbowl_nights,1159,0.002602%,cp,Capture Point
slender_hydro_b1a_h2,1159,0.002602%,slender,Other
tfdb_float_a2_d2,1156,0.002595%,tfdb,Other
vsh_lordhomicide_v2,1156,0.002595%,vsh,Other
cp_orange_x3_2015_v2,1153,0.002588%,cp,Capture Point
dr_baby_pirate_adventure_fix,1152,0.002586%,dr,Other
plr_fishladder3,1152,0.002586%,plr,Payload Race
vsh_pony_skyrim_pb1,1152,0.002586%,vsh,Other
vsh_castle_siege_b11_gsn,1151,0.002584%,vsh,Other
vsh_arctic_hell_v3,1149,0.002579%,vsh,Other
slender_claustrophobia_b1_h,1148,0.002577%,slender,Other
vsh_manncohq_pb1,1147,0.002575%,vsh,Other
cp_orange_industries,1146,0.002572%,cp,Capture Point
jump_rj_training_v3,1146,0.002572%,jump,Other
arena_castlewars,1146,0.002572%,arena,Other
dm_woodland_b1,1146,0.002572%,dm,Deathmatch
dr_coldstone_v1,1145,0.002570%,dr,Other
cp_orange_bear_a3,1145,0.002570%,cp,Capture Point
vsh_assault_new_vidya,1143,0.002566%,vsh,Other
trade_minecraft_b61,1143,0.002566%,trade,Trade and Achievement
jump_rook_beta,1142,0.002563%,jump,Other
trade_speed_highway_v1,1142,0.002563%,trade,Trade and Achievement
jump_revenge,1141,0.002561%,jump,Other
koth_canyon_v2,1139,0.002557%,koth,King of the Hill
dr_crash_bandicoot_v7,1139,0.002557%,dr,Other
mvm_rottenburg_30wave_v60_lvl1,1138,0.002554%,mvm,Man vs Machine
pl_5curve,1138,0.002554%,pl,Payload
dr_void_vfinal,1137,0.002552%,dr,Other
jump_glow_v4,1136,0.002550%,jump,Other
vsh_industrial_fix1,1136,0.002550%,vsh,Other
tfdb_dev_fix,1135,0.002548%,tfdb,Other
vsh_rectover_v6,1135,0.002548%,vsh,Other
mvm_ma_ep3_1_easy,1135,0.002548%,mvm,Man vs Machine
mvm_ma_ep4_1_hard,1134,0.002545%,mvm,Man vs Machine
vsh_hakurei_shrine_stv2,1133,0.002543%,vsh,Other
vsh_hakugyokurou_beta08,1133,0.002543%,vsh,Other
mvm_area_52_rc3,1132,0.002541%,mvm,Man vs Machine
achievement_villains_xmasn,1132,0.002541%,achievement,Trade and Achievement
ctf_moonwalk_v2,1131,0.002539%,ctf,Capture the Flag
jump_4dakids_final,1130,0.002537%,jump,Other
ba_jail_fuckzz_final,1126,0.002528%,ba,Other
trade_minecraft_mp,1126,0.002528%,trade,Trade and Achievement
jump_adventure_fixed,1124,0.002523%,jump,Other
trade_hoth10,1124,0.002523%,trade,Trade and Achievement
vsh_warehouse_final,1124,0.002523%,vsh,Other
jump_academy_medium_beta4,1123,0.002521%,jump,Other
dr_inca_v4,1123,0.002521%,dr,Other
mvm_decoy_survivalistrunnobomb,1122,0.002519%,mvm,Man vs Machine
mvm_coaltown_30waves_easy_v5,1121,0.002516%,mvm,Man vs Machine
jump_lathy_final,1121,0.002516%,jump,Other
vsh_top_arena_v1_gsn,1120,0.002514%,vsh,Other
dr_cocainum_fixed_bg,1120,0.002514%,dr,Other
vsh_rattyspot_b6,1119,0.002512%,vsh,Other
mvm_ma_ep2_1_hard,1119,0.002512%,mvm,Man vs Machine
trade_sev_school_original_abcd,1116,0.002505%,trade,Trade and Achievement
surf_crzyfrog_fix,1116,0.002505%,surf,Other
tfdb_bridge_sup_v7,1116,0.002505%,tfdb,Other
cp_badlands_zombie,1115,0.002503%,cp,Capture Point
vsh_toasty_v9,1114,0.002501%,vsh,Other
dm_ponyville_b10,1113,0.002498%,dm,Deathmatch
jump_twist_beta,1113,0.002498%,jump,Other
dr_basicbrick_final,1112,0.002496%,dr,Other
vsh_jurassic_v2_edit,1111,0.002494%,vsh,Other
vsh_campette_mod1_1,1111,0.002494%,vsh,Other
jump_pure_b2,1110,0.002492%,jump,Other
achievement_engineer_rw_v2,1110,0.002492%,achievement,Trade and Achievement
vsh_secret_base_b2_gsn,1109,0.002489%,vsh,Other
jump_quattro_rc1,1109,0.002489%,jump,Other
dr_smexytraps_v2,1108,0.002487%,dr,Other
fw_umbral_v2,1105,0.002480%,fw,Other
tfdb_reflex_v5,1105,0.002480%,tfdb,Other
cp_orange_minecraft_night_2015,1104,0.002478%,cp,Capture Point
ph_hilltop_a2,1102,0.002474%,ph,Other
mvm_mannworks_30waves_rekt,1102,0.002474%,mvm,Man vs Machine
arena_coldyard,1102,0.002474%,arena,Other
cp_orange_hideout_v1,1101,0.002471%,cp,Capture Point
pl_outback_rc4,1100,0.002469%,pl,Payload
tfdb_inferno_a5,1097,0.002462%,tfdb,Other
surf_minuet_v1p,1095,0.002458%,surf,Other
vsh_lumberyard_event,1095,0.002458%,vsh,Other
pony_sandbox_day_v1,1094,0.002456%,pony,Other
surf_monsterween_v2,1093,0.002453%,surf,Other
vsh_moving_in_v4_gsn,1092,0.002451%,vsh,Other
cp_toy_fort_alt3,1092,0.002451%,cp,Capture Point
dr_coldlava_b3,1091,0.002449%,dr,Other
surf_grassland,1090,0.002447%,surf,Other
arena_rust_remake_v2_gsn,1090,0.002447%,arena,Other
dr_aconian_final2,1089,0.002444%,dr,Other
slide_facetodeath,1088,0.002442%,slide,Other
cp_balloon_race_v2b,1088,0.002442%,cp,Capture Point
mvm_ma_ep5_1_hard,1087,0.002440%,mvm,Man vs Machine
mvm_machine_attacks_ep9,1086,0.002438%,mvm,Man vs Machine
vsh_mountainbash_v3,1086,0.002438%,vsh,Other
arena_ghostroast_a1,1084,0.002433%,arena,Other
vsh_garbage_day_pb1,1084,0.002433%,vsh,Other
vsh_mountanbash_pb7,1083,0.002431%,vsh,Other
surf_superk_tf2,1083,0.002431%,surf,Other
surf_10x_reload_tf2_fix3,1082,0.002429%,surf,Other
vsh_2fortdesk_v8_gsn,1081,0.002427%,vsh,Other
vsh_dr_crash_universe_a2,1081,0.002427%,vsh,Other
surf_legends_lite_v5,1077,0.002418%,surf,Other
vsh_crevice_halloween,1076,0.002415%,vsh,Other
pl_swiftwater_final,1075,0.002413%,pl,Payload
ctf_system_rc1,1074,0.002411%,ctf,Capture the Flag
trade_bigcity_night,1073,0.002409%,trade,Trade and Achievement
arena_lolcano_b2,1073,0.002409%,arena,Other
achievement_uber_v1_1,1073,0.002409%,achievement,Trade and Achievement
achievement_green_campus_v2,1072,0.002406%,achievement,Trade and Achievement
achievement_deadwoodmafiav193,1072,0.002406%,achievement,Trade and Achievement
cp_orange_wow_2015,1071,0.002404%,cp,Capture Point
jump_torii_v3,1071,0.002404%,jump,Other
dr_egypt_v6,1071,0.002404%,dr,Other
jump_cake_b2,1071,0.002404%,jump,Other
mvm_ma_ep6_1_hard,1071,0.002404%,mvm,Man vs Machine
vsh_blockfort_final,1069,0.002400%,vsh,Other
zf_lumberyard_v17,1069,0.002400%,zf,Other
cp_orange_50f_tower_v2,1068,0.002397%,cp,Capture Point
achievements_lmz_v1,1068,0.002397%,achievements,Other
slender_bloodwood_b1a,1067,0.002395%,slender,Other
vsh_the_passage,1065,0.002391%,vsh,Other
vsh_abandonment_a2,1065,0.002391%,vsh,Other
zf_farm_field,1061,0.002382%,zf,Other
koth_ramjam_rc1,1060,0.002379%,koth,King of the Hill
sb_battleships_b2,1060,0.002379%,sb,Other
microtf2_dfs_v1,1058,0.002375%,microtf2,Other
mvm_5gorge_cp_30_waves_v46_h,1058,0.002375%,mvm,Man vs Machine
pl_eclipse_rc1,1057,0.002373%,pl,Payload
trade_mumbos_mountain_v2,1057,0.002373%,trade,Trade and Achievement
surf_wavelength_v2,1056,0.002370%,surf,Other
vsh_spotline_r1a_gsn,1055,0.002368%,vsh,Other
surf_bluetowers_v5f,1053,0.002364%,surf,Other
mvm_machine_attacks_ep4_sh1,1051,0.002359%,mvm,Man vs Machine
surf_japan_reloaded_v3,1051,0.002359%,surf,Other
mvm_ratrace_a1a,1051,0.002359%,mvm,Man vs Machine
pf_shanghai_b4,1051,0.002359%,pf,Other
vsh_oilrig_v14,1051,0.002359%,vsh,Other
pl_promotion_b5,1051,0.002359%,pl,Payload
pl_boundary_final1,1048,0.002352%,pl,Payload
tfdb_box_night_a3_giga_v1,1048,0.002352%,tfdb,Other
dr_winterhill_beta2_ip_fix,1048,0.002352%,dr,Other
pf_orange_r2,1047,0.002350%,pf,Other
ctf_2fort_time_tstorm_b1,1046,0.002348%,ctf,Capture the Flag
vsh_dr_iceworld_4a,1045,0.002346%,vsh,Other
pl_corrode_rc2,1045,0.002346%,pl,Payload
sniper_paintball_rc1,1044,0.002343%,sniper,Other
surf_fizzycave_reloaded,1042,0.002339%,surf,Other
cp_weaver_secrets_beta8,1040,0.002334%,cp,Capture Point
pf_sonic_b6,1039,0.002332%,pf,Other
jump_dahl,1039,0.002332%,jump,Other
tfdb_river_b1,1039,0.002332%,tfdb,Other
vsh_dr_running_zmbr,1039,0.002332%,vsh,Other
pf_offshore_v3,1037,0.002328%,pf,Other
sb_pathways_v2,1037,0.002328%,sb,Other
jump_desa_rc2,1036,0.002326%,jump,Other
tr_rocket_shooting2_fix3,1036,0.002326%,tr,Other
slender_noexit_classic2,1036,0.002326%,slender,Other
zm_degroot_keep,1034,0.002321%,zm,Other
jump_home_b2,1033,0.002319%,jump,Other
arena_storm_b1c,1033,0.002319%,arena,Other
cp_antiquity_rc1,1033,0.002319%,cp,Capture Point
dr_mineshaft_v15fix,1031,0.002314%,dr,Other
surf_ny_bigloop_tf2,1031,0.002314%,surf,Other
dm_appleloosa_b7,1030,0.002312%,dm,Deathmatch
vsh_oilrig_v16,1030,0.002312%,vsh,Other
mvm_ma_ep5_1_normal,1030,0.002312%,mvm,Man vs Machine
jump_ayers2_a8,1030,0.002312%,jump,Other
koth_eros_rc2,1029,0.002310%,koth,King of the Hill
surf_complex_b2,1029,0.002310%,surf,Other
cp_orange_x6fix,1028,0.002308%,cp,Capture Point
vsh_egypt_b1,1028,0.002308%,vsh,Other
achievement_duel,1027,0.002305%,achievement,Trade and Achievement
mvm_machine_attacks_ep3,1026,0.002303%,mvm,Man vs Machine
cp_warmfront,1026,0.002303%,cp,Capture Point
jump_nmotion_v8,1026,0.002303%,jump,Other
ba_jail_downview_b1_gb,1022,0.002294%,ba,Other
szf_pen15_v11,1021,0.002292%,szf,Other
vsh_c17_yard,1021,0.002292%,vsh,Other
pf_pink_p9,1021,0.002292%,pf,Other
vsh_killbox_8bit_2014_v1fix,1019,0.002287%,vsh,Other
dr_bandicoot_egypt_v8_fix,1019,0.002287%,dr,Other
pf_dimension_s4,1018,0.002285%,pf,Other
surf_supermario,1018,0.002285%,surf,Other
zm_zelda_oot_forest_templev2,1017,0.002283%,zm,Other
mvm_powerplant_rc1,1015,0.002278%,mvm,Man vs Machine
pl_gibraltar,1015,0.002278%,pl,Payload
slender_hydro_b1a,1012,0.002272%,slender,Other
jump_azure_v2,1008,0.002263%,jump,Other
szf_skyrim_b7,1008,0.002263%,szf,Other
vsh_apg_v2_pbfix01,1007,0.002260%,vsh,Other
tr_walkway_fixed,1007,0.002260%,tr,Other
vsh_stranded_v3,1007,0.002260%,vsh,Other
tf_delfino_airstrip_b3,1007,0.002260%,tf,Other
vsh_crevice_b5_gsn,1006,0.002258%,vsh,Other
zf_helmsdeep_zd_v1,1005,0.002256%,zf,Other
achievement_apg_r10b,1005,0.002256%,achievement,Trade and Achievement
surf_minuet_njv,1004,0.002254%,surf,Other
trade_houseofchaos2b,1003,0.002251%,trade,Trade and Achievement
achievement_engineer_3,1003,0.002251%,achievement,Trade and Achievement
discords_canterlot_b8,1002,0.002249%,discords,Other
pf_cave_b4,1002,0.002249%,pf,Other
mvm_machine_attacks_ep10_sh2,1001,0.002247%,mvm,Man vs Machine
mvm_ma_ep3_1,1000,0.002245%,mvm,Man vs Machine
arena_rooftops,996,0.002236%,arena,Other
koth_dewm_rc1,996,0.002236%,koth,King of the Hill
mvm_bigrock_special_brimfull_bo,995,0.002233%,mvm,Man vs Machine
trade_minecraftworld,995,0.002233%,trade,Trade and Achievement
dr_ironworks_beta02,995,0.002233%,dr,Other
jump_rope_final,995,0.002233%,jump,Other
cp_orange_x3_xmas,994,0.002231%,cp,Capture Point
jump_over_beta,994,0.002231%,jump,Other
vsh_ravine_revamped_gsn,994,0.002231%,vsh,Other
koth_mobster_monday_v3_fix,993,0.002229%,koth,King of the Hill
dr_corridor_v3,993,0.002229%,dr,Other
slender_gutters_b2c_h2,992,0.002227%,slender,Other
slender_sector_six_b1b_h,992,0.002227%,slender,Other
slender_cry_of_fear_a1,991,0.002224%,slender,Other
slender_biotics_lab_v1a,990,0.002222%,slender,Other
mvm_coaltown_30wave_advanced,989,0.002220%,mvm,Man vs Machine
surf_11x_tf2_complete_beta4,989,0.002220%,surf,Other
tfdb_warehouse_gsn,989,0.002220%,tfdb,Other
zf_graveyardbash_v1,989,0.002220%,zf,Other
koth_c17_yard,989,0.002220%,koth,King of the Hill
cp_orange_z7_ntocvc_fix5,988,0.002218%,cp,Capture Point
pl_hatfactory55,986,0.002213%,pl,Payload
mvm_decoy_30wave_v60_lvl1,986,0.002213%,mvm,Man vs Machine
zf_dustbowl_b4,985,0.002211%,zf,Other
dr_cryptnecrodancer_v4,985,0.002211%,dr,Other
arena_harvest_v4,985,0.002211%,arena,Other
vsh_pumpkin_fort_v3_gsn,981,0.002202%,vsh,Other
vsh_hakurei_shrine_v3_gsn,979,0.002198%,vsh,Other
ctf_top_secret_b1,979,0.002198%,ctf,Capture the Flag
vsh_warebloom_b7_gsn,976,0.002191%,vsh,Other
jump_sleepy,976,0.002191%,jump,Other
jump_steel_b1,972,0.002182%,jump,Other
jump_scorpion_b1,972,0.002182%,jump,Other
vsh_harbour_base_a6,972,0.002182%,vsh,Other
cp_orangebunker_tbrv3,971,0.002180%,cp,Capture Point
pf_new_world_r4,971,0.002180%,pf,Other
mvm_coaltown_ubup_ironmen,970,0.002177%,mvm,Man vs Machine
surf_overlook_v2_nomusic,970,0.002177%,surf,Other
dr_cocainum_b4,969,0.002175%,dr,Other
ctf_sylux_rework,968,0.002173%,ctf,Capture the Flag
jump_x,967,0.002171%,jump,Other
vsh_hakurei_winter,967,0.002171%,vsh,Other
jump_stretch_final,966,0.002168%,jump,Other
ctf_nordhaven_special_b3,965,0.002166%,ctf,Capture the Flag
achievement_turbovk2,965,0.002166%,achievement,Trade and Achievement
vsh_spaaaaace_v1,965,0.002166%,vsh,Other
dr_missing,965,0.002166%,dr,Other
jump_rebound_v3,964,0.002164%,jump,Other
vsh_dr_horrors,963,0.002162%,vsh,Other
surf_lament_njv,962,0.002159%,surf,Other
koth_watermill_final,960,0.002155%,koth,King of the Hill
koth_arctic_b3,960,0.002155%,koth,King of the Hill
pl_mountainside_rc2,959,0.002153%,pl,Payload
sn_spacesniper_f,958,0.002150%,sn,Other
dr_sketchyrun_final2,958,0.002150%,dr,Other
zf_goldfever_3b,958,0.002150%,zf,Other
vsh_yammoe_v3,957,0.002148%,vsh,Other
cp_a51_orange_b2,956,0.002146%,cp,Capture Point
vsh_mannconomy_cratehall_v2,955,0.002144%,vsh,Other
vsh_manor_event_pb1,955,0.002144%,vsh,Other
vsh_rats_office_fix,954,0.002141%,vsh,Other
glass_axis,954,0.002141%,glass,Other
cp_orange_x_tbr_v5,951,0.002135%,cp,Capture Point
trade_siberian,950,0.002132%,trade,Trade and Achievement
jump_speed,950,0.002132%,jump,Other
koth_assault,949,0.002130%,koth,King of the Hill
vsh_rockslide_2_gsn,948,0.002128%,vsh,Other
surf_machine_remix_v5,947,0.002126%,surf,Other
sn_snipeorama_tf2,947,0.002126%,sn,Other
achievement_apg_mtz_d6,947,0.002126%,achievement,Trade and Achievement
ctf_urbanbrook,947,0.002126%,ctf,Capture the Flag
cp_granary_zombies,945,0.002121%,cp,Capture Point
vsh_trump_valley,944,0.002119%,vsh,Other
cp_orange_x3_xddrx,943,0.002117%,cp,Capture Point
pl_volcanic_a25,943,0.002117%,pl,Payload
mvm_machine_attacks_ep2_sh1,943,0.002117%,mvm,Man vs Machine
vsh_moosemaze_b5,942,0.002115%,vsh,Other
trade_plaza_mesa_b4b,939,0.002108%,trade,Trade and Achievement
vsh_area_54tress_b4_gsn,935,0.002099%,vsh,Other
pf_airspace_r6,934,0.002097%,pf,Other
vsh_eli_a1,932,0.002092%,vsh,Other
cp_biodome_b1,931,0.002090%,cp,Capture Point
ph_target_final,931,0.002090%,ph,Other
szf_expedition_c1,931,0.002090%,szf,Other
ph_dockyard_a2_fixed,930,0.002088%,ph,Other
ctf_turrrrrrrrrrrrrrrrrbine,930,0.002088%,ctf,Capture the Flag
mvm_isolation_b6,929,0.002085%,mvm,Man vs Machine
jump_beefmas,928,0.002083%,jump,Other
vsh_top_arena_v2,927,0.002081%,vsh,Other
vsh_radwater_b1,927,0.002081%,vsh,Other
tr_arena_rc2,926,0.002079%,tr,Other
vsh_drowning_v5,925,0.002076%,vsh,Other
slender_cry_of_fear_a2c,925,0.002076%,slender,Other
surf_lament_n2p,925,0.002076%,surf,Other
mvm_rottenburg_wrath_of_the_god,923,0.002072%,mvm,Man vs Machine
vsh_high_8bit_b9,922,0.002070%,vsh,Other
jump_aris_a3,922,0.002070%,jump,Other
pf_factory_office_b10,922,0.002070%,pf,Other
arena_lighthouse_rc2,920,0.002065%,arena,Other
surf_funhouse_static,919,0.002063%,surf,Other
vsh_dr_death_slope_stsvfix_1,919,0.002063%,vsh,Other
koth_aquaticruin_final2,916,0.002056%,koth,King of the Hill
cp_orange_orange_rush_hw,912,0.002047%,cp,Capture Point
pf_repairkour_b9,909,0.002040%,pf,Other
mvm_decoy_10wave,909,0.002040%,mvm,Man vs Machine
surf_10x_reload_tf2_azel,908,0.002038%,surf,Other
vsh_sg_degrootkeep_v2,907,0.002036%,vsh,Other
dr_wooden_hmx1,907,0.002036%,dr,Other
ctf_convoy,906,0.002034%,ctf,Capture the Flag
vsh_snowflakes_b1_gsn,905,0.002031%,vsh,Other
mvm_decoy_30waves_hard_v5,905,0.002031%,mvm,Man vs Machine
cp_orange_x3_x_snow3,904,0.002029%,cp,Capture Point
achievement_turbov15_v2,903,0.002027%,achievement,Trade and Achievement
jump_muffin_b4,903,0.002027%,jump,Other
vsh_spire_a6,903,0.002027%,vsh,Other
surf_legends_njv,902,0.002025%,surf,Other
dr_forest_b7_fix2,901,0.002022%,dr,Other
pf_escapade_final,901,0.002022%,pf,Other
trade_abstract_augemented_a1,901,0.002022%,trade,Trade and Achievement
ctf_2fort_unleashed_night,901,0.002022%,ctf,Capture the Flag
mvm_bigrock_attackenstaffel_by_,901,0.002022%,mvm,Man vs Machine
trade_plaza_jptf,901,0.002022%,trade,Trade and Achievement
trade_rainbow_palace_v1a,901,0.002022%,trade,Trade and Achievement
dr_space_v10,901,0.002022%,dr,Other
pass_stadium,900,0.002020%,pass,Other
vsh_ram_shacked_final_gsn,900,0.002020%,vsh,Other
tfdb_pingpong_b1,900,0.002020%,tfdb,Other
arena_graveyardbash_v1,899,0.002018%,arena,Other
arena_flourmill_b12,898,0.002016%,arena,Other
strange_level_silo,898,0.002016%,strange,Other
vsh_skytowers_b1,898,0.002016%,vsh,Other
tf2ware2_a4_th,897,0.002013%,tf2ware2,Other
jump_orange_v2,897,0.002013%,jump,Other
pl_badwater_tilt,897,0.002013%,pl,Payload
slender_elementary_b1b,897,0.002013%,slender,Other
jump_nights_fix,897,0.002013%,jump,Other
jump_prism_final,897,0.002013%,jump,Other
cp_logjam_rc3pre1,896,0.002011%,cp,Capture Point
trade_unusual_lethaltf,896,0.002011%,trade,Trade and Achievement
tfdb_swagrocket,896,0.002011%,tfdb,Other
koth_wubwubwub_remix,895,0.002009%,koth,King of the Hill
achievement_idle_awesomebox37,894,0.002007%,achievement,Trade and Achievement
cp_orange_nsr_x_tower_beta2,893,0.002005%,cp,Capture Point
dr_castle_steveh,893,0.002005%,dr,Other
jump_vex_final,892,0.002002%,jump,Other
vsh_streets_v3_gsn,891,0.002000%,vsh,Other
mvm_overlord_b3,889,0.001996%,mvm,Man vs Machine
jump_trix,889,0.001996%,jump,Other
surf_congo_black_njv,889,0.001996%,surf,Other
jump_summer_a5,889,0.001996%,jump,Other
koth_facing_worlds_1999,888,0.001993%,koth,King of the Hill
surf_horizon_njv,888,0.001993%,surf,Other
pf_foundry_v4,887,0.001991%,pf,Other
vsh_ootkakariko_a3,887,0.001991%,vsh,Other
arena_desolation_rc1,887,0.001991%,arena,Other
cp_toys_v2,887,0.001991%,cp,Capture Point
pf_underground_v2a,886,0.001989%,pf,Other
trade_gov_center_final,886,0.001989%,trade,Trade and Achievement
mvm_ma_ep11_1_easy,885,0.001987%,mvm,Man vs Machine
vsh_degrootkeep_freedom_b2,884,0.001984%,vsh,Other
cp_croissant_final,883,0.001982%,cp,Capture Point
achievement_warehouse_v7a,883,0.001982%,achievement,Trade and Achievement
cp_orange_msr_b4,881,0.001978%,cp,Capture Point
koth_bagel_b2,881,0.001978%,koth,King of the Hill
ctf_geothermal_b2,878,0.001971%,ctf,Capture the Flag
mvm_beartrap_a2,877,0.001969%,mvm,Man vs Machine
vsh_calamity_beach_v3,875,0.001964%,vsh,Other
cp_sulfur_b4,875,0.001964%,cp,Capture Point
pf_mizuki_v4,873,0.001960%,pf,Other
tr_craft_rc4,872,0.001957%,tr,Other
jump_ablation_b4,872,0.001957%,jump,Other
vsh_dr_yaybread,872,0.001957%,vsh,Other
koth_nerve,871,0.001955%,koth,King of the Hill
dr_adventure_v3,871,0.001955%,dr,Other
le_rex_np_v5,871,0.001955%,le,Other
mvm_ma_ep6_1_normal,870,0.001953%,mvm,Man vs Machine
cp_convoy_d2,869,0.001951%,cp,Capture Point
mvm_area_52_rc3.ugc512422248,868,0.001948%,mvm,Man vs Machine
cp_orange_warzone_rc1,866,0.001944%,cp,Capture Point
jump_finite_v2,866,0.001944%,jump,Other
pony_sandbox_night_v1,866,0.001944%,pony,Other
slender_theeightpages_classic2,866,0.001944%,slender,Other
jump_blackout_a2,865,0.001942%,jump,Other
tfdb_butts_a4_gsn,864,0.001939%,tfdb,Other
pf_stormdrains_b3,864,0.001939%,pf,Other
mvm_rottenburg_wrath_of_the_lam,864,0.001939%,mvm,Man vs Machine
vsh_megaman6_b4_gsn,863,0.001937%,vsh,Other
vsh_area_54tress_b1,862,0.001935%,vsh,Other
jump_asdf,861,0.001933%,jump,Other
vsh_dr_aconian_final2,861,0.001933%,vsh,Other
slender_sjg_arena_b2b,859,0.001928%,slender,Other
surf_spacejam,859,0.001928%,surf,Other
sb_ovni_v1,858,0.001926%,sb,Other
jump_asshole_a3,858,0.001926%,jump,Other
pl_everest_v3_b4,857,0.001924%,pl,Payload
arena_metal_gear_solid_1,857,0.001924%,arena,Other
minecraft_orange_x3,854,0.001917%,minecraft,Other
gm_construct_flatgrass_v6,851,0.001910%,gm,Other
dr_simpsons_tf2_b3,850,0.001908%,dr,Other
cp_sunshine_rc8,848,0.001904%,cp,Capture Point
koth_skylab_rc1,846,0.001899%,koth,King of the Hill
vsh_mining_a3,844,0.001895%,vsh,Other
cp_castle4_fix2,843,0.001892%,cp,Capture Point
surf_leet_xl_beta7z,842,0.001890%,surf,Other
arena_nuke,841,0.001888%,arena,Other
trade_minecraft_neon_v171,841,0.001888%,trade,Trade and Achievement
jump_skip_b3,840,0.001886%,jump,Other
dr_aconian_sg_v1b,839,0.001883%,dr,Other
trade_plaza_d2_v2,838,0.001881%,trade,Trade and Achievement
vsh_bridge_a4_winter,837,0.001879%,vsh,Other
jump_lanc_v3,837,0.001879%,jump,Other
cp_orange_vx5_b9,835,0.001874%,cp,Capture Point
jump_einfache_b1,835,0.001874%,jump,Other
jump_noskillrequired_b3,834,0.001872%,jump,Other
vsh_west_g44,833,0.001870%,vsh,Other
zf_topsecret_v1_2,833,0.001870%,zf,Other
cp_orange_x3_se2,832,0.001868%,cp,Capture Point
arena_backlot_rc2,832,0.001868%,arena,Other
dz_sniper_r,831,0.001865%,dz,Other
cp_orange_nt_d4,830,0.001863%,cp,Capture Point
mvm_coaltown_uu99_bosses,828,0.001859%,mvm,Man vs Machine
jump_nbn_b4b,826,0.001854%,jump,Other
tfdb_town_sup_v2,825,0.001852%,tfdb,Other
mvm_decoy_30waves_easy_v5,825,0.001852%,mvm,Man vs Machine
dr_timetravel_hmx,824,0.001850%,dr,Other
jump_valley_final,823,0.001847%,jump,Other
mcwall-mart_b12_patched,823,0.001847%,mcwall-mart,Other
pl_moonbase_b10,823,0.001847%,pl,Payload
jump_cool_b2,822,0.001845%,jump,Other
vsh_dr_cocainum_v3_xmas_final,821,0.001843%,vsh,Other
slender_the_tower_b3,820,0.001841%,slender,Other
jump_catch_final,820,0.001841%,jump,Other
jump_zero_v2,819,0.001838%,jump,Other
surf_dusty_roads,818,0.001836%,surf,Other
jump_flukhtiz_v2_b2,817,0.001834%,jump,Other
slender_storage_zero_b1,814,0.001827%,slender,Other
mvm_machine_atks_ep16_sh1,813,0.001825%,mvm,Man vs Machine
gm_emp_cyclopean,812,0.001823%,gm,Other
szf_labs_remake_b4_jugfix1,811,0.001820%,szf,Other
surf_swamp_v1c,810,0.001818%,surf,Other
mvm_maelstrom_rc1,809,0.001816%,mvm,Man vs Machine
jump_hexahedron,809,0.001816%,jump,Other
surf_akai_njv_fix,808,0.001814%,surf,Other
jump_joa_v2,808,0.001814%,jump,Other
ph_snowworks_a3,806,0.001809%,ph,Other
dr_space_v12,806,0.001809%,dr,Other
vsh_oilrig_holiday,804,0.001805%,vsh,Other
slender_weepers_b2c,803,0.001802%,slender,Other
jump_hobo,803,0.001802%,jump,Other
pl_pier_b16,802,0.001800%,pl,Payload
trade_delfino_airstrip_b3,802,0.001800%,trade,Trade and Achievement
pf_points_b16,800,0.001796%,pf,Other
slender_alpha_complex_b1a,799,0.001794%,slender,Other
surf_toast_redone_v2,798,0.001791%,surf,Other
tfdb_brokenglass_b4,798,0.001791%,tfdb,Other
dr_wackyforest,797,0.001789%,dr,Other
jump_rainbow,796,0.001787%,jump,Other
arena_caverna_final,796,0.001787%,arena,Other
jump_depleted,796,0.001787%,jump,Other
tfdb_orbit-v10,796,0.001787%,tfdb,Other
vsh_nale_b1e_gsn,795,0.001785%,vsh,Other
slender_monophobia_reborn_b1,795,0.001785%,slender,Other
vsh_streets_v2_gsn,795,0.001785%,vsh,Other
vsh_castlewars_v8,795,0.001785%,vsh,Other
dr_wooden_v4_fixed,794,0.001782%,dr,Other
sn_snipervolcano_2013,794,0.001782%,sn,Other
vsh_west_event_v5_gsn,794,0.001782%,vsh,Other
mvm_decoy_30_waves,794,0.001782%,mvm,Man vs Machine
koth_2fort_miha,793,0.001780%,koth,King of the Hill
jump_titan,792,0.001778%,jump,Other
glass_constructsite_v1,791,0.001776%,glass,Other
arena_gamerlive_park_beta_v1_0,791,0.001776%,arena,Other
mvm_coaltown_30_waves_remastere,790,0.001773%,mvm,Man vs Machine
vsh_killbox_8bit_b8fixed,790,0.001773%,vsh,Other
trade_masscc_c5_1,790,0.001773%,trade,Trade and Achievement
jump_rayner_a1_fixed,789,0.001771%,jump,Other
cp_orange_vx6_007,788,0.001769%,cp,Capture Point
dr_slay_b5,787,0.001767%,dr,Other
szf_graveyardbash_v1_jugfix2,786,0.001764%,szf,Other
supernatural_castle_v6a,786,0.001764%,supernatural,Other
cp_inferno,784,0.001760%,cp,Capture Point
cp_medieval_siege_v2_b23,784,0.001760%,cp,Capture Point
dr_block_hmx_v3,784,0.001760%,dr,Other
jump_sdm_final,783,0.001758%,jump,Other
slender_gutters_b2b_h,782,0.001755%,slender,Other
vsh_dust2,782,0.001755%,vsh,Other
vsh_thievestown_a1,782,0.001755%,vsh,Other
pf_miles_b7,780,0.001751%,pf,Other
arena_mariokart2_pb1,779,0.001749%,arena,Other
vsh_citadel_v1,779,0.001749%,vsh,Other
ctf_2fort_classic_mod_bd32,779,0.001749%,ctf,Capture the Flag
vsh_west_fix3,779,0.001749%,vsh,Other
surf_chaos_fix_tf2_v3,779,0.001749%,surf,Other
pl_angkor_rc2,779,0.001749%,pl,Payload
vsh_wildcanyon_fix,778,0.001746%,vsh,Other
zf_halls_of_the_damned_v1,778,0.001746%,zf,Other
dm_manehatten_b8,777,0.001744%,dm,Deathmatch
vsh_orange_x5,777,0.001744%,vsh,Other
koth_anthem_b4,777,0.001744%,koth,King of the Hill
vsh_beach_b7,776,0.001742%,vsh,Other
vsh_dr_time_travel_b4,776,0.001742%,vsh,Other
sb_steamroll_a2,775,0.001740%,sb,Other
cp_snakewater_rc1,775,0.001740%,cp,Capture Point
lunar_arboretum_d4,774,0.001737%,lunar,Other
arena_goldtooth_rc4,774,0.001737%,arena,Other
jump_nmotion2,774,0.001737%,jump,Other
trade_lunarpumpkin_v026,774,0.001737%,trade,Trade and Achievement
pl_millstone_rc7,773,0.001735%,pl,Payload
szf_trainmg_v1_31,773,0.001735%,szf,Other
cp_orange_flakes_v4_fix,773,0.001735%,cp,Capture Point
surf_buck-ed_up_tf2,772,0.001733%,surf,Other
koth_framework,772,0.001733%,koth,King of the Hill
jump_quake_beta4,772,0.001733%,jump,Other
pf_acrasia_b5,772,0.001733%,pf,Other
mvm_l6f_deadfortress_d,771,0.001731%,mvm,Man vs Machine
vsh_goldtooth_b4,771,0.001731%,vsh,Other
ctf_hotspring_b3a,771,0.001731%,ctf,Capture the Flag
mvm_l6f_deadfortress_e,770,0.001728%,mvm,Man vs Machine
jump_klanana,770,0.001728%,jump,Other
cp_orange_x3_seasontowers_prere,768,0.001724%,cp,Capture Point
tfdb_blucourt_intox_giga_v1,768,0.001724%,tfdb,Other
dr_simpsons_custom,765,0.001717%,dr,Other
mvm_ma_ep13_1_hard,764,0.001715%,mvm,Man vs Machine
vsh_rooftops_of_peril_v5c,764,0.001715%,vsh,Other
tfdb_amazon_alpha,764,0.001715%,tfdb,Other
dr_pauseahead_v11,763,0.001713%,dr,Other
mvm_machine_attacks_ep5,763,0.001713%,mvm,Man vs Machine
dm_arena_v1b,763,0.001713%,dm,Deathmatch
ctf_flakey_b3,763,0.001713%,ctf,Capture the Flag
surf_aurantia-grisea,762,0.001710%,surf,Other
ctf_facing_worlds_1999b,762,0.001710%,ctf,Capture the Flag
ctf_scorched_final,762,0.001710%,ctf,Capture the Flag
sniper_reservoir,762,0.001710%,sniper,Other
vsh_cairo_pyramid_v5,761,0.001708%,vsh,Other
slender_two_fort_b1,761,0.001708%,slender,Other
dr_wolfenstein_v3,761,0.001708%,dr,Other
dr_block_v8,758,0.001701%,dr,Other
fun_dark_np_v7,758,0.001701%,fun,Other
mvm_machine_attacks_ep9_sh1,758,0.001701%,mvm,Man vs Machine
trade_minecraftworld_a6,757,0.001699%,trade,Trade and Achievement
jump_half,756,0.001697%,jump,Other
tfdb_prison_yard_a1,754,0.001693%,tfdb,Other
vsh_sourcewater_b4,754,0.001693%,vsh,Other
mvm_mannworks_30wave,754,0.001693%,mvm,Man vs Machine
jump_what,754,0.001693%,jump,Other
mvm_badwater_final,754,0.001693%,mvm,Man vs Machine
vsh_train_wreck,754,0.001693%,vsh,Other
mvm_coaltown_uberup_easy,753,0.001690%,mvm,Man vs Machine
dr_texture_extreme_v4,752,0.001688%,dr,Other
sb_skyscraper_beta2,751,0.001686%,sb,Other
zf_4way_v11,750,0.001684%,zf,Other
vsh_hamsterdance_v2,748,0.001679%,vsh,Other
dr_volvagias_lair_beta,747,0.001677%,dr,Other
szf_4way_v11,747,0.001677%,szf,Other
rj_rckteer,745,0.001672%,rj,Other
trade_plaza_sg_v5,744,0.001670%,trade,Trade and Achievement
mvm_ma_ep12_1,744,0.001670%,mvm,Man vs Machine
vsh_well,744,0.001670%,vsh,Other
pf_eversion_v4,743,0.001668%,pf,Other
jump_kinetics_d3,743,0.001668%,jump,Other
dr_crash_universe_a3,742,0.001666%,dr,Other
zf_panic_apartment_sp1_ig,742,0.001666%,zf,Other
ph_hilltop_a2_fixed,742,0.001666%,ph,Other
zs_dustbowl_alpha,742,0.001666%,zs,Other
mvm_manncohq_v3,740,0.001661%,mvm,Man vs Machine
dr_mineshaft_v9,740,0.001661%,dr,Other
harbl_hotel_t,740,0.001661%,harbl,Other
jump_aura_b4,740,0.001661%,jump,Other
sniper_india_fawosfix4,738,0.001657%,sniper,Other
vsh_center_b3,737,0.001654%,vsh,Other
ctf_installation_v2,737,0.001654%,ctf,Capture the Flag
koth_graveyard_beta2,737,0.001654%,koth,King of the Hill
slender_hydro_b1c,736,0.001652%,slender,Other
vsh_anubis_catharsis_v4,736,0.001652%,vsh,Other
tfdb_greybox_gsn,735,0.001650%,tfdb,Other
dr_haunted_museum,735,0.001650%,dr,Other
vsh_warzone_rc1,735,0.001650%,vsh,Other
koth_megaman6_rc1,734,0.001648%,koth,King of the Hill
arena_vsh_mtsaxton_ff2,734,0.001648%,arena,Other
tfdb_totem_sup,734,0.001648%,tfdb,Other
ctf_minedesert_rc,733,0.001645%,ctf,Capture the Flag
arena_timbertown_b1_sunny,732,0.001643%,arena,Other
tfdb_inferno_a5_gsn,732,0.001643%,tfdb,Other
mvm_sewer_invasion_event_b7,732,0.001643%,mvm,Man vs Machine
zf_panic_v5,731,0.001641%,zf,Other
cp_frontline_a1,729,0.001636%,cp,Capture Point
jump_homie_beta,729,0.001636%,jump,Other
slender_sewer_b1a_h2,729,0.001636%,slender,Other
mge_bball_v2,729,0.001636%,mge,Other
slender_sector_six_b1b_h2,728,0.001634%,slender,Other
pf_koosu_s8,728,0.001634%,pf,Other
jump_panama_v3,727,0.001632%,jump,Other
vsh_manncohq_wfix,727,0.001632%,vsh,Other
rp_evocity_v2d_tf_3,725,0.001627%,rp,Other
cp_orange_aarmy_b11,725,0.001627%,cp,Capture Point
zf_rapture_a2,725,0.001627%,zf,Other
trade_minecraft_b63_vikvek,725,0.001627%,trade,Trade and Achievement
strange_level_cloak,725,0.001627%,strange,Other
mvm_ma_ep1_1_normal,724,0.001625%,mvm,Man vs Machine
mvm_example,724,0.001625%,mvm,Man vs Machine
arena_heliport_b1,723,0.001623%,arena,Other
ktf_lemmyard,723,0.001623%,ktf,Other
jump_negative_b5,722,0.001621%,jump,Other
szf_toyfortress_v18_jugfix3,722,0.001621%,szf,Other
bhop_japan,722,0.001621%,bhop,Other
mvm_l6f_deadfortress_a,721,0.001618%,mvm,Man vs Machine
slender_lockers_b5b,721,0.001618%,slender,Other
pl_cornfarm_rc,719,0.001614%,pl,Payload
cp_lwobtsud,718,0.001612%,cp,Capture Point
ctf_minecraft_cave_b8,718,0.001612%,ctf,Capture the Flag
jump_panama_v2,717,0.001609%,jump,Other
mvm_ma_ep3_1_hard,717,0.001609%,mvm,Man vs Machine
pf_woodworks_v2,717,0.001609%,pf,Other
tfdb_platforms_slag_b13,716,0.001607%,tfdb,Other
slender_lockers_b5a_h,716,0.001607%,slender,Other
koth_variousartists_rc4,715,0.001605%,koth,King of the Hill
vsh_atollday_v2_gsn,714,0.001603%,vsh,Other
trade_minecraft_neon_v168,714,0.001603%,trade,Trade and Achievement
sniper_iceman_tf2,714,0.001603%,sniper,Other
zf_turtle_attack_v5,713,0.001600%,zf,Other
koth_tankwar,713,0.001600%,koth,King of the Hill
vsh_oilrig_v18_gsn,713,0.001600%,vsh,Other
achievement_idle_thr_revamp_v2,710,0.001594%,achievement,Trade and Achievement
pf_callaghan_b3,709,0.001591%,pf,Other
zf_police_station_ii,709,0.001591%,zf,Other
trade_edventures_v2a,709,0.001591%,trade,Trade and Achievement
jump_skylight,709,0.001591%,jump,Other
vsh_mountain_pbfix01,708,0.001589%,vsh,Other
tfdb_bm_building,708,0.001589%,tfdb,Other
dr_arcreflex_v1,707,0.001587%,dr,Other
slender_expedition_b3,706,0.001585%,slender,Other
trade_bigcity_dtf2,705,0.001583%,trade,Trade and Achievement
dr_dlux_v5,705,0.001583%,dr,Other
mvm_ma_ep10_1_hard,705,0.001583%,mvm,Man vs Machine
dr_factory_v3a,704,0.001580%,dr,Other
jump_tf,703,0.001578%,jump,Other
trade_ocity_b6,702,0.001576%,trade,Trade and Achievement
vsh_teul_rc2_gsn,702,0.001576%,vsh,Other
cp_degrootkeep_rainstorm,701,0.001574%,cp,Capture Point
glass_sandstone,700,0.001571%,glass,Other
cp_logjam_rc4,700,0.001571%,cp,Capture Point
cp_punts_new,699,0.001569%,cp,Capture Point
cp_rumble_rc1,699,0.001569%,cp,Capture Point
tfdb_bk_warehouse_beta,699,0.001569%,tfdb,Other
tfdb_speed_v2,698,0.001567%,tfdb,Other
jump_mohaxish_rc2,698,0.001567%,jump,Other
vsh_orange_murder,698,0.001567%,vsh,Other
surf_funpark_reloaded_v1,698,0.001567%,surf,Other
trade_masscc_d2,697,0.001565%,trade,Trade and Achievement
trade_hopi_plaza_v1,697,0.001565%,trade,Trade and Achievement
pl_badwater_event,696,0.001562%,pl,Payload
dr_forest_b7,695,0.001560%,dr,Other
pl_timbermill_rc4,695,0.001560%,pl,Payload
arena_dust,695,0.001560%,arena,Other
trade_minecraft_v16,694,0.001558%,trade,Trade and Achievement
pl_rivercrossing_rc2a,692,0.001553%,pl,Payload
slender_lockers_b5b_h2,692,0.001553%,slender,Other
mvm_l6f_deadfortress_c,692,0.001553%,mvm,Man vs Machine
achievement_bots_v4_d_a4,691,0.001551%,achievement,Trade and Achievement
ctf_theskatingrink,690,0.001549%,ctf,Capture the Flag
vsh_dr_space_v13,689,0.001547%,vsh,Other
vsh_muscevet_v2fix,689,0.001547%,vsh,Other
szf_biotics_lab_v4_fix,688,0.001544%,szf,Other
jump_aurora_v2,688,0.001544%,jump,Other
mvm_machine_attacks_ep5_sh1,687,0.001542%,mvm,Man vs Machine
slender_alpha_complex_b1_h,685,0.001538%,slender,Other
mvm_coaltown_uu99_test,685,0.001538%,mvm,Man vs Machine
jump_requiem_a6,685,0.001538%,jump,Other
dr_forest_b7a,684,0.001535%,dr,Other
surf_spaze_tf2,684,0.001535%,surf,Other
jump_natural_b2,684,0.001535%,jump,Other
dr_sunbaked_v2,683,0.001533%,dr,Other
vsh_detra_v3_gsn,681,0.001529%,vsh,Other
jump_mirrorsedge_rc2,679,0.001524%,jump,Other
jump_kusok,679,0.001524%,jump,Other
vsh_crevice_north_pole,679,0.001524%,vsh,Other
cp_orange_x3_ft_2_4_1,678,0.001522%,cp,Capture Point
dr_winterhill_hmx1b,678,0.001522%,dr,Other
wacky_races,678,0.001522%,wacky,Other
surf_waterworks,678,0.001522%,surf,Other
cp_toy_fort_tbr_v6,678,0.001522%,cp,Capture Point
dr_winterhill_b9,678,0.001522%,dr,Other
vsh_wwe_b2,677,0.001520%,vsh,Other
koth_aperture_science_iiia,675,0.001515%,koth,King of the Hill
zf_expedition_c3,675,0.001515%,zf,Other
koth_outskirts_a9_v002,675,0.001515%,koth,King of the Hill
pf_nuance_b6,675,0.001515%,pf,Other
cp_helms_deep,675,0.001515%,cp,Capture Point
surf_buck-fever_tf2,675,0.001515%,surf,Other
pf_overview_b3,675,0.001515%,pf,Other
fw_war_a1,674,0.001513%,fw,Other
dr_bigroom_remake_final,674,0.001513%,dr,Other
szf_volcanoevac_v7_jugfix4,674,0.001513%,szf,Other
vsh_warebloom_b6,673,0.001511%,vsh,Other
vsh_timbertown_sunny_pbfix02,672,0.001508%,vsh,Other
dr_prison_escape_7_fix2_2,671,0.001506%,dr,Other
idle_15_rc5,670,0.001504%,idle,Other
mvm_coaltown_alias1_cash,670,0.001504%,mvm,Man vs Machine
surf_forbidden_ways_2nd,670,0.001504%,surf,Other
jump_gateway_final,670,0.001504%,jump,Other
vsh_atollday_v2,670,0.001504%,vsh,Other
dm_ponyville_b11_fix,670,0.001504%,dm,Deathmatch
tfdb_seabattle_b1,669,0.001502%,tfdb,Other
zm_flame_town,667,0.001497%,zm,Other
arena_draft_b2,666,0.001495%,arena,Other
vsh_megaman6_rc1_gsn,666,0.001495%,vsh,Other
vsh_mann_co_gym,665,0.001493%,vsh,Other
vsh_convoy_v2_a1,665,0.001493%,vsh,Other
achievement_all_gdt_v8,664,0.001490%,achievement,Trade and Achievement
sb_finaldestination_v1b,663,0.001488%,sb,Other
trade_snoop_v5,662,0.001486%,trade,Trade and Achievement
mvm_gateway_rc2,662,0.001486%,mvm,Man vs Machine
fw_forts_a3,662,0.001486%,fw,Other
mvm_l6f_deadfortress_b,662,0.001486%,mvm,Man vs Machine
jump_dystopia,660,0.001481%,jump,Other
slender_frontier_final,659,0.001479%,slender,Other
cp_mario_bros_beta8,659,0.001479%,cp,Capture Point
tfdb_groove_v2_gsn,659,0.001479%,tfdb,Other
tfdb_orbital_rc1,657,0.001475%,tfdb,Other
vsh_dr_goldfever_tf2_b4,657,0.001475%,vsh,Other
dom_canalzone2_b4,656,0.001473%,dom,Other
jump_speed2,656,0.001473%,jump,Other
pl_abandoned_upward,655,0.001470%,pl,Payload
dr_wooden_v3,655,0.001470%,dr,Other
arena_watchtower_b2,655,0.001470%,arena,Other
war3sourc_e_ver8,655,0.001470%,war3sourc,Other
sb_complex_b1,655,0.001470%,sb,Other
koth_nippletwister_a3,654,0.001468%,koth,King of the Hill
dr_bigroom_light_7b,654,0.001468%,dr,Other
dr_castle_v2,654,0.001468%,dr,Other
vsh_gwfoffice_v5,653,0.001466%,vsh,Other
cp_medieval__siege,653,0.001466%,cp,Capture Point
tf2hats_trade_hotspot_v9,653,0.001466%,tf2hats,Other
cp_no_mercy_b1,652,0.001464%,cp,Capture Point
ctf_2fort_saraya2_day4,651,0.001461%,ctf,Capture the Flag
zf_office_v1_3,650,0.001459%,zf,Other
vsh_minegay_b2,650,0.001459%,vsh,Other
pl_millstone_ugc_5,650,0.001459%,pl,Payload
trade_plaza_valley_bg_v3,650,0.001459%,trade,Trade and Achievement
vsh_skyhigh_resort_v18,649,0.001457%,vsh,Other
jump_foundation_a2,649,0.001457%,jump,Other
cp_twin_towers_oreon_b1,649,0.001457%,cp,Capture Point
vsh_dr_mario_b2,648,0.001455%,vsh,Other
jump_dad,648,0.001455%,jump,Other
fw_sewers_a3,647,0.001452%,fw,Other
ctf_eggwar_b2,647,0.001452%,ctf,Capture the Flag
vsh_detra_v2,647,0.001452%,vsh,Other
jump_neptune_rc1,646,0.001450%,jump,Other
ctf_halo_bloodgulch,644,0.001446%,ctf,Capture the Flag
trade_kfbd_rv_finalv12,644,0.001446%,trade,Trade and Achievement
vsh_detra_v2_gsn,644,0.001446%,vsh,Other
pf_tilt_b1,644,0.001446%,pf,Other
ctf_operative_b1,644,0.001446%,ctf,Capture the Flag
ctf_2fort_classic_v2,643,0.001443%,ctf,Capture the Flag
vsh_old_town_v2,642,0.001441%,vsh,Other
ba_mlcastle_v8,642,0.001441%,ba,Other
vsh_pruvia_v5,641,0.001439%,vsh,Other
cp_smbcastle2,641,0.001439%,cp,Capture Point
trade_sunshine,641,0.001439%,trade,Trade and Achievement
slender_newfnaf3_b1_demonhamste,640,0.001437%,slender,Other
sn_mayasniper,640,0.001437%,sn,Other
pl_minepit,640,0.001437%,pl,Payload
mvm_coaltown_30_waves_v46_easy,639,0.001434%,mvm,Man vs Machine
vsh_sky_complex,639,0.001434%,vsh,Other
jump_wolf,638,0.001432%,jump,Other
vsh_2hell_v803,637,0.001430%,vsh,Other
koth_hyrulecastle,637,0.001430%,koth,King of the Hill
vsh_spotline_reworked_gsn,637,0.001430%,vsh,Other
vsh_dr_dust_b3_fix2,637,0.001430%,vsh,Other
vsh_degrootkeep_freedom_b1,636,0.001428%,vsh,Other
vsh_dr_office_zmbr5,635,0.001425%,vsh,Other
tfdb_oilrig,635,0.001425%,tfdb,Other
dr_mlg_bearun_b3_fix_rengo_fix,634,0.001423%,dr,Other
koth_pokemon_stadium_b1,634,0.001423%,koth,King of the Hill
tfdb_lazarz_a3,634,0.001423%,tfdb,Other
jump_propel_fixed_v3,634,0.001423%,jump,Other
pl_rust,633,0.001421%,pl,Payload
vsh_spotline_b8,633,0.001421%,vsh,Other
vsh_tower_of_peril_redux_v4e,632,0.001419%,vsh,Other
mvm_mannworks_ubup_bosses,632,0.001419%,mvm,Man vs Machine
vsh_dustydesk_ff3,632,0.001419%,vsh,Other
mvm_on_titan_mannhattan_advance,632,0.001419%,mvm,Man vs Machine
mvm_coaltown_survival_objlessno,631,0.001416%,mvm,Man vs Machine
dr_forest_sg_v1b_v2optimized,631,0.001416%,dr,Other
jump_vulc_a2,631,0.001416%,jump,Other
tfdb_own_rc2,631,0.001416%,tfdb,Other
jump_aridia,631,0.001416%,jump,Other
cp_haddou_rc2,631,0.001416%,cp,Capture Point
cp_orange_transport_alpha_1,629,0.001412%,cp,Capture Point
pl_deplane_b6,629,0.001412%,pl,Payload
vsh_minewoods_playboy2,626,0.001405%,vsh,Other
cp_dusk_rc1,626,0.001405%,cp,Capture Point
jump_compound,626,0.001405%,jump,Other
ctf_rift_rc1a,626,0.001405%,ctf,Capture the Flag
jump_ontra,626,0.001405%,jump,Other
vsh_dr_mario_b4,624,0.001401%,vsh,Other
trade_cyberpunk_hightower_f,623,0.001398%,trade,Trade and Achievement
vsh_military_area_hyrule_v2,623,0.001398%,vsh,Other
mario_kart_2011_vk_2,622,0.001396%,mario,Other
trade_plaza_mochilabr,622,0.001396%,trade,Trade and Achievement
vsh_sweet_king_b4,622,0.001396%,vsh,Other
mvm_grand_canyon,621,0.001394%,mvm,Man vs Machine
ctf_laynedecker,621,0.001394%,ctf,Capture the Flag
tfdb_orange_v1,621,0.001394%,tfdb,Other
ctf_chaos,621,0.001394%,ctf,Capture the Flag
vsh_palanquin_ship_novpk,621,0.001394%,vsh,Other
mvm_coaltown_event_the_darkest_,620,0.001392%,mvm,Man vs Machine
jump_lite_a0,619,0.001389%,jump,Other
jump_hajnal_finalbeta,618,0.001387%,jump,Other
vsh_dr_area_51_b1,618,0.001387%,vsh,Other
jump_buttons,618,0.001387%,jump,Other
jump_stripe_b5,616,0.001383%,jump,Other
arena_blackwood_valley,616,0.001383%,arena,Other
jump_crypt,615,0.001380%,jump,Other
zf_christmas_panic_v1,615,0.001380%,zf,Other
cp_degrootkeep_v2,615,0.001380%,cp,Capture Point
koth_mill_rc4,614,0.001378%,koth,King of the Hill
cp_orange_x4_snow,614,0.001378%,cp,Capture Point
mvm_5gorge_cp,614,0.001378%,mvm,Man vs Machine
tc_meridian_rc3,613,0.001376%,tc,Other
pl_badwater_snowy2,613,0.001376%,pl,Payload
koth_dockyard_v2,612,0.001374%,koth,King of the Hill
vsh_loader_pb1,612,0.001374%,vsh,Other
ctf_2fort_classic_mod_bd41,612,0.001374%,ctf,Capture the Flag
vsh_enrichment_sphere_b1,612,0.001374%,vsh,Other
dr_coldmetal_final_fix,612,0.001374%,dr,Other
cp_orange_mangmu_vne,610,0.001369%,cp,Capture Point
achievement_siusiaczkowo3_v1,609,0.001367%,achievement,Trade and Achievement
cp_subway_b8,609,0.001367%,cp,Capture Point
aquablocks_event,609,0.001367%,aquablocks,Other
szf_nighttower_v1_3,609,0.001367%,szf,Other
surf_supermario_nomusic,608,0.001365%,surf,Other
surf_ing,607,0.001363%,surf,Other
koth_lijiang_center,606,0.001360%,koth,King of the Hill
vsh_moving_in_v2,605,0.001358%,vsh,Other
vsh_dr_newporkcity_v1,605,0.001358%,vsh,Other
trade_houseofchaos,605,0.001358%,trade,Trade and Achievement
dr_deathpoint_alpha_07,604,0.001356%,dr,Other
szf_manncoscience_neverendingri,603,0.001354%,szf,Other
jump_internal_b3,603,0.001354%,jump,Other
koth_powercore_v1,602,0.001351%,koth,King of the Hill
surf_hang_time_reloaded_v2,601,0.001349%,surf,Other
ctf_2fort_egypt,601,0.001349%,ctf,Capture the Flag
mvm_derelict_rc2,599,0.001345%,mvm,Man vs Machine
pf_mandrillmaze_v3,599,0.001345%,pf,Other
vsh_dr_coldmetal_final_fix,598,0.001342%,vsh,Other
koth_hangar_b9,598,0.001342%,koth,King of the Hill
dr_assassinate_v1_a,598,0.001342%,dr,Other
cp_dustbowl_3round_v1,598,0.001342%,cp,Capture Point
szf_drain_remake_v4_redsun3,597,0.001340%,szf,Other
mvm_sludge_b4_fix1,596,0.001338%,mvm,Man vs Machine
cp_toy_fort_elite_fix,596,0.001338%,cp,Capture Point
dr_cube_v3,596,0.001338%,dr,Other
achievement_villains_day,595,0.001336%,achievement,Trade and Achievement
mvm_troopers_defend,595,0.001336%,mvm,Man vs Machine
aot_castle_v3,592,0.001329%,aot,Other
vsh_powercore_v1,590,0.001324%,vsh,Other
slender_townsend_unreleased6_ha,589,0.001322%,slender,Other
trade_what,589,0.001322%,trade,Trade and Achievement
arena_dust_ex,589,0.001322%,arena,Other
duels_midair_v2,589,0.001322%,duels,Other
vsh_dr_toxic_waste_b5,588,0.001320%,vsh,Other
slender_theeightpages_classic4a,587,0.001318%,slender,Other
vsh_degrootkeep_night,586,0.001315%,vsh,Other
jump_purecio_b2,586,0.001315%,jump,Other
idle_gamermice_strange_a5-1,586,0.001315%,idle,Other
fun_ramon_rc3,585,0.001313%,fun,Other
de_dust2_b4b,584,0.001311%,de,Other
tfdb_muca_idea_b2,584,0.001311%,tfdb,Other
arena_drylock_b2,583,0.001309%,arena,Other
koth_missilebase_b5,583,0.001309%,koth,King of the Hill
pl_great_heights_b3_fx13,583,0.001309%,pl,Payload
ph_timbertown_a3_fixed,583,0.001309%,ph,Other
vsh_arena_reloaded,583,0.001309%,vsh,Other
arena_dirtpit,583,0.001309%,arena,Other
vsh_dunger_a4,582,0.001306%,vsh,Other
tyler_rocket_shooting_v3_d,582,0.001306%,tyler,Other
dr_minecaves_fix,582,0.001306%,dr,Other
tfdb_box_night_a4_fixed,581,0.001304%,tfdb,Other
cp_geomance_rc1,581,0.001304%,cp,Capture Point
jump_devils_redo,581,0.001304%,jump,Other
mvm_mannworks_30wave_v46_e,580,0.001302%,mvm,Man vs Machine
pz_cp_orange_x3,580,0.001302%,pz,Other
surf_swagtoast,580,0.001302%,surf,Other
jump_rvr_b1,579,0.001300%,jump,Other
vsh_pocketdimension_v2,579,0.001300%,vsh,Other
cp_overflow_2,579,0.001300%,cp,Capture Point
surf_zaza,578,0.001297%,surf,Other
jump_taylor_swift,577,0.001295%,jump,Other
tf2ware2_a1,576,0.001293%,tf2ware2,Other
pf_werbad_b9,576,0.001293%,pf,Other
vsh_dr_gaytower_v3p2,576,0.001293%,vsh,Other
vsh_kindergarten,576,0.001293%,vsh,Other
mvm_hydro_a3,575,0.001291%,mvm,Man vs Machine
pl_alpen_rc1,574,0.001288%,pl,Payload
mvm_rottenburg_engierevenge,574,0.001288%,mvm,Man vs Machine
mvm_ma_ep3_1_normal,573,0.001286%,mvm,Man vs Machine
tfdb_redcourt_intox_fix,573,0.001286%,tfdb,Other
ph_nightclub_v2,573,0.001286%,ph,Other
jump_mouser,572,0.001284%,jump,Other
jump_ring,570,0.001279%,jump,Other
koth_lijiang_market,569,0.001277%,koth,King of the Hill
koth_suijin_b3,569,0.001277%,koth,King of the Hill
jump_iser_a3,568,0.001275%,jump,Other
drudtown_027,568,0.001275%,drudtown,Other
vsh_abandoned_office,568,0.001275%,vsh,Other
arena_b_degroot_keep_v2b,568,0.001275%,arena,Other
jump_momentum,567,0.001273%,jump,Other
de_dust_b2,567,0.001273%,de,Other
jb_uhadi,567,0.001273%,jb,Other
jump_boredfox_b1,566,0.001270%,jump,Other
jump_bounce,566,0.001270%,jump,Other
pd_meme_machine_rc3,565,0.001268%,pd,Other
arena_minetown,565,0.001268%,arena,Other
slender_claustrophobia_b1_h2,565,0.001268%,slender,Other
mvm_minecraft_b15a_easy,565,0.001268%,mvm,Man vs Machine
jump_demolition,565,0.001268%,jump,Other
mvm_isolation_rc3,565,0.001268%,mvm,Man vs Machine
cp_orange_avi,564,0.001266%,cp,Capture Point
mvm_meltdown_rc4,563,0.001264%,mvm,Man vs Machine
mvm_15wave_of_the_dead_2_fix_no,563,0.001264%,mvm,Man vs Machine
jump_around_cr,563,0.001264%,jump,Other
pl_morrigan_alley_b3,563,0.001264%,pl,Payload
dr_newporkcity_v1,562,0.001262%,dr,Other
vsh_swagcity_v10_v-2,562,0.001262%,vsh,Other
vsh_tower_of_peril_redux,562,0.001262%,vsh,Other
cp_hybro_b07,559,0.001255%,cp,Capture Point
dm_ponyville_h2,559,0.001255%,dm,Deathmatch
cp_orange_x_tbr_v3a,559,0.001255%,cp,Capture Point
vsh_dr_goldfever_b2,558,0.001253%,vsh,Other
fw_blackout_v3c,558,0.001253%,fw,Other
vsh_pruvia_v3,558,0.001253%,vsh,Other
arena_dropdown_rc1,558,0.001253%,arena,Other
ba_jail_casuarina_b5_lessheal_1,557,0.001250%,ba,Other
ph_campsite_a3,557,0.001250%,ph,Other
surf_alpine_tf2,556,0.001248%,surf,Other
surf_mai_redone,555,0.001246%,surf,Other
vsh_dr_minecraft_b10,555,0.001246%,vsh,Other
koth_trenchfoot_b1a,555,0.001246%,koth,King of the Hill
coop_finaldestination_2015,555,0.001246%,coop,Other
mvm_underground_rc2,554,0.001244%,mvm,Man vs Machine
pf_rebound_final,554,0.001244%,pf,Other
slender_2fort_a3,553,0.001241%,slender,Other
team_trial_mandrillmaze_rc3,553,0.001241%,team,Other
trade_minecraft_toxicbunny_v4,553,0.001241%,trade,Trade and Achievement
vsh_dust2_rc4b7,553,0.001241%,vsh,Other
vsh_test_server_wc,553,0.001241%,vsh,Other
ctf_minefort_b2_a2,553,0.001241%,ctf,Capture the Flag
cp_orange_horizon,552,0.001239%,cp,Capture Point
dr_xtremeway_tank_custom,552,0.001239%,dr,Other
pf_hekto_b5,551,0.001237%,pf,Other
vsh_fork_v4,550,0.001235%,vsh,Other
surf_peppermint_v7b,550,0.001235%,surf,Other
pf_changs_v10,550,0.001235%,pf,Other
trade_rawr,550,0.001235%,trade,Trade and Achievement
jump_panama_v3_fix,549,0.001232%,jump,Other
zf_trainmg_v1_31,548,0.001230%,zf,Other
surf_swift,548,0.001230%,surf,Other
jump_nights,547,0.001228%,jump,Other
ph_dust2_2x2_v2,547,0.001228%,ph,Other
arena_lost_in_desert_v2,546,0.001226%,arena,Other
vsh_halo_bloodgulch_event_v2,546,0.001226%,vsh,Other
ph_tundra_b5,546,0.001226%,ph,Other
idle_sniper_war_v13,546,0.001226%,idle,Other
vsh_testing_town_a1,546,0.001226%,vsh,Other
tfdb_reflex_v3,546,0.001226%,tfdb,Other
jump_seven,545,0.001223%,jump,Other
vsh_dropdown_b3,545,0.001223%,vsh,Other
vsh_storage_night_final,545,0.001223%,vsh,Other
vsh_dr_sawmill_fixed_v2,545,0.001223%,vsh,Other
vsh_magazine_b2b,545,0.001223%,vsh,Other
vsh_grt_hale2,545,0.001223%,vsh,Other
mvm_underground_rc3,544,0.001221%,mvm,Man vs Machine
koth_stallone_b2,543,0.001219%,koth,King of the Hill
arena_separated,543,0.001219%,arena,Other
pl_fifthcurve_b2,543,0.001219%,pl,Payload
trade_afterlife_dark_v2,542,0.001217%,trade,Trade and Achievement
vsh_dr_running_v2_rc2,542,0.001217%,vsh,Other
surf_guitar_hi,541,0.001214%,surf,Other
trade_plaza_qugly,541,0.001214%,trade,Trade and Achievement
koth_ultiduo,540,0.001212%,koth,King of the Hill
dr_minecraftworld_b3_free,540,0.001212%,dr,Other
slender_sewer_b1a_h,540,0.001212%,slender,Other
mvm_ma_ep4_1_normal,540,0.001212%,mvm,Man vs Machine
ctf_eggwar_b1,540,0.001212%,ctf,Capture the Flag
mvm_decoy_survival_objlessgiant,540,0.001212%,mvm,Man vs Machine
surf_rainbow_njv,539,0.001210%,surf,Other
vsh_sfac_v2,539,0.001210%,vsh,Other
vsh_minecraftcloudstuck_b2,538,0.001208%,vsh,Other
slender_the_citadel_b1b,537,0.001205%,slender,Other
tfdb_castle_rc2,537,0.001205%,tfdb,Other
mvm_15wave_of_the_dead_2_fix,536,0.001203%,mvm,Man vs Machine
vsh_industrial_fix,536,0.001203%,vsh,Other
vsh_lavender_town_v1,536,0.001203%,vsh,Other
vsh_concord_lz_b3,535,0.001201%,vsh,Other
jump_dang,535,0.001201%,jump,Other
sb_icarus_v4_ig,534,0.001199%,sb,Other
vsh_pyramidtime_jugfix2,534,0.001199%,vsh,Other
jump_nights_a5,533,0.001196%,jump,Other
slender_parish_b1b,533,0.001196%,slender,Other
vsh_insiders_a5,533,0.001196%,vsh,Other
koth_smokeyridge_060,533,0.001196%,koth,King of the Hill
tfdb_bestofdb_a1,532,0.001194%,tfdb,Other
vsh_volcanic_b2_gsn,532,0.001194%,vsh,Other
vsh_snowdown_v8_pbfix01,531,0.001192%,vsh,Other
sn_cardophobia,530,0.001190%,sn,Other
trade_bsor_b1,529,0.001187%,trade,Trade and Achievement
tfdb_sandvich_7e,529,0.001187%,tfdb,Other
zf_pen15_v2,529,0.001187%,zf,Other
mvm_hillside_v5,529,0.001187%,mvm,Man vs Machine
jump_spark_rc2,529,0.001187%,jump,Other
dr_bellz_re_2,528,0.001185%,dr,Other
mvm_decoy_endoftheday,528,0.001185%,mvm,Man vs Machine
dr_wooden_v4,528,0.001185%,dr,Other
vsh_rocketyard_b2,527,0.001183%,vsh,Other
mvm_coaltown_special_wave_999,527,0.001183%,mvm,Man vs Machine
pl_downpour_pass_b1,526,0.001181%,pl,Payload
dr_sawmill_finale,526,0.001181%,dr,Other
cp_orange_x3_e3a8,526,0.001181%,cp,Capture Point
pf_novus_b2,524,0.001176%,pf,Other
ph_manorgrounds_a3_fixed,524,0.001176%,ph,Other
vsh_sunset_saloon_pb1,524,0.001176%,vsh,Other
mvm_mannworks_30wave_v60_lvl1,524,0.001176%,mvm,Man vs Machine
ph_draft_b1,524,0.001176%,ph,Other
mvm_ma_ep16b_1,524,0.001176%,mvm,Man vs Machine
cm_idle_awesomebox,522,0.001172%,cm,Other
mvm_bigrock_30waves_easy_v5,522,0.001172%,mvm,Man vs Machine
mvm_downtown_final1_click_advan,522,0.001172%,mvm,Man vs Machine
bigcity_night_njp,522,0.001172%,bigcity,Other
tfdb_open_tunnel_nud,522,0.001172%,tfdb,Other
cp_osiris_a30,521,0.001169%,cp,Capture Point
ph_town_a3,520,0.001167%,ph,Other
dm_station_morozovo_v1,519,0.001165%,dm,Deathmatch
mvm_mannhattan_30wave_v60_lvl1,519,0.001165%,mvm,Man vs Machine
arena_refinery_b30,519,0.001165%,arena,Other
dr_wackyforest_hmx3b,519,0.001165%,dr,Other
vsh_luigis_mansion_v2,519,0.001165%,vsh,Other
pl_upward_event,519,0.001165%,pl,Payload
vsh_dr_may_fixed3,518,0.001163%,vsh,Other
trade_bigcity_dtf2_v2,518,0.001163%,trade,Trade and Achievement
surf_trance_v1,518,0.001163%,surf,Other
cp_orange_train,518,0.001163%,cp,Capture Point
strange_level_hangar,518,0.001163%,strange,Other
dr_pain_facility,518,0.001163%,dr,Other
dr_derelict_prima,517,0.001161%,dr,Other
dr_r60d_final_x2,517,0.001161%,dr,Other
surf_oasis,517,0.001161%,surf,Other
pf_rebound_v6,517,0.001161%,pf,Other
zf_compound_b4,517,0.001161%,zf,Other
jump_mad_rc3,516,0.001158%,jump,Other
cp_fortline_a1b,515,0.001156%,cp,Capture Point
jump_raina,514,0.001154%,jump,Other
surf_blackout_v_2,514,0.001154%,surf,Other
mvm_machine_atks_ep12_sh1,514,0.001154%,mvm,Man vs Machine
tfdb_bk_castleyard_beta,514,0.001154%,tfdb,Other
tfdb_anotherbox,514,0.001154%,tfdb,Other
arena_donald_b4a,514,0.001154%,arena,Other
tfdb_inferno_a9,513,0.001152%,tfdb,Other
ph_007facility_b1,513,0.001152%,ph,Other
tfdb_octagon_a6_fix_w,513,0.001152%,tfdb,Other
mvm_ma_ep16_1,512,0.001149%,mvm,Man vs Machine
plr_yuno_rc1,511,0.001147%,plr,Payload Race
jump_simply_v2,511,0.001147%,jump,Other
jump_arugula_b4,510,0.001145%,jump,Other
dr_orange_vrs3,510,0.001145%,dr,Other
achi_fartu_kruk,510,0.001145%,achi,Other
mvm_ma_ep13_1_normal,509,0.001143%,mvm,Man vs Machine
arena_lighthouse_rc2fix,508,0.001140%,arena,Other
vsh_c17_square,508,0.001140%,vsh,Other
ctf_cruise_b1,507,0.001138%,ctf,Capture the Flag
mario_kart_night_b28,507,0.001138%,mario,Other
vsh_cloud_tower_v1,507,0.001138%,vsh,Other
mvm_processingv1,506,0.001136%,mvm,Man vs Machine
pf_flakes_b2,505,0.001134%,pf,Other
vsh_world_of_pain_v15,505,0.001134%,vsh,Other
cp_orange_x3_stoned,504,0.001131%,cp,Capture Point
trade_forest_beta_v8,502,0.001127%,trade,Trade and Achievement
jump_core_b1,502,0.001127%,jump,Other
vsh_villa_rosa_v2,502,0.001127%,vsh,Other
trade_hyrulecastle,501,0.001125%,trade,Trade and Achievement
ctf_mandrillmaze_b2,501,0.001125%,ctf,Capture the Flag
vsh_another_orange_modify_wc,501,0.001125%,vsh,Other
koth_chapel_a10,501,0.001125%,koth,King of the Hill
sb_ovni_v1_rsfix,501,0.001125%,sb,Other
trade_ocity_b4,501,0.001125%,trade,Trade and Achievement
vsh_minecroft_b2,501,0.001125%,vsh,Other
koth_trenchfoot_b2,501,0.001125%,koth,King of the Hill
mvm_foundry,501,0.001125%,mvm,Man vs Machine
jump_omega,500,0.001122%,jump,Other
pl_auriferous_rc8,499,0.001120%,pl,Payload
szf_labs_remake_b4,499,0.001120%,szf,Other
jump_daylight_a2,499,0.001120%,jump,Other
pl_badwater_rainy,499,0.001120%,pl,Payload
achievement_backstab_12,499,0.001120%,achievement,Trade and Achievement
jump_aigis_a4,499,0.001120%,jump,Other
vsh_garbage_day_pb1_fixed,498,0.001118%,vsh,Other
cp_facingworlds_tbrv7,498,0.001118%,cp,Capture Point
pd_snowville_v1,498,0.001118%,pd,Other
pl_alpen_b2a,498,0.001118%,pl,Payload
surf_x4v_final,497,0.001116%,surf,Other
vsh_lake_b2,497,0.001116%,vsh,Other
dm_duel3_v18,497,0.001116%,dm,Deathmatch
arena_lighthouse_rc1,497,0.001116%,arena,Other
trade_plaza_ox3_b4_1,497,0.001116%,trade,Trade and Achievement
jump_phobos,496,0.001113%,jump,Other
mvm_ma_ep12b1_1,496,0.001113%,mvm,Man vs Machine
pl_warbomb_v4,496,0.001113%,pl,Payload
vsh_mountanbash_v4_d2,496,0.001113%,vsh,Other
mvm_ma_ep9_1_fixed2_normal,496,0.001113%,mvm,Man vs Machine
dr_industrial_sg_v2c_optimized,496,0.001113%,dr,Other
cp_bestinclass_v2_jugfix2,496,0.001113%,cp,Capture Point
trade_saturnvalley,496,0.001113%,trade,Trade and Achievement
tfdb_spacebox_a1,495,0.001111%,tfdb,Other
dr_prison_escape_discff,495,0.001111%,dr,Other
ctf_sylux_oubliette_nomodels,495,0.001111%,ctf,Capture the Flag
tfdb_ring_slag_a2,494,0.001109%,tfdb,Other
cp_snowlodge_b5,494,0.001109%,cp,Capture Point
tfdb_crossing_b1a,493,0.001107%,tfdb,Other
trade_outset_island,493,0.001107%,trade,Trade and Achievement
cp_lushbowl_boomtown,493,0.001107%,cp,Capture Point
koth_autumn_twilight_rc2,492,0.001104%,koth,King of the Hill
cp_reckoner_b3,492,0.001104%,cp,Capture Point
vsh_manncohq_v12,491,0.001102%,vsh,Other
train_madcap,491,0.001102%,train,Other
mvm_downtown_a5,491,0.001102%,mvm,Man vs Machine
mario_kart_2012,491,0.001102%,mario,Other
dm_museum_b8,491,0.001102%,dm,Deathmatch
ud_nacht_der_untoten_mod_v2,490,0.001100%,ud,Other
vsh_dr_foundry_v6,490,0.001100%,vsh,Other
tfdb_haunted_v2,490,0.001100%,tfdb,Other
cp_granary_pro_rc2,489,0.001098%,cp,Capture Point
vsh_rust_remake_v1,489,0.001098%,vsh,Other
big_city,489,0.001098%,big,Other
cp_grotto,488,0.001095%,cp,Capture Point
koth_brickblitz,488,0.001095%,koth,King of the Hill
ctf_raveravine_beta03,488,0.001095%,ctf,Capture the Flag
vsh_mineboi_xmas_v4,488,0.001095%,vsh,Other
pkmn_saffroncity_b3,487,0.001093%,pkmn,Other
surf_chaos_fix,487,0.001093%,surf,Other
jump_tpn_rc3,487,0.001093%,jump,Other
jump_shunix_v2,486,0.001091%,jump,Other
tfdb_rockettoss_slag_a2,486,0.001091%,tfdb,Other
szf_volcanoevac_v7,485,0.001089%,szf,Other
cp_desert_orange_x3,484,0.001086%,cp,Capture Point
jump_dink_b2,484,0.001086%,jump,Other
mvm_ghost_town_special_ghoulish,482,0.001082%,mvm,Man vs Machine
vsh_harvest_v2,482,0.001082%,vsh,Other
tfdb_orbital_a2,482,0.001082%,tfdb,Other
jump_bob_fixed,482,0.001082%,jump,Other
pl_enclosure_rc3a,482,0.001082%,pl,Payload
vsh_pineyard_final_gsn,481,0.001080%,vsh,Other
vsh_warebloom_b3,481,0.001080%,vsh,Other
mvm_bigrock_the_chiefs_attack,481,0.001080%,mvm,Man vs Machine
vsh_west,481,0.001080%,vsh,Other
koth_banter_beta_1,480,0.001077%,koth,King of the Hill
jump_start_b4,480,0.001077%,jump,Other
vsh_calamity_beach_qf,480,0.001077%,vsh,Other
mvm_coaltown_ubup_xmasinvasion,480,0.001077%,mvm,Man vs Machine
mvm_bigrock_bossbattles,480,0.001077%,mvm,Man vs Machine
jump_free_b2,480,0.001077%,jump,Other
tfdb_skibur,479,0.001075%,tfdb,Other
surf_acp,479,0.001075%,surf,Other
fw_medieval_tunnel_v3,478,0.001073%,fw,Other
dr_yaybread,478,0.001073%,dr,Other
koth_snowy_harvest,477,0.001071%,koth,King of the Hill
vsh_manncogym,477,0.001071%,vsh,Other
pl_mineshaft_final_rc5,477,0.001071%,pl,Payload
cp_temple_medieval_rc4,477,0.001071%,cp,Capture Point
vsh_brewery_v2,476,0.001068%,vsh,Other
slender_facility_b3,475,0.001066%,slender,Other
mvm_ma_ep10_1_normal,475,0.001066%,mvm,Man vs Machine
jump_buttered_b2,475,0.001066%,jump,Other
vsh_graveyard_v2,475,0.001066%,vsh,Other
zf_toyfortressnight_v10,474,0.001064%,zf,Other
vsh_orange_arena_ratssaxy,474,0.001064%,vsh,Other
jump_contact,473,0.001062%,jump,Other
gm_coolsnow,472,0.001059%,gm,Other
jump_rush_h,472,0.001059%,jump,Other
ctf_quarry_v2,472,0.001059%,ctf,Capture the Flag
surf_missing_no_fix,471,0.001057%,surf,Other
sniper_field,471,0.001057%,sniper,Other
koth_pantheon_a14,471,0.001057%,koth,King of the Hill
bhop_sandtrap,470,0.001055%,bhop,Other
surf_vegetables,470,0.001055%,surf,Other
surf_happyhands,469,0.001053%,surf,Other
vsh_arena_dam-it_b1,469,0.001053%,vsh,Other
nin_saturnvalley_friendly,468,0.001051%,nin,Other
jump_blables_b2,468,0.001051%,jump,Other
jump_stress_final,468,0.001051%,jump,Other
vsh_nintendo_resort_v4,468,0.001051%,vsh,Other
mvm_bigrock_10wave,468,0.001051%,mvm,Man vs Machine
surf_4head,468,0.001051%,surf,Other
zf_alpine_b4_2_fix,468,0.001051%,zf,Other
ph_watermill_a1,467,0.001048%,ph,Other
mvm_decoy_30wave_v60_lvl3,467,0.001048%,mvm,Man vs Machine
mvm_ghost_town_ponies666,467,0.001048%,mvm,Man vs Machine
mvm_derelict_rc2_survival,466,0.001046%,mvm,Man vs Machine
pl_hydropower_rc4,465,0.001044%,pl,Payload
trade_smsdelfinoplaza_a3,464,0.001042%,trade,Trade and Achievement
ctf_2fort_revamp_b3,464,0.001042%,ctf,Capture the Flag
cp_stoneyridge_rc2,464,0.001042%,cp,Capture Point
mvm_decoy_blufungame,463,0.001039%,mvm,Man vs Machine
mvm_decoy_robotgrind,463,0.001039%,mvm,Man vs Machine
vsh_dr_dlux_fixed_v1,462,0.001037%,vsh,Other
achievement_all_v2,461,0.001035%,achievement,Trade and Achievement
arena_borough,461,0.001035%,arena,Other
surf_sunnyhappylove,461,0.001035%,surf,Other
jump_academy_easy,461,0.001035%,jump,Other
cp_redfort_b3,460,0.001033%,cp,Capture Point
mvm_bigrock_marxman_massacre_v1,460,0.001033%,mvm,Man vs Machine
trade_stadium_a58,460,0.001033%,trade,Trade and Achievement
vsh_heliport_data,459,0.001030%,vsh,Other
jump_ring2_a5,459,0.001030%,jump,Other
dr_timetravel_b4_d,459,0.001030%,dr,Other
surf_spaze,459,0.001030%,surf,Other
jump_detr_v3c,459,0.001030%,jump,Other
pf_keepaway_a2a,458,0.001028%,pf,Other
slender_the_abyss_v3,458,0.001028%,slender,Other
pl_orangebomb_deluxe_v2,458,0.001028%,pl,Payload
koth_sandstone_rc5,458,0.001028%,koth,King of the Hill
jump_diirtyxweezy_a1,458,0.001028%,jump,Other
mvm_ma_ep12b3_1_fixed_easy,457,0.001026%,mvm,Man vs Machine
vsh_outdoors_b2a_gsn,457,0.001026%,vsh,Other
jump_attached_b2,456,0.001024%,jump,Other
vsh_dr_pyramid_a1,456,0.001024%,vsh,Other
vsh_rats_office_a1_sg,456,0.001024%,vsh,Other
koth_harvest_minecraft_s2,454,0.001019%,koth,King of the Hill
jump_claustro_v2,454,0.001019%,jump,Other
ctf_deliverance_b3,453,0.001017%,ctf,Capture the Flag
trade_plaza_quigly_v6_rc9,453,0.001017%,trade,Trade and Achievement
achievement_slideshow_tech,453,0.001017%,achievement,Trade and Achievement
arena_bakscratch_72_2,453,0.001017%,arena,Other
idle_grass_v1,452,0.001015%,idle,Other
ph_lakeside_b3,452,0.001015%,ph,Other
vsh_draft_b1,451,0.001012%,vsh,Other
vsh_island_b2,450,0.001010%,vsh,Other
vsh_yammoe_v4_gsn,449,0.001008%,vsh,Other
mvm_machine_attacks_ep12,449,0.001008%,mvm,Man vs Machine
dr_wooden_fixed_v1,448,0.001006%,dr,Other
arena_wow_v1,448,0.001006%,arena,Other
vsh_seismic_lz_b2,448,0.001006%,vsh,Other
pl_poodoo_v3,448,0.001006%,pl,Payload
vsh_dr_space_v10,447,0.001003%,vsh,Other
ph_cyberpunk_a3,447,0.001003%,ph,Other
vsh_dr_gaytower_v2_fixed,446,0.001001%,vsh,Other
vsh_yammoe_v5,446,0.001001%,vsh,Other
vsh_dunger_a5,446,0.001001%,vsh,Other
dr_egypt_v6fix1,446,0.001001%,dr,Other
surf_aholics_v1,446,0.001001%,surf,Other
jump_volcanic,446,0.001001%,jump,Other
ultiduo_gullywash_b2,446,0.001001%,ultiduo,Other
vsh_redfort_b3,446,0.001001%,vsh,Other
koth_chasm_b1,446,0.001001%,koth,King of the Hill
vsh_jie_cao_x,445,0.000999%,vsh,Other
vsh_big_attic_v2,445,0.000999%,vsh,Other
vsh_castle_siege_halloween,445,0.000999%,vsh,Other
szf_4way_v12,445,0.000999%,szf,Other
tf_sniper_field_a8,445,0.000999%,tf,Other
vsh_farm_a5,445,0.000999%,vsh,Other
cp_dustbowl_rainy,445,0.000999%,cp,Capture Point
surf_prelude_njv,445,0.000999%,surf,Other
surf_avatar_v2,444,0.000997%,surf,Other
mvm_coaltown_30wave_v46_s,444,0.000997%,mvm,Man vs Machine
zenith_dev_v4,444,0.000997%,zenith,Other
koth_desertrushv03,444,0.000997%,koth,King of the Hill
trade_plaza_bot,443,0.000994%,trade,Trade and Achievement
sn_aasnp,443,0.000994%,sn,Other
cp_mudwater_b4,442,0.000992%,cp,Capture Point
tfdb_cwg_gym,442,0.000992%,tfdb,Other
mvm_ma_ep9_1_fixed2_hard,441,0.000990%,mvm,Man vs Machine
ph_woods_a1,441,0.000990%,ph,Other
bhop_island,441,0.000990%,bhop,Other
mvm_ma_ep14_1_fixed_normal,441,0.000990%,mvm,Man vs Machine
zf_mountainhome_b2,440,0.000988%,zf,Other
koth_disneyworld_b1,440,0.000988%,koth,King of the Hill
surf_ny_platinum_b5,439,0.000985%,surf,Other
koth_rucharyv3,439,0.000985%,koth,King of the Hill
mlp_canterlot_a2,439,0.000985%,mlp,Other
trade_duketown_v1,438,0.000983%,trade,Trade and Achievement
vsh_magic_jc_mc2,438,0.000983%,vsh,Other
vsh_rats_a2,438,0.000983%,vsh,Other
cp_haddou,437,0.000981%,cp,Capture Point
vsh_itsthenutshack_v4,437,0.000981%,vsh,Other
dr_orange_beta03,437,0.000981%,dr,Other
surf_tf_thriller_v2_fix,437,0.000981%,surf,Other
zf_cp_gravelpit,437,0.000981%,zf,Other
koth_mineriver_rc1,437,0.000981%,koth,King of the Hill
vsh_snowglobe_e2_pbfix01,436,0.000979%,vsh,Other
vsh_marioland_v6,436,0.000979%,vsh,Other
jump_majoras_a3,436,0.000979%,jump,Other
ctf_turbine_event_b5,436,0.000979%,ctf,Capture the Flag
ba_minecart_v9f_ad,436,0.000979%,ba,Other
jump_phobos_rc1,436,0.000979%,jump,Other
pl_inari_b2,435,0.000976%,pl,Payload
idle_notbad_v1,435,0.000976%,idle,Other
surf_avatar_v2_clean,434,0.000974%,surf,Other
chambers_2a,433,0.000972%,chambers,Other
koth_mineriver_rc3,433,0.000972%,koth,King of the Hill
vsh_seasons_v2,433,0.000972%,vsh,Other
dr_dlux_v9_fix2,433,0.000972%,dr,Other
vsh_trump_valley_v3,432,0.000970%,vsh,Other
arena_biebertower,432,0.000970%,arena,Other
jump_vendetta,431,0.000967%,jump,Other
mvm_coaltownxma_30wave_v60_lvl1,431,0.000967%,mvm,Man vs Machine
trade_hyrule_oot3d_alpha_12,431,0.000967%,trade,Trade and Achievement
vsh_storage_day_final,431,0.000967%,vsh,Other
vsh_spotline_r1,430,0.000965%,vsh,Other
cp_cardinal_b2,430,0.000965%,cp,Capture Point
trade_goldenrodcity_b3,430,0.000965%,trade,Trade and Achievement
vsh_dunger_b1_gsn,430,0.000965%,vsh,Other
mvm_saddle_s14,429,0.000963%,mvm,Man vs Machine
arena_grid_walls,429,0.000963%,arena,Other
vsh_canyon_raid_b5,428,0.000961%,vsh,Other
jump_everest_a3,427,0.000958%,jump,Other
mvm_ma_ep12b1_1_fixed_easy,427,0.000958%,mvm,Man vs Machine
surf_4ways_b1_kd,427,0.000958%,surf,Other
arena_holidaytower,427,0.000958%,arena,Other
mvm_skullcove,426,0.000956%,mvm,Man vs Machine
zf_cinema_a2,426,0.000956%,zf,Other
2fortsniper_tf2_v2,425,0.000954%,2fortsniper,Other
jump_noob_a1a,425,0.000954%,jump,Other
jump_style,425,0.000954%,jump,Other
cp_indulge,425,0.000954%,cp,Capture Point
jump_excavation_final,425,0.000954%,jump,Other
vsh_vikings_final_v3,423,0.000950%,vsh,Other
dr_minerush_finalv5,423,0.000950%,dr,Other
mvm_machine_attacks_ep3_sh1,422,0.000947%,mvm,Man vs Machine
koth_tomb_b3,422,0.000947%,koth,King of the Hill
jump_aviator,422,0.000947%,jump,Other
slender_forgotten_tomb_b2a,421,0.000945%,slender,Other
trade_ocity_b5,421,0.000945%,trade,Trade and Achievement
dr_factory_redux_final,421,0.000945%,dr,Other
jump_4demo_fixed5,421,0.000945%,jump,Other
surf_spacedout2_tf2,420,0.000943%,surf,Other
surf_2big2surf_b19,420,0.000943%,surf,Other
vsh_mario_kart_v4,419,0.000941%,vsh,Other
dr_forice_b6,419,0.000941%,dr,Other
ph_campsite_a5,418,0.000938%,ph,Other
szf_normandy_v5,418,0.000938%,szf,Other
trade_lunarpumpkin_v024,418,0.000938%,trade,Trade and Achievement
tfdb_orenge_blu_red_v2,418,0.000938%,tfdb,Other
koth_mariokart2_b2,417,0.000936%,koth,King of the Hill
jump_acepogo,417,0.000936%,jump,Other
tfdb_trainfalls_v5,417,0.000936%,tfdb,Other
dr_xtremeway_tank,417,0.000936%,dr,Other
tfdb_montreal_v3,417,0.000936%,tfdb,Other
zf_labs_remake_b4,416,0.000934%,zf,Other
koth_yogurt_a4,416,0.000934%,koth,King of the Hill
tfdb_box_night_a5_gsn,416,0.000934%,tfdb,Other
cp_follower,416,0.000934%,cp,Capture Point
szf_cityhunter_b3_jugfix2,415,0.000932%,szf,Other
dr_psykopat_zmbr2,415,0.000932%,dr,Other
koth_traverse_a5,415,0.000932%,koth,King of the Hill
dr_area_51_a2,415,0.000932%,dr,Other
mvm_bigrock_30wave_v60_lvl1,415,0.000932%,mvm,Man vs Machine
zf_overlord_b1,415,0.000932%,zf,Other
cp_orange_halloween_a7,415,0.000932%,cp,Capture Point
ctf_theskatingrink_b3,415,0.000932%,ctf,Capture the Flag
arena_oasis,415,0.000932%,arena,Other
koth_sky_v3,414,0.000929%,koth,King of the Hill
mvm_rottenburg_30_waves_v46_eas,414,0.000929%,mvm,Man vs Machine
bonktropolis_v8_alphav1,413,0.000927%,bonktropolis,Other
vsh_snowycomplex_day,413,0.000927%,vsh,Other
mario_kart_deluxe_v2,413,0.000927%,mario,Other
mvm_decoy_uberup_easy,413,0.000927%,mvm,Man vs Machine
tfdb_well_beta2,413,0.000927%,tfdb,Other
jump_lion_a6,412,0.000925%,jump,Other
surf_thrill3r_tf2,412,0.000925%,surf,Other
aim_ak-colt_arg_fawosfix,412,0.000925%,aim,Other
jump_sharp_b3,412,0.000925%,jump,Other
vsh_yikomake_beta2,412,0.000925%,vsh,Other
mvm_rottenburg_ubup_bosses,412,0.000925%,mvm,Man vs Machine
trade_edventures_v1,412,0.000925%,trade,Trade and Achievement
trade_rafflesmash_v3_0,411,0.000923%,trade,Trade and Achievement
surf_dm_japan_v2_b8,411,0.000923%,surf,Other
koth_roughshod_rc2,411,0.000923%,koth,King of the Hill
vsh_jie_cao_snow,411,0.000923%,vsh,Other
pl_vesper_b4,411,0.000923%,pl,Payload
tr_walkway_rc2 (1),411,0.000923%,tr,Other
vsh_desert_post_b1,410,0.000920%,vsh,Other
surf_boost_for_thirty_remix,410,0.000920%,surf,Other
arena_wilkes_b1,410,0.000920%,arena,Other
vsh_nippletwister_af_fix,410,0.000920%,vsh,Other
cp_hybro_b03,409,0.000918%,cp,Capture Point
jump_bunker_final,409,0.000918%,jump,Other
jump_benroads2_a3,409,0.000918%,jump,Other
vsh_deathrun_office_final,408,0.000916%,vsh,Other
koth_mario_kart_v1b_event,408,0.000916%,koth,King of the Hill
jump_butter,408,0.000916%,jump,Other
pl_waste_v2,407,0.000914%,pl,Payload
pl_subzero_a1,407,0.000914%,pl,Payload
zf_topsecret_v2,407,0.000914%,zf,Other
arena_offblast_final_fix,407,0.000914%,arena,Other
sniper_brawl_v3,407,0.000914%,sniper,Other
dm_mariokart3_v1b,407,0.000914%,dm,Deathmatch
trade_alley_pro_xmas,406,0.000911%,trade,Trade and Achievement
mvm_ma_ep12b2_1,406,0.000911%,mvm,Man vs Machine
mvm_killing_fortress2,406,0.000911%,mvm,Man vs Machine
ctf_biomass_rc1,406,0.000911%,ctf,Capture the Flag
szf_hydraulic_v2_jugfix4,404,0.000907%,szf,Other
cp_orange_x3_minecraft,404,0.000907%,cp,Capture Point
mvm_decoy_ubup_xmasinvasion,404,0.000907%,mvm,Man vs Machine
trade_resort_v12b,403,0.000905%,trade,Trade and Achievement
jump_composite,403,0.000905%,jump,Other
vsh_crevice_marioland_v6,403,0.000905%,vsh,Other
trade_minecraft_hans_v71b,402,0.000902%,trade,Trade and Achievement
dr_undertale_v1d,402,0.000902%,dr,Other
slender_cellars_b4a_h_gsn,402,0.000902%,slender,Other
vsh_dropdown_b1_fix,401,0.000900%,vsh,Other
cp_orange_tower,401,0.000900%,cp,Capture Point
cp_orange_tower_tbrv4,401,0.000900%,cp,Capture Point
achievement_idle_3undercover,401,0.000900%,achievement,Trade and Achievement
ctf_mandrillmaze_repainted_v1,401,0.000900%,ctf,Capture the Flag
surf_lore,401,0.000900%,surf,Other
vsh_mineboi_v9,400,0.000898%,vsh,Other
mvm_machine_attacks_ep16,400,0.000898%,mvm,Man vs Machine
surf_cityscape,399,0.000896%,surf,Other
cp_orange_x3_hampus_nologo,399,0.000896%,cp,Capture Point
mvm_storage_a2_normal,399,0.000896%,mvm,Man vs Machine
surf_fast_fix,398,0.000893%,surf,Other
jump_p,398,0.000893%,jump,Other
tr_juggle,398,0.000893%,tr,Other
jump_bouncehop,398,0.000893%,jump,Other
vsh_castle_siege_dark,397,0.000891%,vsh,Other
vsh_naturecenter_reworked_b1,397,0.000891%,vsh,Other
tfdb_cubicon,396,0.000889%,tfdb,Other
cp_orange_x_tbr_v6,396,0.000889%,cp,Capture Point
vsh_blueberries_lz_b1,396,0.000889%,vsh,Other
mvm_ma_ep14_1_fixed_easy,396,0.000889%,mvm,Man vs Machine
vsh_wintermountainsv3,396,0.000889%,vsh,Other
surf_simpsons_source,395,0.000887%,surf,Other
vsh_horyuji_b12,395,0.000887%,vsh,Other
mvm_decoy_uu99_bosses,395,0.000887%,mvm,Man vs Machine
ph_ferrous_rc2,395,0.000887%,ph,Other
dr_dust_b3_fixed,394,0.000884%,dr,Other
tfdb_dream_island_b2,394,0.000884%,tfdb,Other
ph_spooky_switcheroo_rc2e,394,0.000884%,ph,Other
surf_kitsune_fix,394,0.000884%,surf,Other
arena_metal_gear_solid,393,0.000882%,arena,Other
mvm_destruct,393,0.000882%,mvm,Man vs Machine
trade_power_core_b8,393,0.000882%,trade,Trade and Achievement
tfdb_partyisland_v3,393,0.000882%,tfdb,Other
trade_ocity_b7,393,0.000882%,trade,Trade and Achievement
dr_mysterious_underground_final,392,0.000880%,dr,Other
dr_safety_first_final1,392,0.000880%,dr,Other
vsh_beach_utopia_v1,391,0.000878%,vsh,Other
jump_elysium_fn,391,0.000878%,jump,Other
ph_harvest_event_a1,391,0.000878%,ph,Other
mvm_coaltown_30wave_v60_lvl2,391,0.000878%,mvm,Man vs Machine
dr_4halls_v5,390,0.000875%,dr,Other
db_spire_v1,390,0.000875%,db,Other
vsh_canyon_raid_final,390,0.000875%,vsh,Other
pl_enclosure_rc4,390,0.000875%,pl,Payload
vsh_pauling_v4,390,0.000875%,vsh,Other
vsh_magic_jc_cptoy,389,0.000873%,vsh,Other
zf_sky_temple,389,0.000873%,zf,Other
trade_power_core_b6,388,0.000871%,trade,Trade and Achievement
cp_orange_x3_floserver_v5,388,0.000871%,cp,Capture Point
arena_kalabasha_b3,388,0.000871%,arena,Other
arena_namicott_b7a,387,0.000869%,arena,Other
idle_sentryeer_v2,387,0.000869%,idle,Other
mvm_ghost_town_ponies1,387,0.000869%,mvm,Man vs Machine
arena_pentegonia_a4,387,0.000869%,arena,Other
vsh_complex_d_v9a,386,0.000866%,vsh,Other
arena_block_fort_v1,386,0.000866%,arena,Other
koth_viaduct_pro7,386,0.000866%,koth,King of the Hill
balloon_race,385,0.000864%,balloon,Other
vsh_mitra_map,385,0.000864%,vsh,Other
vsh_assault_r3,384,0.000862%,vsh,Other
mvm_mannworks_30_waves_v46_hard,384,0.000862%,mvm,Man vs Machine
jump_resi_b2,384,0.000862%,jump,Other
vsh_flatlands_b1,384,0.000862%,vsh,Other
koth_trenchfoot_ab1,384,0.000862%,koth,King of the Hill
pl_victoryroad_b1a,384,0.000862%,pl,Payload
vsh_italy_ver1,384,0.000862%,vsh,Other
dr_dungeon_beta_fix_v2,383,0.000860%,dr,Other
surf_pox,383,0.000860%,surf,Other
vsh_granary_lz_b2,382,0.000857%,vsh,Other
vsh_dust_2,382,0.000857%,vsh,Other
mvm_coaltown_30waves_hard_v5,381,0.000855%,mvm,Man vs Machine
vsh_cobblecastle_a1,381,0.000855%,vsh,Other
sniper_poolday_slv3,381,0.000855%,sniper,Other
surf_glass9,381,0.000855%,surf,Other
jump_silly_fin,381,0.000855%,jump,Other
ph_suijin,381,0.000855%,ph,Other
vsh_siyazhua_mini,381,0.000855%,vsh,Other
jump_ablation_b3,381,0.000855%,jump,Other
mvm_customwaves_test,381,0.000855%,mvm,Man vs Machine
vsh_dr_forest_b7_fix2,380,0.000853%,vsh,Other
cp_helmsdeep_v1,380,0.000853%,cp,Capture Point
surf_lt_unicorn,379,0.000851%,surf,Other
jump_propel_fixed_v2,379,0.000851%,jump,Other
pl_citadel_b37,379,0.000851%,pl,Payload
surf_christmas_fix,379,0.000851%,surf,Other
mlp_dj_pon3s_club_safev2,379,0.000851%,mlp,Other
pf_redux_b4,379,0.000851%,pf,Other
mvm_coaltown_30_waves_v46_norma,379,0.000851%,mvm,Man vs Machine
mvm_bigrock_event_nightmare,378,0.000848%,mvm,Man vs Machine
koth_warmfront_a11,378,0.000848%,koth,King of the Hill
jump_facility,378,0.000848%,jump,Other
koth_pro_viaduct_rc4,378,0.000848%,koth,King of the Hill
mvm_wharf_s12,378,0.000848%,mvm,Man vs Machine
mvm_underworld_rc2,377,0.000846%,mvm,Man vs Machine
tfdb_chariot_a7,377,0.000846%,tfdb,Other
sb_2fort_b3_ig,377,0.000846%,sb,Other
surf_sinsane_ez,376,0.000844%,surf,Other
bhop_aux_a9,376,0.000844%,bhop,Other
jump_sinister_final_ver2,376,0.000844%,jump,Other
vsh_dunger_b1,376,0.000844%,vsh,Other
vsh_rocktop_a8,375,0.000842%,vsh,Other
mvm_airtest,375,0.000842%,mvm,Man vs Machine
fw_forts_a2,375,0.000842%,fw,Other
arena_turbine_fixed,375,0.000842%,arena,Other
vsh_cloudy_precipice_v3,374,0.000840%,vsh,Other
vsh_enclave_b06,374,0.000840%,vsh,Other
jump_rapture,374,0.000840%,jump,Other
zf_volcanoevac_v7_sxh,374,0.000840%,zf,Other
trade_stockmarket_beta_v8,374,0.000840%,trade,Trade and Achievement
pl_great_heights_b3,373,0.000837%,pl,Payload
tfdb_electro_cube_a2,373,0.000837%,tfdb,Other
slender_steel_b3,373,0.000837%,slender,Other
jump_gr8_wite_final,373,0.000837%,jump,Other
trade_alley_pro,373,0.000837%,trade,Trade and Achievement
ph_clocktown_v7,372,0.000835%,ph,Other
surf_sandman,372,0.000835%,surf,Other
surf_matrix_regress,372,0.000835%,surf,Other
slender_asylum_v7_fix_e,372,0.000835%,slender,Other
dm_hearth_warmin_eve,372,0.000835%,dm,Deathmatch
mvm_ghost_town_30_waves,372,0.000835%,mvm,Man vs Machine
vsh_dongconsumer_v2,371,0.000833%,vsh,Other
mvm_ma_ep15_1_easy,371,0.000833%,mvm,Man vs Machine
jump_ziggurat_b3,371,0.000833%,jump,Other
tfdb_orangebox_b3,371,0.000833%,tfdb,Other
surf_derpis_clean_combat_fix,370,0.000831%,surf,Other
pl_donkeykong_final,370,0.000831%,pl,Payload
zf_hotel_rm3b_ig,370,0.000831%,zf,Other
fw_3cp_a1,369,0.000828%,fw,Other
jump_knight_final,369,0.000828%,jump,Other
pl_beerbowl_b4,369,0.000828%,pl,Payload
vsh_dr_asylum_final,369,0.000828%,vsh,Other
zf_tower_cp_b2,369,0.000828%,zf,Other
tfdb_platform_intox,368,0.000826%,tfdb,Other
surf_style_final_v2,368,0.000826%,surf,Other
koth_quarry_b6,368,0.000826%,koth,King of the Hill
dr_belaul_a3,368,0.000826%,dr,Other
surf_akai_final,368,0.000826%,surf,Other
vsh_2b_map_v3_wc,368,0.000826%,vsh,Other
pass_orange_rc1,367,0.000824%,pass,Other
trade_plaza_sg_a7_t1,367,0.000824%,trade,Trade and Achievement
slender_two_fort_b2,367,0.000824%,slender,Other
vsh_dr_runoff_b3,367,0.000824%,vsh,Other
plr_valentine_72_b1,367,0.000824%,plr,Payload Race
achievement_idle_skbox_v17,367,0.000824%,achievement,Trade and Achievement
cp_orange_x3_summer,367,0.000824%,cp,Capture Point
mvm_decoy_30_waves_remastered_n,366,0.000822%,mvm,Man vs Machine
vsh_winter_ridge_b1,366,0.000822%,vsh,Other
koth_megaman6_b5,366,0.000822%,koth,King of the Hill
dr_divinity_hmxfix2,365,0.000819%,dr,Other
mvm_mountain_b3,365,0.000819%,mvm,Man vs Machine
jump_fizzydrink_a2,365,0.000819%,jump,Other
vsh_muscevet,365,0.000819%,vsh,Other
cp_cow_a3,364,0.000817%,cp,Capture Point
sb_winc_b1,364,0.000817%,sb,Other
tfdb_vent_a3,364,0.000817%,tfdb,Other
mvm_mannhattan_storymode2,364,0.000817%,mvm,Man vs Machine
jump_yucca,363,0.000815%,jump,Other
achievement_proud_to_idle_v3,363,0.000815%,achievement,Trade and Achievement
bhop_hopi_noproblem_v1,362,0.000813%,bhop,Other
ba_space_jail,362,0.000813%,ba,Other
sb_islands_b2,361,0.000810%,sb,Other
ctf_arenagate_b4,361,0.000810%,ctf,Capture the Flag
jump_sick,361,0.000810%,jump,Other
arena_plankfest,361,0.000810%,arena,Other
idle_doctown_a7_4,360,0.000808%,idle,Other
vsh_polar_final,360,0.000808%,vsh,Other
mvm_thedust_b3_advanced2,360,0.000808%,mvm,Man vs Machine
zf_space_mission,360,0.000808%,zf,Other
star_destroyer,359,0.000806%,star,Other
surf_1930s,359,0.000806%,surf,Other
vsh_skyhigh_resort_b5_w1,359,0.000806%,vsh,Other
surf_lullaby,359,0.000806%,surf,Other
vsh_teul_v10,359,0.000806%,vsh,Other
cp_cabrakan_rc1,359,0.000806%,cp,Capture Point
bhop_bananas,359,0.000806%,bhop,Other
mvm_rottenburg_9wave_madness,359,0.000806%,mvm,Man vs Machine
vsh_militarymoon_depressao_beta,359,0.000806%,vsh,Other
ph_devils_canyon_a1_fixed,358,0.000804%,ph,Other
tfdb_hotnuke_b1_gsn,358,0.000804%,tfdb,Other
dr_gaytower_v3,358,0.000804%,dr,Other
mvm_coaltownxma_30wave_v60_lvl3,357,0.000801%,mvm,Man vs Machine
bhop_aztec_tf2,357,0.000801%,bhop,Other
bhop_legion,357,0.000801%,bhop,Other
surf_graphia,357,0.000801%,surf,Other
mvm_mannhattan_bothteams,357,0.000801%,mvm,Man vs Machine
jump_aten_test,356,0.000799%,jump,Other
jump_drexen2,356,0.000799%,jump,Other
vsh_kourindou_b3,356,0.000799%,vsh,Other
mvm_coaltown_30waves_normal_v5,356,0.000799%,mvm,Man vs Machine
ctf_extraction_a5,355,0.000797%,ctf,Capture the Flag
jump_banane,354,0.000795%,jump,Other
surf_air_arena_v4_night,353,0.000792%,surf,Other
cp_punts_v1b,353,0.000792%,cp,Capture Point
jump_yona_b2,353,0.000792%,jump,Other
arena_railyard_a5,352,0.000790%,arena,Other
vsh_waterbasin_b2,352,0.000790%,vsh,Other
tfdb_bm_long,351,0.000788%,tfdb,Other
tfdb_troper_a2,351,0.000788%,tfdb,Other
vsh_partyisland_data,350,0.000786%,vsh,Other
plr_highwind_a5,350,0.000786%,plr,Payload Race
cp_orange_citadel_final_v2,350,0.000786%,cp,Capture Point
vsh_complex_d_v10b20,350,0.000786%,vsh,Other
vsh_dr_constructionland_night3,350,0.000786%,vsh,Other
trade_koganecity_b1c,350,0.000786%,trade,Trade and Achievement
tfdb_hotnuke_intox,348,0.000781%,tfdb,Other
zf_chillchain_b1,348,0.000781%,zf,Other
two_road,348,0.000781%,two,Other
tfdb_redcourt_intox_giga_v1,348,0.000781%,tfdb,Other
mvm_oilrig_rc3_uberupgrades,348,0.000781%,mvm,Man vs Machine
szf_mandrillmaze_v1_1_jugfix2,348,0.000781%,szf,Other
tfdb_pit_of_darkness_a3,348,0.000781%,tfdb,Other
koth_mars,348,0.000781%,koth,King of the Hill
jump_academy_easy_b,347,0.000779%,jump,Other
trade_rafflesmash_v2_3,347,0.000779%,trade,Trade and Achievement
vsh_dustbowlwarehouse,347,0.000779%,vsh,Other
mvm_coaltown_30wave_v60_lvl1,347,0.000779%,mvm,Man vs Machine
mvm_downtown_final1_expert,347,0.000779%,mvm,Man vs Machine
surf_badlands_v2,347,0.000779%,surf,Other
vsh_crevice_rsfix,346,0.000777%,vsh,Other
jump_hotcoffee_b1,346,0.000777%,jump,Other
mvm_bigrock_300%win,345,0.000774%,mvm,Man vs Machine
de_dust2,345,0.000774%,de,Other
mvm_overlord_b3_rus,345,0.000774%,mvm,Man vs Machine
mvm_bigrock_ubup_bosses,345,0.000774%,mvm,Man vs Machine
arena_craftland_v1a,344,0.000772%,arena,Other
surf_agrumes,344,0.000772%,surf,Other
vsh_oddwater,344,0.000772%,vsh,Other
vsh_magic_wc_fuckrob_v1,344,0.000772%,vsh,Other
cp_orange_citadel_tbr2,344,0.000772%,cp,Capture Point
mvm_mannhattan_15wave,344,0.000772%,mvm,Man vs Machine
arena_stockyard,344,0.000772%,arena,Other
cp_croissant_rc6,344,0.000772%,cp,Capture Point
mpl_losthorizon_b10,343,0.000770%,mpl,Other
mvm_intercept_a11,343,0.000770%,mvm,Man vs Machine
koth_winter_ridge_b2,343,0.000770%,koth,King of the Hill
zm_castle_siege,343,0.000770%,zm,Other
jump_benroads_a5,342,0.000768%,jump,Other
pl_goldheist_canyon_rc5h,342,0.000768%,pl,Payload
vsh_minedepressao_reborn_beta_3,342,0.000768%,vsh,Other
surf_rebel_redo_v2,341,0.000765%,surf,Other
ctf_turbine_event_b7,341,0.000765%,ctf,Capture the Flag
koth_shirouma_medieval_b1,341,0.000765%,koth,King of the Hill
mvm_adventure_of_30wave_ep1,341,0.000765%,mvm,Man vs Machine
pl_rebirth_b1,341,0.000765%,pl,Payload
surf_lt_omnific_fix,340,0.000763%,surf,Other
jump_karelia_b1,340,0.000763%,jump,Other
zf_labs_ext_5b,340,0.000763%,zf,Other
surf_fusion_final,340,0.000763%,surf,Other
vsh_warebloom_nintendo,340,0.000763%,vsh,Other
surf_twilight_rc1,340,0.000763%,surf,Other
vsh_misuse_mann_1th_v1,340,0.000763%,vsh,Other
ph_haul_a1c,339,0.000761%,ph,Other
vsh_arena_draft_b2,339,0.000761%,vsh,Other
ph_trainstation_final,339,0.000761%,ph,Other
koth_jankyard_b2,339,0.000761%,koth,King of the Hill
mvm_mannhattan_ubup_bosses,338,0.000759%,mvm,Man vs Machine
vsh_spotline_final,337,0.000756%,vsh,Other
cp_orange_basement,337,0.000756%,cp,Capture Point
slender_steel_b5_demonhamster,337,0.000756%,slender,Other
surf_rookie,337,0.000756%,surf,Other
tfdb_justdoit_b2,337,0.000756%,tfdb,Other
fw_volcano_hideout_v1,337,0.000756%,fw,Other
surf_666,337,0.000756%,surf,Other
ph_stormy_feud_b3,336,0.000754%,ph,Other
vsh_magic_jc_gost_co_v5,336,0.000754%,vsh,Other
trade_piratewars,336,0.000754%,trade,Trade and Achievement
vsh_swamp_outpost_b3a,336,0.000754%,vsh,Other
dr_dordo,336,0.000754%,dr,Other
dr_newporkcity_v4,336,0.000754%,dr,Other
tr_juggle_final,336,0.000754%,tr,Other
koth_leveled_v1,336,0.000754%,koth,King of the Hill
bhop_pologos,334,0.000750%,bhop,Other
surf_dynasty,334,0.000750%,surf,Other
vsh_stream_platform_tex,333,0.000747%,vsh,Other
surf_overgrowth,333,0.000747%,surf,Other
surf_ny_exploder_prime,333,0.000747%,surf,Other
vsh_swamp_outpost_b4a_d,333,0.000747%,vsh,Other
koth_orange_dwngrd,333,0.000747%,koth,King of the Hill
dr_dev_v2_1,333,0.000747%,dr,Other
trade_casino,333,0.000747%,trade,Trade and Achievement
mvm_decoy_survival_objlesseasy,333,0.000747%,mvm,Man vs Machine
jump_duey_v2,332,0.000745%,jump,Other
mvm_area_52_rc3_advanced2,332,0.000745%,mvm,Man vs Machine
idle_map_18,332,0.000745%,idle,Other
dr_bank_v4a,332,0.000745%,dr,Other
cp_orange_x3-4b,332,0.000745%,cp,Capture Point
trade_plaza_stoph_b2,331,0.000743%,trade,Trade and Achievement
vsh_wooden_island_b2,331,0.000743%,vsh,Other
pl_dbheights_b5,331,0.000743%,pl,Payload
surf_mesa_mine,331,0.000743%,surf,Other
surf_fast,330,0.000741%,surf,Other
arena_farm_v3,330,0.000741%,arena,Other
mvm_downtown_final1_3_click_adv,330,0.000741%,mvm,Man vs Machine
slender_lockers_b5a_h_gsn,330,0.000741%,slender,Other
jump_claustro_final,330,0.000741%,jump,Other
cp_glassworks_rc1,330,0.000741%,cp,Capture Point
koth_waste,329,0.000739%,koth,King of the Hill
mvm_coaltown_the_darkest_nightm,329,0.000739%,mvm,Man vs Machine
vsh_stream_platform_v2,329,0.000739%,vsh,Other
trade_minecraft_village_f21,328,0.000736%,trade,Trade and Achievement
mlp_hearths_warming_cabinv2,328,0.000736%,mlp,Other
koth_wubwubwub,328,0.000736%,koth,King of the Hill
arena_blue_resort_v1,328,0.000736%,arena,Other
mvm_decoy_ubup_ironmen,328,0.000736%,mvm,Man vs Machine
zf_woodland_v1a_intox,328,0.000736%,zf,Other
vsh_rockhill,328,0.000736%,vsh,Other
jump_up,327,0.000734%,jump,Other
sm64_star_road_b1,327,0.000734%,sm64,Other
jump_ofcourse_redo_final,327,0.000734%,jump,Other
koth_sherman_rc1,327,0.000734%,koth,King of the Hill
vsh_pool_lz_b2_fix,326,0.000732%,vsh,Other
koth_forge_b3a,326,0.000732%,koth,King of the Hill
surf_elites_v1,325,0.000730%,surf,Other
sb_sundust_v2_2,325,0.000730%,sb,Other
jump_fisyx,325,0.000730%,jump,Other
tfdb_geometry_a2,325,0.000730%,tfdb,Other
mvm_mannhattan_metromayhem,325,0.000730%,mvm,Man vs Machine
vsh_dr_texture_extreme_v4,324,0.000727%,vsh,Other
mvm_yucatan_rc4,324,0.000727%,mvm,Man vs Machine
cp_zinkenite_b3a,324,0.000727%,cp,Capture Point
vsh_dr_forest_b7,324,0.000727%,vsh,Other
jump_finite_final,324,0.000727%,jump,Other
jump_hobo2_fixed,324,0.000727%,jump,Other
trade_rdg_alpha_b22,323,0.000725%,trade,Trade and Achievement
mvm_desert_fort_lite,323,0.000725%,mvm,Man vs Machine
ph_trainstation_fix,323,0.000725%,ph,Other
mvm_mannhattan_aodrp,322,0.000723%,mvm,Man vs Machine
mvm_sandstone_s23_easy,322,0.000723%,mvm,Man vs Machine
ph_kokiri_a4,322,0.000723%,ph,Other
mge_training_v7,322,0.000723%,mge,Other
zf_panic_mansion_cp,322,0.000723%,zf,Other
achievement_idlefight_space,322,0.000723%,achievement,Trade and Achievement
koth_garbage_day,322,0.000723%,koth,King of the Hill
bhop_rysik,322,0.000723%,bhop,Other
tfdb_catland_fix,321,0.000721%,tfdb,Other
sb_vapor_bros_beta_v3_musfix,321,0.000721%,sb,Other
surf_boring,320,0.000718%,surf,Other
vsh_grid_a3,320,0.000718%,vsh,Other
vsh_lan-party,320,0.000718%,vsh,Other
jump_gaylord,320,0.000718%,jump,Other
jump_cube_b4,320,0.000718%,jump,Other
jump_ice_v4,320,0.000718%,jump,Other
mvm_decoy_mechanical_devastatio,320,0.000718%,mvm,Man vs Machine
cp_warmfrost_rc1,319,0.000716%,cp,Capture Point
vsh_arcticbase_b2,319,0.000716%,vsh,Other
cp_orange_super_fort_beta2,319,0.000716%,cp,Capture Point
trade_stockmarket_final,319,0.000716%,trade,Trade and Achievement
jump_pdidey,319,0.000716%,jump,Other
jump_jorgelayja_tmps,319,0.000716%,jump,Other
dr_hotdesert_b8,319,0.000716%,dr,Other
szf_port_v3,319,0.000716%,szf,Other
trade_ngs_evening_v01,319,0.000716%,trade,Trade and Achievement
koth_visual_b2,318,0.000714%,koth,King of the Hill
pl_humidity_b3,318,0.000714%,pl,Payload
ba_jail_snowballsv_skial_a1,318,0.000714%,ba,Other
surf_ctf_velocity_tf2_v1,318,0.000714%,surf,Other
fw_ravine_2_a3,318,0.000714%,fw,Other
surf_sundown_,318,0.000714%,surf,Other
cp_clockwork_b1,318,0.000714%,cp,Capture Point
vsh_tundra_b3_fixed,317,0.000712%,vsh,Other
mvm_hillside_v7_advanced,317,0.000712%,mvm,Man vs Machine
jump_who,317,0.000712%,jump,Other
mvm_decoy_cash,317,0.000712%,mvm,Man vs Machine
koth_cannery_a6,317,0.000712%,koth,King of the Hill
vsh_pathsandscares_v2,317,0.000712%,vsh,Other
ctf_turbine2_a6,317,0.000712%,ctf,Capture the Flag
jump_basics,317,0.000712%,jump,Other
vsh_rockhill_b2,316,0.000709%,vsh,Other
pl_zig_z2a,316,0.000709%,pl,Payload
jump_termywermy_beta4,316,0.000709%,jump,Other
surf_codeprotected_v2,316,0.000709%,surf,Other
vsh_weaponsdepot_redux_b4,316,0.000709%,vsh,Other
vsh_fuiji_gsn,316,0.000709%,vsh,Other
jump_noskillrequired_a2,316,0.000709%,jump,Other
vsh_dr_winterhill_beta2_fix,316,0.000709%,vsh,Other
arena_volcano_b4teaser,315,0.000707%,arena,Other
ph_graveyard_v4,315,0.000707%,ph,Other
tfdb_paragon_a3,315,0.000707%,tfdb,Other
slender_sewer_b2,315,0.000707%,slender,Other
vsh_jc_wc_zombie_final,314,0.000705%,vsh,Other
tfdbr_crossing_b1a,314,0.000705%,tfdbr,Other
vsh_magic_jc_factory_v1,314,0.000705%,vsh,Other
dm_duel_naithon_v11,314,0.000705%,dm,Deathmatch
zm_flame_town_fin,314,0.000705%,zm,Other
tfdb_swagrocket_gsn,313,0.000703%,tfdb,Other
zf_ranch_v5,313,0.000703%,zf,Other
trade_spookyville_v6,313,0.000703%,trade,Trade and Achievement
tfdb_exiles_warehouse_a3,313,0.000703%,tfdb,Other
koth_087b_v2,313,0.000703%,koth,King of the Hill
freestyle_chromatic,312,0.000700%,freestyle,Other
arena_water_fort_a5,312,0.000700%,arena,Other
sb_nitefight_b2,312,0.000700%,sb,Other
dm_cloudsdale_b7,312,0.000700%,dm,Deathmatch
vsh_area_gladius,312,0.000700%,vsh,Other
vsh_dr_dlux_tf2_v4,312,0.000700%,vsh,Other
surf_twilight_njv,312,0.000700%,surf,Other
trade_bigcity_final,311,0.000698%,trade,Trade and Achievement
dr_baby_pirate_adventure,311,0.000698%,dr,Other
mvm_mannhattan_advanced_malicio,311,0.000698%,mvm,Man vs Machine
mvm_rottenburg_wrath_of_the_kin,311,0.000698%,mvm,Man vs Machine
dr_horror_school_v3_d,311,0.000698%,dr,Other
jump_ofc_v2,311,0.000698%,jump,Other
vsh_2fortdesk_v7_2,310,0.000696%,vsh,Other
cp_verde_b1,310,0.000696%,cp,Capture Point
vsh_killbox_hos_tf2_v3,310,0.000696%,vsh,Other
pl_dynamite_redux_b5,310,0.000696%,pl,Payload
bhop_suddenfire,309,0.000694%,bhop,Other
cp_lazytown,309,0.000694%,cp,Capture Point
koth_orange_x_2015_b5,309,0.000694%,koth,King of the Hill
db_ring_b4,309,0.000694%,db,Other
pl_cave_b6,309,0.000694%,pl,Payload
tfdb_pit_a2,309,0.000694%,tfdb,Other
strange_level_convoy_v1,309,0.000694%,strange,Other
surf_ori_tf,309,0.000694%,surf,Other
surf_fury_v6_clean,308,0.000691%,surf,Other
cp_forteresse_oreon_b1,308,0.000691%,cp,Capture Point
zf_floatingcity_v3a_ig,308,0.000691%,zf,Other
arena_disneyworld_spooky_v1,308,0.000691%,arena,Other
mvm_memorial_b1,307,0.000689%,mvm,Man vs Machine
mvm_sewer_invasion_event_b7_eul,307,0.000689%,mvm,Man vs Machine
arena_harvest_event,307,0.000689%,arena,Other
trade_rawr_vl_2,307,0.000689%,trade,Trade and Achievement
trade_industry_v3f,307,0.000689%,trade,Trade and Achievement
dr_pyramid_a1,306,0.000687%,dr,Other
trade_justplay_b1,306,0.000687%,trade,Trade and Achievement
jump_sor_a4,306,0.000687%,jump,Other
boss_b1_remake_v3,306,0.000687%,boss,Other
ph_haunt_b6,306,0.000687%,ph,Other
mvm_rottenburg_unending_bloodba,306,0.000687%,mvm,Man vs Machine
jump_grimace,305,0.000685%,jump,Other
jump_karb_b3,305,0.000685%,jump,Other
slender_scp_087_b_v3_h_gsn,305,0.000685%,slender,Other
jump_strike_b2,305,0.000685%,jump,Other
bhop_namaste,305,0.000685%,bhop,Other
mvm_hightower_single_boss,305,0.000685%,mvm,Man vs Machine
pl_barnblitz_pro4,304,0.000682%,pl,Payload
tfdb_icebox_v3,304,0.000682%,tfdb,Other
vsh_stream_platform_v7,304,0.000682%,vsh,Other
surf_tricky_chaos,304,0.000682%,surf,Other
mvm_coaltown_uu_helloween,304,0.000682%,mvm,Man vs Machine
mvm_rottenburg_200%win,304,0.000682%,mvm,Man vs Machine
arena_aerial_72_b2,304,0.000682%,arena,Other
vsh_ram_shacked_b6,304,0.000682%,vsh,Other
mvm_area_52_rc3_click_expert1,303,0.000680%,mvm,Man vs Machine
surf_machine_remix_v2,303,0.000680%,surf,Other
vsh_convoy_v2_pbfix01,302,0.000678%,vsh,Other
fluttershys_house_b2,302,0.000678%,fluttershys,Other
mvm_machine_attacks_ep12b1,302,0.000678%,mvm,Man vs Machine
pl_shoreleave_a12,302,0.000678%,pl,Payload
vsh_magic_jc_bedroom_v1,301,0.000676%,vsh,Other
vsh_factoryhell_2data,301,0.000676%,vsh,Other
vsh_hydro_pb2,300,0.000673%,vsh,Other
cp_treehouse_b4,300,0.000673%,cp,Capture Point
dr_death_slope_night,300,0.000673%,dr,Other
dr_death-slope_v1_fix_s,300,0.000673%,dr,Other
koth_snowcliff_b1,300,0.000673%,koth,King of the Hill
jump_internal_b4,300,0.000673%,jump,Other
jump_egyptian_b2,299,0.000671%,jump,Other
vsh_avanpost_b2,299,0.000671%,vsh,Other
jump_allstars,299,0.000671%,jump,Other
jump_mohr,299,0.000671%,jump,Other
mvm_mannhattan_extreme,299,0.000671%,mvm,Man vs Machine
mvm_rooftop_easy,299,0.000671%,mvm,Man vs Machine
tfdb_maui_b3,299,0.000671%,tfdb,Other
vsh_dr_dreamytrack_b2,298,0.000669%,vsh,Other
jump_synth_a2,298,0.000669%,jump,Other
pl_frostward,298,0.000669%,pl,Payload
mario_kart_2012_b3,298,0.000669%,mario,Other
mvm_warehouse_v1_advanced2,297,0.000667%,mvm,Man vs Machine
vsh_minecraft_aether_depressao_,297,0.000667%,vsh,Other
jump_kpop_a3,297,0.000667%,jump,Other
mvm_orange_x3_how_v2b_fawos_adv,296,0.000664%,mvm,Man vs Machine
mvm_decoy_click_expert1,296,0.000664%,mvm,Man vs Machine
pkmn_victoryroad_pl,296,0.000664%,pkmn,Other
achievement_turbo_rhobv3,295,0.000662%,achievement,Trade and Achievement
vsh_degrootkeep_v2,295,0.000662%,vsh,Other
cp_snakewater,295,0.000662%,cp,Capture Point
arena_blue_resort,295,0.000662%,arena,Other
mvm_ghost_town_666+,294,0.000660%,mvm,Man vs Machine
vsh_magic_jc_quake_b1,294,0.000660%,vsh,Other
slender_sewer_b1a_h_gsn,294,0.000660%,slender,Other
zf_blockade_b2_1,294,0.000660%,zf,Other
vsh_uplift_v1,293,0.000658%,vsh,Other
zf_panic2014_v3,293,0.000658%,zf,Other
sb_islands_b3,293,0.000658%,sb,Other
mvm_coaltown_uu99_ironmen,293,0.000658%,mvm,Man vs Machine
vsh_lolcano_pb1_fixed,292,0.000655%,vsh,Other
vsh_gamer_b5,292,0.000655%,vsh,Other
jump_vertigo,292,0.000655%,jump,Other
cp_oragne_z7_ntocvc_fix8,291,0.000653%,cp,Capture Point
pl_millstone_ugc_4,291,0.000653%,pl,Payload
surf_the_gloaming,290,0.000651%,surf,Other
koth_havasu_a2,290,0.000651%,koth,King of the Hill
jump_how,290,0.000651%,jump,Other
vsh_goldrush_caverns_new_b1,290,0.000651%,vsh,Other
trade_wonderfortress_b2,290,0.000651%,trade,Trade and Achievement
fw_cube_b8_fixedz,290,0.000651%,fw,Other
vsh_simplebridge_pc2,289,0.000649%,vsh,Other
mvm_adventure_of_30wave_ep2_nor,289,0.000649%,mvm,Man vs Machine
pl_dustbowl,289,0.000649%,pl,Payload
jump_dreamy_v2,289,0.000649%,jump,Other
surf_jsr_test3,289,0.000649%,surf,Other
vsh_manncave_a2,288,0.000646%,vsh,Other
cp_orange_fun_v1,288,0.000646%,cp,Capture Point
slender_atomics_b4a_h_gsn,288,0.000646%,slender,Other
slender_claustrophobia_b1_h_gsn,288,0.000646%,slender,Other
tfdb_reflex_v2,288,0.000646%,tfdb,Other
climb_work,288,0.000646%,climb,Other
vsh_hakurei_shrine_wfix,287,0.000644%,vsh,Other
jump_frayb_a4,287,0.000644%,jump,Other
trade_psykopat,287,0.000644%,trade,Trade and Achievement
vsh_redstorage_v5,287,0.000644%,vsh,Other
vsh_swamp_outpost_b1b,287,0.000644%,vsh,Other
mvm_sewer_invasion_b7_eulif,287,0.000644%,mvm,Man vs Machine
vsh_legotown_hyrule_v3,287,0.000644%,vsh,Other
mvm_machine_attacks_ep10b,287,0.000644%,mvm,Man vs Machine
cp_granary_pro_rc5,287,0.000644%,cp,Capture Point
vsh_dr_wooden_v4_fixed,287,0.000644%,vsh,Other
vsh_magic_wc_water_orange,286,0.000642%,vsh,Other
tr_walkway_rc,286,0.000642%,tr,Other
vsh_west_fixed,286,0.000642%,vsh,Other
bhop_rising,286,0.000642%,bhop,Other
cp_burghausen_rc1,286,0.000642%,cp,Capture Point
koth_ahau_rc2,285,0.000640%,koth,King of the Hill
cp_balanced,285,0.000640%,cp,Capture Point
slender_the_abyss_r1_h_gsn,285,0.000640%,slender,Other
ph_nightclub_v1,284,0.000637%,ph,Other
tfdb_ovni_v7,284,0.000637%,tfdb,Other
ctf_minecraft_b8,284,0.000637%,ctf,Capture the Flag
tfdb_tron_peng_v8,284,0.000637%,tfdb,Other
fw_king-mod2_v1,284,0.000637%,fw,Other
surf_torrent_njv,284,0.000637%,surf,Other
idle_trade_inkopolis_b1,283,0.000635%,idle,Other
vsh_hyrule_castle_ssb64_v4,283,0.000635%,vsh,Other
koth_megaman6,283,0.000635%,koth,King of the Hill
mario_kart_deluxe_v4,283,0.000635%,mario,Other
jump_glassydev_rc3,282,0.000633%,jump,Other
koth_ultiduo_baloo,282,0.000633%,koth,King of the Hill
bhop_monster_jam,282,0.000633%,bhop,Other
trade_minecraft_b41,282,0.000633%,trade,Trade and Achievement
aim_ak_colt_sand_fawosfix,282,0.000633%,aim,Other
zf_maze_v4_5,281,0.000631%,zf,Other
mlp_appleloosa_trainv2,281,0.000631%,mlp,Other
trade_captains_custom_final,281,0.000631%,trade,Trade and Achievement
dr_pauseahead_v12,281,0.000631%,dr,Other
surf_mesa_aether,281,0.000631%,surf,Other
vsh_dust_showdown_final_1,280,0.000629%,vsh,Other
vsh_snowyhills_v6,280,0.000629%,vsh,Other
vsh_complexed_v11,280,0.000629%,vsh,Other
mvm_mannworks_bossbattle,280,0.000629%,mvm,Man vs Machine
vsh_reservoir_halloween_v1,280,0.000629%,vsh,Other
fw_3cs_a1,279,0.000626%,fw,Other
jump_urgent_final,279,0.000626%,jump,Other
bhop_crash_egypt,279,0.000626%,bhop,Other
bhop_toc,279,0.000626%,bhop,Other
surf_froots,278,0.000624%,surf,Other
zf_coyote_b6,278,0.000624%,zf,Other
jump_khoa,278,0.000624%,jump,Other
bhop_mountains,278,0.000624%,bhop,Other
surf_concreteideas,278,0.000624%,surf,Other
achievement_apg_remade9j_bh,278,0.000624%,achievement,Trade and Achievement
mvm_meltdown_rc4_advanced2,278,0.000624%,mvm,Man vs Machine
koth_mineland_v9,277,0.000622%,koth,King of the Hill
ctf_overlook_b1,277,0.000622%,ctf,Capture the Flag
surf_friday,277,0.000622%,surf,Other
cp_orangeplus_x3_v2,276,0.000620%,cp,Capture Point
vsh_dr_missing,276,0.000620%,vsh,Other
zf_tunnel_base_v3_r1,276,0.000620%,zf,Other
vsh_low_8bit_v10,276,0.000620%,vsh,Other
ctf_wiretap_b1,275,0.000617%,ctf,Capture the Flag
vsh_arena_freight,275,0.000617%,vsh,Other
cp_process_a1,275,0.000617%,cp,Capture Point
zf_mine_b2,275,0.000617%,zf,Other
trade_minecraft_realms,275,0.000617%,trade,Trade and Achievement
cp_snow_fight_110,275,0.000617%,cp,Capture Point
jump_fear,275,0.000617%,jump,Other
vsh_haul_b4,275,0.000617%,vsh,Other
tfdb_clambake_v1,275,0.000617%,tfdb,Other
koth_oceanside,274,0.000615%,koth,King of the Hill
ctf_convoy_nfc,274,0.000615%,ctf,Capture the Flag
ph_range_a3,274,0.000615%,ph,Other
mvm_mannworks_uberup_advanced,274,0.000615%,mvm,Man vs Machine
dm_appleloosapartytrain_poni,274,0.000615%,dm,Deathmatch
jump_huh_b6,274,0.000615%,jump,Other
pl_quagmire,274,0.000615%,pl,Payload
slender_cellars_b4b,274,0.000615%,slender,Other
surf_ski2_tf2,273,0.000613%,surf,Other
jump_twelve_rc1,273,0.000613%,jump,Other
jump_quickers_b3,273,0.000613%,jump,Other
mvm_decoy_cdzrobotgrind,273,0.000613%,mvm,Man vs Machine
pl_simpson_house_a7,273,0.000613%,pl,Payload
jump_dan2,273,0.000613%,jump,Other
ctf_facingworlds_v2,273,0.000613%,ctf,Capture the Flag
jump_samurai_b3,273,0.000613%,jump,Other
trade_freezeezypeak_b1,273,0.000613%,trade,Trade and Achievement
dm_pit3,273,0.000613%,dm,Deathmatch
tr_karma_xmas,272,0.000611%,tr,Other
mvm_metro_rc1_advanced1,272,0.000611%,mvm,Man vs Machine
koth_croket_a3,272,0.000611%,koth,King of the Hill
szf_fort_b2,272,0.000611%,szf,Other
slender_the_tower_b1,272,0.000611%,slender,Other
koth_orange_x3_exe,272,0.000611%,koth,King of the Hill
pl_boxcanyon_rc8,272,0.000611%,pl,Payload
tfdb_glass_nud_v,271,0.000608%,tfdb,Other
tfdb_satellite_v1,271,0.000608%,tfdb,Other
vsh_dr_cube_v2,271,0.000608%,vsh,Other
mvm_rottenburg_semlab_c7,271,0.000608%,mvm,Man vs Machine
dr_universe_v4,271,0.000608%,dr,Other
mvm_hangtown_v1_3_adv,271,0.000608%,mvm,Man vs Machine
jump_drheinz,270,0.000606%,jump,Other
zf_drain_remake_v4,270,0.000606%,zf,Other
slender_abandoned_b2_h_gsn,270,0.000606%,slender,Other
koth_orange_50f_tower_enji,269,0.000604%,koth,King of the Hill
ctf_turrrrrrrrrrrrrrrr,269,0.000604%,ctf,Capture the Flag
vsh_twinfalls_b1_fix,269,0.000604%,vsh,Other
surf_kitsune2,268,0.000602%,surf,Other
pl_millstone_final,268,0.000602%,pl,Payload
vsh_dr_industrial_v2b,268,0.000602%,vsh,Other
mvm_koipond_beta_normal,268,0.000602%,mvm,Man vs Machine
zf_desertyard_v2,268,0.000602%,zf,Other
dr_redbase_v2a,267,0.000599%,dr,Other
tfdb_iphones_3g,267,0.000599%,tfdb,Other
jump_sfw_final,267,0.000599%,jump,Other
surf_legends_lite_v2,267,0.000599%,surf,Other
dr_corridor_v2,267,0.000599%,dr,Other
vsh_building_blast_v4,267,0.000599%,vsh,Other
surf_inspire,267,0.000599%,surf,Other
billiards_b6,266,0.000597%,billiards,Other
tfdb_theblackout,266,0.000597%,tfdb,Other
sb_skyscraper_beta2_jugfix1,266,0.000597%,sb,Other
mvm_bigrock_conga,266,0.000597%,mvm,Man vs Machine
murderball_2011_rc2,266,0.000597%,murderball,Other
koth_canopy_rc1b,266,0.000597%,koth,King of the Hill
dr_waterway,266,0.000597%,dr,Other
mvm_ghost_town_30_waves_v46_sur,266,0.000597%,mvm,Man vs Machine
trade_minecraft2_2015_v1,266,0.000597%,trade,Trade and Achievement
team_trial_vslag1,266,0.000597%,team,Other
mvm_giza_b7,265,0.000595%,mvm,Man vs Machine
mvm_rottenburg_30_waves_remaste,265,0.000595%,mvm,Man vs Machine
cp_treehouse_b2,265,0.000595%,cp,Capture Point
koth_underground_rc9,265,0.000595%,koth,King of the Hill
acg_apartment_redux_13,265,0.000595%,acg,Other
dr_running_v2,264,0.000593%,dr,Other
vsh_dr_trollrun_final,264,0.000593%,vsh,Other
mvm_derelict_rc2_advanced2,264,0.000593%,mvm,Man vs Machine
jump_redplanet_v2,264,0.000593%,jump,Other
jump_gateway_v4,264,0.000593%,jump,Other
cp_castle4,263,0.000590%,cp,Capture Point
trade_minecraft_b39,263,0.000590%,trade,Trade and Achievement
sb_oildrum_alley_rc6,263,0.000590%,sb,Other
szf_hellcastle_b1,263,0.000590%,szf,Other
jump_illusion_final,263,0.000590%,jump,Other
tr_medic_agility,263,0.000590%,tr,Other
ph_manorgrounds_a5,262,0.000588%,ph,Other
mvm_5gorge_cp_ma_bosses,262,0.000588%,mvm,Man vs Machine
vsh_wholesale_v6,262,0.000588%,vsh,Other
sb_nitefight_final3,262,0.000588%,sb,Other
ph_nervecenter_b5,262,0.000588%,ph,Other
surf_kz_protraining_fix,261,0.000586%,surf,Other
arena_arakawa_event,261,0.000586%,arena,Other
dr_death-slope_v1_fix,261,0.000586%,dr,Other
jump_storm_final,261,0.000586%,jump,Other
bhop_rollin_v1,261,0.000586%,bhop,Other
ph_doublecross_a2,261,0.000586%,ph,Other
pl_ququmannz_b4,261,0.000586%,pl,Payload
tfdb_medievaltower_fixed,261,0.000586%,tfdb,Other
mario_kart_upcoy,260,0.000584%,mario,Other
arena_churchtown_a1,260,0.000584%,arena,Other
tfdb_moon_nud,260,0.000584%,tfdb,Other
jump_turnip_v2,260,0.000584%,jump,Other
dr_mineshaft_v13,260,0.000584%,dr,Other
fw_parallel_v13z,260,0.000584%,fw,Other
surf_skill8_e,260,0.000584%,surf,Other
arena_hectic_b3,259,0.000581%,arena,Other
surf_graphia_njv,259,0.000581%,surf,Other
mvm_mannhattan_click_advanced2,259,0.000581%,mvm,Man vs Machine
vsh_treasure_room_v3,259,0.000581%,vsh,Other
surf_akron_noobs_v2,259,0.000581%,surf,Other
pl_manifest_b1,259,0.000581%,pl,Payload
cp_sdnaldab,259,0.000581%,cp,Capture Point
surf_aether,259,0.000581%,surf,Other
trade_alley_rc3,259,0.000581%,trade,Trade and Achievement
tfdbr_country_b1,259,0.000581%,tfdbr,Other
tfdb_cliff_nud_v2,258,0.000579%,tfdb,Other
mvm_on_titan_rus,258,0.000579%,mvm,Man vs Machine
trade_plaza_deserthobo_v5,258,0.000579%,trade,Trade and Achievement
ph_checkpoint_rc5,258,0.000579%,ph,Other
bhop_chen,258,0.000579%,bhop,Other
dr_void_final4,258,0.000579%,dr,Other
koth_minotaur_b1,258,0.000579%,koth,King of the Hill
dr_castle_v4_d,258,0.000579%,dr,Other
tfdb_house_of_nite_a4,257,0.000577%,tfdb,Other
surf_badlands_r1,257,0.000577%,surf,Other
vsh_zrr_oranges,257,0.000577%,vsh,Other
pl_barnblitz_pro7b,257,0.000577%,pl,Payload
arena_outpost_v3,257,0.000577%,arena,Other
tr_spire_v1,256,0.000575%,tr,Other
vsh_laboratory_a1,256,0.000575%,vsh,Other
cp_orange_x4_remake,256,0.000575%,cp,Capture Point
vsh_theplank,256,0.000575%,vsh,Other
surf_olympics,256,0.000575%,surf,Other
zm_field_fix,256,0.000575%,zm,Other
pl_goldheist_canyon_final_v3,256,0.000575%,pl,Payload
arena_courtyard_a3,256,0.000575%,arena,Other
tfdb_cwg_gym_v2,256,0.000575%,tfdb,Other
ge_bunker_v1,256,0.000575%,ge,Other
mvm_mannhattan_expert3,256,0.000575%,mvm,Man vs Machine
mvm_decoy_borag_thungg,255,0.000572%,mvm,Man vs Machine
achievement_idle_multi,255,0.000572%,achievement,Trade and Achievement
cp_upland_rc4,255,0.000572%,cp,Capture Point
zf_[catz]snow_house_beta2_fix,255,0.000572%,zf,Other
koth_ramjam_b9,255,0.000572%,koth,King of the Hill
cp_orange_exe_v1,255,0.000572%,cp,Capture Point
surf_4dimensional,254,0.000570%,surf,Other
koth_arizona,254,0.000570%,koth,King of the Hill
cp_pon3future_b3,254,0.000570%,cp,Capture Point
cp_dust2,254,0.000570%,cp,Capture Point
mvm_rottenburg_arbeitsteilung,254,0.000570%,mvm,Man vs Machine
bhop_haddock,254,0.000570%,bhop,Other
mvm_bigrock_click_advanced2,254,0.000570%,mvm,Man vs Machine
cs_mansion_v2,254,0.000570%,cs,Other
surf_borderlands,254,0.000570%,surf,Other
bhop_ocean,253,0.000568%,bhop,Other
koth_warmtic_b6,253,0.000568%,koth,King of the Hill
surf_insanity_tf2,253,0.000568%,surf,Other
dr_darkenergy_v2,253,0.000568%,dr,Other
dr_workplace_v2p,253,0.000568%,dr,Other
arena_aps_siberia_v2,253,0.000568%,arena,Other
vsh_big_beanstalk_v2,253,0.000568%,vsh,Other
surf_fruits_fix,252,0.000566%,surf,Other
vsh_ga_city2_v4,252,0.000566%,vsh,Other
trade_akiba_v3,252,0.000566%,trade,Trade and Achievement
slideracesunrise_v2,252,0.000566%,slideracesunrise,Other
mvm_coaltown_click_expert1,251,0.000563%,mvm,Man vs Machine
trade_minecraft_hans_a21,251,0.000563%,trade,Trade and Achievement
surf_halloween_njv_fix,251,0.000563%,surf,Other
dr_inca_v8,251,0.000563%,dr,Other
mannco_jackpot,250,0.000561%,mannco,Other
idle_map_21,250,0.000561%,idle,Other
vsh_horyuji_v2,250,0.000561%,vsh,Other
jump_glassydev_final,250,0.000561%,jump,Other
arena_minetown_beta,250,0.000561%,arena,Other
jump_air_beta2,250,0.000561%,jump,Other
trade_minecraft_neon_v162,250,0.000561%,trade,Trade and Achievement
tfdb_standoff_v1,249,0.000559%,tfdb,Other
mvm_mannhattan_30waves_easy_v5,249,0.000559%,mvm,Man vs Machine
jump_fear_redo,249,0.000559%,jump,Other
mvm_machine_atks_ep12b1_sh1,249,0.000559%,mvm,Man vs Machine
vsh_warzone_a2,248,0.000557%,vsh,Other
vsh_dr_tantrum,248,0.000557%,vsh,Other
cp_orange_ruins_v1,248,0.000557%,cp,Capture Point
mvm_mannhattan_30wave,248,0.000557%,mvm,Man vs Machine
mvm_factory_a3_normal,248,0.000557%,mvm,Man vs Machine
slender_sector_six_b1b_h_gsn,248,0.000557%,slender,Other
dr_tonnel_v2,247,0.000554%,dr,Other
arena_steeple_b2,247,0.000554%,arena,Other
surf_frictional_clean,247,0.000554%,surf,Other
trade_defrostbyte,246,0.000552%,trade,Trade and Achievement
surf_aweles,246,0.000552%,surf,Other
mvm_adventure_of_30wave_ep2_eas,245,0.000550%,mvm,Man vs Machine
mvm_area_52_rc3_ponies1,245,0.000550%,mvm,Man vs Machine
surf_funhouse,245,0.000550%,surf,Other
zf_canyon_fix_gfl,245,0.000550%,zf,Other
mvm_bigrock_pressure_point,245,0.000550%,mvm,Man vs Machine
dm_ponyville_classic_2014,244,0.000548%,dm,Deathmatch
trade_nimbusland,244,0.000548%,trade,Trade and Achievement
koth_avalanche_rc7,244,0.000548%,koth,King of the Hill
pl_boundary_final,244,0.000548%,pl,Payload
fw_3level_v2z,244,0.000548%,fw,Other
mvm_thedust_b2_advanced1,244,0.000548%,mvm,Man vs Machine
vsh_dr_coldmetal_rebalance_fix,244,0.000548%,vsh,Other
jump_tsao_final,244,0.000548%,jump,Other
vsh_magic_wc_rattyratrat,244,0.000548%,vsh,Other
koth_frozenrails,244,0.000548%,koth,King of the Hill
surf_mom,243,0.000545%,surf,Other
dr_hot_desert_v9_fix,243,0.000545%,dr,Other
surf_alpine,243,0.000545%,surf,Other
jump_sore_a4,242,0.000543%,jump,Other
surf_healthy,242,0.000543%,surf,Other
dr_sector_v4,241,0.000541%,dr,Other
trade_neige_night,241,0.000541%,trade,Trade and Achievement
surf_whoknows2,241,0.000541%,surf,Other
achievement_all_gdt_v7,241,0.000541%,achievement,Trade and Achievement
jump_4demo_fixed6,241,0.000541%,jump,Other
mvm_underground_rc3_advanced2,241,0.000541%,mvm,Man vs Machine
surf_thembrium_final,241,0.000541%,surf,Other
trade_minecraft_plaza2_b12_a2,241,0.000541%,trade,Trade and Achievement
koth_orange_x1,240,0.000539%,koth,King of the Hill
tlobby_rc2,240,0.000539%,tlobby,Other
vsh_bandit_a5,240,0.000539%,vsh,Other
tfdb_cube_c2,239,0.000536%,tfdb,Other
mvm_orange_x3_how_v2b_fawos_man,239,0.000536%,mvm,Man vs Machine
vsh_toys_new_office,239,0.000536%,vsh,Other
dm_minecraft_skyloft_v2,239,0.000536%,dm,Deathmatch
sb_skyworld_b2,239,0.000536%,sb,Other
jump_lolparty,239,0.000536%,jump,Other
tfdb_toolsheds_b1,238,0.000534%,tfdb,Other
koth_terrace_a5,238,0.000534%,koth,King of the Hill
koth_gray_co_b2,238,0.000534%,koth,King of the Hill
jump_flow_redo,238,0.000534%,jump,Other
koth_block_fort_a2,238,0.000534%,koth,King of the Hill
dr_waterarea_v5,238,0.000534%,dr,Other
zf_swineblock_b2,238,0.000534%,zf,Other
zf_farm_field_final_ig,238,0.000534%,zf,Other
arena_vladivostok_b1,238,0.000534%,arena,Other
mvm_coaltown_metal,237,0.000532%,mvm,Man vs Machine
achievement_idle_beta_1da,237,0.000532%,achievement,Trade and Achievement
jump_everest_a2,237,0.000532%,jump,Other
surf_venice_v1e,237,0.000532%,surf,Other
jump_ballin_a3,236,0.000530%,jump,Other
vsh_polar_lz_b1a,236,0.000530%,vsh,Other
dr_mineshaft_v14_fix,236,0.000530%,dr,Other
dm_duel_npc,236,0.000530%,dm,Deathmatch
mvm_ma_ep12b3_1,236,0.000530%,mvm,Man vs Machine
mvm_ghost_town_hell,236,0.000530%,mvm,Man vs Machine
jump_wallclimb_v1alpha,236,0.000530%,jump,Other
campo_de_guerra,235,0.000528%,campo,Other
dr_constructionland_night3,235,0.000528%,dr,Other
trade_minecraft_village_w21,235,0.000528%,trade,Trade and Achievement
mvm_bigrock_the_fall_of_mann_co,235,0.000528%,mvm,Man vs Machine
jump_hopstep_a3,234,0.000525%,jump,Other
slender_mansion_b2b_h_gsn,234,0.000525%,slender,Other
mvm_5gorge_cp_30wave_v46_h,234,0.000525%,mvm,Man vs Machine
vsh_reservoir_v1,234,0.000525%,vsh,Other
vsh_high_remake_v4,234,0.000525%,vsh,Other
mvm_ma_ep16_1_fixed_hard,234,0.000525%,mvm,Man vs Machine
zm_flame_town_fix,234,0.000525%,zm,Other
mvm_decoy_30_waves_remastered_e,234,0.000525%,mvm,Man vs Machine
cp_orange,234,0.000525%,cp,Capture Point
mvm_decoy_30waves_normal_v5,234,0.000525%,mvm,Man vs Machine
vsh_west_fix2,233,0.000523%,vsh,Other
vsh_dr_space_v14,233,0.000523%,vsh,Other
mvm_warehouse_v1_uberupgrades,233,0.000523%,mvm,Man vs Machine
vsh_convoy_v2_b5_bfiw,233,0.000523%,vsh,Other
fw_qw_newmombasa_vr2,233,0.000523%,fw,Other
mvm_decoy_click_advanced3,233,0.000523%,mvm,Man vs Machine
vsh_skycore_b2,233,0.000523%,vsh,Other
ns_trade_alpha_v1_fix,233,0.000523%,ns,Other
jump_shimano_a3,233,0.000523%,jump,Other
fw_ls_one-way_v2,232,0.000521%,fw,Other
vsh_arrival,232,0.000521%,vsh,Other
dm_cloudsdale_final,232,0.000521%,dm,Deathmatch
xmas_party_b5,232,0.000521%,xmas,Other
mvm_machine_attacks_ep12b3,231,0.000519%,mvm,Man vs Machine
cp_hybro_b05,231,0.000519%,cp,Capture Point
ba_sincinatti_v1,231,0.000519%,ba,Other
tfdb_cubic_rc2,231,0.000519%,tfdb,Other
fw_waterraaw_8f,231,0.000519%,fw,Other
mvm_bigrock_ubup_xmasinvasion,231,0.000519%,mvm,Man vs Machine
surf_reflex,230,0.000516%,surf,Other
vsh_2b_map_v2,230,0.000516%,vsh,Other
pl_millstone_event_rc4,230,0.000516%,pl,Payload
trade_snowy_v3,230,0.000516%,trade,Trade and Achievement
trade_space_v1,230,0.000516%,trade,Trade and Achievement
mvm_underground_b2,230,0.000516%,mvm,Man vs Machine
achievement_apg_r12,229,0.000514%,achievement,Trade and Achievement
pl_morrigan_alley_a1,229,0.000514%,pl,Payload
dr_hauntedresidence_b2,229,0.000514%,dr,Other
pl_wutville_beta2,229,0.000514%,pl,Payload
mvm_troopers_defend_fawosfix_ba,229,0.000514%,mvm,Man vs Machine
trade_minecraft_towns50,229,0.000514%,trade,Trade and Achievement
mvm_rottenburg_ponies1,229,0.000514%,mvm,Man vs Machine
sa_trainyard,229,0.000514%,sa,Other
vsh_dr_death-slope_v1_fix_s,228,0.000512%,vsh,Other
zf_volcanoevac_v6,228,0.000512%,zf,Other
surf_ethereal,228,0.000512%,surf,Other
weaver_smash_beta,228,0.000512%,weaver,Other
tfdb_own_rc1,228,0.000512%,tfdb,Other
mvm_sandstone_s23_training,228,0.000512%,mvm,Man vs Machine
koth_nader_hill_v4,227,0.000510%,koth,King of the Hill
cp_orange_x_6,227,0.000510%,cp,Capture Point
surf_sh_fix,227,0.000510%,surf,Other
mvm_warehouse_v1_judgement,227,0.000510%,mvm,Man vs Machine
surf_wood,227,0.000510%,surf,Other
mvm_ghost_town_doom_of_coaltown,227,0.000510%,mvm,Man vs Machine
surf_omnibus,226,0.000507%,surf,Other
vsh_courtyard_rc1,226,0.000507%,vsh,Other
tfdb_campout_a2,225,0.000505%,tfdb,Other
mvm_bigrock_click_expert1,225,0.000505%,mvm,Man vs Machine
surf_vale2,224,0.000503%,surf,Other
achievement_delta_v19_0220,224,0.000503%,achievement,Trade and Achievement
dr_sawmill_v2,224,0.000503%,dr,Other
cp_hybro_b09,224,0.000503%,cp,Capture Point
ph_bigbutt_beta_b2,224,0.000503%,ph,Other
mvm_tropics_a5_no2_sunshine_scr,224,0.000503%,mvm,Man vs Machine
jump_noob2_ab,223,0.000501%,jump,Other
cp_obscure_final,223,0.000501%,cp,Capture Point
jump_blossom_s3f,223,0.000501%,jump,Other
slender_containmentbreach_v1e,223,0.000501%,slender,Other
sb_2fort_b3_igf,223,0.000501%,sb,Other
arena_dispatch_b1,223,0.000501%,arena,Other
mvm_hangtown_v1_3_advanced2,223,0.000501%,mvm,Man vs Machine
cp_orange_50f_tower_v4,223,0.000501%,cp,Capture Point
tr_airshot_v0,222,0.000498%,tr,Other
cp_orange_n_final,222,0.000498%,cp,Capture Point
mvm_ma_ep11_1_normal,222,0.000498%,mvm,Man vs Machine
arena_landing,222,0.000498%,arena,Other
tfdbr_virtual_v1b2,222,0.000498%,tfdbr,Other
mvm_ascent_a1_normal,222,0.000498%,mvm,Man vs Machine
mvm_isolation_b4,222,0.000498%,mvm,Man vs Machine
vsh_chimeralabs_v7,222,0.000498%,vsh,Other
trade_minecraft_riverh98_x,221,0.000496%,trade,Trade and Achievement
koth_lolcano_b3,221,0.000496%,koth,King of the Hill
arena_beck_rc,221,0.000496%,arena,Other
cp_toy_fort_elite,221,0.000496%,cp,Capture Point
slender_freddy_b2,221,0.000496%,slender,Other
wall-mart_p1,220,0.000494%,wall-mart,Other
jump_noire_v2_3,220,0.000494%,jump,Other
mvm_decoyxma_30wave_v60_lvl1,220,0.000494%,mvm,Man vs Machine
trade_plaza_epic,220,0.000494%,trade,Trade and Achievement
dr_area_v1a,220,0.000494%,dr,Other
tfdb_bitch_ass_b5,219,0.000492%,tfdb,Other
koth_hardway_72_rc1,219,0.000492%,koth,King of the Hill
vsh_suijin_lz_b1,219,0.000492%,vsh,Other
tfdb_glowbox_b4,219,0.000492%,tfdb,Other
zf_christmas_panic_3,219,0.000492%,zf,Other
fw_2way_v2,218,0.000489%,fw,Other
surf_exocube,218,0.000489%,surf,Other
slender_gutters_b2b_h_gsn,218,0.000489%,slender,Other
surf_jenocide,218,0.000489%,surf,Other
mvm_coaltown_beam_team_trouble,218,0.000489%,mvm,Man vs Machine
mvm_mannhattan_prettyez,218,0.000489%,mvm,Man vs Machine
mvm_mannhattan_intermediate,218,0.000489%,mvm,Man vs Machine
vsh_minecraftcloudstuck_b1,218,0.000489%,vsh,Other
glass_basics,218,0.000489%,glass,Other
tr_jumpstab,217,0.000487%,tr,Other
zf_degrootkeep_v2w,217,0.000487%,zf,Other
surf_dicks_v4,217,0.000487%,surf,Other
mvm_coaltown_giant_rush,217,0.000487%,mvm,Man vs Machine
surf_fastspiral_retro_tf2_fix,217,0.000487%,surf,Other
mvm_bigrock_cash,217,0.000487%,mvm,Man vs Machine
mvm_wintervalley_a1_normal,216,0.000485%,mvm,Man vs Machine
zf_zom_day_z_v1,216,0.000485%,zf,Other
jump_dicks_v3,216,0.000485%,jump,Other
trade_bearitory,216,0.000485%,trade,Trade and Achievement
surf_bigramp_v2_tf2,216,0.000485%,surf,Other
trade_abstract_augemented,216,0.000485%,trade,Trade and Achievement
arena_zipp,216,0.000485%,arena,Other
zf_logfort_v5,215,0.000483%,zf,Other
trade_inkopolis,215,0.000483%,trade,Trade and Achievement
jump_drenched,215,0.000483%,jump,Other
arena_shockwave_b2a,215,0.000483%,arena,Other
surf_tensile_njv,215,0.000483%,surf,Other
rj_rckteer_adv_v2,215,0.000483%,rj,Other
trade_wicked_plaza_v2,215,0.000483%,trade,Trade and Achievement
koth_greenhouse_b3a,214,0.000480%,koth,King of the Hill
zf_stinks_v2,214,0.000480%,zf,Other
mvm_bigrock_30wave_v46_e,214,0.000480%,mvm,Man vs Machine
jump_pyromaniac,213,0.000478%,jump,Other
dm_wizzard,213,0.000478%,dm,Deathmatch
tfdb_dev,213,0.000478%,tfdb,Other
cp_snakewater_u10,213,0.000478%,cp,Capture Point
jump_aznbob_fixed,213,0.000478%,jump,Other
arena_mocha_b1,213,0.000478%,arena,Other
tfdb_moon_v2_nud,213,0.000478%,tfdb,Other
dr_cocainum_xmas_v2a,213,0.000478%,dr,Other
pl_auriferous_rc13,213,0.000478%,pl,Payload
mvm_castle_defense_a3_normal,212,0.000476%,mvm,Man vs Machine
mvm_sandstone_s23_uberupgrades,212,0.000476%,mvm,Man vs Machine
vsh_lighthouse_final,212,0.000476%,vsh,Other
koth_mineland_v12,212,0.000476%,koth,King of the Hill
sb_icarus_v4,212,0.000476%,sb,Other
mvm_overlord_b3_advanced,211,0.000474%,mvm,Man vs Machine
mvm_orange_hg,211,0.000474%,mvm,Man vs Machine
tfdb_marina,211,0.000474%,tfdb,Other
mvm_downtown_final1_intermediat,211,0.000474%,mvm,Man vs Machine
surf_overgrowth2,211,0.000474%,surf,Other
mvm_ghost_town_667,211,0.000474%,mvm,Man vs Machine
dr_bigroom_light_8_fix2,211,0.000474%,dr,Other
jump_porridge_a3,210,0.000471%,jump,Other
jump_gman_beta_4,210,0.000471%,jump,Other
arena_2fort_fixed,210,0.000471%,arena,Other
cp_orange_z4_v3_bfc_a3,210,0.000471%,cp,Capture Point
surf_island,210,0.000471%,surf,Other
dr_forest_b7_fixed,210,0.000471%,dr,Other
achievement_idle_nomercy_v4_17,210,0.000471%,achievement,Trade and Achievement
surf_faint_fix,210,0.000471%,surf,Other
vsh_dr_iceworld_5a,210,0.000471%,vsh,Other
ctf_darktower,209,0.000469%,ctf,Capture the Flag
mvm_area_52_rc3_advanced1,209,0.000469%,mvm,Man vs Machine
vsh_crevice_lz_a4,209,0.000469%,vsh,Other
mvm_mannworks_16wave,209,0.000469%,mvm,Man vs Machine
vsh_freight,209,0.000469%,vsh,Other
fw_longtime_v6,209,0.000469%,fw,Other
mvm_coaltown_cash,209,0.000469%,mvm,Man vs Machine
mvm_ma_ep0_1,209,0.000469%,mvm,Man vs Machine
jump_phase_b4,208,0.000467%,jump,Other
vsh_central_fix3,208,0.000467%,vsh,Other
trade_subway_b3f,208,0.000467%,trade,Trade and Achievement
trade_rdg_b46_alpha,208,0.000467%,trade,Trade and Achievement
mvm_decoy_robotmassimania1,208,0.000467%,mvm,Man vs Machine
jump_academy_winter_3a,208,0.000467%,jump,Other
sb_islands_b3_rsfix,208,0.000467%,sb,Other
tfdb_mandrillmaze_v1_2,208,0.000467%,tfdb,Other
trade_idle_ugc_alpha2,208,0.000467%,trade,Trade and Achievement
dm_duel_v1b_edit12,208,0.000467%,dm,Deathmatch
surf_basewar_beta3_no_cp,208,0.000467%,surf,Other
dr_minefarm_beta2b,207,0.000465%,dr,Other
vip_chrrgg_v4,207,0.000465%,vip,Other
cp_powerhouse_snowy_b1,207,0.000465%,cp,Capture Point
dr_r60d_final,207,0.000465%,dr,Other
pl_fifthcurve_b4,207,0.000465%,pl,Payload
cp_firewatch_b4,207,0.000465%,cp,Capture Point
tfdb_computacao_depressao,206,0.000462%,tfdb,Other
surf_abhorrence_v2,206,0.000462%,surf,Other
dr_confusion_a01,206,0.000462%,dr,Other
slender_the_ward_b2_h_gsn,206,0.000462%,slender,Other
vsh_nintendotemple_v2,206,0.000462%,vsh,Other
mvm_underground_rc3_intermediat,206,0.000462%,mvm,Man vs Machine
mvm_coaltown_destruction,206,0.000462%,mvm,Man vs Machine
trade_minecraft_rmes-v2,206,0.000462%,trade,Trade and Achievement
fun_knedlov_v4,206,0.000462%,fun,Other
tfdb_rows_a2,205,0.000460%,tfdb,Other
silver_valley_c1,205,0.000460%,silver,Other
cp_snakewater_u9,205,0.000460%,cp,Capture Point
dr_spooky,204,0.000458%,dr,Other
surf_oa_bigramp_b2,204,0.000458%,surf,Other
zf_rocket_a2,204,0.000458%,zf,Other
arena_capricorn_b1,204,0.000458%,arena,Other
tfdb_sandvichfields_g,204,0.000458%,tfdb,Other
vsh_warehouse2_b1,204,0.000458%,vsh,Other
tfdb_team_oragnebox_a1,204,0.000458%,tfdb,Other
ctf_2fort_2012_night,203,0.000456%,ctf,Capture the Flag
vsh_haunted_fall_event,203,0.000456%,vsh,Other
cp_toyfort2_lv,203,0.000456%,cp,Capture Point
zf_somethingorother_fix2,202,0.000453%,zf,Other
mvm_overlord_b3_advanced2_high_,202,0.000453%,mvm,Man vs Machine
zf_twilight_v3_pk,202,0.000453%,zf,Other
jump_squared_b2,202,0.000453%,jump,Other
jump_puni_a4a,202,0.000453%,jump,Other
jump_aurora_a3,202,0.000453%,jump,Other
koth_combustion_b1,201,0.000451%,koth,King of the Hill
surf_glass5,201,0.000451%,surf,Other
dr_foundry_v6,201,0.000451%,dr,Other
mvm_bigrock_reveng_ironman,201,0.000451%,mvm,Man vs Machine
cp_orange_x3-4_dusk,201,0.000451%,cp,Capture Point
cp_stoneyridge_rc1,201,0.000451%,cp,Capture Point
mvm_area_52_rc3_intermediate,201,0.000451%,mvm,Man vs Machine
zf_nightcrop,201,0.000451%,zf,Other
trade_manor_of_fun,200,0.000449%,trade,Trade and Achievement
cp_snowcrystal_rc8,200,0.000449%,cp,Capture Point
arena_sacrifice_b2,200,0.000449%,arena,Other
vsh_stream_platform_texw,200,0.000449%,vsh,Other
achievement_aloof_complete,200,0.000449%,achievement,Trade and Achievement
fw_2way3_v2,200,0.000449%,fw,Other
surf_transient,200,0.000449%,surf,Other
mvm_decoyinvasion_normal,199,0.000447%,mvm,Man vs Machine
jump_4starters_a9,199,0.000447%,jump,Other
vsh_run_king_kuk_v5,199,0.000447%,vsh,Other
plr_hightower_tdm_r4a3,199,0.000447%,plr,Payload Race
vsh_wintermountains,199,0.000447%,vsh,Other
fw_fallfall2_v5,198,0.000444%,fw,Other
cp_overgrown_b5a,198,0.000444%,cp,Capture Point
mvm_atomgrad_a6a,198,0.000444%,mvm,Man vs Machine
ctf_routegs,198,0.000444%,ctf,Capture the Flag
jump_azure,198,0.000444%,jump,Other
arena_platforms_final,198,0.000444%,arena,Other
surf_2012,198,0.000444%,surf,Other
mvm_bigrock_alias_expert1,198,0.000444%,mvm,Man vs Machine
vsh_partyisland_v3,198,0.000444%,vsh,Other
plr_valentine_b2,198,0.000444%,plr,Payload Race
mvm_intercept_a11_advanced1,198,0.000444%,mvm,Man vs Machine
mvm_paradigm_a9_normal,198,0.000444%,mvm,Man vs Machine
bhop_fly_lovers,197,0.000442%,bhop,Other
mvm_terrorlict_normal,197,0.000442%,mvm,Man vs Machine
arena_tundra_b5,197,0.000442%,arena,Other
szf_graveyardbash_v1,197,0.000442%,szf,Other
koth_harvest,197,0.000442%,koth,King of the Hill
jump_start_h,197,0.000442%,jump,Other
vsh_dr_cocainum_ducks_final,196,0.000440%,vsh,Other
sb_winc_b2,196,0.000440%,sb,Other
koth_quarry_rc5,196,0.000440%,koth,King of the Hill
mvm_mannworks_click_advanced1,196,0.000440%,mvm,Man vs Machine
dm_halo_bloodgulch,195,0.000438%,dm,Deathmatch
mvm_thedust_b3_advanced1,195,0.000438%,mvm,Man vs Machine
dm_stanica_v04,195,0.000438%,dm,Deathmatch
tfdb_volcano_ff_2,195,0.000438%,tfdb,Other
tfdb_revolution_beta,195,0.000438%,tfdb,Other
koth_yeoldewhirligig,195,0.000438%,koth,King of the Hill
cp_logjam_rc3,195,0.000438%,cp,Capture Point
dr_dlux_tf2_v5,195,0.000438%,dr,Other
cp_heaven_b3a,195,0.000438%,cp,Capture Point
arena_potato_v6,194,0.000435%,arena,Other
mvm_coaltown_ponies1,194,0.000435%,mvm,Man vs Machine
surf_neo_njv,194,0.000435%,surf,Other
vsh_citypeak_v1_1,194,0.000435%,vsh,Other
vsh_barn_b8,194,0.000435%,vsh,Other
vsh_dr_slay_b5_fix,194,0.000435%,vsh,Other
trade_kfs_v1,194,0.000435%,trade,Trade and Achievement
arena_melee_fort_a13,193,0.000433%,arena,Other
cp_orange_x666,193,0.000433%,cp,Capture Point
vsh_polygon_v3,193,0.000433%,vsh,Other
mvm_sewer_invasion_event_b7_ube,193,0.000433%,mvm,Man vs Machine
arena_2camp_b1,193,0.000433%,arena,Other
koth_wubwubwub_remix_v,193,0.000433%,koth,King of the Hill
jump_broccoli,193,0.000433%,jump,Other
jump_rnc_a1,192,0.000431%,jump,Other
jump_ugly_b4,192,0.000431%,jump,Other
trade_power_core_b9,192,0.000431%,trade,Trade and Achievement
vsh_house_of_fun_fix,192,0.000431%,vsh,Other
jump_housebeta,192,0.000431%,jump,Other
vsh_biggerthanmydick,192,0.000431%,vsh,Other
vsh_magic_wc_egay,192,0.000431%,vsh,Other
gm_temple_v8,192,0.000431%,gm,Other
surf_network_2009_njv,192,0.000431%,surf,Other
pl_boxcanyon_rc9,192,0.000431%,pl,Payload
mvm_powerplant_rc1_intermediate,192,0.000431%,mvm,Man vs Machine
bhop_lego_rc1,192,0.000431%,bhop,Other
cp_ohho,192,0.000431%,cp,Capture Point
jump_rnc_a4,192,0.000431%,jump,Other
mvm_decoy_masters,192,0.000431%,mvm,Man vs Machine
mvm_bigrock_invasion,192,0.000431%,mvm,Man vs Machine
fw_minecraft_az,192,0.000431%,fw,Other
vsh_atollday_v5a,191,0.000429%,vsh,Other
tf2hats_unusual_trade_v9,191,0.000429%,tf2hats,Other
mvm_mannhattan_uberupgrades,191,0.000429%,mvm,Man vs Machine
dr_factory_v3b,191,0.000429%,dr,Other
vsh_potato_v6,191,0.000429%,vsh,Other
vsh_military_area_rhs,191,0.000429%,vsh,Other
trade_minecraft_reborn,191,0.000429%,trade,Trade and Achievement
fw_black_v3z,191,0.000429%,fw,Other
jump_overhead,191,0.000429%,jump,Other
arena_waterworks_b1,190,0.000426%,arena,Other
mario_kart_2012a,190,0.000426%,mario,Other
jump_drought_b1,190,0.000426%,jump,Other
ph_petitcourtyard_v1b,190,0.000426%,ph,Other
vsh_totland_v2,190,0.000426%,vsh,Other
fw_buka_b3z,190,0.000426%,fw,Other
sb_deserted_canyon_4,190,0.000426%,sb,Other
ba_jail_orange,190,0.000426%,ba,Other
ph_spookyfeud_b1_final,190,0.000426%,ph,Other
tr_karma,189,0.000424%,tr,Other
tfdbr_swagrocket,189,0.000424%,tfdbr,Other
arena_critical,189,0.000424%,arena,Other
pl_floodgates_b7,189,0.000424%,pl,Payload
trade_clickclockwood_kz1,189,0.000424%,trade,Trade and Achievement
ctf_mach4,189,0.000424%,ctf,Capture the Flag
surf_fury_v5_fix_kd,188,0.000422%,surf,Other
mvm_wharf_s12_advanced,188,0.000422%,mvm,Man vs Machine
tr_ctap_practice,188,0.000422%,tr,Other
ctf_pro_bball,188,0.000422%,ctf,Capture the Flag
mvm_cybertown_cyberfy,188,0.000422%,mvm,Man vs Machine
surf_missing_no,188,0.000422%,surf,Other
arena_farm_v2,188,0.000422%,arena,Other
vsh_west_data,188,0.000422%,vsh,Other
vsh_rbok_ridge_v4,188,0.000422%,vsh,Other
jump_bonus,188,0.000422%,jump,Other
mvm_ma_ep12b3_1_fixed_normal,188,0.000422%,mvm,Man vs Machine
cp_nothing_a8,188,0.000422%,cp,Capture Point
dr_hereafter_vb4,188,0.000422%,dr,Other
achievement_siusiaczkowo_v8a,188,0.000422%,achievement,Trade and Achievement
tfdb_satellite_v1_mr,188,0.000422%,tfdb,Other
dr_hotdesert_b5_fix_12_d,188,0.000422%,dr,Other
dm_warehouse,187,0.000420%,dm,Deathmatch
mvm_newnormandy,187,0.000420%,mvm,Man vs Machine
fw_medieval_classic_v2,187,0.000420%,fw,Other
trade_tea_plaza_v1_b,187,0.000420%,trade,Trade and Achievement
pl_orange,187,0.000420%,pl,Payload
tr_medic_xbow,187,0.000420%,tr,Other
dr_jpcity_v1fa,187,0.000420%,dr,Other
surf_amplitude_encore,187,0.000420%,surf,Other
mvm_coaltown_robotermesser_by_n,186,0.000418%,mvm,Man vs Machine
mvm_open_final_industry_normal,186,0.000418%,mvm,Man vs Machine
jump_shiver,186,0.000418%,jump,Other
trade_minecraft_villag,186,0.000418%,trade,Trade and Achievement
mvm_decoy_cash_backup,186,0.000418%,mvm,Man vs Machine
mvm_oilrig_rc3_advanced,185,0.000415%,mvm,Man vs Machine
dm_mariokart2_b2v2,185,0.000415%,dm,Deathmatch
mvm_troopers_defend_fawosfix_ma,185,0.000415%,mvm,Man vs Machine
vsh_high_8bit_final2,185,0.000415%,vsh,Other
mvm_castle_defense_a4,185,0.000415%,mvm,Man vs Machine
szf_manncoscience_v3,185,0.000415%,szf,Other
jump_sweetnawful_rc1,185,0.000415%,jump,Other
cp_orange_church_x4,185,0.000415%,cp,Capture Point
cp_cardinal_b1,185,0.000415%,cp,Capture Point
vsh_totland_v3_3,184,0.000413%,vsh,Other
tfdb_desert_madness_a9_rm,184,0.000413%,tfdb,Other
koth_arctic_b2a,184,0.000413%,koth,King of the Hill
fw_3fort_a1,184,0.000413%,fw,Other
mvm_coaltown_urist,184,0.000413%,mvm,Man vs Machine
vsh_pentegonia_a4,184,0.000413%,vsh,Other
pl_badwater_pro_v8,184,0.000413%,pl,Payload
sn_sniprvolcano,184,0.000413%,sn,Other
surf_effortless_clean,184,0.000413%,surf,Other
mvm_wizardry_click,184,0.000413%,mvm,Man vs Machine
vsh_cd_variosmapas,184,0.000413%,vsh,Other
mvm_decoy_drill_destroyer,184,0.000413%,mvm,Man vs Machine
mvm_mannworks_cash,184,0.000413%,mvm,Man vs Machine
vsh_fuck_machine_by_dahe,183,0.000411%,vsh,Other
mvm_underground_b5,183,0.000411%,mvm,Man vs Machine
vsh_overland_a1,183,0.000411%,vsh,Other
mvm_coaltown_30wave_v60_lvl3,183,0.000411%,mvm,Man vs Machine
koth_twisted,183,0.000411%,koth,King of the Hill
ctf_minecraft_tunnel_finalv2,182,0.000409%,ctf,Capture the Flag
mvm_mannstate_a10_normal,182,0.000409%,mvm,Man vs Machine
dr_delay_b1_fixed,182,0.000409%,dr,Other
koth_appelsiini_v4,182,0.000409%,koth,King of the Hill
tfdb_bowsers_revenge_b7,182,0.000409%,tfdb,Other
jump_network_b1,182,0.000409%,jump,Other
mvm_coaltown_16wave,181,0.000406%,mvm,Man vs Machine
coop_egypt_alpha,181,0.000406%,coop,Other
jump_benny,181,0.000406%,jump,Other
fw_mannor_v1b,181,0.000406%,fw,Other
koth_hatmans_maze,181,0.000406%,koth,King of the Hill
fw_zsy_2plat_b2z,181,0.000406%,fw,Other
arena_mariobros,181,0.000406%,arena,Other
dr_winterhill_v2,181,0.000406%,dr,Other
ctf_colorblind_b1,181,0.000406%,ctf,Capture the Flag
sv_nacht_der_untoten_rc1,180,0.000404%,sv,Other
your_best_friend,180,0.000404%,your,Other
mvm_foundry_mannhattan_advanced,180,0.000404%,mvm,Man vs Machine
trade_aoag_biodome,180,0.000404%,trade,Trade and Achievement
jump_mireal2_final,180,0.000404%,jump,Other
vsh_roadtonowhere_v5,180,0.000404%,vsh,Other
koth_variousartists_rc2,180,0.000404%,koth,King of the Hill
mvm_meltdown_rc4_intermediate,180,0.000404%,mvm,Man vs Machine
surf_1930s_colour,180,0.000404%,surf,Other
vsh_dr_industry_a3,180,0.000404%,vsh,Other
vsh_magic_jc_ruinsfight_b3,180,0.000404%,vsh,Other
mvm_decay_rc1a_nightmare,179,0.000402%,mvm,Man vs Machine
mvm_rottenburg_advanced2+,179,0.000402%,mvm,Man vs Machine
trade_minecraft_river_s112,179,0.000402%,trade,Trade and Achievement
dr_weaver_1_b8,179,0.000402%,dr,Other
vsh_purgatorium_v6,179,0.000402%,vsh,Other
the_other_mario_kart,179,0.000402%,the,Other
vsh_eientei_v3,179,0.000402%,vsh,Other
surf_lexia,179,0.000402%,surf,Other
surf_ck_arena_big_v1,179,0.000402%,surf,Other
vsh_radwater_72,179,0.000402%,vsh,Other
pl_skyfortress_a12,179,0.000402%,pl,Payload
trade_monoculus,179,0.000402%,trade,Trade and Achievement
szf_ganon15_v322,178,0.000400%,szf,Other
trade_reactor_v34n,178,0.000400%,trade,Trade and Achievement
vsh_whompfortress,178,0.000400%,vsh,Other
ctf_arroyo_b8,178,0.000400%,ctf,Capture the Flag
pl_rumble_b5,178,0.000400%,pl,Payload
mvm_bigrock_advanced2+,178,0.000400%,mvm,Man vs Machine
arena_b_degroot_keep_v2a,178,0.000400%,arena,Other
vsh_moving_in_v4,178,0.000400%,vsh,Other
surf_animals,178,0.000400%,surf,Other
ctf_haarp,178,0.000400%,ctf,Capture the Flag
arena_appelsiini_final,177,0.000397%,arena,Other
vsh_towertop_final_lz,177,0.000397%,vsh,Other
ph_007facility_a6,177,0.000397%,ph,Other
arena_frogstomp_v035,177,0.000397%,arena,Other
bhop_nuclear,177,0.000397%,bhop,Other
koth_dam_a11,177,0.000397%,koth,King of the Hill
mvm_ratrace_a1a_normal,177,0.000397%,mvm,Man vs Machine
vsh_railyard_data,177,0.000397%,vsh,Other
jump_drexen,177,0.000397%,jump,Other
zs_crevice_b4,177,0.000397%,zs,Other
surf_vippers,177,0.000397%,surf,Other
vsh_delfinoplaza_zmbr,177,0.000397%,vsh,Other
surf_heaven_njv,176,0.000395%,surf,Other
cp_orange_citadel_b1,176,0.000395%,cp,Capture Point
vsh_cliffside_v4,176,0.000395%,vsh,Other
fw_mandrillmaze_v3_2,176,0.000395%,fw,Other
dr_asylum_a3,176,0.000395%,dr,Other
trade_scp,176,0.000395%,trade,Trade and Achievement
cp_reckoner_b2a,176,0.000395%,cp,Capture Point
mvm_area_52_rc1,176,0.000395%,mvm,Man vs Machine
surf_discovery,176,0.000395%,surf,Other
mvm_mannhattan_supadupa,176,0.000395%,mvm,Man vs Machine
mvm_tropics_a5_no2_tropical_tra,176,0.000395%,mvm,Man vs Machine
achievement_idle_awesomebox37_f,176,0.000395%,achievement,Trade and Achievement
jump_4soldier,176,0.000395%,jump,Other
surf_nerd-factory_v2,175,0.000393%,surf,Other
vsh_barricade_r2_fix,175,0.000393%,vsh,Other
mvm_hangtown_v1_3_advanced,175,0.000393%,mvm,Man vs Machine
vsh_factor_v2,175,0.000393%,vsh,Other
cp_gullywash,175,0.000393%,cp,Capture Point
cp_roof_runner_b1,175,0.000393%,cp,Capture Point
mvm_killing_fortress2_normal,175,0.000393%,mvm,Man vs Machine
dm_biosphere_v3,175,0.000393%,dm,Deathmatch
slender_frost_cave_b2a,175,0.000393%,slender,Other
mvm_ventus_b6,175,0.000393%,mvm,Man vs Machine
cp_orange_n5_beta5,175,0.000393%,cp,Capture Point
vsh_frozen_dawn_v2,174,0.000391%,vsh,Other
bhop_bobop,174,0.000391%,bhop,Other
cp_pony_fortress_rc3,174,0.000391%,cp,Capture Point
fw_lego_v6z,174,0.000391%,fw,Other
fw_tactical_a1_ctfz,174,0.000391%,fw,Other
vsh_wild_canyon_v2,174,0.000391%,vsh,Other
mvm_mannworks_mistake,174,0.000391%,mvm,Man vs Machine
surf_escapism,174,0.000391%,surf,Other
mvm_metro_rc1,174,0.000391%,mvm,Man vs Machine
jump_ingenii,174,0.000391%,jump,Other
arena_chime_72,174,0.000391%,arena,Other
mvm_decoy_uu99_test,174,0.000391%,mvm,Man vs Machine
vsh_dr_bank_v6,174,0.000391%,vsh,Other
vsh_nordhaven_special_pb1,173,0.000388%,vsh,Other
fw_qw_soomaaliya_v3,173,0.000388%,fw,Other
surf_fruits,173,0.000388%,surf,Other
fw_swampland_v2,173,0.000388%,fw,Other
pl_badwater_snowy,173,0.000388%,pl,Payload
surf_nolife_v2_tf,173,0.000388%,surf,Other
pl_orange_z1,173,0.000388%,pl,Payload
surf_tf_rebel_resistance,173,0.000388%,surf,Other
mvm_adventure_of_30wave_ep1_har,173,0.000388%,mvm,Man vs Machine
sk_scoutzknivez_v5,173,0.000388%,sk,Other
vsh_yammoe_v1,173,0.000388%,vsh,Other
trade_minecraft_hans_v36_sxh,173,0.000388%,trade,Trade and Achievement
mvm_coaltown_urist_easy,173,0.000388%,mvm,Man vs Machine
surf_cyanide,172,0.000386%,surf,Other
mvm_strider_a6_normal,172,0.000386%,mvm,Man vs Machine
fw_bd_b1_wfixz,172,0.000386%,fw,Other
mvm_downtown_final1_advanced,172,0.000386%,mvm,Man vs Machine
surf_syria,172,0.000386%,surf,Other
mvm_warehouse_v1_endurance,172,0.000386%,mvm,Man vs Machine
pl_skyfortress_a11,172,0.000386%,pl,Payload
sb_nitefight_final3_jugfix,172,0.000386%,sb,Other
tree_str_remake_r6f3,171,0.000384%,tree,Other
vsh_magazine_wfix,171,0.000384%,vsh,Other
mvm_thedust_b2_intermediate1,171,0.000384%,mvm,Man vs Machine
surf_happyhands2,171,0.000384%,surf,Other
mvm_troopers_defend_fawosfix_co,171,0.000384%,mvm,Man vs Machine
bhop_elevate,171,0.000384%,bhop,Other
slender_biotics_lab_v1,171,0.000384%,slender,Other
mvm_bigrock_survival,171,0.000384%,mvm,Man vs Machine
ph_manorgrounds_a3,171,0.000384%,ph,Other
mvm_machine_attacks_ep12b2,170,0.000382%,mvm,Man vs Machine
trade_minecraft_sk_v4,170,0.000382%,trade,Trade and Achievement
mvm_mannhattan_chaotic,170,0.000382%,mvm,Man vs Machine
mvm_gateway_b1a_normal,170,0.000382%,mvm,Man vs Machine
jump_exilenpals,170,0.000382%,jump,Other
pl_pier_b4,170,0.000382%,pl,Payload
fw_highwayz,170,0.000382%,fw,Other
arena_northural_v1,169,0.000379%,arena,Other
mvm_foundry_30wave_v60_lvl3,169,0.000379%,mvm,Man vs Machine
vsh_killbox_8bit_final,169,0.000379%,vsh,Other
surf_sandtrap,169,0.000379%,surf,Other
mvm_newnormandy_blackout,169,0.000379%,mvm,Man vs Machine
pl_metric_a1,169,0.000379%,pl,Payload
vsh_bloodnbacon_v1a,169,0.000379%,vsh,Other
mvm_ghost_town_dr.os_horde,169,0.000379%,mvm,Man vs Machine
cp_orange_x7,168,0.000377%,cp,Capture Point
arena_cavern,168,0.000377%,arena,Other
mvm_adventure_of_30wave_ep3,168,0.000377%,mvm,Man vs Machine
zs_dustbowl_j5,168,0.000377%,zs,Other
mvm_wizardry,168,0.000377%,mvm,Man vs Machine
trade_sinfulplaza_v4,168,0.000377%,trade,Trade and Achievement
trademon_plaza2,168,0.000377%,trademon,Other
surf_ny_resist_final,168,0.000377%,surf,Other
surf_roman,168,0.000377%,surf,Other
surf_concept,168,0.000377%,surf,Other
uas_trade_v2_beta_08_h,168,0.000377%,uas,Other
koth_traingrid_b2,168,0.000377%,koth,King of the Hill
mvm_coaltown_escape_plan,168,0.000377%,mvm,Man vs Machine
pl_beerbowl_b8,167,0.000375%,pl,Payload
fw_temple_a2,167,0.000375%,fw,Other
jump_concept_a5,167,0.000375%,jump,Other
fw_deep_v1bz,167,0.000375%,fw,Other
jump_dreamy_final,167,0.000375%,jump,Other
trade_minecraft_ki_a8,167,0.000375%,trade,Trade and Achievement
mvm_mannworks_uberup_easy,167,0.000375%,mvm,Man vs Machine
vsh_magic_wc_test,166,0.000373%,vsh,Other
vsh_haat_lz_b3a,166,0.000373%,vsh,Other
jump_ezekiel_beta3,166,0.000373%,jump,Other
vsh_killbox_qcpower_new_b1,166,0.000373%,vsh,Other
mvm_ma_ep14_1_normal,166,0.000373%,mvm,Man vs Machine
sa_echidna_shrine,166,0.000373%,sa,Other
mvm_decoy_fungamebluv2,166,0.000373%,mvm,Man vs Machine
dr_lunaspark_finalfix,165,0.000370%,dr,Other
mvm_machine_atks_ep12b2_sh1,165,0.000370%,mvm,Man vs Machine
arena_outpost_b1,165,0.000370%,arena,Other
vsh_craft_kingdom_v4,165,0.000370%,vsh,Other
ph_007skyrail_v1,165,0.000370%,ph,Other
pl_enclosure_rc3c,165,0.000370%,pl,Payload
mvm_coaltown_marathump_festive,165,0.000370%,mvm,Man vs Machine
dr_supermonkeyball_v3_1,165,0.000370%,dr,Other
cp_broma,164,0.000368%,cp,Capture Point
sb_citypeak_v2,164,0.000368%,sb,Other
mvm_manndarin_final_blast_stand,164,0.000368%,mvm,Man vs Machine
tfdb_thymo_db02,164,0.000368%,tfdb,Other
dm_funland_v3,164,0.000368%,dm,Deathmatch
koth_annex_b2,164,0.000368%,koth,King of the Hill
arena_goldtooth,164,0.000368%,arena,Other
arena_blackout_a1,164,0.000368%,arena,Other
vsh_backlot_event,164,0.000368%,vsh,Other
tfdbr_whitebox_remake_a3,163,0.000366%,tfdbr,Other
ctf_extraction_a4,163,0.000366%,ctf,Capture the Flag
surf_venice_v2,163,0.000366%,surf,Other
koth_sky_fortress_b2,163,0.000366%,koth,King of the Hill
cube_alpinevalley,163,0.000366%,cube,Other
vsh_jie_cao_dark,163,0.000366%,vsh,Other
fw_rush_aricaharbor_v4,162,0.000364%,fw,Other
mvm_decoy_uberup_advanced,162,0.000364%,mvm,Man vs Machine
trade_d,162,0.000364%,trade,Trade and Achievement
surf_amplitude_apex,162,0.000364%,surf,Other
dr_psykopat2,162,0.000364%,dr,Other
mvm_coaltown_survival_objlessgi,162,0.000364%,mvm,Man vs Machine
mvm_botfort_b1,162,0.000364%,mvm,Man vs Machine
fw_fallfall_v5,162,0.000364%,fw,Other
bhop_cobblestone,162,0.000364%,bhop,Other
mvm_countryside_expert,162,0.000364%,mvm,Man vs Machine
dr_mirage_v1_f,162,0.000364%,dr,Other
fw_ww2_grad_v1,161,0.000361%,fw,Other
tfdb_potato_v3,161,0.000361%,tfdb,Other
surf_basewar_beta3,161,0.000361%,surf,Other
pl_moonbase_b9,161,0.000361%,pl,Payload
vsh_2fort_lz_b2,161,0.000361%,vsh,Other
bhop_eazy,161,0.000361%,bhop,Other
dr_weaver_3_b6,161,0.000361%,dr,Other
zf_steel_b5,161,0.000361%,zf,Other
trade_nexus_b2,161,0.000361%,trade,Trade and Achievement
surf_zbig_rc2,161,0.000361%,surf,Other
mvm_coaltown_world_war_z,161,0.000361%,mvm,Man vs Machine
mvm_decoy_invasionmp,161,0.000361%,mvm,Man vs Machine
dm_orange_fn2,161,0.000361%,dm,Deathmatch
trade_center_b1,160,0.000359%,trade,Trade and Achievement
2fort_snipertraining,160,0.000359%,2fort,Other
tfdb_mc_pyramids_v1b,160,0.000359%,tfdb,Other
zf_abased_sp2,160,0.000359%,zf,Other
pl_auriferous_rc14,160,0.000359%,pl,Payload
surf_amplitude_light,160,0.000359%,surf,Other
vsh_hyrule_castle_v3,160,0.000359%,vsh,Other
mvm_ma_ep12b1_1_fixed_normal,160,0.000359%,mvm,Man vs Machine
tfdb_zouzou_b1,160,0.000359%,tfdb,Other
jump_gaylord2,160,0.000359%,jump,Other
dr_finished_fix3,159,0.000357%,dr,Other
mvm_beachsight_a7_mannworks_end,159,0.000357%,mvm,Man vs Machine
slender_frost_run_b2a,159,0.000357%,slender,Other
tfdb_harvest_event_a4,159,0.000357%,tfdb,Other
pl_woodland_final,159,0.000357%,pl,Payload
sb_temple_v2,159,0.000357%,sb,Other
vsh_axe_castle_v6,159,0.000357%,vsh,Other
surf_syria_again_njv,159,0.000357%,surf,Other
surf_greatriver_gon,159,0.000357%,surf,Other
cp_orange_cross_x4,159,0.000357%,cp,Capture Point
jump_finite_a2,159,0.000357%,jump,Other
mvm_rottenburg_cash,159,0.000357%,mvm,Man vs Machine
arghhh_tf,159,0.000357%,arghhh,Other
trade_lunarpumpkin_v021,158,0.000355%,trade,Trade and Achievement
the_flowey_map,158,0.000355%,the,Other
tfdb_partyisland_nobright,158,0.000355%,tfdb,Other
zf_deathrush_v3,158,0.000355%,zf,Other
surf_goat,158,0.000355%,surf,Other
heavyboxing_v7,158,0.000355%,heavyboxing,Other
pl_altitude_a9,158,0.000355%,pl,Payload
mvm_thedust_b3_mannhattan_advan,158,0.000355%,mvm,Man vs Machine
sn_degklump_final,158,0.000355%,sn,Other
dr_supermario64_v4,158,0.000355%,dr,Other
koth_factory_v2,158,0.000355%,koth,King of the Hill
pl_dbheights_v3,158,0.000355%,pl,Payload
arena_waterfort_winter_fix7,158,0.000355%,arena,Other
achievement_factory_v2,157,0.000352%,achievement,Trade and Achievement
tfdb_owls,157,0.000352%,tfdb,Other
arena_shale,157,0.000352%,arena,Other
koth_sekhmet_b4,157,0.000352%,koth,King of the Hill
dr_nobbly_traps_v1a,157,0.000352%,dr,Other
mvm_adventure_of_30wave_ep1_eas,157,0.000352%,mvm,Man vs Machine
pd_elvvis2,157,0.000352%,pd,Other
kart_block_fort_v1,157,0.000352%,kart,Other
jump_ultimatebuttfucker_a2,157,0.000352%,jump,Other
vsh_redbluplatform_b4,157,0.000352%,vsh,Other
surf_life_of_duck,157,0.000352%,surf,Other
sniper_orange,157,0.000352%,sniper,Other
pl_effigy_rc2,157,0.000352%,pl,Payload
mvm_rottenburg_tyrant,157,0.000352%,mvm,Man vs Machine
tfdb_mechasurfball_fix,156,0.000350%,tfdb,Other
koth_sandviches,156,0.000350%,koth,King of the Hill
mvm_mannhattan_storymode,156,0.000350%,mvm,Man vs Machine
vsh_pl_spooky_gorge_v4,156,0.000350%,vsh,Other
ctf_transit_a3,156,0.000350%,ctf,Capture the Flag
bhop_cubefield_remastered,156,0.000350%,bhop,Other
psf_gm_construct_re_v2,156,0.000350%,psf,Other
surf_dust_paradise_final_2,156,0.000350%,surf,Other
jump_inhouse_a5,156,0.000350%,jump,Other
koth_bwo_undercranes,156,0.000350%,koth,King of the Hill
dtc_orange_factory_tbr1,156,0.000350%,dtc,Other
dbs_rooftops2_b3b,156,0.000350%,dbs,Other
arena_temper_rc1,156,0.000350%,arena,Other
jump_sira_alpha,156,0.000350%,jump,Other
tfdb_baseball_a4_maxdb,155,0.000348%,tfdb,Other
mvm_hydro_a3_historyoftf,155,0.000348%,mvm,Man vs Machine
fw_bridge_a1z,155,0.000348%,fw,Other
mvm_ma_ep16_1_fixed_easy,155,0.000348%,mvm,Man vs Machine
fw_ut_facing_worlds_v2,155,0.000348%,fw,Other
koth_ponyville_b4,155,0.000348%,koth,King of the Hill
bhop_eazy_4xl,155,0.000348%,bhop,Other
arena_another_orange,155,0.000348%,arena,Other
jump_bouncerific_v2,155,0.000348%,jump,Other
sb_spaceland_v2,155,0.000348%,sb,Other
mvm_decoy_blu12wave,154,0.000346%,mvm,Man vs Machine
dr_cliffsideb6,154,0.000346%,dr,Other
mvm_rottenburg_semlab_c5,154,0.000346%,mvm,Man vs Machine
mge_dueling_v1_fix1,154,0.000346%,mge,Other
trade_bearitory2_a2,154,0.000346%,trade,Trade and Achievement
cp_orange_towers,154,0.000346%,cp,Capture Point
dr_coldmetal_rebalance_fix,154,0.000346%,dr,Other
cp_orange_vertical,154,0.000346%,cp,Capture Point
cp_studio_rc4,154,0.000346%,cp,Capture Point
ph_venice_a2a,154,0.000346%,ph,Other
mvm_ghost_town_uberupgrades,154,0.000346%,mvm,Man vs Machine
tfdbr_rocketbucks_v2,154,0.000346%,tfdbr,Other
vsh_dryway_final1,154,0.000346%,vsh,Other
zf_warhead_mesa_b1,154,0.000346%,zf,Other
jump_aggregate,154,0.000346%,jump,Other
dr_hallway_beta3,153,0.000343%,dr,Other
cs_italy,153,0.000343%,cs,Other
room2016_void,153,0.000343%,room2016,Other
jump_academy_beta3,153,0.000343%,jump,Other
mvm_rottenburg_gmt_normal,153,0.000343%,mvm,Man vs Machine
koth_goldeneye_temple_a1,153,0.000343%,koth,King of the Hill
cp_beidian_a3,153,0.000343%,cp,Capture Point
surf_apotheosis_v2,153,0.000343%,surf,Other
cp_orange_x3_floserver_v4,153,0.000343%,cp,Capture Point
mvm_wildfortress,153,0.000343%,mvm,Man vs Machine
pl_losthorizon_b8,153,0.000343%,pl,Payload
mvm_bigrock_ponies3,153,0.000343%,mvm,Man vs Machine
mvm_bigrock_click_advanced1,153,0.000343%,mvm,Man vs Machine
achievement_egypt_night++,153,0.000343%,achievement,Trade and Achievement
tfdb_thymo_db03_a7,153,0.000343%,tfdb,Other
cp_orange__x__hm,153,0.000343%,cp,Capture Point
jump_onit_b4_fix,152,0.000341%,jump,Other
vsh_gem_arena_b1,152,0.000341%,vsh,Other
vsh_hl2_resistance,152,0.000341%,vsh,Other
ctf_bball2,152,0.000341%,ctf,Capture the Flag
koth_garbage_day_data,152,0.000341%,koth,King of the Hill
koth_pro_viaduct_rc3,152,0.000341%,koth,King of the Hill
bhop_flatzone,152,0.000341%,bhop,Other
mvm_skullcove_rc1_nightmare,152,0.000341%,mvm,Man vs Machine
cp_purple_x_fix,152,0.000341%,cp,Capture Point
surf_forbidden_tomb4,152,0.000341%,surf,Other
cp_kalinka_b4,152,0.000341%,cp,Capture Point
mvm_tunnels_a7_advanced1,151,0.000339%,mvm,Man vs Machine
pd_meme_machine_rc4,151,0.000339%,pd,Other
fw_aquarium_v3,151,0.000339%,fw,Other
surf_beginner_hell,151,0.000339%,surf,Other
cp_cow_a2,151,0.000339%,cp,Capture Point
vsh_warebloom_redux_v3,151,0.000339%,vsh,Other
mvm_machine_atks_ep0_sh1,151,0.000339%,mvm,Man vs Machine
trade_rdg_b43_alpha,151,0.000339%,trade,Trade and Achievement
mvm_decoy_e-visceration_festive,151,0.000339%,mvm,Man vs Machine
mvm_adventure_of_30wave_ep2,151,0.000339%,mvm,Man vs Machine
mvm_bigrock_30wave,151,0.000339%,mvm,Man vs Machine
bhop_redshit,151,0.000339%,bhop,Other
dbs_champion_b21b,150,0.000337%,dbs,Other
mvm_bwo_undercranes,150,0.000337%,mvm,Man vs Machine
trade_oot3d_hyrule,150,0.000337%,trade,Trade and Achievement
surf_sinister2,150,0.000337%,surf,Other
vsh_livingroom_v3_redux2,150,0.000337%,vsh,Other
mvm_volcano_a4_normal,150,0.000337%,mvm,Man vs Machine
mvm_ma_ep15_1_hard,150,0.000337%,mvm,Man vs Machine
vsh_killbox_lego_hk_tf2_b4,150,0.000337%,vsh,Other
pl_goldheist_canyon_fi,150,0.000337%,pl,Payload
zf_stinks,150,0.000337%,zf,Other
szf_chillchain_a_ig,150,0.000337%,szf,Other
trade_frostbyte,149,0.000334%,trade,Trade and Achievement
surf_blockfortv1,149,0.000334%,surf,Other
ctf_bball_alpine_b4,149,0.000334%,ctf,Capture the Flag
mvm_ventus_b6_advanced2,149,0.000334%,mvm,Man vs Machine
surf_elysium,149,0.000334%,surf,Other
psf_frozen_basett_v14,149,0.000334%,psf,Other
mvm_ma_ep16_1_fixed_normal,149,0.000334%,mvm,Man vs Machine
ph_goodwater_v3,149,0.000334%,ph,Other
surf_crater,148,0.000332%,surf,Other
fw_bd_adoorz,148,0.000332%,fw,Other
jump_typh_a5,148,0.000332%,jump,Other
arena_boombastic,148,0.000332%,arena,Other
mvm_yucatan_halloween_b3_normal,148,0.000332%,mvm,Man vs Machine
ctf_underside_1_1,148,0.000332%,ctf,Capture the Flag
mvm_machine_attacks_ep10b_s1,148,0.000332%,mvm,Man vs Machine
mvm_ventus_b5,148,0.000332%,mvm,Man vs Machine
arena_badman_manor,148,0.000332%,arena,Other
sb_iron_temple_b3,148,0.000332%,sb,Other
surf_overcast_v1_kd,148,0.000332%,surf,Other
surf_funzor_reloaded,148,0.000332%,surf,Other
jump_endurance_rc2,147,0.000330%,jump,Other
sd_holiday,147,0.000330%,sd,Other
mvm_rottenburg_the_machine_comp,147,0.000330%,mvm,Man vs Machine
tfdb_waterbox,147,0.000330%,tfdb,Other
arena_timberworks_b2a,147,0.000330%,arena,Other
mvm_area_52_rc1_advanced2,147,0.000330%,mvm,Man vs Machine
jump_why_rc3,146,0.000328%,jump,Other
surf_koth_air_arena_v4,146,0.000328%,surf,Other
tyler_rocket_shooting_v3_regen,146,0.000328%,tyler,Other
zf_ravine_fix2_ig,146,0.000328%,zf,Other
cp_skull_island_b2,146,0.000328%,cp,Capture Point
mvm_plateau_b5_normal,146,0.000328%,mvm,Man vs Machine
fw_league_of_legends_1_v6d,146,0.000328%,fw,Other
cp_orange_s2gaming,146,0.000328%,cp,Capture Point
mvm_ghost_town_urist,146,0.000328%,mvm,Man vs Machine
cp_snowlands,145,0.000325%,cp,Capture Point
zf_office2_final_ig,145,0.000325%,zf,Other
vsh_badlands_lz_b2,145,0.000325%,vsh,Other
koth_xuanya_b2,145,0.000325%,koth,King of the Hill
vsh_avanpost_b1,145,0.000325%,vsh,Other
jump_bb_city_a2,145,0.000325%,jump,Other
trade_fun_parkv5,145,0.000325%,trade,Trade and Achievement
vip_hunted_043,145,0.000325%,vip,Other
vsh_coulee_a6,145,0.000325%,vsh,Other
vsh_2fort_a2,145,0.000325%,vsh,Other
koth_jinglejam_rc2,145,0.000325%,koth,King of the Hill
cp_dust_joking,145,0.000325%,cp,Capture Point
bhop_eazy_v2,145,0.000325%,bhop,Other
jump_serpentine_final,145,0.000325%,jump,Other
sb_icicle_pyramid_a4,145,0.000325%,sb,Other
cp_granary_pro_rc6,144,0.000323%,cp,Capture Point
pl_spacebase_b4c,144,0.000323%,pl,Payload
vsh_lavatower_a2,144,0.000323%,vsh,Other
vsh_dr_factory_v2e,144,0.000323%,vsh,Other
mvm_processingv1_ironman_mw,144,0.000323%,mvm,Man vs Machine
vsh_midtown_night2,144,0.000323%,vsh,Other
ph_courtyard_v1_5,144,0.000323%,ph,Other
mvm_decoy_30_waves_v37,144,0.000323%,mvm,Man vs Machine
cp_drylock_b2,144,0.000323%,cp,Capture Point
fw_fortwars_hb_e_d,144,0.000323%,fw,Other
vsh_frothandtransit_v5,144,0.000323%,vsh,Other
ph_courtyard_v1_7,144,0.000323%,ph,Other
vsh_magic_jc_tinyfight_b1,144,0.000323%,vsh,Other
pl_abandoned_upward_finalfix2,143,0.000321%,pl,Payload
jump_super_v5,143,0.000321%,jump,Other
ph_petitcourtyard_v1a,143,0.000321%,ph,Other
mvm_bigrock_boner,143,0.000321%,mvm,Man vs Machine
arena_oilrig_v1,143,0.000321%,arena,Other
cp_airraid_b2a,143,0.000321%,cp,Capture Point
arena_longshore_v1,143,0.000321%,arena,Other
cp_deepwoods_a2,143,0.000321%,cp,Capture Point
vsh_killbox_fix_v5,143,0.000321%,vsh,Other
dr_assassinate_v2p,143,0.000321%,dr,Other
mvm_rottenburg_ponies2,143,0.000321%,mvm,Man vs Machine
pl_crash_72_2,142,0.000319%,pl,Payload
zf_siberia_a4,142,0.000319%,zf,Other
slender_troubled_a3_demonhamste,142,0.000319%,slender,Other
vsh_oilrig_v9,142,0.000319%,vsh,Other
mvm_ma_ep11_1_hard,142,0.000319%,mvm,Man vs Machine
trade_hazy_maze_cave,142,0.000319%,trade,Trade and Achievement
surf_crush,142,0.000319%,surf,Other
mvm_bigrock_engineers_quest,142,0.000319%,mvm,Man vs Machine
mvm_rottenburg_click_advanced1,142,0.000319%,mvm,Man vs Machine
koth_orange_quarry,142,0.000319%,koth,King of the Hill
vsh_flat_b1,142,0.000319%,vsh,Other
jump_silly_a8,142,0.000319%,jump,Other
mvm_decoy_ponies2,142,0.000319%,mvm,Man vs Machine
sb_helix_v1b,142,0.000319%,sb,Other
mvm_decoy_dev4_the_rise_of_the_,141,0.000317%,mvm,Man vs Machine
trade_rdg_b17_demo,141,0.000317%,trade,Trade and Achievement
koth_coalplant_b6,141,0.000317%,koth,King of the Hill
szf_hellcastle_b3,141,0.000317%,szf,Other
dm_upward,141,0.000317%,dm,Deathmatch
mvm_volcano_a4,141,0.000317%,mvm,Man vs Machine
cp_orange_50f_tower_d,141,0.000317%,cp,Capture Point
zf_degrootkeep_final,141,0.000317%,zf,Other
arena_samurai_duel,141,0.000317%,arena,Other
tfdb_temple_ig,141,0.000317%,tfdb,Other
psf_ndbeta_final_fix_hikikomori,141,0.000317%,psf,Other
cp_holidayrange_x3_b2,140,0.000314%,cp,Capture Point
mvm_mannhattan_ponies2,140,0.000314%,mvm,Man vs Machine
ctf_retreat_b1,140,0.000314%,ctf,Capture the Flag
koth_luftangriff_a11a,140,0.000314%,koth,King of the Hill
pl_frontier_a13,140,0.000314%,pl,Payload
alt_roulette_15,140,0.000314%,alt,Other
jump_adventure_fp,140,0.000314%,jump,Other
tfdb_georgebox,140,0.000314%,tfdb,Other
ironreign_gamecenter_v40,140,0.000314%,ironreign,Other
vsh_magic_jc_mc_final,140,0.000314%,vsh,Other
mvm_mannworks_30_waves_v46_easy,140,0.000314%,mvm,Man vs Machine
dr_playstation_b25,140,0.000314%,dr,Other
cp_orange_x_tbr,139,0.000312%,cp,Capture Point
cp_orange_z7_lsv7,139,0.000312%,cp,Capture Point
vsh_magic_wc_wegay,139,0.000312%,vsh,Other
cp_orange_fort_v7b,139,0.000312%,cp,Capture Point
bhop_fps_max_sr,139,0.000312%,bhop,Other
cp_orange_x6_a1,139,0.000312%,cp,Capture Point
fw_totalwar_v3,139,0.000312%,fw,Other
vsh_swagcity_v10_v1,139,0.000312%,vsh,Other
fw_war_a0_rcg,139,0.000312%,fw,Other
mvm_ma_ep12b2_1_fixed_easy,139,0.000312%,mvm,Man vs Machine
mvm_bigrock_zarjaz_ii,139,0.000312%,mvm,Man vs Machine
ctf_minedesert_b5,139,0.000312%,ctf,Capture the Flag
vsh_temper_rc1,139,0.000312%,vsh,Other
boss_robotnik,139,0.000312%,boss,Other
mvm_isolation_rc3_advanced2,138,0.000310%,mvm,Man vs Machine
mvm_decoy_1001demoknights,138,0.000310%,mvm,Man vs Machine
mvm_coaltownxma,138,0.000310%,mvm,Man vs Machine
mvm_mannworks_30_waves_v37,138,0.000310%,mvm,Man vs Machine
zf_labs_ext_a3_slag,138,0.000310%,zf,Other
arena_aperture_a7,138,0.000310%,arena,Other
mvm_ghost_town_endless_mayhem,138,0.000310%,mvm,Man vs Machine
jump_zetsubou_v3,138,0.000310%,jump,Other
pl_redship_rc3,138,0.000310%,pl,Payload
fw_mountain_finallz,138,0.000310%,fw,Other
vsh_teul_v6,138,0.000310%,vsh,Other
mvm_powerplant_rc1_click_advanc,138,0.000310%,mvm,Man vs Machine
fw_3cp_b2z,138,0.000310%,fw,Other
surf_porn_fix,137,0.000308%,surf,Other
pl_wintertown_finalfix,137,0.000308%,pl,Payload
koth_maple_ridge_rc1,137,0.000308%,koth,King of the Hill
cp_redstone_b2,137,0.000308%,cp,Capture Point
ctf_holcan_a2,137,0.000308%,ctf,Capture the Flag
jump_remember_beta,137,0.000308%,jump,Other
soulless_v1,137,0.000308%,soulless,Other
psf_skyline_v11tt,137,0.000308%,psf,Other
vsh_courtyard_lz_b4,136,0.000305%,vsh,Other
ze_mountain_alpha2,136,0.000305%,ze,Other
1up_granary,136,0.000305%,1up,Other
slender_townsend_unreleased5,136,0.000305%,slender,Other
surf_network_2013,136,0.000305%,surf,Other
zf_cube_v7,136,0.000305%,zf,Other
ctf_turbine_pro_rc1,136,0.000305%,ctf,Capture the Flag
pike_winds,135,0.000303%,pike,Other
tfdb_tunner_nud,135,0.000303%,tfdb,Other
mvm_powerplant_rc1_advanced1,135,0.000303%,mvm,Man vs Machine
koth_saw foundry,135,0.000303%,koth,King of the Hill
koth_storage_a1,135,0.000303%,koth,King of the Hill
dbs_pizza_b8,135,0.000303%,dbs,Other
trade_franticfactory_v3p,135,0.000303%,trade,Trade and Achievement
achievement_cute_v10,135,0.000303%,achievement,Trade and Achievement
trade_festive_park,135,0.000303%,trade,Trade and Achievement
vsh_minerealms_the_end_depressa,135,0.000303%,vsh,Other
mvm_rooftop_survive_survive,135,0.000303%,mvm,Man vs Machine
koth_mountain,134,0.000301%,koth,King of the Hill
slender_lobbys_b1a,134,0.000301%,slender,Other
mvm_tropics_rc2_advanced_tropic,134,0.000301%,mvm,Man vs Machine
ph_mountain_a3,134,0.000301%,ph,Other
ph_granary_a5,134,0.000301%,ph,Other
mvm_rottenburg_click_expert1,134,0.000301%,mvm,Man vs Machine
vsh_2hell_v804,134,0.000301%,vsh,Other
jump_sdm_b6,134,0.000301%,jump,Other
mvm_decoy_click_advanced2,134,0.000301%,mvm,Man vs Machine
slender_scrapyard_new_b2,134,0.000301%,slender,Other
vsh_last_push_v1_2,134,0.000301%,vsh,Other
fw_props_az,134,0.000301%,fw,Other
ctf_bball_comptf,134,0.000301%,ctf,Capture the Flag
tfdb_reduction_a6,134,0.000301%,tfdb,Other
koth_occult_rc1,134,0.000301%,koth,King of the Hill
dr_haunted_museum_v3,134,0.000301%,dr,Other
ctf_hospital,134,0.000301%,ctf,Capture the Flag
arena_ferrous_rc2,133,0.000299%,arena,Other
nhbl_harpoongaming_superdome_tt,133,0.000299%,nhbl,Other
plr_hightowerv2,133,0.000299%,plr,Payload Race
zf_farm_field_v4,133,0.000299%,zf,Other
ctf_2fort_tfc,133,0.000299%,ctf,Capture the Flag
surf_acerbus_fix,133,0.000299%,surf,Other
fw_$_money!_age_v2,133,0.000299%,fw,Other
ctf_hallofdeath,133,0.000299%,ctf,Capture the Flag
surf_derpis_h,133,0.000299%,surf,Other
mvm_rottenburg_sovarium,133,0.000299%,mvm,Man vs Machine
mvm_ghost_town_a_horror_tale_ch,133,0.000299%,mvm,Man vs Machine
mvm_bigrock_16wave,133,0.000299%,mvm,Man vs Machine
ph_abandoned_prison_v5,133,0.000299%,ph,Other
arena_hydrothunder_fix,133,0.000299%,arena,Other
mvm_mannhattan_mechanic_metropo,133,0.000299%,mvm,Man vs Machine
cp_tiplevarg,133,0.000299%,cp,Capture Point
fw_rush_training_v11,133,0.000299%,fw,Other
fw_spin_v1,133,0.000299%,fw,Other
surf_lt_omnific_rc1,132,0.000296%,surf,Other
the_stairs,132,0.000296%,the,Other
vsh_grassy_grounds,132,0.000296%,vsh,Other
vsh_killbox_gaycraft_v3,132,0.000296%,vsh,Other
zf_dustbowl_b5,132,0.000296%,zf,Other
cp_crossroads_b5,132,0.000296%,cp,Capture Point
tf2hats_christmas_raffle,132,0.000296%,tf2hats,Other
pl_gloryhole_b1,132,0.000296%,pl,Payload
surf_digital[g]beta_fixed,132,0.000296%,surf,Other
mvm_destruct_normal,132,0.000296%,mvm,Man vs Machine
tr_flinger_b2,132,0.000296%,tr,Other
ph_chapel_rc2,132,0.000296%,ph,Other
pl_mill_b5,132,0.000296%,pl,Payload
vsh_mario_kart_d,132,0.000296%,vsh,Other
arena_mandrillmaze_v2,131,0.000294%,arena,Other
psf_md_christmas_minecraft_v1,131,0.000294%,psf,Other
cp_snakewater_b9,131,0.000294%,cp,Capture Point
tfdb_spacetube_a2,131,0.000294%,tfdb,Other
dr_slough,131,0.000294%,dr,Other
mvm_cyberwire_cyberfy,131,0.000294%,mvm,Man vs Machine
cp_toy_fort_alt,131,0.000294%,cp,Capture Point
surf_unreal2,131,0.000294%,surf,Other
mvm_rottenburg_ponies3,131,0.000294%,mvm,Man vs Machine
dm_farmville,131,0.000294%,dm,Deathmatch
mvm_badlands_v2fix_normal,131,0.000294%,mvm,Man vs Machine
ph_007facility_a5,130,0.000292%,ph,Other
surf_extremex,130,0.000292%,surf,Other
cp_blackmesa,130,0.000292%,cp,Capture Point
mvm_degrootkeep_thisld,130,0.000292%,mvm,Man vs Machine
mvm_mannhattan_storymodereloade,130,0.000292%,mvm,Man vs Machine
gg200_orange_x1,130,0.000292%,gg200,Other
wdf_scoutjump_1,130,0.000292%,wdf,Other
zf_radiorescue_a10,130,0.000292%,zf,Other
vsh_dr_may_tf2_final,130,0.000292%,vsh,Other
surf_prime_time,130,0.000292%,surf,Other
mvm_coaltown_ponies666,130,0.000292%,mvm,Man vs Machine
mvm_powerplant_rc1_advanced2,130,0.000292%,mvm,Man vs Machine
mvm_strider_a6_uberupgrades,130,0.000292%,mvm,Man vs Machine
vsh_harvest_event_a1,130,0.000292%,vsh,Other
arena_bellick_b1,130,0.000292%,arena,Other
zf_headquarters_v2_fix1,130,0.000292%,zf,Other
bhop_interloper,130,0.000292%,bhop,Other
fw_gl_v7z,129,0.000290%,fw,Other
surf_6_tf2,129,0.000290%,surf,Other
sb_2fort_redsun,129,0.000290%,sb,Other
vsh_cargo_data,129,0.000290%,vsh,Other
vsh_fork_candy_v3,129,0.000290%,vsh,Other
trade_sinfulplaza_v31,129,0.000290%,trade,Trade and Achievement
jump_duck_a1,129,0.000290%,jump,Other
bhop_0,129,0.000290%,bhop,Other
arena_refinery_b5,129,0.000290%,arena,Other
ctf_aerial_b15_c4,129,0.000290%,ctf,Capture the Flag
arena_shack_b1,129,0.000290%,arena,Other
mvm_museum_a9,129,0.000290%,mvm,Man vs Machine
vsh_beach_utopia_v2,129,0.000290%,vsh,Other
vsh_pruvia_v6,129,0.000290%,vsh,Other
achievement_train_v69_deagle,128,0.000287%,achievement,Trade and Achievement
vsh_factory_v1,128,0.000287%,vsh,Other
mvm_mannhattan_10wave,128,0.000287%,mvm,Man vs Machine
cp_orange_mid,128,0.000287%,cp,Capture Point
cp_desertfortress,128,0.000287%,cp,Capture Point
mvm_birthday_a3_normal,128,0.000287%,mvm,Man vs Machine
mvm_coaltown_endless_round_test,128,0.000287%,mvm,Man vs Machine
surf_drought_light2,128,0.000287%,surf,Other
vsh_the_green_lands_v3,128,0.000287%,vsh,Other
tr_rollout_a1,128,0.000287%,tr,Other
cp_honmaru_rc6,128,0.000287%,cp,Capture Point
mvm_bigrock_train_of_pain,128,0.000287%,mvm,Man vs Machine
koth_flood,128,0.000287%,koth,King of the Hill
gd_rodense_a6,128,0.000287%,gd,Other
pl_swiftwater_final_rc,128,0.000287%,pl,Payload
sb_deserted_canyon_b6,128,0.000287%,sb,Other
surf_desolate,128,0.000287%,surf,Other
tfdb_box_of_doom_a12,128,0.000287%,tfdb,Other
surf_marbleblast_beginner,127,0.000285%,surf,Other
mvm_troopers_defend_fawosfix_ru,127,0.000285%,mvm,Man vs Machine
cp_orange_dent_tbr2,127,0.000285%,cp,Capture Point
surf_compulsive_njv,127,0.000285%,surf,Other
psf_city_headquartertt_v3,127,0.000285%,psf,Other
pl_auriferous_rc12,127,0.000285%,pl,Payload
vsh_killbox_8bit_2014_v1,127,0.000285%,vsh,Other
psf_gm_constructtt_v6,127,0.000285%,psf,Other
vsh_building_blast_v3,127,0.000285%,vsh,Other
cp_orange_citadel_heights,127,0.000285%,cp,Capture Point
surf_infamous,127,0.000285%,surf,Other
cp_kpamed_b6,127,0.000285%,cp,Capture Point
duel_sniperduel,127,0.000285%,duel,Other
jump_lump_testing,127,0.000285%,jump,Other
mvm_decoy_uu_bosses,127,0.000285%,mvm,Man vs Machine
tc_hydro_v2,127,0.000285%,tc,Other
mvm_overlord_b3_coaltown_advanc,126,0.000283%,mvm,Man vs Machine
surf_exurbia_v2,126,0.000283%,surf,Other
surf_eclipse_fix,126,0.000283%,surf,Other
jump_ezekiel_final,126,0.000283%,jump,Other
jump_lion_a7,126,0.000283%,jump,Other
vsh_tower_top_lz2,126,0.000283%,vsh,Other
surf_mellow,126,0.000283%,surf,Other
mvm_mannhattan_servercrash,126,0.000283%,mvm,Man vs Machine
glass_mc_massacre_final,126,0.000283%,glass,Other
mvm_warehouse_v1_advanced,126,0.000283%,mvm,Man vs Machine
jump_junk_a4,126,0.000283%,jump,Other
pl_dev_2,126,0.000283%,pl,Payload
cp_beidian_a2,125,0.000281%,cp,Capture Point
tfdb_radar_a3,125,0.000281%,tfdb,Other
bohhh_tf,125,0.000281%,bohhh,Other
jump_shimano_v3,125,0.000281%,jump,Other
mcwall-mart_b12_event,125,0.000281%,mcwall-mart,Other
vsh_oasis,125,0.000281%,vsh,Other
mvm_underground_rc3_expert,125,0.000281%,mvm,Man vs Machine
pl_humidity_b5,125,0.000281%,pl,Payload
mvm_tropics_rc9_advanced_tropic,124,0.000278%,mvm,Man vs Machine
surf_sky_ages,124,0.000278%,surf,Other
tfdb_thymo_spec03_a1,124,0.000278%,tfdb,Other
mvm_redbrier_b3,124,0.000278%,mvm,Man vs Machine
fw_random_b3z,124,0.000278%,fw,Other
mvm_rottenburg_cashblessed!,124,0.000278%,mvm,Man vs Machine
arena_graveyard_rc1,124,0.000278%,arena,Other
surf_mash-up,124,0.000278%,surf,Other
fw_medieval_classic3_v2,123,0.000276%,fw,Other
jump_bojack,123,0.000276%,jump,Other
vsh_giza_a3,123,0.000276%,vsh,Other
mvm_snowpine_a2_advanced1,123,0.000276%,mvm,Man vs Machine
vsh_jie_cao_park,123,0.000276%,vsh,Other
ctf_2fort_sunrise,123,0.000276%,ctf,Capture the Flag
mvm_bigrock_sovarium,123,0.000276%,mvm,Man vs Machine
pl_boxcanyon_rc6,122,0.000274%,pl,Payload
dr_supermario64_v3,122,0.000274%,dr,Other
tfdbr_justdoit_b2,122,0.000274%,tfdbr,Other
zf_expedition_c1,122,0.000274%,zf,Other
surf_stonework3,122,0.000274%,surf,Other
tfdb_lob_space,122,0.000274%,tfdb,Other
jump_oats_b2,122,0.000274%,jump,Other
vsh_north_mountain_pb_d,122,0.000274%,vsh,Other
vsh_ratssaxy,122,0.000274%,vsh,Other
mvm_limburgh_final_rottenburg_a,122,0.000274%,mvm,Man vs Machine
dsam_mining_a1,122,0.000274%,dsam,Other
vsh_minegay_b5,122,0.000274%,vsh,Other
duel_hathall,122,0.000274%,duel,Other
ctf_resources_beta,122,0.000274%,ctf,Capture the Flag
koth_bunkalow_a13_3,121,0.000272%,koth,King of the Hill
koth_bagel_a10,121,0.000272%,koth,King of the Hill
zf_goldfever_3a,121,0.000272%,zf,Other
ultiduo_r_b7,121,0.000272%,ultiduo,Other
jump_zekro_v4,121,0.000272%,jump,Other
mvm_bigrock_boss2,121,0.000272%,mvm,Man vs Machine
bhop_cherry,121,0.000272%,bhop,Other
arena_starship_b2,121,0.000272%,arena,Other
vsh_citydirtbox_rc1,121,0.000272%,vsh,Other
bhop_grid,121,0.000272%,bhop,Other
mvm_derelict_rc2_advanced1,121,0.000272%,mvm,Man vs Machine
mvm_coaltown_revenge_of_brutus,121,0.000272%,mvm,Man vs Machine
surf_akai_njv,121,0.000272%,surf,Other
jump_arugula_b3,121,0.000272%,jump,Other
mvm_adventure_of_30wave_ep3_nor,120,0.000269%,mvm,Man vs Machine
vsh_lost_in_sea_v1,120,0.000269%,vsh,Other
mvm_rottenburg_uberup_easy,120,0.000269%,mvm,Man vs Machine
dr_playstation_b19,120,0.000269%,dr,Other
cp_orange_x3_r60d_b,120,0.000269%,cp,Capture Point
plr_hightower_tdm_r4,120,0.000269%,plr,Payload Race
cp_hellrange_x3_v2afix2,120,0.000269%,cp,Capture Point
tr_pyro-compression_v1,120,0.000269%,tr,Other
koth_orange_a4,120,0.000269%,koth,King of the Hill
mvm_ghost_town_act2,120,0.000269%,mvm,Man vs Machine
surf_rustic_v2,120,0.000269%,surf,Other
mvm_isolation_b5,119,0.000267%,mvm,Man vs Machine
mvm_decoy_30_waves_v46_normal,119,0.000267%,mvm,Man vs Machine
aquablocks_day,119,0.000267%,aquablocks,Other
vsh_draft_b2,119,0.000267%,vsh,Other
jump_future_rebuild,119,0.000267%,jump,Other
cp_fortline_a1,119,0.000267%,cp,Capture Point
koth_forge_b3,119,0.000267%,koth,King of the Hill
dm_sawmill,119,0.000267%,dm,Deathmatch
ctf_hotspring,119,0.000267%,ctf,Capture the Flag
zf_hydraulic_v2,119,0.000267%,zf,Other
zf_hideout_b3,118,0.000265%,zf,Other
mvm_5gorge_cp_rus,118,0.000265%,mvm,Man vs Machine
quiz_millionaire,118,0.000265%,quiz,Other
mvm_ma_ep12b1_1_fixed_hard,118,0.000265%,mvm,Man vs Machine
mvm_bigrock_30wave_v46_s,118,0.000265%,mvm,Man vs Machine
fw_qw_cairo-station_v3,118,0.000265%,fw,Other
surf_mephobia_final,118,0.000265%,surf,Other
zf_experiment_v10,118,0.000265%,zf,Other
pd_meme_machine_b1,118,0.000265%,pd,Other
koth_incendio_rc1,118,0.000265%,koth,King of the Hill
mvm_ma_ep12b3_1_fixed_hard,118,0.000265%,mvm,Man vs Machine
psf_icd_portal_unji_v4,118,0.000265%,psf,Other
mvm_mannworks_bottsn,118,0.000265%,mvm,Man vs Machine
tfdb_sppppacccee,117,0.000263%,tfdb,Other
ctf_hyperwire_a10,117,0.000263%,ctf,Capture the Flag
achievement_bots_v4_a3,117,0.000263%,achievement,Trade and Achievement
mvm_rottenburg_expert2,117,0.000263%,mvm,Man vs Machine
dbs_rooftops_rc6,117,0.000263%,dbs,Other
cp_orangezone_v1_a6,117,0.000263%,cp,Capture Point
de_dust,117,0.000263%,de,Other
tfdb_spacebox_a1_remake,117,0.000263%,tfdb,Other
fw_ww2_pacific1_v6,117,0.000263%,fw,Other
surf_not_so_sinister,117,0.000263%,surf,Other
cp_marioblast_2011,117,0.000263%,cp,Capture Point
tfdb_blockland_v4_1,117,0.000263%,tfdb,Other
koth_gatehouse_b1a,117,0.000263%,koth,King of the Hill
mvm_coaltown_31wave,116,0.000260%,mvm,Man vs Machine
trade_hopi_plaza_spooky_ros,116,0.000260%,trade,Trade and Achievement
maze_harvest_v2,116,0.000260%,maze,Other
slender_underground_b1,116,0.000260%,slender,Other
mvm_overlord_b3_ironman,116,0.000260%,mvm,Man vs Machine
ctf_turbine_pro_rc1_tk,116,0.000260%,ctf,Capture the Flag
mvm_coaltown_survival,116,0.000260%,mvm,Man vs Machine
zs_turbine_v2,115,0.000258%,zs,Other
mvm_mannhattan_storymodeclassic,115,0.000258%,mvm,Man vs Machine
vsh_dr_bank_v3,115,0.000258%,vsh,Other
mvm_bigrock_extreme8!+people!,115,0.000258%,mvm,Man vs Machine
ba_jail_medival_final_fixed,115,0.000258%,ba,Other
bhop_bliss_tf,115,0.000258%,bhop,Other
mvm_coaltown_ponies2,115,0.000258%,mvm,Man vs Machine
vsh_monochrome_space_b5,115,0.000258%,vsh,Other
koth_flood_1-25,115,0.000258%,koth,King of the Hill
surf_venice_v2c,115,0.000258%,surf,Other
vsh_dr_hereafter_b4,115,0.000258%,vsh,Other
pl_lava_lair,115,0.000258%,pl,Payload
mvm_adventure_of_30wave_ep2_har,115,0.000258%,mvm,Man vs Machine
mvm_decoy_supportpls,115,0.000258%,mvm,Man vs Machine
zf_blood_harvest_v1,115,0.000258%,zf,Other
arena_deep13_a1,114,0.000256%,arena,Other
achievement_apg_r14_xmas,114,0.000256%,achievement,Trade and Achievement
vsh_pineyard_final_cmfix,114,0.000256%,vsh,Other
vsh_ravine_lz_b1,114,0.000256%,vsh,Other
tr_karma_event,114,0.000256%,tr,Other
pl_creation_a1,114,0.000256%,pl,Payload
zf_fort_b5,114,0.000256%,zf,Other
tfdb_platform_v2,114,0.000256%,tfdb,Other
mvm_tropics_rc9_expert_sunshine,114,0.000256%,mvm,Man vs Machine
jump_ugly_final,114,0.000256%,jump,Other
vsh_holes_v4,114,0.000256%,vsh,Other
fw_ravine_1a,114,0.000256%,fw,Other
vsh_death_valley_v1,114,0.000256%,vsh,Other
surf_supersurf_v2,114,0.000256%,surf,Other
trade_psykopat2,114,0.000256%,trade,Trade and Achievement
fw_cp_nebula_proto3,114,0.000256%,fw,Other
bhop_nightsky,114,0.000256%,bhop,Other
surf_ny_advance_fix,113,0.000254%,surf,Other
ctf_security_v2,113,0.000254%,ctf,Capture the Flag
cp_copperhead_b1e,113,0.000254%,cp,Capture Point
surf_commune_again_beta5,113,0.000254%,surf,Other
fw_rbo_cfp_forest_m_bz,113,0.000254%,fw,Other
surf_peppermint_v7b_clean,113,0.000254%,surf,Other
surf_grave_reloaded,113,0.000254%,surf,Other
arena_volcano_b3isitfixed,112,0.000251%,arena,Other
koth_maze_co_a6,112,0.000251%,koth,King of the Hill
mvm_bigrock_ponies1,112,0.000251%,mvm,Man vs Machine
mvm_degrootkeep_w,112,0.000251%,mvm,Man vs Machine
pl_2fort_ce_final,112,0.000251%,pl,Payload
cp_toy_fort_alt2,112,0.000251%,cp,Capture Point
koth_viaduct_pro5,112,0.000251%,koth,King of the Hill
bhop_waterworks,112,0.000251%,bhop,Other
dr_corridor_v4_test2,112,0.000251%,dr,Other
vsh_desert_overrun,112,0.000251%,vsh,Other
surf_bluewinter,111,0.000249%,surf,Other
fw_vazaa_v17z,111,0.000249%,fw,Other
fw_tower_v2,111,0.000249%,fw,Other
surf_110b_austinpowers_v2,111,0.000249%,surf,Other
surf_overlook_v1,111,0.000249%,surf,Other
vsh_estatebeta_121,111,0.000249%,vsh,Other
dr_sawmill_fixed_v2,111,0.000249%,dr,Other
cp_warpath_elite_4,111,0.000249%,cp,Capture Point
ctf_infiltration_b15,111,0.000249%,ctf,Capture the Flag
dm_desert_base,111,0.000249%,dm,Deathmatch
vsh_the_barn_v4,111,0.000249%,vsh,Other
cp_nothing_a7,111,0.000249%,cp,Capture Point
fw_badapple_winter_v5_dz,111,0.000249%,fw,Other
mvm_decoy_advanced2+,111,0.000249%,mvm,Man vs Machine
koth_octothorpe_classi,111,0.000249%,koth,King of the Hill
vsh_orient_fix,111,0.000249%,vsh,Other
arena_harvest_spooky_a3,111,0.000249%,arena,Other
vsh_teul_v12,111,0.000249%,vsh,Other
tfdb_blackout_nud,110,0.000247%,tfdb,Other
jump_onion_v2,110,0.000247%,jump,Other
surf_elysium2,110,0.000247%,surf,Other
surf_rocketman_v2,110,0.000247%,surf,Other
mvm_countryside_intermediate1,110,0.000247%,mvm,Man vs Machine
jump_pants_b2,110,0.000247%,jump,Other
bhop_unreality,110,0.000247%,bhop,Other
fw_ww2_flying-fortress_v8,110,0.000247%,fw,Other
tfdb_bupybox_a2,110,0.000247%,tfdb,Other
sd_orange_beta_3,110,0.000247%,sd,Other
ctf_2fortclassic_final,110,0.000247%,ctf,Capture the Flag
af_rapture_b1a,110,0.000247%,af,Other
tfdb_blackdiamond_v1,109,0.000245%,tfdb,Other
jump_quba_fix,109,0.000245%,jump,Other
pd_tribute_b1,109,0.000245%,pd,Other
tfdb_mirrormirror,109,0.000245%,tfdb,Other
cp_warpath2_u4,109,0.000245%,cp,Capture Point
mvm_keller_b12_expert1,109,0.000245%,mvm,Man vs Machine
koth_jungle_final,109,0.000245%,koth,King of the Hill
fw_events_v3,109,0.000245%,fw,Other
vsh_sewers_finalz,109,0.000245%,vsh,Other
trade_island_v37,109,0.000245%,trade,Trade and Achievement
dr_area_51_b1_jugfix2,109,0.000245%,dr,Other
gm_construct,109,0.000245%,gm,Other
koth_lighthouse_rc6,109,0.000245%,koth,King of the Hill
dm_oasis_c3,109,0.000245%,dm,Deathmatch
tf2kart_volcano,109,0.000245%,tf2kart,Other
surf_vdl_training_v1,109,0.000245%,surf,Other
coop_phantomgrave_alpha,109,0.000245%,coop,Other
mvm_hillside_v7_easy,109,0.000245%,mvm,Man vs Machine
cp_gothic_b4,108,0.000242%,cp,Capture Point
trade_imagination_a2,108,0.000242%,trade,Trade and Achievement
jump_typh_a3,108,0.000242%,jump,Other
drunkengi_trade_idle,108,0.000242%,drunkengi,Other
ctf_facing_worlds_1999,108,0.000242%,ctf,Capture the Flag
surf_25_lighters,108,0.000242%,surf,Other
mvm_ma_ep12_1_fixed_easy,108,0.000242%,mvm,Man vs Machine
mvm_coaltown_hellfire,108,0.000242%,mvm,Man vs Machine
morbias_2013_b1,108,0.000242%,morbias,Other
dr_bigroom_remake,108,0.000242%,dr,Other
dr_dungeon_v2,108,0.000242%,dr,Other
slender_sanatorium_b1,108,0.000242%,slender,Other
jump_soma_a7,108,0.000242%,jump,Other
surf_kaboom!,108,0.000242%,surf,Other
tfdb_medievaltower_b3,107,0.000240%,tfdb,Other
cp_prolane_v4,107,0.000240%,cp,Capture Point
duel_woods,107,0.000240%,duel,Other
vsh_wintermountainsv2,107,0.000240%,vsh,Other
fw_sewers_a2,107,0.000240%,fw,Other
vsh_jie_cao_tower,107,0.000240%,vsh,Other
duel_store_3_reloaded,107,0.000240%,duel,Other
arena_geese_tower_b3,107,0.000240%,arena,Other
mvm_totalwar,107,0.000240%,mvm,Man vs Machine
dr_playstation_b23,107,0.000240%,dr,Other
surf_presmon,107,0.000240%,surf,Other
jump_booster,107,0.000240%,jump,Other
cp_myrtana_a34,107,0.000240%,cp,Capture Point
koth_nippletwister_af,107,0.000240%,koth,King of the Hill
dr_universe_v5,106,0.000238%,dr,Other
tfdb_orangellf_b1,106,0.000238%,tfdb,Other
bhop_x,106,0.000238%,bhop,Other
koth_nevada_b1_2,106,0.000238%,koth,King of the Hill
fw_zsy_highway_b0z,106,0.000238%,fw,Other
dr_hourglass_v2,106,0.000238%,dr,Other
mvm_isolation_rc3_intermediate,106,0.000238%,mvm,Man vs Machine
cp_orangezone_version2,106,0.000238%,cp,Capture Point
dm_ponyville_b3,106,0.000238%,dm,Deathmatch
mvm_coaltown_uberup_advanced,106,0.000238%,mvm,Man vs Machine
mvm_bigrock_expert_bionic_bits,106,0.000238%,mvm,Man vs Machine
cp_orange_grr_beta_14,106,0.000238%,cp,Capture Point
ctf_aurora_rc,106,0.000238%,ctf,Capture the Flag
fw_ex_training_v5,106,0.000238%,fw,Other
surf_adverse,106,0.000238%,surf,Other
plr_whalerace_a4a,106,0.000238%,plr,Payload Race
jump_skyrail_b1,106,0.000238%,jump,Other
surf_2_stagejuan_test12,106,0.000238%,surf,Other
pl_hemlock_a18,106,0.000238%,pl,Payload
mvm_trainyard_a4,106,0.000238%,mvm,Man vs Machine
pl_skyfortress_a10,105,0.000236%,pl,Payload
mvm_sewer_invasion_event_b7_int,105,0.000236%,mvm,Man vs Machine
surf_horizon_v2,105,0.000236%,surf,Other
mvm_yucatan_rc4_expert,105,0.000236%,mvm,Man vs Machine
surf_networked_njv,105,0.000236%,surf,Other
vsh_goldtooth_b1,105,0.000236%,vsh,Other
koth_area49_b1,105,0.000236%,koth,King of the Hill
ultiduo_acropolis_b1_test3,105,0.000236%,ultiduo,Other
mvm_mannworks_30wave_v46_n,105,0.000236%,mvm,Man vs Machine
cp_warpath2_tk,105,0.000236%,cp,Capture Point
dt_harvest,105,0.000236%,dt,Other
mvm_minecraft_b15a_normal,105,0.000236%,mvm,Man vs Machine
slide_speedrace_night,105,0.000236%,slide,Other
zf_legoplaza_alpha4,105,0.000236%,zf,Other
mvm_doubletap_a1,105,0.000236%,mvm,Man vs Machine
mvm_mannhattan_ponies3,105,0.000236%,mvm,Man vs Machine
mvm_decoy_charged,105,0.000236%,mvm,Man vs Machine
mvm_ditch_normal,105,0.000236%,mvm,Man vs Machine
tfdb_ring_slag_a4,105,0.000236%,tfdb,Other
jump_annex,105,0.000236%,jump,Other
surf_elements_beta3,104,0.000233%,surf,Other
dr_missing_rsfix,104,0.000233%,dr,Other
surf_commune_too_beta5_fix,104,0.000233%,surf,Other
dr_tlkgcats_remake_finalfix,104,0.000233%,dr,Other
ultiduo_obsidiian_a10,104,0.000233%,ultiduo,Other
mvm_ghost_town_30wave_v60_lvl1,104,0.000233%,mvm,Man vs Machine
psf_abandoned_factorytt_v9,104,0.000233%,psf,Other
mvm_mannhattan_easy_v1,104,0.000233%,mvm,Man vs Machine
mvm_highrise_rottenburg_advance,104,0.000233%,mvm,Man vs Machine
jump_pickles,104,0.000233%,jump,Other
zf_valleyoffices_a1,104,0.000233%,zf,Other
mvm_decoy_uber,103,0.000231%,mvm,Man vs Machine
my_world_x8,103,0.000231%,my,Other
trade_plaza_hg_at2a11,103,0.000231%,trade,Trade and Achievement
cp_hadal_b13_tk,103,0.000231%,cp,Capture Point
cp_military_base_v1,103,0.000231%,cp,Capture Point
cp_myrtana_a36,103,0.000231%,cp,Capture Point
cp_kalinka_b3,103,0.000231%,cp,Capture Point
mvm_ghost_town_tank_endurance,103,0.000231%,mvm,Man vs Machine
mvm_thedust_b3,103,0.000231%,mvm,Man vs Machine
surf_tomb_redone,103,0.000231%,surf,Other
cp_box_killer_v1,103,0.000231%,cp,Capture Point
plr_panic_b2,103,0.000231%,plr,Payload Race
mvm_decay_rc1,103,0.000231%,mvm,Man vs Machine
surf_artifex,103,0.000231%,surf,Other
mvm_thedust_b3_bigrock_advanced,103,0.000231%,mvm,Man vs Machine
vsh_gwfoffice_v3,103,0.000231%,vsh,Other
mvm_diverge_b4,102,0.000229%,mvm,Man vs Machine
surf_rapid,102,0.000229%,surf,Other
surf_injustice,102,0.000229%,surf,Other
arena_watchtower_event,102,0.000229%,arena,Other
mvm_mannhattan_spectate_empire_,102,0.000229%,mvm,Man vs Machine
vsh_magazine_lz_b2a,102,0.000229%,vsh,Other
surf_tilt2_kd,102,0.000229%,surf,Other
vsh_farm_feud_lz_v1,102,0.000229%,vsh,Other
gd_rodense_a5_1,102,0.000229%,gd,Other
tfdb_thymo_db04_a2,102,0.000229%,tfdb,Other
mvm_rottenburg_semlab_c4,102,0.000229%,mvm,Man vs Machine
cp_orange_skiver_rc1_e3,102,0.000229%,cp,Capture Point
idle_sniper_war_v20_69u,102,0.000229%,idle,Other
mvm_scream_tv,102,0.000229%,mvm,Man vs Machine
vsh_dr_wooden_v3,102,0.000229%,vsh,Other
tfdb_shakespeare_v5,102,0.000229%,tfdb,Other
achieve_heal,102,0.000229%,achieve,Other
jump_dahl_a1,102,0.000229%,jump,Other
mvm_mannworks_click_advanced2,102,0.000229%,mvm,Man vs Machine
koth_wathermathy_fix,102,0.000229%,koth,King of the Hill
jump_box,101,0.000227%,jump,Other
mvm_atomgrad_a6a_automaton_anni,101,0.000227%,mvm,Man vs Machine
zf_normandy_v3,101,0.000227%,zf,Other
mvm_decoy_uu_helloween,101,0.000227%,mvm,Man vs Machine
ctf_converge_b3,101,0.000227%,ctf,Capture the Flag
cp_god_orange_run_rc3,101,0.000227%,cp,Capture Point
bhop_grassyass,101,0.000227%,bhop,Other
ctf_stronghold_b5,101,0.000227%,ctf,Capture the Flag
mvm_decoy_1001_demoknights,101,0.000227%,mvm,Man vs Machine
strange-boost_v50,101,0.000227%,strange-boost,Other
bhop_nolimit,101,0.000227%,bhop,Other
mvm_mannhattan_cash,101,0.000227%,mvm,Man vs Machine
duel_arena,101,0.000227%,duel,Other
surf_beyer,101,0.000227%,surf,Other
trade_unusual_museum_final,101,0.000227%,trade,Trade and Achievement
koth_photofinish_b9,100,0.000224%,koth,King of the Hill
mvm_decoy_challenge_v1,100,0.000224%,mvm,Man vs Machine
cp_process_rc3,100,0.000224%,cp,Capture Point
cp_silica_a1,100,0.000224%,cp,Capture Point
portal_neurotoxin_s7,100,0.000224%,portal,Other
jump_quattro_old,100,0.000224%,jump,Other
vsh_tombfort_rc,100,0.000224%,vsh,Other
vsh_tower_of_peril_side,100,0.000224%,vsh,Other
pl_shenmue_release,100,0.000224%,pl,Payload
zf_cityhunter_b3,100,0.000224%,zf,Other
trade_minecraft_b43,100,0.000224%,trade,Trade and Achievement
cp_hotelhell_tk,100,0.000224%,cp,Capture Point
trade_rdg_v2,99,0.000222%,trade,Trade and Achievement
dbs_lego_b7,99,0.000222%,dbs,Other
tfdb_aloha,99,0.000222%,tfdb,Other
surf_annoyance,99,0.000222%,surf,Other
pl_mineshaft_final_rc6,99,0.000222%,pl,Payload
mvm_coaltown_intermediate2_sing,99,0.000222%,mvm,Man vs Machine
trade_plaza_orange,99,0.000222%,trade,Trade and Achievement
fw_platform_v15,99,0.000222%,fw,Other
vsh_hydroelectric_lz_v2,99,0.000222%,vsh,Other
arena_shelter_rc1,99,0.000222%,arena,Other
zm_crustynutz_v4,99,0.000222%,zm,Other
vsh_sand_country_v4,99,0.000222%,vsh,Other
bhop_indev2,99,0.000222%,bhop,Other
bhop_flatzone2,99,0.000222%,bhop,Other
mvm_coaltown_highlander,99,0.000222%,mvm,Man vs Machine
bhop_blue_abstract,99,0.000222%,bhop,Other
trade_pretence-beta-5,99,0.000222%,trade,Trade and Achievement
szf_maze_a2,99,0.000222%,szf,Other
mvm_isolation_b6_advanced1,99,0.000222%,mvm,Man vs Machine
vsh_ferrous_rc1,99,0.000222%,vsh,Other
mlp_dj_pon3s_clubv4,99,0.000222%,mlp,Other
pl_haste_b1,99,0.000222%,pl,Payload
vsh_weaponsdepot_lex,99,0.000222%,vsh,Other
vsh_frothmonster_v1,98,0.000220%,vsh,Other
trade_lunarpumpkin_v025,98,0.000220%,trade,Trade and Achievement
vsh_luigis_mansion_v3,98,0.000220%,vsh,Other
ctf_trench_dev,98,0.000220%,ctf,Capture the Flag
surf_lost_civilization,98,0.000220%,surf,Other
mvm_coaltownxma_30wave_v60_lvl2,98,0.000220%,mvm,Man vs Machine
surf_greatcanal_v3,98,0.000220%,surf,Other
fw_penetration_v2,98,0.000220%,fw,Other
mvm_hydro_a3_mannworks_ironman,98,0.000220%,mvm,Man vs Machine
surf_this_njv,98,0.000220%,surf,Other
bhop_alvo,98,0.000220%,bhop,Other
tfdb_reflex_v3_maxdb,97,0.000218%,tfdb,Other
pl_enclosure_rc3,97,0.000218%,pl,Payload
cp_orange_50f_tower_v5,97,0.000218%,cp,Capture Point
mvm_2fort_b1_3_normal,97,0.000218%,mvm,Man vs Machine
trade_hyrule_oot3d_alpha_13,97,0.000218%,trade,Trade and Achievement
cp_alloy_rc2a,97,0.000218%,cp,Capture Point
cp_honmaru_rc4s2,97,0.000218%,cp,Capture Point
mvm_on_titan_wrath_of_the_robot,97,0.000218%,mvm,Man vs Machine
jump_rj_rckteer,97,0.000218%,jump,Other
mvm_ventus_b6_fawosfix_mannhatt,97,0.000218%,mvm,Man vs Machine
cp_degrootkeep_nomed,97,0.000218%,cp,Capture Point
mvm_coaltown_30_waves,97,0.000218%,mvm,Man vs Machine
cp_timbermist_a1,97,0.000218%,cp,Capture Point
vsh_shell_reservoir_lz_b1,97,0.000218%,vsh,Other
mvm_ma_ep14_1_easy,97,0.000218%,mvm,Man vs Machine
vsh_luigis_mansion_smaller_v3,97,0.000218%,vsh,Other
jump_mireal,97,0.000218%,jump,Other
cp_slush_b1,97,0.000218%,cp,Capture Point
mvm_ghost_town_zombie_666,97,0.000218%,mvm,Man vs Machine
pl_humidity_b4,96,0.000215%,pl,Payload
mvm_orange_x3,96,0.000215%,mvm,Man vs Machine
mvm_construct_v2_rottenburg,96,0.000215%,mvm,Man vs Machine
mvm_decoy_uu99_ironmen,96,0.000215%,mvm,Man vs Machine
duel_ultimate,96,0.000215%,duel,Other
koth_derrick_a005a,96,0.000215%,koth,King of the Hill
jump_butter_fixed,96,0.000215%,jump,Other
mvm_decoy_onstraught,96,0.000215%,mvm,Man vs Machine
mvm_decoy_the_push,96,0.000215%,mvm,Man vs Machine
sniper_orange_nobridge_111,96,0.000215%,sniper,Other
jump_manitou,96,0.000215%,jump,Other
cp_launchpad_a8,96,0.000215%,cp,Capture Point
mvm_bigrock_ironmann,96,0.000215%,mvm,Man vs Machine
duel_scout_v1,96,0.000215%,duel,Other
cp_dustbowl_winter,95,0.000213%,cp,Capture Point
trade_sinfulplaza_v2,95,0.000213%,trade,Trade and Achievement
trade_active_beta3,95,0.000213%,trade,Trade and Achievement
jump_mhx_b1,95,0.000213%,jump,Other
glass_spiderweb,95,0.000213%,glass,Other
pd_tribute_b3,95,0.000213%,pd,Other
koth_bread_final_v2,95,0.000213%,koth,King of the Hill
jump_vex_b2,95,0.000213%,jump,Other
arena_aurora_b1,95,0.000213%,arena,Other
fw_mountain_final,95,0.000213%,fw,Other
fw_4cpa_b2z,95,0.000213%,fw,Other
sky_plaza_f2,95,0.000213%,sky,Other
cp_turris_b3,95,0.000213%,cp,Capture Point
pl_buzznest,95,0.000213%,pl,Payload
vsh_dr_smexytraps_v2,95,0.000213%,vsh,Other
balloon_race_v2b_modified,95,0.000213%,balloon,Other
zm_dustshowdown,95,0.000213%,zm,Other
cp_kuriast,95,0.000213%,cp,Capture Point
ph_town_a4,95,0.000213%,ph,Other
cp_myrtana_a37,95,0.000213%,cp,Capture Point
vsh_world_of_pain_v3,95,0.000213%,vsh,Other
surf_tempest,94,0.000211%,surf,Other
koth_roughshod,94,0.000211%,koth,King of the Hill
arena_mariokart_v10,94,0.000211%,arena,Other
pl_angkor_b4,94,0.000211%,pl,Payload
dr_forest_sg_v1b,94,0.000211%,dr,Other
mvm_hydro_a3_coaltown_advanced,94,0.000211%,mvm,Man vs Machine
jump_tombrady,94,0.000211%,jump,Other
mvm_decoy_ambush,94,0.000211%,mvm,Man vs Machine
pl_promotion_b4,94,0.000211%,pl,Payload
koth_dockyard,94,0.000211%,koth,King of the Hill
mvm_mountain_b3_normal,94,0.000211%,mvm,Man vs Machine
ze_mandrillmaze_v2_4,94,0.000211%,ze,Other
ctf_facility_build55,94,0.000211%,ctf,Capture the Flag
vsh_oilrig_lz_v4,94,0.000211%,vsh,Other
mvm_ghost_town_1333,94,0.000211%,mvm,Man vs Machine
cp_hybro_b08,94,0.000211%,cp,Capture Point
sd_box,94,0.000211%,sd,Other
tfdb_metalcore_c1,94,0.000211%,tfdb,Other
cp_corporation_b3_tk,94,0.000211%,cp,Capture Point
vsh_3sland_b4,93,0.000209%,vsh,Other
surf_airflow,93,0.000209%,surf,Other
mvm_the_edge,93,0.000209%,mvm,Man vs Machine
cp_gydan,93,0.000209%,cp,Capture Point
vsh_dr_dust_b3_fixed,93,0.000209%,vsh,Other
koth_peaks_b6a,93,0.000209%,koth,King of the Hill
tfdb_haunted_v4,93,0.000209%,tfdb,Other
surf_lithium_v2,93,0.000209%,surf,Other
mvm_coaltown_coaltown_carnage,93,0.000209%,mvm,Man vs Machine
trade_minecraft_ghs,93,0.000209%,trade,Trade and Achievement
cp_paint_can,93,0.000209%,cp,Capture Point
koth_wfr_01_20,93,0.000209%,koth,King of the Hill
de_absurdity_tfv2,93,0.000209%,de,Other
fw_medieval_jjrt1_v7,93,0.000209%,fw,Other
pl_millstone_rc11,93,0.000209%,pl,Payload
jump_yakisoba_a1,92,0.000207%,jump,Other
mvm_moneybin_normal,92,0.000207%,mvm,Man vs Machine
tfdb_trainfalls_v5a,92,0.000207%,tfdb,Other
pl_citadel_b36,92,0.000207%,pl,Payload
mvm_coaltown_random,92,0.000207%,mvm,Man vs Machine
vsh_manncohq_v14a5,92,0.000207%,vsh,Other
dr_inca_v2,92,0.000207%,dr,Other
dr_factory_v3b_custom,92,0.000207%,dr,Other
tr_walkway_rc2 (2),92,0.000207%,tr,Other
cp_hybro_b06,92,0.000207%,cp,Capture Point
dr_yard_beta,92,0.000207%,dr,Other
cp_cowpath_b3,92,0.000207%,cp,Capture Point
mvm_machine_atks_ep12b3_sh1,92,0.000207%,mvm,Man vs Machine
mvm_highrise_nightmare,91,0.000204%,mvm,Man vs Machine
ctf_vitalism_b2,91,0.000204%,ctf,Capture the Flag
jump_something_final,91,0.000204%,jump,Other
gg_2fort_a4,91,0.000204%,gg,Other
arena_egytptian_desert,91,0.000204%,arena,Other
ctf_pool,91,0.000204%,ctf,Capture the Flag
mvm_rural_ground_v2_herewego2,91,0.000204%,mvm,Man vs Machine
mvm_countryside_advanced_1,91,0.000204%,mvm,Man vs Machine
ctf_2villa_a11,91,0.000204%,ctf,Capture the Flag
surf_christmas,91,0.000204%,surf,Other
mvm_thedust_b3_intermediate2,91,0.000204%,mvm,Man vs Machine
koth_grid,91,0.000204%,koth,King of the Hill
trade_plaza_reproduced_b6,91,0.000204%,trade,Trade and Achievement
dm_hub_b1,91,0.000204%,dm,Deathmatch
vsh_magic_wc_egypt,91,0.000204%,vsh,Other
cp_orange_z8,91,0.000204%,cp,Capture Point
pl_upward_snowy,91,0.000204%,pl,Payload
vsh_honeyville_res5,91,0.000204%,vsh,Other
mvm_mannworks_gardenwar,91,0.000204%,mvm,Man vs Machine
trade_minecraft_neon_v53,91,0.000204%,trade,Trade and Achievement
surf_forbidden_tomb,91,0.000204%,surf,Other
duel_guns,91,0.000204%,duel,Other
mvm_decoy_cick_advanced2,91,0.000204%,mvm,Man vs Machine
cp_orange_x3_dc5c,91,0.000204%,cp,Capture Point
dr_supermonkeyball_v1,91,0.000204%,dr,Other
bhop_challenjour,91,0.000204%,bhop,Other
surf_jusched_njv,91,0.000204%,surf,Other
vsh_cranetop_b1,90,0.000202%,vsh,Other
surf_pox_njv,90,0.000202%,surf,Other
tfdb_thymo_db05_a4,90,0.000202%,tfdb,Other
surf_nightmare_fix,90,0.000202%,surf,Other
achievement_idle_city_v4,90,0.000202%,achievement,Trade and Achievement
sn_snipechete_d,90,0.000202%,sn,Other
mvm_underground_survival_object,90,0.000202%,mvm,Man vs Machine
vsh_dr_cryptnecrodancer_v6,90,0.000202%,vsh,Other
fw_medieval_joan_v4,90,0.000202%,fw,Other
jump_termywermy_beta2,90,0.000202%,jump,Other
mlp_appleloosa_toe_b3,90,0.000202%,mlp,Other
koth_lolcano_b2,90,0.000202%,koth,King of the Hill
cp_subway_final,90,0.000202%,cp,Capture Point
mvm_wallmaria_danniels_newera,90,0.000202%,mvm,Man vs Machine
mvm_decoy_robo_gatiens_gatiens,90,0.000202%,mvm,Man vs Machine
mvm_greenhill_alpha,90,0.000202%,mvm,Man vs Machine
mvm_processing_v3,90,0.000202%,mvm,Man vs Machine
pl_auriferous_rc11,90,0.000202%,pl,Payload
cp_facingforts_tbrv7,89,0.000200%,cp,Capture Point
ctf_aerial_b11_c4,89,0.000200%,ctf,Capture the Flag
trade_hopi_plaza_v2a1_ros,89,0.000200%,trade,Trade and Achievement
vsh_mario_fortress_v2,89,0.000200%,vsh,Other
surf_depths,89,0.000200%,surf,Other
mvm_orange_x3_how_v2b_fawos_dec,89,0.000200%,mvm,Man vs Machine
mvm_on_titan_normal,89,0.000200%,mvm,Man vs Machine
surf_tron_njv,89,0.000200%,surf,Other
pl_deadend_b3,89,0.000200%,pl,Payload
cp_oblako_a1,89,0.000200%,cp,Capture Point
pl_millstone_rc9,89,0.000200%,pl,Payload
ctf_snowdrift_b4a,89,0.000200%,ctf,Capture the Flag
strange-boost_v50_d,89,0.000200%,strange-boost,Other
mvm_thedust_b3_advanced3,89,0.000200%,mvm,Man vs Machine
vsh_dr_divinity_vfinal,89,0.000200%,vsh,Other
arena_tombfort_rc,89,0.000200%,arena,Other
cp_toystore,89,0.000200%,cp,Capture Point
surf_underearth_v2,89,0.000200%,surf,Other
surf_coralis_fix3,89,0.000200%,surf,Other
cp_dustbowl_turbo_b1,88,0.000198%,cp,Capture Point
zf_compound_b6,88,0.000198%,zf,Other
cp_orange_transport_alpha4,88,0.000198%,cp,Capture Point
mvm_coaltown_operation_e.x.o.d.,88,0.000198%,mvm,Man vs Machine
vsh_kg_tempest_v1_1,88,0.000198%,vsh,Other
bhop_indev,88,0.000198%,bhop,Other
freestyle_bliss_b2,88,0.000198%,freestyle,Other
mvm_ma_ep14_1_fixed_hard,88,0.000198%,mvm,Man vs Machine
tfdb_circonvolium_b4,88,0.000198%,tfdb,Other
vsh_scorched_final,88,0.000198%,vsh,Other
mvm_newnormandy_operation_overl,88,0.000198%,mvm,Man vs Machine
mvm_customwaves_test_harder,88,0.000198%,mvm,Man vs Machine
jump_onit_a4,88,0.000198%,jump,Other
cp_aperture_scoutjump,88,0.000198%,cp,Capture Point
mvm_troopers_defend_fawosfix_sl,88,0.000198%,mvm,Man vs Machine
trade_minecraft_windmillh2,88,0.000198%,trade,Trade and Achievement
weaver_shatter_beta,88,0.000198%,weaver,Other
ctf_2fort_classic_mod_bd27,88,0.000198%,ctf,Capture the Flag
mvm_decoy_e-visceration,88,0.000198%,mvm,Man vs Machine
tfil_chamber_b2,88,0.000198%,tfil,Other
mvm_cargo_b4,88,0.000198%,mvm,Man vs Machine
achi_apg_vobrlh_d7a,88,0.000198%,achi,Other
cp_metalworks_rc5,88,0.000198%,cp,Capture Point
cp_orange_n5_final,88,0.000198%,cp,Capture Point
mvm_mannworks_advanced+,88,0.000198%,mvm,Man vs Machine
mvm_ventus_b6_normal,88,0.000198%,mvm,Man vs Machine
jump_minefield_beta01,87,0.000195%,jump,Other
trade_sunshine_hmx_fix_v1,87,0.000195%,trade,Trade and Achievement
tr_trickstab_a1,87,0.000195%,tr,Other
ave_hq_a2,87,0.000195%,ave,Other
pkmn_goldenrodcity_b2,87,0.000195%,pkmn,Other
mvm_stratosphere_a2_normal,87,0.000195%,mvm,Man vs Machine
mvm_isolation_eulif,87,0.000195%,mvm,Man vs Machine
dm_manehatten_b7,87,0.000195%,dm,Deathmatch
koth_occult_rc6,87,0.000195%,koth,King of the Hill
tfdb_brokenglass_b4_jugfix1,87,0.000195%,tfdb,Other
vsh_bombdepot_b3,87,0.000195%,vsh,Other
vsh_skyhigh_resort_b5,87,0.000195%,vsh,Other
sniper_2fort,87,0.000195%,sniper,Other
mvm_bigrock_gauntlet_of_bosses,87,0.000195%,mvm,Man vs Machine
cp_cube_alphav1,87,0.000195%,cp,Capture Point
surf_ny_resist_t30,87,0.000195%,surf,Other
arena_oasis_final,87,0.000195%,arena,Other
jump_obsidian_v2,87,0.000195%,jump,Other
gm10_floodinvasion,87,0.000195%,gm10,Other
jump_arc_b1_tmps,87,0.000195%,jump,Other
cp_edifice_rc1,87,0.000195%,cp,Capture Point
koth_chairs,87,0.000195%,koth,King of the Hill
cp_stag,87,0.000195%,cp,Capture Point
trade_town_v2,86,0.000193%,trade,Trade and Achievement
surf_nac,86,0.000193%,surf,Other
cp_isselund_a3,86,0.000193%,cp,Capture Point
mvm_mannhattan_ubup_xmasinvasio,86,0.000193%,mvm,Man vs Machine
pl_distillation_b1,86,0.000193%,pl,Payload
surf_forbidden_tomb2,86,0.000193%,surf,Other
mvm_thedust_b3_intermediate1,86,0.000193%,mvm,Man vs Machine
cp_gamerland_modern_a1steaksauc,86,0.000193%,cp,Capture Point
mvm_mannworks_ponies1,86,0.000193%,mvm,Man vs Machine
koth_airfield_b10,86,0.000193%,koth,King of the Hill
tfdb_lithium_jugfix,86,0.000193%,tfdb,Other
fun_knedlov_v3,86,0.000193%,fun,Other
zf_badwater_gov,86,0.000193%,zf,Other
mvm_mannhattan_survival_upd,86,0.000193%,mvm,Man vs Machine
surf_stonework,85,0.000191%,surf,Other
tfdb_abhorrible_fix,85,0.000191%,tfdb,Other
vsh_artefact_v3,85,0.000191%,vsh,Other
achievement_idle_aweso,85,0.000191%,achievement,Trade and Achievement
surf_krow10,85,0.000191%,surf,Other
mvm_underworld_rc2_wrath_of_hel,85,0.000191%,mvm,Man vs Machine
fw_ob_snicz,85,0.000191%,fw,Other
mvm_castle_defense_a4_30wave_v6,85,0.000191%,mvm,Man vs Machine
achieve_parachute,85,0.000191%,achieve,Other
dbs_obelisk_b10c,85,0.000191%,dbs,Other
gg_bandicoot_arabia_tf2,85,0.000191%,gg,Other
koth_minehouse_v1,85,0.000191%,koth,King of the Hill
achievement_idle_strange_v5,85,0.000191%,achievement,Trade and Achievement
mvm_corridors2_b8_normal,85,0.000191%,mvm,Man vs Machine
mvm_decoy_strange_experience,85,0.000191%,mvm,Man vs Machine
microtf2_rsx_beta,85,0.000191%,microtf2,Other
mvm_normandy_mechanical_devasta,84,0.000189%,mvm,Man vs Machine
mvm_adventure_of_30wave_ep3_eas,84,0.000189%,mvm,Man vs Machine
surf_aaaa_reloaded,84,0.000189%,surf,Other
achievement_helms_deep_s2,84,0.000189%,achievement,Trade and Achievement
mvm_troopers_defend_fawosfix_bi,84,0.000189%,mvm,Man vs Machine
trade_ztg_space_plaza_v2_2,84,0.000189%,trade,Trade and Achievement
mvm_coaltown_christmas,84,0.000189%,mvm,Man vs Machine
mvm_winter_b5_bigrock,84,0.000189%,mvm,Man vs Machine
koth_flox_v4,84,0.000189%,koth,King of the Hill
koth_cranelift_a6,84,0.000189%,koth,King of the Hill
jump_hangar_18,84,0.000189%,jump,Other
surf_odyssey_fix,84,0.000189%,surf,Other
mvm_5gorge_cp_electrical_exterm,83,0.000186%,mvm,Man vs Machine
mvm_popfile,83,0.000186%,mvm,Man vs Machine
mvm_mannhattan_uberup_easy,83,0.000186%,mvm,Man vs Machine
mvm_coaltown_mighty_tank,83,0.000186%,mvm,Man vs Machine
vsh_rats,83,0.000186%,vsh,Other
mvm_rottenburg_semlab_c6,83,0.000186%,mvm,Man vs Machine
mvm_rottenburg_crits_to_kill,83,0.000186%,mvm,Man vs Machine
fw_rbo_cfp_octagon_bz,83,0.000186%,fw,Other
dr_orange_ffix,83,0.000186%,dr,Other
surf_treefort,83,0.000186%,surf,Other
surf_monolith_b1,83,0.000186%,surf,Other
mvm_mannhattan_a1a,83,0.000186%,mvm,Man vs Machine
ctf_decker_b1,83,0.000186%,ctf,Capture the Flag
dbs_cagematch_b12b,83,0.000186%,dbs,Other
vsh_underground,83,0.000186%,vsh,Other
ctf_vikings_lol_a11,83,0.000186%,ctf,Capture the Flag
koth_devtest_v1,82,0.000184%,koth,King of the Hill
tfdb_rows,82,0.000184%,tfdb,Other
bhop_monotonous,82,0.000184%,bhop,Other
dr_cocainum_v2_3_xmas,82,0.000184%,dr,Other
mvm_giza_b7_advanced1,82,0.000184%,mvm,Man vs Machine
tf2kart_ngineer_labs_b4,82,0.000184%,tf2kart,Other
szf_experiment_v10,82,0.000184%,szf,Other
ph_goldtooth_a2,82,0.000184%,ph,Other
dbs_hex_b4,82,0.000184%,dbs,Other
mvm_decoy_allan,82,0.000184%,mvm,Man vs Machine
mvm_hydro_a1,82,0.000184%,mvm,Man vs Machine
arena_2016,82,0.000184%,arena,Other
vsh_well_lz_b2,82,0.000184%,vsh,Other
ccp_orange_outpost_tbr,82,0.000184%,ccp,Other
trade_blurville_a2,82,0.000184%,trade,Trade and Achievement
koth_coalplant_b8,82,0.000184%,koth,King of the Hill
mvm_mc_overdrive_secret_1,82,0.000184%,mvm,Man vs Machine
mvm_redbrier_b3_normal,82,0.000184%,mvm,Man vs Machine
mvm_fakeout_a3,82,0.000184%,mvm,Man vs Machine
mvm_highrise_advanced2,82,0.000184%,mvm,Man vs Machine
mvm_fakeout_a3_normal,82,0.000184%,mvm,Man vs Machine
koth_3rooms,81,0.000182%,koth,King of the Hill
jump_cellshaded_b4,81,0.000182%,jump,Other
bhop_arcane2_a06,81,0.000182%,bhop,Other
cp_honmaru_rc4,81,0.000182%,cp,Capture Point
jump_soar_a3,81,0.000182%,jump,Other
mvm_ma_ep12_1_fixed_hard,81,0.000182%,mvm,Man vs Machine
strange_level_blockfort_v2,81,0.000182%,strange,Other
mvm_cartoonheroes_cyber,81,0.000182%,mvm,Man vs Machine
arena_haat_b1a,81,0.000182%,arena,Other
jump_smellmybum,81,0.000182%,jump,Other
mvm_cyberhighway_cyberfy,81,0.000182%,mvm,Man vs Machine
vsh_plankfest_lz_b1,81,0.000182%,vsh,Other
fw_position_v2,81,0.000182%,fw,Other
tfdb_dreambox_b2,81,0.000182%,tfdb,Other
mvm_corridors_operationrobot,81,0.000182%,mvm,Man vs Machine
vsh_dr_sketchyrun_final2,81,0.000182%,vsh,Other
mvm_isolation_rc3_ponies1,81,0.000182%,mvm,Man vs Machine
achievement_train_v23,81,0.000182%,achievement,Trade and Achievement
arena_2fort,81,0.000182%,arena,Other
tradeplaza_insignia_xmas2016_ip,81,0.000182%,tradeplaza,Other
mvm_decoy_slaughterhouse,81,0.000182%,mvm,Man vs Machine
mvm_decoy_unexpecteddecoy,81,0.000182%,mvm,Man vs Machine
surf_resort,81,0.000182%,surf,Other
sb_industrial_v3,81,0.000182%,sb,Other
tfdb_theunknown_rc8,81,0.000182%,tfdb,Other
hm_opcusd_v2,81,0.000182%,hm,Other
fw_orange_xxz,80,0.000180%,fw,Other
tr_walkway,80,0.000180%,tr,Other
vsh_infraquaticus_v4,80,0.000180%,vsh,Other
bhop_serenity,80,0.000180%,bhop,Other
surf_niggers,80,0.000180%,surf,Other
trade_plaza_reproduced_v5,80,0.000180%,trade,Trade and Achievement
cp_canterlot_wg_b2,80,0.000180%,cp,Capture Point
vsh_dr_xtremeway,80,0.000180%,vsh,Other
cp_oblako_a2,80,0.000180%,cp,Capture Point
tfdb_ovni_v6,80,0.000180%,tfdb,Other
achievement_botfarm_v8,80,0.000180%,achievement,Trade and Achievement
mvm_mannworks_abnormal,80,0.000180%,mvm,Man vs Machine
vsh_waste_lz_b3,80,0.000180%,vsh,Other
jump_mike_a1,80,0.000180%,jump,Other
cp_nothing_a6,80,0.000180%,cp,Capture Point
tfil_chamber_a1,80,0.000180%,tfil,Other
vsh_calamity_beach,80,0.000180%,vsh,Other
cp_spiral_a2,80,0.000180%,cp,Capture Point
cp_erector_b1,80,0.000180%,cp,Capture Point
mvm_birthday_a3,80,0.000180%,mvm,Man vs Machine
surf_hurrr,80,0.000180%,surf,Other
dragon_ball_gt,79,0.000177%,dragon,Other
cp_warpath,79,0.000177%,cp,Capture Point
fw_3cp_forest_v7,79,0.000177%,fw,Other
trade_plaza_lodge_v1_2,79,0.000177%,trade,Trade and Achievement
cp_casablanca_v2_a4a,79,0.000177%,cp,Capture Point
jump_attached2_rc4,79,0.000177%,jump,Other
vsh_outpost_b1,79,0.000177%,vsh,Other
tf2kart_woods_f,79,0.000177%,tf2kart,Other
cp_mountcoaster_v6,79,0.000177%,cp,Capture Point
jump_skull_v1,79,0.000177%,jump,Other
cp_orange_x3_ddr_,79,0.000177%,cp,Capture Point
dr_dust_b4_fixed,79,0.000177%,dr,Other
tfdb_exiles_sawmill_a4,79,0.000177%,tfdb,Other
surf_timewarp,79,0.000177%,surf,Other
strange_level_spectrum,79,0.000177%,strange,Other
mvm_mannhattan_hybrid,79,0.000177%,mvm,Man vs Machine
dm_appleloosa_b6,79,0.000177%,dm,Deathmatch
arena_nuketown,79,0.000177%,arena,Other
mariokart2_b3,79,0.000177%,mariokart2,Other
pl_erosion_a6,79,0.000177%,pl,Payload
koth_blueberries_b1b,79,0.000177%,koth,King of the Hill
pl_goldheist_canyon_final_v2,79,0.000177%,pl,Payload
koth_riverside,79,0.000177%,koth,King of the Hill
mvm_coaltown_boss,78,0.000175%,mvm,Man vs Machine
koth_mansionrats_rc1_tk,78,0.000175%,koth,King of the Hill
arena_rochester_a1,78,0.000175%,arena,Other
jump_4dakids,78,0.000175%,jump,Other
vsh_livingroom_lz_a3,78,0.000175%,vsh,Other
koth_tunnel_a3b,78,0.000175%,koth,King of the Hill
jump_keratotomy_b6,78,0.000175%,jump,Other
vsh_dunger_b2,78,0.000175%,vsh,Other
mvm_5gorge_cp_30_waves_v46_hard,78,0.000175%,mvm,Man vs Machine
koth_aerial_a19,78,0.000175%,koth,King of the Hill
gg_bigrock_rc1,78,0.000175%,gg,Other
koth_c17_streetwar,78,0.000175%,koth,King of the Hill
vsh_idiotbox_b2,78,0.000175%,vsh,Other
jump_hanami_final_v2,78,0.000175%,jump,Other
slender_crypt_a1a,78,0.000175%,slender,Other
vsh_dr_block_v4,78,0.000175%,vsh,Other
surf_beyer2,78,0.000175%,surf,Other
sniper_snipefarm,78,0.000175%,sniper,Other
vsh_dunger_2017_v2,78,0.000175%,vsh,Other
cp_myrtana_a38,78,0.000175%,cp,Capture Point
zs_dustbowl_v1,78,0.000175%,zs,Other
tr_sniper_aim,78,0.000175%,tr,Other
koth_waterfey,78,0.000175%,koth,King of the Hill
pl_badwater_advanced2_high_cpu,78,0.000175%,pl,Payload
mvm_rottenburg_ubup_ironmen,78,0.000175%,mvm,Man vs Machine
vsh_duloc_b3,78,0.000175%,vsh,Other
mvm_coaltown_bothteams,78,0.000175%,mvm,Man vs Machine
mvm_decoy_advanced_devious_drai,77,0.000173%,mvm,Man vs Machine
trade_ntotb_hq_v5,77,0.000173%,trade,Trade and Achievement
slender_mansion_b1_1,77,0.000173%,slender,Other
cp_waterworks_5,77,0.000173%,cp,Capture Point
mvm_metro_rc1_click_expert1,77,0.000173%,mvm,Man vs Machine
jump_keratotomy_b8,77,0.000173%,jump,Other
koth_northural_v1,77,0.000173%,koth,King of the Hill
fw_parallel_v13,77,0.000173%,fw,Other
duel_scout,77,0.000173%,duel,Other
mvm_decoy_expert1+,77,0.000173%,mvm,Man vs Machine
pl_orange_x_b4,77,0.000173%,pl,Payload
ph_redquarters_a6,77,0.000173%,ph,Other
ctf_aerial_b8,77,0.000173%,ctf,Capture the Flag
trade_subway_b4,77,0.000173%,trade,Trade and Achievement
mvm_sundown_a4,77,0.000173%,mvm,Man vs Machine
jump_cyan_b1,77,0.000173%,jump,Other
dbs_pit3,77,0.000173%,dbs,Other
koth_oilfield,77,0.000173%,koth,King of the Hill
pl_auriferous_rc15,77,0.000173%,pl,Payload
szf_cityhunter_b3,77,0.000173%,szf,Other
koth_rainbow_b6,77,0.000173%,koth,King of the Hill
koth_pacman_wtf_b2,77,0.000173%,koth,King of the Hill
vsh_run_trepidation_v2,77,0.000173%,vsh,Other
koth_westwind_mid,77,0.000173%,koth,King of the Hill
surf_catalyst2,77,0.000173%,surf,Other
cp_isselund_a2,76,0.000171%,cp,Capture Point
gg_sawmill,76,0.000171%,gg,Other
cp_nothing_a3,76,0.000171%,cp,Capture Point
tfdb_derrieres,76,0.000171%,tfdb,Other
mvm_overlord_b3_badwater_advanc,76,0.000171%,mvm,Man vs Machine
sb_pathways_v2_rsfix,76,0.000171%,sb,Other
mvm_jon_a4,76,0.000171%,mvm,Man vs Machine
dr_hereafter_b3_fix,76,0.000171%,dr,Other
vsh_faced_lz_b1,76,0.000171%,vsh,Other
mvm_bigrock_advanced_binary_bri,76,0.000171%,mvm,Man vs Machine
pl_moonbase_b7,76,0.000171%,pl,Payload
trade_dcx_b2,76,0.000171%,trade,Trade and Achievement
trade_newporkcity,76,0.000171%,trade,Trade and Achievement
tfdb_qop_a4,76,0.000171%,tfdb,Other
surf_sinsane,76,0.000171%,surf,Other
surf_ixtab,76,0.000171%,surf,Other
mvm_adventure_of_30wave_ep1_nor,76,0.000171%,mvm,Man vs Machine
mvm_bigrock_ponies2,76,0.000171%,mvm,Man vs Machine
zf_harbour_a1,76,0.000171%,zf,Other
surf_underearth,76,0.000171%,surf,Other
ultiduo_orbit_a1,76,0.000171%,ultiduo,Other
jump_silly_a12,76,0.000171%,jump,Other
tfrace_rainbowroadsnes_b1,76,0.000171%,tfrace,Other
achievement_idledg_megabox8,76,0.000171%,achievement,Trade and Achievement
koth_basalt_rc2,76,0.000171%,koth,King of the Hill
vsh_magic_wc_2bmap,76,0.000171%,vsh,Other
cp_forest_shrine_a15,76,0.000171%,cp,Capture Point
jump_solt5,76,0.000171%,jump,Other
vsh_hamsterdance_side_v1,76,0.000171%,vsh,Other
cp_orange_horror,76,0.000171%,cp,Capture Point
mvm_winter_b5_advanced3,76,0.000171%,mvm,Man vs Machine
surf_loentra,76,0.000171%,surf,Other
mvm_mannworks_30_waves_remaster,76,0.000171%,mvm,Man vs Machine
jump_dahl_fixed,76,0.000171%,jump,Other
vsh_ravage_lz_b2,76,0.000171%,vsh,Other
trade_sinful_v5,75,0.000168%,trade,Trade and Achievement
pl_hoodoo,75,0.000168%,pl,Payload
ph_pipeline_final,75,0.000168%,ph,Other
vsh_dr_slay_b5,75,0.000168%,vsh,Other
koth_camp,75,0.000168%,koth,King of the Hill
sniper_war_trolls,75,0.000168%,sniper,Other
surf_misc,75,0.000168%,surf,Other
gm_fork,75,0.000168%,gm,Other
arena_breakwall_b2,75,0.000168%,arena,Other
fw_king-mod_v5,75,0.000168%,fw,Other
koth_cargoyard,75,0.000168%,koth,King of the Hill
mvm_rooftop,75,0.000168%,mvm,Man vs Machine
mvm_bigrock_30_waves_remastered,75,0.000168%,mvm,Man vs Machine
mvm_decoy_advanced_final_missio,75,0.000168%,mvm,Man vs Machine
tf2kart_basic_d,75,0.000168%,tf2kart,Other
tfdb_psychoroom_final,75,0.000168%,tfdb,Other
jump_friends_a6_7,75,0.000168%,jump,Other
mvm_mannworks_uu99_bosses,75,0.000168%,mvm,Man vs Machine
koth_ashwood_b8,75,0.000168%,koth,King of the Hill
ctf_2fortbeta_v2,75,0.000168%,ctf,Capture the Flag
mvm_bigrock_trollingboss,75,0.000168%,mvm,Man vs Machine
dbs_select_rc4,75,0.000168%,dbs,Other
plr_toy_fort_3_race,75,0.000168%,plr,Payload Race
cp_orange_etage_tbrvs3,75,0.000168%,cp,Capture Point
cp_myrtana_a35,75,0.000168%,cp,Capture Point
surf_hydrogen_v2,75,0.000168%,surf,Other
surf_alternation,75,0.000168%,surf,Other
cp_thefrontlineexp_s1a3,74,0.000166%,cp,Capture Point
ctf_sweetwater_redux_b1,74,0.000166%,ctf,Capture the Flag
szf_8_a6,74,0.000166%,szf,Other
ctf_orange_squash,74,0.000166%,ctf,Capture the Flag
mvm_coaltown_ultra_catastrophe,74,0.000166%,mvm,Man vs Machine
cp_whitewash_rc1,74,0.000166%,cp,Capture Point
cp_nothing_a4,74,0.000166%,cp,Capture Point
koth_minefield_snow,74,0.000166%,koth,King of the Hill
surf_buck-around_tf2b,74,0.000166%,surf,Other
fw_cs_desert2_v9,74,0.000166%,fw,Other
cp_desertion_rc1,74,0.000166%,cp,Capture Point
cp_okto_beta_2,74,0.000166%,cp,Capture Point
room2016_flowershopguy,74,0.000166%,room2016,Other
mvm_mannworks_click_expert1,74,0.000166%,mvm,Man vs Machine
gg_logary_tf2_jugfix,73,0.000164%,gg,Other
cp_freight,73,0.000164%,cp,Capture Point
surf_basix,73,0.000164%,surf,Other
fw_forts_a2z,73,0.000164%,fw,Other
surf_occur,73,0.000164%,surf,Other
vsh_warehouse_v2_lz,73,0.000164%,vsh,Other
koth_scaffolding_a11,73,0.000164%,koth,King of the Hill
jump_ctap_test,73,0.000164%,jump,Other
zf_cliff_v2_6,73,0.000164%,zf,Other
jump_fruh_a1,73,0.000164%,jump,Other
trade_face8,73,0.000164%,trade,Trade and Achievement
trade_delfinoplaza_final,73,0.000164%,trade,Trade and Achievement
mvm_giza_b7_intermediate1,73,0.000164%,mvm,Man vs Machine
senior_scrap_001,73,0.000164%,senior,Other
surf_glass7,73,0.000164%,surf,Other
surf_exile_tf2,73,0.000164%,surf,Other
mvm_isolation_b6_advanced2,73,0.000164%,mvm,Man vs Machine
ctf_ballin_comptf,73,0.000164%,ctf,Capture the Flag
mvm_ma_ep12b2_1_fixed_normal,73,0.000164%,mvm,Man vs Machine
cp_orange_x3_e6,73,0.000164%,cp,Capture Point
mvm_winter_b5_advanced1,73,0.000164%,mvm,Man vs Machine
mvm_meltdown_rc4_advanced1,73,0.000164%,mvm,Man vs Machine
cp_badfish_a8,73,0.000164%,cp,Capture Point
mvm_decoy_turbo,73,0.000164%,mvm,Man vs Machine
ctf_halloflife_a1,73,0.000164%,ctf,Capture the Flag
koth_trainsawlaser_b6,73,0.000164%,koth,King of the Hill
vsh_citydirtbox_b9,72,0.000162%,vsh,Other
vsh_hyrule_castle_v2,72,0.000162%,vsh,Other
ph_junction_final,72,0.000162%,ph,Other
arena_badlands_data,72,0.000162%,arena,Other
fw_tunnel_v3,72,0.000162%,fw,Other
mvm_hillside_v3,72,0.000162%,mvm,Man vs Machine
ctf_2fort_3rdoct_a5,72,0.000162%,ctf,Capture the Flag
cp_dangerwillrobinson_beta_tk,72,0.000162%,cp,Capture Point
koth_mineriver_rc,72,0.000162%,koth,King of the Hill
ctf_sweetwater_redux_a9,72,0.000162%,ctf,Capture the Flag
arena_discovery_b3b,72,0.000162%,arena,Other
tfdb_spacebox,72,0.000162%,tfdb,Other
vsh_blackout_a1,72,0.000162%,vsh,Other
idle_sniper_war_v24_69u,72,0.000162%,idle,Other
pl_skyfortress_a13,72,0.000162%,pl,Payload
vsh_draft_lz_b1,72,0.000162%,vsh,Other
mvm_tunnels_a5_advanced1,72,0.000162%,mvm,Man vs Machine
vsh_loader,72,0.000162%,vsh,Other
mvm_scream_tv_normal,72,0.000162%,mvm,Man vs Machine
mvm_hydro_a3_normal,72,0.000162%,mvm,Man vs Machine
bhop_grid_easy,72,0.000162%,bhop,Other
jump_kusok_b3,72,0.000162%,jump,Other
mvm_coaltown_expert_singleplaye,72,0.000162%,mvm,Man vs Machine
pl_genesis_a16b,72,0.000162%,pl,Payload
ctf_unfiltration,72,0.000162%,ctf,Capture the Flag
cp_myrtana_a40,72,0.000162%,cp,Capture Point
tfdb_mechanicus_rc1,72,0.000162%,tfdb,Other
sniper_territory,72,0.000162%,sniper,Other
space_party_v1pak,72,0.000162%,space,Other
surf_4ways_b1,72,0.000162%,surf,Other
mvm_mannworks_condemned_crazine,72,0.000162%,mvm,Man vs Machine
vsh_storageyard_b6,72,0.000162%,vsh,Other
tfdb_anox_hexagon,71,0.000159%,tfdb,Other
cp_karelia_a5a,71,0.000159%,cp,Capture Point
dr_darkenergy_v5,71,0.000159%,dr,Other
sn_hac_castlecanals,71,0.000159%,sn,Other
mvm_memorial_b1_normal,71,0.000159%,mvm,Man vs Machine
zf_tower_defence_v24,71,0.000159%,zf,Other
cp_hybro_b02,71,0.000159%,cp,Capture Point
vsh_livingroom_lz_a4,71,0.000159%,vsh,Other
surf_firingrange_hdr_v2,71,0.000159%,surf,Other
mvm_spaceage_cyberfy,71,0.000159%,mvm,Man vs Machine
mvm_decoy_30wave_v60_lvl2,71,0.000159%,mvm,Man vs Machine
trade_castlesiege_b2,71,0.000159%,trade,Trade and Achievement
koth_bagel_rc2,71,0.000159%,koth,King of the Hill
vsh_dr_wintervalley_final,71,0.000159%,vsh,Other
cp_deepwoods_a1,71,0.000159%,cp,Capture Point
mochilabr_a4,71,0.000159%,mochilabr,Other
ctf_superdupertransportuperextr,71,0.000159%,ctf,Capture the Flag
vsh_shockwave_b2a,71,0.000159%,vsh,Other
psf_germanyprison_v8_fix,71,0.000159%,psf,Other
zf_forest,71,0.000159%,zf,Other
mvm_underground_rc2_advanced2,71,0.000159%,mvm,Man vs Machine
mvm_giza_b6,71,0.000159%,mvm,Man vs Machine
mvm_meltdown_rc4_expert,71,0.000159%,mvm,Man vs Machine
dm_manor,71,0.000159%,dm,Deathmatch
mvm_mannhattan_urban_survival_v,71,0.000159%,mvm,Man vs Machine
mvm_ghost_town_spookse,71,0.000159%,mvm,Man vs Machine
mvm_mannhattan_short_fuse,71,0.000159%,mvm,Man vs Machine
surf_neoplasma,71,0.000159%,surf,Other
bhop_noninscripsit,71,0.000159%,bhop,Other
fw_cs_italy_v7,71,0.000159%,fw,Other
cp_traincrossing_a3,71,0.000159%,cp,Capture Point
mvm_sewer_invasion_b7_intermedi,71,0.000159%,mvm,Man vs Machine
pl_minecraft_redstone_f15,71,0.000159%,pl,Payload
dbs_champion2_pa1,71,0.000159%,dbs,Other
fw_tunnel2_v2,71,0.000159%,fw,Other
vsh_battleground_beta,71,0.000159%,vsh,Other
koth_rats_office_b1_2_tk,71,0.000159%,koth,King of the Hill
vsh_complex_d_v10b1,71,0.000159%,vsh,Other
ph_spookycanyon_a1,70,0.000157%,ph,Other
mvm_mannworks_ultra_mechapocals,70,0.000157%,mvm,Man vs Machine
surf_sinister,70,0.000157%,surf,Other
fw_orange_x5_b4z,70,0.000157%,fw,Other
jump_fanboy_b4,70,0.000157%,jump,Other
ow_koth,70,0.000157%,ow,Other
arena_farm_fix,70,0.000157%,arena,Other
vsh_blockfort_ver1,70,0.000157%,vsh,Other
mvm_isolation_b2,70,0.000157%,mvm,Man vs Machine
mvm_killing_fortress,70,0.000157%,mvm,Man vs Machine
vsh_snow_valley_lz_b2,70,0.000157%,vsh,Other
dm_alphor_a,70,0.000157%,dm,Deathmatch
pl_super_goldrush_a2,70,0.000157%,pl,Payload
dbs_platforms_b4,70,0.000157%,dbs,Other
mvm_bigrock_ubup_ironmen,70,0.000157%,mvm,Man vs Machine
mvm_degrootkeep_b1_normal,70,0.000157%,mvm,Man vs Machine
dr_bank_v6_gsn,70,0.000157%,dr,Other
mvm_limburgh_final_d-day,70,0.000157%,mvm,Man vs Machine
pl_frostbite_a1,70,0.000157%,pl,Payload
mvm_downtown_final1_advanced2,70,0.000157%,mvm,Man vs Machine
mvm_normandy,70,0.000157%,mvm,Man vs Machine
cp_nothing_a5,70,0.000157%,cp,Capture Point
tf_crash_ctf,70,0.000157%,tf,Other
cp_traincrossing_a2,70,0.000157%,cp,Capture Point
koth_lolcano_b3_tk,69,0.000155%,koth,King of the Hill
ultiduo_badlands_b1,69,0.000155%,ultiduo,Other
mvm_skullcove_rc1_horror,69,0.000155%,mvm,Man vs Machine
jb_blacksquare_b3,69,0.000155%,jb,Other
mvm_mannhattan_operation_mechan,69,0.000155%,mvm,Man vs Machine
mvm_ventus_b6_fawosfix_rus,69,0.000155%,mvm,Man vs Machine
mvm_manncohq_v3_advanced2,69,0.000155%,mvm,Man vs Machine
mvm_decoy_x10,69,0.000155%,mvm,Man vs Machine
cs_assault,69,0.000155%,cs,Other
tfdb_marinadrill_final,69,0.000155%,tfdb,Other
cp_boondoggle_a9,69,0.000155%,cp,Capture Point
vsh_mini_games_v15,69,0.000155%,vsh,Other
zm_boatescape_xy,69,0.000155%,zm,Other
surf_elysium3,69,0.000155%,surf,Other
mvm_mannhattan_30waves_survival,69,0.000155%,mvm,Man vs Machine
emilie_teamfortressmap,69,0.000155%,emilie,Other
jump_spooky_b3,69,0.000155%,jump,Other
dm_rainbow_road_b3,69,0.000155%,dm,Deathmatch
dr_newporkcity_a4,69,0.000155%,dr,Other
jump_spark_rc1,69,0.000155%,jump,Other
jb_uhadi_alpha3_nosky,69,0.000155%,jb,Other
cp_thefrontlineexp_s1a1,69,0.000155%,cp,Capture Point
mvm_grand_canyon_normal,68,0.000153%,mvm,Man vs Machine
mvm_plateau_b5,68,0.000153%,mvm,Man vs Machine
super_mario_do_n64,68,0.000153%,super,Other
pl_borax_rc,68,0.000153%,pl,Payload
mvm_bigrock_uberup_easy,68,0.000153%,mvm,Man vs Machine
tf_slender_v1,68,0.000153%,tf,Other
ctf_bball_snow_b1,68,0.000153%,ctf,Capture the Flag
arena_sky_war,68,0.000153%,arena,Other
mvm_powerplant_b2,68,0.000153%,mvm,Man vs Machine
ctf_well_classic_b3,68,0.000153%,ctf,Capture the Flag
mvm_coaltown_16wave_expert,68,0.000153%,mvm,Man vs Machine
surf_lighthouse,68,0.000153%,surf,Other
arena_volcano_b2b,68,0.000153%,arena,Other
jump_slider_1,68,0.000153%,jump,Other
fw_3door_v1,68,0.000153%,fw,Other
boss_sealchamber_v2,68,0.000153%,boss,Other
cs_compound,68,0.000153%,cs,Other
mvm_winter_b5,68,0.000153%,mvm,Man vs Machine
mvm_decoy_electronic_endurance,68,0.000153%,mvm,Man vs Machine
dm_killerbox_public_test1,68,0.000153%,dm,Deathmatch
arena_madcap,68,0.000153%,arena,Other
sn_caldera_fix,68,0.000153%,sn,Other
mvm_ma_ep12b2_1_fixed_hard,68,0.000153%,mvm,Man vs Machine
surf_ny_master_exploder,68,0.000153%,surf,Other
mvm_on_titan_wrath_of_the_kings,68,0.000153%,mvm,Man vs Machine
surf_milkyway,67,0.000150%,surf,Other
wacky_races_v2_tk,67,0.000150%,wacky,Other
dr_haunted_museum_v2,67,0.000150%,dr,Other
mvm_powerplant_rc1_expert,67,0.000150%,mvm,Man vs Machine
koth_trade_pool,67,0.000150%,koth,King of the Hill
pl_silo_plant_no6_b3,67,0.000150%,pl,Payload
vsh_complex_d_v5,67,0.000150%,vsh,Other
koth_bagel_b3a,67,0.000150%,koth,King of the Hill
trade_plaza_darkly,67,0.000150%,trade,Trade and Achievement
cp_coldfrontline_a4,67,0.000150%,cp,Capture Point
cp_rapid_test,67,0.000150%,cp,Capture Point
bhop_metric,67,0.000150%,bhop,Other
mvm_badwater_final_normal,67,0.000150%,mvm,Man vs Machine
arena_honeyville_res5,67,0.000150%,arena,Other
cp_zone_a4,67,0.000150%,cp,Capture Point
vsh_shelter_rc2,67,0.000150%,vsh,Other
jump_fusion_prealpha2,67,0.000150%,jump,Other
jump_schadenfreude_rc1,67,0.000150%,jump,Other
mvm_ma_ep10b_1_easy,67,0.000150%,mvm,Man vs Machine
cp_dusk_b1b,67,0.000150%,cp,Capture Point
mvm_on_titan_wing_expert1,67,0.000150%,mvm,Man vs Machine
crystalgoddamkindom_b4,67,0.000150%,crystalgoddamkindom,Other
surf_construction,67,0.000150%,surf,Other
cp_drudgery_b1,67,0.000150%,cp,Capture Point
mvm_mannhattan_tank_madness,67,0.000150%,mvm,Man vs Machine
slender_arizona_a2,67,0.000150%,slender,Other
mvm_decoy_30_waves_v46_easy,66,0.000148%,mvm,Man vs Machine
cp_orangezone_45,66,0.000148%,cp,Capture Point
koth_encampment,66,0.000148%,koth,King of the Hill
vsh_snow_valley_v3,66,0.000148%,vsh,Other
trade_reactor_xmas_day,66,0.000148%,trade,Trade and Achievement
mvm_mannworks_ubup_ironmen,66,0.000148%,mvm,Man vs Machine
glass_mandrillmaze_v2,66,0.000148%,glass,Other
mvm_decoy_screamroom,66,0.000148%,mvm,Man vs Machine
szf_hellcastle_b2,66,0.000148%,szf,Other
koth_gravelstone_event,66,0.000148%,koth,King of the Hill
tfdb_ghettocourt,66,0.000148%,tfdb,Other
cp_logjam_rc4pre2,66,0.000148%,cp,Capture Point
zf_paranormal_v2_1,66,0.000148%,zf,Other
surf_velocity,66,0.000148%,surf,Other
koth_rust_b1,66,0.000148%,koth,King of the Hill
mvm_underworld_rc2_normal,66,0.000148%,mvm,Man vs Machine
mvm_limburgh_final_badwater_adv,66,0.000148%,mvm,Man vs Machine
mvm_decoy_the_shredders_wrath,66,0.000148%,mvm,Man vs Machine
cp_degrootkeep_winter,66,0.000148%,cp,Capture Point
gg_fatal_cache_tf2_fix,66,0.000148%,gg,Other
balloon_race_v4b,66,0.000148%,balloon,Other
surf_polygon_tf2,66,0.000148%,surf,Other
ctf_botmvm,66,0.000148%,ctf,Capture the Flag
tfdb_blucourt_intox_fix,66,0.000148%,tfdb,Other
surf_android,66,0.000148%,surf,Other
surf_nyze,66,0.000148%,surf,Other
tfdb_lego_b7,66,0.000148%,tfdb,Other
sniper_orange_110_ved_05,66,0.000148%,sniper,Other
cp_gauntlet_b5,66,0.000148%,cp,Capture Point
vsh_spire_a5,66,0.000148%,vsh,Other
mvm_ma_ep15_1_normal,65,0.000146%,mvm,Man vs Machine
surf_forbidden_tomb3,65,0.000146%,surf,Other
db_blucourt_b4,65,0.000146%,db,Other
dom_military_base_v3,65,0.000146%,dom,Other
mvm_mannworks_littlebigworks,65,0.000146%,mvm,Man vs Machine
mvm_coaltown_advanced_chkdsk_co,65,0.000146%,mvm,Man vs Machine
slender_unease_133_a3,65,0.000146%,slender,Other
mvm_isolation_b6_intermediate,65,0.000146%,mvm,Man vs Machine
koth_evergreen_a2a,65,0.000146%,koth,King of the Hill
vsh_cavern,65,0.000146%,vsh,Other
mvm_degrootkeep_thisld_returnof,65,0.000146%,mvm,Man vs Machine
tr_midair_v1,65,0.000146%,tr,Other
psf_extreme_water_prisontt_v9,65,0.000146%,psf,Other
dbs_redcourt_b6,65,0.000146%,dbs,Other
trade_flynn_v10,65,0.000146%,trade,Trade and Achievement
sn_sniper_silo,65,0.000146%,sn,Other
szf_hellcastle_b2a,65,0.000146%,szf,Other
cp_city,65,0.000146%,cp,Capture Point
arena_goldtooth_rc2,65,0.000146%,arena,Other
cp_orange_x_[lolz],65,0.000146%,cp,Capture Point
pl_rust_b7,65,0.000146%,pl,Payload
trade_lunarpumpkin_v022,65,0.000146%,trade,Trade and Achievement
tfdb_rekt_iv_v16,65,0.000146%,tfdb,Other
tr_rocket_shooting2_d,65,0.000146%,tr,Other
dm_biosphere_funtime_1,65,0.000146%,dm,Deathmatch
bhop_awake,65,0.000146%,bhop,Other
zm_upward,65,0.000146%,zm,Other
ctf_737,65,0.000146%,ctf,Capture the Flag
cp_mojave_event,65,0.000146%,cp,Capture Point
koth_frostwind_b6,65,0.000146%,koth,King of the Hill
ph_mineriver_a2f,65,0.000146%,ph,Other
sniper_orange_110_bridge,65,0.000146%,sniper,Other
mvm_coaltown_click_advanced2,65,0.000146%,mvm,Man vs Machine
pl_snowycoast_b4,65,0.000146%,pl,Payload
surf_nostromo,65,0.000146%,surf,Other
pl_racer_city_a5,65,0.000146%,pl,Payload
bhop_dusttemple_beta,64,0.000144%,bhop,Other
mvm_coaltown_challenge_v6,64,0.000144%,mvm,Man vs Machine
cp_overdust_b2,64,0.000144%,cp,Capture Point
vsh_military_area_b2,64,0.000144%,vsh,Other
battletech_walker_a5,64,0.000144%,battletech,Other
surf_adverse_no_cp,64,0.000144%,surf,Other
koth_traincliff_rc1,64,0.000144%,koth,King of the Hill
gm_nox1,64,0.000144%,gm,Other
cp_orange_citadel_ste,64,0.000144%,cp,Capture Point
trade_toontown_dreamland_v1,64,0.000144%,trade,Trade and Achievement
pl_outback_rc,64,0.000144%,pl,Payload
trade_mesa_v001f,64,0.000144%,trade,Trade and Achievement
pipeball_event,64,0.000144%,pipeball,Other
sniper_secret_bunker_b1,64,0.000144%,sniper,Other
jump_ring2_a6,64,0.000144%,jump,Other
cp_japan_v2_wb,64,0.000144%,cp,Capture Point
tfdb_thymo_db01_a3,64,0.000144%,tfdb,Other
dr_supermonkeyball_v3_2,64,0.000144%,dr,Other
cp_hadal_b11,64,0.000144%,cp,Capture Point
cp_shabbytown_final,64,0.000144%,cp,Capture Point
mvm_rottenburg_uu_helloween,64,0.000144%,mvm,Man vs Machine
koth_vizard_v1,64,0.000144%,koth,King of the Hill
mvm_bigrock_christmas_attacks_b,64,0.000144%,mvm,Man vs Machine
pl_boxcanyon_rc7,64,0.000144%,pl,Payload
pl_doublebomb_v2,64,0.000144%,pl,Payload
tfdb_champion_b21b,64,0.000144%,tfdb,Other
slender_trade_plaza_ox3,64,0.000144%,slender,Other
trade_casino_new,64,0.000144%,trade,Trade and Achievement
mvm_anime_swordsman_cyfy,64,0.000144%,mvm,Man vs Machine
tfdb_exiles_minecraft_a2,64,0.000144%,tfdb,Other
cp_snake_b1,64,0.000144%,cp,Capture Point
dr_weaver_2_b7,64,0.000144%,dr,Other
cp_mansion_b2,64,0.000144%,cp,Capture Point
cp_orange_vx4_b13,64,0.000144%,cp,Capture Point
sniper_lumberyard,64,0.000144%,sniper,Other
pipeball_classic,64,0.000144%,pipeball,Other
dr_bigroom_remake_b5,64,0.000144%,dr,Other
cp_indulge_rc3,64,0.000144%,cp,Capture Point
cp_gothic_b9,64,0.000144%,cp,Capture Point
tfdb_qop_a2,64,0.000144%,tfdb,Other
koth_grid_s3b,64,0.000144%,koth,King of the Hill
dr_thmule_2004_jugfix_final_fix,63,0.000141%,dr,Other
koth_staging_b6,63,0.000141%,koth,King of the Hill
cp_nsr_orangex,63,0.000141%,cp,Capture Point
zf_city_escape_b5,63,0.000141%,zf,Other
mvm_on_titan_chains_of_command,63,0.000141%,mvm,Man vs Machine
surf_illumination,63,0.000141%,surf,Other
dbs_blackout_b4,63,0.000141%,dbs,Other
mvm_overlord_b3_bigrock_advance,63,0.000141%,mvm,Man vs Machine
trade_ocity_b3,63,0.000141%,trade,Trade and Achievement
bhop_danmark_final,63,0.000141%,bhop,Other
jump_rush_h_b2,63,0.000141%,jump,Other
mvm_sewer_invasion_event_b7_nor,63,0.000141%,mvm,Man vs Machine
ach_strange_v1,63,0.000141%,ach,Other
pl_lieutenant_a3,63,0.000141%,pl,Payload
mvm_destruct_b1,63,0.000141%,mvm,Man vs Machine
mvm_mannworks_fire_v1,63,0.000141%,mvm,Man vs Machine
pl_borneo_rc4,63,0.000141%,pl,Payload
mvm_sewer_invasion_b7_advance2,63,0.000141%,mvm,Man vs Machine
mvm_hillside_v7_normal,63,0.000141%,mvm,Man vs Machine
pl_angkor_b2,63,0.000141%,pl,Payload
fw_tunnel3_v5,63,0.000141%,fw,Other
cp_mainline_rc5,63,0.000141%,cp,Capture Point
pl_zig_b8,63,0.000141%,pl,Payload
cp_boulder_v5,63,0.000141%,cp,Capture Point
pl_lieutenant_a4,63,0.000141%,pl,Payload
mvm_testbed_v1_heavy,63,0.000141%,mvm,Man vs Machine
cp_logjam_b20,62,0.000139%,cp,Capture Point
koth_coldfront_rc2,62,0.000139%,koth,King of the Hill
cp_pacman_reg_wtf,62,0.000139%,cp,Capture Point
jump_attached_rc2,62,0.000139%,jump,Other
atomic_fix,62,0.000139%,atomic,Other
cp_coldfrontline_a3,62,0.000139%,cp,Capture Point
cp_toy_fort_3_conquest,62,0.000139%,cp,Capture Point
koth_2saw_b4,62,0.000139%,koth,King of the Hill
koth_basefront_a2,62,0.000139%,koth,King of the Hill
tfdb_pingpong,62,0.000139%,tfdb,Other
jump_mazzo,62,0.000139%,jump,Other
ctf_monkey_a1,62,0.000139%,ctf,Capture the Flag
fw_rains_disco_b3,62,0.000139%,fw,Other
bhop_tinneri,62,0.000139%,bhop,Other
vsh_dropdown_lz_b2b,62,0.000139%,vsh,Other
pl_salvage_test13,62,0.000139%,pl,Payload
mvm_badwater_final_bigrock,62,0.000139%,mvm,Man vs Machine
vsh_graveyard_rc1,62,0.000139%,vsh,Other
pl_research_island_rc1,62,0.000139%,pl,Payload
dm_idac_v2,62,0.000139%,dm,Deathmatch
cp_orange_50f_tower_v3,62,0.000139%,cp,Capture Point
mvm_bigrock_30wave_v46_h,62,0.000139%,mvm,Man vs Machine
mvm_mannworks_ponies666,62,0.000139%,mvm,Man vs Machine
pl_sierra_scurry_b2,62,0.000139%,pl,Payload
zf_darkfloors,62,0.000139%,zf,Other
achievement_turbov_by_vadka,62,0.000139%,achievement,Trade and Achievement
ba_jail_space,62,0.000139%,ba,Other
surf_diverge,62,0.000139%,surf,Other
ph_crater_a5,62,0.000139%,ph,Other
surf_vgames_beta_v3,61,0.000137%,surf,Other
sn_snipers_wanted__2012,61,0.000137%,sn,Other
trade_mystery_v1,61,0.000137%,trade,Trade and Achievement
mvm_nukeedtown_beta,61,0.000137%,mvm,Man vs Machine
fw_bridge_a1_stale3z,61,0.000137%,fw,Other
dr_dlux_pb,61,0.000137%,dr,Other
mlp_party,61,0.000137%,mlp,Other
trade_dk_island,61,0.000137%,trade,Trade and Achievement
koth_lumbermill_v2a2,61,0.000137%,koth,King of the Hill
mvm_mannhattan_ponies1,61,0.000137%,mvm,Man vs Machine
tfdb_forest_a6,61,0.000137%,tfdb,Other
cp_science2,61,0.000137%,cp,Capture Point
koth_100kbc_a2,61,0.000137%,koth,King of the Hill
mvm_mannhattan_spectate_metro_m,61,0.000137%,mvm,Man vs Machine
bhop_liars_1c,61,0.000137%,bhop,Other
cp_frozen_rc2,61,0.000137%,cp,Capture Point
mvm_ma_ep12_1_fixed_normal,61,0.000137%,mvm,Man vs Machine
surf_legendary_fix,61,0.000137%,surf,Other
mvm_sewer_invasion_b7_advance4,61,0.000137%,mvm,Man vs Machine
pl_emerge_b3,61,0.000137%,pl,Payload
ctf_2fort_classic_v1,61,0.000137%,ctf,Capture the Flag
koth_anthony (1),61,0.000137%,koth,King of the Hill
surf_004_final1,61,0.000137%,surf,Other
mvm_yucatan_rc4_click_advanced2,61,0.000137%,mvm,Man vs Machine
koth_shell_btest1,61,0.000137%,koth,King of the Hill
ctf_orient_a1,61,0.000137%,ctf,Capture the Flag
pl_rainbowride_b2c,61,0.000137%,pl,Payload
duel_sollypit_b2,61,0.000137%,duel,Other
pl_granary_v1,61,0.000137%,pl,Payload
tfdb_tutuut_1,61,0.000137%,tfdb,Other
jump_ontra_a3,61,0.000137%,jump,Other
mvm_maelstrom_eulif,61,0.000137%,mvm,Man vs Machine
fw_volcano_hideout_v2,61,0.000137%,fw,Other
mvm_highrise,60,0.000135%,mvm,Man vs Machine
mvm_mannworks_mega_bosses_pack,60,0.000135%,mvm,Man vs Machine
glass_triad,60,0.000135%,glass,Other
qtf_thunderstruck_sm_v1,60,0.000135%,qtf,Other
mvm_rottenburg_gmt_endurance,60,0.000135%,mvm,Man vs Machine
c_infiltration,60,0.000135%,c,Other
surf_deceptive,60,0.000135%,surf,Other
mvm_dreampolice_pilebanger,60,0.000135%,mvm,Man vs Machine
koth_spaaaace_beta_01,60,0.000135%,koth,King of the Hill
cp_burghausen_rc1_event,60,0.000135%,cp,Capture Point
achievement_tiny-huge_6,60,0.000135%,achievement,Trade and Achievement
cp_thefrontlineexp_s1a2,60,0.000135%,cp,Capture Point
jump_typh_a1,60,0.000135%,jump,Other
cp_orange_x3_fix6,60,0.000135%,cp,Capture Point
plr_frostfell_a10,60,0.000135%,plr,Payload Race
fw_2way2_v2,60,0.000135%,fw,Other
bhop_tanker3,60,0.000135%,bhop,Other
cp_forest_b1,60,0.000135%,cp,Capture Point
mvm_coaltown_metallic_marathump,60,0.000135%,mvm,Man vs Machine
mvm_manncohq_v3_chaotic,60,0.000135%,mvm,Man vs Machine
bhop_friday_nite,60,0.000135%,bhop,Other
tf2hats_idle_wars,60,0.000135%,tf2hats,Other
vsh_orange_tower,60,0.000135%,vsh,Other
mvm_countryside_advanced2,60,0.000135%,mvm,Man vs Machine
mvm_decoy_invasion,60,0.000135%,mvm,Man vs Machine
cmbinv_icereactor,60,0.000135%,cmbinv,Other
mvm_thedust_b3_expert1,60,0.000135%,mvm,Man vs Machine
surf_minecraft,60,0.000135%,surf,Other
vsh_iceburger_v2,60,0.000135%,vsh,Other
gg_mannworks_rc1,60,0.000135%,gg,Other
fun_knedlov_v2,59,0.000132%,fun,Other
tfdb_arcane_large_v1,59,0.000132%,tfdb,Other
pd_labyrinth_a3,59,0.000132%,pd,Other
dr_supermonkeyball_v2,59,0.000132%,dr,Other
vsh_frothandtransit_v4,59,0.000132%,vsh,Other
mvm_storage_a2,59,0.000132%,mvm,Man vs Machine
jump_catch_b1,59,0.000132%,jump,Other
tfrace_n64_bowserscastle_b1,59,0.000132%,tfrace,Other
jump_pow2,59,0.000132%,jump,Other
arena_arktown,59,0.000132%,arena,Other
mvm_highrise_historyoftf,59,0.000132%,mvm,Man vs Machine
cp_spire_a1,59,0.000132%,cp,Capture Point
cp_halloween_warpath_4,59,0.000132%,cp,Capture Point
vsh_qeaman_2,59,0.000132%,vsh,Other
trade_sinfulplaza2_v1,59,0.000132%,trade,Trade and Achievement
surf_marbleblast_intermediate,59,0.000132%,surf,Other
sb_helix_v1b_rsfix,59,0.000132%,sb,Other
mvm_mannhattan_30wave_v60_lvl2,59,0.000132%,mvm,Man vs Machine
koth_mannwater_a4,59,0.000132%,koth,King of the Hill
cp_orange_crossover_b6_end,59,0.000132%,cp,Capture Point
achievement_apg_remade5b,59,0.000132%,achievement,Trade and Achievement
mvm_snowpine_a1_advanced2,59,0.000132%,mvm,Man vs Machine
tf2kart_underworld_b,59,0.000132%,tf2kart,Other
glass_vapor420_a2,59,0.000132%,glass,Other
mvm_bemhocity3_alpha,59,0.000132%,mvm,Man vs Machine
fw_position_v1a6,59,0.000132%,fw,Other
jump_testmap,59,0.000132%,jump,Other
mvm_overlord_b3_decoy_expert1,59,0.000132%,mvm,Man vs Machine
zf_atrium_a5,58,0.000130%,zf,Other
cp_lazytown_night_b3a,58,0.000130%,cp,Capture Point
mvm_overlord_b3_badwater,58,0.000130%,mvm,Man vs Machine
koth_stallone_b1,58,0.000130%,koth,King of the Hill
mvm_mannworks_ponies2,58,0.000130%,mvm,Man vs Machine
mvm_trainpoint,58,0.000130%,mvm,Man vs Machine
vsh_dr_aztecan_v5,58,0.000130%,vsh,Other
jump_4starters_b1_fix,58,0.000130%,jump,Other
vsh_frothsrailyard_v2,58,0.000130%,vsh,Other
surf_1969,58,0.000130%,surf,Other
vsh_bombdepot_b1,58,0.000130%,vsh,Other
mvm_coaltown_marathump,58,0.000130%,mvm,Man vs Machine
vsh_dr_xtremeway_tank,58,0.000130%,vsh,Other
vsh_underground_bunker_v4,58,0.000130%,vsh,Other
mvm_decoy_strange_experience_10,58,0.000130%,mvm,Man vs Machine
surf_whoknows,58,0.000130%,surf,Other
jump_minions_b3,58,0.000130%,jump,Other
ctf_frosty_b2,58,0.000130%,ctf,Capture the Flag
ctf_ig_redshed,58,0.000130%,ctf,Capture the Flag
tdm_banana_factory,58,0.000130%,tdm,Other
ba_jail_lockdown_b1,58,0.000130%,ba,Other
tr_quantum,58,0.000130%,tr,Other
pl_upward_bots,58,0.000130%,pl,Payload
mvm_mannworks_30_waves_boss_onl,58,0.000130%,mvm,Man vs Machine
cp_bridges_b4s8,58,0.000130%,cp,Capture Point
mvm_desert_fort,58,0.000130%,mvm,Man vs Machine
mvm_overlord_b3_mannworks_ironm,58,0.000130%,mvm,Man vs Machine
trade_plaza_cy,58,0.000130%,trade,Trade and Achievement
jump_beefmas_packed,58,0.000130%,jump,Other
cp_degrootcreep_b5,58,0.000130%,cp,Capture Point
surf_togo,57,0.000128%,surf,Other
d2_coast_03,57,0.000128%,d2,Other
pl_borneo_v3,57,0.000128%,pl,Payload
mvm_sewer_invasion_b7_advance3,57,0.000128%,mvm,Man vs Machine
achievements_special,57,0.000128%,achievements,Other
fw_loca_a2,57,0.000128%,fw,Other
glass_temple_tf2,57,0.000128%,glass,Other
dr_ironworks_beta_fix3,57,0.000128%,dr,Other
jump_attached_a3,57,0.000128%,jump,Other
koth_plateau_41,57,0.000128%,koth,King of the Hill
arena_vertigo,57,0.000128%,arena,Other
trade_nexus_b2c,57,0.000128%,trade,Trade and Achievement
surf_orbion,57,0.000128%,surf,Other
zf_twilight_v2,57,0.000128%,zf,Other
surf_deprecation,57,0.000128%,surf,Other
koth_churchtown_a1,57,0.000128%,koth,King of the Hill
ctf_eindoak,57,0.000128%,ctf,Capture the Flag
cp_orange_battle_110,57,0.000128%,cp,Capture Point
jump_nmotion_v6,57,0.000128%,jump,Other
koth_kurboom_b1,57,0.000128%,koth,King of the Hill
mvm_tropics_rc2_normal,57,0.000128%,mvm,Man vs Machine
cp_orange_hicon_bv5,57,0.000128%,cp,Capture Point
trade_clickclockwood_spring_v2,57,0.000128%,trade,Trade and Achievement
cp_xibalba_a3,57,0.000128%,cp,Capture Point
dbs_nuketoss_b7,57,0.000128%,dbs,Other
mvm_area_52_rc2,57,0.000128%,mvm,Man vs Machine
surf_happyhands3,57,0.000128%,surf,Other
mvm_coaltown_click_advanced1,57,0.000128%,mvm,Man vs Machine
psf_ger_americannighttt_v8,57,0.000128%,psf,Other
trade_plaza_winter,57,0.000128%,trade,Trade and Achievement
tf2kart_tomb_b1,56,0.000126%,tf2kart,Other
plr_war_divided_b1,56,0.000126%,plr,Payload Race
jump_m0nkey_a5,56,0.000126%,jump,Other
cp_orange_x_tf2,56,0.000126%,cp,Capture Point
surf_industries,56,0.000126%,surf,Other
pl_batteringram_a5_fix,56,0.000126%,pl,Payload
mvm_mannhattan_escape_plan,56,0.000126%,mvm,Man vs Machine
jump_shunix,56,0.000126%,jump,Other
mge_training_pro,56,0.000126%,mge,Other
koth_warehouse_a4,56,0.000126%,koth,King of the Hill
pl_crusoe_a17,56,0.000126%,pl,Payload
siege_waldhofen_a1,56,0.000126%,siege,Other
mvm_mannworks_endurance,56,0.000126%,mvm,Man vs Machine
zenith_dev_v5,56,0.000126%,zenith,Other
mvm_limburgh_final_mannworks_ex,56,0.000126%,mvm,Man vs Machine
ph_buckethunt_event_c1,56,0.000126%,ph,Other
jump_littleman_oworld,56,0.000126%,jump,Other
cp_sgfight_a5,56,0.000126%,cp,Capture Point
zom_gultch_v3,56,0.000126%,zom,Other
koth_mountainlake_a3,56,0.000126%,koth,King of the Hill
mvm_decoyxma,56,0.000126%,mvm,Man vs Machine
mvm_powerplant_rc1_ponies1,55,0.000123%,mvm,Man vs Machine
surf_fun,55,0.000123%,surf,Other
mvm_bigrock_blast,55,0.000123%,mvm,Man vs Machine
ultiduo_baloo_v3,55,0.000123%,ultiduo,Other
zm_mini_tropik_v13,55,0.000123%,zm,Other
trade_minecraft_toxicbunny_v3-9,55,0.000123%,trade,Trade and Achievement
ctf_theskatingrink_b5,55,0.000123%,ctf,Capture the Flag
tfdb_fort_b2,55,0.000123%,tfdb,Other
mvm_sewer_invasion_b7_expert,55,0.000123%,mvm,Man vs Machine
koth_ilios_lighthouse_v26,55,0.000123%,koth,King of the Hill
freestyle_axolotl,55,0.000123%,freestyle,Other
vsh_killbox_casino_v3,55,0.000123%,vsh,Other
mvm_coaltown_the_uber_field,55,0.000123%,mvm,Man vs Machine
mvm_normandy_rottenburg_advance,55,0.000123%,mvm,Man vs Machine
mvm_mannworks_ironballs,55,0.000123%,mvm,Man vs Machine
trade_eden_2b,55,0.000123%,trade,Trade and Achievement
dr_build,55,0.000123%,dr,Other
ctf_flyingfortresses_b2,55,0.000123%,ctf,Capture the Flag
koth_waterpit_wip4,55,0.000123%,koth,King of the Hill
surf_second,55,0.000123%,surf,Other
cp_silvertrail_rc2,55,0.000123%,cp,Capture Point
trade_jollyrogerbay,55,0.000123%,trade,Trade and Achievement
surf_euphoria,55,0.000123%,surf,Other
pl_wutville_beta,55,0.000123%,pl,Payload
koth_warehouse_a1,55,0.000123%,koth,King of the Hill
cp_amaranth_event_rc1,55,0.000123%,cp,Capture Point
arena_nuke_tk,55,0.000123%,arena,Other
mvm_coaltown_challenge_v4,55,0.000123%,mvm,Man vs Machine
cp_pengarra_castle_b1,55,0.000123%,cp,Capture Point
mvm_yucatan_rc4_intermediate,55,0.000123%,mvm,Man vs Machine
jump_woo,55,0.000123%,jump,Other
d2_coast_09,55,0.000123%,d2,Other
jump_elysium_v3,55,0.000123%,jump,Other
koth_turningtest_a6,54,0.000121%,koth,King of the Hill
fw_bd_pillarz,54,0.000121%,fw,Other
mb_koth_overworld_a1,54,0.000121%,mb,Other
cp_420_orange_run_v3,54,0.000121%,cp,Capture Point
mvm_wizardry_wheel_of_doom,54,0.000121%,mvm,Man vs Machine
trade_revamp_master,54,0.000121%,trade,Trade and Achievement
mvm_coaltown_strader,54,0.000121%,mvm,Man vs Machine
koth_dijistemge_v2_test_nocp,54,0.000121%,koth,King of the Hill
mvm_coaltown_event,54,0.000121%,mvm,Man vs Machine
advancedwallshots_prealpha3,54,0.000121%,advancedwallshots,Other
mvm_fhritp_cosmic,54,0.000121%,mvm,Man vs Machine
vsh_sharks_v1,54,0.000121%,vsh,Other
cp_quickcap_v3,54,0.000121%,cp,Capture Point
rj_renard,54,0.000121%,rj,Other
tfdb_garbageday_test2,54,0.000121%,tfdb,Other
cp_kakariko_a2,54,0.000121%,cp,Capture Point
fw_longhaul_f1,54,0.000121%,fw,Other
surf_empyrean_beta1,54,0.000121%,surf,Other
arena_divide,54,0.000121%,arena,Other
tr_ctap_a2,54,0.000121%,tr,Other
mvm_countryside_intermediate2,54,0.000121%,mvm,Man vs Machine
koth_ultiduotrainsaw_b5,54,0.000121%,koth,King of the Hill
vsh_gravelmines_a4,54,0.000121%,vsh,Other
koth_cave_b1,54,0.000121%,koth,King of the Hill
mvm_5gorge_cp_badwater_advanced,54,0.000121%,mvm,Man vs Machine
cp_orange_z_b2,54,0.000121%,cp,Capture Point
mvm_ghost_town_30wave_v60_lvl2,54,0.000121%,mvm,Man vs Machine
fw_tunnel3_v7,54,0.000121%,fw,Other
mvm_testbed_v1_soldier,54,0.000121%,mvm,Man vs Machine
surf_ember,54,0.000121%,surf,Other
fw_ww2_beach2_va3,54,0.000121%,fw,Other
surf_mai_remix_v3,54,0.000121%,surf,Other
mvm_ventus_b6_expert1,54,0.000121%,mvm,Man vs Machine
jump_valley_b3,54,0.000121%,jump,Other
pl_iron_a1,54,0.000121%,pl,Payload
koth_mineland_r5,53,0.000119%,koth,King of the Hill
jump_glow_v2,53,0.000119%,jump,Other
pl_cave_stage1_b2,53,0.000119%,pl,Payload
surf_thriller2_tf2,53,0.000119%,surf,Other
koth_windmilltrainsaw_b3a,53,0.000119%,koth,King of the Hill
fw_lego_v6,53,0.000119%,fw,Other
sn_dz_sniper_r,53,0.000119%,sn,Other
duel_sandstep,53,0.000119%,duel,Other
cp_spiral_a1,53,0.000119%,cp,Capture Point
dm_bridge_30wave_v60_lvl3,53,0.000119%,dm,Deathmatch
mvm_orange_x3_how_v2b_fawos_30w,53,0.000119%,mvm,Man vs Machine
cp_goldmerde_a1,53,0.000119%,cp,Capture Point
surf_sluice_final,53,0.000119%,surf,Other
jump_ktrx_003,53,0.000119%,jump,Other
fw_qw_africa1_v2,53,0.000119%,fw,Other
melee_ringking,53,0.000119%,melee,Other
mvm_meltdown_rc4_click_expert1,53,0.000119%,mvm,Man vs Machine
koth_bunkalow_rc1,53,0.000119%,koth,King of the Hill
vsh_terrorwatt_a1,53,0.000119%,vsh,Other
ph_trainstation,53,0.000119%,ph,Other
mvm_coaltown_valve_intermission,53,0.000119%,mvm,Man vs Machine
cp_orange_x7_s2g,53,0.000119%,cp,Capture Point
mvm_ventus_b6_expert2,53,0.000119%,mvm,Man vs Machine
half_life2_part1_v1,53,0.000119%,half,Other
jump_lanc_final,53,0.000119%,jump,Other
dr_r60d_v3d,53,0.000119%,dr,Other
koth_100kbc_a1,53,0.000119%,koth,King of the Hill
cp_orange_trance_v4,53,0.000119%,cp,Capture Point
mvm_ventus_b6_event,53,0.000119%,mvm,Man vs Machine
ctf_vault_a1a,53,0.000119%,ctf,Capture the Flag
ultiduo_complex_b1,53,0.000119%,ultiduo,Other
ctf_convoy_v2_tk,52,0.000117%,ctf,Capture the Flag
arena_warehouse,52,0.000117%,arena,Other
pl_abandoned_upward_final1,52,0.000117%,pl,Payload
mvm_ma_ep16b_1_fixed_normal,52,0.000117%,mvm,Man vs Machine
achievement_idle_skbox_v17fix,52,0.000117%,achievement,Trade and Achievement
frontline_demo,52,0.000117%,frontline,Other
mvm_coaltown_expert2_final_miss,52,0.000117%,mvm,Man vs Machine
factory_01,52,0.000117%,factory,Other
jump_twix,52,0.000117%,jump,Other
cp_wildlife_b2,52,0.000117%,cp,Capture Point
ctf_ballin,52,0.000117%,ctf,Capture the Flag
mvm_cargo_b4_mm,52,0.000117%,mvm,Man vs Machine
vsh_palanquin_ship,52,0.000117%,vsh,Other
cp_rooftop_b6,52,0.000117%,cp,Capture Point
cp_oilrig_b3,52,0.000117%,cp,Capture Point
dr_jpcity_a3fa,52,0.000117%,dr,Other
tfdb_lob_pool,52,0.000117%,tfdb,Other
mvm_mannhattan_30waves_hard_v5,52,0.000117%,mvm,Man vs Machine
trade_hopps_lobby,52,0.000117%,trade,Trade and Achievement
harbl_hotel_db,52,0.000117%,harbl,Other
trade_bigcity_v1c,52,0.000117%,trade,Trade and Achievement
gg_cliffhanger,52,0.000117%,gg,Other
mvm_giza_b7_expert1,52,0.000117%,mvm,Man vs Machine
cp_pacman_wtf,52,0.000117%,cp,Capture Point
ph_well_b4,52,0.000117%,ph,Other
cp_orange_purple_x2,52,0.000117%,cp,Capture Point
dr_supermonkeyball_v3,52,0.000117%,dr,Other
zm_wild_cbble_v7,52,0.000117%,zm,Other
slender_meadow_a1,52,0.000117%,slender,Other
mvm_highrise_coaltown,52,0.000117%,mvm,Man vs Machine
duel_store_3_reloadedxmas,52,0.000117%,duel,Other
sn_star_sniper_wars_2013,52,0.000117%,sn,Other
mvm_coaltown_30_waves_v46_survi,52,0.000117%,mvm,Man vs Machine
achievement_idle_siusiaczek_v1,52,0.000117%,achievement,Trade and Achievement
achievement_idle_spytech_7b,52,0.000117%,achievement,Trade and Achievement
mvm_bigrock_advanced_beneficial,52,0.000117%,mvm,Man vs Machine
dr_rainbowfactory,52,0.000117%,dr,Other
gg_rocketyard_b2,52,0.000117%,gg,Other
mvm_thedust_b2_advanced2,52,0.000117%,mvm,Man vs Machine
arena_the_crab_cage,52,0.000117%,arena,Other
plr_hierarch_rc2b,52,0.000117%,plr,Payload Race
pd_degroot,52,0.000117%,pd,Other
fw_octagon_reboot,51,0.000114%,fw,Other
pkmn_saffroncity_b4,51,0.000114%,pkmn,Other
mpl_doublehelix_b2,51,0.000114%,mpl,Other
mvm_mannhattan_endlessmayhem,51,0.000114%,mvm,Man vs Machine
arena_breakfloor_b7-5,51,0.000114%,arena,Other
koth_frostline_b1,51,0.000114%,koth,King of the Hill
vsh_thacave,51,0.000114%,vsh,Other
bhop_jouluuu,51,0.000114%,bhop,Other
arena_polar_final,51,0.000114%,arena,Other
trade_ghs_minecraft_optimized_v,51,0.000114%,trade,Trade and Achievement
pl_simpson_house_b3,51,0.000114%,pl,Payload
surf_elites-v1,51,0.000114%,surf,Other
cp_orange_church_v1,51,0.000114%,cp,Capture Point
dr_orange_v6,51,0.000114%,dr,Other
surf_antimatter,51,0.000114%,surf,Other
nin_windfallisland_final,51,0.000114%,nin,Other
pl_mill_b4,51,0.000114%,pl,Payload
vsh_enclave_b19,51,0.000114%,vsh,Other
mundo_dos_trolls,51,0.000114%,mundo,Other
mvm_coaltown_mechatron,51,0.000114%,mvm,Man vs Machine
vsh_lockdown_v1,51,0.000114%,vsh,Other
surf_tf_greatriver_v1_b1,51,0.000114%,surf,Other
koth_second_both_3,51,0.000114%,koth,King of the Hill
tr_dustbowl,51,0.000114%,tr,Other
pl_manndarin,51,0.000114%,pl,Payload
glass_bea24,51,0.000114%,glass,Other
mvm_bigrock_blitzkrieg,51,0.000114%,mvm,Man vs Machine
jump_plunder_final,51,0.000114%,jump,Other
koth_well,51,0.000114%,koth,King of the Hill
jump_ritsuko_alpha1,51,0.000114%,jump,Other
mvm_mannworks_click_ironman,51,0.000114%,mvm,Man vs Machine
mvm_ghost_town_the_derp_wave,50,0.000112%,mvm,Man vs Machine
surf_eclipse,50,0.000112%,surf,Other
fw_medieval_king-mod_v5,50,0.000112%,fw,Other
cp_dogenzaka_iii_city,50,0.000112%,cp,Capture Point
mvm_decoy_unknown,50,0.000112%,mvm,Man vs Machine
cp_spaceboard,50,0.000112%,cp,Capture Point
vsh_tundra_lz_v2,50,0.000112%,vsh,Other
mvm_bigrock_advanced1+,50,0.000112%,mvm,Man vs Machine
cp_thefrontlineexp_s1a4,50,0.000112%,cp,Capture Point
ultiduo_raksha_beta7,50,0.000112%,ultiduo,Other
aog_artisanshome,50,0.000112%,aog,Other
cp_warmerfront_rc2,50,0.000112%,cp,Capture Point
koth_campground_v2,50,0.000112%,koth,King of the Hill
ctf_hallofdeath_tk,50,0.000112%,ctf,Capture the Flag
koth_solitary,50,0.000112%,koth,King of the Hill
cp_wolf2_b1,50,0.000112%,cp,Capture Point
mvm_normandy_bigrock_advanced1,50,0.000112%,mvm,Man vs Machine
vsh_mush_peachcastle_v1,50,0.000112%,vsh,Other
koth_neurotoxin_s7,50,0.000112%,koth,King of the Hill
cs_rio,50,0.000112%,cs,Other
surf_auroria2,50,0.000112%,surf,Other
mvm_mannworks_30wave_v60_lvl2,50,0.000112%,mvm,Man vs Machine
surf_retroartz,50,0.000112%,surf,Other
dr_castlebleck_d,50,0.000112%,dr,Other
mvm_coaltown_sleepy,50,0.000112%,mvm,Man vs Machine
cp_yranarg,50,0.000112%,cp,Capture Point
surf_koa,50,0.000112%,surf,Other
pl_boxcanyon_rc1,50,0.000112%,pl,Payload
jump_stripe_b3,50,0.000112%,jump,Other
slender_turbine_new_b1,50,0.000112%,slender,Other
surf_stonework2,50,0.000112%,surf,Other
air_hockey,50,0.000112%,air,Other
slender_fiveroundsatfreddys_b3,50,0.000112%,slender,Other
mvm_monastery_a2,50,0.000112%,mvm,Man vs Machine
zf_drain_a1,50,0.000112%,zf,Other
vsh_dam-it_b1,50,0.000112%,vsh,Other
vsh_nebula_v1,50,0.000112%,vsh,Other
vsh_crashbox_b2,50,0.000112%,vsh,Other
surf_liberation2,50,0.000112%,surf,Other
surf_something_serious,50,0.000112%,surf,Other
mvm_crash_landing_normal,50,0.000112%,mvm,Man vs Machine
tfdb_fantastic_final,50,0.000112%,tfdb,Other
mvm_highrise_bigrock,50,0.000112%,mvm,Man vs Machine
mvm_troopers_defend_fawosfix_de,50,0.000112%,mvm,Man vs Machine
fun_test_17,50,0.000112%,fun,Other
cp_bazillion_rc5,49,0.000110%,cp,Capture Point
surf_quantum,49,0.000110%,surf,Other
dr_cliffsideb4,49,0.000110%,dr,Other
ctf_aerial_b15_c2,49,0.000110%,ctf,Capture the Flag
intercosmic_terminal_e1,49,0.000110%,intercosmic,Other
surf_happyhands4,49,0.000110%,surf,Other
arena_crater_a3,49,0.000110%,arena,Other
fw_ww2_beach_v14,49,0.000110%,fw,Other
jump_toxic_v2,49,0.000110%,jump,Other
jump_class_v2,49,0.000110%,jump,Other
vsh_big_zomday_v1,49,0.000110%,vsh,Other
mvm_coaltown_valveintermission,49,0.000110%,mvm,Man vs Machine
tfdb_es_goldeneye_v2,49,0.000110%,tfdb,Other
achievement_spark-games_10,49,0.000110%,achievement,Trade and Achievement
trade_sunsetplaza_a2,49,0.000110%,trade,Trade and Achievement
trade_plaza_hg_moonbase_a12,49,0.000110%,trade,Trade and Achievement
fw_festival_newyear_v2,49,0.000110%,fw,Other
vsh_minecraft_aether_depressao,49,0.000110%,vsh,Other
simple_final_v2,49,0.000110%,simple,Other
ultiduo_nicecicles,49,0.000110%,ultiduo,Other
tfdb_exhilecavern_v1,49,0.000110%,tfdb,Other
mvm_yucatan_rc4_advanced1,49,0.000110%,mvm,Man vs Machine
achievement_turbov12,49,0.000110%,achievement,Trade and Achievement
idle_sniper_war_v13_69u,49,0.000110%,idle,Other
vsh_buniieland_v1,49,0.000110%,vsh,Other
bhop_miku_v2,49,0.000110%,bhop,Other
pl_badwater_mirrored,49,0.000110%,pl,Payload
sunset_temple_f4,49,0.000110%,sunset,Other
jump_ballin_b2,49,0.000110%,jump,Other
cp_nothing_a10,49,0.000110%,cp,Capture Point
cp_redfort_b6,49,0.000110%,cp,Capture Point
duel_snow_b1,49,0.000110%,duel,Other
tfdbr_egypt_v1b,49,0.000110%,tfdbr,Other
cp_cavein,48,0.000108%,cp,Capture Point
mvm_mannworks_gibus,48,0.000108%,mvm,Man vs Machine
koth_iglesia_a9,48,0.000108%,koth,King of the Hill
vsh_borough,48,0.000108%,vsh,Other
cp_orangechodelol_x5,48,0.000108%,cp,Capture Point
mvm_manncohq_v3_metromadness,48,0.000108%,mvm,Man vs Machine
mvm_highrise_advanced,48,0.000108%,mvm,Man vs Machine
fw_orange_x3_b4,48,0.000108%,fw,Other
koth_iglesia_a11,48,0.000108%,koth,King of the Hill
dr_runoff_b4,48,0.000108%,dr,Other
mvm_mannworks_manufctureinvasio,48,0.000108%,mvm,Man vs Machine
cp_pacman_plus_wtf,48,0.000108%,cp,Capture Point
pl_enclosure_b5,48,0.000108%,pl,Payload
koth_subway_rc1,48,0.000108%,koth,King of the Hill
ph_nightclub_original_v1,48,0.000108%,ph,Other
koth_mill,48,0.000108%,koth,King of the Hill
fw_war_a1z,48,0.000108%,fw,Other
trade_portal2_v3,48,0.000108%,trade,Trade and Achievement
bhop_bloclean,48,0.000108%,bhop,Other
mvm_hightower_wrath_of_the_robo,48,0.000108%,mvm,Man vs Machine
cp_daytrip_rc4,48,0.000108%,cp,Capture Point
zf_industry_v2_1b4,48,0.000108%,zf,Other
koth_rtd_a2,48,0.000108%,koth,King of the Hill
gm_buttes_night,48,0.000108%,gm,Other
pl_eclipse_b2,48,0.000108%,pl,Payload
koth_loader_v2,48,0.000108%,koth,King of the Hill
koth_sawmill_event_v2,48,0.000108%,koth,King of the Hill
mvm_limburgh_final_coaltown_exp,48,0.000108%,mvm,Man vs Machine
cp_wildlife_b1,48,0.000108%,cp,Capture Point
surf_tundra,48,0.000108%,surf,Other
pl_gibraltar_wb,48,0.000108%,pl,Payload
mvm_decoy_survival,48,0.000108%,mvm,Man vs Machine
cp_cardinal_b1a,48,0.000108%,cp,Capture Point
mvm_normandy_d-day,48,0.000108%,mvm,Man vs Machine
vsh_frothsrailyard,48,0.000108%,vsh,Other
bhop_nature,48,0.000108%,bhop,Other
cp_metalworks_ship4,48,0.000108%,cp,Capture Point
de_volta_para_o_futuro,48,0.000108%,de,Other
ctf_turbine_abandoned,48,0.000108%,ctf,Capture the Flag
mvm_manncohq_v3_normal,48,0.000108%,mvm,Man vs Machine
koth_montag_a1,48,0.000108%,koth,King of the Hill
surf_miracle,48,0.000108%,surf,Other
bhop_kaina,48,0.000108%,bhop,Other
aim_ak-colt_arg_fawosfix_bigroc,48,0.000108%,aim,Other
zf_cliff_xmas,48,0.000108%,zf,Other
ctf_bombtown_a5,48,0.000108%,ctf,Capture the Flag
surf_apollonian_fix,47,0.000106%,surf,Other
!njp!_southpark,47,0.000106%,!njp!,Other
football_wintercup_tf_b1,47,0.000106%,football,Other
tfdb_montreal_v2,47,0.000106%,tfdb,Other
sn_sniperbase,47,0.000106%,sn,Other
mvm_rottenburg_robocalypse,47,0.000106%,mvm,Man vs Machine
surf_calamity_njv,47,0.000106%,surf,Other
koth_kaboom_tmg_fix_a1,47,0.000106%,koth,King of the Hill
spire_2ez_b4,47,0.000106%,spire,Other
cp_cornfields_a1,47,0.000106%,cp,Capture Point
tfdb_nuketoss_rc1,47,0.000106%,tfdb,Other
mvm_ghost_town_kriegstaenze_by_,47,0.000106%,mvm,Man vs Machine
mvm_winter_b5_normal,47,0.000106%,mvm,Man vs Machine
jump_gateway_v3,47,0.000106%,jump,Other
surf_lithium2_fix,47,0.000106%,surf,Other
mvm_achievement_beta,47,0.000106%,mvm,Man vs Machine
koth_aperture_science_ii,47,0.000106%,koth,King of the Hill
trade_terminal_beta7d_,47,0.000106%,trade,Trade and Achievement
koth_skyline_a3,47,0.000106%,koth,King of the Hill
my_world_wip1,47,0.000106%,my,Other
mvm_nether_normal,47,0.000106%,mvm,Man vs Machine
koth_bridgeway_7b,47,0.000106%,koth,King of the Hill
bhop_zentic,47,0.000106%,bhop,Other
mvm_dogleg_alley_fluff_aussie,47,0.000106%,mvm,Man vs Machine
surf_jaqen,47,0.000106%,surf,Other
tfdb_gallifrey_b6,47,0.000106%,tfdb,Other
mvm_coaltown_chaotic,47,0.000106%,mvm,Man vs Machine
mvm_totalwar_easy_decoy,47,0.000106%,mvm,Man vs Machine
cp_meltdown_b1,47,0.000106%,cp,Capture Point
dbs_twinnuke_b7,47,0.000106%,dbs,Other
arena_steeple_b1,46,0.000103%,arena,Other
koth_warehouse_a5,46,0.000103%,koth,King of the Hill
mvm_highrise_mannhattan,46,0.000103%,mvm,Man vs Machine
mvm_countryside_advanced1,46,0.000103%,mvm,Man vs Machine
vsh_portisland_v3,46,0.000103%,vsh,Other
3cp_townside_a4,46,0.000103%,3cp,Other
volei_de_praia,46,0.000103%,volei,Other
surf_exclave_fix,46,0.000103%,surf,Other
mvm_coaltown_event_doomofcoalto,46,0.000103%,mvm,Man vs Machine
arena_tradeplaza_clean,46,0.000103%,arena,Other
super_smash_bros_trolls,46,0.000103%,super,Other
mvm_hydro_a3_coaltown_expert1,46,0.000103%,mvm,Man vs Machine
ph_clocktown_a7,46,0.000103%,ph,Other
mvm_ma_ep14_1_hard,46,0.000103%,mvm,Man vs Machine
ctf_2fort_bots,46,0.000103%,ctf,Capture the Flag
koth_lilburgh_rc1,46,0.000103%,koth,King of the Hill
trade_plaza_darkly_final,46,0.000103%,trade,Trade and Achievement
mvm_coaltown_advanced2+,46,0.000103%,mvm,Man vs Machine
ba_jail_xtreme_wakka_b2,46,0.000103%,ba,Other
achievements_scout_lumberyard,46,0.000103%,achievements,Other
dr_prison_escape_v7_d_morosefix,46,0.000103%,dr,Other
vsh_refinery_b3,46,0.000103%,vsh,Other
koth_iglesia_a8,46,0.000103%,koth,King of the Hill
mvm_ghost_town_kriegstaenze,46,0.000103%,mvm,Man vs Machine
dr_hallway_beta,46,0.000103%,dr,Other
rampbug_test,46,0.000103%,rampbug,Other
trade_minecraft_toxicbunny_v3-8,46,0.000103%,trade,Trade and Achievement
mvm_mannworks_15wave,46,0.000103%,mvm,Man vs Machine
cp_orange_quick_box,46,0.000103%,cp,Capture Point
koth_railbridge_b1,46,0.000103%,koth,King of the Hill
dbs_dual_rc2,46,0.000103%,dbs,Other
dr_spacecolony_b3,46,0.000103%,dr,Other
vsh_dr_atomic_warfare_tf2,46,0.000103%,vsh,Other
mvm_5gorge_cp_hydro_a3,46,0.000103%,mvm,Man vs Machine
trade_ocity_b1,46,0.000103%,trade,Trade and Achievement
mvm_decoy_ponies1,46,0.000103%,mvm,Man vs Machine
koth_isonzo_a13,46,0.000103%,koth,King of the Hill
vsh_zelda_ww_outset_island_gsn,46,0.000103%,vsh,Other
trade_minecraft_hans_v38,46,0.000103%,trade,Trade and Achievement
plr_keystone_a3,45,0.000101%,plr,Payload Race
zm_halo_up_ig,45,0.000101%,zm,Other
dr_playstation_b24,45,0.000101%,dr,Other
surf_unreal_njv,45,0.000101%,surf,Other
vsh_gravitythedust2,45,0.000101%,vsh,Other
achievement_341464_final_d,45,0.000101%,achievement,Trade and Achievement
dr_supermario64_v6b_gsn,45,0.000101%,dr,Other
mvm_normandy_mannworks,45,0.000101%,mvm,Man vs Machine
trade_retro_v1,45,0.000101%,trade,Trade and Achievement
koth_luftangriff_a11,45,0.000101%,koth,King of the Hill
cp_orange2_alpha1,45,0.000101%,cp,Capture Point
mvm_bigrock_30wave_v60_lvl3,45,0.000101%,mvm,Man vs Machine
vsh_graveyard,45,0.000101%,vsh,Other
mvm_machine_attacks_ep14_final,45,0.000101%,mvm,Man vs Machine
cs_office,45,0.000101%,cs,Other
mvm_badlands_v2fix,45,0.000101%,mvm,Man vs Machine
tfdb_olympics_v4,45,0.000101%,tfdb,Other
war3sourc_fight,45,0.000101%,war3sourc,Other
achievement_golden_wrench_v2,45,0.000101%,achievement,Trade and Achievement
ctf_aerial_b15_c1,45,0.000101%,ctf,Capture the Flag
gg_standin_v2,45,0.000101%,gg,Other
koth_turningtest_a4,45,0.000101%,koth,King of the Hill
mvm_decoy_beepman,45,0.000101%,mvm,Man vs Machine
mvm_underground_rc3_click_advan,45,0.000101%,mvm,Man vs Machine
mvm_mannhattan_lol,45,0.000101%,mvm,Man vs Machine
sn_hac_helix2,45,0.000101%,sn,Other
pl_egyptbombcart,45,0.000101%,pl,Payload
vulcao_trolololoo,45,0.000101%,vulcao,Other
mvm_rooftop_b4,45,0.000101%,mvm,Man vs Machine
mvm_test,45,0.000101%,mvm,Man vs Machine
mvm_ghost_town_30_waves_v37,45,0.000101%,mvm,Man vs Machine
dr_egypt_tf2,45,0.000101%,dr,Other
trade_defrostbyte_v2,45,0.000101%,trade,Trade and Achievement
dr_runoff_b3,45,0.000101%,dr,Other
fw_medieval_tunnel_v2,45,0.000101%,fw,Other
mvm_tropics_rc10_advanced_tropi,45,0.000101%,mvm,Man vs Machine
bhop_eco_zones,45,0.000101%,bhop,Other
mvm_mannworks_f2p_popup,45,0.000101%,mvm,Man vs Machine
fw_gas_a3,45,0.000101%,fw,Other
szf_city_escape_b5,45,0.000101%,szf,Other
cp_bighalls_b1,45,0.000101%,cp,Capture Point
koth_mineshaft_a5,44,0.000099%,koth,King of the Hill
fw_medieval_spartans_v8,44,0.000099%,fw,Other
ctf_map,44,0.000099%,ctf,Capture the Flag
mvm_coaltown_desert_endurance,44,0.000099%,mvm,Man vs Machine
fw_tower1_v1,44,0.000099%,fw,Other
jump_glue_a2,44,0.000099%,jump,Other
duel_idle_trade_abstract,44,0.000099%,duel,Other
surf_sewers,44,0.000099%,surf,Other
simple_v01,44,0.000099%,simple,Other
mvm_bigrock_different_encounter,44,0.000099%,mvm,Man vs Machine
sz_2fort,44,0.000099%,sz,Other
ultiduo_seclusion_b3,44,0.000099%,ultiduo,Other
koth_anthony_v2,44,0.000099%,koth,King of the Hill
mvm_badwater_final_decoy_expert,44,0.000099%,mvm,Man vs Machine
tr_arena_rc1,44,0.000099%,tr,Other
dm_magic_house_a13,44,0.000099%,dm,Deathmatch
slender_wooden_island_a1,44,0.000099%,slender,Other
ctf_extraction_a3,44,0.000099%,ctf,Capture the Flag
mvm_bigrock_allan,44,0.000099%,mvm,Man vs Machine
fw_lightning_v3_3,44,0.000099%,fw,Other
sn_sniperfort,44,0.000099%,sn,Other
new_freedom_intro,44,0.000099%,new,Other
mvm_decoy_disaster,44,0.000099%,mvm,Man vs Machine
quake_iv,44,0.000099%,quake,Other
jump_pushittothelimit_b3,44,0.000099%,jump,Other
vsh_battlecreek_pb1,44,0.000099%,vsh,Other
jump_lotus,44,0.000099%,jump,Other
tfdb_virtual_v1b,44,0.000099%,tfdb,Other
mvm_decoy_30wave_v46_n,44,0.000099%,mvm,Man vs Machine
trade_sinchasm_v1,44,0.000099%,trade,Trade and Achievement
cp_jaddou_rc8,44,0.000099%,cp,Capture Point
fw_through2_v1,44,0.000099%,fw,Other
pl_zig_z2a_tk,44,0.000099%,pl,Payload
ctf_vikings_fixed,44,0.000099%,ctf,Capture the Flag
surf_map,43,0.000097%,surf,Other
cp_pacman_wtf_b4,43,0.000097%,cp,Capture Point
surf_pandemonium_njv,43,0.000097%,surf,Other
ze_office_v3,43,0.000097%,ze,Other
surf_torque2,43,0.000097%,surf,Other
trade_minecraft_uk,43,0.000097%,trade,Trade and Achievement
mvm_mannhattan_advanced1+,43,0.000097%,mvm,Man vs Machine
koth_dam_a10,43,0.000097%,koth,King of the Hill
mvm_decoy_challenge_v2,43,0.000097%,mvm,Man vs Machine
fw_slag_b3_dz,43,0.000097%,fw,Other
sn_furor_teutonicus,43,0.000097%,sn,Other
arena_dust2_jugfix,43,0.000097%,arena,Other
surf_eternal_fix,43,0.000097%,surf,Other
tfdb_olympics_slag_v4,43,0.000097%,tfdb,Other
arena_graveyard_rc2,43,0.000097%,arena,Other
surf_blackout_njv_fix,43,0.000097%,surf,Other
senior_scrap_007,43,0.000097%,senior,Other
tc_target_b1,43,0.000097%,tc,Other
mvm_rooftop_normal,43,0.000097%,mvm,Man vs Machine
trade_hugbox,43,0.000097%,trade,Trade and Achievement
jump_pillow,43,0.000097%,jump,Other
fw_badapple_v5,43,0.000097%,fw,Other
vsh_skytowers_b3,43,0.000097%,vsh,Other
vsh_mannco_datacenter_a2_fix,43,0.000097%,vsh,Other
dr_running_v5_finalfix4,43,0.000097%,dr,Other
zf_not_mako_reactor_666,43,0.000097%,zf,Other
koth_ramjam_b14,43,0.000097%,koth,King of the Hill
dbs_mag_pyro_rc1e,43,0.000097%,dbs,Other
aris2_1,43,0.000097%,aris2,Other
mvm_ridecaptainride_raindance,43,0.000097%,mvm,Man vs Machine
cp_supermeatboy_c6,43,0.000097%,cp,Capture Point
dm_overwatch,43,0.000097%,dm,Deathmatch
tfdb_nuketoss_rebuilded,43,0.000097%,tfdb,Other
mvm_bigrock_escape_plan,43,0.000097%,mvm,Man vs Machine
mvm_limburgh_final_slaughterhou,43,0.000097%,mvm,Man vs Machine
ph_007facility_a4,43,0.000097%,ph,Other
surf_vgames_beta_space,43,0.000097%,surf,Other
surf_halloween_njv,43,0.000097%,surf,Other
gm_buttes,43,0.000097%,gm,Other
cp_trump_hotel_a15_tk,43,0.000097%,cp,Capture Point
surf_calamity2,43,0.000097%,surf,Other
koth_skybox_a1,43,0.000097%,koth,King of the Hill
tfdb_skycube_a1,43,0.000097%,tfdb,Other
ze_blackmesa_escape_final_tf2,43,0.000097%,ze,Other
007_james_bond_library,43,0.000097%,007,Other
surf_asrown,43,0.000097%,surf,Other
pl_badwater_rainy_nowater,43,0.000097%,pl,Payload
dbs_neutral_b5,43,0.000097%,dbs,Other
koth_bodywash_af,42,0.000094%,koth,King of the Hill
arena_halo_bloodgulch,42,0.000094%,arena,Other
koth_cave_a5,42,0.000094%,koth,King of the Hill
gm_newporkcity_tf,42,0.000094%,gm,Other
mvm_thedust_b1,42,0.000094%,mvm,Man vs Machine
mvm_area_52_rc3_expert,42,0.000094%,mvm,Man vs Machine
mvm_sewer_invasion_b7_advance1,42,0.000094%,mvm,Man vs Machine
mvm_coaltown_normal3213,42,0.000094%,mvm,Man vs Machine
ctf_aerial_b12,42,0.000094%,ctf,Capture the Flag
jump_15puzzle,42,0.000094%,jump,Other
siusiaczkowo_v1,42,0.000094%,siusiaczkowo,Other
mvm_coaltown_popy,42,0.000094%,mvm,Man vs Machine
subway_a1,42,0.000094%,subway,Other
jb_silbunker_tfsg_a9,42,0.000094%,jb,Other
jump_soma_a4,42,0.000094%,jump,Other
mvm_badwater_final_bigrock_adva,42,0.000094%,mvm,Man vs Machine
mvm_overlord_b3_mannworks,42,0.000094%,mvm,Man vs Machine
ctf_2fort_castle_wars_bd5,42,0.000094%,ctf,Capture the Flag
trade_tottea_district_v4,42,0.000094%,trade,Trade and Achievement
mvm_decoy_ponies3,42,0.000094%,mvm,Man vs Machine
cp_redpolis_b4,42,0.000094%,cp,Capture Point
koth_iglesia_a10,42,0.000094%,koth,King of the Hill
surf_cordelia,42,0.000094%,surf,Other
vsh_crashbox_b3,42,0.000094%,vsh,Other
koth_turningtest_a9,42,0.000094%,koth,King of the Hill
tfil_chamber_b1,42,0.000094%,tfil,Other
mvm_mannworks_boss,42,0.000094%,mvm,Man vs Machine
mvm_sewer_invasion_b7_advanced3,42,0.000094%,mvm,Man vs Machine
surf_voteforthisone_fix,42,0.000094%,surf,Other
vsh_house_v7,42,0.000094%,vsh,Other
vsh_paths&scares_v2,42,0.000094%,vsh,Other
koth_turningtest_a3,42,0.000094%,koth,King of the Hill
koth_wfr_01_18,42,0.000094%,koth,King of the Hill
dm_pony_sweetandelite,42,0.000094%,dm,Deathmatch
mvm_mannhattan_urban_survival,42,0.000094%,mvm,Man vs Machine
vsh_icerink_c,42,0.000094%,vsh,Other
mvm_troopers_defend_fawosfix_ad,42,0.000094%,mvm,Man vs Machine
dr_workplace_v3,41,0.000092%,dr,Other
mvm_decoy_alias_expert1,41,0.000092%,mvm,Man vs Machine
jump_azure_a5,41,0.000092%,jump,Other
cp_cargoner_b1,41,0.000092%,cp,Capture Point
vsh_mine_v3,41,0.000092%,vsh,Other
dm_mariokart3_v1_chillin2,41,0.000092%,dm,Deathmatch
mvm_derelict_b3,41,0.000092%,mvm,Man vs Machine
jump_newbie,41,0.000092%,jump,Other
pl_downpour_pass_b4,41,0.000092%,pl,Payload
xerniv_arena,41,0.000092%,xerniv,Other
pl_capmines,41,0.000092%,pl,Payload
koth_turningtest_a7,41,0.000092%,koth,King of the Hill
vsh_west_e,41,0.000092%,vsh,Other
vsh_minecraft_b3,41,0.000092%,vsh,Other
surf_metallic,41,0.000092%,surf,Other
cp_orange_x3_grey,41,0.000092%,cp,Capture Point
sniper_roof_top,41,0.000092%,sniper,Other
jump_hugebutt_b2,41,0.000092%,jump,Other
mvm_thedust_b3_decoy_expert1,41,0.000092%,mvm,Man vs Machine
cp_2fort,41,0.000092%,cp,Capture Point
sniper_arts_3data,41,0.000092%,sniper,Other
factoryv5_2,41,0.000092%,factoryv5,Other
d3_c17_07tf2,41,0.000092%,d3,Other
mvm_rottenburg_ubup_xmasinvasio,41,0.000092%,mvm,Man vs Machine
tfdb_upview,41,0.000092%,tfdb,Other
arena_bandit_a5,41,0.000092%,arena,Other
arena_2fort_b1,41,0.000092%,arena,Other
koth_ashwood_night_b8,41,0.000092%,koth,King of the Hill
koth_kablooie_a3,41,0.000092%,koth,King of the Hill
vsh_roadtonowhere_v9_fix3,41,0.000092%,vsh,Other
mvm_bigrock_30waves_normal_v5,41,0.000092%,mvm,Man vs Machine
fw_gl_v7_fixed,41,0.000092%,fw,Other
ph_trainset_a3,41,0.000092%,ph,Other
mvm_coaltown_charge,41,0.000092%,mvm,Man vs Machine
plr_hysteria_b2_tk,41,0.000092%,plr,Payload Race
mvm_mannworks_survival_objlessg,41,0.000092%,mvm,Man vs Machine
mvm_thenight_test8,40,0.000090%,mvm,Man vs Machine
dbs_drunknuke_b4,40,0.000090%,dbs,Other
bhop_kaisa,40,0.000090%,bhop,Other
dm_hangumhigh_tf2,40,0.000090%,dm,Deathmatch
vsh_death_star_v3,40,0.000090%,vsh,Other
pl_bunkerblasta17,40,0.000090%,pl,Payload
ultiduo_thaw_a2,40,0.000090%,ultiduo,Other
trade_minecraft_rivers95,40,0.000090%,trade,Trade and Achievement
cp_bestinclass_v2,40,0.000090%,cp,Capture Point
pl_2fort_multipath_rc3,40,0.000090%,pl,Payload
koth_station_a11,40,0.000090%,koth,King of the Hill
dm_bondance_b4,40,0.000090%,dm,Deathmatch
sniper_cairo,40,0.000090%,sniper,Other
mvm_winter_b5_mannhattan,40,0.000090%,mvm,Man vs Machine
bonk_funhouse_beta_6,40,0.000090%,bonk,Other
mvm_mannhattan_30waves_normal_v,40,0.000090%,mvm,Man vs Machine
dbs_relentless2_rc1,40,0.000090%,dbs,Other
cp_sunshine_rc5,40,0.000090%,cp,Capture Point
pl_hydropower_event,40,0.000090%,pl,Payload
pl_eclipse_b1,40,0.000090%,pl,Payload
mvm_ma_ep9_1_easy,40,0.000090%,mvm,Man vs Machine
sniper_trainyard,40,0.000090%,sniper,Other
first_room,40,0.000090%,first,Other
dm_store_mb,40,0.000090%,dm,Deathmatch
dom_cliffhanger_b9,40,0.000090%,dom,Other
koth_covariance_a3,40,0.000090%,koth,King of the Hill
dm_cloudsdale_spacebar_b1,40,0.000090%,dm,Deathmatch
mvm_ma_ep16_1_hard,40,0.000090%,mvm,Man vs Machine
ctf_vault_a1,40,0.000090%,ctf,Capture the Flag
vsh_brawl_b1,40,0.000090%,vsh,Other
cp_process_b4,40,0.000090%,cp,Capture Point
pass_fly_b5,40,0.000090%,pass,Other
achievement_apg_r12b,40,0.000090%,achievement,Trade and Achievement
mvm_decoy_30wave_v46_e,40,0.000090%,mvm,Man vs Machine
mvm_bigrock_survival_objlessgia,40,0.000090%,mvm,Man vs Machine
ctf_aerospace_b3,39,0.000088%,ctf,Capture the Flag
dm_duel_naithon_v12,39,0.000088%,dm,Deathmatch
fw_gas_a2z,39,0.000088%,fw,Other
mvm_rottenburg_click_advanced2,39,0.000088%,mvm,Man vs Machine
mvm_ma_ep16_1_easy,39,0.000088%,mvm,Man vs Machine
bhop_superdooperhard_speedrun,39,0.000088%,bhop,Other
koth_maple_ridge_b6,39,0.000088%,koth,King of the Hill
surf_vale,39,0.000088%,surf,Other
arena_1x1box_b2,39,0.000088%,arena,Other
fw_medieval_crusades_v4,39,0.000088%,fw,Other
ph_persia_a1,39,0.000088%,ph,Other
koth_dev,39,0.000088%,koth,King of the Hill
trade_minecraft_alt3,39,0.000088%,trade,Trade and Achievement
mvm_saddle_s14_normal,39,0.000088%,mvm,Man vs Machine
surf_spectrum,39,0.000088%,surf,Other
surf_greatnileriver,39,0.000088%,surf,Other
vsh_nebula_v4,39,0.000088%,vsh,Other
dbs_theunknown_rc8,39,0.000088%,dbs,Other
trade_facility,39,0.000088%,trade,Trade and Achievement
vsh_circle_v1,39,0.000088%,vsh,Other
mvm_thedust_b3_historyoftf,39,0.000088%,mvm,Man vs Machine
evento_adm_corrida,39,0.000088%,evento,Other
minecraft_towns50,39,0.000088%,minecraft,Other
cp_gothic_event,39,0.000088%,cp,Capture Point
tr_lomugdang_rc2,39,0.000088%,tr,Other
mvm_anime_swordsman_cyberfy,39,0.000088%,mvm,Man vs Machine
mvm_mannworks_uu_helloween,39,0.000088%,mvm,Man vs Machine
trade_houseofpancakes_v2,39,0.000088%,trade,Trade and Achievement
achievement_heavyultimate,39,0.000088%,achievement,Trade and Achievement
koth_traindeath,39,0.000088%,koth,King of the Hill
mvm_decoy_escape_plan,39,0.000088%,mvm,Man vs Machine
jump_grey_v3,39,0.000088%,jump,Other
orange_tdl_mx,39,0.000088%,orange,Other
tfdb_comtubox_a2,39,0.000088%,tfdb,Other
mvm_mannhattan_ubup_ironmen,39,0.000088%,mvm,Man vs Machine
sn_pz_pro_tf2,39,0.000088%,sn,Other
mvm_mannworks_10wave,39,0.000088%,mvm,Man vs Machine
tc_toy_fort_2_v2,39,0.000088%,tc,Other
pl_tanker_b3,39,0.000088%,pl,Payload
jump_aando_b1_tmps,39,0.000088%,jump,Other
ctf_boneyard,39,0.000088%,ctf,Capture the Flag
tfdb_trampolin_nud_v1,39,0.000088%,tfdb,Other
dr_cube_v5,39,0.000088%,dr,Other
jump_swall_test3,39,0.000088%,jump,Other
mvm_mannworks_super_mannworks,39,0.000088%,mvm,Man vs Machine
koth_covariance_a4,39,0.000088%,koth,King of the Hill
mvm_normandy_rus,39,0.000088%,mvm,Man vs Machine
koth_terrace_a7,39,0.000088%,koth,King of the Hill
surf_prosaic,38,0.000085%,surf,Other
mvm_mannhattan_mannhattan_advan,38,0.000085%,mvm,Man vs Machine
achievement_egypt_night_dt11,38,0.000085%,achievement,Trade and Achievement
mvm_newnormandy_d-day,38,0.000085%,mvm,Man vs Machine
mvm_keller_b12_normal,38,0.000085%,mvm,Man vs Machine
infinite_wave_lv4,38,0.000085%,infinite,Other
cp_hadal_b9a,38,0.000085%,cp,Capture Point
mvm_coaltown_event_attack_v1,38,0.000085%,mvm,Man vs Machine
cp_spire_bow_d,38,0.000085%,cp,Capture Point
mvm_normandy_chaotic,38,0.000085%,mvm,Man vs Machine
mvm_winter_b5_rottenburg,38,0.000085%,mvm,Man vs Machine
trade_spookystation_v4,38,0.000085%,trade,Trade and Achievement
trade_minecraft_towns5,38,0.000085%,trade,Trade and Achievement
mvm_orange_x3_how_v2b_fawos_coa,38,0.000085%,mvm,Man vs Machine
mvm_doubletap_a2,38,0.000085%,mvm,Man vs Machine
tfdbr_catland_v1,38,0.000085%,tfdbr,Other
surf_desolation,38,0.000085%,surf,Other
jail_minecart_b7_tf2jail,38,0.000085%,jail,Other
mvm_mannworks_tank,38,0.000085%,mvm,Man vs Machine
cp_diversion_a8,38,0.000085%,cp,Capture Point
ctf_tmbrdr_a6_v2,38,0.000085%,ctf,Capture the Flag
mvm_decoy_world_war_z,38,0.000085%,mvm,Man vs Machine
cp_orange_nt_d3,38,0.000085%,cp,Capture Point
koth_powercell,38,0.000085%,koth,King of the Hill
cp_tidewater_72a,38,0.000085%,cp,Capture Point
mvm_normandy_coaltown_expert1,38,0.000085%,mvm,Man vs Machine
vsh_project_powerup_a16,38,0.000085%,vsh,Other
ctf_turbine_mannpower_v2,38,0.000085%,ctf,Capture the Flag
psf_km_n_icd_underfight_v1,38,0.000085%,psf,Other
mvm_rottenburg_mentformvmisolat,38,0.000085%,mvm,Man vs Machine
mvm_meltdown_rc1_4,38,0.000085%,mvm,Man vs Machine
tfdb_chleba,38,0.000085%,tfdb,Other
gg_orange_cross2_rsx_final,38,0.000085%,gg,Other
surf_compulsive_hard,38,0.000085%,surf,Other
surf_1day,38,0.000085%,surf,Other
gm10_floodinvasion_advanced2_hi,38,0.000085%,gm10,Other
mvm_decoy_intermediate_final_mi,38,0.000085%,mvm,Man vs Machine
mvm_bandicoot_7,37,0.000083%,mvm,Man vs Machine
ctf_2fort_time_sunrise_b1,37,0.000083%,ctf,Capture the Flag
mvm_mannworks_phlogs,37,0.000083%,mvm,Man vs Machine
ctf_cycle,37,0.000083%,ctf,Capture the Flag
cp_orange_x_7_wl4b_night,37,0.000083%,cp,Capture Point
mvm_tunnels_a6_advanced1,37,0.000083%,mvm,Man vs Machine
dr_sawmill_final_fix2,37,0.000083%,dr,Other
kart_grandprix,37,0.000083%,kart,Other
mvm_tropics_rc10_expert_sunshin,37,0.000083%,mvm,Man vs Machine
mvm_normandy_advanced2_high_cpu,37,0.000083%,mvm,Man vs Machine
mvm_bigrock_londier,37,0.000083%,mvm,Man vs Machine
surf_oompa_loompa_v1a_b1,37,0.000083%,surf,Other
cp_orange_x267,37,0.000083%,cp,Capture Point
fw_medieval_tunnel_v1,37,0.000083%,fw,Other
koth_chapel_event,37,0.000083%,koth,King of the Hill
ctf_bases,37,0.000083%,ctf,Capture the Flag
cp_srewot,37,0.000083%,cp,Capture Point
mvm_bigrock_uu99_test,37,0.000083%,mvm,Man vs Machine
mvm_manndarin_final_normal,37,0.000083%,mvm,Man vs Machine
freestyle_lick2_b1,37,0.000083%,freestyle,Other
koth_nighthunt_beta_v1,37,0.000083%,koth,King of the Hill
koth_hey,37,0.000083%,koth,King of the Hill
jump_measure,37,0.000083%,jump,Other
dr_myst_underground_v10c_vsh,37,0.000083%,dr,Other
trade_revamp_01,37,0.000083%,trade,Trade and Achievement
vsh_chasm_a2,37,0.000083%,vsh,Other
arena_backlot_event,37,0.000083%,arena,Other
koth_haunted_fall_event,37,0.000083%,koth,King of the Hill
2fortsniper_haunted,37,0.000083%,2fortsniper,Other
mvm_manncohq_v3_advanced1,37,0.000083%,mvm,Man vs Machine
cp_shelter_rc2,37,0.000083%,cp,Capture Point
jump_alil,37,0.000083%,jump,Other
tfdb_doublereactor_alpha_7,37,0.000083%,tfdb,Other
achievement_bots_v4_a4,37,0.000083%,achievement,Trade and Achievement
mvm_coaltown_advanced2_final_mi,37,0.000083%,mvm,Man vs Machine
mvm_testbed_v1_scout,37,0.000083%,mvm,Man vs Machine
ctf_2fort_minecraft_s13,37,0.000083%,ctf,Capture the Flag
zf_hopeless_beta3,37,0.000083%,zf,Other
fw_channel_proto4,37,0.000083%,fw,Other
trade_patrol_b2,37,0.000083%,trade,Trade and Achievement
koth_basin_a11,37,0.000083%,koth,King of the Hill
orange_tf2melee,37,0.000083%,orange,Other
surf_peppermint_v7,37,0.000083%,surf,Other
pl_a2_iron,37,0.000083%,pl,Payload
koth_tuscany_a6,37,0.000083%,koth,King of the Hill
sn_sniper_cali,37,0.000083%,sn,Other
jump_pipebomb_v1,37,0.000083%,jump,Other
surf_curious,37,0.000083%,surf,Other
pl_poodoo_vb3,37,0.000083%,pl,Payload
cp_relay_b3,37,0.000083%,cp,Capture Point
mvm_thedust_b3_expert2,36,0.000081%,mvm,Man vs Machine
pl_waterdoom,36,0.000081%,pl,Payload
surf_sci_fi,36,0.000081%,surf,Other
tfdb_beach_v5,36,0.000081%,tfdb,Other
vsh_big_beanstalk,36,0.000081%,vsh,Other
tfdbr_reduction_a6,36,0.000081%,tfdbr,Other
dr_aconian_final_fixed,36,0.000081%,dr,Other
fw_fortwars_hb_v2,36,0.000081%,fw,Other
mg_svb_v1,36,0.000081%,mg,Other
trade_pyro_v2,36,0.000081%,trade,Trade and Achievement
vsh_spinney,36,0.000081%,vsh,Other
mvm_storage_a2_advanced2_high_c,36,0.000081%,mvm,Man vs Machine
arena_breakfloor_egypt_b8_nc,36,0.000081%,arena,Other
trade_plaza_hg_at2a9,36,0.000081%,trade,Trade and Achievement
mvm_coaltown_30waves_survival_v,36,0.000081%,mvm,Man vs Machine
mvm_museum_a9_normal,36,0.000081%,mvm,Man vs Machine
mvm_bigrock_allanallan,36,0.000081%,mvm,Man vs Machine
mvm_ghost_town_ponies3,36,0.000081%,mvm,Man vs Machine
vsh_dr_hallway_final,36,0.000081%,vsh,Other
arena_true_b2-1,36,0.000081%,arena,Other
gm_bigcity_winter,36,0.000081%,gm,Other
mvm_oilrig_rc5_advanced1,36,0.000081%,mvm,Man vs Machine
cp_2train,36,0.000081%,cp,Capture Point
ultiduo_gator_rc5,36,0.000081%,ultiduo,Other
mvm_winter_b5_coaltown_advanced,36,0.000081%,mvm,Man vs Machine
ctf_flyingfortresses,36,0.000081%,ctf,Capture the Flag
mvm_mannworks_ubup_xmasinvasion,36,0.000081%,mvm,Man vs Machine
mvm_corridors,36,0.000081%,mvm,Man vs Machine
zf_asylum_b1,36,0.000081%,zf,Other
jump_ezpz_v2,36,0.000081%,jump,Other
ctf_2fort_upsidedown,36,0.000081%,ctf,Capture the Flag
trade_minecraft_neon_v,36,0.000081%,trade,Trade and Achievement
sb_spacebrawl_b3,36,0.000081%,sb,Other
tfdb_ponyland_a2,36,0.000081%,tfdb,Other
cp_fortline,36,0.000081%,cp,Capture Point
tfdb_warehouse_final,36,0.000081%,tfdb,Other
vsh_dr_cocainum_v2_1_xmas_fix,36,0.000081%,vsh,Other
mvm_normandy_advanced2,36,0.000081%,mvm,Man vs Machine
cp_kakariko_b1,36,0.000081%,cp,Capture Point
mvm_coaltown_30wave_v25_ep1,36,0.000081%,mvm,Man vs Machine
cp_croissant_rc11,36,0.000081%,cp,Capture Point
tdm_hometown1999,36,0.000081%,tdm,Other
surf_paranoid_enigma,36,0.000081%,surf,Other
koth_twinfalls,36,0.000081%,koth,King of the Hill
koth_maple_ridge_rc2,36,0.000081%,koth,King of the Hill
ph_thievestown_a2,36,0.000081%,ph,Other
mvm_bigrock_advanced_barbican_b,36,0.000081%,mvm,Man vs Machine
mpc_manncoscience_v2,36,0.000081%,mpc,Other
achieve_sap_auteur,36,0.000081%,achieve,Other
jump_arctic_a1,36,0.000081%,jump,Other
mvm_bigrock_uberboss,36,0.000081%,mvm,Man vs Machine
vsh_dr_bank_v7,36,0.000081%,vsh,Other
snipe_crosspitx,36,0.000081%,snipe,Other
surf_ny_momentum2_fix,36,0.000081%,surf,Other
mvm_thedust_b2,35,0.000079%,mvm,Man vs Machine
arena_volcano_b2a,35,0.000079%,arena,Other
sniperwell_tf2_final,35,0.000079%,sniperwell,Other
surf_frequency,35,0.000079%,surf,Other
mvm_bigrock_30waves_hard_v5,35,0.000079%,mvm,Man vs Machine
mvm_5gorge_cp_decoy_advanced,35,0.000079%,mvm,Man vs Machine
dr_officefront_testing,35,0.000079%,dr,Other
sn_sniper_tajmahal_deluxe,35,0.000079%,sn,Other
ctf_turbine_upsidedown,35,0.000079%,ctf,Capture the Flag
mvm_coaltown_expert_final_missi,35,0.000079%,mvm,Man vs Machine
ultiduo_thaw_a3,35,0.000079%,ultiduo,Other
jump_leicht_v2,35,0.000079%,jump,Other
dr_office_vrs4_gsn,35,0.000079%,dr,Other
mvm_storage_a2_rus,35,0.000079%,mvm,Man vs Machine
cp_bladend64_72,35,0.000079%,cp,Capture Point
inv_bunker_a3,35,0.000079%,inv,Other
mvm_coaltown_big_guns,35,0.000079%,mvm,Man vs Machine
pl_waterlock,35,0.000079%,pl,Payload
pyrobox_b3,35,0.000079%,pyrobox,Other
cp_wetlands,35,0.000079%,cp,Capture Point
trade_mesa_v001f_30wave_v60_lvl,35,0.000079%,trade,Trade and Achievement
vsh_colonies_a4,35,0.000079%,vsh,Other
dbs_minecraft_rc1d,35,0.000079%,dbs,Other
mvm_limburgh_final_mannhattan_a,35,0.000079%,mvm,Man vs Machine
jump_elysium,35,0.000079%,jump,Other
mvm_decoy_advanced2_final_missi,35,0.000079%,mvm,Man vs Machine
ctf_crowbar_r1,35,0.000079%,ctf,Capture the Flag
mvm_clash_of_clans_test3,35,0.000079%,mvm,Man vs Machine
surf_qlimax,35,0.000079%,surf,Other
ctf_minecraft_b15a,35,0.000079%,ctf,Capture the Flag
cp_mannwall,35,0.000079%,cp,Capture Point
plr_orbit_a1,35,0.000079%,plr,Payload Race
surf_diamond_beta2,35,0.000079%,surf,Other
cp_container_v2,35,0.000079%,cp,Capture Point
mvm_bigrock_uu_helloween,35,0.000079%,mvm,Man vs Machine
eazy_jumpmap_bate1,35,0.000079%,eazy,Other
mvm_coaltown_advanced_final_mis,35,0.000079%,mvm,Man vs Machine
arena_backwash_b3,35,0.000079%,arena,Other
dr_playstation_b21,35,0.000079%,dr,Other
vsh_traincross_b1,35,0.000079%,vsh,Other
mvm_province_b1,35,0.000079%,mvm,Man vs Machine
pl_smile,35,0.000079%,pl,Payload
jump_xtra_swing_b1,35,0.000079%,jump,Other
dr_playstation_b22,35,0.000079%,dr,Other
vsh_h3ll@_$w@g_b1,35,0.000079%,vsh,Other
jump_dystopia_fixed,35,0.000079%,jump,Other
tfdb_nebula_b2,35,0.000079%,tfdb,Other
cp_orange_x3_eqg_edit_v1,35,0.000079%,cp,Capture Point
tr_medic_healing,35,0.000079%,tr,Other
glass_wakawaka_v2,35,0.000079%,glass,Other
mvm_bigrock_robocalypse_expert1,35,0.000079%,mvm,Man vs Machine
ctf_doublecross_mannpower,35,0.000079%,ctf,Capture the Flag
cp_applelusa_express_night,35,0.000079%,cp,Capture Point
tfdb_tk_mirror,35,0.000079%,tfdb,Other
vsh_toro_b1_xmas,35,0.000079%,vsh,Other
tr_airshot_v0_fixed,35,0.000079%,tr,Other
mvm_mannworks_survival_objlessh,35,0.000079%,mvm,Man vs Machine
surf_canisius2_rc1,35,0.000079%,surf,Other
cp_simple_orange,34,0.000076%,cp,Capture Point
de_nuke,34,0.000076%,de,Other
surf_liberation,34,0.000076%,surf,Other
mvm_mannworks_survival_objectiv,34,0.000076%,mvm,Man vs Machine
tfdb_carrot,34,0.000076%,tfdb,Other
mvm_newnormandy_bangalores,34,0.000076%,mvm,Man vs Machine
surf_diminsion,34,0.000076%,surf,Other
cp_floodzone2_fixed,34,0.000076%,cp,Capture Point
pd_watergate_bots,34,0.000076%,pd,Other
vsh_swamp,34,0.000076%,vsh,Other
ach_strange,34,0.000076%,ach,Other
slender_elementary_b2,34,0.000076%,slender,Other
vsh_campette,34,0.000076%,vsh,Other
ctf_turbine_bots,34,0.000076%,ctf,Capture the Flag
sniper_mile,34,0.000076%,sniper,Other
cp_redpolis_b6,34,0.000076%,cp,Capture Point
pl_downward_b2,34,0.000076%,pl,Payload
jump_trypophobia,34,0.000076%,jump,Other
koth_escalante_b2,34,0.000076%,koth,King of the Hill
mvm_sewer_invasion_b7_normal,34,0.000076%,mvm,Man vs Machine
jump_attached2_b2,34,0.000076%,jump,Other
surf_kitsune,34,0.000076%,surf,Other
ctf_xmas2fort_b3,34,0.000076%,ctf,Capture the Flag
tfdb_anotherbox_v3fix,34,0.000076%,tfdb,Other
zf_drain_a2_slag,34,0.000076%,zf,Other
mvm_wizardry_casual,34,0.000076%,mvm,Man vs Machine
scout_x1,34,0.000076%,scout,Other
glass_closequarters_v2,34,0.000076%,glass,Other
mvm_coaltown_wwiii,34,0.000076%,mvm,Man vs Machine
surf_infected,34,0.000076%,surf,Other
mvm_decoy_classes,34,0.000076%,mvm,Man vs Machine
glass_hex_snow_tf2_fix,34,0.000076%,glass,Other
kokiri_a2,34,0.000076%,kokiri,Other
cp_beidian_a1,34,0.000076%,cp,Capture Point
mvm_rottenburg_30_waves_v46_har,34,0.000076%,mvm,Man vs Machine
cp_underhanded_b4c,34,0.000076%,cp,Capture Point
koth_second_both_4,34,0.000076%,koth,King of the Hill
ctf_lavapit_72h_b2,34,0.000076%,ctf,Capture the Flag
zf_inderbase,34,0.000076%,zf,Other
cp_glassworks_rc2,34,0.000076%,cp,Capture Point
arena_snowflake_a1,34,0.000076%,arena,Other
jb_uhadi_alpha0,34,0.000076%,jb,Other
arena_redwood_b3_fix2,34,0.000076%,arena,Other
fw_ex_rhein_v1,34,0.000076%,fw,Other
jump_attached2_a4,34,0.000076%,jump,Other
dbs_hotnuke_b9,33,0.000074%,dbs,Other
trade_hopi_plaza_v2_v1,33,0.000074%,trade,Trade and Achievement
dr_safety_first_rfsfix,33,0.000074%,dr,Other
jump_aznbob,33,0.000074%,jump,Other
mvm_troopers_duece,33,0.000074%,mvm,Man vs Machine
mvm_testbed_v1_demo,33,0.000074%,mvm,Man vs Machine
trade_imagination_a6,33,0.000074%,trade,Trade and Achievement
mvm_coaltown_normal_v2,33,0.000074%,mvm,Man vs Machine
surf_catalyst,33,0.000074%,surf,Other
koth_arches_b3,33,0.000074%,koth,King of the Hill
dr_spacecolony_b1,33,0.000074%,dr,Other
jump_noname_a2,33,0.000074%,jump,Other
ultiduo_grove_b1,33,0.000074%,ultiduo,Other
ctf_bowsers_castle3_v1,33,0.000074%,ctf,Capture the Flag
mvm_area_52_rc3_engie_etemancip,33,0.000074%,mvm,Man vs Machine
mvm_isolation_rc3_advanced1,33,0.000074%,mvm,Man vs Machine
vsh_rubble_final2,33,0.000074%,vsh,Other
fy_iceworld,33,0.000074%,fy,Other
mvm_hybrid_theory_charlie,33,0.000074%,mvm,Man vs Machine
vsh_dr_slay_vb6p,33,0.000074%,vsh,Other
mvm_mannworks_lightmares_festiv,33,0.000074%,mvm,Man vs Machine
mvm_yucatan_halloween_b3,33,0.000074%,mvm,Man vs Machine
mvm_rottenburg_smissmass,33,0.000074%,mvm,Man vs Machine
cp_titan_rc1,33,0.000074%,cp,Capture Point
ph_blockfort_a2,33,0.000074%,ph,Other
vsh_rattyratrat_sver3,33,0.000074%,vsh,Other
cp_dindustry_a1,33,0.000074%,cp,Capture Point
ryeanville_a3,33,0.000074%,ryeanville,Other
vsh_dr_4halls_v6,33,0.000074%,vsh,Other
ctf_mercy,33,0.000074%,ctf,Capture the Flag
mvm_rooftop_b3,33,0.000074%,mvm,Man vs Machine
ctf_landfall_rc,33,0.000074%,ctf,Capture the Flag
pl_borax_rc2_tk,33,0.000074%,pl,Payload
mvm_rottenburg_iron_duo,33,0.000074%,mvm,Man vs Machine
trade_ftc_enhanced_v2,33,0.000074%,trade,Trade and Achievement
zm_skyforts_v4,33,0.000074%,zm,Other
fw_slag_b3,33,0.000074%,fw,Other
cp_badwater,33,0.000074%,cp,Capture Point
jump_noname_a3,33,0.000074%,jump,Other
mvm_coaltown_ghs,33,0.000074%,mvm,Man vs Machine
cp_overgrown_b5b,33,0.000074%,cp,Capture Point
mvm_orange_x3_how_v2b_fawos_bad,33,0.000074%,mvm,Man vs Machine
ph_amazon_a2,33,0.000074%,ph,Other
spaceinvaders_a5,33,0.000074%,spaceinvaders,Other
mvm_badwater_final_decoy_advanc,33,0.000074%,mvm,Man vs Machine
mvm_ghost_town_lessspooky4u,33,0.000074%,mvm,Man vs Machine
pl_malaria_b3,32,0.000072%,pl,Payload
cp_420_orange_push_v3,32,0.000072%,cp,Capture Point
mvm_decoy_stahlfangeisen_by_neb,32,0.000072%,mvm,Man vs Machine
cp_gamerland_modern,32,0.000072%,cp,Capture Point
boss_underworld_b5,32,0.000072%,boss,Other
pl_dirty_bomb_b3,32,0.000072%,pl,Payload
zf_deathcity,32,0.000072%,zf,Other
mvm_tropics_rc2_advanced,32,0.000072%,mvm,Man vs Machine
beta9_kalashnikov_achievement_a,32,0.000072%,beta9,Other
koth_turningtest_a5,32,0.000072%,koth,King of the Hill
tfdb_kappapridebox,32,0.000072%,tfdb,Other
trade_minecraft_toxicbunny_v3,32,0.000072%,trade,Trade and Achievement
vsh_killbox_2014_b1,32,0.000072%,vsh,Other
trade_rawr_vl_1_sxh,32,0.000072%,trade,Trade and Achievement
cp_whitebase_v1,32,0.000072%,cp,Capture Point
mvm_decoy_ratio_expert2,32,0.000072%,mvm,Man vs Machine
cp_foreshock_a1,32,0.000072%,cp,Capture Point
surf_bob,32,0.000072%,surf,Other
cp_aqua,32,0.000072%,cp,Capture Point
3cp_townside_a2,32,0.000072%,3cp,Other
cp_taiga_b2,32,0.000072%,cp,Capture Point
sn_sewer_beta,32,0.000072%,sn,Other
vsh_dr_cliffsideb4,32,0.000072%,vsh,Other
mvm_ghost_town_haunted_town,32,0.000072%,mvm,Man vs Machine
city_beta_4_dm,32,0.000072%,city,Other
cp_castle4_wb,32,0.000072%,cp,Capture Point
koth_syphon_b3e,32,0.000072%,koth,King of the Hill
cp_boondoggle_a7,32,0.000072%,cp,Capture Point
vsh_barn_b7,32,0.000072%,vsh,Other
koth_tileroom_beta_v4,32,0.000072%,koth,King of the Hill
surf_mesa_revo_tf2,32,0.000072%,surf,Other
surf_sexyartz,32,0.000072%,surf,Other
koth_deku,32,0.000072%,koth,King of the Hill
jump_synapse_a1,32,0.000072%,jump,Other
tdm_boxing,32,0.000072%,tdm,Other
mvm_mannhattan_hard_v1,32,0.000072%,mvm,Man vs Machine
mvm_decoy_advanced2_high_cpu,32,0.000072%,mvm,Man vs Machine
arena_lakeside,32,0.000072%,arena,Other
ctf_turbine_xx,32,0.000072%,ctf,Capture the Flag
zm_duel_v1c,32,0.000072%,zm,Other
vsh_barnyard,32,0.000072%,vsh,Other
koth_dewm_b7,32,0.000072%,koth,King of the Hill
dr_turkoffice_v1e,32,0.000072%,dr,Other
dbs_relentless_b7,32,0.000072%,dbs,Other
vsh_desert_post_a3,32,0.000072%,vsh,Other
pl_metropolis_b5_wb,32,0.000072%,pl,Payload
cp_toxic_v2,32,0.000072%,cp,Capture Point
koth_mannwater_b1,32,0.000072%,koth,King of the Hill
ctf_turbine_q,32,0.000072%,ctf,Capture the Flag
mvm_countryside,32,0.000072%,mvm,Man vs Machine
aim_ak-colt_arg_fawosfix_final_,32,0.000072%,aim,Other
koth_ring_v3,32,0.000072%,koth,King of the Hill
koth_hungry,32,0.000072%,koth,King of the Hill
wallfox_indev13,32,0.000072%,wallfox,Other
cp_ferrum_b6,32,0.000072%,cp,Capture Point
koth_loltower_j2,32,0.000072%,koth,King of the Hill
surf_underworld,32,0.000072%,surf,Other
dbs_tryhard_rc1e,32,0.000072%,dbs,Other
cp_follower_rc1,32,0.000072%,cp,Capture Point
pl_dynamite4_fix,32,0.000072%,pl,Payload
mvm_coaltown_robotermesser,32,0.000072%,mvm,Man vs Machine
dm_for_jeff5,32,0.000072%,dm,Deathmatch
mvm_mannworks_ponies3,32,0.000072%,mvm,Man vs Machine
pl_warbomb,32,0.000072%,pl,Payload
koth_mineshaft_a2,32,0.000072%,koth,King of the Hill
tr_flinger_b2_d,32,0.000072%,tr,Other
cp_arcana_rc2,32,0.000072%,cp,Capture Point
tfdb_waw_r2,31,0.000070%,tfdb,Other
mvm_normandy_decoy_advanced2,31,0.000070%,mvm,Man vs Machine
koth_fourteenth_a4,31,0.000070%,koth,King of the Hill
sn_snipr_sid,31,0.000070%,sn,Other
mvm_mannhattan_melting_machiner,31,0.000070%,mvm,Man vs Machine
koth_layton_b12,31,0.000070%,koth,King of the Hill
pl_snowycoast_wb,31,0.000070%,pl,Payload
jump_bb_city_rc1,31,0.000070%,jump,Other
arena_lost_in_desert,31,0.000070%,arena,Other
mvm_rottenburg_advanced1+,31,0.000070%,mvm,Man vs Machine
ctf_2fort_medievalv18b,31,0.000070%,ctf,Capture the Flag
db_pingpong_rc1,31,0.000070%,db,Other
mvm_downtown_final1_marxman_mas,31,0.000070%,mvm,Man vs Machine
koth_test_b1,31,0.000070%,koth,King of the Hill
mvm_decoy_operationrobotfinal,31,0.000070%,mvm,Man vs Machine
cp_science,31,0.000070%,cp,Capture Point
mvm_mannworks_expert2,31,0.000070%,mvm,Man vs Machine
bhop_manyroute_pro,31,0.000070%,bhop,Other
koth_dropdeadfred_v3,31,0.000070%,koth,King of the Hill
surf_quartus_fix,31,0.000070%,surf,Other
vsh_run_blitz_v6,31,0.000070%,vsh,Other
zf_office_b7,31,0.000070%,zf,Other
mvm_mannworks_30waves_easy_v5,31,0.000070%,mvm,Man vs Machine
jump_excavation2,31,0.000070%,jump,Other
mvm_the_edge_normal,31,0.000070%,mvm,Man vs Machine
vsh_chimeralabs_v6,31,0.000070%,vsh,Other
cp_jinx_beta_01,31,0.000070%,cp,Capture Point
koth_cloudtop_72_b2,31,0.000070%,koth,King of the Hill
senior_scrap_002,31,0.000070%,senior,Other
arena_lavender_town,31,0.000070%,arena,Other
pl_losthorizon_b4,31,0.000070%,pl,Payload
mvm_mc_overdrive_ep4,31,0.000070%,mvm,Man vs Machine
cp_abordight,31,0.000070%,cp,Capture Point
mvm_limburgh_final_normal,31,0.000070%,mvm,Man vs Machine
freestyle_88,31,0.000070%,freestyle,Other
mvm_foundry_oblivion,31,0.000070%,mvm,Man vs Machine
mvm_storage_a2_decoy_advanced2,31,0.000070%,mvm,Man vs Machine
egypt_landdown_02,31,0.000070%,egypt,Other
cp_ferrum_rc1,31,0.000070%,cp,Capture Point
ba_mlcastle_v4,31,0.000070%,ba,Other
mvm_ghost_town_spooksno,31,0.000070%,mvm,Man vs Machine
cp_worktime,31,0.000070%,cp,Capture Point
mvm_orange_x3_how_v2b_fawos_chr,31,0.000070%,mvm,Man vs Machine
cp_horus_b3,31,0.000070%,cp,Capture Point
trade_dcx_b1_1,31,0.000070%,trade,Trade and Achievement
vsh_standoff_v2,31,0.000070%,vsh,Other
surf_auroria,31,0.000070%,surf,Other
mvm_ghost_town_666_advanced,31,0.000070%,mvm,Man vs Machine
mvm_mannhattan_30wave_v60_lvl3,31,0.000070%,mvm,Man vs Machine
pl_gibraltar_d,31,0.000070%,pl,Payload
tfdb_baseball,31,0.000070%,tfdb,Other
mvm_downtown_final1_3_intermedi,31,0.000070%,mvm,Man vs Machine
hidden_sewers_final,31,0.000070%,hidden,Other
tfdb_trains_beta2,31,0.000070%,tfdb,Other
mvm_ghost_town_10_waves,31,0.000070%,mvm,Man vs Machine
pl_spieldeslebens26,31,0.000070%,pl,Payload
trade_revamp_04,31,0.000070%,trade,Trade and Achievement
mvm_normandy_coaltown_advanced,31,0.000070%,mvm,Man vs Machine
ctf_2fart,30,0.000067%,ctf,Capture the Flag
tfdb_box_a2,30,0.000067%,tfdb,Other
koth_driller,30,0.000067%,koth,King of the Hill
mvm_rottenburg_pizza_hell,30,0.000067%,mvm,Man vs Machine
hello_kitty,30,0.000067%,hello,Other
wonka_factory_a0,30,0.000067%,wonka,Other
vsh_2fortdesk_v9a1,30,0.000067%,vsh,Other
tfdb_own_way_b2,30,0.000067%,tfdb,Other
tfdb_olympics_v5,30,0.000067%,tfdb,Other
koth_prettysawlit_a5b,30,0.000067%,koth,King of the Hill
mvm_bigrock_infinite,30,0.000067%,mvm,Man vs Machine
koth_basefront_a1_fix,30,0.000067%,koth,King of the Hill
achievement_xavi_v3,30,0.000067%,achievement,Trade and Achievement
mvm_hydro_a3_decoy_advanced,30,0.000067%,mvm,Man vs Machine
f12_bigcity_event_b2_fix,30,0.000067%,f12,Other
hm_opchallenge_v2,30,0.000067%,hm,Other
cp_myrtana_a33,30,0.000067%,cp,Capture Point
sniper_ridge,30,0.000067%,sniper,Other
jump_tower,30,0.000067%,jump,Other
mvm_bigrock_bs-intermediate,30,0.000067%,mvm,Man vs Machine
trade_sinfulplaza_v3,30,0.000067%,trade,Trade and Achievement
vsh_block_fort_revisited_v1,30,0.000067%,vsh,Other
surf_supermario_tf2,30,0.000067%,surf,Other
trade_minecraft_cliffs,30,0.000067%,trade,Trade and Achievement
dr_hallways_d,30,0.000067%,dr,Other
re_hldms_killbox_fawosfix,30,0.000067%,re,Other
mvm_coaltown_semlab,30,0.000067%,mvm,Man vs Machine
conc_aggregate,30,0.000067%,conc,Other
pl_borneo_ami,30,0.000067%,pl,Payload
ctf_sweetwater_redux_a10,30,0.000067%,ctf,Capture the Flag
surf_destiny,30,0.000067%,surf,Other
jb_skipjail_v5,30,0.000067%,jb,Other
dr_may_tf2_final,30,0.000067%,dr,Other
surf_the_distance,30,0.000067%,surf,Other
tfdb_whitebox_remake_a3,30,0.000067%,tfdb,Other
vsh_teul,30,0.000067%,vsh,Other
pl_snaketemple_a8,30,0.000067%,pl,Payload
plr_zedul,30,0.000067%,plr,Payload Race
cp_dustbowl_jungle,30,0.000067%,cp,Capture Point
cp_lunas_castle_b2,30,0.000067%,cp,Capture Point
mvm_decoy_30wave_onceclass_v26_,30,0.000067%,mvm,Man vs Machine
mvm_mannworks_ironman_final_mis,30,0.000067%,mvm,Man vs Machine
cp_orange_x_7_xmas,30,0.000067%,cp,Capture Point
itijcm_beta2,30,0.000067%,itijcm,Other
mvm_coaltown_urgonnadie,30,0.000067%,mvm,Man vs Machine
ctf_gm_construct,30,0.000067%,ctf,Capture the Flag
koth_piston,30,0.000067%,koth,King of the Hill
koth_sandstone_pro_b18,30,0.000067%,koth,King of the Hill
cp_coop_great_evil,30,0.000067%,cp,Capture Point
mvm_mannworks_discdrivecrash,30,0.000067%,mvm,Man vs Machine
mvm_decoy_botsaaaaa,30,0.000067%,mvm,Man vs Machine
mvm_decoy_stahlfangeisen,30,0.000067%,mvm,Man vs Machine
tfdb_float,30,0.000067%,tfdb,Other
mvm_coaltown_easy,30,0.000067%,mvm,Man vs Machine
trade_appleloosa_v2_single_boss,30,0.000067%,trade,Trade and Achievement
koth_backwoods_rc2,30,0.000067%,koth,King of the Hill
mvm_normandy_badwater_advanced,30,0.000067%,mvm,Man vs Machine
cp_redpolis,30,0.000067%,cp,Capture Point
mvm_isolation_b6_expert,30,0.000067%,mvm,Man vs Machine
cp_airraid_b2,30,0.000067%,cp,Capture Point
mvm_giza_b7_normal,30,0.000067%,mvm,Man vs Machine
vsh_illegal_transactions_b5,30,0.000067%,vsh,Other
rp_stardestroyer_b2_1,29,0.000065%,rp,Other
ctf_minepirates_a4,29,0.000065%,ctf,Capture the Flag
mvm_decoy_survival_objectiveles,29,0.000065%,mvm,Man vs Machine
mvm_isolation_rc2_advanced1,29,0.000065%,mvm,Man vs Machine
mvm_mannhattan_normal_v1,29,0.000065%,mvm,Man vs Machine
cp_orange_cry,29,0.000065%,cp,Capture Point
koth_test_final,29,0.000065%,koth,King of the Hill
ow_eichenwalde,29,0.000065%,ow,Other
pl_pipeline_bots,29,0.000065%,pl,Payload
jump_cortex_final,29,0.000065%,jump,Other
trade_abstract,29,0.000065%,trade,Trade and Achievement
ctf_sobaroll_b4,29,0.000065%,ctf,Capture the Flag
dr_bearush_a1,29,0.000065%,dr,Other
cp_iseelund_a1,29,0.000065%,cp,Capture Point
vsh_dr_volvagias_lair_beta03,29,0.000065%,vsh,Other
mvm_corridors_normal,29,0.000065%,mvm,Man vs Machine
mvm_orange_x3_how_v2b_fawos,29,0.000065%,mvm,Man vs Machine
koth_highline,29,0.000065%,koth,King of the Hill
tfdb_swagrocket_final,29,0.000065%,tfdb,Other
sniper_long_shot,29,0.000065%,sniper,Other
surf_flatliners,29,0.000065%,surf,Other
mvm_ghost_town_final_mission,29,0.000065%,mvm,Man vs Machine
cp_frontline_a0,29,0.000065%,cp,Capture Point
mvm_adventure_of_30wave_ep4,29,0.000065%,mvm,Man vs Machine
jump_torii,29,0.000065%,jump,Other
pl_wintertown_v2,29,0.000065%,pl,Payload
vsh_granaryfix,29,0.000065%,vsh,Other
fw_sky_v3z_d,29,0.000065%,fw,Other
mvm_testbed_v1_pyro,29,0.000065%,mvm,Man vs Machine
koth_minotaur_b1_troll_08,29,0.000065%,koth,King of the Hill
koth_metal,29,0.000065%,koth,King of the Hill
jump_mohaxish,29,0.000065%,jump,Other
koth_shirouma_b1,29,0.000065%,koth,King of the Hill
vsh_biohazard_v2,29,0.000065%,vsh,Other
re_terminal_a3,29,0.000065%,re,Other
trade_vatican_v2,29,0.000065%,trade,Trade and Achievement
vsh_dr_minecraftworld_b3,29,0.000065%,vsh,Other
cp_orange_line_v3,29,0.000065%,cp,Capture Point
cp_catwalk_a5c,29,0.000065%,cp,Capture Point
cp_kings_of_khaos_fnm,29,0.000065%,cp,Capture Point
pl_dynamite_rainy_b1,29,0.000065%,pl,Payload
psf_mannco_citytt_v9,29,0.000065%,psf,Other
cp_granary_pro,29,0.000065%,cp,Capture Point
mvm_jon_a7,29,0.000065%,mvm,Man vs Machine
ctf_castle,29,0.000065%,ctf,Capture the Flag
jump_pine_a2,29,0.000065%,jump,Other
cp_orange_xmas2012,29,0.000065%,cp,Capture Point
ctf_neon_a8,29,0.000065%,ctf,Capture the Flag
achieve_pyromancer,29,0.000065%,achieve,Other
egypt_landdown_01,29,0.000065%,egypt,Other
cp_orange_abc_v1,29,0.000065%,cp,Capture Point
sniper_medieval_data,29,0.000065%,sniper,Other
tfdb_butts,29,0.000065%,tfdb,Other
mvm_coaltown_advanced2_high_cpu,29,0.000065%,mvm,Man vs Machine
mvm_mannhattan_metromadness,29,0.000065%,mvm,Man vs Machine
achievements_v3,29,0.000065%,achievements,Other
vsh_purgatorium_v3,29,0.000065%,vsh,Other
cp_warpath_valley_b4,29,0.000065%,cp,Capture Point
mvm_ventus_b6_fawosfix_slaughte,29,0.000065%,mvm,Man vs Machine
cp_420_orange_rampage_v1,29,0.000065%,cp,Capture Point
achievement_nekocity_v10,29,0.000065%,achievement,Trade and Achievement
mvm_sundown_a7_normal2,29,0.000065%,mvm,Man vs Machine
cp_simple_grey_docb2,29,0.000065%,cp,Capture Point
surf_telstar_b3,29,0.000065%,surf,Other
ctf_2fort_mine_craft_bd4,29,0.000065%,ctf,Capture the Flag
vsh_spaaaaace_v1_fix_s3_skial_v,29,0.000065%,vsh,Other
mvm_rottenburg_easy,28,0.000063%,mvm,Man vs Machine
ctf_hellpower,28,0.000063%,ctf,Capture the Flag
007_james_bond_facility,28,0.000063%,007,Other
vsh_arena_fort_b1,28,0.000063%,vsh,Other
fw_ls_zombie2_v6,28,0.000063%,fw,Other
dr_4funz_tf2,28,0.000063%,dr,Other
de_aztec,28,0.000063%,de,Other
surf_calibration,28,0.000063%,surf,Other
mvm_isolation_rc3_deadly_blizza,28,0.000063%,mvm,Man vs Machine
jump_phobos_b5,28,0.000063%,jump,Other
dm_lunar_a2,28,0.000063%,dm,Deathmatch
cp_twist_b5,28,0.000063%,cp,Capture Point
pl_cactuscanyon_rev07a,28,0.000063%,pl,Payload
ba_mariopartyextended_v4,28,0.000063%,ba,Other
mvm_mannhattan_uberup_advanced,28,0.000063%,mvm,Man vs Machine
fw_minecraft_fixed,28,0.000063%,fw,Other
fw_cs_assault_v9,28,0.000063%,fw,Other
pl_a2_zedul,28,0.000063%,pl,Payload
gm_blackmesa,28,0.000063%,gm,Other
mvm_mannhattan_advanced3,28,0.000063%,mvm,Man vs Machine
cp_orange2_b4-2,28,0.000063%,cp,Capture Point
cp_silica_a2,28,0.000063%,cp,Capture Point
ctf_discover_build18,28,0.000063%,ctf,Capture the Flag
mvm_hydro_a3_rottenburg_advance,28,0.000063%,mvm,Man vs Machine
tr_target_weaponref_hdr,28,0.000063%,tr,Other
mvm_rottenburg_arbeitsteilung_b,28,0.000063%,mvm,Man vs Machine
mvm_rottenburg_easy_v1,28,0.000063%,mvm,Man vs Machine
cp_orange_twin_towers,28,0.000063%,cp,Capture Point
dbs_spacedout_b5,28,0.000063%,dbs,Other
vsh_slaghouse_final,28,0.000063%,vsh,Other
jump_trimp_b1,28,0.000063%,jump,Other
arena_volcano_b3,28,0.000063%,arena,Other
pl_moonlit_b2,28,0.000063%,pl,Payload
mvm_rottenburg_bossbattle,28,0.000063%,mvm,Man vs Machine
vsh_nuke,28,0.000063%,vsh,Other
cp_science2_tk,28,0.000063%,cp,Capture Point
arena_space_b1,28,0.000063%,arena,Other
jump_wenzel1337,28,0.000063%,jump,Other
campo_nuclear_,28,0.000063%,campo,Other
koth_lighthouse_rc3,28,0.000063%,koth,King of the Hill
surf_imex,28,0.000063%,surf,Other
coop_steel_b4,28,0.000063%,coop,Other
achievement_minecraft_kvkbeta1,28,0.000063%,achievement,Trade and Achievement
vsh_poolparty,28,0.000063%,vsh,Other
mvm_storage_a2_historyoftf,28,0.000063%,mvm,Man vs Machine
hm_dev,28,0.000063%,hm,Other
pl_goldrush_advanced2_high_cpu,28,0.000063%,pl,Payload
mvm_coaltown_juggler,28,0.000063%,mvm,Man vs Machine
achievement_apg_r12b_xmas3,28,0.000063%,achievement,Trade and Achievement
koth_eerie_event_b3,28,0.000063%,koth,King of the Hill
tr_sentry_busting,28,0.000063%,tr,Other
koth_vanguard_b5,28,0.000063%,koth,King of the Hill
dr_darkenergy_gmtfix1,28,0.000063%,dr,Other
fun_ramon_rc1,28,0.000063%,fun,Other
mvm_manndarin_final_e-viscmod,28,0.000063%,mvm,Man vs Machine
cp_dogenzaka_barebones_v,28,0.000063%,cp,Capture Point
dr_hot_desert_tf2,28,0.000063%,dr,Other
rob_vault_a1a,28,0.000063%,rob,Other
ctf_botmvm_b3,28,0.000063%,ctf,Capture the Flag
cp_orange_scaffolds_v2,28,0.000063%,cp,Capture Point
tfdb_singularity_b5,27,0.000061%,tfdb,Other
fw_ls_8-wall_v6,27,0.000061%,fw,Other
trade_hopi_plaza_v2_b21,27,0.000061%,trade,Trade and Achievement
koth_spooky_ravine_b1_3,27,0.000061%,koth,King of the Hill
koth_ramjam_b6,27,0.000061%,koth,King of the Hill
castillo_v4,27,0.000061%,castillo,Other
koth_ghostship_a4,27,0.000061%,koth,King of the Hill
surf_killer,27,0.000061%,surf,Other
dm_ponyville_b7_ttpn_edit_v3,27,0.000061%,dm,Deathmatch
mvm_mannworks_n,27,0.000061%,mvm,Man vs Machine
mvm_normandy_badwater_advanced2,27,0.000061%,mvm,Man vs Machine
pl_tfcl_a10,27,0.000061%,pl,Payload
mario_kart_msgsk9_v3,27,0.000061%,mario,Other
cp_orange_dp_remake_v1,27,0.000061%,cp,Capture Point
ctf_bball_tf,27,0.000061%,ctf,Capture the Flag
mvm_mannhattan_expert,27,0.000061%,mvm,Man vs Machine
dm_bridge_mannhattan,27,0.000061%,dm,Deathmatch
fw_sewers_a3z_c,27,0.000061%,fw,Other
pl_warpath_b7,27,0.000061%,pl,Payload
arena_west,27,0.000061%,arena,Other
surf_torque,27,0.000061%,surf,Other
ctf_shuangcheng,27,0.000061%,ctf,Capture the Flag
mvm_badwater_final_uu99_ironmen,27,0.000061%,mvm,Man vs Machine
cp_splitingends,27,0.000061%,cp,Capture Point
mvm_winter_b5_rottenburg_advanc,27,0.000061%,mvm,Man vs Machine
jump_smarticlee_alpha,27,0.000061%,jump,Other
mvm_mannhattan_synthetic_suicid,27,0.000061%,mvm,Man vs Machine
surf_skill8_fix,27,0.000061%,surf,Other
surf_redemption_b1,27,0.000061%,surf,Other
mvm_coaltown_advanced+,27,0.000061%,mvm,Man vs Machine
vsh_poolbox_v9,27,0.000061%,vsh,Other
dr_delay_b3_nomed,27,0.000061%,dr,Other
ctf_ballpit_a1,27,0.000061%,ctf,Capture the Flag
koth_dogenzaka_ii,27,0.000061%,koth,King of the Hill
mvm_coaltown_phlogs,27,0.000061%,mvm,Man vs Machine
koth_skywalker1,27,0.000061%,koth,King of the Hill
mvm_overlord_b3_decoy_advanced,27,0.000061%,mvm,Man vs Machine
mvm_open_final_swamp_normal,27,0.000061%,mvm,Man vs Machine
mvm_snowfall_b2_mannslaughter,27,0.000061%,mvm,Man vs Machine
dm_crossfire,27,0.000061%,dm,Deathmatch
surf_smaragd,27,0.000061%,surf,Other
fw_payload_v2_fix,27,0.000061%,fw,Other
ctf_thebes_b01,27,0.000061%,ctf,Capture the Flag
defrag_pizzanbeer,27,0.000061%,defrag,Other
ctf_badlands_classicb5,27,0.000061%,ctf,Capture the Flag
achievement_idle_slides_wtf,27,0.000061%,achievement,Trade and Achievement
dr_castlerun_tf2,27,0.000061%,dr,Other
surf_lament_n1,27,0.000061%,surf,Other
tfdb_snowforest_b3,27,0.000061%,tfdb,Other
cp_orange_center,27,0.000061%,cp,Capture Point
mvm_on_titan_normal_v1,27,0.000061%,mvm,Man vs Machine
cp_hadal_b7,27,0.000061%,cp,Capture Point
trade_cyberpunk_hightower_f2,27,0.000061%,trade,Trade and Achievement
zzzz_b7b,27,0.000061%,zzzz,Other
cp_wildmire_b3,27,0.000061%,cp,Capture Point
mvm_rottenburg_expert_click,27,0.000061%,mvm,Man vs Machine
ctf_2fort_merged,27,0.000061%,ctf,Capture the Flag
mvm_buffalocreek_a5,27,0.000061%,mvm,Man vs Machine
gm_bigcity_night_final,27,0.000061%,gm,Other
trade_uxie_a7_complete2,27,0.000061%,trade,Trade and Achievement
freestyle_shatter,27,0.000061%,freestyle,Other
half_life2_part2_v4,27,0.000061%,half,Other
vsh_yunshu_rc1,26,0.000058%,vsh,Other
mvm_bigrock_harvest,26,0.000058%,mvm,Man vs Machine
pl_a3_iron,26,0.000058%,pl,Payload
jump_stripe_b4,26,0.000058%,jump,Other
cp_subway_r2,26,0.000058%,cp,Capture Point
mvm_coaltown_airshotinator,26,0.000058%,mvm,Man vs Machine
mvm_isolation_rc3_the_cold_cont,26,0.000058%,mvm,Man vs Machine
cp_maggotwall_v3,26,0.000058%,cp,Capture Point
trade_minecraft_usa5,26,0.000058%,trade,Trade and Achievement
koth_ramjam_b11,26,0.000058%,koth,King of the Hill
cp_clocktower_b1b,26,0.000058%,cp,Capture Point
arena_airforce,26,0.000058%,arena,Other
cp_redfort_a1,26,0.000058%,cp,Capture Point
cp_orange_x7_s2gaming_vxt73,26,0.000058%,cp,Capture Point
vsh_hell_coast_a1,26,0.000058%,vsh,Other
cp_blue_x3_se2_final,26,0.000058%,cp,Capture Point
pl_reduit_beta,26,0.000058%,pl,Payload
koth_nucleus_event,26,0.000058%,koth,King of the Hill
tfdb_anox_hexagon_v2,26,0.000058%,tfdb,Other
pl_buzznest_b2,26,0.000058%,pl,Payload
mvm_testbed_v1,26,0.000058%,mvm,Man vs Machine
dbs_mag_2sides2_b9,26,0.000058%,dbs,Other
koth_appleacres_b3,26,0.000058%,koth,King of the Hill
mvm_rottenburg_town_terrorizer,26,0.000058%,mvm,Man vs Machine
ba_jail_summer_b1,26,0.000058%,ba,Other
mvm_rottenburg_marxman_massacre,26,0.000058%,mvm,Man vs Machine
mvm_machine_attacks_ep16demo,26,0.000058%,mvm,Man vs Machine
abs_soundscape_auditorium,26,0.000058%,abs,Other
mvm_coaltown_cpumess,26,0.000058%,mvm,Man vs Machine
zm_floating_rock_ig,26,0.000058%,zm,Other
surf_blackside,26,0.000058%,surf,Other
mvm_decoy_boss,26,0.000058%,mvm,Man vs Machine
cp_mobius_v1,26,0.000058%,cp,Capture Point
cp_portal_2,26,0.000058%,cp,Capture Point
mvm_decoy_the_showdown,26,0.000058%,mvm,Man vs Machine
cp_alamo_event,26,0.000058%,cp,Capture Point
cp_hardhat_b3a,26,0.000058%,cp,Capture Point
arena_kicknoobs,26,0.000058%,arena,Other
tfdb_simpsons_gov_v2,26,0.000058%,tfdb,Other
ctf_vector_v1,26,0.000058%,ctf,Capture the Flag
map_hammer_max_therrien,26,0.000058%,map,Other
sn_deadfall_tf2,26,0.000058%,sn,Other
koth_flake_a10,26,0.000058%,koth,King of the Hill
mvm_bigrock_wireslash,26,0.000058%,mvm,Man vs Machine
zf_labs_ext_a2,26,0.000058%,zf,Other
vsh_dr_psykopat2_v2,26,0.000058%,vsh,Other
trade_medieval_v2,26,0.000058%,trade,Trade and Achievement
mvm_isolation_rc2,26,0.000058%,mvm,Man vs Machine
cp_no_mercy_b1_wb,26,0.000058%,cp,Capture Point
dm_duel4_v1,26,0.000058%,dm,Deathmatch
koth_mineshaft_a4,26,0.000058%,koth,King of the Hill
ctf_arroyo_b6,26,0.000058%,ctf,Capture the Flag
ctf_aerial_b14,26,0.000058%,ctf,Capture the Flag
sd_minerocket_v7,26,0.000058%,sd,Other
mvm_orange_x3_how_v2b_fawos_rus,26,0.000058%,mvm,Man vs Machine
frontline_demo_compiled,26,0.000058%,frontline,Other
inactmap_v3,26,0.000058%,inactmap,Other
king_of_the_train_final,26,0.000058%,king,Other
cp_nox1,26,0.000058%,cp,Capture Point
zm_dustbowl,26,0.000058%,zm,Other
pl_auriferous_rc7,26,0.000058%,pl,Payload
ctf_transit_a2a,26,0.000058%,ctf,Capture the Flag
koth_switcheroo_b2,25,0.000056%,koth,King of the Hill
jump_sheer_final,25,0.000056%,jump,Other
tfdb_glassfloor_reflex,25,0.000056%,tfdb,Other
arena_arakawa_b3,25,0.000056%,arena,Other
mvm_decoy_final_mission,25,0.000056%,mvm,Man vs Machine
koth_zebunker_pheno_a9x,25,0.000056%,koth,King of the Hill
trade_shoppa_r2_rugc,25,0.000056%,trade,Trade and Achievement
mvm_decoy_endless_mayhem,25,0.000056%,mvm,Man vs Machine
dbs_redonkulous_b4,25,0.000056%,dbs,Other
mvm_bigrock_big_trouble_now,25,0.000056%,mvm,Man vs Machine
dm_02_alpha,25,0.000056%,dm,Deathmatch
sn_119snip,25,0.000056%,sn,Other
ctf_2fort_nopcb_skybox_test,25,0.000056%,ctf,Capture the Flag
arena_mochville_b4,25,0.000056%,arena,Other
tfdb_bm_sky_a1_gs,25,0.000056%,tfdb,Other
cp_sakura_hill_72c,25,0.000056%,cp,Capture Point
tr_bhop_b1,25,0.000056%,tr,Other
jump_illusion_rc2,25,0.000056%,jump,Other
arena_mocha_b2,25,0.000056%,arena,Other
preload_room,25,0.000056%,preload,Other
surf_plaguelands_beta7a,25,0.000056%,surf,Other
parque_aquaticoo,25,0.000056%,parque,Other
dr_castle_v3,25,0.000056%,dr,Other
ctf_2fort_snow,25,0.000056%,ctf,Capture the Flag
bonktropolis_event_2016,25,0.000056%,bonktropolis,Other
zs_dustbowl,25,0.000056%,zs,Other
pl_2fort,25,0.000056%,pl,Payload
dr_playstation_b18,25,0.000056%,dr,Other
mvm_testbed_v1_tank,25,0.000056%,mvm,Man vs Machine
vsh_sg_hl2_u2,25,0.000056%,vsh,Other
mvm_snowpine_a1,25,0.000056%,mvm,Man vs Machine
cp_reckoner_b2,25,0.000056%,cp,Capture Point
freestyle_egypt,25,0.000056%,freestyle,Other
cp_freeflow_b2,25,0.000056%,cp,Capture Point
mvm_decoy_combat,25,0.000056%,mvm,Man vs Machine
achievement_for_all_rus_v23a,25,0.000056%,achievement,Trade and Achievement
vsh_drylock_b2,25,0.000056%,vsh,Other
cp_turbine_b1,25,0.000056%,cp,Capture Point
jb_blackops_b5,25,0.000056%,jb,Other
koth_hall4,25,0.000056%,koth,King of the Hill
jump_getassisted_b1,25,0.000056%,jump,Other
koth_terrace_a8,25,0.000056%,koth,King of the Hill
tfdb_blender_is_op5,25,0.000056%,tfdb,Other
sniper_orange_ptp1_1,25,0.000056%,sniper,Other
vsh_dr_sunbaked_d,25,0.000056%,vsh,Other
sn_glasschete,25,0.000056%,sn,Other
tr_trackrun_a1,25,0.000056%,tr,Other
fw_desert_v5,25,0.000056%,fw,Other
mvm_sludge_event,25,0.000056%,mvm,Man vs Machine
mvm_mannworks_final_mission,25,0.000056%,mvm,Man vs Machine
jump_weekly_a2,25,0.000056%,jump,Other
mvm_tunnels_a5,25,0.000056%,mvm,Man vs Machine
surf_parrot_selector_njv,25,0.000056%,surf,Other
pl_jungling,25,0.000056%,pl,Payload
prototype_figbeach_v0,25,0.000056%,prototype,Other
vsh_fortfrolic_a3,25,0.000056%,vsh,Other
mvm_decoy_boss_battles,25,0.000056%,mvm,Man vs Machine
pl_precarious_a2,25,0.000056%,pl,Payload
mvm_ghost_town_spooks_easy,25,0.000056%,mvm,Man vs Machine
/cp_castle3,25,0.000056%,/cp,Other
cp_dustbowl_bots,25,0.000056%,cp,Capture Point
jump_pan,25,0.000056%,jump,Other
arena_hardhat_b2a,25,0.000056%,arena,Other
tfdb_majix,24,0.000054%,tfdb,Other
mvm_wasteland_beta1_cityundersi,24,0.000054%,mvm,Man vs Machine
mvm_hangtown_v1_3_normal,24,0.000054%,mvm,Man vs Machine
pl_champany_a5,24,0.000054%,pl,Payload
pl_shoreleave_a6,24,0.000054%,pl,Payload
surf_tilt2,24,0.000054%,surf,Other
de_dust_2,24,0.000054%,de,Other
cp_drag_rc1,24,0.000054%,cp,Capture Point
dbs_bowsers_revenge_b7,24,0.000054%,dbs,Other
tfdb_baseball_sv1,24,0.000054%,tfdb,Other
cp_toy_fort_fap_x,24,0.000054%,cp,Capture Point
trade_smsdelfinoplaza_a2,24,0.000054%,trade,Trade and Achievement
koth_terrace_a7a,24,0.000054%,koth,King of the Hill
tfdb_minecraft_sv_betatest2,24,0.000054%,tfdb,Other
mvm_decoy_click_advanced1,24,0.000054%,mvm,Man vs Machine
fw_qw_benghazi_v3,24,0.000054%,fw,Other
ph_spookyswitcheroo,24,0.000054%,ph,Other
cp_orange_sewers_12_t4s,24,0.000054%,cp,Capture Point
jump_illuminum,24,0.000054%,jump,Other
cp_toy_fort_tbr_v4,24,0.000054%,cp,Capture Point
zf_panic_apartment_b3,24,0.000054%,zf,Other
koth_mineshaft_a3,24,0.000054%,koth,King of the Hill
cp_diversion_b1,24,0.000054%,cp,Capture Point
jump_measurerific_v1,24,0.000054%,jump,Other
vsh_sewersystem,24,0.000054%,vsh,Other
koth_thing,24,0.000054%,koth,King of the Hill
nhbl_harpoongaming_superdome_sc,24,0.000054%,nhbl,Other
trade_minecraft_river_h108,24,0.000054%,trade,Trade and Achievement
koth_heartthrob_a2b,24,0.000054%,koth,King of the Hill
fw_ls_zombie1_v10,24,0.000054%,fw,Other
vsh_orange_fixby_livowolf_v2,24,0.000054%,vsh,Other
zm_lost_isle_v1,24,0.000054%,zm,Other
mvm_limburgh_final_bigrock_adva,24,0.000054%,mvm,Man vs Machine
koth_decoy_alpha3,24,0.000054%,koth,King of the Hill
mvm_rottenburg_survival,24,0.000054%,mvm,Man vs Machine
koth_mannwater_b2,24,0.000054%,koth,King of the Hill
mvm_derelict_rc2_expert,24,0.000054%,mvm,Man vs Machine
mvm_ventus_b6_fawosfix_mannwork,24,0.000054%,mvm,Man vs Machine
koth_karaokeroom_b2,24,0.000054%,koth,King of the Hill
mvm_decoy_phlogs,24,0.000054%,mvm,Man vs Machine
cp_ctf_arena_holiday_space_hote,24,0.000054%,cp,Capture Point
fw_crosspath_a3,24,0.000054%,fw,Other
cp_axle_rc1,24,0.000054%,cp,Capture Point
szf_4way_v12_jugfix,24,0.000054%,szf,Other
cp_2,24,0.000054%,cp,Capture Point
trade_forest_beta_v8_flood,24,0.000054%,trade,Trade and Achievement
koth_ccutown,24,0.000054%,koth,King of the Hill
mvm_mc_overdrive_ep3,24,0.000054%,mvm,Man vs Machine
cp_alamo,24,0.000054%,cp,Capture Point
ctf_2fort_classic_party_v4,24,0.000054%,ctf,Capture the Flag
snow_scene,24,0.000054%,snow,Other
sniperz_ridge2,24,0.000054%,sniperz,Other
vsh_kakariko_reach_cp_v1,24,0.000054%,vsh,Other
mvm_processingv1_br,24,0.000054%,mvm,Man vs Machine
jump_waves_final_fixed,24,0.000054%,jump,Other
koth_heartthrob_a2c,24,0.000054%,koth,King of the Hill
trade_silver_valley_c1,24,0.000054%,trade,Trade and Achievement
mvm_derelict_rc2_intermediate,24,0.000054%,mvm,Man vs Machine
ctf_transit_a2,24,0.000054%,ctf,Capture the Flag
mvm_mannworks_hardcore,24,0.000054%,mvm,Man vs Machine
jump_alinigt_beta,24,0.000054%,jump,Other
avanti_b1,24,0.000054%,avanti,Other
trade_funtimes,24,0.000054%,trade,Trade and Achievement
surf_stickybutt_njv,24,0.000054%,surf,Other
vsh_hp_mk_b10,24,0.000054%,vsh,Other
ctf_wildfire_rc,24,0.000054%,ctf,Capture the Flag
mvm_decoy_grind,24,0.000054%,mvm,Man vs Machine
ctf_bridgetoofar_a5,24,0.000054%,ctf,Capture the Flag
mvm_ghost_town_survival,24,0.000054%,mvm,Man vs Machine
tfkart_arena_rush_a1,24,0.000054%,tfkart,Other
dr_industry_a3,24,0.000054%,dr,Other
nin_saturnvalley,24,0.000054%,nin,Other
altvote_6,24,0.000054%,altvote,Other
sn_castlecanalsv2,24,0.000054%,sn,Other
vsh_pacman_v2,24,0.000054%,vsh,Other
pl_fsgunt2_a1,24,0.000054%,pl,Payload
sn_secret_bunker_b1,24,0.000054%,sn,Other
jump_pyro_stock,24,0.000054%,jump,Other
koth_occult_rc3,24,0.000054%,koth,King of the Hill
mvm_terrorcastle_lasthope_lasth,23,0.000052%,mvm,Man vs Machine
pl_deadwater_snow,23,0.000052%,pl,Payload
mvm_coaltown_cog_crusher,23,0.000052%,mvm,Man vs Machine
american_arms,23,0.000052%,american,Other
mvm_oilrig_rc3_normal,23,0.000052%,mvm,Man vs Machine
zm_indoor,23,0.000052%,zm,Other
furia_de_titans,23,0.000052%,furia,Other
pl_rumble_b6,23,0.000052%,pl,Payload
surf_slingshot,23,0.000052%,surf,Other
koth_drop_b3,23,0.000052%,koth,King of the Hill
trade_masscc_a9a,23,0.000052%,trade,Trade and Achievement
sn_huntingseason,23,0.000052%,sn,Other
trade_minecraft_anvils,23,0.000052%,trade,Trade and Achievement
mvm_overlord_b3_d-day,23,0.000052%,mvm,Man vs Machine
trade_marlion_voyager,23,0.000052%,trade,Trade and Achievement
mvm_bigrock_wrathofscout,23,0.000052%,mvm,Man vs Machine
ctf_trof2,23,0.000052%,ctf,Capture the Flag
mvm_coaltown_nightmarenight,23,0.000052%,mvm,Man vs Machine
mvm_2fort_b1_3_n,23,0.000052%,mvm,Man vs Machine
trade_unusual_govblock_r11,23,0.000052%,trade,Trade and Achievement
zm_store_v4b_dice,23,0.000052%,zm,Other
achievement_idle_ice_box,23,0.000052%,achievement,Trade and Achievement
ctf_2fort_classic_spring_v3,23,0.000052%,ctf,Capture the Flag
jump_academy_easypogo_rc2,23,0.000052%,jump,Other
jump_nsfw_rc1,23,0.000052%,jump,Other
jump_labrador_beta1k,23,0.000052%,jump,Other
dr_retrowave,23,0.000052%,dr,Other
surf_zealand_11,23,0.000052%,surf,Other
vsh_casbah,23,0.000052%,vsh,Other
cp_kuriast_tk,23,0.000052%,cp,Capture Point
mvm_decoy_short_circuit,23,0.000052%,mvm,Man vs Machine
dbs_gallifrey_b6,23,0.000052%,dbs,Other
cp_karelia_a5,23,0.000052%,cp,Capture Point
mvm_decoy_assaultp1,23,0.000052%,mvm,Man vs Machine
vsh_dr_running_v3,23,0.000052%,vsh,Other
ctf_bad_manors_a6,23,0.000052%,ctf,Capture the Flag
mvm_refinery_b1_normal,23,0.000052%,mvm,Man vs Machine
jump_propel,23,0.000052%,jump,Other
arena_platforms_v2,23,0.000052%,arena,Other
sniper_orange_110_d,23,0.000052%,sniper,Other
room2016_oxygen,23,0.000052%,room2016,Other
mvm_overlord_b3_decoy,23,0.000052%,mvm,Man vs Machine
dr_time_travel_b1,23,0.000052%,dr,Other
koth_slasher_rc1,23,0.000052%,koth,King of the Hill
pl_hightower_bots,23,0.000052%,pl,Payload
mvm_cargo_b4_advanced1,23,0.000052%,mvm,Man vs Machine
koth_icebox_b1,23,0.000052%,koth,King of the Hill
surf_nemesis,23,0.000052%,surf,Other
cp_battletal_b1_event,23,0.000052%,cp,Capture Point
cp_egotraining,23,0.000052%,cp,Capture Point
vsh_dr_dungeon_beta,23,0.000052%,vsh,Other
mvm_highrise_mannhattan_advance,23,0.000052%,mvm,Man vs Machine
ctf_rift_rc3,23,0.000052%,ctf,Capture the Flag
slender_overture_a1_demonhamste,23,0.000052%,slender,Other
koth_namicott_rc4,23,0.000052%,koth,King of the Hill
harry_potter_ordem_da_fenix,23,0.000052%,harry,Other
bhop_dream2_test1,23,0.000052%,bhop,Other
dr_castle_steveh_2c_gsn,23,0.000052%,dr,Other
cp_cheesefire,23,0.000052%,cp,Capture Point
de_dust2_night,23,0.000052%,de,Other
ctf_ballin_taylor_swift,23,0.000052%,ctf,Capture the Flag
mvm_overlord_b3_slaughterhouse,23,0.000052%,mvm,Man vs Machine
surf_shady,23,0.000052%,surf,Other
cs_militia,23,0.000052%,cs,Other
de_cbble,23,0.000052%,de,Other
mvm_ghost_town_urist_easy,23,0.000052%,mvm,Man vs Machine
mvm_adventure_of_30wave_ep3_har,23,0.000052%,mvm,Man vs Machine
trade_kfbd_unholyhaven_finalv2,23,0.000052%,trade,Trade and Achievement
vsh_christmas_day_b4,23,0.000052%,vsh,Other
sniper_medievalfort,23,0.000052%,sniper,Other
ctf_minecraft_b5_skyfix_v1_a1,23,0.000052%,ctf,Capture the Flag
mvm_mannhattan_death,23,0.000052%,mvm,Man vs Machine
mvm_underground_rc3_n,23,0.000052%,mvm,Man vs Machine
cp_takeback_mountain,23,0.000052%,cp,Capture Point
mvm_decoy_30_waves_extra,23,0.000052%,mvm,Man vs Machine
mvm_mannhattan_pistol_expert1,23,0.000052%,mvm,Man vs Machine
mvm_warehouse_v1_normal,23,0.000052%,mvm,Man vs Machine
tf2_bhop,22,0.000049%,tf2,Other
2_map_koth,22,0.000049%,2,Other
mvm_hillside_v7_waves_of_evil,22,0.000049%,mvm,Man vs Machine
dm_ultrafux_v2,22,0.000049%,dm,Deathmatch
mvm_decoy_advanced3_final_missi,22,0.000049%,mvm,Man vs Machine
ctf_drainpump_a2,22,0.000049%,ctf,Capture the Flag
cp_process_rc2,22,0.000049%,cp,Capture Point
jump_hobo2,22,0.000049%,jump,Other
mvm_bigrock_giazy,22,0.000049%,mvm,Man vs Machine
dm_eientei_v4,22,0.000049%,dm,Deathmatch
koth_dogenzaka_vi,22,0.000049%,koth,King of the Hill
jump_rope_a3,22,0.000049%,jump,Other
tfdb_partyisland_v1,22,0.000049%,tfdb,Other
coop_finaldestination_2015_t,22,0.000049%,coop,Other
jump_collab_voting,22,0.000049%,jump,Other
jump_beau_a1,22,0.000049%,jump,Other
ctf_420_arena_v1,22,0.000049%,ctf,Capture the Flag
ss_fort2_a3,22,0.000049%,ss,Other
pl_crag_event_d,22,0.000049%,pl,Payload
cp_reckoner_b3_tk,22,0.000049%,cp,Capture Point
koth_harvest_minecraft_h2,22,0.000049%,koth,King of the Hill
koth_desertoasis_wip8,22,0.000049%,koth,King of the Hill
mvm_manncohq_v3_robocalypse_exp,22,0.000049%,mvm,Man vs Machine
pkmn_ecruteakcity_v3,22,0.000049%,pkmn,Other
de_piranesi,22,0.000049%,de,Other
mvm_decoy_peroduakancil,22,0.000049%,mvm,Man vs Machine
sn_snipr_nsa,22,0.000049%,sn,Other
mvm_meltdown_rc4_normal,22,0.000049%,mvm,Man vs Machine
jump_style_b2,22,0.000049%,jump,Other
pf_space,22,0.000049%,pf,Other
mvm_sniparadise_v3_uu99_test,22,0.000049%,mvm,Man vs Machine
mvm_oilrig_rc5_intermediate,22,0.000049%,mvm,Man vs Machine
dr_delay_b3_vidya_custom_v1,22,0.000049%,dr,Other
koth_demobowl_b5,22,0.000049%,koth,King of the Hill
vsh_dr_dlux_nightfall_v2,22,0.000049%,vsh,Other
surf_dusk,22,0.000049%,surf,Other
trade_clocktown_b2b,22,0.000049%,trade,Trade and Achievement
ctf_battle_creek_pro,22,0.000049%,ctf,Capture the Flag
surf_fury_v6,22,0.000049%,surf,Other
surf_ny_momentum_v5,22,0.000049%,surf,Other
jump_pre_me,22,0.000049%,jump,Other
rickler_engineer_jump_a3,22,0.000049%,rickler,Other
pl_switchover,22,0.000049%,pl,Payload
surf_cookiejar,22,0.000049%,surf,Other
mvm_ghost_town_weak_tanks,22,0.000049%,mvm,Man vs Machine
slender_mewni_b1,22,0.000049%,slender,Other
cp_gravelpit_event,22,0.000049%,cp,Capture Point
ba_jail_snowday_otaku,22,0.000049%,ba,Other
dr_minecraftworld_b4e_gsn,22,0.000049%,dr,Other
mvm_atomgrad_rc5,22,0.000049%,mvm,Man vs Machine
surf_sippysip,22,0.000049%,surf,Other
koth_trenchworks,22,0.000049%,koth,King of the Hill
arena_canyon_b1,22,0.000049%,arena,Other
vincent_dargis_tf2,22,0.000049%,vincent,Other
achievement_all_v4_rhino,22,0.000049%,achievement,Trade and Achievement
zf_fortified,22,0.000049%,zf,Other
mvm_mannworks_30wave_bossonly_v,22,0.000049%,mvm,Man vs Machine
trade_yuuka_vs_aya_v1_tk,22,0.000049%,trade,Trade and Achievement
cp_bigcity_1,21,0.000047%,cp,Capture Point
achievement_higher_campus_v2,21,0.000047%,achievement,Trade and Achievement
jump_artificial,21,0.000047%,jump,Other
cp_minigames_test12,21,0.000047%,cp,Capture Point
tfdb_rockettoss_slag_a2_gs,21,0.000047%,tfdb,Other
mvm_test_test,21,0.000047%,mvm,Man vs Machine
tfdb_pit_a2_gs,21,0.000047%,tfdb,Other
crab_goodwater,21,0.000047%,crab,Other
senior_scrap_003,21,0.000047%,senior,Other
dm_quake_castle_b2,21,0.000047%,dm,Deathmatch
senior_scrap_005,21,0.000047%,senior,Other
mvm_mannhattan_click_expert1,21,0.000047%,mvm,Man vs Machine
mvm_decoy_dry,21,0.000047%,mvm,Man vs Machine
surf_minuet_v1p_nomusic,21,0.000047%,surf,Other
ctf_turbine_expanded,21,0.000047%,ctf,Capture the Flag
surf_euphoria_fix,21,0.000047%,surf,Other
mvm_rottenburg_gray,21,0.000047%,mvm,Man vs Machine
vsh_chambers_v1,21,0.000047%,vsh,Other
jump_noskillrequired_b2,21,0.000047%,jump,Other
jump_zetsubou_v2,21,0.000047%,jump,Other
ctf_botmvm_b2,21,0.000047%,ctf,Capture the Flag
cp_off,21,0.000047%,cp,Capture Point
mvm_badwater_final_advanced,21,0.000047%,mvm,Man vs Machine
cp_dogenzaka_vi_stairs,21,0.000047%,cp,Capture Point
pl_dbl_b,21,0.000047%,pl,Payload
awp_lego_ultras,21,0.000047%,awp,Other
mvm_wartorn_dahnoobqueen_cosmo,21,0.000047%,mvm,Man vs Machine
koth_lego2k,21,0.000047%,koth,King of the Hill
strange_level_warehouse,21,0.000047%,strange,Other
cp_orange_cubes_vs2,21,0.000047%,cp,Capture Point
koth_farland_v1b,21,0.000047%,koth,King of the Hill
rj_rckteer_adv,21,0.000047%,rj,Other
rp_mallv2,21,0.000047%,rp,Other
pl_barnblitz_pro,21,0.000047%,pl,Payload
mvm_tunnels_a7,21,0.000047%,mvm,Man vs Machine
ph_academy_v1b,21,0.000047%,ph,Other
koth_artefact_v1,21,0.000047%,koth,King of the Hill
koth_lego_twse2,21,0.000047%,koth,King of the Hill
rickler_scout_jump_a1,21,0.000047%,rickler,Other
ultiduo_gladiator_r14,21,0.000047%,ultiduo,Other
koth_arena_reloaded,21,0.000047%,koth,King of the Hill
pl_millstone_b1,21,0.000047%,pl,Payload
surf_primero,21,0.000047%,surf,Other
arena_box_alpha,21,0.000047%,arena,Other
zf_badwater_gov_v2,21,0.000047%,zf,Other
surf_interceptor,21,0.000047%,surf,Other
cp_ravenholm,21,0.000047%,cp,Capture Point
vsh_ram_shacked_lz,21,0.000047%,vsh,Other
pl_p1_zedul,21,0.000047%,pl,Payload
cp_highground_b7,21,0.000047%,cp,Capture Point
jump_ballin_a1,21,0.000047%,jump,Other
vsh_twinfalls,21,0.000047%,vsh,Other
dr_bearush_a3_fix,21,0.000047%,dr,Other
fw_koth_whitespace_proto3,21,0.000047%,fw,Other
trade_plaza_4_xy_v2_2,21,0.000047%,trade,Trade and Achievement
mvm_rottenburg_tank_madness,21,0.000047%,mvm,Man vs Machine
pl_wardays,21,0.000047%,pl,Payload
mvm_mannworks_special_malevolen,21,0.000047%,mvm,Man vs Machine
jump_legion_beta2,21,0.000047%,jump,Other
balloon_race_v3_t15,21,0.000047%,balloon,Other
dm_longest_yard,21,0.000047%,dm,Deathmatch
jump_fastnfar,21,0.000047%,jump,Other
sn_frogfortsniper_c,21,0.000047%,sn,Other
ctf_2fort_spooky_works,21,0.000047%,ctf,Capture the Flag
mvm_ma_ep16b_1_hard,21,0.000047%,mvm,Man vs Machine
tfdb_baseball_a3,21,0.000047%,tfdb,Other
lucky_trade_7,21,0.000047%,lucky,Other
ultiduo_dan_b6,21,0.000047%,ultiduo,Other
vsh_killbox_lego_hk_2014,21,0.000047%,vsh,Other
ctf_2fort_frostyv47,21,0.000047%,ctf,Capture the Flag
dr_sonic_tf2,21,0.000047%,dr,Other
jump_jurf_a1,21,0.000047%,jump,Other
mvm_storage_a2_badwater,21,0.000047%,mvm,Man vs Machine
celine_carnaval,21,0.000047%,celine,Other
arena_hydroelectric_a8,21,0.000047%,arena,Other
mvm_rottenburg_5_wave_bosses,21,0.000047%,mvm,Man vs Machine
cp_lazytown_nitetime,21,0.000047%,cp,Capture Point
psf_city_trainstationtt_v7,20,0.000045%,psf,Other
mvm_ironworks_b14,20,0.000045%,mvm,Man vs Machine
cp_salty_a1b,20,0.000045%,cp,Capture Point
dr_industrial_v2b_gsn,20,0.000045%,dr,Other
vsh_low_8bit_v9,20,0.000045%,vsh,Other
jump_blackout,20,0.000045%,jump,Other
cp_afterdusk_b2,20,0.000045%,cp,Capture Point
mvm_manncohq_v3_mechanic_metrop,20,0.000045%,mvm,Man vs Machine
fw_ex_belgium_v1,20,0.000045%,fw,Other
orange_x3_tdl_m4,20,0.000045%,orange,Other
koth_deathcliff_event,20,0.000045%,koth,King of the Hill
trade_schoolarfund_2,20,0.000045%,trade,Trade and Achievement
pl_hemlock_b6,20,0.000045%,pl,Payload
tfdb_ghettocourt_betatest4,20,0.000045%,tfdb,Other
dr_bank_v1,20,0.000045%,dr,Other
/ctf_vector_v1,20,0.000045%,/ctf,Other
mvm_crash_landing,20,0.000045%,mvm,Man vs Machine
mann_of_horror_03_d,20,0.000045%,mann,Other
tfdb_ringz_intox,20,0.000045%,tfdb,Other
trade_strybo,20,0.000045%,trade,Trade and Achievement
cp_orange_gamerland_v4,20,0.000045%,cp,Capture Point
dr_wintervalley_beta3,20,0.000045%,dr,Other
cp_megapolis,20,0.000045%,cp,Capture Point
mvm_bigrock_unknownboss,20,0.000045%,mvm,Man vs Machine
koth_annex_3_test5_a5_edited,20,0.000045%,koth,King of the Hill
vsh_dam-it,20,0.000045%,vsh,Other
mvm_overlord_b3_mannhattan,20,0.000045%,mvm,Man vs Machine
vsh_pyramidtime_custom,20,0.000045%,vsh,Other
cp_phantasmagoria_v1,20,0.000045%,cp,Capture Point
arena_random_islands_a1,20,0.000045%,arena,Other
koth_cratefactory_v2,20,0.000045%,koth,King of the Hill
trade_plaza_lord_b10_night,20,0.000045%,trade,Trade and Achievement
mvm_coaltown_endless_blu_normca,20,0.000045%,mvm,Man vs Machine
ctf_ballin_shark,20,0.000045%,ctf,Capture the Flag
mvm_bigrock_collapsemp,20,0.000045%,mvm,Man vs Machine
mvm_thedust_b3_ghost_town,20,0.000045%,mvm,Man vs Machine
mvm_cargo_b4_ee,20,0.000045%,mvm,Man vs Machine
fw_rbo_cfp_cube_bz,20,0.000045%,fw,Other
tfdb_cowlevel_b4,20,0.000045%,tfdb,Other
jump_back,20,0.000045%,jump,Other
mvm_bigrock_uu99_bosses,20,0.000045%,mvm,Man vs Machine
cp_overgrown_b5c,20,0.000045%,cp,Capture Point
mvm_on_titan,20,0.000045%,mvm,Man vs Machine
mvm_mannworks_megabosses,20,0.000045%,mvm,Man vs Machine
koth_cyberpunk_b2_15,20,0.000045%,koth,King of the Hill
mvm_waterbridge_preview,20,0.000045%,mvm,Man vs Machine
call_of_duty_4,20,0.000045%,call,Other
slender_steel_b4_demonhamster,20,0.000045%,slender,Other
mvm_area_52_rc3_n,20,0.000045%,mvm,Man vs Machine
map_tf2,20,0.000045%,map,Other
trade_cherrys_shitty_map,20,0.000045%,trade,Trade and Achievement
surf_prolix,20,0.000045%,surf,Other
slender_unease,20,0.000045%,slender,Other
koth_lava_hill,20,0.000045%,koth,King of the Hill
ctf_moonman_a3p2_tk,20,0.000045%,ctf,Capture the Flag
koth_rtd,20,0.000045%,koth,King of the Hill
cp_tidal_v4_wb,20,0.000045%,cp,Capture Point
surf_classics2_rc1,20,0.000045%,surf,Other
mvm_mannhattan_wing_expert1,20,0.000045%,mvm,Man vs Machine
trade_carnival_r1,20,0.000045%,trade,Trade and Achievement
achievement_tommy_theta13,20,0.000045%,achievement,Trade and Achievement
koth_hardrock_rc,20,0.000045%,koth,King of the Hill
sn_lv3_jachinvsboas,20,0.000045%,sn,Other
mvm_hydro_a3_mannworks,20,0.000045%,mvm,Man vs Machine
mvm_hydro_a3_coaltown,20,0.000045%,mvm,Man vs Machine
ctf_theskatingrink_fixed,20,0.000045%,ctf,Capture the Flag
achievement_idle_slides_wtfv2b,20,0.000045%,achievement,Trade and Achievement
sn_csl_match_b3,20,0.000045%,sn,Other
de_inferno,20,0.000045%,de,Other
koth_waterfront_a1c_21,20,0.000045%,koth,King of the Hill
dr_sunbaked_v4,20,0.000045%,dr,Other
trade_hyrule_oot3d_alpha_13a_tk,20,0.000045%,trade,Trade and Achievement
cp_piratelife_b5b,20,0.000045%,cp,Capture Point
surf_skill8_h,20,0.000045%,surf,Other
mvm_mannworks_30wave_v60_lvl3,20,0.000045%,mvm,Man vs Machine
koth_lockdown_v2,19,0.000043%,koth,King of the Hill
vsh_shmase,19,0.000043%,vsh,Other
cp_orange_50f_tower_v6_mvm,19,0.000043%,cp,Capture Point
slender_fearscape_b1,19,0.000043%,slender,Other
senior_scrap_006,19,0.000043%,senior,Other
ctf_casbah,19,0.000043%,ctf,Capture the Flag
fun_ramon_rc2,19,0.000043%,fun,Other
vsh_high_remake_v5fix,19,0.000043%,vsh,Other
tfdb_orbit-v10_gs,19,0.000043%,tfdb,Other
jump_leicht_v1,19,0.000043%,jump,Other
vsh_aquaticruin,19,0.000043%,vsh,Other
tfdb_trainfalls_v3_gs,19,0.000043%,tfdb,Other
attribute_test,19,0.000043%,attribute,Other
dr_orange_v7,19,0.000043%,dr,Other
tfdb_vfloat_test4,19,0.000043%,tfdb,Other
koth_beach_resort,19,0.000043%,koth,King of the Hill
mvm_coaltown_singleplayer,19,0.000043%,mvm,Man vs Machine
trade_manncomeme,19,0.000043%,trade,Trade and Achievement
koth_trainsawlaser_pro_rc1,19,0.000043%,koth,King of the Hill
mvm_ghost_town_ponies2,19,0.000043%,mvm,Man vs Machine
vsh_skyhigh_resort_b5_reachhl2,19,0.000043%,vsh,Other
cp_green_critfest_v2,19,0.000043%,cp,Capture Point
mvm_mannworks_30wave_v46_s,19,0.000043%,mvm,Man vs Machine
mvm_badwater_final_uu99_test,19,0.000043%,mvm,Man vs Machine
ctf_turbine2_a5,19,0.000043%,ctf,Capture the Flag
tfdb_lob_volcano,19,0.000043%,tfdb,Other
mvm_normandy_ghost_town,19,0.000043%,mvm,Man vs Machine
vsh_dr_pool_party_finale,19,0.000043%,vsh,Other
mvm_coaltown_final_mission,19,0.000043%,mvm,Man vs Machine
airshot_tommy_beta5_fix3,19,0.000043%,airshot,Other
murderball_spincycle,19,0.000043%,murderball,Other
mvm_survivor_ep1,19,0.000043%,mvm,Man vs Machine
vsh_spire,19,0.000043%,vsh,Other
dbs_relentlessnukes_b2a,19,0.000043%,dbs,Other
fw_penetration_v1a4,19,0.000043%,fw,Other
mvm_storage_a2_badwater_advance,19,0.000043%,mvm,Man vs Machine
koth_wfr_01_07,19,0.000043%,koth,King of the Hill
koth_sierra_t9,19,0.000043%,koth,King of the Hill
ze_r60d_final_x,19,0.000043%,ze,Other
surf_tronic_njv,19,0.000043%,surf,Other
koth_larryboxing,19,0.000043%,koth,King of the Hill
dbs_cowlevel_b4,19,0.000043%,dbs,Other
cp_drudgery_b1_fixa,19,0.000043%,cp,Capture Point
mvm_coaltown_survival_objective,19,0.000043%,mvm,Man vs Machine
tfdb_octagon_sv_betatest2,19,0.000043%,tfdb,Other
jump_tf2rj_a4c,19,0.000043%,jump,Other
surf_taq,19,0.000043%,surf,Other
tr_medic_spawn,19,0.000043%,tr,Other
mvm_coaltown_corrupted_calamity,19,0.000043%,mvm,Man vs Machine
jump_hyper,19,0.000043%,jump,Other
dbs_stackednukes_b6b,19,0.000043%,dbs,Other
rtd_madness_v20_event,19,0.000043%,rtd,Other
trade_forest_beta_v8_upsidedown,19,0.000043%,trade,Trade and Achievement
dr_r60d_final_dh,19,0.000043%,dr,Other
achievement_tinyhuge-h24,19,0.000043%,achievement,Trade and Achievement
lavender_town,19,0.000043%,lavender,Other
cp_brickbase,19,0.000043%,cp,Capture Point
sn_arstotzka,19,0.000043%,sn,Other
ctf_aerial_b14_c2,19,0.000043%,ctf,Capture the Flag
vsh_blueberries_lz_b2a,19,0.000043%,vsh,Other
surf_mysteryparadise_course,19,0.000043%,surf,Other
fw_buka_b3,19,0.000043%,fw,Other
pl_strider_v1,19,0.000043%,pl,Payload
bfb_museum,19,0.000043%,bfb,Other
mvm_mannworks_eater,19,0.000043%,mvm,Man vs Machine
cp_graygravel_b2,19,0.000043%,cp,Capture Point
surf_tf_japan_v1_b3,19,0.000043%,surf,Other
cp_orange_gamerland_v5_b1,19,0.000043%,cp,Capture Point
koth_tenebase_v2,19,0.000043%,koth,King of the Hill
koth_dogenzaka_v,19,0.000043%,koth,King of the Hill
dm_market_b2,19,0.000043%,dm,Deathmatch
jump_shimano_final,19,0.000043%,jump,Other
background_owngame,19,0.000043%,background,Other
mario_kart2_ig8_tk,19,0.000043%,mario,Other
ultiduo_sacred_b1c,19,0.000043%,ultiduo,Other
cp_dogenzaka_iv_rocks,19,0.000043%,cp,Capture Point
koth_traingrid_b2_tk,19,0.000043%,koth,King of the Hill
tfdb_skyfort_v2,19,0.000043%,tfdb,Other
koth_flood_tk,19,0.000043%,koth,King of the Hill
cp_station_b1,19,0.000043%,cp,Capture Point
cp_dryseas,19,0.000043%,cp,Capture Point
pl_cottage_b4,19,0.000043%,pl,Payload
koth_slasher_b1,19,0.000043%,koth,King of the Hill
fw_cs_office_v4,19,0.000043%,fw,Other
jump_runqqulainenlautamoinen_b7,19,0.000043%,jump,Other
achievement_idle_dark,19,0.000043%,achievement,Trade and Achievement
vsh_villa_rosa_v4,19,0.000043%,vsh,Other
tr_target_weaponref,19,0.000043%,tr,Other
arena_steeple_a2,19,0.000043%,arena,Other
zf_snowfort_v2,19,0.000043%,zf,Other
cp_bloodcrystal_event,19,0.000043%,cp,Capture Point
trade_plaza_stoph_b3,19,0.000043%,trade,Trade and Achievement
mvm_giza_b6_intermediate1,19,0.000043%,mvm,Man vs Machine
surf_insideout_final,19,0.000043%,surf,Other
vsh_temple_goldeneye_a1,19,0.000043%,vsh,Other
mvm_overlord_b3_mannhattan_adva,19,0.000043%,mvm,Man vs Machine
mvm_coaltown_ironman,19,0.000043%,mvm,Man vs Machine
sd_doomsday_event_nopcb,19,0.000043%,sd,Other
surf_edge,19,0.000043%,surf,Other
mvm_diverge_b4_normal,19,0.000043%,mvm,Man vs Machine
sn_masstech,19,0.000043%,sn,Other
mvm_coaltown_christmas_attack,19,0.000043%,mvm,Man vs Machine
slender_two_fort_b1_waitingroom,18,0.000040%,slender,Other
trade_dreamland_v0e,18,0.000040%,trade,Trade and Achievement
cp_filtered,18,0.000040%,cp,Capture Point
trade_vaporwave_v1,18,0.000040%,trade,Trade and Achievement
jump_ayers_final,18,0.000040%,jump,Other
greenscreen_v1,18,0.000040%,greenscreen,Other
cp_orange_minecraft,18,0.000040%,cp,Capture Point
fw_medieval_classic2_v3,18,0.000040%,fw,Other
arena_annex_b1,18,0.000040%,arena,Other
mvm_museum_a9_2011,18,0.000040%,mvm,Man vs Machine
koth_foolsgrid,18,0.000040%,koth,King of the Hill
mvm_steelmill_a1,18,0.000040%,mvm,Man vs Machine
koth_portal_colosseum,18,0.000040%,koth,King of the Hill
cliffside_final,18,0.000040%,cliffside,Other
mvm_mannworks_30wave_v46_h,18,0.000040%,mvm,Man vs Machine
vsh_swampbridge_a3,18,0.000040%,vsh,Other
ge_casino,18,0.000040%,ge,Other
mvm_ventus_b6_fawosfix_decoy,18,0.000040%,mvm,Man vs Machine
koth_turbine_b2,18,0.000040%,koth,King of the Hill
tr_target,18,0.000040%,tr,Other
jump_blueberry_b1,18,0.000040%,jump,Other
achievement_idle_awesomebox50,18,0.000040%,achievement,Trade and Achievement
mvm_decoy_mass_massacre,18,0.000040%,mvm,Man vs Machine
cp_egyptian_temple,18,0.000040%,cp,Capture Point
mvm_giza_b7_advanced2,18,0.000040%,mvm,Man vs Machine
007_james_bond_temple,18,0.000040%,007,Other
vsh_killbox_final_tf2_xmas_v3,18,0.000040%,vsh,Other
achievement_idle_skbox_v4,18,0.000040%,achievement,Trade and Achievement
koth_mineland_r4,18,0.000040%,koth,King of the Hill
dbs_cagematch_b4,18,0.000040%,dbs,Other
dr_egypt_v2,18,0.000040%,dr,Other
mvm_ghost_town_mini666,18,0.000040%,mvm,Man vs Machine
maze_arena_(build_20),18,0.000040%,maze,Other
dr_challenging_v0_reallyfixed,18,0.000040%,dr,Other
surf_placid,18,0.000040%,surf,Other
mvm_hailtotheking_delta,18,0.000040%,mvm,Man vs Machine
jujump_zirco_b1,18,0.000040%,jujump,Other
ctf_blizzard,18,0.000040%,ctf,Capture the Flag
dm_installation_04_pak,18,0.000040%,dm,Deathmatch
mvm_isolation_rc3_click_advance,18,0.000040%,mvm,Man vs Machine
ctf_haunt_b2,18,0.000040%,ctf,Capture the Flag
koth_af,18,0.000040%,koth,King of the Hill
dom_canalzone,18,0.000040%,dom,Other
vsh_confusedlettuce_a001,18,0.000040%,vsh,Other
ctf_minecraft_b13b_fix1,18,0.000040%,ctf,Capture the Flag
mvm_coaltowncustom,18,0.000040%,mvm,Man vs Machine
mvm_manncohq_v3_operation_mecha,18,0.000040%,mvm,Man vs Machine
sv_nacht_der_untoten_r,18,0.000040%,sv,Other
cp_vanguard_rc3,18,0.000040%,cp,Capture Point
tfkart_ngineer_labs_b2,18,0.000040%,tfkart,Other
mvm_mannhattan_single_player,18,0.000040%,mvm,Man vs Machine
mvm_ventus_b6_intermediate2,18,0.000040%,mvm,Man vs Machine
fw_3level_v2,18,0.000040%,fw,Other
cp_orange_x5_shark_beta_v1,18,0.000040%,cp,Capture Point
cp_tower,18,0.000040%,cp,Capture Point
jump_toxic_v3,18,0.000040%,jump,Other
koth_kittens_final1_rc1_b1_a1,18,0.000040%,koth,King of the Hill
mvm_manncohq_v3_wing_expert1,18,0.000040%,mvm,Man vs Machine
cp_twotower_v1,18,0.000040%,cp,Capture Point
surf_pathfinder,18,0.000040%,surf,Other
dr_cliffside_b41_d,18,0.000040%,dr,Other
gm10_floodinvasion_rus,18,0.000040%,gm10,Other
dm_snowmassacre,18,0.000040%,dm,Deathmatch
vsh_madcap,18,0.000040%,vsh,Other
jump_dmkn,18,0.000040%,jump,Other
surf_exogenesis,18,0.000040%,surf,Other
arena_coldvine_b1,18,0.000040%,arena,Other
vsh_moria_v6,18,0.000040%,vsh,Other
moveout_test20,18,0.000040%,moveout,Other
mvm_winter_b5_decoy,18,0.000040%,mvm,Man vs Machine
mvm_storage_a2_bigrock,18,0.000040%,mvm,Man vs Machine
koth_aperture_science_iii,18,0.000040%,koth,King of the Hill
arena_radwater_b1,18,0.000040%,arena,Other
cp_ubuptestmap,18,0.000040%,cp,Capture Point
koth_turning_test_a1,18,0.000040%,koth,King of the Hill
koth_rainbow_b2,18,0.000040%,koth,King of the Hill
vsh_dr_psykopat,18,0.000040%,vsh,Other
mvm_mannhattan_survival,18,0.000040%,mvm,Man vs Machine
ctf_collisionroutev1f,18,0.000040%,ctf,Capture the Flag
simple_final,18,0.000040%,simple,Other
fw_vapour_2,18,0.000040%,fw,Other
surf_sentient,18,0.000040%,surf,Other
trade_revamp_03,18,0.000040%,trade,Trade and Achievement
ctf_avantown,18,0.000040%,ctf,Capture the Flag
surf_symbiosis,18,0.000040%,surf,Other
jb_uhadi_alpha1,18,0.000040%,jb,Other
ctf_2fort_nopcb,17,0.000038%,ctf,Capture the Flag
koth_derrick_a003,17,0.000038%,koth,King of the Hill
tfdb_baseball_a4_gs,17,0.000038%,tfdb,Other
jump_evont_b1,17,0.000038%,jump,Other
koth_spacev2,17,0.000038%,koth,King of the Hill
mvm_testbed_v1_medic,17,0.000038%,mvm,Man vs Machine
sn_2fort_kelly_tribute,17,0.000038%,sn,Other
tr_granary_final,17,0.000038%,tr,Other
jump_hugebutt_b3,17,0.000038%,jump,Other
tr_highlander_shortcuts,17,0.000038%,tr,Other
jump_unclesam,17,0.000038%,jump,Other
jump_academy2_toth_rc6,17,0.000038%,jump,Other
pl_strider_v3,17,0.000038%,pl,Payload
jump_location_a1,17,0.000038%,jump,Other
mvm_decoy_massacre,17,0.000038%,mvm,Man vs Machine
tr_jump_academy_beta3_v1,17,0.000038%,tr,Other
jump_scout_fixed,17,0.000038%,jump,Other
cp_prolane,17,0.000038%,cp,Capture Point
ach_figjourney_v41_xmas,17,0.000038%,ach,Other
die_siedler_4_test8,17,0.000038%,die,Other
surf_10x_redone_rv7,17,0.000038%,surf,Other
koth_megaman6_b5_tk,17,0.000038%,koth,King of the Hill
trade_casual,17,0.000038%,trade,Trade and Achievement
bbg_trade_plaza_day25,17,0.000038%,bbg,Other
cp_toy_fort_beta2,17,0.000038%,cp,Capture Point
hidden_snowdime_b1c,17,0.000038%,hidden,Other
zf_lake_xmas,17,0.000038%,zf,Other
mvm_band_corner_alpha,17,0.000038%,mvm,Man vs Machine
mvm_coaltown_30wave_v25_ep2,17,0.000038%,mvm,Man vs Machine
mvm_mannhattan_oblivion,17,0.000038%,mvm,Man vs Machine
ctf_sky_giant_v1,17,0.000038%,ctf,Capture the Flag
jump_sunshine_1523562016,17,0.000038%,jump,Other
jump_mohr_rc5,17,0.000038%,jump,Other
mvm_hydro_a3_bigrock,17,0.000038%,mvm,Man vs Machine
pl_2fort_pricev4final,17,0.000038%,pl,Payload
mvm_ma_ep12_1_easy,17,0.000038%,mvm,Man vs Machine
coop_negawisp_t,17,0.000038%,coop,Other
tfdb_partyisland_v3_gs,17,0.000038%,tfdb,Other
jump_ancient_beta1,17,0.000038%,jump,Other
trade_skyte_a3,17,0.000038%,trade,Trade and Achievement
mvm_ma_ep12b2_1_easy,17,0.000038%,mvm,Man vs Machine
jump_when_b3,17,0.000038%,jump,Other
slender_troubled_a1_demonhamste,17,0.000038%,slender,Other
mvm_corridors_beta15original,17,0.000038%,mvm,Man vs Machine
pl_inari_b3,17,0.000038%,pl,Payload
pl_badwater_bots,17,0.000038%,pl,Payload
mvm_coaltown_cash_backup,17,0.000038%,mvm,Man vs Machine
mvm_bigrock_impossible1,17,0.000038%,mvm,Man vs Machine
ctf_bball_stadium_a3,17,0.000038%,ctf,Capture the Flag
ctf_vikings_final_v7,17,0.000038%,ctf,Capture the Flag
vsh_stacker,17,0.000038%,vsh,Other
koth_war-house_a5,17,0.000038%,koth,King of the Hill
dbs_horizon,17,0.000038%,dbs,Other
mvm_mannworks_surge,17,0.000038%,mvm,Man vs Machine
mvm_processingv1_advanced3_dc,17,0.000038%,mvm,Man vs Machine
ph_farm_a2,17,0.000038%,ph,Other
fw_ex_africa_v2,17,0.000038%,fw,Other
jump_aura_b3,17,0.000038%,jump,Other
jump_emulation_alpha,17,0.000038%,jump,Other
tfdb_air_test,17,0.000038%,tfdb,Other
hidden_sandbox_v7,17,0.000038%,hidden,Other
mvm_bigrock_advanced3,17,0.000038%,mvm,Man vs Machine
mvm_mannworks_cheif_challenger,17,0.000038%,mvm,Man vs Machine
tr_bot_a1,17,0.000038%,tr,Other
trade_plaza_invert_v34,17,0.000038%,trade,Trade and Achievement
arena_boofort,17,0.000038%,arena,Other
mvm_storage_a2_coaltown_advance,17,0.000038%,mvm,Man vs Machine
achievement_idlefight_minecraft,17,0.000038%,achievement,Trade and Achievement
mvm_wizardry_advanced,17,0.000038%,mvm,Man vs Machine
koth_suijin_wb,17,0.000038%,koth,King of the Hill
dbs_pacman_a1,17,0.000038%,dbs,Other
tr_rocket_shooting2_tlr,17,0.000038%,tr,Other
mvm_bigrock_engietd_limitedbust,17,0.000038%,mvm,Man vs Machine
trade_edventures_v2,17,0.000038%,trade,Trade and Achievement
mvm_snowpine_a1_advanced1,17,0.000038%,mvm,Man vs Machine
mvm_ma_ep9_1_hard,17,0.000038%,mvm,Man vs Machine
trade_magic,17,0.000038%,trade,Trade and Achievement
pl_frontier_final_bots,17,0.000038%,pl,Payload
koth_piston_b2,17,0.000038%,koth,King of the Hill
mvm_popfile_2,17,0.000038%,mvm,Man vs Machine
tfdbr_toolsheds_b1,17,0.000038%,tfdbr,Other
tfdb_desert_sv1,17,0.000038%,tfdb,Other
mvm_wharf_s12_normal,17,0.000038%,mvm,Man vs Machine
mvm_underground_allan,17,0.000038%,mvm,Man vs Machine
mvm_overlord_b3_rottenburg_adva,17,0.000038%,mvm,Man vs Machine
arena_lockdown_v1,17,0.000038%,arena,Other
arena_foggy_crest_b3fix2,17,0.000038%,arena,Other
mvm_coaltown_101666hell_v4,17,0.000038%,mvm,Man vs Machine
vsh_h3ll@_$w@g,17,0.000038%,vsh,Other
cp_orange_etage_tbr4,17,0.000038%,cp,Capture Point
cp_keikoku_rc1,17,0.000038%,cp,Capture Point
surf_quantum_b3,17,0.000038%,surf,Other
koth_timbertown_b2,16,0.000036%,koth,King of the Hill
zf_cliff_v2_4,16,0.000036%,zf,Other
tfdb_waw,16,0.000036%,tfdb,Other
ultiduo_assembly_a7,16,0.000036%,ultiduo,Other
learn_pogojump,16,0.000036%,learn,Other
fw_ctf_perimeter_a1,16,0.000036%,fw,Other
vsh_blue_resort_v1,16,0.000036%,vsh,Other
cp_orange_x_redundant_v5,16,0.000036%,cp,Capture Point
mvm_skullcove_nightmare,16,0.000036%,mvm,Man vs Machine
mvm_snowfall_b2_click_advanced2,16,0.000036%,mvm,Man vs Machine
jump_karelia_rc1,16,0.000036%,jump,Other
mvm_decoy_milkman,16,0.000036%,mvm,Man vs Machine
dm_pony_skyrim_b2,16,0.000036%,dm,Deathmatch
mvm_decoy_operation_robot,16,0.000036%,mvm,Man vs Machine
mvm_decoy_5wavev4,16,0.000036%,mvm,Man vs Machine
vsh_halo_bloodgulch_v4,16,0.000036%,vsh,Other
ctf_orient_b3,16,0.000036%,ctf,Capture the Flag
jb_uhadi_alpha4_race,16,0.000036%,jb,Other
garbage_day,16,0.000036%,garbage,Other
arena_cementpond_b1,16,0.000036%,arena,Other
tfdb_iphones_3g_gs,16,0.000036%,tfdb,Other
vsh_rockslide_v2,16,0.000036%,vsh,Other
conc_school,16,0.000036%,conc,Other
trade_alt3,16,0.000036%,trade,Trade and Achievement
trade_achievement_apg_r11b,16,0.000036%,trade,Trade and Achievement
mvm_decoy_bs-advanced,16,0.000036%,mvm,Man vs Machine
nes_supermariobros2_v1,16,0.000036%,nes,Other
pl_spacebase_b4ba34,16,0.000036%,pl,Payload
ach_draco_rc19_a1,16,0.000036%,ach,Other
achievement_scout,16,0.000036%,achievement,Trade and Achievement
cp_cartoonfight,16,0.000036%,cp,Capture Point
mvm_mannhattan_systematic_shutd,16,0.000036%,mvm,Man vs Machine
szf_4way_v12_jugfix1,16,0.000036%,szf,Other
pl_divide_b1,16,0.000036%,pl,Payload
jump_cortex,16,0.000036%,jump,Other
ze_titanic_escape_v2_4_tf2,16,0.000036%,ze,Other
senior_scrap_004,16,0.000036%,senior,Other
koth_mutants_a1,16,0.000036%,koth,King of the Hill
superweenie_b4,16,0.000036%,superweenie,Other
cp_mainline_rc6,16,0.000036%,cp,Capture Point
trade_plaza_tits,16,0.000036%,trade,Trade and Achievement
jump_flow_alpha2,16,0.000036%,jump,Other
koth_abandoned_minesha,16,0.000036%,koth,King of the Hill
mvm_decoy_engineer,16,0.000036%,mvm,Man vs Machine
jump_rj_rckteer_adv_v2,16,0.000036%,jump,Other
arena_missilebase_b1,16,0.000036%,arena,Other
cp_unforeseen_consequences_2,16,0.000036%,cp,Capture Point
mvm_highrise_decoy_advanced3,16,0.000036%,mvm,Man vs Machine
jb_jungle,16,0.000036%,jb,Other
vsh_dr_prison_escape_v7,16,0.000036%,vsh,Other
mvm_corridors_robotic_mayhem,16,0.000036%,mvm,Man vs Machine
trade_lunarpumpkin_v023,16,0.000036%,trade,Trade and Achievement
ave_hq_a3,16,0.000036%,ave,Other
ctf_stockpile_b2,16,0.000036%,ctf,Capture the Flag
ctf_venture,16,0.000036%,ctf,Capture the Flag
mvm_decoy_endless_blu,16,0.000036%,mvm,Man vs Machine
surf_the_hills,16,0.000036%,surf,Other
zf_brainary_v2,16,0.000036%,zf,Other
pl_goldrush_bots,16,0.000036%,pl,Payload
arena_1v1,16,0.000036%,arena,Other
cp_kakariko_a4,16,0.000036%,cp,Capture Point
ctf_2fort_enhanced_v2,16,0.000036%,ctf,Capture the Flag
cp_slump,16,0.000036%,cp,Capture Point
koth_watershed_b16,16,0.000036%,koth,King of the Hill
mvm_decoy_riches,16,0.000036%,mvm,Man vs Machine
vsh_dr_safety_first_final,16,0.000036%,vsh,Other
gg_nucleus,16,0.000036%,gg,Other
jump_infamous_beta,16,0.000036%,jump,Other
cp_garden_a8,16,0.000036%,cp,Capture Point
cp_corporation_b3,16,0.000036%,cp,Capture Point
koth_evergreen,16,0.000036%,koth,King of the Hill
mvm_meltdown_rc4_ponies1,16,0.000036%,mvm,Man vs Machine
mvm_open_v3,16,0.000036%,mvm,Man vs Machine
vsh_ratssaxy_data,16,0.000036%,vsh,Other
dr_whompsfortressa4,16,0.000036%,dr,Other
dr_construct_v1,16,0.000036%,dr,Other
zf_silenthill,16,0.000036%,zf,Other
trade_spooky_park_v1,16,0.000036%,trade,Trade and Achievement
pull_gov_mario,16,0.000036%,pull,Other
jail_xtreme_wakka_b2_tf2jail,16,0.000036%,jail,Other
vsh_wake_island,16,0.000036%,vsh,Other
cp_orange_x_forest,16,0.000036%,cp,Capture Point
mvm_winter_b5_chaotic,16,0.000036%,mvm,Man vs Machine
ctf_bball,16,0.000036%,ctf,Capture the Flag
tr_juggle ,16,0.000036%,tr,Other
trade_mumbos_mountain_,16,0.000036%,trade,Trade and Achievement
mvm_highrise_bigrock_advanced1,16,0.000036%,mvm,Man vs Machine
mvm_highrise_decoy,16,0.000036%,mvm,Man vs Machine
sv_theforest_alpha,16,0.000036%,sv,Other
koth_capitulation_b3,16,0.000036%,koth,King of the Hill
vsh_farm_feud_cp,16,0.000036%,vsh,Other
mvm_coaltown_endless_mayhem,16,0.000036%,mvm,Man vs Machine
derelict_alpha_5,16,0.000036%,derelict,Other
cp_train_basinflat3_d,16,0.000036%,cp,Capture Point
tfdb_sandvichfields_g_gs,16,0.000036%,tfdb,Other
tfdb_tennis_gs,16,0.000036%,tfdb,Other
mvm_decoy_boss_mission,16,0.000036%,mvm,Man vs Machine
cp_process_disabilites,16,0.000036%,cp,Capture Point
koth_nyan_b1,16,0.000036%,koth,King of the Hill
jump_bouncerific_v3,16,0.000036%,jump,Other
ctf_convoy_storm_b1,16,0.000036%,ctf,Capture the Flag
trade_godsmack,16,0.000036%,trade,Trade and Achievement
achievement_for_all_rus_v20e,16,0.000036%,achievement,Trade and Achievement
awp_lego_world,16,0.000036%,awp,Other
jump_noh_v1,16,0.000036%,jump,Other
ctf_2fort_open,16,0.000036%,ctf,Capture the Flag
achievement_turbo_rhobv2,16,0.000036%,achievement,Trade and Achievement
jump_spy101_b1,16,0.000036%,jump,Other
dr_wintervalley_final_gsn,16,0.000036%,dr,Other
mvm_badwater_final_advanced3,16,0.000036%,mvm,Man vs Machine
cp_prison_break_v2_d7,16,0.000036%,cp,Capture Point
pl_borneo_bots,16,0.000036%,pl,Payload
mvm_decoy_lol1,16,0.000036%,mvm,Man vs Machine
koth_sandstone_pro_rc1,16,0.000036%,koth,King of the Hill
koth_mario_kart_v1b,16,0.000036%,koth,King of the Hill
beerpong_b1,16,0.000036%,beerpong,Other
mvm_decoy_red_damage,15,0.000034%,mvm,Man vs Machine
koth_hightower,15,0.000034%,koth,King of the Hill
jump_frog_a2,15,0.000034%,jump,Other
robot_isolation,15,0.000034%,robot,Other
map_tf2_2,15,0.000034%,map,Other
cp_evergreen_b4,15,0.000034%,cp,Capture Point
tfdb_waw_a4,15,0.000034%,tfdb,Other
vsh_chimeralabs_v3,15,0.000034%,vsh,Other
cp_hadal_b13,15,0.000034%,cp,Capture Point
koth_toomuchstone_a1,15,0.000034%,koth,King of the Hill
tfkart_mc_mariokart,15,0.000034%,tfkart,Other
jb_gulag_ob_0_15_2_ae,15,0.000034%,jb,Other
arena_hoover_b2,15,0.000034%,arena,Other
mvm_testbed_v2_tank,15,0.000034%,mvm,Man vs Machine
ctf_2fort_minecraft_s1,15,0.000034%,ctf,Capture the Flag
jump_leet_v1,15,0.000034%,jump,Other
vsh_dr_waterway,15,0.000034%,vsh,Other
dr_egypt_v5_final,15,0.000034%,dr,Other
jump_something_redo,15,0.000034%,jump,Other
blimp_damage_2,15,0.000034%,blimp,Other
mvm_tunnels_a6,15,0.000034%,mvm,Man vs Machine
derelict_alpha_8,15,0.000034%,derelict,Other
tr_aim_d3,15,0.000034%,tr,Other
jade_cliffside,15,0.000034%,jade,Other
mvm_bigrock_scout_challenge,15,0.000034%,mvm,Man vs Machine
trade_mesa_v001f_synthetic_suic,15,0.000034%,trade,Trade and Achievement
koth_bricked_af_a0,15,0.000034%,koth,King of the Hill
koth_twisted_v5,15,0.000034%,koth,King of the Hill
mvm_processingv1_advanced2_dc,15,0.000034%,mvm,Man vs Machine
aim_ak-colt_arg_fawosfix_decoy,15,0.000034%,aim,Other
ctf_facingworlds_b1test,15,0.000034%,ctf,Capture the Flag
koth_warehouse,15,0.000034%,koth,King of the Hill
mvm_underground_rc3_advanced1,15,0.000034%,mvm,Man vs Machine
vsh_marienwerder_pb2,15,0.000034%,vsh,Other
fun_knedlov,15,0.000034%,fun,Other
surf_presmon_fix,15,0.000034%,surf,Other
jump_phobos_jam_freestyle,15,0.000034%,jump,Other
pass_push_b5,15,0.000034%,pass,Other
vsh_project_powerup_a18,15,0.000034%,vsh,Other
mvm_bigrock_metal_crusher,15,0.000034%,mvm,Man vs Machine
arena_coalmine_b1,15,0.000034%,arena,Other
mvm_orange_x3_how_v2b_fawos_his,15,0.000034%,mvm,Man vs Machine
ctf_speedrace,15,0.000034%,ctf,Capture the Flag
vsh_soulyard,15,0.000034%,vsh,Other
fw_canals_v1a6,15,0.000034%,fw,Other
tfdb_blucourt_intox_gs,15,0.000034%,tfdb,Other
trade_plaza_rdg_demo,15,0.000034%,trade,Trade and Achievement
trade_ghs_minecraft_sxh_v2,15,0.000034%,trade,Trade and Achievement
koth_scorched,15,0.000034%,koth,King of the Hill
tfkart_mannraceway_final,15,0.000034%,tfkart,Other
jump_tf2rj_a5,15,0.000034%,jump,Other
math_prince_salim,15,0.000034%,math,Other
tfdb_md_firstmap_v3,15,0.000034%,tfdb,Other
vsh_infraquaticus_a4,15,0.000034%,vsh,Other
pl_nuclear,15,0.000034%,pl,Payload
jump_tesseract_beta,15,0.000034%,jump,Other
christophes_tf2,15,0.000034%,christophes,Other
koth_mineshaft_a1,15,0.000034%,koth,King of the Hill
tfdb_stadium_mtx,15,0.000034%,tfdb,Other
koth_the_bot_training_grounds,15,0.000034%,koth,King of the Hill
arena_dk64_4forts,15,0.000034%,arena,Other
pl_lasti_rc3,15,0.000034%,pl,Payload
tfdb_room_a1,15,0.000034%,tfdb,Other
ctf_2fort_classic_rebirth,15,0.000034%,ctf,Capture the Flag
jump_deimos_jam_a4,15,0.000034%,jump,Other
emiled_blulandia,15,0.000034%,emiled,Other
koth_test,15,0.000034%,koth,King of the Hill
mvm_bigrock_rush_all_bosses_rem,15,0.000034%,mvm,Man vs Machine
trade_egc_b3,15,0.000034%,trade,Trade and Achievement
jump_noomerac_practice,15,0.000034%,jump,Other
koth_rigid_a5,15,0.000034%,koth,King of the Hill
strange_weapons_upgrade_v2,15,0.000034%,strange,Other
dm_1vs1dome_v1,15,0.000034%,dm,Deathmatch
achieve_drugstore_cowboy,15,0.000034%,achieve,Other
tfdb_egypt_v1b,15,0.000034%,tfdb,Other
arena_missilebase_b3,15,0.000034%,arena,Other
ultiduo_winter,15,0.000034%,ultiduo,Other
cp_orange_gamerland_modern,15,0.000034%,cp,Capture Point
koth_landing,14,0.000031%,koth,King of the Hill
ctf_littlefort,14,0.000031%,ctf,Capture the Flag
achievement_all_reloaded_v10,14,0.000031%,achievement,Trade and Achievement
mvm_coaltown_the_bot_that_tried,14,0.000031%,mvm,Man vs Machine
arena_pillars_hf,14,0.000031%,arena,Other
cp_floorislava_b1,14,0.000031%,cp,Capture Point
mvm_decoy_4,14,0.000031%,mvm,Man vs Machine
mvm_minecraft_b15a,14,0.000031%,mvm,Man vs Machine
mvm_troopers_defend_endurance,14,0.000031%,mvm,Man vs Machine
dbs_sniper_b4,14,0.000031%,dbs,Other
mvm_waterbridge,14,0.000031%,mvm,Man vs Machine
cp_underhanded_b4,14,0.000031%,cp,Capture Point
mvm_mannhattan_uu_helloween,14,0.000031%,mvm,Man vs Machine
cp_orange_x3_mhkek_v2,14,0.000031%,cp,Capture Point
jump_tombrady_vjondy,14,0.000031%,jump,Other
ctf_downtown_final,14,0.000031%,ctf,Capture the Flag
ctf_steamroll,14,0.000031%,ctf,Capture the Flag
mvm_bigrock_x10,14,0.000031%,mvm,Man vs Machine
mvm_ghost_town_spookinator,14,0.000031%,mvm,Man vs Machine
surf_seaworld_fix,14,0.000031%,surf,Other
ir_shutdown_a3,14,0.000031%,ir,Other
mvm_decoy_mega_bosses_2,14,0.000031%,mvm,Man vs Machine
mvm_skullcove_horror,14,0.000031%,mvm,Man vs Machine
ctf_2fort_industrial_final,14,0.000031%,ctf,Capture the Flag
cp_orange_x_7_2013_d,14,0.000031%,cp,Capture Point
dr_wintervalley_beta2,14,0.000031%,dr,Other
achive_v4_final,14,0.000031%,achive,Other
vsh_closedquarter_v3,14,0.000031%,vsh,Other
mvm_space_cats_beta,14,0.000031%,mvm,Man vs Machine
strange_farm_3,14,0.000031%,strange,Other
tfdb_rooftops_rc6,14,0.000031%,tfdb,Other
ctf_battle_camp,14,0.000031%,ctf,Capture the Flag
mvm_bigrock_event_nightmare_dec,14,0.000031%,mvm,Man vs Machine
vsh_cinema_b22,14,0.000031%,vsh,Other
mp_coop_fan_p2port,14,0.000031%,mp,Other
mvm_decoy_titan,14,0.000031%,mvm,Man vs Machine
bot_rockpaperglitter_a4,14,0.000031%,bot,Other
sv_nacht_der_untoten_b2,14,0.000031%,sv,Other
ctf_2fort_snowy,14,0.000031%,ctf,Capture the Flag
mvm_bigrock_dangling_wires,14,0.000031%,mvm,Man vs Machine
mvm_decoy_random,14,0.000031%,mvm,Man vs Machine
pass_pinewood,14,0.000031%,pass,Other
ctf_sylux_oubliette,14,0.000031%,ctf,Capture the Flag
tfdb_stagezx_gs,14,0.000031%,tfdb,Other
surf_coralis_fix,14,0.000031%,surf,Other
sniper_volcano_2013,14,0.000031%,sniper,Other
vsh_egyptian_era,14,0.000031%,vsh,Other
trade_minecraft_v15,14,0.000031%,trade,Trade and Achievement
battle_slider_v3c,14,0.000031%,battle,Other
trade_minecraft_2016_st_v3_e,14,0.000031%,trade,Trade and Achievement
dm_duel_ro_v3_omega,14,0.000031%,dm,Deathmatch
pl_precarious_a1,14,0.000031%,pl,Payload
ctf_orange_magma_tbr1,14,0.000031%,ctf,Capture the Flag
dr_tf2_museum_v1,14,0.000031%,dr,Other
mvm_badwater_final_uu99_bosses,14,0.000031%,mvm,Man vs Machine
mvm_rottenburg_benzinac,14,0.000031%,mvm,Man vs Machine
pl_driller_72_a2a,14,0.000031%,pl,Payload
trade_minecraft_fc_v4,14,0.000031%,trade,Trade and Achievement
snipe_resource,14,0.000031%,snipe,Other
mvm_some,14,0.000031%,mvm,Man vs Machine
dz_tdzproject_ver_2,14,0.000031%,dz,Other
surf_hyper-tension,14,0.000031%,surf,Other
fw_spiral_proto3,14,0.000031%,fw,Other
pl_goldrock_rc1,14,0.000031%,pl,Payload
pl_cliffhanger_v2,14,0.000031%,pl,Payload
ave_hq_a1,14,0.000031%,ave,Other
sniper_allinone_v2,14,0.000031%,sniper,Other
mvm_ghost_town_infinite,14,0.000031%,mvm,Man vs Machine
mvm_coaltown_heavy_rush,14,0.000031%,mvm,Man vs Machine
jump_flukhtiz_b3,14,0.000031%,jump,Other
fw_rush_marianas_v5,14,0.000031%,fw,Other
tfdb_hotnuke_b1,14,0.000031%,tfdb,Other
rd_invasion_a4,14,0.000031%,rd,Other
koth_occult,14,0.000031%,koth,King of the Hill
mvm_bigrock_101hell,14,0.000031%,mvm,Man vs Machine
koth_nikhilo_powerstation,14,0.000031%,koth,King of the Hill
escape_02,14,0.000031%,escape,Other
koth_fission,14,0.000031%,koth,King of the Hill
pl_mining_b5,14,0.000031%,pl,Payload
pl_stalingrad_b5_wb,14,0.000031%,pl,Payload
gm_blackmesa_sigma_by_freakrule,14,0.000031%,gm,Other
mvm_coaltown_streetofmachine,14,0.000031%,mvm,Man vs Machine
cp_5fort,14,0.000031%,cp,Capture Point
admin_room_testv1,14,0.000031%,admin,Other
jump_cowboyana_a2,14,0.000031%,jump,Other
eim_blockworld_b3,14,0.000031%,eim,Other
pl_pharaoh_rc,14,0.000031%,pl,Payload
cp_orange_payload_b2,14,0.000031%,cp,Capture Point
tfdb_tryhard_proto,14,0.000031%,tfdb,Other
ctf_doublecross_bots,14,0.000031%,ctf,Capture the Flag
sarcasticbrony_idle_final,14,0.000031%,sarcasticbrony,Other
sn_hac_legoarena_f2,14,0.000031%,sn,Other
dm_flast_91,14,0.000031%,dm,Deathmatch
cp_enis,14,0.000031%,cp,Capture Point
weaver_unholy_beta,14,0.000031%,weaver,Other
tckoth_prefab,14,0.000031%,tckoth,Other
dr_atomicwarfare_tf2,14,0.000031%,dr,Other
arena_danktown_b7a,14,0.000031%,arena,Other
mvm_mannworks_30wave_v20,14,0.000031%,mvm,Man vs Machine
koth_throbbing_rc1,14,0.000031%,koth,King of the Hill
mvm_sundown_a7_normal1,14,0.000031%,mvm,Man vs Machine
surf_legends_lite_t30,14,0.000031%,surf,Other
tfdbr_spire_v1,14,0.000031%,tfdbr,Other
vsh_dr_castle_steveh_2c,14,0.000031%,vsh,Other
dr_office_tf2,14,0.000031%,dr,Other
ctf_labyrinth_test12,14,0.000031%,ctf,Capture the Flag
de_chateau,14,0.000031%,de,Other
koth_gravland,14,0.000031%,koth,King of the Hill
mvm_sundown_a7_normal,14,0.000031%,mvm,Man vs Machine
mvm_bigrock_30wave_v60_lvl2,14,0.000031%,mvm,Man vs Machine
dbs_boomerang_b2,14,0.000031%,dbs,Other
cp_dogenzaka_viii_spawn,14,0.000031%,cp,Capture Point
jump_despair,14,0.000031%,jump,Other
achievement_idle_skbox_v13,14,0.000031%,achievement,Trade and Achievement
mg_colourmatch_v1,14,0.000031%,mg,Other
arena_boxx_b1,14,0.000031%,arena,Other
mvm_coaltownxma_expert1,14,0.000031%,mvm,Man vs Machine
cp_shock,14,0.000031%,cp,Capture Point
cp_orange_z2,13,0.000029%,cp,Capture Point
gm_bigcity_sh,13,0.000029%,gm,Other
koth_ulti_trio_aerialcage_v1_3,13,0.000029%,koth,King of the Hill
surf_kalium2,13,0.000029%,surf,Other
fw_vazaa_v17,13,0.000029%,fw,Other
moon_world,13,0.000029%,moon,Other
koth_lighthouse_rc5,13,0.000029%,koth,King of the Hill
2f2f_ravine_tilt,13,0.000029%,2f2f,Other
derelict_alpha_11,13,0.000029%,derelict,Other
cp_orange_x3_e5,13,0.000029%,cp,Capture Point
robot_sewer,13,0.000029%,robot,Other
vsh_stardestroyer_a3,13,0.000029%,vsh,Other
tfdb_egypts_temple_a3,13,0.000029%,tfdb,Other
surf_orion_port,13,0.000029%,surf,Other
cp_busytown,13,0.000029%,cp,Capture Point
arena_silverspoon_b4,13,0.000029%,arena,Other
jump_nsfw_final,13,0.000029%,jump,Other
vsh_moon_v1,13,0.000029%,vsh,Other
achievement_ghosthorde_mc_v2,13,0.000029%,achievement,Trade and Achievement
trade_minecraft_windmi,13,0.000029%,trade,Trade and Achievement
sniper_brawl_4data,13,0.000029%,sniper,Other
achievement_idle_cy4g_hotelb6,13,0.000029%,achievement,Trade and Achievement
sn_warehouse_rc,13,0.000029%,sn,Other
gm10_floodinvasion_slaughterhou,13,0.000029%,gm10,Other
arena_pullout_a3,13,0.000029%,arena,Other
dr_coldlava_b3_gsn,13,0.000029%,dr,Other
ctf_turbine_orange2,13,0.000029%,ctf,Capture the Flag
testy_thing,13,0.000029%,testy,Other
koth_probed_ami,13,0.000029%,koth,King of the Hill
vsh_enchanted_woods_v3_2,13,0.000029%,vsh,Other
zf_goldfever_2a,13,0.000029%,zf,Other
cp_orange_h!gh$tyle_ragequit2,13,0.000029%,cp,Capture Point
dogenzaka_i,13,0.000029%,dogenzaka,Other
cp_degrootcreep_event,13,0.000029%,cp,Capture Point
cp_vector_v1_wb,13,0.000029%,cp,Capture Point
pull3_tf2,13,0.000029%,pull3,Other
mvm_manncohq_v3_mann_vs_odd,13,0.000029%,mvm,Man vs Machine
koth_space,13,0.000029%,koth,King of the Hill
mvm_mannworks_16wave_expert,13,0.000029%,mvm,Man vs Machine
vsh_skyscraper_v5,13,0.000029%,vsh,Other
ultiduo_grove_a7,13,0.000029%,ultiduo,Other
tfdb_spire_v1,13,0.000029%,tfdb,Other
slender_arctic,13,0.000029%,slender,Other
jump_fear_redo_fix,13,0.000029%,jump,Other
hs_hide_and_seek,13,0.000029%,hs,Other
koth_minecraft_canyon_a4,13,0.000029%,koth,King of the Hill
first_szum_stop,13,0.000029%,first,Other
derelict_alpha_3,13,0.000029%,derelict,Other
zf_headquarters2,13,0.000029%,zf,Other
mvm_beartrap_a2_advanced,13,0.000029%,mvm,Man vs Machine
slender_biotics_lab_v4_d,13,0.000029%,slender,Other
jump_maps,13,0.000029%,jump,Other
jump_blossom_s3f (1),13,0.000029%,jump,Other
mvm_museum_a9_2010,13,0.000029%,mvm,Man vs Machine
ctf_redpolis,13,0.000029%,ctf,Capture the Flag
tfdb_octagon_a5,13,0.000029%,tfdb,Other
vsh_valvewater_b4,13,0.000029%,vsh,Other
gm10_floodinvasion_a_real_boss,13,0.000029%,gm10,Other
jump_straight_course2,13,0.000029%,jump,Other
jump_bb_initiate_a4,13,0.000029%,jump,Other
mvm_mc_overdrive_ep1,13,0.000029%,mvm,Man vs Machine
pl_bunkerblasta16,13,0.000029%,pl,Payload
koth_lava_fort_b1,13,0.000029%,koth,King of the Hill
koth_front_alpha5,13,0.000029%,koth,King of the Hill
achievement_scout_final,13,0.000029%,achievement,Trade and Achievement
cp_harbour_rc2,13,0.000029%,cp,Capture Point
plr_hightower_bots,13,0.000029%,plr,Payload Race
dr_sunbaked_v4_gsn,13,0.000029%,dr,Other
koth_coldfront,13,0.000029%,koth,King of the Hill
dr_derelict_prime_x_gsn,13,0.000029%,dr,Other
jump_watch_a1,13,0.000029%,jump,Other
tfdb_snow_b1_gs,13,0.000029%,tfdb,Other
mge_product,13,0.000029%,mge,Other
tfdb_flat_v1,13,0.000029%,tfdb,Other
koth_tunabutter_b07,13,0.000029%,koth,King of the Hill
pf_callaghan_b1,13,0.000029%,pf,Other
cp_dogenzaka_i_newlighting,13,0.000029%,cp,Capture Point
tfdb_cube_nud,13,0.000029%,tfdb,Other
dr_hallways_final,13,0.000029%,dr,Other
vsh_frothandtransit_v6,13,0.000029%,vsh,Other
arena_fortfrolic_a3,13,0.000029%,arena,Other
tfdb_orenge_blu_red_v2_gs,13,0.000029%,tfdb,Other
tfdb_minecraft_gs,13,0.000029%,tfdb,Other
1v1_hillsduel_workshop,13,0.000029%,1v1,Other
trade_satellite_lpt,13,0.000029%,trade,Trade and Achievement
koth_fever_b2,13,0.000029%,koth,King of the Hill
mvm_open_final_swamp_allan,13,0.000029%,mvm,Man vs Machine
ctf_urbanbrook_rc,13,0.000029%,ctf,Capture the Flag
ultiduo_test,13,0.000029%,ultiduo,Other
trade_high_color_city_b1,13,0.000029%,trade,Trade and Achievement
arena_timbertown_b1_stormy,13,0.000029%,arena,Other
dc_ach10,13,0.000029%,dc,Other
mvm_coaltown_supercodeslasherse,13,0.000029%,mvm,Man vs Machine
mvm_bigrock_30waves_survival_v5,12,0.000027%,mvm,Man vs Machine
bpa_test_01,12,0.000027%,bpa,Other
vsh_megaman6_b5b,12,0.000027%,vsh,Other
mvm_bigrock_sd,12,0.000027%,mvm,Man vs Machine
dr_trollrun_final_tf2,12,0.000027%,dr,Other
aim_ak-colt_arg_fawosfix_coalto,12,0.000027%,aim,Other
mvm_mannworks_tankver2,12,0.000027%,mvm,Man vs Machine
mvm_tropics_rc9,12,0.000027%,mvm,Man vs Machine
koth_working_class_b1,12,0.000027%,koth,King of the Hill
koth_westwind,12,0.000027%,koth,King of the Hill
koth_watermill_b1,12,0.000027%,koth,King of the Hill
dr_playstation_b20,12,0.000027%,dr,Other
alext_tf2,12,0.000027%,alext,Other
king_dynasty,12,0.000027%,king,Other
cp_fool_hill_b2,12,0.000027%,cp,Capture Point
dr_cocainum_v5_dg6_fix,12,0.000027%,dr,Other
dr_simpsons_skial,12,0.000027%,dr,Other
jump_straight_course3,12,0.000027%,jump,Other
bot_rockpaperglitter_a3,12,0.000027%,bot,Other
mvm_decoy_tsin,12,0.000027%,mvm,Man vs Machine
mario_kart_2012_b3_winter,12,0.000027%,mario,Other
koth_pelagic_a9,12,0.000027%,koth,King of the Hill
achievement_turbov13,12,0.000027%,achievement,Trade and Achievement
mvm_bigrock_sniper,12,0.000027%,mvm,Man vs Machine
freestyle_woods,12,0.000027%,freestyle,Other
cp_roswell,12,0.000027%,cp,Capture Point
cp_omen_b6,12,0.000027%,cp,Capture Point
dm_dustbowl,12,0.000027%,dm,Deathmatch
mvm_mannworks_marxman_massacre_,12,0.000027%,mvm,Man vs Machine
tfdb_desert_madness_sv333,12,0.000027%,tfdb,Other
koth_eros,12,0.000027%,koth,King of the Hill
jump_stumble_final_fixed,12,0.000027%,jump,Other
mvm_decoy_survival_objective,12,0.000027%,mvm,Man vs Machine
ba_jail_wip_otaku,12,0.000027%,ba,Other
tfdb_split_final,12,0.000027%,tfdb,Other
mvm_bigrock_training,12,0.000027%,mvm,Man vs Machine
arena_random_brick_a1,12,0.000027%,arena,Other
koth_d_r_u_g_s_a1,12,0.000027%,koth,King of the Hill
arena_backlot_rc1,12,0.000027%,arena,Other
ctf_atrophy_b4,12,0.000027%,ctf,Capture the Flag
jump_scout,12,0.000027%,jump,Other
the_swimmingpool,12,0.000027%,the,Other
mvm_decoy_sovarium,12,0.000027%,mvm,Man vs Machine
koth_zebunker_pheno_a9,12,0.000027%,koth,King of the Hill
duel_duel2_pro,12,0.000027%,duel,Other
mvm_bigrock_operation_steeljaw,12,0.000027%,mvm,Man vs Machine
pl_dbheights,12,0.000027%,pl,Payload
cp_labor,12,0.000027%,cp,Capture Point
mvm_winter_b5_decoy_expert1,12,0.000027%,mvm,Man vs Machine
cp_castle3,12,0.000027%,cp,Capture Point
blimp_damage,12,0.000027%,blimp,Other
mvm_coaltown_flow_advanced1,12,0.000027%,mvm,Man vs Machine
cp_purple_x,12,0.000027%,cp,Capture Point
tfdb_anox_skydogeball,12,0.000027%,tfdb,Other
koth_ramjam_b8,12,0.000027%,koth,King of the Hill
trade_dreamland_v0d,12,0.000027%,trade,Trade and Achievement
arena_shale_rc2,12,0.000027%,arena,Other
trade_sinfulplaza_v41,12,0.000027%,trade,Trade and Achievement
tfdb_fo,12,0.000027%,tfdb,Other
mvm_adventure_of_30wave_ep5,12,0.000027%,mvm,Man vs Machine
cp_dogenzaka_barebones_iii,12,0.000027%,cp,Capture Point
mvm_giza_b6_advanced1,12,0.000027%,mvm,Man vs Machine
koth_partyisland_v10,12,0.000027%,koth,King of the Hill
ctf_2fortcraft_a8,12,0.000027%,ctf,Capture the Flag
tr_jumping,12,0.000027%,tr,Other
arena_just_the_worst,12,0.000027%,arena,Other
mvm_totalwar_easy_town,12,0.000027%,mvm,Man vs Machine
mvm_processingv1_br_advanced2,12,0.000027%,mvm,Man vs Machine
vsh_dr_bank_v5,12,0.000027%,vsh,Other
tfdb_blucourt_intox_sv3,12,0.000027%,tfdb,Other
trade_soccer,12,0.000027%,trade,Trade and Achievement
trade_minecraft_neon_v157,12,0.000027%,trade,Trade and Achievement
koth_aerial_a22,12,0.000027%,koth,King of the Hill
koth_dev_battle,12,0.000027%,koth,King of the Hill
dm_duel_ro_v4d,12,0.000027%,dm,Deathmatch
achieve_krazyivan,12,0.000027%,achieve,Other
mvm_shinyhappypeople_cosmo,12,0.000027%,mvm,Man vs Machine
mvm_bigrock_26wavetrof,12,0.000027%,mvm,Man vs Machine
maxime_therrien_hammer_map,12,0.000027%,maxime,Other
alexandreg_tf2,12,0.000027%,alexandreg,Other
vsh_courtyard_b1,12,0.000027%,vsh,Other
vsh_the_plank,12,0.000027%,vsh,Other
balloon_race_v4a,12,0.000027%,balloon,Other
south_park,12,0.000027%,south,Other
ctf_aerial_b10,12,0.000027%,ctf,Capture the Flag
koth_kaboom_a4,12,0.000027%,koth,King of the Hill
ss_workplace_a2,12,0.000027%,ss,Other
mvm_coaltown_bots1,12,0.000027%,mvm,Man vs Machine
pl_canyonfodder_b2,12,0.000027%,pl,Payload
mvm_overlord_b3_bigrock,12,0.000027%,mvm,Man vs Machine
dm_minecraft,12,0.000027%,dm,Deathmatch
awp_map,12,0.000027%,awp,Other
pl_hatfactory53,12,0.000027%,pl,Payload
pl_dorado_mat_test,12,0.000027%,pl,Payload
mvm_mannhattan_wtf,12,0.000027%,mvm,Man vs Machine
idle_sniper_war_v15,12,0.000027%,idle,Other
arena_harvest_spooky_a1,12,0.000027%,arena,Other
bruno_irish,12,0.000027%,bruno,Other
jump_excavation,12,0.000027%,jump,Other
rj_training_v2,12,0.000027%,rj,Other
ctf_wild_west_final,12,0.000027%,ctf,Capture the Flag
mvm_rottenburg_smissmas_boss,12,0.000027%,mvm,Man vs Machine
qwtf_2fort,12,0.000027%,qwtf,Other
tony_crash,12,0.000027%,tony,Other
dm_powerhouse,12,0.000027%,dm,Deathmatch
ctf_aerial_b15,12,0.000027%,ctf,Capture the Flag
mvm_map_2_thefunhouse,12,0.000027%,mvm,Man vs Machine
cp_logjam_a17,12,0.000027%,cp,Capture Point
achievement_heavyultimate_v2,12,0.000027%,achievement,Trade and Achievement
vsh_qeaman_3_1,12,0.000027%,vsh,Other
mvm_decoy_30wave_lord,12,0.000027%,mvm,Man vs Machine
mvm_ghost_town_ironballs,12,0.000027%,mvm,Man vs Machine
ctf_aerial_b11_c6,12,0.000027%,ctf,Capture the Flag
koth_ilios_rc1,12,0.000027%,koth,King of the Hill
arena_artefact_v3,12,0.000027%,arena,Other
tfdb_crack_v1,12,0.000027%,tfdb,Other
tfdb_mfloat,12,0.000027%,tfdb,Other
dm_hakurei_shrine_stv2,12,0.000027%,dm,Deathmatch
tr_walkway_rc2 - copia,12,0.000027%,tr,Other
pl_cartgoesboom_a1,12,0.000027%,pl,Payload
koth_sierra_t5,12,0.000027%,koth,King of the Hill
mvm_mannworks_rush,12,0.000027%,mvm,Man vs Machine
jail_snowballsv12_opst_fixedz,12,0.000027%,jail,Other
cp_drainwater_remake_a1_wip1,11,0.000025%,cp,Capture Point
jeanne_camptoucan,11,0.000025%,jeanne,Other
koth_teamboong,11,0.000025%,koth,King of the Hill
vsh_new_site_beta,11,0.000025%,vsh,Other
surf_rebel_resistance,11,0.000025%,surf,Other
tfdb_koil,11,0.000025%,tfdb,Other
mvm_coaltown_expert2,11,0.000025%,mvm,Man vs Machine
cp_minigames_test14alpha,11,0.000025%,cp,Capture Point
tr_jump_home_v2,11,0.000025%,tr,Other
mvm_decoy_30waves_survival_v5,11,0.000025%,mvm,Man vs Machine
tfdb_castle_rc2_gs,11,0.000025%,tfdb,Other
dbs_pong2_b11c,11,0.000025%,dbs,Other
tf_rocketjump_course,11,0.000025%,tf,Other
itemtest_d,11,0.000025%,itemtest,Other
vsh_brewery_v3,11,0.000025%,vsh,Other
arena_hydrothunder_final,11,0.000025%,arena,Other
mvm_isolation_b4_inferno,11,0.000025%,mvm,Man vs Machine
mvm_bigrock_deathwish,11,0.000025%,mvm,Man vs Machine
ctf_convoy_opt,11,0.000025%,ctf,Capture the Flag
cp_redpolis_b7,11,0.000025%,cp,Capture Point
koth_switcheroo_b3,11,0.000025%,koth,King of the Hill
ctf_bball_sweethills_v1,11,0.000025%,ctf,Capture the Flag
zf_mandrillmaze_v1_1,11,0.000025%,zf,Other
adventure_map,11,0.000025%,adventure,Other
tfdb_medievaltower_b1,11,0.000025%,tfdb,Other
koth_second,11,0.000025%,koth,King of the Hill
pl_sawmill_s1a1,11,0.000025%,pl,Payload
mvm_trainyard_a4_scout1,11,0.000025%,mvm,Man vs Machine
cp_colon_a1,11,0.000025%,cp,Capture Point
cp_trainmap,11,0.000025%,cp,Capture Point
dogenzaka_ii,11,0.000025%,dogenzaka,Other
trademon_plaza_4_xmas,11,0.000025%,trademon,Other
mvm_mannworks_engraveled_tanks_,11,0.000025%,mvm,Man vs Machine
boss_transformers,11,0.000025%,boss,Other
mvm_bigrock_easymoney,11,0.000025%,mvm,Man vs Machine
koth_traintable_001,11,0.000025%,koth,King of the Hill
dm_bridge_rus,11,0.000025%,dm,Deathmatch
koth_coal_mine_v1,11,0.000025%,koth,King of the Hill
koth_waterfey_fix,11,0.000025%,koth,King of the Hill
mvm_coaltown_30wave_l6d2_v26_be,11,0.000025%,mvm,Man vs Machine
tdm_hightower_a4,11,0.000025%,tdm,Other
cp_marienwerder_beta2,11,0.000025%,cp,Capture Point
bg_clue,11,0.000025%,bg,Other
zf_fort_b2,11,0.000025%,zf,Other
tfdb_box_sides_a3_gs,11,0.000025%,tfdb,Other
cp_snowplow_rc3,11,0.000025%,cp,Capture Point
de_dust2_green,11,0.000025%,de,Other
slv3_jachinvsboas,11,0.000025%,slv3,Other
my_first_map,11,0.000025%,my,Other
ctf_2fort_fixup_b3,11,0.000025%,ctf,Capture the Flag
surf_royal_fix,11,0.000025%,surf,Other
tfdb_box_glass_floor_a4_gs,11,0.000025%,tfdb,Other
koth_tron_b1,11,0.000025%,koth,King of the Hill
koth_elevatormadness_a1_wip1,11,0.000025%,koth,King of the Hill
mvm_bigrock_ponies666,11,0.000025%,mvm,Man vs Machine
koth_trainsawlaser_b3,11,0.000025%,koth,King of the Hill
mvm_tropics_rc2_expert_sunshine,11,0.000025%,mvm,Man vs Machine
arena_volcano_a5,11,0.000025%,arena,Other
surf_lewler_v6,11,0.000025%,surf,Other
mvm_coaltown_warfare,11,0.000025%,mvm,Man vs Machine
cp_rumble_b3,11,0.000025%,cp,Capture Point
slender_decay_b4,11,0.000025%,slender,Other
dr_sawmill_final_gsn,11,0.000025%,dr,Other
mvm_decoy_gooderist,11,0.000025%,mvm,Man vs Machine
mvm_decoy_click_expert,11,0.000025%,mvm,Man vs Machine
surf_empyrean_beta,11,0.000025%,surf,Other
zom_desert_v1,11,0.000025%,zom,Other
surf_nikolo,11,0.000025%,surf,Other
tfdb_stagezx,11,0.000025%,tfdb,Other
koth_elevator_a1_wip1,11,0.000025%,koth,King of the Hill
mvm_bigrock_belligerent_infiltr,11,0.000025%,mvm,Man vs Machine
achievement_parachute,11,0.000025%,achievement,Trade and Achievement
carnage_beta,11,0.000025%,carnage,Other
trade_minecraft_b44_hg,11,0.000025%,trade,Trade and Achievement
jump_sheer,11,0.000025%,jump,Other
trade_trainingcamp,11,0.000025%,trade,Trade and Achievement
tfdb_inferno_a5_gs,11,0.000025%,tfdb,Other
tsm_really_serious_v2,11,0.000025%,tsm,Other
gm_hellsresort,11,0.000025%,gm,Other
dm_ponyville_b3_ttpn_edit_v2,11,0.000025%,dm,Deathmatch
koth_major,11,0.000025%,koth,King of the Hill
jump_detr_v1o,11,0.000025%,jump,Other
cp_unforeseen_consequences,11,0.000025%,cp,Capture Point
koth_brazil_rc3,11,0.000025%,koth,King of the Hill
cp_desperados_b2_tk,11,0.000025%,cp,Capture Point
cp_paraglyph_a2b,11,0.000025%,cp,Capture Point
koth_junk,11,0.000025%,koth,King of the Hill
nyan_cat,11,0.000025%,nyan,Other
ctf_mach2,11,0.000025%,ctf,Capture the Flag
mvm_decoy_you_quit_literally_ca,11,0.000025%,mvm,Man vs Machine
ultiduo_thaw,11,0.000025%,ultiduo,Other
tfdb_trainfalls_v5_gs,11,0.000025%,tfdb,Other
pl_orangebomb,11,0.000025%,pl,Payload
maxl_iga_no,11,0.000025%,maxl,Other
mvm_mannworks_bottse,11,0.000025%,mvm,Man vs Machine
koth_degrootkeep_v10,11,0.000025%,koth,King of the Hill
sn_biode,11,0.000025%,sn,Other
surf_treespam,11,0.000025%,surf,Other
ig_idle7k,11,0.000025%,ig,Other
green_de_la_bean,11,0.000025%,green,Other
ctf_hoops_beta,11,0.000025%,ctf,Capture the Flag
cp_altomare_a3,11,0.000025%,cp,Capture Point
zf_christmas_panic,11,0.000025%,zf,Other
sniper_opposed_beta1,11,0.000025%,sniper,Other
ctf_trains_b4b,11,0.000025%,ctf,Capture the Flag
tfdb_lake_v1,11,0.000025%,tfdb,Other
szf_atrium_a5,11,0.000025%,szf,Other
vsh_castle_siege_b11_skial_v1,11,0.000025%,vsh,Other
trade_supermario64_3,11,0.000025%,trade,Trade and Achievement
tfdb_blucourt_intox_swg_betates,11,0.000025%,tfdb,Other
cp_orange_x3_space,11,0.000025%,cp,Capture Point
ph_gorge_a1,11,0.000025%,ph,Other
cp_jaddou_rc5,11,0.000025%,cp,Capture Point
vsh_dr_egypt_v4,11,0.000025%,vsh,Other
cp_forgotten_b2,11,0.000025%,cp,Capture Point
mvm_metro_rc1_normal,11,0.000025%,mvm,Man vs Machine
gm_flatgrass,11,0.000025%,gm,Other
jump_jaguar,11,0.000025%,jump,Other
trade_minecraft_hans_v50,11,0.000025%,trade,Trade and Achievement
achi_idlefight_kicak2_r1,11,0.000025%,achi,Other
mvm_ghost_town_sovarium,11,0.000025%,mvm,Man vs Machine
jump_flawless_b1,11,0.000025%,jump,Other
tr_medic_dodgeball,11,0.000025%,tr,Other
koth_coalplant_b4,11,0.000025%,koth,King of the Hill
cp_snow_keep_rc1,11,0.000025%,cp,Capture Point
mvm_mannworks_nigger_faggot_sex,11,0.000025%,mvm,Man vs Machine
cp_logjam_b20pre2,11,0.000025%,cp,Capture Point
tr_ctap_a2 (2),11,0.000025%,tr,Other
ctf_mandrillmaze_b2_tk,11,0.000025%,ctf,Capture the Flag
ctf_3fort,11,0.000025%,ctf,Capture the Flag
ctf_2fort_rev,11,0.000025%,ctf,Capture the Flag
koth_corporate_b5,11,0.000025%,koth,King of the Hill
pl_payloadmap_beta2_v33,10,0.000022%,pl,Payload
trade_test_01,10,0.000022%,trade,Trade and Achievement
achievement_tiny_huge_6,10,0.000022%,achievement,Trade and Achievement
mvm_decoy_lightswavev2,10,0.000022%,mvm,Man vs Machine
ach_figbeach_v03,10,0.000022%,ach,Other
dm_duel3_r3910,10,0.000022%,dm,Deathmatch
cp_minigames_test15,10,0.000022%,cp,Capture Point
mymypa_d,10,0.000022%,mymypa,Other
mvm_coaltown_onslaughtmp,10,0.000022%,mvm,Man vs Machine
koth_hilltop_b5,10,0.000022%,koth,King of the Hill
mvm_big,10,0.000022%,mvm,Man vs Machine
jump_impact_beta2,10,0.000022%,jump,Other
tc_hydro_event_a4,10,0.000022%,tc,Other
pl_grass,10,0.000022%,pl,Payload
vsh_dr_space_v12,10,0.000022%,vsh,Other
koth_dogenzaka_iv,10,0.000022%,koth,King of the Hill
mvm_storage_a2_bigrock_advanced,10,0.000022%,mvm,Man vs Machine
cp_nothing_a9,10,0.000022%,cp,Capture Point
pl_nightfall_bots,10,0.000022%,pl,Payload
pl_graywater,10,0.000022%,pl,Payload
cp_dogenzaka_vii_spawn,10,0.000022%,cp,Capture Point
dr_ibrokethename_gsn,10,0.000022%,dr,Other
tfdb_float_a2_fix_gs,10,0.000022%,tfdb,Other
cp_redpolis_b3,10,0.000022%,cp,Capture Point
tfdb_anotherbox_final,10,0.000022%,tfdb,Other
jump_krupple_b1,10,0.000022%,jump,Other
mvm_highrise_rottenburg,10,0.000022%,mvm,Man vs Machine
cp_amaranth_rc1b,10,0.000022%,cp,Capture Point
mvm_test2_sas,10,0.000022%,mvm,Man vs Machine
ib_dust2_b1,10,0.000022%,ib,Other
tf2ware_v2e,10,0.000022%,tf2ware,Other
jump_urgent,10,0.000022%,jump,Other
ze_dungeon_beta,10,0.000022%,ze,Other
arena_poleta_a4,10,0.000022%,arena,Other
cp_factory_v2_12,10,0.000022%,cp,Capture Point
cp_gallery_b1,10,0.000022%,cp,Capture Point
mvm_mannhattan_solomann,10,0.000022%,mvm,Man vs Machine
pl_p2_zedul,10,0.000022%,pl,Payload
ctf_sawmill_bots,10,0.000022%,ctf,Capture the Flag
cp_gorge_edit_v2,10,0.000022%,cp,Capture Point
jump_gr8_wite_beta2,10,0.000022%,jump,Other
jump_runkkari_rc2,10,0.000022%,jump,Other
trade_kicsizee_r46_server,10,0.000022%,trade,Trade and Achievement
koth_wfr_01_15,10,0.000022%,koth,King of the Hill
koth_fissure_b2,10,0.000022%,koth,King of the Hill
cp_orange_cube,10,0.000022%,cp,Capture Point
mvm_coaltown_event_solo,10,0.000022%,mvm,Man vs Machine
dr_winterhill_beta2_fix_gsn,10,0.000022%,dr,Other
de_dust2002-source,10,0.000022%,de,Other
mvm_downtown_final2_advanced,10,0.000022%,mvm,Man vs Machine
trade_meincraft_shtupid_v2,10,0.000022%,trade,Trade and Achievement
cp_rats_alpha2,10,0.000022%,cp,Capture Point
cp_dogenzaka_barebones_iv,10,0.000022%,cp,Capture Point
cp_dogenzaka_barebones_i,10,0.000022%,cp,Capture Point
mvm_ghost_town_halloweenbosses,10,0.000022%,mvm,Man vs Machine
mvm_badwater_final_ghost_town,10,0.000022%,mvm,Man vs Machine
mvm_rottenburg_cobalt_carver,10,0.000022%,mvm,Man vs Machine
slender_expedition_b2,10,0.000022%,slender,Other
mvm_overlord_b3_ghost_town,10,0.000022%,mvm,Man vs Machine
cp_schoolwork,10,0.000022%,cp,Capture Point
rj_training,10,0.000022%,rj,Other
cp_hydro,10,0.000022%,cp,Capture Point
jump_academy_beta2_v1,10,0.000022%,jump,Other
cp_orange_bonk_v9a,10,0.000022%,cp,Capture Point
arena_stormhang_a1,10,0.000022%,arena,Other
cp_orange_x3_ddr_e_a_1,10,0.000022%,cp,Capture Point
tfdb_octagon_a10_fix_gs,10,0.000022%,tfdb,Other
vsh_hl1_crossfire_bunker_v5_f6,10,0.000022%,vsh,Other
mvm_ventus_b6_intermediate,10,0.000022%,mvm,Man vs Machine
cp_blackmesa_v2t7,10,0.000022%,cp,Capture Point
melee_barn_ddr2,10,0.000022%,melee,Other
coop_glacier_alpha,10,0.000022%,coop,Other
tfdb_oblivion,10,0.000022%,tfdb,Other
mvm_winter_b5_mannworks_advance,10,0.000022%,mvm,Man vs Machine
mvm_coaltown_adv_v1,10,0.000022%,mvm,Man vs Machine
mvm_mannhattan_honeth,10,0.000022%,mvm,Man vs Machine
pl_shortbeach,10,0.000022%,pl,Payload
pls_payloadspam_a1r,10,0.000022%,pls,Other
mvm_decoy_endlessmayhem,10,0.000022%,mvm,Man vs Machine
mvm_mannworks_cash_backup,10,0.000022%,mvm,Man vs Machine
tfdb_amazon_b1_gs,10,0.000022%,tfdb,Other
mvm_decoy_uu_test,10,0.000022%,mvm,Man vs Machine
surf_ag_textures_pyramid_tf2,10,0.000022%,surf,Other
sniper_furor_teutonicus,10,0.000022%,sniper,Other
pl_p3_zedul,10,0.000022%,pl,Payload
sniper_den_b2,10,0.000022%,sniper,Other
jump_academy_medss_butts5,10,0.000022%,jump,Other
mvm_bigrock_boot_up_brutality,10,0.000022%,mvm,Man vs Machine
vsh_please,10,0.000022%,vsh,Other
mvm_mannworks_mechanical_mental,10,0.000022%,mvm,Man vs Machine
dbs_bestof_rc1,10,0.000022%,dbs,Other
de_dust2_b4,10,0.000022%,de,Other
koth_combine_b1,10,0.000022%,koth,King of the Hill
bhop_fur_test1,10,0.000022%,bhop,Other
mvm_decoy_3,10,0.000022%,mvm,Man vs Machine
mvm_mannworks_crazy,10,0.000022%,mvm,Man vs Machine
gem_arena_b1,10,0.000022%,gem,Other
fy_ice_field_final,10,0.000022%,fy,Other
ctf_minecraft_town_a3a,10,0.000022%,ctf,Capture the Flag
koth_bunker_a5,10,0.000022%,koth,King of the Hill
dom_presidents_a1,10,0.000022%,dom,Other
koth_muertos_b2,10,0.000022%,koth,King of the Hill
tfdb_minecraft_sv3,10,0.000022%,tfdb,Other
mvm_thedust_b3_mannworks_ironma,10,0.000022%,mvm,Man vs Machine
poi_vs_skeletons,10,0.000022%,poi,Other
mvm_coaltown_no_name,10,0.000022%,mvm,Man vs Machine
mvm_coaltown_highnoonhorror,10,0.000022%,mvm,Man vs Machine
koth_orange_tower,10,0.000022%,koth,King of the Hill
pl_magjen_earth,10,0.000022%,pl,Payload
arena_backlot_b3,10,0.000022%,arena,Other
mvm_30wave_of_the_dead_beta,10,0.000022%,mvm,Man vs Machine
arena_2fort11_d,10,0.000022%,arena,Other
ccdorm_a8_hideandseek,10,0.000022%,ccdorm,Other
arena_blackwood_rc3a,10,0.000022%,arena,Other
tr_walkway_rc2 (4),10,0.000022%,tr,Other
mvm_thedust_b3_mannhattan,10,0.000022%,mvm,Man vs Machine
arena_trainpoint,10,0.000022%,arena,Other
jump_pogo_beardybear,10,0.000022%,jump,Other
cp_drudgery_a15b,10,0.000022%,cp,Capture Point
pl_orange_x_b1,10,0.000022%,pl,Payload
mvm_5gorge_cp_mannworks_interme,10,0.000022%,mvm,Man vs Machine
jump_labrador_beta1j,10,0.000022%,jump,Other
koth_sewers,10,0.000022%,koth,King of the Hill
pl_rivercrossing_rc1,10,0.000022%,pl,Payload
jump_habibi_c1_l12,10,0.000022%,jump,Other
mvm_rottenburg_battle_of_the_bu,10,0.000022%,mvm,Man vs Machine
mvm_coaltown_vengeful_iron,10,0.000022%,mvm,Man vs Machine
dr_dust_b3_reallyfixed,10,0.000022%,dr,Other
cp_skycraft_v3,10,0.000022%,cp,Capture Point
trade_unusual_ut_b3,10,0.000022%,trade,Trade and Achievement
trade_lpt_superior_beta_1_1,10,0.000022%,trade,Trade and Achievement
mvm_highrise_decoy_expert1,10,0.000022%,mvm,Man vs Machine
psf_km_deep_base_v4,10,0.000022%,psf,Other
mvm_bigrock_survival_objlessver,10,0.000022%,mvm,Man vs Machine
mvm_tropics_rc2_normal_dune_dri,10,0.000022%,mvm,Man vs Machine
jump_tf2rj_a4b,10,0.000022%,jump,Other
mvm_rottenburg_push_around,10,0.000022%,mvm,Man vs Machine
mvm_oilrig_rc3_oil_trouble,10,0.000022%,mvm,Man vs Machine
koth_tenebase_v1,9,0.000020%,koth,King of the Hill
mvm_decoy_16wave_expert,9,0.000020%,mvm,Man vs Machine
mvm_highrise_mannworks_expert1,9,0.000020%,mvm,Man vs Machine
dr_r60d_final_decomp_d,9,0.000020%,dr,Other
idle_space_wk,9,0.000020%,idle,Other
cp_italy,9,0.000020%,cp,Capture Point
pl_badwater_christmas,9,0.000020%,pl,Payload
mvm_decoy_poodizle,9,0.000020%,mvm,Man vs Machine
a_blocks_night_mochilabr,9,0.000020%,a,Other
sd_filter_v601,9,0.000020%,sd,Other
vsh_cavesafe,9,0.000020%,vsh,Other
pogo_sync,9,0.000020%,pogo,Other
vsh_dr_wolfenstein_v1_2,9,0.000020%,vsh,Other
mvm_ventus_b6_fawosfix_decoy_ad,9,0.000020%,mvm,Man vs Machine
ultiduo_crater_a1b,9,0.000020%,ultiduo,Other
koth_stallone_workshop,9,0.000020%,koth,King of the Hill
mvm_bigrock_cash_backup,9,0.000020%,mvm,Man vs Machine
d_midnight,9,0.000020%,d,Other
mvm_snowfall_b2_binaryblizzard,9,0.000020%,mvm,Man vs Machine
tr_jailbreak_a2,9,0.000020%,tr,Other
koth_minotaur_b1_troll,9,0.000020%,koth,King of the Hill
jump_descent,9,0.000020%,jump,Other
cp_badlands_edit_3_alt,9,0.000020%,cp,Capture Point
dbs_ring_rc1b,9,0.000020%,dbs,Other
cp_bathroom_a3,9,0.000020%,cp,Capture Point
pl_clocktower_a3,9,0.000020%,pl,Payload
test_map,9,0.000020%,test,Other
mvm_mannhattan_click_expert,9,0.000020%,mvm,Man vs Machine
mvm_testbed_v2_medic,9,0.000020%,mvm,Man vs Machine
tfdb_box_night_a3_gs,9,0.000020%,tfdb,Other
koth_quarry,9,0.000020%,koth,King of the Hill
fun_trade_beach,9,0.000020%,fun,Other
de_dust2_tf,9,0.000020%,de,Other
mvm_coaltown_crocketgun,9,0.000020%,mvm,Man vs Machine
zelda_test,9,0.000020%,zelda,Other
scout_achievements_tdrus_v1d,9,0.000020%,scout,Other
ktf_innercity_v2,9,0.000020%,ktf,Other
pl_eclipse,9,0.000020%,pl,Payload
jump_dev,9,0.000020%,jump,Other
mvm_mannhattan_rockefellerrevol,9,0.000020%,mvm,Man vs Machine
cp_orange_xmas_2016e,9,0.000020%,cp,Capture Point
dm_bridge_bigrock,9,0.000020%,dm,Deathmatch
ccp_circlejerk_rc1,9,0.000020%,ccp,Other
dr_deathpoint_alpha_07_gsn,9,0.000020%,dr,Other
mvm_bigrock_history,9,0.000020%,mvm,Man vs Machine
arena_hyrulecastle,9,0.000020%,arena,Other
jump_sleepy_v2,9,0.000020%,jump,Other
sd_defusal2_72,9,0.000020%,sd,Other
rp_oviscity_gmc4,9,0.000020%,rp,Other
koth_dogenzaka_ii_maxlighting,9,0.000020%,koth,King of the Hill
mvm_snowfall_b2_click_advanced1,9,0.000020%,mvm,Man vs Machine
ctf_extol,9,0.000020%,ctf,Capture the Flag
mvm_killing_fortress_hell_on_ea,9,0.000020%,mvm,Man vs Machine
tfdb_redcourt_intox_gs,9,0.000020%,tfdb,Other
d2_coast_05,9,0.000020%,d2,Other
arena_flourmill_b11,9,0.000020%,arena,Other
mvm_bigrock_super_easy,9,0.000020%,mvm,Man vs Machine
arena_watchtower_fix4,9,0.000020%,arena,Other
mvm_mannworks_might_squad,9,0.000020%,mvm,Man vs Machine
koth_flashflood_alpha,9,0.000020%,koth,King of the Hill
dbs_hotnuke_rc1b,9,0.000020%,dbs,Other
ctf_unintelligence,9,0.000020%,ctf,Capture the Flag
aim_dust2005,9,0.000020%,aim,Other
tfdb_circle_v1,9,0.000020%,tfdb,Other
ctf_facing_convoys_v002,9,0.000020%,ctf,Capture the Flag
ctf_2fort_edit,9,0.000020%,ctf,Capture the Flag
ctf_impact2,9,0.000020%,ctf,Capture the Flag
mvm_bigrock_expert_mine_matter,9,0.000020%,mvm,Man vs Machine
mvm_overlord_b3_decoy_advanced2,9,0.000020%,mvm,Man vs Machine
mvm_atomgrad_a6a_uberupgrades,9,0.000020%,mvm,Man vs Machine
dbs_rebound_b9,9,0.000020%,dbs,Other
mvm_mannworks_blu_15wave,9,0.000020%,mvm,Man vs Machine
jump_suburban,9,0.000020%,jump,Other
dbs_various_b6,9,0.000020%,dbs,Other
jump_samurai_b1,9,0.000020%,jump,Other
tfdb_cwg_gym_v1_gs,9,0.000020%,tfdb,Other
dr_orange_v5,9,0.000020%,dr,Other
koth_garbage_day_final,9,0.000020%,koth,King of the Hill
cp_blackwater_a2,9,0.000020%,cp,Capture Point
cp_cornered_avpp4,9,0.000020%,cp,Capture Point
arena_spooky_ravine_pb1,9,0.000020%,arena,Other
skeeball_b01,9,0.000020%,skeeball,Other
metal_gear_solid,9,0.000020%,metal,Other
mvm_ma_ep12b3_1_easy,9,0.000020%,mvm,Man vs Machine
mvm_decoy_intermediate2_final_m,9,0.000020%,mvm,Man vs Machine
mvm_30wave_of_the_dead,9,0.000020%,mvm,Man vs Machine
zc_tech_b1,9,0.000020%,zc,Other
vsh_sunset,9,0.000020%,vsh,Other
pl_a4_iron,9,0.000020%,pl,Payload
koth_sliderace_city_v2_b2,9,0.000020%,koth,King of the Hill
gmodtech_hotel_beta11,9,0.000020%,gmodtech,Other
qwtf_rock2,9,0.000020%,qwtf,Other
ph_snowworks_a2,9,0.000020%,ph,Other
ctf_2fort_time_tstorm_,9,0.000020%,ctf,Capture the Flag
jump_habibi_c1_l13,9,0.000020%,jump,Other
mvm_adventure_of_30wave_ep4_nor,9,0.000020%,mvm,Man vs Machine
mvm_mc_overdrive_ep2,9,0.000020%,mvm,Man vs Machine
ctf_2fort_dark,9,0.000020%,ctf,Capture the Flag
mvm_decoy_normal_2,9,0.000020%,mvm,Man vs Machine
mvm_bigrock_giant,9,0.000020%,mvm,Man vs Machine
cp_extol_alt6,9,0.000020%,cp,Capture Point
achievement_24-7_club_v1a1,9,0.000020%,achievement,Trade and Achievement
koth_construct,9,0.000020%,koth,King of the Hill
toth2017_lopez1_a1,9,0.000020%,toth2017,Other
tckoth_prefab1,9,0.000020%,tckoth,Other
arena_wood_city,9,0.000020%,arena,Other
mvm_mannhattan_superbossrush,9,0.000020%,mvm,Man vs Machine
pl_vigil_b3,9,0.000020%,pl,Payload
dr_bandicoot_egypt_v8_gsn,9,0.000020%,dr,Other
jump_habibi_c1_l15,9,0.000020%,jump,Other
koth_garden_a8,9,0.000020%,koth,King of the Hill
ctf_turbine_2011,9,0.000020%,ctf,Capture the Flag
mvm_bigrock_30_waves_v46_easy,9,0.000020%,mvm,Man vs Machine
mvm_ventus_eulif,9,0.000020%,mvm,Man vs Machine
demo_jumper,9,0.000020%,demo,Other
slender_the_lost_halls_of_thoug,9,0.000020%,slender,Other
/arena_badlands,9,0.000020%,/arena,Other
mvm_processingv1_br_advanced1,9,0.000020%,mvm,Man vs Machine
koth_oakvale_a3,9,0.000020%,koth,King of the Hill
achievement_gagetxs_servers_27,9,0.000020%,achievement,Trade and Achievement
pull_tf2,9,0.000020%,pull,Other
jump_soldadu,9,0.000020%,jump,Other
koth_highville_a9,9,0.000020%,koth,King of the Hill
tf2_unusual_preview_jul2013,9,0.000020%,tf2,Other
cp_orange_towers_3,9,0.000020%,cp,Capture Point
tfdb_ring_slag_a2_gs,9,0.000020%,tfdb,Other
sarahtf2_map_shrink,9,0.000020%,sarahtf2,Other
cp_sunshine_event_rc3,9,0.000020%,cp,Capture Point
jump_finite_a3,9,0.000020%,jump,Other
koth_nucleus_bots,9,0.000020%,koth,King of the Hill
tfdb_pit_a4,9,0.000020%,tfdb,Other
cp_deepwoods_0013,9,0.000020%,cp,Capture Point
trade_florida,9,0.000020%,trade,Trade and Achievement
mvm_minecraftcity_test19,9,0.000020%,mvm,Man vs Machine
koth_abandoned_mineshaft_final,9,0.000020%,koth,King of the Hill
tc_strata_b1c,9,0.000020%,tc,Other
koth_crate_funday,9,0.000020%,koth,King of the Hill
aoag_shutin_beta_3,9,0.000020%,aoag,Other
tr_karma_night,9,0.000020%,tr,Other
trade_event_obc_5,9,0.000020%,trade,Trade and Achievement
vsh_octagon_a3,9,0.000020%,vsh,Other
cp_lumbermountain,9,0.000020%,cp,Capture Point
vsh_hardhat_b2,9,0.000020%,vsh,Other
cp_viper_industries,9,0.000020%,cp,Capture Point
tr_dummy_r1,9,0.000020%,tr,Other
koth_industrial,9,0.000020%,koth,King of the Hill
trade_plaza_boxing_rc16,8,0.000018%,trade,Trade and Achievement
vsh_dr_rivers,8,0.000018%,vsh,Other
spaceball_a2,8,0.000018%,spaceball,Other
arena_breakfloor_b5,8,0.000018%,arena,Other
cp_trenchcanyon,8,0.000018%,cp,Capture Point
jump_when_b2,8,0.000018%,jump,Other
dr_minecraft_realm_tf2,8,0.000018%,dr,Other
sn_nsa_tf2,8,0.000018%,sn,Other
mvm_ghost_town_zombie666,8,0.000018%,mvm,Man vs Machine
pl_shoreleave_a10,8,0.000018%,pl,Payload
pl_upward_open_v2,8,0.000018%,pl,Payload
mvm_isolation_rc3_text,8,0.000018%,mvm,Man vs Machine
surf_mysteryparadise_bonus,8,0.000018%,surf,Other
cp_overgrown_b5d,8,0.000018%,cp,Capture Point
cp_oragne_z7_ntocvc_fix9,8,0.000018%,cp,Capture Point
derelict_alpha_4,8,0.000018%,derelict,Other
mvm_decoy_alias_expert_enduranc,8,0.000018%,mvm,Man vs Machine
vsh_lost_in_sea_v2,8,0.000018%,vsh,Other
trade_appleloosa_v2_slaughterho,8,0.000018%,trade,Trade and Achievement
scout_jumper,8,0.000018%,scout,Other
tfdb_pocketball_b2_nud,8,0.000018%,tfdb,Other
ctf_doublehouse,8,0.000018%,ctf,Capture the Flag
tfdb_anox_boxhole_v2,8,0.000018%,tfdb,Other
achievement_tinyhuge-h22,8,0.000018%,achievement,Trade and Achievement
mvm_coaltown_expert3,8,0.000018%,mvm,Man vs Machine
egypt_aura_01,8,0.000018%,egypt,Other
mvm_ventus_b6_normal2,8,0.000018%,mvm,Man vs Machine
jump_habibi_c1_l10,8,0.000018%,jump,Other
cp_plazaprototype3,8,0.000018%,cp,Capture Point
mvm_jon_a7_advanced2,8,0.000018%,mvm,Man vs Machine
cp_rumble_b1,8,0.000018%,cp,Capture Point
mvm_on_titan_wrath_of_the_lamb,8,0.000018%,mvm,Man vs Machine
ctf_centawhiroolpool_final,8,0.000018%,ctf,Capture the Flag
cp_orange_z4 ,8,0.000018%,cp,Capture Point
trade_frostbyte_v1,8,0.000018%,trade,Trade and Achievement
vsh_lost_pyramid_v3,8,0.000018%,vsh,Other
achieve_killfarm,8,0.000018%,achieve,Other
dm_mariokart2_hades_b1,8,0.000018%,dm,Deathmatch
dr_hallway_final_gsn,8,0.000018%,dr,Other
pipeball_classic_final,8,0.000018%,pipeball,Other
jump_knight_b1,8,0.000018%,jump,Other
arena_boatshed_a2,8,0.000018%,arena,Other
koth_blob_a7,8,0.000018%,koth,King of the Hill
mvm_rottenburg_advancedsnah1,8,0.000018%,mvm,Man vs Machine
mvm_mannhattan_kill,8,0.000018%,mvm,Man vs Machine
cp_sawtooth_a2,8,0.000018%,cp,Capture Point
jump_strafe_b1,8,0.000018%,jump,Other
cp_burg_test1,8,0.000018%,cp,Capture Point
tf_tower_and_rocket,8,0.000018%,tf,Other
ctf_badlands,8,0.000018%,ctf,Capture the Flag
trade_plaza_night_adventure_a1,8,0.000018%,trade,Trade and Achievement
mvm_bigrockeng,8,0.000018%,mvm,Man vs Machine
mvm_thedust_b2_expert1,8,0.000018%,mvm,Man vs Machine
pl_hazzle_a2_3cp,8,0.000018%,pl,Payload
cp_testthing_a1,8,0.000018%,cp,Capture Point
idle_doctown_a9,8,0.000018%,idle,Other
jump_map_a0_0,8,0.000018%,jump,Other
arena_snowy_watchtower,8,0.000018%,arena,Other
tr_airblast_v1,8,0.000018%,tr,Other
ctf_2fort_classic_badnight25,8,0.000018%,ctf,Capture the Flag
adventure_cutscene,8,0.000018%,adventure,Other
jump_academy_bounce_butts1,8,0.000018%,jump,Other
vsh_dr_factory_v3b_custom,8,0.000018%,vsh,Other
fuck_i_did_the_name_wrong,8,0.000018%,fuck,Other
trade_ultimate_v1,8,0.000018%,trade,Trade and Achievement
ctf_2fort_classic_uber_15,8,0.000018%,ctf,Capture the Flag
fw_cs_estate_v5,8,0.000018%,fw,Other
cp_2fort_beta2,8,0.000018%,cp,Capture Point
fzero_mutecity_b06,8,0.000018%,fzero,Other
trade_googlystation_v6,8,0.000018%,trade,Trade and Achievement
cp_tidal_v3,8,0.000018%,cp,Capture Point
mvm_rottenburg_semlab_challenge,8,0.000018%,mvm,Man vs Machine
koth_desert,8,0.000018%,koth,King of the Hill
dbs_spill_b2,8,0.000018%,dbs,Other
vsh_cube_v5,8,0.000018%,vsh,Other
vsh_kakariko_b2,8,0.000018%,vsh,Other
mvm_mannhattan_16wave_expert,8,0.000018%,mvm,Man vs Machine
cp_city_beta,8,0.000018%,cp,Capture Point
cp_sandcastle,8,0.000018%,cp,Capture Point
koth_torn_rdv1,8,0.000018%,koth,King of the Hill
cp_clue_b1,8,0.000018%,cp,Capture Point
pl_snowycoast_bots,8,0.000018%,pl,Payload
ctf_aerial_b5,8,0.000018%,ctf,Capture the Flag
dm_bridge_rottenburg_advanced2,8,0.000018%,dm,Deathmatch
s_city,8,0.000018%,s,Other
mvm_decoy_jarate_bomber,8,0.000018%,mvm,Man vs Machine
ultiduo_dem_rc10,8,0.000018%,ultiduo,Other
mvm_decoy_creditgrind,8,0.000018%,mvm,Man vs Machine
tc_meridian,8,0.000018%,tc,Other
tfdb_catland_v1_gs,8,0.000018%,tfdb,Other
bm_achievement_01v26,8,0.000018%,bm,Other
jump_cancer,8,0.000018%,jump,Other
tr_jump_4s,8,0.000018%,tr,Other
koth_orange_a1,8,0.000018%,koth,King of the Hill
fw_forts_a2_spawns,8,0.000018%,fw,Other
koth_aerial_a15,8,0.000018%,koth,King of the Hill
trade_forest_lpt_b3,8,0.000018%,trade,Trade and Achievement
dr_aztecan_6,8,0.000018%,dr,Other
koth_reservoir_b4,8,0.000018%,koth,King of the Hill
mvm_winter_b5_test,8,0.000018%,mvm,Man vs Machine
surf_diamond_beta1,8,0.000018%,surf,Other
gm_teamcity_lava,8,0.000018%,gm,Other
jump_quickers_b1,8,0.000018%,jump,Other
ctf_teutanic_a1,8,0.000018%,ctf,Capture the Flag
mario_world_a11,8,0.000018%,mario,Other
cp_orange_edit_tdl_acasutra_alp,8,0.000018%,cp,Capture Point
de_train,8,0.000018%,de,Other
half_life2_part3_v2,8,0.000018%,half,Other
koth_war zone,8,0.000018%,koth,King of the Hill
mvm_coaltown_alias_expert1,8,0.000018%,mvm,Man vs Machine
mvm_decoy_30_waves_v46_hard,8,0.000018%,mvm,Man vs Machine
arena_parking_lot,8,0.000018%,arena,Other
jump_phase_b3,8,0.000018%,jump,Other
trade_revamp_02,8,0.000018%,trade,Trade and Achievement
pl_deep_mine,8,0.000018%,pl,Payload
cdc_orangex_v5,8,0.000018%,cdc,Other
vsh_partyisland_v6,8,0.000018%,vsh,Other
jump_jorgelayja_v2,8,0.000018%,jump,Other
mvm_on_titan_oblivion,8,0.000018%,mvm,Man vs Machine
pl_crosscut_b5,8,0.000018%,pl,Payload
koth_hellcastle,8,0.000018%,koth,King of the Hill
kvdh_rdj_freedom_bot,8,0.000018%,kvdh,Other
tfdb_arena_r2,8,0.000018%,tfdb,Other
vsh_northural_v1,8,0.000018%,vsh,Other
cp_logjam_rc2,8,0.000018%,cp,Capture Point
trade_thebiomes_v1,8,0.000018%,trade,Trade and Achievement
mvm_mannworks_random,8,0.000018%,mvm,Man vs Machine
pl_barnblitz_bots,8,0.000018%,pl,Payload
tfdb_bridge_gs,8,0.000018%,tfdb,Other
vsh_dr_derelict_prima,8,0.000018%,vsh,Other
dm_waterhole_b2,8,0.000018%,dm,Deathmatch
cp_frontline,8,0.000018%,cp,Capture Point
koth_vanguard_event_hhh,8,0.000018%,koth,King of the Hill
koth_flast_92,8,0.000018%,koth,King of the Hill
arena_small,8,0.000018%,arena,Other
mvm_decoy_omnipotence,8,0.000018%,mvm,Man vs Machine
cp_arrospine_v11,8,0.000018%,cp,Capture Point
trade_cafe_final_v4_fixed,8,0.000018%,trade,Trade and Achievement
jonathang_gareferroviaire,8,0.000018%,jonathang,Other
crossover2_p3,8,0.000018%,crossover2,Other
mvm_bigrock_zombies,8,0.000018%,mvm,Man vs Machine
jump_scoutjumper,8,0.000018%,jump,Other
db_blocks_b3,8,0.000018%,db,Other
box_v2,8,0.000018%,box,Other
mvm_coaltown_ironduo,8,0.000018%,mvm,Man vs Machine
jump_zilch_a1,8,0.000018%,jump,Other
vsh_wwe_b1,8,0.000018%,vsh,Other
mvm_coaltownxma_advanced,8,0.000018%,mvm,Man vs Machine
tf_testmap_b19,8,0.000018%,tf,Other
fnaf_multi_floor_a2,8,0.000018%,fnaf,Other
mvm_area_52_rc2_expert,8,0.000018%,mvm,Man vs Machine
mvm_coaltown_onslaught_noicons,8,0.000018%,mvm,Man vs Machine
koth_first,8,0.000018%,koth,King of the Hill
mvm_adventure_of_30wave_ep4_eas,8,0.000018%,mvm,Man vs Machine
cp_devilsbrew_final,8,0.000018%,cp,Capture Point
koth_hey_v2,8,0.000018%,koth,King of the Hill
tfdb_groove_v2_gs,8,0.000018%,tfdb,Other
af_unforeseen_consequences,8,0.000018%,af,Other
arena_worldofwarcraft,8,0.000018%,arena,Other
trade_jfk,8,0.000018%,trade,Trade and Achievement
mvm_derelict_rc3,8,0.000018%,mvm,Man vs Machine
koth_rats_office_b1_2,8,0.000018%,koth,King of the Hill
cp_deepwoods_0010,8,0.000018%,cp,Capture Point
mvm_coaltown_testmission,8,0.000018%,mvm,Man vs Machine
achievement_idle_manorfun,8,0.000018%,achievement,Trade and Achievement
train_test,8,0.000018%,train,Other
arena_chiron_tl34_a1,8,0.000018%,arena,Other
koth_turbine,8,0.000018%,koth,King of the Hill
dr_space_tf2,8,0.000018%,dr,Other
mvm_ventus_b6_fawosfix_coaltown,8,0.000018%,mvm,Man vs Machine
scout_upthrust,8,0.000018%,scout,Other
dbs_ninjanuke_b2,8,0.000018%,dbs,Other
dr_rew,8,0.000018%,dr,Other
ctf_2fort_tf2fr_b2,8,0.000018%,ctf,Capture the Flag
balloon_race_rg_a1,8,0.000018%,balloon,Other
ctf_vikings_final_v6,8,0.000018%,ctf,Capture the Flag
tfdb_quwu_a4,8,0.000018%,tfdb,Other
mvm_mannhattan_test3,8,0.000018%,mvm,Man vs Machine
jump_tjner,8,0.000018%,jump,Other
cp_jump_b1,8,0.000018%,cp,Capture Point
surf_zealand_10,8,0.000018%,surf,Other
fw_tactical_a1_ctf,8,0.000018%,fw,Other
mvm_rottenburg_gray_manns_new_a,8,0.000018%,mvm,Man vs Machine
tr_overstab,8,0.000018%,tr,Other
bh_lumberyard_b1,8,0.000018%,bh,Other
jump_sketchy_rc1,8,0.000018%,jump,Other
mvm_coaltown_event_8,8,0.000018%,mvm,Man vs Machine
fw_blackout_v3b,8,0.000018%,fw,Other
pl_pier_b17e,8,0.000018%,pl,Payload
cp_orange_tower_110,8,0.000018%,cp,Capture Point
crappy_edits,8,0.000018%,crappy,Other
vsh_dr_time_travel_b3,8,0.000018%,vsh,Other
mvm_decoy_30_waves_v46_survival,8,0.000018%,mvm,Man vs Machine
tc_atlantic_v1,8,0.000018%,tc,Other
surf_fathom,8,0.000018%,surf,Other
koth_orange_x3-3_teamos7,8,0.000018%,koth,King of the Hill
koth_leveled_v1_tk,8,0.000018%,koth,King of the Hill
ctf_facetest_b5p,8,0.000018%,ctf,Capture the Flag
mvm_bigrock_general_invade_rema,8,0.000018%,mvm,Man vs Machine
surf_mba_v1,8,0.000018%,surf,Other
mvm_bigrock_1test,8,0.000018%,mvm,Man vs Machine
jump_upsurge,8,0.000018%,jump,Other
ctf_routegs_b1,8,0.000018%,ctf,Capture the Flag
cp_thefrontlineexperience_stage,7,0.000016%,cp,Capture Point
tr_tester,7,0.000016%,tr,Other
mvm_coaltown_crazy,7,0.000016%,mvm,Man vs Machine
ctf_2fort_medievalv18brml,7,0.000016%,ctf,Capture the Flag
cp_bestinclass_v2_tk,7,0.000016%,cp,Capture Point
cp_purple,7,0.000016%,cp,Capture Point
cp_ayres,7,0.000016%,cp,Capture Point
tfdb_rows_a2_gs,7,0.000016%,tfdb,Other
mario_kart_day_b29,7,0.000016%,mario,Other
koth_ravine_b2,7,0.000016%,koth,King of the Hill
koth_lol,7,0.000016%,koth,King of the Hill
tfdb_ship_nud,7,0.000016%,tfdb,Other
koth_slaughterhouse,7,0.000016%,koth,King of the Hill
mvm_decoy_triad,7,0.000016%,mvm,Man vs Machine
jump_freedom_a2,7,0.000016%,jump,Other
surf_fastspiral_retro_tf2,7,0.000016%,surf,Other
jump_ziggurat_b2,7,0.000016%,jump,Other
cp_morras_castle_rc1,7,0.000016%,cp,Capture Point
cp_lavering_v1,7,0.000016%,cp,Capture Point
cp_aqueous_a7,7,0.000016%,cp,Capture Point
cp_badlands_open,7,0.000016%,cp,Capture Point
dm_boyd,7,0.000016%,dm,Deathmatch
dm_runoff,7,0.000016%,dm,Deathmatch
koth_signal,7,0.000016%,koth,King of the Hill
jump_spectrum,7,0.000016%,jump,Other
mvm_coaltown_expertsnahbot,7,0.000016%,mvm,Man vs Machine
achievement_apg_r12bf,7,0.000016%,achievement,Trade and Achievement
mvm_decoy_robin_walker,7,0.000016%,mvm,Man vs Machine
aim_deagle5,7,0.000016%,aim,Other
pl_badwater_rainy2,7,0.000016%,pl,Payload
first_map,7,0.000016%,first,Other
fabian_discovery,7,0.000016%,fabian,Other
ctf_crash_rockwaymiles,7,0.000016%,ctf,Capture the Flag
trade_pokemon_gc,7,0.000016%,trade,Trade and Achievement
balloon_race_v3_rg6,7,0.000016%,balloon,Other
trade_tf2mp_classic_v3b,7,0.000016%,trade,Trade and Achievement
cp_paint_can_event_r3,7,0.000016%,cp,Capture Point
koth_flipflop,7,0.000016%,koth,King of the Hill
mvm_coaltown_alias1,7,0.000016%,mvm,Man vs Machine
ctf_harvest,7,0.000016%,ctf,Capture the Flag
cp_skyscreaper_fix,7,0.000016%,cp,Capture Point
mvm_mars,7,0.000016%,mvm,Man vs Machine
koth_aerial_a11,7,0.000016%,koth,King of the Hill
pl_erosion_a7dev1,7,0.000016%,pl,Payload
jump_miagui,7,0.000016%,jump,Other
dm_winter_park_v1,7,0.000016%,dm,Deathmatch
cp_orange_zombie_event,7,0.000016%,cp,Capture Point
/arena_granary,7,0.000016%,/arena,Other
koth_firstone,7,0.000016%,koth,King of the Hill
test_world_time,7,0.000016%,test,Other
mvm_rottenburg_history_of_tf,7,0.000016%,mvm,Man vs Machine
jb_uhadi_alpha6_raceinc,7,0.000016%,jb,Other
ctf_installation,7,0.000016%,ctf,Capture the Flag
bc_minimal,7,0.000016%,bc,Other
koth_kemptown,7,0.000016%,koth,King of the Hill
cp_3fort_b4,7,0.000016%,cp,Capture Point
koth_map_1,7,0.000016%,koth,King of the Hill
mvm_plateau_eulif,7,0.000016%,mvm,Man vs Machine
arena_nicis_cool_level_b3,7,0.000016%,arena,Other
fw_medieval_jjrt2_v7,7,0.000016%,fw,Other
ctf_2fort_egypt_litefin,7,0.000016%,ctf,Capture the Flag
achievement_idledg_megabox9,7,0.000016%,achievement,Trade and Achievement
yiffy_b7,7,0.000016%,yiffy,Other
mvm_testbed_v2,7,0.000016%,mvm,Man vs Machine
mvm_wintervalley_a1,7,0.000016%,mvm,Man vs Machine
cp_amap_030,7,0.000016%,cp,Capture Point
plr_split_72_a5,7,0.000016%,plr,Payload Race
slender_grotto_b2,7,0.000016%,slender,Other
cp_dispatch_b4,7,0.000016%,cp,Capture Point
mvm_coaltown_expert2a,7,0.000016%,mvm,Man vs Machine
cp_storage_a1,7,0.000016%,cp,Capture Point
mvm_coaltown_milkman,7,0.000016%,mvm,Man vs Machine
mvm_bigrock_pyrorush,7,0.000016%,mvm,Man vs Machine
vault_a1,7,0.000016%,vault,Other
jump_strike_b1,7,0.000016%,jump,Other
cp_untitled,7,0.000016%,cp,Capture Point
pl_angkor_rc1,7,0.000016%,pl,Payload
koth_annex_3_test4,7,0.000016%,koth,King of the Hill
vsh_hella_swag_v1,7,0.000016%,vsh,Other
mvm_mannhattan_click_advanced1,7,0.000016%,mvm,Man vs Machine
ctf_redpolis_b6,7,0.000016%,ctf,Capture the Flag
mvm_coaltown_iconfirm,7,0.000016%,mvm,Man vs Machine
mvm_coaltown_101custom,7,0.000016%,mvm,Man vs Machine
jump_futuristic_a1,7,0.000016%,jump,Other
tfdb_montreal_v3_gs,7,0.000016%,tfdb,Other
cp_degrootkeep_pro_b2,7,0.000016%,cp,Capture Point
koth_pan_test01,7,0.000016%,koth,King of the Hill
ach_minecraft_b17b,7,0.000016%,ach,Other
ctf_aerial_b9,7,0.000016%,ctf,Capture the Flag
mvm_bigrock_boss_mission,7,0.000016%,mvm,Man vs Machine
mvm_snowpine_a2_advanced2,7,0.000016%,mvm,Man vs Machine
dr_office_v2a,7,0.000016%,dr,Other
pl_avanti_a3,7,0.000016%,pl,Payload
jump_lion_a4,7,0.000016%,jump,Other
subway_test,7,0.000016%,subway,Other
tfdb_pingpong_b1_gs,7,0.000016%,tfdb,Other
cp_intermodal_g1f,7,0.000016%,cp,Capture Point
pl_badwater_event_b1,7,0.000016%,pl,Payload
jump_fancy,7,0.000016%,jump,Other
pl_beerbowl_b5a,7,0.000016%,pl,Payload
koth_quackquack_a1,7,0.000016%,koth,King of the Hill
vsh_hongkong_v3,7,0.000016%,vsh,Other
arena_kakariko_pb2_rc1,7,0.000016%,arena,Other
dr_dev_a2,7,0.000016%,dr,Other
dm_bridge_coaltown_advanced,7,0.000016%,dm,Deathmatch
cp_powerground_b3,7,0.000016%,cp,Capture Point
jump_attached_a2,7,0.000016%,jump,Other
dr_origins_of_halloween,7,0.000016%,dr,Other
cp_orange_cross_tbr_1,7,0.000016%,cp,Capture Point
cp_alternator_b1_tk,7,0.000016%,cp,Capture Point
achievement_villains_xmas,7,0.000016%,achievement,Trade and Achievement
jb_wtc_b8,7,0.000016%,jb,Other
dm_1vs1arena_v6,7,0.000016%,dm,Deathmatch
trade_unusual_fog_v6,7,0.000016%,trade,Trade and Achievement
mvm_mannhattan_classwarfare,7,0.000016%,mvm,Man vs Machine
arena_hurricane_a1,7,0.000016%,arena,Other
cp_minigames_test15alpha,7,0.000016%,cp,Capture Point
mvm_testbed_v2_demo,7,0.000016%,mvm,Man vs Machine
dm_duel_blitzkrieg,7,0.000016%,dm,Deathmatch
jump_when_a8,7,0.000016%,jump,Other
duel_ghost_town,7,0.000016%,duel,Other
cosmic_castle_christmas_b1,7,0.000016%,cosmic,Other
itemtest_ab,7,0.000016%,itemtest,Other
mario_dm_mariokart_2014_super_v,7,0.000016%,mario,Other
mvm_badwater_final_d-day,7,0.000016%,mvm,Man vs Machine
cp_degrootkeep_event,7,0.000016%,cp,Capture Point
coop_finaldestination_,7,0.000016%,coop,Other
vsh_dr_foundry_v1,7,0.000016%,vsh,Other
koth_dijistemge_v2_test_noarena,7,0.000016%,koth,King of the Hill
ctf_orange_castle-b2-1,7,0.000016%,ctf,Capture the Flag
autosave_001_003-,7,0.000016%,autosave,Other
mvm_coaltown_ironballs,7,0.000016%,mvm,Man vs Machine
sn_bunker_b2,7,0.000016%,sn,Other
trade_plaza_2_tug_v9,7,0.000016%,trade,Trade and Achievement
jump_rush_ro_beta,7,0.000016%,jump,Other
cp_gullywash_pro,7,0.000016%,cp,Capture Point
mvm_mannworks_ratio_expert1,7,0.000016%,mvm,Man vs Machine
acg_apartment_redux_christmas,7,0.000016%,acg,Other
tf2_modern_payload_map,7,0.000016%,tf2,Other
mkm_firegod_b01h,7,0.000016%,mkm,Other
tfdb_steelworks_a2,7,0.000016%,tfdb,Other
koth_jungle1945,7,0.000016%,koth,King of the Hill
mvm_manndarin,7,0.000016%,mvm,Man vs Machine
jump_triga_a1,7,0.000016%,jump,Other
frontline_payloadmap_d1,7,0.000016%,frontline,Other
dm_duel_v1_pc_rev,7,0.000016%,dm,Deathmatch
autumn_theme,7,0.000016%,autumn,Other
mvm_mannhattan_dead,7,0.000016%,mvm,Man vs Machine
hidden_snowglobe_e2,7,0.000016%,hidden,Other
idle_nplay,7,0.000016%,idle,Other
map_exetest,7,0.000016%,map,Other
mvm_gateway_rc1,7,0.000016%,mvm,Man vs Machine
cp_arcticfortress,7,0.000016%,cp,Capture Point
slender_lockers_b7_c1,7,0.000016%,slender,Other
mvm_decoy_lol,7,0.000016%,mvm,Man vs Machine
mvm_coaltown_arbeitsteilung_by_,7,0.000016%,mvm,Man vs Machine
mvm_highrise_30wave_v60_lvl3,7,0.000016%,mvm,Man vs Machine
jump_cube_a5,7,0.000016%,jump,Other
vsh_isolation_a2,7,0.000016%,vsh,Other
mvm_5gorge_cp_badwater,7,0.000016%,mvm,Man vs Machine
cp_gorge_bots,7,0.000016%,cp,Capture Point
surf_bianco_dev2,7,0.000016%,surf,Other
mvm_highrise_coaltown_expert1,7,0.000016%,mvm,Man vs Machine
jump_kusok_a1,7,0.000016%,jump,Other
koth_cloak_2,7,0.000016%,koth,King of the Hill
jump_scout_escape_b4,7,0.000016%,jump,Other
trade_plaza_2_alpha,7,0.000016%,trade,Trade and Achievement
cp_osiris_a29,7,0.000016%,cp,Capture Point
mvm_doubletap_a3,7,0.000016%,mvm,Man vs Machine
koth_working_class_b4,7,0.000016%,koth,King of the Hill
surf_mysteryparadise,7,0.000016%,surf,Other
mvm_oilrig_rc5,7,0.000016%,mvm,Man vs Machine
toth_mac,7,0.000016%,toth,Other
mvm_mannhattan_massacre,7,0.000016%,mvm,Man vs Machine
koth_sunset_saloon_b1r1,7,0.000016%,koth,King of the Hill
mvm_thedust_b3_decoy_advanced2,7,0.000016%,mvm,Man vs Machine
pl_dreadnought,7,0.000016%,pl,Payload
koth_eros_rc1,7,0.000016%,koth,King of the Hill
tfdb_potato_v3_gs,7,0.000016%,tfdb,Other
tfdb_breakbuilding_v1,7,0.000016%,tfdb,Other
koth_lostsky_v2,7,0.000016%,koth,King of the Hill
mg_bumperkarts,7,0.000016%,mg,Other
mvm_meltdown_rc2,7,0.000016%,mvm,Man vs Machine
achievement_idle_noglass+,7,0.000016%,achievement,Trade and Achievement
mvm_coaltown_phlog_pyro,7,0.000016%,mvm,Man vs Machine
iga_no,7,0.000016%,iga,Other
ctf_collisionroutev1f_,7,0.000016%,ctf,Capture the Flag
idle_servers_v7,7,0.000016%,idle,Other
mvm_bigrock_reveng_beta1,7,0.000016%,mvm,Man vs Machine
c_cp_dustbowl_rainy,7,0.000016%,c,Other
jump_jamp_30_a1,7,0.000016%,jump,Other
cp_jump_tower_v1,7,0.000016%,cp,Capture Point
mvm_bigrock_robocalypse_beta,7,0.000016%,mvm,Man vs Machine
arena_desert_overrun,7,0.000016%,arena,Other
ahhh_b3,7,0.000016%,ahhh,Other
pl_mineshaft_final_b1,6,0.000013%,pl,Payload
jump_yona_b2 (1),6,0.000013%,jump,Other
cp_sulfur_b4_,6,0.000013%,cp,Capture Point
cp_soar,6,0.000013%,cp,Capture Point
pl_barnblitz_free_final_v2,6,0.000013%,pl,Payload
cp_dustbowl_winter_tk,6,0.000013%,cp,Capture Point
cp_hybro_b07_dusk,6,0.000013%,cp,Capture Point
tf_piscina_renov_v1,6,0.000013%,tf,Other
balloon_race_v3_t7 (1),6,0.000013%,balloon,Other
crab_farm_b2,6,0.000013%,crab,Other
darkly_trade_idle_new_2016,6,0.000013%,darkly,Other
pl_batteringram_a5,6,0.000013%,pl,Payload
koth_chronos,6,0.000013%,koth,King of the Hill
conc_aando_b1,6,0.000013%,conc,Other
tfdb_js_breakglass_v3,6,0.000013%,tfdb,Other
dm_doomsday,6,0.000013%,dm,Deathmatch
koth_quarry_rc5_tk,6,0.000013%,koth,King of the Hill
koth_confrontation,6,0.000013%,koth,King of the Hill
koth_hangar_b3,6,0.000013%,koth,King of the Hill
campo_de_guerra_v2,6,0.000013%,campo,Other
idle_wydtradebox,6,0.000013%,idle,Other
tfdb_monopoly_intox,6,0.000013%,tfdb,Other
dm_mariokart_2014_super_v2,6,0.000013%,dm,Deathmatch
fw_payload_v2_fixz,6,0.000013%,fw,Other
jump_er,6,0.000013%,jump,Other
arena_mhanko_a2,6,0.000013%,arena,Other
ctf_2base,6,0.000013%,ctf,Capture the Flag
cp_vanguard_rc5,6,0.000013%,cp,Capture Point
ctf_facingworlds1999,6,0.000013%,ctf,Capture the Flag
sniper_sniperorama,6,0.000013%,sniper,Other
mvm_decoy_testingv2,6,0.000013%,mvm,Man vs Machine
arena_junkyard_a7,6,0.000013%,arena,Other
cp_gamerland_e1m1,6,0.000013%,cp,Capture Point
mvm_coaltown_fatscout,6,0.000013%,mvm,Man vs Machine
trade_patrol_b4,6,0.000013%,trade,Trade and Achievement
jump_decoy,6,0.000013%,jump,Other
tfkart_smkbowserscastle_v4,6,0.000013%,tfkart,Other
tfdb_platforms_slag_b13_gs,6,0.000013%,tfdb,Other
achievement_idle_awesomebox_ov,6,0.000013%,achievement,Trade and Achievement
walkway_orange_vtf2,6,0.000013%,walkway,Other
zf_sealab_final,6,0.000013%,zf,Other
mvm_coaltown_experto2a,6,0.000013%,mvm,Man vs Machine
mvm_coaltown_unlimited_wave,6,0.000013%,mvm,Man vs Machine
koth_crazytank_b1,6,0.000013%,koth,King of the Hill
tfdb_blender_is_op5_gs,6,0.000013%,tfdb,Other
pl_lunar_a2,6,0.000013%,pl,Payload
szf_volcanoevac_v6,6,0.000013%,szf,Other
mvm_mannworks_bothteams,6,0.000013%,mvm,Man vs Machine
my_first_room,6,0.000013%,my,Other
ctf_bunker_b2,6,0.000013%,ctf,Capture the Flag
mvm_mannhattan_hardcore,6,0.000013%,mvm,Man vs Machine
jump_glassydev_rc2_v4,6,0.000013%,jump,Other
jump_competitive_b1,6,0.000013%,jump,Other
mvm_decoy_advanced3+,6,0.000013%,mvm,Man vs Machine
dbs_lotus_b2,6,0.000013%,dbs,Other
cp_intermodal_rc3a,6,0.000013%,cp,Capture Point
d3_citadel_05,6,0.000013%,d3,Other
trade_minecraft_neon_v134_w,6,0.000013%,trade,Trade and Achievement
cp_snow_keep_rc2,6,0.000013%,cp,Capture Point
koth_second_both_2,6,0.000013%,koth,King of the Hill
tf_ocean_01a,6,0.000013%,tf,Other
mensch_aergere_dich3,6,0.000013%,mensch,Other
koth_kemptown_b7,6,0.000013%,koth,King of the Hill
dr_bigroom_light_8_fix,6,0.000013%,dr,Other
cp_infiltrate_a1,6,0.000013%,cp,Capture Point
koth_trainwreck,6,0.000013%,koth,King of the Hill
mvm_overlord_b3_decoy_advanced3,6,0.000013%,mvm,Man vs Machine
tfdb_orbital_a2_gs,6,0.000013%,tfdb,Other
koth_before_badlands,6,0.000013%,koth,King of the Hill
ctf_bball_eventide,6,0.000013%,ctf,Capture the Flag
cp_observatory,6,0.000013%,cp,Capture Point
sarahtf2_map,6,0.000013%,sarahtf2,Other
dr_4halls_v4_gsn,6,0.000013%,dr,Other
koth_orange_50f_tower_,6,0.000013%,koth,King of the Hill
koth_slaughter_a5,6,0.000013%,koth,King of the Hill
koth_terrace,6,0.000013%,koth,King of the Hill
mvm_rottenburg_robotic_ruffler,6,0.000013%,mvm,Man vs Machine
climb_work (1),6,0.000013%,climb,Other
mvm_winter_b5_mannhattan_advanc,6,0.000013%,mvm,Man vs Machine
mvm_flat,6,0.000013%,mvm,Man vs Machine
vsh_dr_winterhill_beta2,6,0.000013%,vsh,Other
achievement_egs_a4_2,6,0.000013%,achievement,Trade and Achievement
koth_dogenzaka_iii,6,0.000013%,koth,King of the Hill
tr_jump_oats_b3,6,0.000013%,tr,Other
dm_duel_v1_panda4,6,0.000013%,dm,Deathmatch
jump_nmotion_v7,6,0.000013%,jump,Other
mvm_mannworks_intermediate2_fin,6,0.000013%,mvm,Man vs Machine
koth_toy_fort_cod_v4,6,0.000013%,koth,King of the Hill
mvm_ghost_town_10wavecustom,6,0.000013%,mvm,Man vs Machine
cp_powerhouse_ami2,6,0.000013%,cp,Capture Point
ctf_hotspring_rc1,6,0.000013%,ctf,Capture the Flag
koth_koth_koth_v3,6,0.000013%,koth,King of the Hill
mvm_coaltown_expert4,6,0.000013%,mvm,Man vs Machine
gmtotf_ilhas_flutuantes_v4,6,0.000013%,gmtotf,Other
koth_gravelpit,6,0.000013%,koth,King of the Hill
cp_purple_eqgl_b1,6,0.000013%,cp,Capture Point
fabian_discovery1a,6,0.000013%,fabian,Other
achievement_idle_cy4g_spooky,6,0.000013%,achievement,Trade and Achievement
ctf_minefort_snow,6,0.000013%,ctf,Capture the Flag
dr_spacecolony_v1,6,0.000013%,dr,Other
koth_wubwubwub_final,6,0.000013%,koth,King of the Hill
mvm_coaltown_snahbots,6,0.000013%,mvm,Man vs Machine
pl_p4_zedul,6,0.000013%,pl,Payload
mvm_ventus_b6_terminal_velocity,6,0.000013%,mvm,Man vs Machine
cp_skyscraper4,6,0.000013%,cp,Capture Point
jump_academy2_toth_rc5,6,0.000013%,jump,Other
cp_ritalin_b1,6,0.000013%,cp,Capture Point
ad_deep_mine,6,0.000013%,ad,Other
koth_blueberries_b1,6,0.000013%,koth,King of the Hill
ph_snowworks_a1,6,0.000013%,ph,Other
dm_hangumhigh_tf_v6,6,0.000013%,dm,Deathmatch
dbs_nuketoss_b6,6,0.000013%,dbs,Other
pl_rumble_b4,6,0.000013%,pl,Payload
vsh_dr_trollrun_final1,6,0.000013%,vsh,Other
cp_weedwar_b2,6,0.000013%,cp,Capture Point
koth_slaughterhouse_72,6,0.000013%,koth,King of the Hill
mvm_mannhattan_ghosttown,6,0.000013%,mvm,Man vs Machine
jb_aberkubz_b2,6,0.000013%,jb,Other
cp_dogenzaka_barebones_vi,6,0.000013%,cp,Capture Point
koth_greenlands,6,0.000013%,koth,King of the Hill
trade_ztg_v4a,6,0.000013%,trade,Trade and Achievement
trade-plaza_un,6,0.000013%,trade-plaza,Other
achievement_scout_tetris,6,0.000013%,achievement,Trade and Achievement
cp_jailbreak_b3,6,0.000013%,cp,Capture Point
cp_orange_z4_kkk_v33a,6,0.000013%,cp,Capture Point
ctf_totalwar_v2,6,0.000013%,ctf,Capture the Flag
mvm_storage_a2_mannworks_advanc,6,0.000013%,mvm,Man vs Machine
boss_land_v1a,6,0.000013%,boss,Other
vsh_dr_pirate_adventure_bby2,6,0.000013%,vsh,Other
koth_dogenzaka_i,6,0.000013%,koth,King of the Hill
ctf_magnetic,6,0.000013%,ctf,Capture the Flag
zf_artpass_dom_v1,6,0.000013%,zf,Other
trade_temple_fox_a7,6,0.000013%,trade,Trade and Achievement
dm_museum_b16,6,0.000013%,dm,Deathmatch
dr_cocainum_v4,6,0.000013%,dr,Other
test_map2,6,0.000013%,test,Other
ctf_vikings,6,0.000013%,ctf,Capture the Flag
coop_masterhand_r2,6,0.000013%,coop,Other
jump_test,6,0.000013%,jump,Other
pl_tapline_b1,6,0.000013%,pl,Payload
mvm_jon_a3_reunion,6,0.000013%,mvm,Man vs Machine
arena_nebula,6,0.000013%,arena,Other
dr_bigroom_remake_final_fix_gsn,6,0.000013%,dr,Other
sd_doomsday_event_bots,6,0.000013%,sd,Other
aim_awp_train,6,0.000013%,aim,Other
vsh_desert_nightb1,6,0.000013%,vsh,Other
mvm_coaltown_thehooviesrevenge,6,0.000013%,mvm,Man vs Machine
mvm_underworld_rc2_2_normal,6,0.000013%,mvm,Man vs Machine
plr_valentine_b2_tk,6,0.000013%,plr,Payload Race
mvm_manncohq_v3_synthetic_suici,6,0.000013%,mvm,Man vs Machine
mvm_mannhattan_city_crasher,6,0.000013%,mvm,Man vs Machine
mge_qixalite_a1,6,0.000013%,mge,Other
koth_watchpoint_a2,6,0.000013%,koth,King of the Hill
conc_lazarus,6,0.000013%,conc,Other
plr_hightower_tdm_r4a2,6,0.000013%,plr,Payload Race
mvm_downtown_a5_advanced,6,0.000013%,mvm,Man vs Machine
koth_af_formula_a1,6,0.000013%,koth,King of the Hill
cp_dogenzaka_test,6,0.000013%,cp,Capture Point
de_xmas_hotel,6,0.000013%,de,Other
vsh_dr_supermario64_v6a,6,0.000013%,vsh,Other
jb_uhadi_alpha2-1,6,0.000013%,jb,Other
tfdb_ring_b4,6,0.000013%,tfdb,Other
mvm_jon_a7_expert,6,0.000013%,mvm,Man vs Machine
arena_geese_tower_b4,6,0.000013%,arena,Other
pl_hatfactory54,6,0.000013%,pl,Payload
mvm_coaltown_superhard,6,0.000013%,mvm,Man vs Machine
mvm_decoy_300_of_scott,6,0.000013%,mvm,Man vs Machine
mvm_coaltown_advanced2_singlepl,6,0.000013%,mvm,Man vs Machine
tfdb_zouzou_b1_gs,6,0.000013%,tfdb,Other
mvm_snowpine_a2,6,0.000013%,mvm,Man vs Machine
jump_where_a1_old,6,0.000013%,jump,Other
jb_mia_b4,6,0.000013%,jb,Other
arena_sunder,6,0.000013%,arena,Other
tfdb_spookylands_a1,6,0.000013%,tfdb,Other
cp_extraction_rc2,6,0.000013%,cp,Capture Point
cp_prolane_rc3,6,0.000013%,cp,Capture Point
mvm_decoy_jaratebomber,6,0.000013%,mvm,Man vs Machine
tfdb_harvest_event_a4_gs,6,0.000013%,tfdb,Other
jump_serpentine,6,0.000013%,jump,Other
trade_bigfields,6,0.000013%,trade,Trade and Achievement
mvm_isolation_rc3_hypothermic_h,6,0.000013%,mvm,Man vs Machine
koth_trainstop_b4,6,0.000013%,koth,King of the Hill
vincent_dargis_ws_tf2,6,0.000013%,vincent,Other
mvm_jon_a7_advanced,6,0.000013%,mvm,Man vs Machine
mvm_downtown_final,6,0.000013%,mvm,Man vs Machine
achievement_idle_botbox_rc2,6,0.000013%,achievement,Trade and Achievement
koth_office_wars_a4,6,0.000013%,koth,King of the Hill
dm_scarletdevilmansion,6,0.000013%,dm,Deathmatch
awp_india,6,0.000013%,awp,Other
mvm_testbed_v2_heavy,6,0.000013%,mvm,Man vs Machine
cp_grassland_rc1,6,0.000013%,cp,Capture Point
cp_dogenzaka_ix_sky,6,0.000013%,cp,Capture Point
mvm_mannworks_mecha_duel,6,0.000013%,mvm,Man vs Machine
slender_aquatic_beta_labs_a1,6,0.000013%,slender,Other
jump_sunshine_15235620,6,0.000013%,jump,Other
mvm_mannworks_eqgl_boss_test_co,6,0.000013%,mvm,Man vs Machine
trade_minecraft_neon_v143_w,6,0.000013%,trade,Trade and Achievement
koth_machine,6,0.000013%,koth,King of the Hill
koth_coldsnap_a1,6,0.000013%,koth,King of the Hill
cp_orange_x3_jump,6,0.000013%,cp,Capture Point
tfdb_dream_island_b2_gs,6,0.000013%,tfdb,Other
dr_rewnozom,6,0.000013%,dr,Other
tfdb_space_sup_vt,6,0.000013%,tfdb,Other
wacky_races_jp,6,0.000013%,wacky,Other
koth_ramjam_b8b,6,0.000013%,koth,King of the Hill
cp_container_v2_tk,6,0.000013%,cp,Capture Point
escort_woolyfirst,6,0.000013%,escort,Other
koth_trenches,6,0.000013%,koth,King of the Hill
trade_dynasty,6,0.000013%,trade,Trade and Achievement
surf_dionysus_rc1,6,0.000013%,surf,Other
jump_ablation_b1,6,0.000013%,jump,Other
rt_upward_a2,6,0.000013%,rt,Other
es_cave7,6,0.000013%,es,Other
koth_ashwood_b6,6,0.000013%,koth,King of the Hill
arena_thegateofallevil,6,0.000013%,arena,Other
trade_creepy_castle_a1,6,0.000013%,trade,Trade and Achievement
mvm_ma_ep10b_1_hard,6,0.000013%,mvm,Man vs Machine
itijcm_small,6,0.000013%,itijcm,Other
tfdb_bk_castleyard_beta_gs,6,0.000013%,tfdb,Other
koth_trainsawlaser_pro,6,0.000013%,koth,King of the Hill
cp_stark_b2_wb,6,0.000013%,cp,Capture Point
gm10_floodinvasion_b1_singlepla,6,0.000013%,gm10,Other
koth_commpost_b1,6,0.000013%,koth,King of the Hill
zf_tower_defence_v12,6,0.000013%,zf,Other
surf_coralis,6,0.000013%,surf,Other
rocket_tower_jump,6,0.000013%,rocket,Other
cp_orange_tp,6,0.000013%,cp,Capture Point
surf_junglespic,6,0.000013%,surf,Other
koth_graywater_2,6,0.000013%,koth,King of the Hill
ctf_2base_v2,6,0.000013%,ctf,Capture the Flag
ach_idle_strange_lanes_v4_b3,6,0.000013%,ach,Other
jump_steak_a1,6,0.000013%,jump,Other
trade_egc_areatest,6,0.000013%,trade,Trade and Achievement
vsh_dr_office_beta3b,6,0.000013%,vsh,Other
koth_crossway_04,6,0.000013%,koth,King of the Hill
koth_aerial_a7,6,0.000013%,koth,King of the Hill
mvm_isolation_rc3_finalround,6,0.000013%,mvm,Man vs Machine
mvm_castle_defense_a4_3boss,6,0.000013%,mvm,Man vs Machine
trade_d_d,6,0.000013%,trade,Trade and Achievement
cp_perilous_a9_tk,6,0.000013%,cp,Capture Point
mvm_coaltown_metal_slug,6,0.000013%,mvm,Man vs Machine
cp_xingouwuqu_a2,6,0.000013%,cp,Capture Point
vsh_runoff_lz,6,0.000013%,vsh,Other
surf_fury_v5_fix,6,0.000013%,surf,Other
cp_dustdwolmini,6,0.000013%,cp,Capture Point
idle_open_v3_1,6,0.000013%,idle,Other
cp_fieldworks_a2b,6,0.000013%,cp,Capture Point
ctf_well_bots,6,0.000013%,ctf,Capture the Flag
tfdb_legoland,6,0.000013%,tfdb,Other
koth_variousartists_rc,5,0.000011%,koth,King of the Hill
gm_hakurei_shrine_stv3,5,0.000011%,gm,Other
dm_bridge_decoy,5,0.000011%,dm,Deathmatch
w3d_e1m1,5,0.000011%,w3d,Other
mvm_yucatan_rc4_advanced2,5,0.000011%,mvm,Man vs Machine
tfdb_pitchblack_a_ig,5,0.000011%,tfdb,Other
cp_infinite_b1,5,0.000011%,cp,Capture Point
dr_skyblocks_b00,5,0.000011%,dr,Other
jump_rollout,5,0.000011%,jump,Other
pl_sacrificial_v2,5,0.000011%,pl,Payload
achievement_idle_skbox_v10,5,0.000011%,achievement,Trade and Achievement
mvm_rottenburg_titanium_takeove,5,0.000011%,mvm,Man vs Machine
vsh_jb64_#2facility,5,0.000011%,vsh,Other
koth_rottenburg_alpha3,5,0.000011%,koth,King of the Hill
vsh_chinatown_b1,5,0.000011%,vsh,Other
tr_airway_b2,5,0.000011%,tr,Other
testing_unusuals,5,0.000011%,testing,Other
ctf_facility_build61,5,0.000011%,ctf,Capture the Flag
mvm_coaltown_huge_guns,5,0.000011%,mvm,Man vs Machine
cp_burghausen_rc1_even,5,0.000011%,cp,Capture Point
surf_10x_redone_rv5,5,0.000011%,surf,Other
mvm_normandy_mannhattan_advance,5,0.000011%,mvm,Man vs Machine
mvm_decoy_santi_test,5,0.000011%,mvm,Man vs Machine
cp_snakewater_final1_d,5,0.000011%,cp,Capture Point
tfdb_baseball_sv,5,0.000011%,tfdb,Other
tr_airshot_juggle,5,0.000011%,tr,Other
dbs_gardens_b4,5,0.000011%,dbs,Other
mvm_badwater_final_badwater_adv,5,0.000011%,mvm,Man vs Machine
mvm_preskool,5,0.000011%,mvm,Man vs Machine
jump_toxic_v5,5,0.000011%,jump,Other
resgate_soldado_ryan,5,0.000011%,resgate,Other
koth_atomic,5,0.000011%,koth,King of the Hill
tf2chess_redux,5,0.000011%,tf2chess,Other
mvm_ghost_town_spooks_normal,5,0.000011%,mvm,Man vs Machine
koth_nippletwister_a2,5,0.000011%,koth,King of the Hill
vsh_dr_mario_b3,5,0.000011%,vsh,Other
cp_mann_shaft_a02,5,0.000011%,cp,Capture Point
cp_vincent_a2,5,0.000011%,cp,Capture Point
koth_moonshine,5,0.000011%,koth,King of the Hill
koth_ahau_rc1,5,0.000011%,koth,King of the Hill
tr_allan,5,0.000011%,tr,Other
tr_juggle_collaide,5,0.000011%,tr,Other
trade_lunarpumpkin_b15,5,0.000011%,trade,Trade and Achievement
mvm_coaltown_thehooviesrevenger,5,0.000011%,mvm,Man vs Machine
mvm_mannhattan_lawn,5,0.000011%,mvm,Man vs Machine
pl_swiftwater_bots,5,0.000011%,pl,Payload
cp_marienwerder_rc,5,0.000011%,cp,Capture Point
koth_gulch,5,0.000011%,koth,King of the Hill
koth_sling_a3,5,0.000011%,koth,King of the Hill
tfdb_virtual_v1b2,5,0.000011%,tfdb,Other
mvm_decoy_impossible,5,0.000011%,mvm,Man vs Machine
mvm_coaltown_expert1+,5,0.000011%,mvm,Man vs Machine
cp_dustbowl_open_v4_fi,5,0.000011%,cp,Capture Point
mvm_underground_b5_intermediate,5,0.000011%,mvm,Man vs Machine
szf_turtle_attack_v3_6,5,0.000011%,szf,Other
koth_octothorpe_21,5,0.000011%,koth,King of the Hill
de_cpl_strike,5,0.000011%,de,Other
mvm_test2,5,0.000011%,mvm,Man vs Machine
trade_minecraft_river_w108,5,0.000011%,trade,Trade and Achievement
mvm_corridors2_goldenengi,5,0.000011%,mvm,Man vs Machine
koth_waterveiw_a1,5,0.000011%,koth,King of the Hill
cp_mygamethatistoatallyawesome,5,0.000011%,cp,Capture Point
ctf_ballin_broccoli,5,0.000011%,ctf,Capture the Flag
sd_doomsday_bots,5,0.000011%,sd,Other
mvm_mannhattan_big_fat_santa,5,0.000011%,mvm,Man vs Machine
dm_mk_minecraft_test1,5,0.000011%,dm,Deathmatch
koth_elbow,5,0.000011%,koth,King of the Hill
koth_firejungle_a2,5,0.000011%,koth,King of the Hill
zs_chef_manor,5,0.000011%,zs,Other
jump_cortex_vfinal,5,0.000011%,jump,Other
trade_minecraft_vatica,5,0.000011%,trade,Trade and Achievement
jump_krakatoa_a7,5,0.000011%,jump,Other
pl_v3_zedul,5,0.000011%,pl,Payload
cp_harbour_b2,5,0.000011%,cp,Capture Point
unusual_reactor_v36d,5,0.000011%,unusual,Other
idle_direct_combat_wyd,5,0.000011%,idle,Other
mvm_corridors_roboticmayhem,5,0.000011%,mvm,Man vs Machine
gd_rodense_a7,5,0.000011%,gd,Other
pl_minecraft_redstone_s15,5,0.000011%,pl,Payload
sarahtf2_map_final_light,5,0.000011%,sarahtf2,Other
koth_canal,5,0.000011%,koth,King of the Hill
koth_bismuth_a1,5,0.000011%,koth,King of the Hill
achievement_idle_nomercy_v4_177,5,0.000011%,achievement,Trade and Achievement
cp_orange_x7_teamos2,5,0.000011%,cp,Capture Point
vsh_tundra_b3,5,0.000011%,vsh,Other
achievement_idle_awesomebox9_ne,5,0.000011%,achievement,Trade and Achievement
trade_stardust_oagv2,5,0.000011%,trade,Trade and Achievement
mvm_overlord_b3_coaltown_expert,5,0.000011%,mvm,Man vs Machine
dr_corkvive_v1,5,0.000011%,dr,Other
hordemode_betatest_v2,5,0.000011%,hordemode,Other
mvm_coaltownxma_intermediate2,5,0.000011%,mvm,Man vs Machine
garbage_day_tk,5,0.000011%,garbage,Other
achi_idlefight_kicak2,5,0.000011%,achi,Other
vsh_frothandtransit_v2,5,0.000011%,vsh,Other
pl_badwater_open,5,0.000011%,pl,Payload
cp_nordmann,5,0.000011%,cp,Capture Point
tr_monoculus_b2,5,0.000011%,tr,Other
cp_thefrontlineexp_s1a3 (1),5,0.000011%,cp,Capture Point
ctf_deceit_event_b,5,0.000011%,ctf,Capture the Flag
dbs_gemini_b3a,5,0.000011%,dbs,Other
cp_dogenzaka_barebones_ii,5,0.000011%,cp,Capture Point
jump_serpentine_b2,5,0.000011%,jump,Other
cp_indulge_tk,5,0.000011%,cp,Capture Point
trade_tea_plaza_v1_m,5,0.000011%,trade,Trade and Achievement
mvm_hillside_v6,5,0.000011%,mvm,Man vs Machine
aim_ag_texture_ceilung,5,0.000011%,aim,Other
dr_trollrun_ent,5,0.000011%,dr,Other
trade_commies_house,5,0.000011%,trade,Trade and Achievement
surf_missing_no_rsfix,5,0.000011%,surf,Other
cp_dryseas_tk,5,0.000011%,cp,Capture Point
koth_mlem,5,0.000011%,koth,King of the Hill
gm_bigcity_fix,5,0.000011%,gm,Other
dm_testmap,5,0.000011%,dm,Deathmatch
mvm_rottenburg_10wave_advenced,5,0.000011%,mvm,Man vs Machine
koth_workstation,5,0.000011%,koth,King of the Hill
aim_headshot,5,0.000011%,aim,Other
renard_sync,5,0.000011%,renard,Other
mvm_mannhattan_2,5,0.000011%,mvm,Man vs Machine
cp_zeppelin,5,0.000011%,cp,Capture Point
koth_maple_ridge_b6_tk,5,0.000011%,koth,King of the Hill
mvm_coaltown_test,5,0.000011%,mvm,Man vs Machine
mvm_decoy_16wave,5,0.000011%,mvm,Man vs Machine
dm_whiskas,5,0.000011%,dm,Deathmatch
jump_jumpydev,5,0.000011%,jump,Other
trade_wicked_plaza,5,0.000011%,trade,Trade and Achievement
jump_when_a2,5,0.000011%,jump,Other
cp_omahabeach_b1,5,0.000011%,cp,Capture Point
plr_hysteria_b2,5,0.000011%,plr,Payload Race
mvm_powerplant_rc1_normal,5,0.000011%,mvm,Man vs Machine
mvm_coaltownxma_coaltownxma_car,5,0.000011%,mvm,Man vs Machine
cp_powerhouse_bots,5,0.000011%,cp,Capture Point
chairmania_derby_a1,5,0.000011%,chairmania,Other
mvm_decoy_gangbangers,5,0.000011%,mvm,Man vs Machine
mvm_processingv1_mw_intermediat,5,0.000011%,mvm,Man vs Machine
pl_2fort_multipath_rc4,5,0.000011%,pl,Payload
vsh_crevice_b6,5,0.000011%,vsh,Other
gmodtech_hotel_rc1a,5,0.000011%,gmodtech,Other
jump_echelon_pre1_fixed,5,0.000011%,jump,Other
pl_logged_in_a2,5,0.000011%,pl,Payload
jump_lanc_v2,5,0.000011%,jump,Other
ctf_battle_creek_s,5,0.000011%,ctf,Capture the Flag
mvm_skullcove_rc1_survival_obje,5,0.000011%,mvm,Man vs Machine
ctf_2fort2,5,0.000011%,ctf,Capture the Flag
jump_muffin_b2,5,0.000011%,jump,Other
mvm_atomgrad_a9,5,0.000011%,mvm,Man vs Machine
mvm_bigrock_expert_rw_edition,5,0.000011%,mvm,Man vs Machine
jump_glow,5,0.000011%,jump,Other
mvm_open_v2,5,0.000011%,mvm,Man vs Machine
koth_hangar,5,0.000011%,koth,King of the Hill
sv_nacht_der_untoten_undead,5,0.000011%,sv,Other
cp_waterworld_a6_alt,5,0.000011%,cp,Capture Point
pl_curve_rc4,5,0.000011%,pl,Payload
mvm_ghost_town_endlessmayhem,5,0.000011%,mvm,Man vs Machine
jurassic_park,5,0.000011%,jurassic,Other
dogenzaka_iv,5,0.000011%,dogenzaka,Other
koth_blitz_a1,5,0.000011%,koth,King of the Hill
trade_plaza_unusualmann_xmass,5,0.000011%,trade,Trade and Achievement
dm_cloudsdale_b8,5,0.000011%,dm,Deathmatch
jump_anew,5,0.000011%,jump,Other
cp_dustbowl_d,5,0.000011%,cp,Capture Point
pl_snowforest_b4,5,0.000011%,pl,Payload
jump_baqu_a2_v1,5,0.000011%,jump,Other
jump_jabba_a2,5,0.000011%,jump,Other
ctf_boofort_release,5,0.000011%,ctf,Capture the Flag
jump_water_davi,5,0.000011%,jump,Other
trade_minecraft_idle,5,0.000011%,trade,Trade and Achievement
cp_gates_granary_tk,5,0.000011%,cp,Capture Point
minecraft_b1,5,0.000011%,minecraft,Other
koth_moretosee,5,0.000011%,koth,King of the Hill
rick_roll_rocket,5,0.000011%,rick,Other
plr_cornfield_c1,5,0.000011%,plr,Payload Race
dm_bridge_mannhattan_advanced2,5,0.000011%,dm,Deathmatch
achievement_nekocity_v7,5,0.000011%,achievement,Trade and Achievement
surf_junglespic_final,5,0.000011%,surf,Other
cp_freight2_b3_full,5,0.000011%,cp,Capture Point
zom_sniper_v2,5,0.000011%,zom,Other
knife_fight_v1,5,0.000011%,knife,Other
ttt_craftroom_v3_d2,5,0.000011%,ttt,Other
mvm_example_puppet,5,0.000011%,mvm,Man vs Machine
mvm_decoy_30wave_onceclass_v20,5,0.000011%,mvm,Man vs Machine
idle_engineer_v5,5,0.000011%,idle,Other
jump_butter_a5,5,0.000011%,jump,Other
trade_entertainment,5,0.000011%,trade,Trade and Achievement
cp_konkreet_b4_tk,5,0.000011%,cp,Capture Point
ctf_lethallavaland_a2,5,0.000011%,ctf,Capture the Flag
koth_ls_event,5,0.000011%,koth,King of the Hill
ph_courtyard_v1_65,5,0.000011%,ph,Other
mvm_intercept_a11_expert1,5,0.000011%,mvm,Man vs Machine
cp_struggle_b4,5,0.000011%,cp,Capture Point
ctf_tenochtitlan_v1,5,0.000011%,ctf,Capture the Flag
mvm_mannworks_surgemp,5,0.000011%,mvm,Man vs Machine
bhop_stref_wat_test1,5,0.000011%,bhop,Other
mvm_manndarin_final_dragonfire,5,0.000011%,mvm,Man vs Machine
mvm_troopers_defend_fawosfix,5,0.000011%,mvm,Man vs Machine
mvm_mannworksxma,5,0.000011%,mvm,Man vs Machine
znf_neighborhood,5,0.000011%,znf,Other
ba_jail_mars_b1,5,0.000011%,ba,Other
jump_phobos_jam_b2,5,0.000011%,jump,Other
cp_mann_shaft_a02_tk,5,0.000011%,cp,Capture Point
dbs_freefall_b6,5,0.000011%,dbs,Other
testgrounds_gnv,5,0.000011%,testgrounds,Other
ccp_lemon,5,0.000011%,ccp,Other
koth_always_b2,5,0.000011%,koth,King of the Hill
ctf_redpolis_b4,5,0.000011%,ctf,Capture the Flag
pl_winterspring_a3,5,0.000011%,pl,Payload
tfdb_dreambox_b1,5,0.000011%,tfdb,Other
cp_dustbowl_open_v4_fix,5,0.000011%,cp,Capture Point
trade_dreamland_v0a,5,0.000011%,trade,Trade and Achievement
mvm_sniparadise_v3_uu99_ironmen,5,0.000011%,mvm,Man vs Machine
jump_habibi_c1_l11,5,0.000011%,jump,Other
jump_concept_a4,5,0.000011%,jump,Other
cp_box_killer_v1_tk,5,0.000011%,cp,Capture Point
koth_warville_beta1,5,0.000011%,koth,King of the Hill
trade_minecraft_neon_v174,5,0.000011%,trade,Trade and Achievement
plr_animus_a8,5,0.000011%,plr,Payload Race
cp_gorge_event_bots,5,0.000011%,cp,Capture Point
cp_airraid_b1,5,0.000011%,cp,Capture Point
mvm_ma_ep16b_1_fixed_hard,5,0.000011%,mvm,Man vs Machine
mvm_meltdown_rc4_ponies2,5,0.000011%,mvm,Man vs Machine
dr_thmule_2004_jugfixer_final_f,5,0.000011%,dr,Other
cp_orange_transport_a1,5,0.000011%,cp,Capture Point
test_koth,5,0.000011%,test,Other
mvm_decoy_opheavy,5,0.000011%,mvm,Man vs Machine
jump_habibi_c1_l4,5,0.000011%,jump,Other
mg_runman_v2,5,0.000011%,mg,Other
mvm_badwater_final_advanced2,5,0.000011%,mvm,Man vs Machine
ad_deep_mine_2,5,0.000011%,ad,Other
cp_redpolis_b2,5,0.000011%,cp,Capture Point
mvm_rooftop_b2,5,0.000011%,mvm,Man vs Machine
trade_kfbd_nightclub_final,5,0.000011%,trade,Trade and Achievement
koth_pantheon_a16,5,0.000011%,koth,King of the Hill
dm_floating_lands_fix_30waves_s,5,0.000011%,dm,Deathmatch
koth_side_track,5,0.000011%,koth,King of the Hill
j_l_jump_termywermy_beta4,5,0.000011%,j,Other
tr_walkway_fix bsp,5,0.000011%,tr,Other
cp_skyscraper2,5,0.000011%,cp,Capture Point
vsh_palanquin_ship_final,5,0.000011%,vsh,Other
dm_castlewars_v3,5,0.000011%,dm,Deathmatch
koth_battletube_a4,5,0.000011%,koth,King of the Hill
vsh_dr_sawmill_fixed_v2_bg,5,0.000011%,vsh,Other
jump_academy_easywalls_a3,5,0.000011%,jump,Other
pl_thundermountain_bots,5,0.000011%,pl,Payload
tr_walkway_rc2(1),5,0.000011%,tr,Other
mvm_coaltown_viscous_cycle_of_m,5,0.000011%,mvm,Man vs Machine
tfdb_split_v4,5,0.000011%,tfdb,Other
trade_hnation_v1,5,0.000011%,trade,Trade and Achievement
cp_glassworks_rc2_tk,5,0.000011%,cp,Capture Point
zf_starspace_b1,5,0.000011%,zf,Other
mvm_coaltown_custom,5,0.000011%,mvm,Man vs Machine
koth_tomb_a8,5,0.000011%,koth,King of the Hill
trade_hyrule_oot3d_alpha_5a,5,0.000011%,trade,Trade and Achievement
trade_mesa_v001f_30waves_surviv,5,0.000011%,trade,Trade and Achievement
tfdb_egypt_hall,5,0.000011%,tfdb,Other
trade_minecraft_glorified_beta3,5,0.000011%,trade,Trade and Achievement
j_l_jump_embrace,5,0.000011%,j,Other
cr_sunpit,5,0.000011%,cr,Other
invasion_doomsday,5,0.000011%,invasion,Other
koth_noname_a7,5,0.000011%,koth,King of the Hill
dr_wintervalley_tf2,5,0.000011%,dr,Other
jump_slomo,5,0.000011%,jump,Other
mvm_maelstrom_rc1_n,5,0.000011%,mvm,Man vs Machine
dr_lake,5,0.000011%,dr,Other
ad_deep_mine_3,5,0.000011%,ad,Other
jump_aviator_beta,5,0.000011%,jump,Other
achievement_pyro_final,5,0.000011%,achievement,Trade and Achievement
koth_sandlands,5,0.000011%,koth,King of the Hill
mvm_machine_attacks_ep8_10,5,0.000011%,mvm,Man vs Machine
cp_orange_x3_fix_v19,5,0.000011%,cp,Capture Point
mvm_tropics_rc6_advanced_excava,5,0.000011%,mvm,Man vs Machine
koth_garden_a5,5,0.000011%,koth,King of the Hill
conc_arc_b1,5,0.000011%,conc,Other
pl_chwagau,5,0.000011%,pl,Payload
achievement_mannvsmachines,5,0.000011%,achievement,Trade and Achievement
dr_block_v6_gsn,5,0.000011%,dr,Other
koth_aerial_a14,4,0.000009%,koth,King of the Hill
rusty_room,4,0.000009%,rusty,Other
tf_pits_killbox,4,0.000009%,tf,Other
trade_clickshome.bsp,4,0.000009%,trade,Trade and Achievement
achievement_turbo_rhobv3fall,4,0.000009%,achievement,Trade and Achievement
ave_hq_a1_testsomething,4,0.000009%,ave,Other
mvm_coaltown_experto2,4,0.000009%,mvm,Man vs Machine
dm_construct,4,0.000009%,dm,Deathmatch
dms_space_maniac,4,0.000009%,dms,Other
ctf_1fort,4,0.000009%,ctf,Capture the Flag
trade_plaza_lord_b9_night,4,0.000009%,trade,Trade and Achievement
cp_420_orange_madness_v1,4,0.000009%,cp,Capture Point
tfk_mario_raceway4,4,0.000009%,tfk,Other
pl_3dnrav_a1,4,0.000009%,pl,Payload
dbs_elite_b5,4,0.000009%,dbs,Other
trade_plaza_hg_at2a5,4,0.000009%,trade,Trade and Achievement
mvm_rottenburg_german_invasion,4,0.000009%,mvm,Man vs Machine
dbs_high_b1,4,0.000009%,dbs,Other
jump_labrador_beta1h,4,0.000009%,jump,Other
cp_redpolis_b5,4,0.000009%,cp,Capture Point
koth_station,4,0.000009%,koth,King of the Hill
jb_legojail_b1,4,0.000009%,jb,Other
jump_benroads_a4,4,0.000009%,jump,Other
pl_mineshaft_rc1d,4,0.000009%,pl,Payload
ctf_aerial_b14_c1,4,0.000009%,ctf,Capture the Flag
cp_orange_minecraft_remix,4,0.000009%,cp,Capture Point
mvm_mannworks_31waveroboedition,4,0.000009%,mvm,Man vs Machine
trade_minecraft_enhanced_v5,4,0.000009%,trade,Trade and Achievement
achievement_basejumper_v1,4,0.000009%,achievement,Trade and Achievement
gmodtech_hotel_beta10,4,0.000009%,gmodtech,Other
ss_graveyard_a1,4,0.000009%,ss,Other
battlefield_4,4,0.000009%,battlefield,Other
vsh_groundlab_a2,4,0.000009%,vsh,Other
mvm_ghost_town_act2_beta,4,0.000009%,mvm,Man vs Machine
koth_hardway,4,0.000009%,koth,King of the Hill
trade_minecraft_unusual_v2,4,0.000009%,trade,Trade and Achievement
koth_sierra_t11,4,0.000009%,koth,King of the Hill
zs_turbine_v3,4,0.000009%,zs,Other
tm_stadium_b2c,4,0.000009%,tm,Other
pl_emerge_b2,4,0.000009%,pl,Payload
mvm_ghost_town_hero,4,0.000009%,mvm,Man vs Machine
mvm_ghost_town_the_apokaritz_b1,4,0.000009%,mvm,Man vs Machine
tfdb_desert_sv2,4,0.000009%,tfdb,Other
koth_sierra_t4,4,0.000009%,koth,King of the Hill
surf_christmas2_test2,4,0.000009%,surf,Other
pl_military_base_final,4,0.000009%,pl,Payload
trade_halloween,4,0.000009%,trade,Trade and Achievement
mvm_decoy_mbisonswave,4,0.000009%,mvm,Man vs Machine
dom_cliffhanger_b11_tk,4,0.000009%,dom,Other
jump_aperture_sxh,4,0.000009%,jump,Other
cp_soar_tk,4,0.000009%,cp,Capture Point
trade_plaza_final-r01,4,0.000009%,trade,Trade and Achievement
jump_scout_b1,4,0.000009%,jump,Other
ctf_turbinecp_b5,4,0.000009%,ctf,Capture the Flag
koth_conveyor,4,0.000009%,koth,King of the Hill
dr_trench,4,0.000009%,dr,Other
jump_darkness_v1a,4,0.000009%,jump,Other
cp_orange_skyward_e,4,0.000009%,cp,Capture Point
ctf_turbine_event_b5_tk,4,0.000009%,ctf,Capture the Flag
jump_scout_b2,4,0.000009%,jump,Other
koth_hiddentomb_a6,4,0.000009%,koth,King of the Hill
dm_museum_b16_tk,4,0.000009%,dm,Deathmatch
jump_straight_a2,4,0.000009%,jump,Other
jump_vex_b1,4,0.000009%,jump,Other
tfdb_boxofwave_a1,4,0.000009%,tfdb,Other
jump_typh_a2,4,0.000009%,jump,Other
cp_snowplow_b4b,4,0.000009%,cp,Capture Point
jump_academy_hardpogo_b3,4,0.000009%,jump,Other
dr_bank_v7_vsh,4,0.000009%,dr,Other
gm_poltergeist,4,0.000009%,gm,Other
clash_of_clans_test9,4,0.000009%,clash,Other
koth_sierra_t6,4,0.000009%,koth,King of the Hill
mvm_decoy_wrath_of_brutus,4,0.000009%,mvm,Man vs Machine
tfdb_cavern,4,0.000009%,tfdb,Other
mvm_decoy_event,4,0.000009%,mvm,Man vs Machine
mvm_mannworks_30_waves,4,0.000009%,mvm,Man vs Machine
koth_slasher_rc1_tk,4,0.000009%,koth,King of the Hill
tfdb_ovni_v7b,4,0.000009%,tfdb,Other
ctf_powerhouse_night,4,0.000009%,ctf,Capture the Flag
jump_friends_a5_6,4,0.000009%,jump,Other
mvm_bigrock_custom_celebrations,4,0.000009%,mvm,Man vs Machine
pl_crystalline_a2,4,0.000009%,pl,Payload
sd_demolishion,4,0.000009%,sd,Other
mvm_decoy_allmvmbosses,4,0.000009%,mvm,Man vs Machine
cp_snowstation_b1,4,0.000009%,cp,Capture Point
jump_heaven_a2,4,0.000009%,jump,Other
cp_derecho_b4,4,0.000009%,cp,Capture Point
de_prodigy,4,0.000009%,de,Other
circo_de_soleil_trolls,4,0.000009%,circo,Other
mvm_downtown_final1_economic_ex,4,0.000009%,mvm,Man vs Machine
tfdb_castle_gs,4,0.000009%,tfdb,Other
plr_skyfortress_a11,4,0.000009%,plr,Payload Race
mvm_ma_ep16b_1_fixed_easy,4,0.000009%,mvm,Man vs Machine
cp_edifice_b4,4,0.000009%,cp,Capture Point
dm_steamlab,4,0.000009%,dm,Deathmatch
dr_psykopat_fix_gsn,4,0.000009%,dr,Other
trade_plaza_crazy,4,0.000009%,trade,Trade and Achievement
dm_duel_rg_v6_d,4,0.000009%,dm,Deathmatch
koth_pro_viaduct_rc4_tk,4,0.000009%,koth,King of the Hill
dz_test1_betatest,4,0.000009%,dz,Other
dm_shit,4,0.000009%,dm,Deathmatch
jump_schadenfreude_b2,4,0.000009%,jump,Other
mvm_coaltown_mega_expert_1,4,0.000009%,mvm,Man vs Machine
mvm_yucatan_rc4_n,4,0.000009%,mvm,Man vs Machine
ctf_turbine_675,4,0.000009%,ctf,Capture the Flag
mvm_rottenburg_butzet,4,0.000009%,mvm,Man vs Machine
pl_millstone,4,0.000009%,pl,Payload
trade_minecraft_neon_v181,4,0.000009%,trade,Trade and Achievement
mvm_mannhattan_chaoticupgrade,4,0.000009%,mvm,Man vs Machine
ctf_2fort_classic_mod_bd40,4,0.000009%,ctf,Capture the Flag
fw_ut_match1_v3,4,0.000009%,fw,Other
surf_royal,4,0.000009%,surf,Other
idle_medival,4,0.000009%,idle,Other
ba_jail_xtreme_wakka_b2a,4,0.000009%,ba,Other
surf_apollonian,4,0.000009%,surf,Other
slender_w3d_e3m09_b2,4,0.000009%,slender,Other
pl_hoodoo_final_bots,4,0.000009%,pl,Payload
mba_v1,4,0.000009%,mba,Other
achievement_nekocity_v2,4,0.000009%,achievement,Trade and Achievement
ach_ystransport_v8f,4,0.000009%,ach,Other
cp_orange_x_7_wl4b,4,0.000009%,cp,Capture Point
aim_ak-colt_arg_fawosfix_decoy_,4,0.000009%,aim,Other
tr_walkway_rc2bsp,4,0.000009%,tr,Other
servertest_07,4,0.000009%,servertest,Other
derelict_alpha_10,4,0.000009%,derelict,Other
cp_canyonfodder_b8,4,0.000009%,cp,Capture Point
mvm_ghost_town_iconfirm,4,0.000009%,mvm,Man vs Machine
trade_mesa_v001f_click_advanced,4,0.000009%,trade,Trade and Achievement
dr_bombmission,4,0.000009%,dr,Other
cp_showmelight,4,0.000009%,cp,Capture Point
tfdb_oilrig_gs,4,0.000009%,tfdb,Other
koth_annex,4,0.000009%,koth,King of the Hill
proto_trainstation_d,4,0.000009%,proto,Other
dr_family_guy_tf2,4,0.000009%,dr,Other
cp_monte_cassino,4,0.000009%,cp,Capture Point
koth_stonebridge,4,0.000009%,koth,King of the Hill
mvm_coaltown_expert_50,4,0.000009%,mvm,Man vs Machine
mvm_testbed_v2_soldier,4,0.000009%,mvm,Man vs Machine
vsh_derelict_beta,4,0.000009%,vsh,Other
gm_nightmare_church_rc24,4,0.000009%,gm,Other
db_mag_pyro2_b2,4,0.000009%,db,Other
jb_islandtown,4,0.000009%,jb,Other
achievement_idle_awesomebox43,4,0.000009%,achievement,Trade and Achievement
cp_orange_rush_winter_fix,4,0.000009%,cp,Capture Point
ctf_bridgecraft_r2,4,0.000009%,ctf,Capture the Flag
cp_logjam_rc1,4,0.000009%,cp,Capture Point
cp_1,4,0.000009%,cp,Capture Point
inf_insidejob,4,0.000009%,inf,Other
surf_10x_redone_rv9,4,0.000009%,surf,Other
szf_isaac_beta13_tk,4,0.000009%,szf,Other
mvm_mannhattan_insane,4,0.000009%,mvm,Man vs Machine
achievement_scout_ultra,4,0.000009%,achievement,Trade and Achievement
rtd_madness_v21_event_strawberr,4,0.000009%,rtd,Other
slender_troubled_a2_demonhamste,4,0.000009%,slender,Other
cp_orange_x3_freeway2,4,0.000009%,cp,Capture Point
mvm_mannhattan_urban,4,0.000009%,mvm,Man vs Machine
crab_valley_b1,4,0.000009%,crab,Other
kart_blockfort_tk,4,0.000009%,kart,Other
koth_aperture_science_iiia_tk,4,0.000009%,koth,King of the Hill
mvm_mannworks_lightmares,4,0.000009%,mvm,Man vs Machine
achievement_idle_noglass (1),4,0.000009%,achievement,Trade and Achievement
fy_iceworld_cssource,4,0.000009%,fy,Other
oj_penguin_pakked,4,0.000009%,oj,Other
zom_skyforts_v4,4,0.000009%,zom,Other
cp_drudgery_a13,4,0.000009%,cp,Capture Point
tfdb_mlp_a4,4,0.000009%,tfdb,Other
sn_snipingarts_2,4,0.000009%,sn,Other
koth_buttecanyon,4,0.000009%,koth,King of the Hill
jump_tf2rj_bonus1_a2,4,0.000009%,jump,Other
i_want_to_suck_unskilleds_dick4,4,0.000009%,i,Other
achievement_idle_awesomebox53,4,0.000009%,achievement,Trade and Achievement
ba_auschwitz,4,0.000009%,ba,Other
zom_day_z_v2,4,0.000009%,zom,Other
king_dynasty_v2,4,0.000009%,king,Other
cp_orange_panda_edit_v1,4,0.000009%,cp,Capture Point
db_mag_2sides2_b2,4,0.000009%,db,Other
payload_one_text_essaitest2text,4,0.000009%,payload,Other
dr_challenging_v0_rsx,4,0.000009%,dr,Other
koth_rel_a1,4,0.000009%,koth,King of the Hill
ba_submarine,4,0.000009%,ba,Other
ctf_badlands_mannpower,4,0.000009%,ctf,Capture the Flag
pl_junktown_a2,4,0.000009%,pl,Payload
mvm_troopers_defend_fawosfix_d-,4,0.000009%,mvm,Man vs Machine
trade_plaza_neon_65,4,0.000009%,trade,Trade and Achievement
tfdb_quwu_a2,4,0.000009%,tfdb,Other
ducks_favorite_map,4,0.000009%,ducks,Other
arena_tfkart_portal_v2,4,0.000009%,arena,Other
dm_megahealth_a1,4,0.000009%,dm,Deathmatch
tfdb_box_space_a5_fix_gs,4,0.000009%,tfdb,Other
mvm_rottenburg_uu99_ironmen,4,0.000009%,mvm,Man vs Machine
cp_delve_b2a,4,0.000009%,cp,Capture Point
trade_unkown_v0_2_0,4,0.000009%,trade,Trade and Achievement
pl_humidity_b5_sedweel,4,0.000009%,pl,Payload
ctf_facetest,4,0.000009%,ctf,Capture the Flag
tr_walkway_rc2121,4,0.000009%,tr,Other
mvm_coaltown_ratio_expert1,4,0.000009%,mvm,Man vs Machine
room2016_aeix,4,0.000009%,room2016,Other
mvm_terrorlict_final1,4,0.000009%,mvm,Man vs Machine
koth_friction_a4,4,0.000009%,koth,King of the Hill
mvm_hightower,4,0.000009%,mvm,Man vs Machine
jump_location_a3,4,0.000009%,jump,Other
de_tides,4,0.000009%,de,Other
jail_minecraft_snow_pbfix01,4,0.000009%,jail,Other
koth_wathermathy,4,0.000009%,koth,King of the Hill
cp_daytrip_rc2,4,0.000009%,cp,Capture Point
tr_medic_surfing_a1,4,0.000009%,tr,Other
cp_traincrossing_a1,4,0.000009%,cp,Capture Point
bh_offblast_b1,4,0.000009%,bh,Other
surf_crater2,4,0.000009%,surf,Other
ffa_hills,4,0.000009%,ffa,Other
jump_sdm_final_tk,4,0.000009%,jump,Other
mvm_decoy_cave_johnson,4,0.000009%,mvm,Man vs Machine
koth_proton,4,0.000009%,koth,King of the Hill
koth_delivery_rc4,4,0.000009%,koth,King of the Hill
roket_jumping_betav1,4,0.000009%,roket,Other
mvm_ghost_town_the_true_nightma,4,0.000009%,mvm,Man vs Machine
ctf_rift_rc2,4,0.000009%,ctf,Capture the Flag
jump_sbs_t2,4,0.000009%,jump,Other
de_port,4,0.000009%,de,Other
cp_orange_tvc_spooky_a3,4,0.000009%,cp,Capture Point
chand_baori,4,0.000009%,chand,Other
tfdb_pizza_remix_v2,4,0.000009%,tfdb,Other
strange_level_blockfort,4,0.000009%,strange,Other
strange-boost_advanced,4,0.000009%,strange-boost,Other
trade_minecraft_2014_v1,4,0.000009%,trade,Trade and Achievement
mvm_manndarin_final_gummylion,4,0.000009%,mvm,Man vs Machine
cp_okinawa_a4,4,0.000009%,cp,Capture Point
pl_bounce_beta_10,4,0.000009%,pl,Payload
itemtest_tk,4,0.000009%,itemtest,Other
jump_triga_b1,4,0.000009%,jump,Other
surf_voteforthisone,4,0.000009%,surf,Other
trade_dreamland_v0c,4,0.000009%,trade,Trade and Achievement
derelict_alpha_1,4,0.000009%,derelict,Other
pl_warworks_a2,4,0.000009%,pl,Payload
vsh_warehouse2_v1,4,0.000009%,vsh,Other
surf_zbig,4,0.000009%,surf,Other
cp_minigames_test16,4,0.000009%,cp,Capture Point
mvm_mannhattan_advanced2+,4,0.000009%,mvm,Man vs Machine
tfdb_waw_p3,4,0.000009%,tfdb,Other
fb_subway_b6_tk,4,0.000009%,fb,Other
trade_plaza_station_sq,4,0.000009%,trade,Trade and Achievement
jump_lea,4,0.000009%,jump,Other
mvm_decoy_experto2,4,0.000009%,mvm,Man vs Machine
jump_tpn_rc2,4,0.000009%,jump,Other
fluttershys_house_b1,4,0.000009%,fluttershys,Other
achievement_scout_elite,4,0.000009%,achievement,Trade and Achievement
slender_biotics_lab_v1_d,4,0.000009%,slender,Other
trade_appleloosa_v2_christmas,4,0.000009%,trade,Trade and Achievement
pl_nat20_b2b,4,0.000009%,pl,Payload
koth_static,4,0.000009%,koth,King of the Hill
mvm_decoy_canteen,4,0.000009%,mvm,Man vs Machine
cp_rooftop_b6_tk,4,0.000009%,cp,Capture Point
mvm_playawave,4,0.000009%,mvm,Man vs Machine
cs_havana,4,0.000009%,cs,Other
vsh_paths_scares_v2,4,0.000009%,vsh,Other
dr_hardhat_v1,4,0.000009%,dr,Other
scout_achievements_tdrus_pl,4,0.000009%,scout,Other
koth_nicka_firstmap_31_final,4,0.000009%,koth,King of the Hill
tfdb_lithium_gs,4,0.000009%,tfdb,Other
koth_buried,4,0.000009%,koth,King of the Hill
derby_space_b3_tk,4,0.000009%,derby,Other
ur_ded,4,0.000009%,ur,Other
zf_skool_5,4,0.000009%,zf,Other
koth_unknown,4,0.000009%,koth,King of the Hill
mvm_coaltown_charge_noicons,4,0.000009%,mvm,Man vs Machine
trimp_devramps,4,0.000009%,trimp,Other
mvm_coaltown_event_wave667,4,0.000009%,mvm,Man vs Machine
dm_bridge_historyoftf,4,0.000009%,dm,Deathmatch
mvm_rooftop_survive,4,0.000009%,mvm,Man vs Machine
tf_walkway,4,0.000009%,tf,Other
mvm_coaltown_event_4,4,0.000009%,mvm,Man vs Machine
mvm_rottenburg_burgstrike,4,0.000009%,mvm,Man vs Machine
dm_ponyville_b7,4,0.000009%,dm,Deathmatch
cp_grey_x0,4,0.000009%,cp,Capture Point
finaldestination_nosky,4,0.000009%,finaldestination,Other
pl_upward_abandoned_b1,4,0.000009%,pl,Payload
pl_enclosure_rc4a,4,0.000009%,pl,Payload
mvm_hydro_a3_bigrock_advanced1,4,0.000009%,mvm,Man vs Machine
pl_everest_v5_b2,4,0.000009%,pl,Payload
slender_falling_metro_b1,4,0.000009%,slender,Other
cp_logjam_b17,4,0.000009%,cp,Capture Point
cp_orange_x268,4,0.000009%,cp,Capture Point
arena_borough_tilt,4,0.000009%,arena,Other
dm_sdm_final_tk,4,0.000009%,dm,Deathmatch
trade_minecraft_fc_v3,4,0.000009%,trade,Trade and Achievement
koth_sekhmet_b2_tk,4,0.000009%,koth,King of the Hill
koth_lazarus_a12,4,0.000009%,koth,King of the Hill
stt_example,4,0.000009%,stt,Other
slender_biotics_lab_v2_d,4,0.000009%,slender,Other
koth_nakum_r,4,0.000009%,koth,King of the Hill
mvm_rottenburg_vengeful_iron,4,0.000009%,mvm,Man vs Machine
cp_glacier_rc7,4,0.000009%,cp,Capture Point
koth_dust_2_v1,4,0.000009%,koth,King of the Hill
cp_spirtozavod,4,0.000009%,cp,Capture Point
pl_a5_iron,4,0.000009%,pl,Payload
jump_tf2rj_a4a,4,0.000009%,jump,Other
koth_urhcin_underpass,4,0.000009%,koth,King of the Hill
ctf_2fort_saraya8n,4,0.000009%,ctf,Capture the Flag
db_blackhole_b3,4,0.000009%,db,Other
koth_scarab_a3,4,0.000009%,koth,King of the Hill
trade_post_railbait,4,0.000009%,trade,Trade and Achievement
mvm_coaltown_intermediate2_fina,4,0.000009%,mvm,Man vs Machine
underworld_test,4,0.000009%,underworld,Other
ctf_skybase_b2a,4,0.000009%,ctf,Capture the Flag
pl_badass,4,0.000009%,pl,Payload
rj_jump_academy_easy_c,4,0.000009%,rj,Other
mvm_bigrock_event,4,0.000009%,mvm,Man vs Machine
dbs_spacedust_b3,4,0.000009%,dbs,Other
koth_dijistemge,4,0.000009%,koth,King of the Hill
pl_drawpu_rc1,4,0.000009%,pl,Payload
surf_parrot_selector,4,0.000009%,surf,Other
dm_appleloosa_b5,4,0.000009%,dm,Deathmatch
trains_v1,4,0.000009%,trains,Other
trade_plaza_valley_b19,4,0.000009%,trade,Trade and Achievement
pl_millstone_bots,4,0.000009%,pl,Payload
csl_match_b3,4,0.000009%,csl,Other
mvm_hillside_v6_normal2,4,0.000009%,mvm,Man vs Machine
sistema_solar,4,0.000009%,sistema,Other
achievement_idle_cy4g_parkz,4,0.000009%,achievement,Trade and Achievement
vsh_crypt_a3,4,0.000009%,vsh,Other
cp_deadsky_a3,4,0.000009%,cp,Capture Point
ctf_hellfire_bots,4,0.000009%,ctf,Capture the Flag
cp_standin_rc1,4,0.000009%,cp,Capture Point
koth_fuel_a4,4,0.000009%,koth,King of the Hill
pl_wacky_races_v2,4,0.000009%,pl,Payload
ctf_maze,4,0.000009%,ctf,Capture the Flag
cp_raiden_soba,4,0.000009%,cp,Capture Point
ph_bargain_hunter_a1,4,0.000009%,ph,Other
idle_kawaiihouse3,4,0.000009%,idle,Other
mvm_terrorcastle_lasthope_a3,4,0.000009%,mvm,Man vs Machine
gm_teamcity_festive,4,0.000009%,gm,Other
mvm_bigrock_spyngi,4,0.000009%,mvm,Man vs Machine
sav_office,4,0.000009%,sav,Other
cs_oriental,4,0.000009%,cs,Other
aim_deagle7k,4,0.000009%,aim,Other
jump_tf_toth,4,0.000009%,jump,Other
pl_badwater_pro_3,4,0.000009%,pl,Payload
koth_noname_a4,4,0.000009%,koth,King of the Hill
abstract_hallways,4,0.000009%,abstract,Other
map_1_soldier_jump,4,0.000009%,map,Other
dr_cocainum_final,4,0.000009%,dr,Other
cp_skyscraper3,4,0.000009%,cp,Capture Point
mvm_adventure_of_30wave_ep5_eas,4,0.000009%,mvm,Man vs Machine
cp_dogenzaka_barebones_vii,4,0.000009%,cp,Capture Point
sniper_sigger_lr2,4,0.000009%,sniper,Other
trade_minecraft_neon_v120,4,0.000009%,trade,Trade and Achievement
arena_toastierroast_a1,4,0.000009%,arena,Other
ctf_facetest_b6,4,0.000009%,ctf,Capture the Flag
ultiduo_dante_test,4,0.000009%,ultiduo,Other
ctf_2fort_construction_v2,4,0.000009%,ctf,Capture the Flag
jump_garden000,4,0.000009%,jump,Other
koth_underground_rc4,4,0.000009%,koth,King of the Hill
trade_lunarpumpkin_v011,3,0.000007%,trade,Trade and Achievement
koth_insomniaplusboredom_a8,3,0.000007%,koth,King of the Hill
plr_yuno_rc1_tk,3,0.000007%,plr,Payload Race
sniper_dustbowl_b1,3,0.000007%,sniper,Other
mvm_coaltown_boss_rush,3,0.000007%,mvm,Man vs Machine
jump_bap,3,0.000007%,jump,Other
mvm_corridors2_advanced1,3,0.000007%,mvm,Man vs Machine
cp_walkway_rc2,3,0.000007%,cp,Capture Point
trade_jsrf_garage_v5,3,0.000007%,trade,Trade and Achievement
mvm_decoy_outdated,3,0.000007%,mvm,Man vs Machine
dbs_orbital_rc1,3,0.000007%,dbs,Other
jump_pre,3,0.000007%,jump,Other
cp_myrtana_a39,3,0.000007%,cp,Capture Point
mvm_coaltown_fried_rush,3,0.000007%,mvm,Man vs Machine
trade_plaza_night_adventure_eve,3,0.000007%,trade,Trade and Achievement
mvm_coaltown_event_insanedeath,3,0.000007%,mvm,Man vs Machine
pl_woodland_b1,3,0.000007%,pl,Payload
jump_ice_v3,3,0.000007%,jump,Other
koth_onevone_v05,3,0.000007%,koth,King of the Hill
jump_ion_level,3,0.000007%,jump,Other
trade_gmconstruct,3,0.000007%,trade,Trade and Achievement
twisted_metal_2,3,0.000007%,twisted,Other
mvm_processingv1_intermediate_c,3,0.000007%,mvm,Man vs Machine
zf_hauntedmansion_fix_ig,3,0.000007%,zf,Other
sticky_noob_b1,3,0.000007%,sticky,Other
trade_plaza_unusual_xmass_v3,3,0.000007%,trade,Trade and Achievement
jump_embrace_beta2,3,0.000007%,jump,Other
zs_creviceb2,3,0.000007%,zs,Other
arena_sky_war_medieval,3,0.000007%,arena,Other
dr_helix_tf2,3,0.000007%,dr,Other
mario_kart_cp_a8_8f_s1,3,0.000007%,mario,Other
koth_normanndy_pro_b1,3,0.000007%,koth,King of the Hill
conc_speed_b1,3,0.000007%,conc,Other
cp_phantasmagoria_v2b,3,0.000007%,cp,Capture Point
pl_dustbowl_reverse_a3,3,0.000007%,pl,Payload
sd_minerocket_v6,3,0.000007%,sd,Other
koth_crazywar2,3,0.000007%,koth,King of the Hill
breakfloor_orange7,3,0.000007%,breakfloor,Other
koth_skyline_a1,3,0.000007%,koth,King of the Hill
fw_desert_v2,3,0.000007%,fw,Other
pl_altitude,3,0.000007%,pl,Payload
mvm_yucatan_b13,3,0.000007%,mvm,Man vs Machine
koth_lakeside,3,0.000007%,koth,King of the Hill
jump_rnc_a3_dev,3,0.000007%,jump,Other
mvm_mannhattan_bigbutts,3,0.000007%,mvm,Man vs Machine
mvm_decoy_experto2b,3,0.000007%,mvm,Man vs Machine
vsh_orion_v2,3,0.000007%,vsh,Other
koth_former_cornfield_,3,0.000007%,koth,King of the Hill
koth_rtd_a3,3,0.000007%,koth,King of the Hill
pl_haywood_beta6,3,0.000007%,pl,Payload
play_stickyslide,3,0.000007%,play,Other
mvm_rottenburg_uu99_test,3,0.000007%,mvm,Man vs Machine
mvm_orange_x3_how_v2b_fawos_a_r,3,0.000007%,mvm,Man vs Machine
cp_wetcoal_b1,3,0.000007%,cp,Capture Point
sunny_map_01,3,0.000007%,sunny,Other
slender_pencilwhipped_a1,3,0.000007%,slender,Other
mvm_minecraftindustrie_test9,3,0.000007%,mvm,Man vs Machine
ctf_coldbase_rc7,3,0.000007%,ctf,Capture the Flag
mvm_bigrock_clockwork_showdown,3,0.000007%,mvm,Man vs Machine
zf_yard_v4,3,0.000007%,zf,Other
bbg_trade_plaza_day25a,3,0.000007%,bbg,Other
ultiduo_grove_b2 (1),3,0.000007%,ultiduo,Other
koth_minecollision_a1,3,0.000007%,koth,King of the Hill
mvm_hillside_v6_expert1,3,0.000007%,mvm,Man vs Machine
zf_icebase,3,0.000007%,zf,Other
ctf_nightmare_house,3,0.000007%,ctf,Capture the Flag
dbs_platforms_b2,3,0.000007%,dbs,Other
achievement_farm_v1,3,0.000007%,achievement,Trade and Achievement
pass_warehouse,3,0.000007%,pass,Other
koth_basic,3,0.000007%,koth,King of the Hill
i_want_to_suck_unskilleds_dick2,3,0.000007%,i,Other
mvm_sandstone_s23_mentalic,3,0.000007%,mvm,Man vs Machine
pl_champany,3,0.000007%,pl,Payload
mvm_bigrock_robot_warfare,3,0.000007%,mvm,Man vs Machine
saurus_challenge,3,0.000007%,saurus,Other
idle_triangle,3,0.000007%,idle,Other
cp_orange_x3_natural_rc3,3,0.000007%,cp,Capture Point
derelict_alpha_7,3,0.000007%,derelict,Other
cdash_s3,3,0.000007%,cdash,Other
cp_lakeside_koth,3,0.000007%,cp,Capture Point
trade_sunshine_tg_v2,3,0.000007%,trade,Trade and Achievement
crab_coast_b2,3,0.000007%,crab,Other
cp_fomned_b4_d,3,0.000007%,cp,Capture Point
ctf_depot,3,0.000007%,ctf,Capture the Flag
koth_foxxen_a3a,3,0.000007%,koth,King of the Hill
pl_happycow_z4,3,0.000007%,pl,Payload
achievement_idlefight_rg,3,0.000007%,achievement,Trade and Achievement
ttt_minecraft_final_fix,3,0.000007%,ttt,Other
koth_heartthrob_a2a,3,0.000007%,koth,King of the Hill
trade_rgb4,3,0.000007%,trade,Trade and Achievement
jump_drago,3,0.000007%,jump,Other
project_kingofthehill,3,0.000007%,project,Other
mvm_sewer_invasion_b7_advanced2,3,0.000007%,mvm,Man vs Machine
ctf_exsmol_rc1,3,0.000007%,ctf,Capture the Flag
tf_custom_tower4,3,0.000007%,tf,Other
spacestation_test3,3,0.000007%,spacestation,Other
koth_deception_pa,3,0.000007%,koth,King of the Hill
idle_servers_v9,3,0.000007%,idle,Other
cp_cabrakan_b4,3,0.000007%,cp,Capture Point
cp_martial_a9,3,0.000007%,cp,Capture Point
mvm_ma_ep9_1_fixed2,3,0.000007%,mvm,Man vs Machine
testmap_1,3,0.000007%,testmap,Other
mvm_trainyard_beta,3,0.000007%,mvm,Man vs Machine
under_tale_bossfight,3,0.000007%,under,Other
mvm_mannhattan_survival_up,3,0.000007%,mvm,Man vs Machine
oc_starship_troopers,3,0.000007%,oc,Other
unicorn_attack_always,3,0.000007%,unicorn,Other
vsh_dr_delay_b3_fix,3,0.000007%,vsh,Other
cp_coldfrontline,3,0.000007%,cp,Capture Point
mkm_firegod_b01d,3,0.000007%,mkm,Other
trade_pokemon_gc_b3,3,0.000007%,trade,Trade and Achievement
jump_capn_final,3,0.000007%,jump,Other
mvm_tropics_rc2,3,0.000007%,mvm,Man vs Machine
koth_lazarus_b1,3,0.000007%,koth,King of the Hill
arena_ravine_randomly_,3,0.000007%,arena,Other
koth_sierra_t3,3,0.000007%,koth,King of the Hill
cp_courtyard_test_v7b,3,0.000007%,cp,Capture Point
koth_rebuild,3,0.000007%,koth,King of the Hill
fnaf_3_map,3,0.000007%,fnaf,Other
mvm_coaltown_advancedbots2,3,0.000007%,mvm,Man vs Machine
plr_skyfortress_a13,3,0.000007%,plr,Payload Race
styleguide_tf2,3,0.000007%,styleguide,Other
achievement_nekocity_v11,3,0.000007%,achievement,Trade and Achievement
vsh_gaypool_v1,3,0.000007%,vsh,Other
mcwall-mart_b12r,3,0.000007%,mcwall-mart,Other
dbs_pong_b10,3,0.000007%,dbs,Other
ctf_2fort_snowy_v3,3,0.000007%,ctf,Capture the Flag
vsh_colosseum_b1,3,0.000007%,vsh,Other
jump_storm,3,0.000007%,jump,Other
zf_halls_of_the_damned,3,0.000007%,zf,Other
pl_rumble_b2,3,0.000007%,pl,Payload
koth_forge,3,0.000007%,koth,King of the Hill
br_earth2space,3,0.000007%,br,Other
cp_orange_x3_fix3_teamos2,3,0.000007%,cp,Capture Point
koth_rooftop_b1,3,0.000007%,koth,King of the Hill
mvm_rottenburg_momma,3,0.000007%,mvm,Man vs Machine
pl_vanishingpoint,3,0.000007%,pl,Payload
vsh_harbour_base_a8,3,0.000007%,vsh,Other
trade_bsor_b2,3,0.000007%,trade,Trade and Achievement
koth_upperhill,3,0.000007%,koth,King of the Hill
mvm_trainyard_a4_2,3,0.000007%,mvm,Man vs Machine
vsh_heist_halloween,3,0.000007%,vsh,Other
achievement_scout_turbov9,3,0.000007%,achievement,Trade and Achievement
koth_dan_a2,3,0.000007%,koth,King of the Hill
mvm_mannhattan_bosses,3,0.000007%,mvm,Man vs Machine
mvm_mannhattan_wall,3,0.000007%,mvm,Man vs Machine
jump_vertigo (1),3,0.000007%,jump,Other
surf_apollonian_rc1,3,0.000007%,surf,Other
tr_walkway_rc2 (5),3,0.000007%,tr,Other
achi_egypt_night_v4,3,0.000007%,achi,Other
koth_second_both,3,0.000007%,koth,King of the Hill
lord_of_the_gym,3,0.000007%,lord,Other
mvm_mannworks_cipher7,3,0.000007%,mvm,Man vs Machine
mvm_badwater_final_advanced2_hi,3,0.000007%,mvm,Man vs Machine
fw_zsy_sky_b3z,3,0.000007%,fw,Other
koth_discos_a1,3,0.000007%,koth,King of the Hill
gm_megacity,3,0.000007%,gm,Other
duel_snow_v1,3,0.000007%,duel,Other
cp_orange_2towers_v03,3,0.000007%,cp,Capture Point
koth_heartthrob_a2,3,0.000007%,koth,King of the Hill
jump_desert_v1,3,0.000007%,jump,Other
koth_testmapone,3,0.000007%,koth,King of the Hill
pl_artifact_a3,3,0.000007%,pl,Payload
achievement_nekocity_v12,3,0.000007%,achievement,Trade and Achievement
koth_creek,3,0.000007%,koth,King of the Hill
mvm_decoy_doesrevenge,3,0.000007%,mvm,Man vs Machine
pl_bedwetter,3,0.000007%,pl,Payload
trade_nightclub,3,0.000007%,trade,Trade and Achievement
tfdb_kokos,3,0.000007%,tfdb,Other
mvm_adventure_of_30wave_ep5_har,3,0.000007%,mvm,Man vs Machine
fw_3cp_forest_v5,3,0.000007%,fw,Other
cp_helms_deep_lotr_v5,3,0.000007%,cp,Capture Point
mvm_mannworks_lalalallalaol,3,0.000007%,mvm,Man vs Machine
vsh_warzone,3,0.000007%,vsh,Other
dogenzaka_iii,3,0.000007%,dogenzaka,Other
achievement_idle_knii_3,3,0.000007%,achievement,Trade and Achievement
jump_academy_medjurf_b2_fixed,3,0.000007%,jump,Other
cp_vents,3,0.000007%,cp,Capture Point
vsh_skycastle_a2,3,0.000007%,vsh,Other
ctf_marsbase_a1,3,0.000007%,ctf,Capture the Flag
jump_labrador_beta1g,3,0.000007%,jump,Other
cp_toner_a19,3,0.000007%,cp,Capture Point
dm_streets_a2,3,0.000007%,dm,Deathmatch
mvm_keller_b12,3,0.000007%,mvm,Man vs Machine
d_castle_a02,3,0.000007%,d,Other
trade_0gs_vfinal_ip,3,0.000007%,trade,Trade and Achievement
mvm_bigrock_mediciszefeinalboos,3,0.000007%,mvm,Man vs Machine
achievement_idle_cy4g_carnival,3,0.000007%,achievement,Trade and Achievement
mvm_bigrock_hard1,3,0.000007%,mvm,Man vs Machine
pl_quickflow_b2,3,0.000007%,pl,Payload
strange-boost_advanced_v5,3,0.000007%,strange-boost,Other
ctf_facetest_b6p,3,0.000007%,ctf,Capture the Flag
background_cabin_v1,3,0.000007%,background,Other
mvm_thedust_b3_advanced4,3,0.000007%,mvm,Man vs Machine
pl_snowbomb,3,0.000007%,pl,Payload
de_dust2_b3,3,0.000007%,de,Other
cp_stinklines_a1,3,0.000007%,cp,Capture Point
cp_process_b6,3,0.000007%,cp,Capture Point
mvm_ventus_b6_fawosfix,3,0.000007%,mvm,Man vs Machine
wallfox_indev16,3,0.000007%,wallfox,Other
tfdb_lazarz_a3_gs,3,0.000007%,tfdb,Other
achievement_turbov13fix,3,0.000007%,achievement,Trade and Achievement
duel_vsix,3,0.000007%,duel,Other
mvm_ma_ep12b1_1_fixed,3,0.000007%,mvm,Man vs Machine
trade_rdg_b42_alpha,3,0.000007%,trade,Trade and Achievement
ctf_mountainside,3,0.000007%,ctf,Capture the Flag
achieve_circle_the_wagons,3,0.000007%,achieve,Other
zom_sandbox_v3,3,0.000007%,zom,Other
zom_asylum_bsun,3,0.000007%,zom,Other
mvm_jon_a3_babysteps,3,0.000007%,mvm,Man vs Machine
tfdb_basketball_court_omega,3,0.000007%,tfdb,Other
achievement_idle_awesomebox9_d,3,0.000007%,achievement,Trade and Achievement
mvm_coaltown_robotattack,3,0.000007%,mvm,Man vs Machine
mvm_coaltown_sergeants_wave,3,0.000007%,mvm,Man vs Machine
achievement_idlefight_revamped,3,0.000007%,achievement,Trade and Achievement
sd_crossroads_beta_1,3,0.000007%,sd,Other
db_hotnuke_b5,3,0.000007%,db,Other
cp_sulfur,3,0.000007%,cp,Capture Point
cp_sierra_a1,3,0.000007%,cp,Capture Point
tfkart_technobabel_v1,3,0.000007%,tfkart,Other
room2016_rtk,3,0.000007%,room2016,Other
awp_perfect,3,0.000007%,awp,Other
defrag_xelerate,3,0.000007%,defrag,Other
ctf_2fort_zombie,3,0.000007%,ctf,Capture the Flag
koth_groove,3,0.000007%,koth,King of the Hill
trade_masscc_e1,3,0.000007%,trade,Trade and Achievement
mvm_decoy_megabosses,3,0.000007%,mvm,Man vs Machine
ctf_facingworlds1999_delfy,3,0.000007%,ctf,Capture the Flag
koth_canopy,3,0.000007%,koth,King of the Hill
pl_erosion_a6dev2,3,0.000007%,pl,Payload
mvm_coaltown_sergeants_wave2,3,0.000007%,mvm,Man vs Machine
ctf_2fort_rainy_final,3,0.000007%,ctf,Capture the Flag
mvm_mannhattan_robocalypse_expe,3,0.000007%,mvm,Man vs Machine
j_l_jump_cake_b2,3,0.000007%,j,Other
jump_mohaxish_r1,3,0.000007%,jump,Other
jump_quartz_facility,3,0.000007%,jump,Other
trade_blurville_a1,3,0.000007%,trade,Trade and Achievement
mvm_ratrace_a1a_uberupgrades,3,0.000007%,mvm,Man vs Machine
freestyle_chromatic (1),3,0.000007%,freestyle,Other
pl_borneo_rc3,3,0.000007%,pl,Payload
coop_negawisp,3,0.000007%,coop,Other
bhop_orange_fix_a1,3,0.000007%,bhop,Other
mvm_badwater_final_end,3,0.000007%,mvm,Man vs Machine
cp_extol_a5,3,0.000007%,cp,Capture Point
trade_finnimbrun,3,0.000007%,trade,Trade and Achievement
dbs_offspring_b2b,3,0.000007%,dbs,Other
mvm_decoy_advanced4,3,0.000007%,mvm,Man vs Machine
ep2_background01,3,0.000007%,ep2,Other
mvm_spaceage_beta,3,0.000007%,mvm,Man vs Machine
trade_minecraft_realms_bm,3,0.000007%,trade,Trade and Achievement
balloon_race_v5,3,0.000007%,balloon,Other
tfdb_tea_devbox,3,0.000007%,tfdb,Other
koth_aerial_a21,3,0.000007%,koth,King of the Hill
jump_tf2rj_a4d,3,0.000007%,jump,Other
dm_flood_1-25,3,0.000007%,dm,Deathmatch
pl_fireworks_s1_a4,3,0.000007%,pl,Payload
tr_aim_d,3,0.000007%,tr,Other
ctf_minecraft_doomship_n1,3,0.000007%,ctf,Capture the Flag
koth_grayco,3,0.000007%,koth,King of the Hill
006_hass_ctaptriple_pls,3,0.000007%,006,Other
achievement_idledg_megabox,3,0.000007%,achievement,Trade and Achievement
ctf_turbine_pro_b1 (1),3,0.000007%,ctf,Capture the Flag
cp_gorge_event_b5,3,0.000007%,cp,Capture Point
mvm_ghost_town_badidea,3,0.000007%,mvm,Man vs Machine
cp_rooftime_victor_a6a,3,0.000007%,cp,Capture Point
mvm_rottenburg_lmao2,3,0.000007%,mvm,Man vs Machine
pl_uskuu_a3,3,0.000007%,pl,Payload
koth_bagel,3,0.000007%,koth,King of the Hill
banebad_v2,3,0.000007%,banebad,Other
mvm_highrise_mannworks_ironman,3,0.000007%,mvm,Man vs Machine
vsh_battle2thedeath_b6,3,0.000007%,vsh,Other
walmart_bettermeme_v6a,3,0.000007%,walmart,Other
mvm_factory_a3,3,0.000007%,mvm,Man vs Machine
jump_sinister_final,3,0.000007%,jump,Other
mvm_mannhattan_expert1,3,0.000007%,mvm,Man vs Machine
pl_dorado_d,3,0.000007%,pl,Payload
koth_crossing,3,0.000007%,koth,King of the Hill
jump_academy_easy_halloween15,3,0.000007%,jump,Other
trade_mesa_v001f_hard_v1,3,0.000007%,trade,Trade and Achievement
cp_orange_vehicles_alpha5,3,0.000007%,cp,Capture Point
peaceful_area_origin_boss_fix1,3,0.000007%,peaceful,Other
jump_king,3,0.000007%,jump,Other
climb_project,3,0.000007%,climb,Other
mvm_test_medic,3,0.000007%,mvm,Man vs Machine
mvm_waterbridge_232323,3,0.000007%,mvm,Man vs Machine
vsh_dr_void_vfinal,3,0.000007%,vsh,Other
cp_orangecity_v3,3,0.000007%,cp,Capture Point
tfdb_floatingboxes,3,0.000007%,tfdb,Other
tfsc_adventure,3,0.000007%,tfsc,Other
cp_2skyscraper_b2,3,0.000007%,cp,Capture Point
type_firewolf_v1,3,0.000007%,type,Other
trade_minecraft_neon_v277,3,0.000007%,trade,Trade and Achievement
jump_littleman_v5,3,0.000007%,jump,Other
dr_cocainum_v2_4_xmas,3,0.000007%,dr,Other
cp_dogenzaka_ii_underground,3,0.000007%,cp,Capture Point
tr_airshot,3,0.000007%,tr,Other
mvm_troopers_defend_fawosfix_hi,3,0.000007%,mvm,Man vs Machine
mvm_coaltown_barrows_v4_finishi,3,0.000007%,mvm,Man vs Machine
tutorial06-basic_optimization,3,0.000007%,tutorial06-basic,Other
zom_snow_massacre_v5,3,0.000007%,zom,Other
tfdb_desert_madness_swg_test2,3,0.000007%,tfdb,Other
mvm_coaltown_mvm,3,0.000007%,mvm,Man vs Machine
jump_ninja_surf_a,3,0.000007%,jump,Other
jump_wallfox_a1,3,0.000007%,jump,Other
ctf_2fort3,3,0.000007%,ctf,Capture the Flag
pf_roof,3,0.000007%,pf,Other
cp_skyscraper,3,0.000007%,cp,Capture Point
jump_trypophobia_old,3,0.000007%,jump,Other
ctf_turbine_open_v3,3,0.000007%,ctf,Capture the Flag
koth_ashwood_night_b7,3,0.000007%,koth,King of the Hill
mvm_decoy_zombies,3,0.000007%,mvm,Man vs Machine
jump_skull_v2,3,0.000007%,jump,Other
pl_rebirth,3,0.000007%,pl,Payload
mvm_tropics_a5_no2,3,0.000007%,mvm,Man vs Machine
cp_xmaslab_tk,3,0.000007%,cp,Capture Point
jump_ra3map4,3,0.000007%,jump,Other
zom_rooftops_v6,3,0.000007%,zom,Other
tyler_rocket_shooting_v3_regen ,3,0.000007%,tyler,Other
my_world_x6_beta5,3,0.000007%,my,Other
cp_sphere_a2,3,0.000007%,cp,Capture Point
achievement_helms_deep_s1,3,0.000007%,achievement,Trade and Achievement
mvm_museum_a9_2008,3,0.000007%,mvm,Man vs Machine
achievement_idle_goatville_x55,3,0.000007%,achievement,Trade and Achievement
ctf_tombfort_rc,3,0.000007%,ctf,Capture the Flag
dm_lockdown,3,0.000007%,dm,Deathmatch
koth_log,3,0.000007%,koth,King of the Hill
pl_bunkerblasta3,3,0.000007%,pl,Payload
tfdb_gamesites_kb02,3,0.000007%,tfdb,Other
dbs_punishment_b8a,3,0.000007%,dbs,Other
mvm_popfile_3,3,0.000007%,mvm,Man vs Machine
mvm_ghost_town_risenking,3,0.000007%,mvm,Man vs Machine
aaaa_map_test,3,0.000007%,aaaa,Other
mvm_mannworks_31_waves_robo_edi,3,0.000007%,mvm,Man vs Machine
mvm_isolation_b4_uberupgrades,3,0.000007%,mvm,Man vs Machine
dm_resistance,3,0.000007%,dm,Deathmatch
cp_reckoner_a1b,3,0.000007%,cp,Capture Point
mvm_corridors_demo,3,0.000007%,mvm,Man vs Machine
idle_train_v5,3,0.000007%,idle,Other
mvm_cowmangler_override,3,0.000007%,mvm,Man vs Machine
tfdb_maui_b3_gs,3,0.000007%,tfdb,Other
cp_diversion_b2,3,0.000007%,cp,Capture Point
ctf_3towers_057,3,0.000007%,ctf,Capture the Flag
koth_skybox,3,0.000007%,koth,King of the Hill
cp_deepwoods_0006,3,0.000007%,cp,Capture Point
koth_boxcorp_b04,3,0.000007%,koth,King of the Hill
surf_air_arena_v3,3,0.000007%,surf,Other
ultiduo_hardwater_a1-2,3,0.000007%,ultiduo,Other
awp_deathcanyon,3,0.000007%,awp,Other
mvm_tunnels_a7_devtest,3,0.000007%,mvm,Man vs Machine
tr_walkway_rc2.cfg,3,0.000007%,tr,Other
ctf_2fort_classic_winter_v36,3,0.000007%,ctf,Capture the Flag
mvm_skullcove_rc1_nightmarenigh,3,0.000007%,mvm,Man vs Machine
toth2017_chuck,3,0.000007%,toth2017,Other
koth_stoph,3,0.000007%,koth,King of the Hill
koth_crossroad,3,0.000007%,koth,King of the Hill
cp_edifice_test2,3,0.000007%,cp,Capture Point
jump_universal_final,3,0.000007%,jump,Other
cp_gravelpit_bots,3,0.000007%,cp,Capture Point
tf2ware_main,3,0.000007%,tf2ware,Other
koth_2fort_b2,3,0.000007%,koth,King of the Hill
tf_traincamp,3,0.000007%,tf,Other
mvm_decoy_clorox,3,0.000007%,mvm,Man vs Machine
koth_building,3,0.000007%,koth,King of the Hill
trade_plaza_unusual_hg_a2,3,0.000007%,trade,Trade and Achievement
service_station,3,0.000007%,service,Other
mvm_decoy_b4nnys,3,0.000007%,mvm,Man vs Machine
halloween_sean,3,0.000007%,halloween,Other
mvm_decoy_experti2,3,0.000007%,mvm,Man vs Machine
mvm_coaltown_carrierexpert1,3,0.000007%,mvm,Man vs Machine
koth_moonballs_a3,3,0.000007%,koth,King of the Hill
pass_soccer_b3,3,0.000007%,pass,Other
fw_bd_b1_wfix,3,0.000007%,fw,Other
pl_halfacre_b1,3,0.000007%,pl,Payload
dm_scramble_b15,3,0.000007%,dm,Deathmatch
koth_cow_b2,3,0.000007%,koth,King of the Hill
koth_hilltop_b3,3,0.000007%,koth,King of the Hill
dm_ponycorrupt_b6,3,0.000007%,dm,Deathmatch
koth_avalanche,3,0.000007%,koth,King of the Hill
koth_dewm,3,0.000007%,koth,King of the Hill
mvm_ascent_a1,3,0.000007%,mvm,Man vs Machine
mvm_rottenburg_nosollies,3,0.000007%,mvm,Man vs Machine
slender_poorfnaf3_a3,3,0.000007%,slender,Other
cp_gorge_d,3,0.000007%,cp,Capture Point
gm_century_plaza_v2,3,0.000007%,gm,Other
zf_industry_rc1,3,0.000007%,zf,Other
vsh_critical_reach_hdr,3,0.000007%,vsh,Other
ctf_ratsewers,3,0.000007%,ctf,Capture the Flag
frontline_tzu,3,0.000007%,frontline,Other
trade_mesa_v001f_mechanic_metro,3,0.000007%,trade,Trade and Achievement
fw_cs_survivor_v3,3,0.000007%,fw,Other
tfdb_egypts_temple_b1,3,0.000007%,tfdb,Other
arena_collapse_v1,3,0.000007%,arena,Other
smack_down_b1,3,0.000007%,smack,Other
cp_boxes,3,0.000007%,cp,Capture Point
koth_deadlock,3,0.000007%,koth,King of the Hill
pl_v1_zedul,3,0.000007%,pl,Payload
koth_mayangold_b3,3,0.000007%,koth,King of the Hill
pl_space_race,3,0.000007%,pl,Payload
achievement_helms_deep,3,0.000007%,achievement,Trade and Achievement
conc_retry_b1,3,0.000007%,conc,Other
mvm_decoy_tutu1,3,0.000007%,mvm,Man vs Machine
achievement_apg_remade4,3,0.000007%,achievement,Trade and Achievement
jump_bounce2_b6_fix,3,0.000007%,jump,Other
arena_embankment_a5c,3,0.000007%,arena,Other
pl_v2_zedul,3,0.000007%,pl,Payload
dr_minecraft_b10_fix2,3,0.000007%,dr,Other
d2_coast_01,3,0.000007%,d2,Other
fw_map,3,0.000007%,fw,Other
ctf_powerhouse,3,0.000007%,ctf,Capture the Flag
trade_splinter_b2,3,0.000007%,trade,Trade and Achievement
mvm_bigrock_miner_invasion,3,0.000007%,mvm,Man vs Machine
mvm_5gorge_cp_advanced2,3,0.000007%,mvm,Man vs Machine
aim_ak-colt_arg_fawosfix_advanc,3,0.000007%,aim,Other
tf2_green,3,0.000007%,tf2,Other
fw_loca_v3,3,0.000007%,fw,Other
vsh_gobis_valley,3,0.000007%,vsh,Other
koth_sahara_rc3_72,3,0.000007%,koth,King of the Hill
achievement_egypt_night+,3,0.000007%,achievement,Trade and Achievement
koth_spire_b1,3,0.000007%,koth,King of the Hill
cp_lazytown_lazynite_sfr_v2,3,0.000007%,cp,Capture Point
mvm_zm_hideout_solonormal,3,0.000007%,mvm,Man vs Machine
mvm_normandy_coaltown_advanced2,3,0.000007%,mvm,Man vs Machine
vsh_infraquaticus_a12,3,0.000007%,vsh,Other
jump_ddpls,3,0.000007%,jump,Other
jump_benroads2_a1,3,0.000007%,jump,Other
mvm_hillside_v7_normal2,3,0.000007%,mvm,Man vs Machine
jump_wallfox_a3,3,0.000007%,jump,Other
cp_highground_a2,3,0.000007%,cp,Capture Point
pl_dorado_b1,3,0.000007%,pl,Payload
pl_eclipse_b1_1,3,0.000007%,pl,Payload
tutorial20-func_rotating,3,0.000007%,tutorial20-func,Other
freespace06_v2night_wca,3,0.000007%,freespace06,Other
mvm_hydro_a3_decoy_advanced3,3,0.000007%,mvm,Man vs Machine
dm_cloudsdale_b6_3,3,0.000007%,dm,Deathmatch
pl_andes_a3,3,0.000007%,pl,Payload
mvm_coaltown_advanced1,3,0.000007%,mvm,Man vs Machine
achievement_apg_remade9c,3,0.000007%,achievement,Trade and Achievement
cp_minigames_test14,3,0.000007%,cp,Capture Point
tfdb_largebox_final,3,0.000007%,tfdb,Other
mvm_rottenburg_snipaa,3,0.000007%,mvm,Man vs Machine
surf_iridescent_a2,3,0.000007%,surf,Other
jump_random,3,0.000007%,jump,Other
surf_craterbonus,3,0.000007%,surf,Other
arena_monumental_a1,3,0.000007%,arena,Other
cl_coop_level1_escape,3,0.000007%,cl,Other
cp_drudgery_b1_fixed,3,0.000007%,cp,Capture Point
engiebots_x22,3,0.000007%,engiebots,Other
surf_junisbase_a1,3,0.000007%,surf,Other
aim_ak-colt_arg_fawosfix_christ,3,0.000007%,aim,Other
achievement_tinyhuge-h23,3,0.000007%,achievement,Trade and Achievement
strange-boost_advanced_v6,3,0.000007%,strange-boost,Other
mvm_mannhai,3,0.000007%,mvm,Man vs Machine
map03_beta,3,0.000007%,map03,Other
aim_deagle,3,0.000007%,aim,Other
cp_swamp_rat,3,0.000007%,cp,Capture Point
mvm_coaltown_easy_1,3,0.000007%,mvm,Man vs Machine
gm_supersizeroom_v2,3,0.000007%,gm,Other
achievement_idle_neon_v3,3,0.000007%,achievement,Trade and Achievement
freestyle_altra,3,0.000007%,freestyle,Other
slender_containmentbreach_v1c,3,0.000007%,slender,Other
pl_a1_zedul,3,0.000007%,pl,Payload
arena_beck_snowy_rc,3,0.000007%,arena,Other
ctf_estate_b6,3,0.000007%,ctf,Capture the Flag
zom_halo_v2,3,0.000007%,zom,Other
ba_xtreme_otaku,3,0.000007%,ba,Other
dr_hardhat_version1,3,0.000007%,dr,Other
cs_office_unlimited_oc,3,0.000007%,cs,Other
jump_academy_winter16,3,0.000007%,jump,Other
cp_orange_x3_rc4,3,0.000007%,cp,Capture Point
mvm_rottenburg_advanced,3,0.000007%,mvm,Man vs Machine
pl_dustbowl_w0,3,0.000007%,pl,Payload
achievement_idle_3,3,0.000007%,achievement,Trade and Achievement
koth_industrial_beta_1,3,0.000007%,koth,King of the Hill
paper_mario_petal_a4,3,0.000007%,paper,Other
mvm_anime_swordsman_cyber,3,0.000007%,mvm,Man vs Machine
mvm_decoy_pop,3,0.000007%,mvm,Man vs Machine
ncfs_v2,3,0.000007%,ncfs,Other
achievement_bots_v4_a2,2,0.000004%,achievement,Trade and Achievement
ach_idle_strange_lanes_v4_b2,2,0.000004%,ach,Other
dm_alphor,2,0.000004%,dm,Deathmatch
mvm_ghost_town_fawos,2,0.000004%,mvm,Man vs Machine
bhop_craton_final,2,0.000004%,bhop,Other
pl_breakwater,2,0.000004%,pl,Payload
ctf_collisionroutev1f_event,2,0.000004%,ctf,Capture the Flag
mvm_machine_attacks_ep1_3,2,0.000004%,mvm,Man vs Machine
fw_smap3_v1,2,0.000004%,fw,Other
pl_nectarine_a3,2,0.000004%,pl,Payload
donald_j_training,2,0.000004%,donald,Other
mvm_left_6_fortress,2,0.000004%,mvm,Man vs Machine
koth _space_outvaders,2,0.000004%,koth ,Other
mvm_decoy_dross,2,0.000004%,mvm,Man vs Machine
vsh_dr_badwater_fix,2,0.000004%,vsh,Other
surf_orbion_njv,2,0.000004%,surf,Other
ctf_vertigo_a4,2,0.000004%,ctf,Capture the Flag
dm_manehatten_b5,2,0.000004%,dm,Deathmatch
mvm_coaltown_advanced222,2,0.000004%,mvm,Man vs Machine
farm_boxofcrits_03b,2,0.000004%,farm,Other
dm_hangout_v2,2,0.000004%,dm,Deathmatch
trade_riverwood_b6_lite,2,0.000004%,trade,Trade and Achievement
mvm_mannworksxma_expert1,2,0.000004%,mvm,Man vs Machine
ctf_facingworlds_backup2,2,0.000004%,ctf,Capture the Flag
mvm_decoy_terriostattack,2,0.000004%,mvm,Man vs Machine
tr_walkway_fix_r1,2,0.000004%,tr,Other
trade_cyka_blyat_meow2,2,0.000004%,trade,Trade and Achievement
achievement_idlefight_chillpod2,2,0.000004%,achievement,Trade and Achievement
cp_orangezone_version1,2,0.000004%,cp,Capture Point
mvm_overdrive_secret_1,2,0.000004%,mvm,Man vs Machine
trade_minecraft_toxicbunny_v2b,2,0.000004%,trade,Trade and Achievement
koth_aerial_a17,2,0.000004%,koth,King of the Hill
trade_dreamland_v0b,2,0.000004%,trade,Trade and Achievement
mvm_minecraft_v3_winter,2,0.000004%,mvm,Man vs Machine
koth_gravitythedust2,2,0.000004%,koth,King of the Hill
tr_airway_b4,2,0.000004%,tr,Other
mvm_mannworks_eqgl_boss_test_v1,2,0.000004%,mvm,Man vs Machine
slender_biotics_lab_v3_d,2,0.000004%,slender,Other
mvm_decoy_pito2,2,0.000004%,mvm,Man vs Machine
idle_engineer_v7,2,0.000004%,idle,Other
cp_rockmine_b4_v2,2,0.000004%,cp,Capture Point
vsh_vrtraining_b3,2,0.000004%,vsh,Other
ctf_vent,2,0.000004%,ctf,Capture the Flag
bhop_training,2,0.000004%,bhop,Other
dm_mariokart2_b3_d,2,0.000004%,dm,Deathmatch
mvm_nether,2,0.000004%,mvm,Man vs Machine
surf_badlands_r1_kd,2,0.000004%,surf,Other
dr_cocainum_v4_dg6_fix,2,0.000004%,dr,Other
mkm_firegod_b01e,2,0.000004%,mkm,Other
koth_tinytower_b3,2,0.000004%,koth,King of the Hill
race_minecraft_testtrack_s11_tk,2,0.000004%,race,Other
cp_shortkoth,2,0.000004%,cp,Capture Point
cyberpunk_fug_v1,2,0.000004%,cyberpunk,Other
strange-boost_adv,2,0.000004%,strange-boost,Other
koth_heavy,2,0.000004%,koth,King of the Hill
ctf_2fort_classic_mod_bd20,2,0.000004%,ctf,Capture the Flag
tfdb_octagon_sv3,2,0.000004%,tfdb,Other
koth_dogenzaka_iv_maxlighting,2,0.000004%,koth,King of the Hill
tfdb_prctest_supv3,2,0.000004%,tfdb,Other
room2016_sil,2,0.000004%,room2016,Other
koth_quake_final,2,0.000004%,koth,King of the Hill
mvm_jon_a3_gumball,2,0.000004%,mvm,Man vs Machine
cp_deepwoods_0007,2,0.000004%,cp,Capture Point
mvm_winter_b5_mannworks,2,0.000004%,mvm,Man vs Machine
d1_trainstation_02,2,0.000004%,d1,Other
koth_frontier_pl,2,0.000004%,koth,King of the Hill
mvm_coaltown_mega_experts_mvm,2,0.000004%,mvm,Man vs Machine
cp_orange_toyfort,2,0.000004%,cp,Capture Point
scout_rush,2,0.000004%,scout,Other
cp_intrusion_a6,2,0.000004%,cp,Capture Point
achievement_idle_museum,2,0.000004%,achievement,Trade and Achievement
trade_565,2,0.000004%,trade,Trade and Achievement
koth_sierra_t8,2,0.000004%,koth,King of the Hill
toth2017_lopez_a1,2,0.000004%,toth2017,Other
tutorial08-lighting_extra,2,0.000004%,tutorial08-lighting,Other
tree_str_remake_r5f2,2,0.000004%,tree,Other
ctf_freshair_a2,2,0.000004%,ctf,Capture the Flag
ctf_badlands_classic_b3e,2,0.000004%,ctf,Capture the Flag
colour_jumper_rocket,2,0.000004%,colour,Other
achivement_room,2,0.000004%,achivement,Other
cp_orange_x3_update,2,0.000004%,cp,Capture Point
mvm_decoy_expert_final_mission,2,0.000004%,mvm,Man vs Machine
surf_10x_redone_rv4,2,0.000004%,surf,Other
cp_wilder_b1,2,0.000004%,cp,Capture Point
trade_rdg_b16_demo,2,0.000004%,trade,Trade and Achievement
koth_deception_a1,2,0.000004%,koth,King of the Hill
koth_small_no_ground,2,0.000004%,koth,King of the Hill
mvm_museum_a9_2013,2,0.000004%,mvm,Man vs Machine
ph_brawl_b1,2,0.000004%,ph,Other
koth_simple_orange_doc,2,0.000004%,koth,King of the Hill
dm_arctic_vendetta_sun_v3,2,0.000004%,dm,Deathmatch
ctf_banjaxed_a1,2,0.000004%,ctf,Capture the Flag
pl_spacebase,2,0.000004%,pl,Payload
dm_hans_d,2,0.000004%,dm,Deathmatch
mvm_rottenburg_bigburg,2,0.000004%,mvm,Man vs Machine
dr_bearun_b3_fixed,2,0.000004%,dr,Other
ctf_stonebridge,2,0.000004%,ctf,Capture the Flag
mvm_coaltown_7min_wave_hard,2,0.000004%,mvm,Man vs Machine
koth_aerial_a23,2,0.000004%,koth,King of the Hill
moba_minecraft1_1,2,0.000004%,moba,Other
ctf_atomic,2,0.000004%,ctf,Capture the Flag
mvm_achievement_vulgar,2,0.000004%,mvm,Man vs Machine
sm_test,2,0.000004%,sm,Other
koth_rooftops_a4,2,0.000004%,koth,King of the Hill
jump_bunker,2,0.000004%,jump,Other
ctf_pipe,2,0.000004%,ctf,Capture the Flag
cp_suanle_a1_progress2,2,0.000004%,cp,Capture Point
ctf_trainfort,2,0.000004%,ctf,Capture the Flag
mvm_jon_a3_skeleton_traps,2,0.000004%,mvm,Man vs Machine
surf_blackout_njv,2,0.000004%,surf,Other
trade_mario_kart_msgsk9_v3,2,0.000004%,trade,Trade and Achievement
ctf_2fort_winter,2,0.000004%,ctf,Capture the Flag
mvm_decoy_potpan,2,0.000004%,mvm,Man vs Machine
mvm_coaltown_fix,2,0.000004%,mvm,Man vs Machine
rjump_practice!,2,0.000004%,rjump,Other
koth_iron,2,0.000004%,koth,King of the Hill
pl_wutville_tk,2,0.000004%,pl,Payload
mario_world_a11_tk,2,0.000004%,mario,Other
cp_jam_a1,2,0.000004%,cp,Capture Point
de_inferno_pro,2,0.000004%,de,Other
cp_coldfrontline_a2a,2,0.000004%,cp,Capture Point
concmap_exist,2,0.000004%,concmap,Other
jump_edgebug_b2 (1),2,0.000004%,jump,Other
koth_jungle_a3,2,0.000004%,koth,King of the Hill
zs_youareavirusinsidejoe_4,2,0.000004%,zs,Other
arena_ravine_randomly_b1,2,0.000004%,arena,Other
pl_halfacre_rc2,2,0.000004%,pl,Payload
jump_wallfox_b2,2,0.000004%,jump,Other
trade_lookout_v0,2,0.000004%,trade,Trade and Achievement
dr_sawmill_final_fix,2,0.000004%,dr,Other
mvm_decoy_alias_expert,2,0.000004%,mvm,Man vs Machine
test_arena,2,0.000004%,test,Other
zom_sniper_v3,2,0.000004%,zom,Other
pl_stormhouse_a4,2,0.000004%,pl,Payload
super_mario_world_2_camfix,2,0.000004%,super,Other
trade_rdg_b41_alpha,2,0.000004%,trade,Trade and Achievement
cp_orange_floors,2,0.000004%,cp,Capture Point
mvm_bigrock_1pyrotest,2,0.000004%,mvm,Man vs Machine
space_hoth,2,0.000004%,space,Other
pl_planless_a2,2,0.000004%,pl,Payload
pl_scientologue_b3_tk,2,0.000004%,pl,Payload
mvm_castle_defense_a3,2,0.000004%,mvm,Man vs Machine
ze_office_v2,2,0.000004%,ze,Other
idle_wubwubwub_v2,2,0.000004%,idle,Other
manor_of_fun_tk,2,0.000004%,manor,Other
acg_apartment_redux_10,2,0.000004%,acg,Other
cp_fomned_b4,2,0.000004%,cp,Capture Point
mvm_koipond_beta,2,0.000004%,mvm,Man vs Machine
koth_peaks,2,0.000004%,koth,King of the Hill
cp_duel_cortez_beta_v2,2,0.000004%,cp,Capture Point
tr_flowe,2,0.000004%,tr,Other
jump_habibi_c1_l6,2,0.000004%,jump,Other
jump_quick_a3,2,0.000004%,jump,Other
idle_15_halloween,2,0.000004%,idle,Other
ctf_riverfall_c1,2,0.000004%,ctf,Capture the Flag
koth_annex_3_test5,2,0.000004%,koth,King of the Hill
pl_olympia_a01,2,0.000004%,pl,Payload
surf_lt_omnific,2,0.000004%,surf,Other
koth_retro_pit,2,0.000004%,koth,King of the Hill
pl_vigil_b2a (1),2,0.000004%,pl,Payload
mvm_construct,2,0.000004%,mvm,Man vs Machine
jump_chuck_a2,2,0.000004%,jump,Other
gm_bigcity_d,2,0.000004%,gm,Other
surf_lullaby_njv,2,0.000004%,surf,Other
mvm_decoy_recede,2,0.000004%,mvm,Man vs Machine
mvm_isolation_b4_uberup_easy,2,0.000004%,mvm,Man vs Machine
tfdb_tennis_b1,2,0.000004%,tfdb,Other
mvm_mannhattan_robo-shinobi,2,0.000004%,mvm,Man vs Machine
achievement_scout1,2,0.000004%,achievement,Trade and Achievement
jump_noname_a1,2,0.000004%,jump,Other
rusty_bucket_bay_tk,2,0.000004%,rusty,Other
koth_wat,2,0.000004%,koth,King of the Hill
mvm_decoy_manysupportfix,2,0.000004%,mvm,Man vs Machine
dr_halloween,2,0.000004%,dr,Other
zom_swamp_v5,2,0.000004%,zom,Other
dbs_randomarena_b1,2,0.000004%,dbs,Other
mvm_coaltown_advanced7,2,0.000004%,mvm,Man vs Machine
bhop_pineapple,2,0.000004%,bhop,Other
mvm_underground_rc3_dreadbolt_i,2,0.000004%,mvm,Man vs Machine
pl_second_a2,2,0.000004%,pl,Payload
dr_psykopat_dmgfix,2,0.000004%,dr,Other
cp_skyscreaper_v097,2,0.000004%,cp,Capture Point
koth_hellpit_b3,2,0.000004%,koth,King of the Hill
cp_pollution_a10a_tk,2,0.000004%,cp,Capture Point
mvm_bigrock_survival_v2,2,0.000004%,mvm,Man vs Machine
dr_adventure_v3_gsn,2,0.000004%,dr,Other
trade_industry_v3,2,0.000004%,trade,Trade and Achievement
koth_910,2,0.000004%,koth,King of the Hill
pl_barnblitz_pro4_tk,2,0.000004%,pl,Payload
ctf_sandland,2,0.000004%,ctf,Capture the Flag
ctf_transit,2,0.000004%,ctf,Capture the Flag
tr_ben_aim,2,0.000004%,tr,Other
ctf_spacebase,2,0.000004%,ctf,Capture the Flag
mvm_bigrock_34wavefinale,2,0.000004%,mvm,Man vs Machine
mvm_decay_rc1_awaken,2,0.000004%,mvm,Man vs Machine
jump_wallfox_b3,2,0.000004%,jump,Other
trade_rdg_b14,2,0.000004%,trade,Trade and Achievement
mvm_downtown_final1_3,2,0.000004%,mvm,Man vs Machine
ctf_facetest_b1,2,0.000004%,ctf,Capture the Flag
trade_rdg_v1,2,0.000004%,trade,Trade and Achievement
pl_hinden_a12,2,0.000004%,pl,Payload
mvm_forestside_a3,2,0.000004%,mvm,Man vs Machine
pl_swiftwater_tk,2,0.000004%,pl,Payload
plr_hightower_tdm_r1,2,0.000004%,plr,Payload Race
dm_crosshair,2,0.000004%,dm,Deathmatch
texture_test_map,2,0.000004%,texture,Other
mvm_coaltown_me,2,0.000004%,mvm,Man vs Machine
payload_one_tessssttttt,2,0.000004%,payload,Other
slender_mechanicus_133_a1,2,0.000004%,slender,Other
fw_medieval_tunnel_v0,2,0.000004%,fw,Other
pl_frontier_edit_v1,2,0.000004%,pl,Payload
dm_bridge_badwater_advanced2,2,0.000004%,dm,Deathmatch
mvm_bigrock_1attest,2,0.000004%,mvm,Man vs Machine
pl_ambush_a4,2,0.000004%,pl,Payload
cp_fern_a5,2,0.000004%,cp,Capture Point
pl_crusoe_a16,2,0.000004%,pl,Payload
pl_cavecrystal_a1,2,0.000004%,pl,Payload
mvm_decoy_cats_madness,2,0.000004%,mvm,Man vs Machine
vsh_powerground_b5,2,0.000004%,vsh,Other
cdash_s2,2,0.000004%,cdash,Other
box_fortress,2,0.000004%,box,Other
mvm_manndarin_final_advanced,2,0.000004%,mvm,Man vs Machine
jump_labrador_beta1i,2,0.000004%,jump,Other
dm_floating_lands_fix_click_adv,2,0.000004%,dm,Deathmatch
vsh_frothandtransit_v3,2,0.000004%,vsh,Other
dr_museum_night_a1,2,0.000004%,dr,Other
custom_sounds,2,0.000004%,custom,Other
mvm_decoy_heartly,2,0.000004%,mvm,Man vs Machine
mvm_manndarin_final_g.u.m.my.,2,0.000004%,mvm,Man vs Machine
mvm_coaltown_noname,2,0.000004%,mvm,Man vs Machine
tfkart_castlerush_final_pg,2,0.000004%,tfkart,Other
cp_orange_x8_psz_up4,2,0.000004%,cp,Capture Point
cp_nonameyetdontbully,2,0.000004%,cp,Capture Point
cp_shelter,2,0.000004%,cp,Capture Point
cp_demonbowl,2,0.000004%,cp,Capture Point
zf_zombie_mall_b1_002,2,0.000004%,zf,Other
i_want_to_suck_unskilleds_dick3,2,0.000004%,i,Other
mvm_coaltown_3,2,0.000004%,mvm,Man vs Machine
tr_walkway_rc2 2,2,0.000004%,tr,Other
mvm_mannhattan_test4,2,0.000004%,mvm,Man vs Machine
mvm_machine_attacks_ep7_11,2,0.000004%,mvm,Man vs Machine
mvm_machine_attacks_ep14_5,2,0.000004%,mvm,Man vs Machine
cp_dogblu_b3,2,0.000004%,cp,Capture Point
basic_map,2,0.000004%,basic,Other
swanky_forest_road,2,0.000004%,swanky,Other
trade_stardust_ros,2,0.000004%,trade,Trade and Achievement
koth_complete_sky1_final,2,0.000004%,koth,King of the Hill
room2016_exactol,2,0.000004%,room2016,Other
trade_minecraft_glorified_xmas2,2,0.000004%,trade,Trade and Achievement
tfdb_forest_a7,2,0.000004%,tfdb,Other
ctf_2fort_space_beta,2,0.000004%,ctf,Capture the Flag
trade_minecraft_v14,2,0.000004%,trade,Trade and Achievement
maebbie_test_01,2,0.000004%,maebbie,Other
alamo-mds_v2_d,2,0.000004%,alamo-mds,Other
koth_trainyard,2,0.000004%,koth,King of the Hill
mvm_coaltown_sergeants_wave3,2,0.000004%,mvm,Man vs Machine
fy_twotowers,2,0.000004%,fy,Other
all_stuff,2,0.000004%,all,Other
cp_mudwater_b3d,2,0.000004%,cp,Capture Point
mvm_overlord_b3_historyoftf,2,0.000004%,mvm,Man vs Machine
zf2_lakehouse_v1,2,0.000004%,zf2,Other
mvm_testbed_v2_scout,2,0.000004%,mvm,Man vs Machine
pl_badwater_event_tk,2,0.000004%,pl,Payload
trade_unkown_v0_1_6_1_forwopper,2,0.000004%,trade,Trade and Achievement
cp_logjam_b18,2,0.000004%,cp,Capture Point
arena_big_tower,2,0.000004%,arena,Other
trade_fun_beach,2,0.000004%,trade,Trade and Achievement
alamo-mds_v2,2,0.000004%,alamo-mds,Other
arena_the_shack,2,0.000004%,arena,Other
cp_badlands_pro_b1,2,0.000004%,cp,Capture Point
surf_ny_resist_v6,2,0.000004%,surf,Other
cp_raiden2,2,0.000004%,cp,Capture Point
cp_warmachine_b3,2,0.000004%,cp,Capture Point
jump_kepler,2,0.000004%,jump,Other
surf_year3000_njv_test1,2,0.000004%,surf,Other
plr_arctic_c,2,0.000004%,plr,Payload Race
cp_rocket_shooting2,2,0.000004%,cp,Capture Point
mvm_jon_a7_normal,2,0.000004%,mvm,Man vs Machine
cp_frostgale_rc1,2,0.000004%,cp,Capture Point
mvm_processingv1_ct_advanced,2,0.000004%,mvm,Man vs Machine
vsh_castle_siege_b11_skial_v2,2,0.000004%,vsh,Other
dr_dlux_nightfall_v2_fixb,2,0.000004%,dr,Other
jump_map,2,0.000004%,jump,Other
mvm_coaltown_moleman,2,0.000004%,mvm,Man vs Machine
koth_sandpit_a1,2,0.000004%,koth,King of the Hill
arena_first_room,2,0.000004%,arena,Other
pl_swiftwater_final_rc_tk,2,0.000004%,pl,Payload
trade_unkown_v0_2_1,2,0.000004%,trade,Trade and Achievement
koth_ship_a1,2,0.000004%,koth,King of the Hill
koth_monolith,2,0.000004%,koth,King of the Hill
mvm_bigrock_general_invade,2,0.000004%,mvm,Man vs Machine
wallfox_indev15,2,0.000004%,wallfox,Other
tr_warmup_rc1,2,0.000004%,tr,Other
koth_blastoff,2,0.000004%,koth,King of the Hill
tr_rollout_a1-1,2,0.000004%,tr,Other
trade_plaza_neon_75,2,0.000004%,trade,Trade and Achievement
cp_logjam_b10,2,0.000004%,cp,Capture Point
koth_spaaaace_beta_01_tk,2,0.000004%,koth,King of the Hill
slender_his_world,2,0.000004%,slender,Other
trade_simply_v7,2,0.000004%,trade,Trade and Achievement
koth_bankroot,2,0.000004%,koth,King of the Hill
jb_robcorp_b0,2,0.000004%,jb,Other
mvm_intercept_b4,2,0.000004%,mvm,Man vs Machine
pl_blasted_a1,2,0.000004%,pl,Payload
race_minecraft_testtrack,2,0.000004%,race,Other
rp_hometown1999,2,0.000004%,rp,Other
mvm_coaltown_base,2,0.000004%,mvm,Man vs Machine
pl_gravelpit_rc,2,0.000004%,pl,Payload
mvm_sunset_tower_alpha,2,0.000004%,mvm,Man vs Machine
jump_linear_final,2,0.000004%,jump,Other
koth_tr_rocket_shooting2,2,0.000004%,koth,King of the Hill
zom_castle_siege_v2,2,0.000004%,zom,Other
mvm_rottenburg_boss_battle,2,0.000004%,mvm,Man vs Machine
cp_sierra_t2,2,0.000004%,cp,Capture Point
mvm_decoy_30_waves_remastered_h,2,0.000004%,mvm,Man vs Machine
tr_walkway_rc2_1,2,0.000004%,tr,Other
mvm_coaltown_event_2,2,0.000004%,mvm,Man vs Machine
ctf_flyingfortresses_b,2,0.000004%,ctf,Capture the Flag
mvm_rottenburg_robot_attack_mov,2,0.000004%,mvm,Man vs Machine
tr_walkway_rc3,2,0.000004%,tr,Other
trade_rgb5,2,0.000004%,trade,Trade and Achievement
horror_get_stalked_part2,2,0.000004%,horror,Other
bhop_metric_b3,2,0.000004%,bhop,Other
mvm_coaltown_advanced_singlepla,2,0.000004%,mvm,Man vs Machine
simple_final_v01,2,0.000004%,simple,Other
cp_thefrontline,2,0.000004%,cp,Capture Point
zf_asylum_fix_ig,2,0.000004%,zf,Other
ba_jailfort_c1,2,0.000004%,ba,Other
cp_paraglyph_a2,2,0.000004%,cp,Capture Point
cp_orange_rb_v1,2,0.000004%,cp,Capture Point
boxing_ring,2,0.000004%,boxing,Other
koth_sewage_a4,2,0.000004%,koth,King of the Hill
mvm_coaltown_nitro,2,0.000004%,mvm,Man vs Machine
cp_xmas_warpath_5_tk,2,0.000004%,cp,Capture Point
zom_moon_texture_v1,2,0.000004%,zom,Other
w_test,2,0.000004%,w,Other
cp_windfall_a1,2,0.000004%,cp,Capture Point
jump_auga_b2,2,0.000004%,jump,Other
de_cpl_fire,2,0.000004%,de,Other
de_dust2_unlimited,2,0.000004%,de,Other
jump_sheer_v2,2,0.000004%,jump,Other
supernatural_village_v1b,2,0.000004%,supernatural,Other
cp_orange_x7a,2,0.000004%,cp,Capture Point
mvm_techno,2,0.000004%,mvm,Man vs Machine
mvm_rottenburg_cash_backup,2,0.000004%,mvm,Man vs Machine
zs_experimental,2,0.000004%,zs,Other
pl_sunsetbaytown_a12a,2,0.000004%,pl,Payload
koth_gridland,2,0.000004%,koth,King of the Hill
pl_dereggub_a3,2,0.000004%,pl,Payload
dm_hakugyokurou_fanaifix,2,0.000004%,dm,Deathmatch
dr_tantrum_gsn,2,0.000004%,dr,Other
cdash_s4,2,0.000004%,cdash,Other
bhop_mapsuck_final,2,0.000004%,bhop,Other
koth_wubwubwub_tk,2,0.000004%,koth,King of the Hill
jump_academy_full_08_01_2016,2,0.000004%,jump,Other
trade_terminal_beta7d_p2,2,0.000004%,trade,Trade and Achievement
trade_ovcity_a2,2,0.000004%,trade,Trade and Achievement
trade_plaza_3b2_xy,2,0.000004%,trade,Trade and Achievement
achi_egypt_night_v3,2,0.000004%,achi,Other
speedrace_tk,2,0.000004%,speedrace,Other
koth_test_a2,2,0.000004%,koth,King of the Hill
jump_blank,2,0.000004%,jump,Other
jump_detr_v2b,2,0.000004%,jump,Other
vsh_mistake_manor,2,0.000004%,vsh,Other
zom_planks_v4,2,0.000004%,zom,Other
mvm_isolation_b4_revisted,2,0.000004%,mvm,Man vs Machine
arena_invisium,2,0.000004%,arena,Other
jump_kowaiu,2,0.000004%,jump,Other
dm_duel_rg_v11,2,0.000004%,dm,Deathmatch
cp_for_night_is_full_of,2,0.000004%,cp,Capture Point
jump_grey_final_fixed,2,0.000004%,jump,Other
ba_alkatrez_test_v4,2,0.000004%,ba,Other
sdm_0h,2,0.000004%,sdm,Other
trade_plaza_neon_76,2,0.000004%,trade,Trade and Achievement
ctf_aerial_b11,2,0.000004%,ctf,Capture the Flag
surf_mesa_revo_1tf2,2,0.000004%,surf,Other
dm_bridge_decoy_expert1,2,0.000004%,dm,Deathmatch
cp_breakout_a8,2,0.000004%,cp,Capture Point
koth_viaduct_swampy_nowater_07,2,0.000004%,koth,King of the Hill
mov_bluebase_release,2,0.000004%,mov,Other
mvm_rottenburg_test5,2,0.000004%,mvm,Man vs Machine
plr_hightower_tdm_r3,2,0.000004%,plr,Payload Race
koth_toxicrave2017_a1_wip5,2,0.000004%,koth,King of the Hill
fw_minecraft,2,0.000004%,fw,Other
koth_minecraft_embers3,2,0.000004%,koth,King of the Hill
trade_minecraft_anvils8,2,0.000004%,trade,Trade and Achievement
ctf_turbine_minecraft_s1,2,0.000004%,ctf,Capture the Flag
zf_compound_b5,2,0.000004%,zf,Other
koth_aerial_a18,2,0.000004%,koth,King of the Hill
mvm_decoy_goldenmassacre,2,0.000004%,mvm,Man vs Machine
cp_orange_sg,2,0.000004%,cp,Capture Point
cp_redsrevenge,2,0.000004%,cp,Capture Point
cp_pinball_v8,2,0.000004%,cp,Capture Point
mvm_coaltown_epic2,2,0.000004%,mvm,Man vs Machine
koth_iglesia_a11 (1),2,0.000004%,koth,King of the Hill
danny_real_map,2,0.000004%,danny,Other
arena_creekwood_a4,2,0.000004%,arena,Other
dm_roman_v1a,2,0.000004%,dm,Deathmatch
mvm_winter_b5_mannworks_expert1,2,0.000004%,mvm,Man vs Machine
koth_indust_a6,2,0.000004%,koth,King of the Hill
plr_sidetracked_rc3,2,0.000004%,plr,Payload Race
pl_factory_b3,2,0.000004%,pl,Payload
achievement_idlecaves_,2,0.000004%,achievement,Trade and Achievement
vsh_killbox_hmx,2,0.000004%,vsh,Other
achievement_all_v52,2,0.000004%,achievement,Trade and Achievement
koth_test_nopoint,2,0.000004%,koth,King of the Hill
meguido_awesomebox_rc7c,2,0.000004%,meguido,Other
pl_sunsetbaytown,2,0.000004%,pl,Payload
dm_mariokart_space3,2,0.000004%,dm,Deathmatch
jump_recycle_a3,2,0.000004%,jump,Other
detail_laredspawn,2,0.000004%,detail,Other
mvm_dontenterthewell_beta,2,0.000004%,mvm,Man vs Machine
slender_the_tower_b4b,2,0.000004%,slender,Other
room2016_wilfire,2,0.000004%,room2016,Other
jump_when_b2_old,2,0.000004%,jump,Other
de_pira_legos,2,0.000004%,de,Other
mvm_mannhattan_empire_escalatio,2,0.000004%,mvm,Man vs Machine
ctf_vikings_final_v5,2,0.000004%,ctf,Capture the Flag
cp_bloodstained_b3,2,0.000004%,cp,Capture Point
cp_orange_rush_1.1,2,0.000004%,cp,Capture Point
cp_mario_bros_b4,2,0.000004%,cp,Capture Point
achievement_idle_skbox_v11,2,0.000004%,achievement,Trade and Achievement
tfdb_ringz2,2,0.000004%,tfdb,Other
koth_orbit2,2,0.000004%,koth,King of the Hill
koth_trainsawlaser_rc1_tk,2,0.000004%,koth,King of the Hill
mvm_mannworks_uu99_test,2,0.000004%,mvm,Man vs Machine
aaa_shortkoth,2,0.000004%,aaa,Other
jump_4starters_a5,2,0.000004%,jump,Other
d1_canals_01,2,0.000004%,d1,Other
screenshot_crashz_v2r2_port2,2,0.000004%,screenshot,Other
mge_gullywash,2,0.000004%,mge,Other
cp_orange_50f_tower_cyan,2,0.000004%,cp,Capture Point
zom_lila_panic_v10,2,0.000004%,zom,Other
cp_pumpstation_a10,2,0.000004%,cp,Capture Point
pl_fifthcurve,2,0.000004%,pl,Payload
melee_ringking_tk,2,0.000004%,melee,Other
koth_vizard_v1_tk,2,0.000004%,koth,King of the Hill
mvm_coaltown_test3,2,0.000004%,mvm,Man vs Machine
jump_fizzydrink_a1,2,0.000004%,jump,Other
mvm_skullcove_heavy,2,0.000004%,mvm,Man vs Machine
pl_mineshaft_final,2,0.000004%,pl,Payload
koth_turningtest_a8,2,0.000004%,koth,King of the Hill
torchfire_old_with_3dsb,2,0.000004%,torchfire,Other
mvm_rottenburg_punch,2,0.000004%,mvm,Man vs Machine
ph_out_there,2,0.000004%,ph,Other
surf_lithium2,2,0.000004%,surf,Other
pl_v4_zedul,2,0.000004%,pl,Payload
ctf_aerial_a26,2,0.000004%,ctf,Capture the Flag
jump_academy_medstrafe_a2,2,0.000004%,jump,Other
cp_highnoon_b1,2,0.000004%,cp,Capture Point
tr_aim1,2,0.000004%,tr,Other
mvm_mannhattan_banana,2,0.000004%,mvm,Man vs Machine
mvm_decoy_sas,2,0.000004%,mvm,Man vs Machine
cp_orange_gm_beta,2,0.000004%,cp,Capture Point
trade_plaza_zelda1,2,0.000004%,trade,Trade and Achievement
trade_plaza_lord_b9,2,0.000004%,trade,Trade and Achievement
cp_orange_x3_egt,2,0.000004%,cp,Capture Point
mvm_mannhattan_sergeants_wave,2,0.000004%,mvm,Man vs Machine
mvm_decoy_santifrank,2,0.000004%,mvm,Man vs Machine
mvm_hydro_lord,2,0.000004%,mvm,Man vs Machine
pl_volcanic_a22,2,0.000004%,pl,Payload
mvm_upward_pl,2,0.000004%,mvm,Man vs Machine
mvm_decoy_golden1,2,0.000004%,mvm,Man vs Machine
koth_avalanche_pro1,2,0.000004%,koth,King of the Hill
map_wip,2,0.000004%,map,Other
skill_ngcoop,2,0.000004%,skill,Other
trade_apg_r15,2,0.000004%,trade,Trade and Achievement
ctf_2fort_v3,2,0.000004%,ctf,Capture the Flag
jump_echelon_pre2,2,0.000004%,jump,Other
mvm_badwater_rc1,2,0.000004%,mvm,Man vs Machine
dr_industrial_tf2,2,0.000004%,dr,Other
tfdb_trepidation_v1a,2,0.000004%,tfdb,Other
achievement_apg_remade9j_xmas2,2,0.000004%,achievement,Trade and Achievement
tfdb_catwalk_a2,2,0.000004%,tfdb,Other
zom_fort_v3,2,0.000004%,zom,Other
achievement_idle_awesomebox56,2,0.000004%,achievement,Trade and Achievement
koth_collide_a3,2,0.000004%,koth,King of the Hill
dm_boostertower_v2_tk,2,0.000004%,dm,Deathmatch
mge_badlands,2,0.000004%,mge,Other
room2016_oatmeal,2,0.000004%,room2016,Other
ctf_convoy_v2_d,2,0.000004%,ctf,Capture the Flag
mvm_overdrive_ep4,2,0.000004%,mvm,Man vs Machine
trade_plaza_neon_79,2,0.000004%,trade,Trade and Achievement
trade_abstruse,2,0.000004%,trade,Trade and Achievement
train_v3,2,0.000004%,train,Other
ph_spookyharvest_a1,2,0.000004%,ph,Other
galaxy_warp,2,0.000004%,galaxy,Other
tfdb_castleyard_large,2,0.000004%,tfdb,Other
mvm_badwater_final_intermediate,2,0.000004%,mvm,Man vs Machine
koth_clarify,2,0.000004%,koth,King of the Hill
trade_celshade_r2,2,0.000004%,trade,Trade and Achievement
tfdb_sandvich_7e_gs,2,0.000004%,tfdb,Other
mvm_jon_a7_endless,2,0.000004%,mvm,Man vs Machine
tfdb_baseball_sv01,2,0.000004%,tfdb,Other
mvm_bigrock_asssergeya,2,0.000004%,mvm,Man vs Machine
dm_bridge_wrath_of_the_robotic_,2,0.000004%,dm,Deathmatch
mvm_rottenburg_village_escalati,2,0.000004%,mvm,Man vs Machine
koth_greengrove_redux,2,0.000004%,koth,King of the Hill
ctf_coldbase_rc5,2,0.000004%,ctf,Capture the Flag
mvm_coaltown_ultimatetank,2,0.000004%,mvm,Man vs Machine
pl_swiftwater,2,0.000004%,pl,Payload
achievement_idle_nomercy_v4_212,2,0.000004%,achievement,Trade and Achievement
jump_evont_a1,2,0.000004%,jump,Other
koth_viaduct_colortest71_newcop,2,0.000004%,koth,King of the Hill
tf_willjojo,2,0.000004%,tf,Other
mvm_rottenburg_ultimentm,2,0.000004%,mvm,Man vs Machine
fw_zsy_2plat_b2,2,0.000004%,fw,Other
jump_apollo_bonus2,2,0.000004%,jump,Other
sm64_hazy_maze_cave_tk,2,0.000004%,sm64,Other
mvm_decoy_boxylovania,2,0.000004%,mvm,Man vs Machine
mvm_waterbridge_test_showcase,2,0.000004%,mvm,Man vs Machine
cp_burnyard,2,0.000004%,cp,Capture Point
dm_warrock_marien_v7,2,0.000004%,dm,Deathmatch
ctf_construct,2,0.000004%,ctf,Capture the Flag
pl_minewoods_b3_tk,2,0.000004%,pl,Payload
mvm_mannworks_tryintofixeveryth,2,0.000004%,mvm,Man vs Machine
mvm_underground_advanced1_lord,2,0.000004%,mvm,Man vs Machine
trade_tbgevolution_abstracta5,2,0.000004%,trade,Trade and Achievement
pl_hotwater25,2,0.000004%,pl,Payload
pl_cashworks_rc2,2,0.000004%,pl,Payload
mvm_coaltown_heavy,2,0.000004%,mvm,Man vs Machine
ctf_2fort_classic_ultra_bdv6,2,0.000004%,ctf,Capture the Flag
koth_remera,2,0.000004%,koth,King of the Hill
mvm_ghost_town_bots_dead,2,0.000004%,mvm,Man vs Machine
ctf_2fort_mine_craft_bd3,2,0.000004%,ctf,Capture the Flag
achievement_idle_awesomebox59,2,0.000004%,achievement,Trade and Achievement
jump_when_b2_fix_fix,2,0.000004%,jump,Other
mvm_normandy_operation_overlord,2,0.000004%,mvm,Man vs Machine
mvm_rottenburg_test4,2,0.000004%,mvm,Man vs Machine
ctf_facility_build60,2,0.000004%,ctf,Capture the Flag
coliseum1_d,2,0.000004%,coliseum1,Other
cp_argentan,2,0.000004%,cp,Capture Point
syn_burlybrawl_fawosfix_30waves,2,0.000004%,syn,Other
mvm_coaltown_easy1,2,0.000004%,mvm,Man vs Machine
trade_rdg_b38_alpha,2,0.000004%,trade,Trade and Achievement
zom_dustbowl_v6,2,0.000004%,zom,Other
arena_a_supply_fixed8,2,0.000004%,arena,Other
mvm_coaltown_bh_one,2,0.000004%,mvm,Man vs Machine
de_absurdity,2,0.000004%,de,Other
mvm_coaltown_advanced44,2,0.000004%,mvm,Man vs Machine
cp_keel_a4,2,0.000004%,cp,Capture Point
ctf_aerial_b11_c5,2,0.000004%,ctf,Capture the Flag
vsh_arctic_hell_v4,2,0.000004%,vsh,Other
mvm_decoy_ultra_devastation,2,0.000004%,mvm,Man vs Machine
cp_overlord_beta,2,0.000004%,cp,Capture Point
koth_sandpits_a1,2,0.000004%,koth,King of the Hill
jail_carceris_b3_tf2jail,2,0.000004%,jail,Other
test_waterfall,2,0.000004%,test,Other
sd_xmas_party_b5,2,0.000004%,sd,Other
koth_noname_a10,2,0.000004%,koth,King of the Hill
pl_hoodoo_final_d,2,0.000004%,pl,Payload
trade_fork,2,0.000004%,trade,Trade and Achievement
jump_woo2_a8,2,0.000004%,jump,Other
mvm_5gorge_cp_thepower,2,0.000004%,mvm,Man vs Machine
mvm_coaltown_event_5,2,0.000004%,mvm,Man vs Machine
trade_minecraft_skial_a3,2,0.000004%,trade,Trade and Achievement
surf_sinsane_tf2,2,0.000004%,surf,Other
strange_farm,2,0.000004%,strange,Other
jump_habibi_c1_l14,2,0.000004%,jump,Other
trade_minecraft_river_w107,2,0.000004%,trade,Trade and Achievement
pl_upward_event2_tk,2,0.000004%,pl,Payload
trade_plaza_hg_at1a3,2,0.000004%,trade,Trade and Achievement
mvm_keller_b12_intermediate,2,0.000004%,mvm,Man vs Machine
mvm_badwater_final_rus,2,0.000004%,mvm,Man vs Machine
tall_climb,2,0.000004%,tall,Other
vsh_mandrill_shrine_v69,2,0.000004%,vsh,Other
dota_fortress_1_1,2,0.000004%,dota,Other
pl_upward_event2,2,0.000004%,pl,Payload
arena_guise2_72_a1,2,0.000004%,arena,Other
mvm_mannhattan_last1,2,0.000004%,mvm,Man vs Machine
mario_kart_2_kog_v3,2,0.000004%,mario,Other
trade_event_obc_5_test_2,2,0.000004%,trade,Trade and Achievement
room2016_lotso,2,0.000004%,room2016,Other
ctf_turbine_event,2,0.000004%,ctf,Capture the Flag
tfdb_trainfalls_v3,2,0.000004%,tfdb,Other
mvm_mountain_b3_uberupgrades,2,0.000004%,mvm,Man vs Machine
pl_volcanic_a20,2,0.000004%,pl,Payload
mpc_scoutsquest_00,2,0.000004%,mpc,Other
mvm_area_52_rc3_click_advanced1,2,0.000004%,mvm,Man vs Machine
cp_overgrown_b5,2,0.000004%,cp,Capture Point
koth_narrowpass_a12,2,0.000004%,koth,King of the Hill
rcp_april_fools_year_festival_a,2,0.000004%,rcp,Other
mvm_decoy_heavyweight_invasion,2,0.000004%,mvm,Man vs Machine
cp_orange_h!gh$tyle_4fun,2,0.000004%,cp,Capture Point
zom_hauntedmansion_v1,2,0.000004%,zom,Other
pl_barnblitz_free_aoagfix,2,0.000004%,pl,Payload
room2016_earkham,2,0.000004%,room2016,Other
tf_25kmrun,2,0.000004%,tf,Other
tfdb_steelworks,2,0.000004%,tfdb,Other
surf_sluice,2,0.000004%,surf,Other
achievement_pyro_remix_final_d,2,0.000004%,achievement,Trade and Achievement
prototype_figbeach_v1,2,0.000004%,prototype,Other
cp_orange_run_v2,2,0.000004%,cp,Capture Point
cp_atomicsands_a1,2,0.000004%,cp,Capture Point
trade_redstar_v2,2,0.000004%,trade,Trade and Achievement
cp_canyoncamp,2,0.000004%,cp,Capture Point
zom_military_v18,2,0.000004%,zom,Other
trade_snowshine_tg_v5,2,0.000004%,trade,Trade and Achievement
cp_colourful_space_neon_arena,2,0.000004%,cp,Capture Point
jump_cube_b3,2,0.000004%,jump,Other
surf_nolife_v3,2,0.000004%,surf,Other
cp_highclass_v2,2,0.000004%,cp,Capture Point
mvm_coaltown_gmt_endurance,2,0.000004%,mvm,Man vs Machine
jump_kin_a1,2,0.000004%,jump,Other
plr_skyfortress_a10,2,0.000004%,plr,Payload Race
koth_wubwubwub_remix_vip_tk,2,0.000004%,koth,King of the Hill
tfdb_beandevil_tournament,2,0.000004%,tfdb,Other
cp_beachassault_v1,2,0.000004%,cp,Capture Point
koth_fort_chaos,2,0.000004%,koth,King of the Hill
derelict_alpha_9,2,0.000004%,derelict,Other
koth_annex_3_test5_a2,2,0.000004%,koth,King of the Hill
jump_detr_v2w,2,0.000004%,jump,Other
aoag_shutin_beta_2,2,0.000004%,aoag,Other
mvm_mannstate_a10,2,0.000004%,mvm,Man vs Machine
tfdb_space_ig,2,0.000004%,tfdb,Other
cp_orange_x3_minecraft_oliver,2,0.000004%,cp,Capture Point
plr_highwind_a5_tk,2,0.000004%,plr,Payload Race
ultiduo_baloo_v2 (1),2,0.000004%,ultiduo,Other
mvm_coaltown_robotmurdercop,2,0.000004%,mvm,Man vs Machine
trade_hyrule_oot3d_alpha_5a_tk,2,0.000004%,trade,Trade and Achievement
trade_vatican_city_xmas,2,0.000004%,trade,Trade and Achievement
jump_detr_v1j,2,0.000004%,jump,Other
tutorial20-func_rotating-extra,2,0.000004%,tutorial20-func,Other
ultiduo_ladder_b1,2,0.000004%,ultiduo,Other
mvm_sandstone_a1,2,0.000004%,mvm,Man vs Machine
dm_duel_ro_v4b,2,0.000004%,dm,Deathmatch
cp_degrootkeep_weapons,2,0.000004%,cp,Capture Point
mvm_processingv1_event_ct,2,0.000004%,mvm,Man vs Machine
jump_stress,2,0.000004%,jump,Other
koth_halloween,2,0.000004%,koth,King of the Hill
plr_overturn_a7,2,0.000004%,plr,Payload Race
team_trial_final,2,0.000004%,team,Other
cp_orange_z_a1,2,0.000004%,cp,Capture Point
koth_simple_dev,2,0.000004%,koth,King of the Hill
mvm_mannworks_kurwa,2,0.000004%,mvm,Man vs Machine
castle_wars,2,0.000004%,castle,Other
koth_highrise_a7,2,0.000004%,koth,King of the Hill
tfdb_redcourt_sv,2,0.000004%,tfdb,Other
mvm_mannworks_30waves_hard_v5,2,0.000004%,mvm,Man vs Machine
mvm_rottenburg_endless_nobomb,2,0.000004%,mvm,Man vs Machine
koth_aquapump_a1a,2,0.000004%,koth,King of the Hill
mvm_mannworks_customtauntkill,2,0.000004%,mvm,Man vs Machine
mvm_metro_rc1_have_at_it,2,0.000004%,mvm,Man vs Machine
trade_koganecity_b1,2,0.000004%,trade,Trade and Achievement
mvm_decoy_7videosperturbadores,2,0.000004%,mvm,Man vs Machine
trimp_entry_a1,2,0.000004%,trimp,Other
bhop_tyle2_test1,2,0.000004%,bhop,Other
zf_nighttower_v1_21,2,0.000004%,zf,Other
koth_pitfall,2,0.000004%,koth,King of the Hill
trade_mannconomy_v5g,2,0.000004%,trade,Trade and Achievement
dm_duel_extended,2,0.000004%,dm,Deathmatch
aim_deagle_arena,2,0.000004%,aim,Other
tfdb_omgodm1n_b7,2,0.000004%,tfdb,Other
mvm_coaltown_ghosttownfix,2,0.000004%,mvm,Man vs Machine
surf_scythy,2,0.000004%,surf,Other
pl_enclosure_rc1,2,0.000004%,pl,Payload
freestyle_brickyard,2,0.000004%,freestyle,Other
vsh_skyhigh_resort_b9,2,0.000004%,vsh,Other
mvm_ghost_town_endless_blu_norm,2,0.000004%,mvm,Man vs Machine
tr_jump_academy,2,0.000004%,tr,Other
pl_mesa_b1,2,0.000004%,pl,Payload
pl_depot_b2,2,0.000004%,pl,Payload
mvm_decoy_charafight,2,0.000004%,mvm,Man vs Machine
cp_toxic_b27,2,0.000004%,cp,Capture Point
cp_glassworks_rc6,2,0.000004%,cp,Capture Point
dr_csstest1,2,0.000004%,dr,Other
koth_forge_b2m,2,0.000004%,koth,King of the Hill
jump_habibi_c1_l5,2,0.000004%,jump,Other
advancedwallshots_prealpha1,2,0.000004%,advancedwallshots,Other
tfdb_angle_wip,2,0.000004%,tfdb,Other
koth_citadel_b36,2,0.000004%,koth,King of the Hill
cp_lowtide_b3,2,0.000004%,cp,Capture Point
mvm_coaltown_itsallnow,2,0.000004%,mvm,Man vs Machine
idle_13,2,0.000004%,idle,Other
cp_chabek_area01,2,0.000004%,cp,Capture Point
cp_orange_tairan_rusher,2,0.000004%,cp,Capture Point
jump_bouncerific,2,0.000004%,jump,Other
slender_aqua_a1,2,0.000004%,slender,Other
tfdb_neonheights_v1,2,0.000004%,tfdb,Other
ph_desolation_pb1,2,0.000004%,ph,Other
mvm_coaltown_survival_test,2,0.000004%,mvm,Man vs Machine
mvm_ghost_town_zombies_final,2,0.000004%,mvm,Man vs Machine
cb_have_fun,2,0.000004%,cb,Other
jump_jorge_017,2,0.000004%,jump,Other
tc_spectre_b5_tk,2,0.000004%,tc,Other
trade_ztg_space_plaza_v1_4,2,0.000004%,trade,Trade and Achievement
tower2_001,2,0.000004%,tower2,Other
vsh_hakurei_shrine_v3_tk,2,0.000004%,vsh,Other
cp_prison_break_v2_d10_r2,2,0.000004%,cp,Capture Point
pl_manngrove_rc4,2,0.000004%,pl,Payload
room2016_idolon,2,0.000004%,room2016,Other
idle_servers_v14,2,0.000004%,idle,Other
ctf_corvasfirstmap,2,0.000004%,ctf,Capture the Flag
mvm_decoy_cdzcreditgrind,2,0.000004%,mvm,Man vs Machine
jb_zero,2,0.000004%,jb,Other
mvm_waterlogged,2,0.000004%,mvm,Man vs Machine
pl_hellward_event_tk,2,0.000004%,pl,Payload
dm_valve_rc2nc,2,0.000004%,dm,Deathmatch
pl_wutville,2,0.000004%,pl,Payload
pl_outback_rc3,2,0.000004%,pl,Payload
mvm_mannhattan_test,2,0.000004%,mvm,Man vs Machine
jump_cyan_a4,2,0.000004%,jump,Other
koth_ivanpah_a6,2,0.000004%,koth,King of the Hill
fw_rush_training_v9,2,0.000004%,fw,Other
the_pit_concrete_d,2,0.000004%,the,Other
mvm_decoy_fortify,2,0.000004%,mvm,Man vs Machine
arena_volcano_b3a,2,0.000004%,arena,Other
cp_campus,2,0.000004%,cp,Capture Point
tfdb_prctest_supv4,2,0.000004%,tfdb,Other
arena_gladius,2,0.000004%,arena,Other
rhop_basic,2,0.000004%,rhop,Other
badmap_tk,2,0.000004%,badmap,Other
zom_infected_town_v2,2,0.000004%,zom,Other
skyboxes_2,2,0.000004%,skyboxes,Other
mvm_mannhattan_robotahere,2,0.000004%,mvm,Man vs Machine
fy_waterwars,2,0.000004%,fy,Other
cp_chill_a5,2,0.000004%,cp,Capture Point
jump_academy_medstrafe_a1,2,0.000004%,jump,Other
pl_emerge,2,0.000004%,pl,Payload
test_gate,2,0.000004%,test,Other
bhop_winterland,2,0.000004%,bhop,Other
cp_fragrun_s1,2,0.000004%,cp,Capture Point
mvm_badlands_advanced,2,0.000004%,mvm,Man vs Machine
vsh_magazine_b2a,2,0.000004%,vsh,Other
mvm_decoyxma_30wave_v60_lvl3,2,0.000004%,mvm,Man vs Machine
pass_warehouse_goal2,2,0.000004%,pass,Other
mvm_mannhattan_purgatory,2,0.000004%,mvm,Man vs Machine
achievement_idle_4_craft_v2,2,0.000004%,achievement,Trade and Achievement
room2016_rodionjenga,2,0.000004%,room2016,Other
fw_through_v4,2,0.000004%,fw,Other
cp_frozen_rc4,2,0.000004%,cp,Capture Point
ave_a1,2,0.000004%,ave,Other
mvm_hydro_a3_decoy,2,0.000004%,mvm,Man vs Machine
c_cp_lwobtsud,2,0.000004%,c,Other
pl_pier_b16_tk,2,0.000004%,pl,Payload
achievement_for_all_rus_rm_v4_f,2,0.000004%,achievement,Trade and Achievement
cp_metalworks_rc5_tk,2,0.000004%,cp,Capture Point
vsh_volcanicisland_v0,2,0.000004%,vsh,Other
mvm_convoy_intermediate,2,0.000004%,mvm,Man vs Machine
sd_sherman_hill_b05,2,0.000004%,sd,Other
jump_apollo_bonus1,2,0.000004%,jump,Other
koth_test_a4,2,0.000004%,koth,King of the Hill
mvm_sundown_a7,2,0.000004%,mvm,Man vs Machine
ctf_2fort_unleashednight,2,0.000004%,ctf,Capture the Flag
vigilantbag_server_map_v12,2,0.000004%,vigilantbag,Other
cp_coba_a2,2,0.000004%,cp,Capture Point
achievement_4fragers_r2,2,0.000004%,achievement,Trade and Achievement
dr_rewnozom1,2,0.000004%,dr,Other
rd_map001,2,0.000004%,rd,Other
dr_r60d_final_dd,2,0.000004%,dr,Other
achievement_ghosthorde_v2,2,0.000004%,achievement,Trade and Achievement
dm_middle_match_d,2,0.000004%,dm,Deathmatch
zom_darklands_beta,2,0.000004%,zom,Other
slender_dustbowl_b1,2,0.000004%,slender,Other
jump_x2,2,0.000004%,jump,Other
bhop_stref_shanghai_test1,2,0.000004%,bhop,Other
trade_dcx_b1,2,0.000004%,trade,Trade and Achievement
jump_marilene,2,0.000004%,jump,Other
koth_terrace_festive_b2,1,0.000002%,koth,King of the Hill
vsh_military_area_b1_d_fix_2,1,0.000002%,vsh,Other
trade_ngs_evening_v02,1,0.000002%,trade,Trade and Achievement
lego_fun_box_02a,1,0.000002%,lego,Other
tf_mine_cave,1,0.000002%,tf,Other
jump_1,1,0.000002%,jump,Other
mvm_ghost_town_simple_advanced,1,0.000002%,mvm,Man vs Machine
vsh_dongconsumer_v2_tk,1,0.000002%,vsh,Other
mvm_decoy_30_waves_remastered_s,1,0.000002%,mvm,Man vs Machine
cp_dogenzaka_v_progress,1,0.000002%,cp,Capture Point
koth_launchpad_a3,1,0.000002%,koth,King of the Hill
cp_vertigo_beta3,1,0.000002%,cp,Capture Point
payload_one_testfinal2,1,0.000002%,payload,Other
koth_rocky_a1,1,0.000002%,koth,King of the Hill
cffg_trade_v2,1,0.000002%,cffg,Other
achievement_idlecaves_b1,1,0.000002%,achievement,Trade and Achievement
dr_stoleme45,1,0.000002%,dr,Other
dr_bandicoot_egypt_tf2_v6,1,0.000002%,dr,Other
mvm_jon_a7_boss_rush,1,0.000002%,mvm,Man vs Machine
koth_witchbrew,1,0.000002%,koth,King of the Hill
mvm_decoy_negative,1,0.000002%,mvm,Man vs Machine
surf_sundown,1,0.000002%,surf,Other
pl_barnblitz_open,1,0.000002%,pl,Payload
plr_skyfortress_a4,1,0.000002%,plr,Payload Race
cp_orange_battlefield,1,0.000002%,cp,Capture Point
tfkart_icecavern_v3_tk,1,0.000002%,tfkart,Other
pl_dusttown_building,1,0.000002%,pl,Payload
tfsc_freeroam,1,0.000002%,tfsc,Other
slender_the_eight_pages_b1,1,0.000002%,slender,Other
surf_monolith_aa,1,0.000002%,surf,Other
ctf_underground_test_a1,1,0.000002%,ctf,Capture the Flag
mkm_firegod_b01g,1,0.000002%,mkm,Other
trade_minecraft_b60,1,0.000002%,trade,Trade and Achievement
cp_orange_x4_poolparty_b3,1,0.000002%,cp,Capture Point
test2_koth,1,0.000002%,test2,Other
mvm_refinery_b1,1,0.000002%,mvm,Man vs Machine
vsh_hl1_crossfire_bunker_v5,1,0.000002%,vsh,Other
plr_scoville_c2,1,0.000002%,plr,Payload Race
jump_jurfcenter_prealpha_v2,1,0.000002%,jump,Other
vsh_dr_dlux_tf2_v5,1,0.000002%,vsh,Other
ctf_minedesert_b6v1,1,0.000002%,ctf,Capture the Flag
tfdb_vfloat_test3,1,0.000002%,tfdb,Other
arena_mge,1,0.000002%,arena,Other
koth_sandmap01,1,0.000002%,koth,King of the Hill
cp_reckoner_b1a,1,0.000002%,cp,Capture Point
cp_croissant_rc4,1,0.000002%,cp,Capture Point
j_l_jump_aznbob_fixed,1,0.000002%,j,Other
jump_beef_a3,1,0.000002%,jump,Other
mvm_rottenburg_endless_blu_norm,1,0.000002%,mvm,Man vs Machine
tf_custom_tower5,1,0.000002%,tf,Other
ctf_facetest_b4,1,0.000002%,ctf,Capture the Flag
cp_hadal_b6,1,0.000002%,cp,Capture Point
tr_walkway_rc2 3,1,0.000002%,tr,Other
strange_level_alamo_d,1,0.000002%,strange,Other
mvm_hmap_b2,1,0.000002%,mvm,Man vs Machine
koth_hillside_a20,1,0.000002%,koth,King of the Hill
arena_debuild,1,0.000002%,arena,Other
mvm_decoy_experto2a,1,0.000002%,mvm,Man vs Machine
mvm_underground_rc3_ravine_ripp,1,0.000002%,mvm,Man vs Machine
jump_endurance_a1,1,0.000002%,jump,Other
mvm_powerplant_rc1_advanced_met,1,0.000002%,mvm,Man vs Machine
balloon_race_v2c,1,0.000002%,balloon,Other
mvm_hillside_v7_medivalmassacre,1,0.000002%,mvm,Man vs Machine
jump_scorpion_b1 (1),1,0.000002%,jump,Other
jump_freedom_old,1,0.000002%,jump,Other
tsm_moonbase,1,0.000002%,tsm,Other
cp_titan_b4,1,0.000002%,cp,Capture Point
mvm_popfile16,1,0.000002%,mvm,Man vs Machine
koth_cullslaw,1,0.000002%,koth,King of the Hill
cp_clustercuss_b1,1,0.000002%,cp,Capture Point
ba_jail_downview_b1,1,0.000002%,ba,Other
awp_tropicon,1,0.000002%,awp,Other
mkm_firegod_b02,1,0.000002%,mkm,Other
vsh_train_run_v6,1,0.000002%,vsh,Other
trade_barren_a6,1,0.000002%,trade,Trade and Achievement
mvm_band_watchtower_nightshade,1,0.000002%,mvm,Man vs Machine
ctf_dropoff_a5,1,0.000002%,ctf,Capture the Flag
ctf_assault_a6,1,0.000002%,ctf,Capture the Flag
jump_descent_v4,1,0.000002%,jump,Other
pl_skyfortress_a3,1,0.000002%,pl,Payload
ctf_aerial_a28,1,0.000002%,ctf,Capture the Flag
cp_orange_x3_rc2,1,0.000002%,cp,Capture Point
trade_masscc_a1,1,0.000002%,trade,Trade and Achievement
trade_rdg_b20,1,0.000002%,trade,Trade and Achievement
cp_t_tower_v1,1,0.000002%,cp,Capture Point
trade_plaza_3_xy,1,0.000002%,trade,Trade and Achievement
mvm_jon_a7_intermediate,1,0.000002%,mvm,Man vs Machine
cp_flashwind_workshop,1,0.000002%,cp,Capture Point
mvm_decoy_tankach,1,0.000002%,mvm,Man vs Machine
plr_skyfortress,1,0.000002%,plr,Payload Race
ctf_2fort_but_it_has_no_clippin,1,0.000002%,ctf,Capture the Flag
koth_subway,1,0.000002%,koth,King of the Hill
mvm_mayan_temple_swam,1,0.000002%,mvm,Man vs Machine
pipe_balle_b1,1,0.000002%,pipe,Other
koth_greyscale_day,1,0.000002%,koth,King of the Hill
koth_fightyard_beta1,1,0.000002%,koth,King of the Hill
ponypack/arena_lighthouse_rc1,1,0.000002%,ponypack/arena,Other
ctf_nordhaven_b3,1,0.000002%,ctf,Capture the Flag
jump_sven_a25,1,0.000002%,jump,Other
ctf_warehouses_v73,1,0.000002%,ctf,Capture the Flag
mvm_bigrock_endlessmayhem,1,0.000002%,mvm,Man vs Machine
koth_pumpkinpatch_event_1,1,0.000002%,koth,King of the Hill
ttt_community_pool_overhaul_b3,1,0.000002%,ttt,Other
koth_luftangriff_b1,1,0.000002%,koth,King of the Hill
mvm_snowpine_a3_advanced1,1,0.000002%,mvm,Man vs Machine
pl_strider_b9,1,0.000002%,pl,Payload
tr_rocket_shooting2_fix3_d,1,0.000002%,tr,Other
ctf_harvest_b1,1,0.000002%,ctf,Capture the Flag
ctf_spire_a2,1,0.000002%,ctf,Capture the Flag
sfm_team_gatebot_trailer_update,1,0.000002%,sfm,Other
cp_olus_frontline,1,0.000002%,cp,Capture Point
tfdb_prctest_supv5,1,0.000002%,tfdb,Other
tr_jumpingfield_01a,1,0.000002%,tr,Other
cp_bamorange_x3_v2_t12,1,0.000002%,cp,Capture Point
mvm_popfile_4,1,0.000002%,mvm,Man vs Machine
underminded_beta,1,0.000002%,underminded,Other
mvm_mannhattan_lmao2,1,0.000002%,mvm,Man vs Machine
koth_jolt,1,0.000002%,koth,King of the Hill
achievement_kvkidlefight_final3,1,0.000002%,achievement,Trade and Achievement
ctf_disrupt_b2_fix2,1,0.000002%,ctf,Capture the Flag
koth_colosseumb5_medieval,1,0.000002%,koth,King of the Hill
trade_shaolin_temple,1,0.000002%,trade,Trade and Achievement
trade_genesis,1,0.000002%,trade,Trade and Achievement
ctf_niceboat_tk,1,0.000002%,ctf,Capture the Flag
surf_dionysus,1,0.000002%,surf,Other
dm_house_of_ganon,1,0.000002%,dm,Deathmatch
cp_undercrypt_b9,1,0.000002%,cp,Capture Point
the_true_brave_robots,1,0.000002%,the,Other
koth_dust2_2x2,1,0.000002%,koth,King of the Hill
trade_masscc_c5_1_d,1,0.000002%,trade,Trade and Achievement
mcwall-mart_b12q_3,1,0.000002%,mcwall-mart,Other
jump_mohr_a3,1,0.000002%,jump,Other
dm_mylittlebrony_1,1,0.000002%,dm,Deathmatch
trade_panda_v2_a5,1,0.000002%,trade,Trade and Achievement
trade_sharktits,1,0.000002%,trade,Trade and Achievement
cp_test,1,0.000002%,cp,Capture Point
mvm_coaltown_ponies3,1,0.000002%,mvm,Man vs Machine
cp_orange_mangmu_s6,1,0.000002%,cp,Capture Point
koth_hakurei_shrine_rc1,1,0.000002%,koth,King of the Hill
vsh_waterlul_c1,1,0.000002%,vsh,Other
neogenesis_v001_test1,1,0.000002%,neogenesis,Other
mvm_coaltown_hunts,1,0.000002%,mvm,Man vs Machine
tf_animalscave_v1,1,0.000002%,tf,Other
ach_figbeach_final,1,0.000002%,ach,Other
jump_wallfox_tmps,1,0.000002%,jump,Other
cp_orange_z7_w1,1,0.000002%,cp,Capture Point
dm_overwatch_tf2,1,0.000002%,dm,Deathmatch
cp_sunshine_rc7,1,0.000002%,cp,Capture Point
mvm_coaltown_carriernormal1,1,0.000002%,mvm,Man vs Machine
cp_festung_a1pre6,1,0.000002%,cp,Capture Point
$rcp_april_fools_year_festival,1,0.000002%,$rcp,Other
rp_vespra_v4,1,0.000002%,rp,Other
koth_trenchway,1,0.000002%,koth,King of the Hill
mvm_mannhattan_nucleartrouble,1,0.000002%,mvm,Man vs Machine
trade_minecraft_enhanced_v5_4,1,0.000002%,trade,Trade and Achievement
achievements_ultimate,1,0.000002%,achievements,Other
mvm_mannworks_garden_war,1,0.000002%,mvm,Man vs Machine
mvm_thedust_b3_normal2,1,0.000002%,mvm,Man vs Machine
idle_falls_v1_1,1,0.000002%,idle,Other
surf_network_2013_d,1,0.000002%,surf,Other
jump_littleman_fire,1,0.000002%,jump,Other
tfkart_cherryblossoms,1,0.000002%,tfkart,Other
mvm_mannhattan_heavyonly,1,0.000002%,mvm,Man vs Machine
jump_academy_beta3a_v1 (1),1,0.000002%,jump,Other
cp_gummybear,1,0.000002%,cp,Capture Point
sdk_cp_badlands3,1,0.000002%,sdk,Other
mvm_decoy_robotic_assault,1,0.000002%,mvm,Man vs Machine
zf_tower_cp_b1_2,1,0.000002%,zf,Other
pd_meme_machine_b1_tk,1,0.000002%,pd,Other
surf_pulse_v1,1,0.000002%,surf,Other
mvm_ghost_town_thefatladysings,1,0.000002%,mvm,Man vs Machine
cp_prison_001,1,0.000002%,cp,Capture Point
dm_asylum_25x,1,0.000002%,dm,Deathmatch
zf_craphole,1,0.000002%,zf,Other
mvm_decoy_farm,1,0.000002%,mvm,Man vs Machine
cp_torrential,1,0.000002%,cp,Capture Point
cp_sawblades_b4,1,0.000002%,cp,Capture Point
jump_battle_all_class,1,0.000002%,jump,Other
achievement_idle_awesomebox_fin,1,0.000002%,achievement,Trade and Achievement
jump_vex_a1,1,0.000002%,jump,Other
dm_evolution_rc1,1,0.000002%,dm,Deathmatch
cp_cz3_b3,1,0.000002%,cp,Capture Point
test_hub5,1,0.000002%,test,Other
de_room,1,0.000002%,de,Other
pl_emergency,1,0.000002%,pl,Payload
jump_hopstep_rework,1,0.000002%,jump,Other
itemtest_award,1,0.000002%,itemtest,Other
cp_coldbase_rc2,1,0.000002%,cp,Capture Point
achievement_apg_remade8,1,0.000002%,achievement,Trade and Achievement
mvm_mannhattan_new5,1,0.000002%,mvm,Man vs Machine
zf_sky_ruins_b2,1,0.000002%,zf,Other
ctf_zeppelin,1,0.000002%,ctf,Capture the Flag
jump_soos,1,0.000002%,jump,Other
mvm_saddle_s14.ugc454211059,1,0.000002%,mvm,Man vs Machine
jump_academy_mdpogo_a,1,0.000002%,jump,Other
plr_toy_fort_cod_v5,1,0.000002%,plr,Payload Race
cp_orange_x3_skial,1,0.000002%,cp,Capture Point
dm_bridge_bigrock_advanced1,1,0.000002%,dm,Deathmatch
mvm_highrise.ugc600737216,1,0.000002%,mvm,Man vs Machine
koth_dijistemge_test,1,0.000002%,koth,King of the Hill
cp_first_3_rocks_4,1,0.000002%,cp,Capture Point
mvm_mannhattan_last2,1,0.000002%,mvm,Man vs Machine
trade_justplay_b2,1,0.000002%,trade,Trade and Achievement
mvm_mannhattan_sentry,1,0.000002%,mvm,Man vs Machine
zf2_hotel_v1,1,0.000002%,zf2,Other
pl_powercoast_a01_fixed,1,0.000002%,pl,Payload
cp_fastscope_a9,1,0.000002%,cp,Capture Point
koth_tikal_b6,1,0.000002%,koth,King of the Hill
ctf_spire_a3,1,0.000002%,ctf,Capture the Flag
tf_traincamp_b2,1,0.000002%,tf,Other
jump_adventure_new,1,0.000002%,jump,Other
mvm_cargo_b4_showcase,1,0.000002%,mvm,Man vs Machine
jump_darkness_v1ammo,1,0.000002%,jump,Other
koth_terrace_a6,1,0.000002%,koth,King of the Hill
aim_ak-colt_arg_fawosfix_ghost_,1,0.000002%,aim,Other
foundation_a2_001_006,1,0.000002%,foundation,Other
ctf_barn,1,0.000002%,ctf,Capture the Flag
trade_minecraft_skial_b3ct,1,0.000002%,trade,Trade and Achievement
mvm_decoy_tech,1,0.000002%,mvm,Man vs Machine
artpass_valvebase,1,0.000002%,artpass,Other
surf_orange,1,0.000002%,surf,Other
gm_bay,1,0.000002%,gm,Other
vsh_proporp_a001,1,0.000002%,vsh,Other
1_jump_academy_beta3_v1,1,0.000002%,1,Other
pl_cactuscanyon_rc1,1,0.000002%,pl,Payload
koth_quarry_rc4,1,0.000002%,koth,King of the Hill
koth_orbit,1,0.000002%,koth,King of the Hill
dm_floating_lands_fix_click_exp,1,0.000002%,dm,Deathmatch
koth_ultiduo_baloo_v2,1,0.000002%,koth,King of the Hill
koth_goldrush_pl,1,0.000002%,koth,King of the Hill
ba_space_jail_v2,1,0.000002%,ba,Other
koth_clock_tower,1,0.000002%,koth,King of the Hill
achievement_mph,1,0.000002%,achievement,Trade and Achievement
fd_walkway_rc2,1,0.000002%,fd,Other
ctf_redpolis_b5,1,0.000002%,ctf,Capture the Flag
trade_ftl_mc_v5,1,0.000002%,trade,Trade and Achievement
rd_coordinate,1,0.000002%,rd,Other
koth_watchtower,1,0.000002%,koth,King of the Hill
surf_something_made_up,1,0.000002%,surf,Other
koth_launchpad_a1,1,0.000002%,koth,King of the Hill
koth_lumberyard,1,0.000002%,koth,King of the Hill
ald_clash,1,0.000002%,ald,Other
mvm_ghost_town_xx_mlg_420_blaze,1,0.000002%,mvm,Man vs Machine
trade_plaza_sg_a4,1,0.000002%,trade,Trade and Achievement
tfdb_wildarena,1,0.000002%,tfdb,Other
trade_active,1,0.000002%,trade,Trade and Achievement
vsh_space_v2_event,1,0.000002%,vsh,Other
slender_fearscape_b2,1,0.000002%,slender,Other
vsh_castle_siege_b5_fixed,1,0.000002%,vsh,Other
analrapeing_ur_mom,1,0.000002%,analrapeing,Other
cp_beachfront_72_a6,1,0.000002%,cp,Capture Point
cp_badlands_pro_b3,1,0.000002%,cp,Capture Point
mvm_oilrig_rc5_expert,1,0.000002%,mvm,Man vs Machine
portals_testing,1,0.000002%,portals,Other
dm_store_tk,1,0.000002%,dm,Deathmatch
mvm_mannworksxma_30wave_v60_lvl,1,0.000002%,mvm,Man vs Machine
cp_lazytown_lazynite,1,0.000002%,cp,Capture Point
boss_flowey_v1,1,0.000002%,boss,Other
mvm_bigrock_putavida,1,0.000002%,mvm,Man vs Machine
trade_plaza_lord_b7_night,1,0.000002%,trade,Trade and Achievement
koth_lighthouse,1,0.000002%,koth,King of the Hill
crab_escape_b2,1,0.000002%,crab,Other
trade_minecraft_realms_v3,1,0.000002%,trade,Trade and Achievement
koth_snow2,1,0.000002%,koth,King of the Hill
koth_v3_boxroom,1,0.000002%,koth,King of the Hill
trade_stuff,1,0.000002%,trade,Trade and Achievement
koth_crazywar,1,0.000002%,koth,King of the Hill
mvm_open_final_swamp_30,1,0.000002%,mvm,Man vs Machine
pass_soccer_b2,1,0.000002%,pass,Other
koth_facing_world_1999,1,0.000002%,koth,King of the Hill
ultiduo_acropolis_a1-5,1,0.000002%,ultiduo,Other
ctf_trash_water_b1,1,0.000002%,ctf,Capture the Flag
koth_quick_a9d,1,0.000002%,koth,King of the Hill
mvm_impossible,1,0.000002%,mvm,Man vs Machine
trade_minecraft_2014_st_v2,1,0.000002%,trade,Trade and Achievement
arena_palace,1,0.000002%,arena,Other
ctf_ig_badlands2,1,0.000002%,ctf,Capture the Flag
tfdb_catland_v1_tk,1,0.000002%,tfdb,Other
bhop_metric_realfinal,1,0.000002%,bhop,Other
koth_aurora_mansion_b1,1,0.000002%,koth,King of the Hill
acg_apartment_redux_12,1,0.000002%,acg,Other
cp_cardinal_a1a,1,0.000002%,cp,Capture Point
mvm_ponyville_alpha,1,0.000002%,mvm,Man vs Machine
mvm_limburgh_final_badwater,1,0.000002%,mvm,Man vs Machine
cp_twilight,1,0.000002%,cp,Capture Point
cp_orange_v1,1,0.000002%,cp,Capture Point
trade_alley_rc5d_ween,1,0.000002%,trade,Trade and Achievement
slender_tunnels_133_a3,1,0.000002%,slender,Other
mvm_decoy_30wave_v20,1,0.000002%,mvm,Man vs Machine
mvm_cargo_a8,1,0.000002%,mvm,Man vs Machine
o_velho_oeste_bangbang,1,0.000002%,o,Other
mvm_decoy_aussies,1,0.000002%,mvm,Man vs Machine
koth_basin_a6,1,0.000002%,koth,King of the Hill
ach_yosuganosora_v11,1,0.000002%,ach,Other
achievement_computerhouse_v2b,1,0.000002%,achievement,Trade and Achievement
koth_pro_viaduct_rc2,1,0.000002%,koth,King of the Hill
ijikaru_room_d_d,1,0.000002%,ijikaru,Other
mvm_coaltown_bossfight,1,0.000002%,mvm,Man vs Machine
bad_project,1,0.000002%,bad,Other
mge_process,1,0.000002%,mge,Other
pl_shoreleave_a8,1,0.000002%,pl,Payload
cp_afterblaze_a2a,1,0.000002%,cp,Capture Point
achievements_scout_all-in-one,1,0.000002%,achievements,Other
ctf_bball2_del,1,0.000002%,ctf,Capture the Flag
dm_complex,1,0.000002%,dm,Deathmatch
mvm_ma_ep12b2_1_fixed,1,0.000002%,mvm,Man vs Machine
tf_flatland,1,0.000002%,tf,Other
koth_hamsters,1,0.000002%,koth,King of the Hill
pass_volei_de_praia,1,0.000002%,pass,Other
dbs_money_a7,1,0.000002%,dbs,Other
cp_orange_dread2_v1a,1,0.000002%,cp,Capture Point
zombiesurvival_b5,1,0.000002%,zombiesurvival,Other
tfdb_octagon_gmfg,1,0.000002%,tfdb,Other
koth_grey_d,1,0.000002%,koth,King of the Hill
cp_imbricatus_a5,1,0.000002%,cp,Capture Point
mvm_troopers_defend_fawosfix_gh,1,0.000002%,mvm,Man vs Machine
koth_white_valley_b3,1,0.000002%,koth,King of the Hill
ctf_steamroll_v2_tk,1,0.000002%,ctf,Capture the Flag
achievement_idle_awesomebox001,1,0.000002%,achievement,Trade and Achievement
2tpl_mine_alpine_2c,1,0.000002%,2tpl,Other
cp_orange_corridor2_110,1,0.000002%,cp,Capture Point
cp_process_final_shotclock,1,0.000002%,cp,Capture Point
plr_clandestine,1,0.000002%,plr,Payload Race
mvm_decoyxma_30wave_v60_lvl2,1,0.000002%,mvm,Man vs Machine
vsh_dr_universe_v5,1,0.000002%,vsh,Other
cchotel_definitely_rc1,1,0.000002%,cchotel,Other
arena_tale_of_two_teams_a1,1,0.000002%,arena,Other
cp_orangeknedl_v08,1,0.000002%,cp,Capture Point
freestyle_peaceful,1,0.000002%,freestyle,Other
zm_dead_maner,1,0.000002%,zm,Other
plr_solitude_b1,1,0.000002%,plr,Payload Race
trade_delfinoplaza_final_tk,1,0.000002%,trade,Trade and Achievement
tr_rocket_shooting_10_bot,1,0.000002%,tr,Other
jump_descent_v3,1,0.000002%,jump,Other
surf_lullaby_va,1,0.000002%,surf,Other
mvm_coaltown_advanced2bots,1,0.000002%,mvm,Man vs Machine
pyro_tennis_pro,1,0.000002%,pyro,Other
zom_sniper_day,1,0.000002%,zom,Other
jump_eyeland_a100,1,0.000002%,jump,Other
cp_grand_canyon_v1,1,0.000002%,cp,Capture Point
ctf_facetest_b2,1,0.000002%,ctf,Capture the Flag
toy_story,1,0.000002%,toy,Other
ctf_2fart_v13,1,0.000002%,ctf,Capture the Flag
achievement_deadwoodhallown1,1,0.000002%,achievement,Trade and Achievement
sd_doomsday_xmas,1,0.000002%,sd,Other
ctf_2fort_engi_power4,1,0.000002%,ctf,Capture the Flag
jump_prec2,1,0.000002%,jump,Other
jump_wallfox_a2,1,0.000002%,jump,Other
cp_orange_skiver_rc1_e8,1,0.000002%,cp,Capture Point
mvm_coaltown_butzet,1,0.000002%,mvm,Man vs Machine
mkm_firegod_b01b,1,0.000002%,mkm,Other
tr_rocket_shooting_training,1,0.000002%,tr,Other
zf_knee_deep,1,0.000002%,zf,Other
idle_best,1,0.000002%,idle,Other
achievement_deadwoodv1443,1,0.000002%,achievement,Trade and Achievement
tumtara_tf2,1,0.000002%,tumtara,Other
mvm_mannhattan_test10,1,0.000002%,mvm,Man vs Machine
arena_12,1,0.000002%,arena,Other
cp_trench_warefare_v2,1,0.000002%,cp,Capture Point
dr_marioworld_fix_a,1,0.000002%,dr,Other
mvm_mannhattan_invasion,1,0.000002%,mvm,Man vs Machine
mvm_ma_ep16_1_fixed,1,0.000002%,mvm,Man vs Machine
ctf_100yards_final,1,0.000002%,ctf,Capture the Flag
szf_l4d1_no_mercy_part1,1,0.000002%,szf,Other
cp_hella_a14,1,0.000002%,cp,Capture Point
mvm_bigrock_1testboss,1,0.000002%,mvm,Man vs Machine
mvm_decoy_bossbatle2,1,0.000002%,mvm,Man vs Machine
zs_breakout,1,0.000002%,zs,Other
vsh_rats_office_fix2,1,0.000002%,vsh,Other
cp_orange_x_7_with_event,1,0.000002%,cp,Capture Point
mvm_manndarin_final_metalic_kin,1,0.000002%,mvm,Man vs Machine
ctf_colorblind_beta,1,0.000002%,ctf,Capture the Flag
koth_dev_001,1,0.000002%,koth,King of the Hill
dm_scarletdevilmansion_xmas_t,1,0.000002%,dm,Deathmatch
pl_boogers,1,0.000002%,pl,Payload
mvm_machine_attacks_ep10_7,1,0.000002%,mvm,Man vs Machine
r60d_trade_2,1,0.000002%,r60d,Other
dm_concreteday1,1,0.000002%,dm,Deathmatch
achievement_heavy_turbov8,1,0.000002%,achievement,Trade and Achievement
mvm_mannhattan_lolsolo,1,0.000002%,mvm,Man vs Machine
koth_comet_b2,1,0.000002%,koth,King of the Hill
pl_powercoast_a17,1,0.000002%,pl,Payload
pl_moonbase_b2,1,0.000002%,pl,Payload
idle_pbsunset_v1,1,0.000002%,idle,Other
pl_stroika_b1,1,0.000002%,pl,Payload
trade_tbgevolution_abstractv4,1,0.000002%,trade,Trade and Achievement
ponypack/vsh_ram_shacked_final,1,0.000002%,ponypack/vsh,Other
j_l_jump_devils_redo,1,0.000002%,j,Other
my_world_x6_beta4,1,0.000002%,my,Other
sd_melee_fort_a16,1,0.000002%,sd,Other
jump_basics_a2,1,0.000002%,jump,Other
mvm_rottenburg_n,1,0.000002%,mvm,Man vs Machine
mvm_rottenburg_overwatched,1,0.000002%,mvm,Man vs Machine
jump_jorgelayja,1,0.000002%,jump,Other
achievement_idle_vaticancity_2,1,0.000002%,achievement,Trade and Achievement
rd_asteroid_bots,1,0.000002%,rd,Other
koth_twofortflooded,1,0.000002%,koth,King of the Hill
koth_comet,1,0.000002%,koth,King of the Hill
koth_turningtest_a2,1,0.000002%,koth,King of the Hill
trade_minecraft_toxicbunny,1,0.000002%,trade,Trade and Achievement
mvm_coaltown_endless_hardcore_t,1,0.000002%,mvm,Man vs Machine
fith_boxing_b2a,1,0.000002%,fith,Other
race_mannraceway_final,1,0.000002%,race,Other
mvm_t,1,0.000002%,mvm,Man vs Machine
szf_normandy_v3,1,0.000002%,szf,Other
plr_skyfortress_a2,1,0.000002%,plr,Payload Race
vsh_campette_d,1,0.000002%,vsh,Other
mvm_thedust_b2_advanced3,1,0.000002%,mvm,Man vs Machine
cp_granary_open,1,0.000002%,cp,Capture Point
trade_shoppa_ii_a2,1,0.000002%,trade,Trade and Achievement
dr_asylum_skial_v4_fixp,1,0.000002%,dr,Other
mvm_manninvade,1,0.000002%,mvm,Man vs Machine
cp_meleebarn_patched,1,0.000002%,cp,Capture Point
mvm_coaltown_the_infinite,1,0.000002%,mvm,Man vs Machine
cp_vanguard_rc1,1,0.000002%,cp,Capture Point
koth_volcano_alpha_2,1,0.000002%,koth,King of the Hill
koth_mannworks_alpha3,1,0.000002%,koth,King of the Hill
cp_frantic_factory,1,0.000002%,cp,Capture Point
pl_crag_event_b,1,0.000002%,pl,Payload
mvm_bigrock_for_men_2p,1,0.000002%,mvm,Man vs Machine
mvm_processingv1_expert_ct,1,0.000002%,mvm,Man vs Machine
vsh_bombkart_faktory,1,0.000002%,vsh,Other
duel_duel3,1,0.000002%,duel,Other
mvm_mannworks_bosses,1,0.000002%,mvm,Man vs Machine
koth_fst,1,0.000002%,koth,King of the Hill
dom_montezuma_v2,1,0.000002%,dom,Other
dbdl_test,1,0.000002%,dbdl,Other
pl_rebirth_b6a,1,0.000002%,pl,Payload
mvm_bigrock_alejandromartinez,1,0.000002%,mvm,Man vs Machine
mvm_decoy_fol,1,0.000002%,mvm,Man vs Machine
cp_resonance_rc3,1,0.000002%,cp,Capture Point
fw_ut_match1_v2,1,0.000002%,fw,Other
achievement_idle_test_01,1,0.000002%,achievement,Trade and Achievement
slender_fearscape_a1,1,0.000002%,slender,Other
koth_guerilla_a4n,1,0.000002%,koth,King of the Hill
pl_hemlock_b3,1,0.000002%,pl,Payload
ctf_testr_001,1,0.000002%,ctf,Capture the Flag
concmap_cave,1,0.000002%,concmap,Other
trade_plaza_neon_82,1,0.000002%,trade,Trade and Achievement
vsh_pineyard_final_tk,1,0.000002%,vsh,Other
gm_facility,1,0.000002%,gm,Other
mvm_gremlin_sanctuary_foolsgrav,1,0.000002%,mvm,Man vs Machine
tf2ware2_a2,1,0.000002%,tf2ware2,Other
trade_plaza_deserthobo_v1,1,0.000002%,trade,Trade and Achievement
arena_dog3_rc3,1,0.000002%,arena,Other
cp_sludgerun_a8,1,0.000002%,cp,Capture Point
sarah_fontaine_maptf2,1,0.000002%,sarah,Other
ba_jail_minecart_b14_dev99992,1,0.000002%,ba,Other
mvm_bigrock_1bossestest,1,0.000002%,mvm,Man vs Machine
ctf_aerial_b4,1,0.000002%,ctf,Capture the Flag
arena_discovery_b4,1,0.000002%,arena,Other
mvm_coaltown_wave667,1,0.000002%,mvm,Man vs Machine
jump_gancho,1,0.000002%,jump,Other
toth2017_template,1,0.000002%,toth2017,Other
pl_waste_b4,1,0.000002%,pl,Payload
ctf_premuda_b1b,1,0.000002%,ctf,Capture the Flag
koth_orbit2 (1),1,0.000002%,koth,King of the Hill
bhop_mapsuck_tf2,1,0.000002%,bhop,Other
ctf_business_rivalry,1,0.000002%,ctf,Capture the Flag
trade_minecraftworld_vwah,1,0.000002%,trade,Trade and Achievement
cp_glassworks,1,0.000002%,cp,Capture Point
koth_headquarters7a,1,0.000002%,koth,King of the Hill
idle_sniper_war_v7_69u,1,0.000002%,idle,Other
ctf_2fort_magic,1,0.000002%,ctf,Capture the Flag
koth_luftangriff_a4,1,0.000002%,koth,King of the Hill
mvm_thedust_b3_coaltown,1,0.000002%,mvm,Man vs Machine
guillaume_shipyard,1,0.000002%,guillaume,Other
dm_duel_v1_panda3,1,0.000002%,dm,Deathmatch
koth_quick_b1,1,0.000002%,koth,King of the Hill
pl_weapons_facility_b3,1,0.000002%,pl,Payload
trade_masscc_d5,1,0.000002%,trade,Trade and Achievement
rocketjump_uber,1,0.000002%,rocketjump,Other
mvm_mannhattan_medik,1,0.000002%,mvm,Man vs Machine
koth_emnem,1,0.000002%,koth,King of the Hill
zf_industry_rc1_cpless_mag,1,0.000002%,zf,Other
trade_plaza_darkly_5b,1,0.000002%,trade,Trade and Achievement
surf_thrill3r_fixe,1,0.000002%,surf,Other
surf_ny_advance_b5,1,0.000002%,surf,Other
dm_glass_x-shot_rc5,1,0.000002%,dm,Deathmatch
pl_campania_a5_s1,1,0.000002%,pl,Payload
tr_rocketjump_course,1,0.000002%,tr,Other
koth_draught68,1,0.000002%,koth,King of the Hill
cp_backwoods_a2,1,0.000002%,cp,Capture Point
vsh_toys_b2_skial_v2,1,0.000002%,vsh,Other
fun_pbp_n_friends_1i,1,0.000002%,fun,Other
trade_minecraft_pyro,1,0.000002%,trade,Trade and Achievement
ctf_castley,1,0.000002%,ctf,Capture the Flag
cp_orange_x3_cod_fix_beta2,1,0.000002%,cp,Capture Point
test_alotcubemap,1,0.000002%,test,Other
zf_snow_house_beta2_fix,1,0.000002%,zf,Other
mvm_coaltownxma_intermediate,1,0.000002%,mvm,Man vs Machine
mvm_coaltown_barrows_v3_tankfix,1,0.000002%,mvm,Man vs Machine
jump_metalyl_scout_v1,1,0.000002%,jump,Other
cp_orange_x3_shark_servers,1,0.000002%,cp,Capture Point
mvm_coaltown_test3.5,1,0.000002%,mvm,Man vs Machine
sarahtf2_map_light,1,0.000002%,sarahtf2,Other
dr_undertale_v1i,1,0.000002%,dr,Other
boss_sealchamber,1,0.000002%,boss,Other
ave_hq_a1_test,1,0.000002%,ave,Other
koth_tuscany_a5a,1,0.000002%,koth,King of the Hill
achievement_mphsv2,1,0.000002%,achievement,Trade and Achievement
mvm_overdrive_ep3,1,0.000002%,mvm,Man vs Machine
pl_streetbombescort_a5,1,0.000002%,pl,Payload
reflect_test,1,0.000002%,reflect,Other
gm_sugarcubecorner_v1,1,0.000002%,gm,Other
koth_junks_a4,1,0.000002%,koth,King of the Hill
rock2_b1,1,0.000002%,rock2,Other
koth_mapleridge,1,0.000002%,koth,King of the Hill
tr_badlands,1,0.000002%,tr,Other
pl_summit_b2_1,1,0.000002%,pl,Payload
mvm_coaltown_metal_melt,1,0.000002%,mvm,Man vs Machine
koth_lavaspeed,1,0.000002%,koth,King of the Hill
test_square_v9,1,0.000002%,test,Other
room2016_yrrzy,1,0.000002%,room2016,Other
achievement_turbov13hal,1,0.000002%,achievement,Trade and Achievement
achievement_idle_spytech,1,0.000002%,achievement,Trade and Achievement
ctf_orange_battlehill_v4_2_d,1,0.000002%,ctf,Capture the Flag
cp_idkyet,1,0.000002%,cp,Capture Point
tr_death,1,0.000002%,tr,Other
dm_concreteday1_survival,1,0.000002%,dm,Deathmatch
jump_third,1,0.000002%,jump,Other
tr_truepractice_test1,1,0.000002%,tr,Other
cp_warmachine_rc2,1,0.000002%,cp,Capture Point
trade_appleloosa_v2_a_real_boss,1,0.000002%,trade,Trade and Achievement
mvm_mannworks_mannhunt,1,0.000002%,mvm,Man vs Machine
mvm_ghost_town_youminati,1,0.000002%,mvm,Man vs Machine
mvm_moneybin,1,0.000002%,mvm,Man vs Machine
fighting_box,1,0.000002%,fighting,Other
pl_millstone_event_bots,1,0.000002%,pl,Payload
trade_brothercraft_mc,1,0.000002%,trade,Trade and Achievement
surf_bigramp_v2,1,0.000002%,surf,Other
mvm_coaltown_advenced10,1,0.000002%,mvm,Man vs Machine
trade_industry_v4c,1,0.000002%,trade,Trade and Achievement
jump_niglet,1,0.000002%,jump,Other
mvm_kongu,1,0.000002%,mvm,Man vs Machine
mvm_processing,1,0.000002%,mvm,Man vs Machine
o_buraco_negro_classic,1,0.000002%,o,Other
jump_knight_b2,1,0.000002%,jump,Other
pl_goldnight_a5,1,0.000002%,pl,Payload
surf_oa_akai_v6,1,0.000002%,surf,Other
cp_mini_castle,1,0.000002%,cp,Capture Point
cp_freight_final_r3,1,0.000002%,cp,Capture Point
sticky_noob_b1(1),1,0.000002%,sticky,Other
tfdb_kwr,1,0.000002%,tfdb,Other
koth_fatboy,1,0.000002%,koth,King of the Hill
cp_lands_of_orcs,1,0.000002%,cp,Capture Point
malo_2901,1,0.000002%,malo,Other
pl_lieutenant_a2,1,0.000002%,pl,Payload
mvm_gateway_a1_normal2,1,0.000002%,mvm,Man vs Machine
tf2ware_v1,1,0.000002%,tf2ware,Other
mvm_machine_attacks_ep16b_5,1,0.000002%,mvm,Man vs Machine
ctf_2fort_classic_winter_v33,1,0.000002%,ctf,Capture the Flag
bot_itemtest,1,0.000002%,bot,Other
trade_minecraft_2014_st_v3,1,0.000002%,trade,Trade and Achievement
jb_farmland_a3,1,0.000002%,jb,Other
arena_beacon_bay,1,0.000002%,arena,Other
overlords_trade_able_d,1,0.000002%,overlords,Other
mario_kart_park,1,0.000002%,mario,Other
slideshow_tf_v035,1,0.000002%,slideshow,Other
grubas_nabijacz!_v6,1,0.000002%,grubas,Other
pd_hightower_a3b,1,0.000002%,pd,Other
item_test,1,0.000002%,item,Other
mvm_wizardry_normal,1,0.000002%,mvm,Man vs Machine
jb_confinement_b1,1,0.000002%,jb,Other
koth_product_rc8.ugc454272353,1,0.000002%,koth,King of the Hill
koth_uma1_a2,1,0.000002%,koth,King of the Hill
arena_thegateofallevilqd,1,0.000002%,arena,Other
cp_hadal_b2,1,0.000002%,cp,Capture Point
mvm_coaltowneng,1,0.000002%,mvm,Man vs Machine
pl_great_heights_b2,1,0.000002%,pl,Payload
arena_diversion,1,0.000002%,arena,Other
ctf_mexico_b3,1,0.000002%,ctf,Capture the Flag
tdm_map,1,0.000002%,tdm,Other
jump_it_preview,1,0.000002%,jump,Other
koth_flying,1,0.000002%,koth,King of the Hill
koth_small_v4_backup,1,0.000002%,koth,King of the Hill
koth_comet_b4,1,0.000002%,koth,King of the Hill
cp_pirateship_v3,1,0.000002%,cp,Capture Point
vsh_minecraft_nether_depressao,1,0.000002%,vsh,Other
koth_product_rc8 (1),1,0.000002%,koth,King of the Hill
koth_hole_alpha,1,0.000002%,koth,King of the Hill
cp_underhanded_b3,1,0.000002%,cp,Capture Point
mvm_coaltown_historyoftf,1,0.000002%,mvm,Man vs Machine
pl_beerbowl_b7c,1,0.000002%,pl,Payload
tfdb_skycube_test,1,0.000002%,tfdb,Other
koth_warhead,1,0.000002%,koth,King of the Hill
jump_detr_v1h,1,0.000002%,jump,Other
pl_hung_over_r1,1,0.000002%,pl,Payload
pl_dbheights_b2,1,0.000002%,pl,Payload
slender_fall_line_b1,1,0.000002%,slender,Other
robot_museumv_special,1,0.000002%,robot,Other
vsh_testisalmostdone_v2,1,0.000002%,vsh,Other
ass_tities,1,0.000002%,ass,Other
trade_marioworld,1,0.000002%,trade,Trade and Achievement
pl_tfcl_a12,1,0.000002%,pl,Payload
mvm_bigrock_30wave_v40,1,0.000002%,mvm,Man vs Machine
koth_nucleus_event (1),1,0.000002%,koth,King of the Hill
ctf_tombfort_b3,1,0.000002%,ctf,Capture the Flag
d2_prison_04,1,0.000002%,d2,Other
arena_medieval_b3_v1,1,0.000002%,arena,Other
surf_mysteryparadise2,1,0.000002%,surf,Other
tr_karma - copy,1,0.000002%,tr,Other
mvm_orange_x3_how_v2b_fawos_rot,1,0.000002%,mvm,Man vs Machine
koth_2base_b1,1,0.000002%,koth,King of the Hill
sb_vapor_bros_beta_v3,1,0.000002%,sb,Other
cp_orange_x_7soolee+map007,1,0.000002%,cp,Capture Point
vsh_egyptyspot_skial,1,0.000002%,vsh,Other
mvm_coaltown_da,1,0.000002%,mvm,Man vs Machine
slender_the_abyss_v4,1,0.000002%,slender,Other
freestyle_hydro,1,0.000002%,freestyle,Other
vsh_neon,1,0.000002%,vsh,Other
cp_fantasmud_b3,1,0.000002%,cp,Capture Point
tr_walkway_rc2_d,1,0.000002%,tr,Other
ww_outset_island_tk,1,0.000002%,ww,Other
cp_one,1,0.000002%,cp,Capture Point
d1_trainstation_03,1,0.000002%,d1,Other
trade_plaza_hats_beta5b,1,0.000002%,trade,Trade and Achievement
mvm_ma_ep12b3_1_hard,1,0.000002%,mvm,Man vs Machine
arena_nootnoot,1,0.000002%,arena,Other
jump_fake,1,0.000002%,jump,Other
koth_yumsidmil_temple,1,0.000002%,koth,King of the Hill
surf_koth_xv_arena,1,0.000002%,surf,Other
strange_level_up_r2,1,0.000002%,strange,Other
rp_ragnarock_bunker_b1,1,0.000002%,rp,Other
rocket_base_jump,1,0.000002%,rocket,Other
psf_space_final,1,0.000002%,psf,Other
achieve_idle_level_trade,1,0.000002%,achieve,Other
cp_teamgal,1,0.000002%,cp,Capture Point
mvm_manncohq_v3_normal1,1,0.000002%,mvm,Man vs Machine
arena_sniper_towers,1,0.000002%,arena,Other
slender_atomics_b3,1,0.000002%,slender,Other
dr_safety_first_v3,1,0.000002%,dr,Other
mvm_decoyinvasion.ugc784574287,1,0.000002%,mvm,Man vs Machine
mvm_coaltown_raid,1,0.000002%,mvm,Man vs Machine
plr_war_divided_a8,1,0.000002%,plr,Payload Race
ctf_pitv2,1,0.000002%,ctf,Capture the Flag
pl_harbor,1,0.000002%,pl,Payload
gm_toyroom,1,0.000002%,gm,Other
mvm_decoy_revenge_intermediate1,1,0.000002%,mvm,Man vs Machine
tfdb_skyfort_v3,1,0.000002%,tfdb,Other
achievement_idle_vaticanboxv3,1,0.000002%,achievement,Trade and Achievement
sunrise_temple_e2,1,0.000002%,sunrise,Other
trade_casino_c2,1,0.000002%,trade,Trade and Achievement
koth_thicket,1,0.000002%,koth,King of the Hill
mario_kart_2_vscph,1,0.000002%,mario,Other
ba_jail_cmm_albany_b5,1,0.000002%,ba,Other
mvm_mannworks_nuclearfix,1,0.000002%,mvm,Man vs Machine
koth_skyline_a2,1,0.000002%,koth,King of the Hill
achievement_nekocity_v9,1,0.000002%,achievement,Trade and Achievement
mvm_hillside_v3_battel_base,1,0.000002%,mvm,Man vs Machine
achievement_idle_awesomebox30,1,0.000002%,achievement,Trade and Achievement
trade_idle_practice_v3,1,0.000002%,trade,Trade and Achievement
surf_chaos_fix_tf2_v2,1,0.000002%,surf,Other
zs_viaduct_snowtest,1,0.000002%,zs,Other
vsh_towerofariien,1,0.000002%,vsh,Other
mvm_factory_b,1,0.000002%,mvm,Man vs Machine
mvm_thedust_b3_normal,1,0.000002%,mvm,Man vs Machine
vsh_dark_mansion,1,0.000002%,vsh,Other
gm_freecity,1,0.000002%,gm,Other
ctf_aerial_a27,1,0.000002%,ctf,Capture the Flag
cp_grotto_b1,1,0.000002%,cp,Capture Point
koth_minepit,1,0.000002%,koth,King of the Hill
cp_orange_superfort_x4,1,0.000002%,cp,Capture Point
dm_deathbowl_a1,1,0.000002%,dm,Deathmatch
cp_twisted_courtyard_a1,1,0.000002%,cp,Capture Point
ctf_2fart_v14,1,0.000002%,ctf,Capture the Flag
achievement_nekocity_v6,1,0.000002%,achievement,Trade and Achievement
tfdb_castle_rc1,1,0.000002%,tfdb,Other
arena_lumberyard_bots,1,0.000002%,arena,Other
jump_adventure_zz,1,0.000002%,jump,Other
trade_suncity_a15_halloween,1,0.000002%,trade,Trade and Achievement
mvm_decoy_golden3,1,0.000002%,mvm,Man vs Machine
cp_castle,1,0.000002%,cp,Capture Point
pl_stormhouse_a3,1,0.000002%,pl,Payload
trade_pool_party_may2014,1,0.000002%,trade,Trade and Achievement
ctf_2fort_snow_v3,1,0.000002%,ctf,Capture the Flag
tr_medic_surfing_b1,1,0.000002%,tr,Other
achievement_idle_skbox_v12fix,1,0.000002%,achievement,Trade and Achievement
psf_pt_underfight_v3,1,0.000002%,psf,Other
pl_canyon_b8a,1,0.000002%,pl,Payload
cp_cargo_a5,1,0.000002%,cp,Capture Point
cp_orange_x3_fix_zfinal,1,0.000002%,cp,Capture Point
surf_zzzz_reloaded,1,0.000002%,surf,Other
quad_tyrant2_tf2,1,0.000002%,quad,Other
mvm_coaltown_da3,1,0.000002%,mvm,Man vs Machine
surf_second2nd_a1,1,0.000002%,surf,Other
mvm_bigrock_advanced_rw_edition,1,0.000002%,mvm,Man vs Machine
cp_nordmann_1,1,0.000002%,cp,Capture Point
mvm_rottenburg_squidward,1,0.000002%,mvm,Man vs Machine
cp_skyhigh,1,0.000002%,cp,Capture Point
mvm_mannhattan_heavys,1,0.000002%,mvm,Man vs Machine
jump_when_b1,1,0.000002%,jump,Other
de_wasteland,1,0.000002%,de,Other
koth_anthony,1,0.000002%,koth,King of the Hill
dr_nowhere_minigames,1,0.000002%,dr,Other
cp_ratrace_a1,1,0.000002%,cp,Capture Point
koth_trainsawlaser,1,0.000002%,koth,King of the Hill
cp_orange_valley_a1,1,0.000002%,cp,Capture Point
mvm_bigrock_easier_but_still_ul,1,0.000002%,mvm,Man vs Machine
koth_edifice_b5c,1,0.000002%,koth,King of the Hill
pl_random_event,1,0.000002%,pl,Payload
mvm_decoy_fiveminutesofpain,1,0.000002%,mvm,Man vs Machine
koth_aerial_a20,1,0.000002%,koth,King of the Hill
mvm_rottenburg_eldarismbi,1,0.000002%,mvm,Man vs Machine
cp_5,1,0.000002%,cp,Capture Point
pl_hoist_a4,1,0.000002%,pl,Payload
mvm_rottenburg_century,1,0.000002%,mvm,Man vs Machine
koth_dijistemge_v2,1,0.000002%,koth,King of the Hill
trade_rdg_b3,1,0.000002%,trade,Trade and Achievement
vsh_rocksax,1,0.000002%,vsh,Other
jump_gim,1,0.000002%,jump,Other
quad_meow,1,0.000002%,quad,Other
mvm_mannhattan_twohard,1,0.000002%,mvm,Man vs Machine
cp_limestone,1,0.000002%,cp,Capture Point
cp_subway_v1.0.5,1,0.000002%,cp,Capture Point
tfdb_blucourt_sv1,1,0.000002%,tfdb,Other
tfdb_reduction_a5,1,0.000002%,tfdb,Other
pl_humidity_b1,1,0.000002%,pl,Payload
mvm_2fort_b1_3_ma_bosses,1,0.000002%,mvm,Man vs Machine
mvm_rottenburg_expertfinal2.0_3,1,0.000002%,mvm,Man vs Machine
koth_shipyard_b5,1,0.000002%,koth,King of the Hill
room2016_cytosolic,1,0.000002%,room2016,Other
koth_wartorncanyon,1,0.000002%,koth,King of the Hill
koth_firejunglepro_a9,1,0.000002%,koth,King of the Hill
pl_ember_a6,1,0.000002%,pl,Payload
dm_arena_4way,1,0.000002%,dm,Deathmatch
tfdb_kolac,1,0.000002%,tfdb,Other
trade_auschwitz,1,0.000002%,trade,Trade and Achievement
dr_crazy_run_b1,1,0.000002%,dr,Other
death_match_fort_nox,1,0.000002%,death,Other
cp_sunshine_a7,1,0.000002%,cp,Capture Point
tfdb_baseball_rc1.1,1,0.000002%,tfdb,Other
koth_turningtest_a10,1,0.000002%,koth,King of the Hill
cp_orange_hicon_halloween,1,0.000002%,cp,Capture Point
tf2_training,1,0.000002%,tf2,Other
vsh_dday_b3,1,0.000002%,vsh,Other
koth_courtyard,1,0.000002%,koth,King of the Hill
mvm_5gorge_cp_normal,1,0.000002%,mvm,Man vs Machine
cp_lograil_b2,1,0.000002%,cp,Capture Point
mvm_bigrock_endless_blu_normcas,1,0.000002%,mvm,Man vs Machine
d3_c17_02,1,0.000002%,d3,Other
mvm_corridors2_randomized,1,0.000002%,mvm,Man vs Machine
koth_ravine_s1,1,0.000002%,koth,King of the Hill
wood_place_001,1,0.000002%,wood,Other
cp_haunted_fall_event,1,0.000002%,cp,Capture Point
plr_loader,1,0.000002%,plr,Payload Race
cs_xcom,1,0.000002%,cs,Other
boss_b1_test2,1,0.000002%,boss,Other
cp_miningco_b4_fix,1,0.000002%,cp,Capture Point
dm_bridge_a_real_boss,1,0.000002%,dm,Deathmatch
pl_quarry_a2,1,0.000002%,pl,Payload
koth_projectunderpass_pt5,1,0.000002%,koth,King of the Hill
ctf_aerial_b2,1,0.000002%,ctf,Capture the Flag
mvm_quakemap_beta,1,0.000002%,mvm,Man vs Machine
trade_hyrule_oot3d_alpha_3,1,0.000002%,trade,Trade and Achievement
koth_dev_v0,1,0.000002%,koth,King of the Hill
mvm_mannhattan_test8,1,0.000002%,mvm,Man vs Machine
dm_bridge_slaughterhouse,1,0.000002%,dm,Deathmatch
pl_enclosure_rc3b,1,0.000002%,pl,Payload
pustyniav4_decals,1,0.000002%,pustyniav4,Other
slender_frost_run_b4_h_gsn,1,0.000002%,slender,Other
jump_friday,1,0.000002%,jump,Other
tr_mops_learn2aim_d,1,0.000002%,tr,Other
trade_gm_a5-1,1,0.000002%,trade,Trade and Achievement
trade_plaza_neon_81,1,0.000002%,trade,Trade and Achievement
trade_shinheungtower_final,1,0.000002%,trade,Trade and Achievement
aim_usp_v2,1,0.000002%,aim,Other
achievement_apg,1,0.000002%,achievement,Trade and Achievement
cp_vineyard_a3a,1,0.000002%,cp,Capture Point
pl_crisis_b2,1,0.000002%,pl,Payload
cp_amap_026,1,0.000002%,cp,Capture Point
vsh_dr_nowhere_a21,1,0.000002%,vsh,Other
ctf_turbine_2014,1,0.000002%,ctf,Capture the Flag
jump_kowaiu_a10_tx2,1,0.000002%,jump,Other
mvm_thedust_b2_intermediate2,1,0.000002%,mvm,Man vs Machine
koth_solarsundown,1,0.000002%,koth,King of the Hill
sd_testing,1,0.000002%,sd,Other
detail2014_alex76,1,0.000002%,detail2014,Other
jail_festivecommunity_xmas,1,0.000002%,jail,Other
tr_badwater_jumps,1,0.000002%,tr,Other
trade_blurville_a2_trigger_test,1,0.000002%,trade,Trade and Achievement
ctf_aerial_b6,1,0.000002%,ctf,Capture the Flag
achievement_allclass_v5_12,1,0.000002%,achievement,Trade and Achievement
surf_buttstf2,1,0.000002%,surf,Other
mvm_rottenburg_enisz,1,0.000002%,mvm,Man vs Machine
balloon_race_v3_t6,1,0.000002%,balloon,Other
jump_orange,1,0.000002%,jump,Other
mvm_grayfactory_advanced,1,0.000002%,mvm,Man vs Machine
idle_wub_v1,1,0.000002%,idle,Other
gauntlet_rc200,1,0.000002%,gauntlet,Other
zs_crevice_b2,1,0.000002%,zs,Other
surf_salient2,1,0.000002%,surf,Other
sd_monkeyday_b3,1,0.000002%,sd,Other
mvm_mannworks_mega_boss,1,0.000002%,mvm,Man vs Machine
cp_3,1,0.000002%,cp,Capture Point
cp_croissant_rc10,1,0.000002%,cp,Capture Point
cp_goodstore_a3,1,0.000002%,cp,Capture Point
cp_skyscraper5,1,0.000002%,cp,Capture Point
mvm_ghost_town_wave_1333,1,0.000002%,mvm,Man vs Machine
mkm_firegod_b01f,1,0.000002%,mkm,Other
darkly_trade_locate_2016,1,0.000002%,darkly,Other
surf_zealand_04,1,0.000002%,surf,Other
ba_jail_minecraft_b7,1,0.000002%,ba,Other
mvm_coaltown_tank_takedown,1,0.000002%,mvm,Man vs Machine
arena_badwater,1,0.000002%,arena,Other
dr_slough_rc2,1,0.000002%,dr,Other
mfoq_detailingtest_002,1,0.000002%,mfoq,Other
idle_sniper_war_v11_5,1,0.000002%,idle,Other
trade_casino_b5_5,1,0.000002%,trade,Trade and Achievement
jump_mohr_a6,1,0.000002%,jump,Other
mvm_mannhattan_fawos,1,0.000002%,mvm,Man vs Machine
trade_yeondu_show_carzy_a2,1,0.000002%,trade,Trade and Achievement
cp_carthage_b1,1,0.000002%,cp,Capture Point
cp_sulfur_b3,1,0.000002%,cp,Capture Point
achievement_idle_awesomeboxdg2,1,0.000002%,achievement,Trade and Achievement
koth_mayham,1,0.000002%,koth,King of the Hill
tf_willjojominecraft2,1,0.000002%,tf,Other
surf_sinister_fix,1,0.000002%,surf,Other
fw_longhaul_b4,1,0.000002%,fw,Other
idle_megabox_v4,1,0.000002%,idle,Other
cp_o7_a1,1,0.000002%,cp,Capture Point
4cp_process_final,1,0.000002%,4cp,Other
ultiduo_gladiator_r09,1,0.000002%,ultiduo,Other
cp_vanguard_b7,1,0.000002%,cp,Capture Point
trade_minecraft_sk_v3,1,0.000002%,trade,Trade and Achievement
jump_nonameyet_a0,1,0.000002%,jump,Other
tfdb_wwwssss,1,0.000002%,tfdb,Other
cp_xibalba_a2,1,0.000002%,cp,Capture Point
trade_minecraft_neon_v80,1,0.000002%,trade,Trade and Achievement
trade_plaza_sg_a6_t5,1,0.000002%,trade,Trade and Achievement
pass_push_b4,1,0.000002%,pass,Other
pl_supply_complex_b2,1,0.000002%,pl,Payload
trade_rgb2,1,0.000002%,trade,Trade and Achievement
arena_flood,1,0.000002%,arena,Other
pl_borealis_a4a,1,0.000002%,pl,Payload
acg_apartment_redux_9,1,0.000002%,acg,Other
screenshot_crashz_v2r2,1,0.000002%,screenshot,Other
pl_metropolis,1,0.000002%,pl,Payload
outpost_by_jeffersontjacobs-db3,1,0.000002%,outpost,Other
trade_hgss_goldenrodcity_b2,1,0.000002%,trade,Trade and Achievement
room2016_lampenpam,1,0.000002%,room2016,Other
w_practice,1,0.000002%,w,Other
mvm_coaltown_custom_1,1,0.000002%,mvm,Man vs Machine
dr_temple,1,0.000002%,dr,Other
caling_card,1,0.000002%,caling,Other
ttt_derricks_second_tree_house,1,0.000002%,ttt,Other
2fortsniper_idle_v1,1,0.000002%,2fortsniper,Other
koth_heartthrob_a1,1,0.000002%,koth,King of the Hill
cp_greenvalley_b4a,1,0.000002%,cp,Capture Point
cp_orange_party_v1,1,0.000002%,cp,Capture Point
mvm_mannhattan_attack_of_vine,1,0.000002%,mvm,Man vs Machine
koth_rocktop_a3,1,0.000002%,koth,King of the Hill
mvm_ghost_town_the_boss_easy,1,0.000002%,mvm,Man vs Machine
tfdb_split_v3,1,0.000002%,tfdb,Other
orange_tdl_test,1,0.000002%,orange,Other
cp_process_b3,1,0.000002%,cp,Capture Point
arena_badlands_d,1,0.000002%,arena,Other
ctf_airduel_beta,1,0.000002%,ctf,Capture the Flag
mvm_coaltown_bots,1,0.000002%,mvm,Man vs Machine
jump_depleted_a2,1,0.000002%,jump,Other
koth_alamo,1,0.000002%,koth,King of the Hill
trade_plaza_hats_test3,1,0.000002%,trade,Trade and Achievement
cp_ayukiorange_x_7_d,1,0.000002%,cp,Capture Point
cp_alternator_b1,1,0.000002%,cp,Capture Point
dm_storagemapfinal_v2,1,0.000002%,dm,Deathmatch
mvm_trainyard_a4_soldier1,1,0.000002%,mvm,Man vs Machine
room_one,1,0.000002%,room,Other
dr_cocainum_xmas_morning_v3p,1,0.000002%,dr,Other
!njp!_wall-mart,1,0.000002%,!njp!,Other
trade_plaza_custom_mois,1,0.000002%,trade,Trade and Achievement
j_l_jump_noob2_ab,1,0.000002%,j,Other
mvm_coaltown_iconfirmer,1,0.000002%,mvm,Man vs Machine
trade_secretmanor_b2,1,0.000002%,trade,Trade and Achievement
koth_trenchway_testver,1,0.000002%,koth,King of the Hill
db_pitchblack_b4,1,0.000002%,db,Other
cp_orange_tower_elements,1,0.000002%,cp,Capture Point
tfdb_openbox_sky_a2,1,0.000002%,tfdb,Other
room2016_thesiphon,1,0.000002%,room2016,Other
trade_plaza_neon_71,1,0.000002%,trade,Trade and Achievement
vsh_filter_v601,1,0.000002%,vsh,Other
koth_hillside_a18,1,0.000002%,koth,King of the Hill
rd_asteroid_30waves_survival_v5,1,0.000002%,rd,Other
trade_snowshine_tg_v6,1,0.000002%,trade,Trade and Achievement
achievement_idle_conveyor,1,0.000002%,achievement,Trade and Achievement
cp_evilfort,1,0.000002%,cp,Capture Point
jb_gulag_1_0,1,0.000002%,jb,Other
cp_cleffa_a2,1,0.000002%,cp,Capture Point
mvm_coaltown_gotem,1,0.000002%,mvm,Man vs Machine
pl_switchback_b11,1,0.000002%,pl,Payload
trade_touhou_garden,1,0.000002%,trade,Trade and Achievement
jump_rayner_a1,1,0.000002%,jump,Other
tfdb_tbh_prisongames,1,0.000002%,tfdb,Other
balloon_race_v3_t9,1,0.000002%,balloon,Other
dm_floating_lands_fix_short_fus,1,0.000002%,dm,Deathmatch
achievement_idle_halloween32,1,0.000002%,achievement,Trade and Achievement
aim_badlands_b2,1,0.000002%,aim,Other
zs_hellfire_v2,1,0.000002%,zs,Other
cp_beachinvasion,1,0.000002%,cp,Capture Point
jujump_nob_a0,1,0.000002%,jujump,Other
jedi_lair,1,0.000002%,jedi,Other
ctf_small fort,1,0.000002%,ctf,Capture the Flag
halo_fagball,1,0.000002%,halo,Other
crystal_test_map,1,0.000002%,crystal,Other
mvm_mannworks_expert1+,1,0.000002%,mvm,Man vs Machine
cp_maxim,1,0.000002%,cp,Capture Point
pd_zones_logic,1,0.000002%,pd,Other
jump_pootis_a3,1,0.000002%,jump,Other
mvm_popfile13,1,0.000002%,mvm,Man vs Machine
trade_oviscity_a2,1,0.000002%,trade,Trade and Achievement
mvm_orange_x3_how_v2b_fawos_thi,1,0.000002%,mvm,Man vs Machine
awp_lego_france,1,0.000002%,awp,Other
mvm_maelstrom_rc1_mighty_mann,1,0.000002%,mvm,Man vs Machine
dm_threed_festive,1,0.000002%,dm,Deathmatch
tfdb_nipo,1,0.000002%,tfdb,Other
portal_room,1,0.000002%,portal,Other
trade_minecraft_tf2,1,0.000002%,trade,Trade and Achievement
trade_plaza_sg_a3,1,0.000002%,trade,Trade and Achievement
ctf_showdown_b1,1,0.000002%,ctf,Capture the Flag
dm_ravine_v1,1,0.000002%,dm,Deathmatch
cp_degrootcreep_b1,1,0.000002%,cp,Capture Point
tyler_rocket_shooting_v3_d (1),1,0.000002%,tyler,Other
mvm_coaltown_apocalypse,1,0.000002%,mvm,Man vs Machine
jump_exile2,1,0.000002%,jump,Other
cp_torrential_a2v001,1,0.000002%,cp,Capture Point
mvm_coaltown_gmt_normal,1,0.000002%,mvm,Man vs Machine
jump_academy_easymixed_butts4,1,0.000002%,jump,Other
trade_freemancity,1,0.000002%,trade,Trade and Achievement
ctf_2fort_unleashed_winter,1,0.000002%,ctf,Capture the Flag
achievement_bots,1,0.000002%,achievement,Trade and Achievement
quakemaptesting_tramp,1,0.000002%,quakemaptesting,Other
tfdb_up_n_down_nud,1,0.000002%,tfdb,Other
zf_labs_ext_a_ig,1,0.000002%,zf,Other
arena_steeple_a1a,1,0.000002%,arena,Other
blu_buildingexample,1,0.000002%,blu,Other
cp_rumble,1,0.000002%,cp,Capture Point
mvm_bigrock_ultimate_battle,1,0.000002%,mvm,Man vs Machine
zf_tower_cp_mag,1,0.000002%,zf,Other
surf_coralis_fix2,1,0.000002%,surf,Other
mvm_construct_v2_bigrock,1,0.000002%,mvm,Man vs Machine
cp_farm_a7,1,0.000002%,cp,Capture Point
koth_colosseum,1,0.000002%,koth,King of the Hill
arena_abandonedpacked,1,0.000002%,arena,Other
mvm_bigrock_goodbyerocky,1,0.000002%,mvm,Man vs Machine
pl_skyfortress_a1,1,0.000002%,pl,Payload
achievement_gagetxs_servers_25,1,0.000002%,achievement,Trade and Achievement
awesomebox_tf2ss,1,0.000002%,awesomebox,Other
pl_montezuma_v3,1,0.000002%,pl,Payload
green_v2,1,0.000002%,green,Other
jump_academy_mdpogo_a2_default_,1,0.000002%,jump,Other
mvm_storage_a2_decoy,1,0.000002%,mvm,Man vs Machine
koth_krag,1,0.000002%,koth,King of the Hill
mvm_coaltown_intermediate_final,1,0.000002%,mvm,Man vs Machine
pl_effigy_b5,1,0.000002%,pl,Payload
surf_lullaby_redone_b1,1,0.000002%,surf,Other
dr_willywonka,1,0.000002%,dr,Other
vsh_dr_wolfenstein_v1_1,1,0.000002%,vsh,Other
mvm_yucatan_rc4.ugc528867291,1,0.000002%,mvm,Man vs Machine
achievement_botfarm_v7b,1,0.000002%,achievement,Trade and Achievement
tr_walkway_rc2_tk,1,0.000002%,tr,Other
koth_trainstation_betav1,1,0.000002%,koth,King of the Hill
jump_academy,1,0.000002%,jump,Other
tfdb_spacearena_b6,1,0.000002%,tfdb,Other
dr_undertale_b3_fixp,1,0.000002%,dr,Other
mvm_bigrock_normal3,1,0.000002%,mvm,Man vs Machine
surf_greatriver_arthurv120,1,0.000002%,surf,Other
d1_trainstation_06,1,0.000002%,d1,Other
jump_fruh,1,0.000002%,jump,Other
mvm_coaltown_carnage,1,0.000002%,mvm,Man vs Machine
mvm_mannworks_impossible1,1,0.000002%,mvm,Man vs Machine
tfdb_bm_sky_a1,1,0.000002%,tfdb,Other
mvm_artic_base_alpha,1,0.000002%,mvm,Man vs Machine
space_mvm_easy1,1,0.000002%,space,Other
cp_orange_tairan_chu,1,0.000002%,cp,Capture Point
mvm_totalwar_advanced,1,0.000002%,mvm,Man vs Machine
cp_freight_final,1,0.000002%,cp,Capture Point
mvm_decoy_fragriches,1,0.000002%,mvm,Man vs Machine
koth_mirror_00_test000,1,0.000002%,koth,King of the Hill
super_mario_galaxy,1,0.000002%,super,Other
coop_dustbowl_open,1,0.000002%,coop,Other
c8m1_apartment_ep2,1,0.000002%,c8m1,Other
jb_school_b3,1,0.000002%,jb,Other
pl_escarpment_rc1(1),1,0.000002%,pl,Payload
surf_zealand_09_c,1,0.000002%,surf,Other
surf_crzyfrog_reloaded_v2,1,0.000002%,surf,Other
koth_dockyard_v3,1,0.000002%,koth,King of the Hill
koth_lost,1,0.000002%,koth,King of the Hill
cp_vertical,1,0.000002%,cp,Capture Point
mortal_kombat_3_ultimate,1,0.000002%,mortal,Other
mvm_decoy_ohno,1,0.000002%,mvm,Man vs Machine
trade_park_v6_d,1,0.000002%,trade,Trade and Achievement
justexplore_t,1,0.000002%,justexplore,Other
trade_mall_a2p,1,0.000002%,trade,Trade and Achievement
trade_rdg_b5,1,0.000002%,trade,Trade and Achievement
pl_cliffhanger_b1,1,0.000002%,pl,Payload
unusual_reactor_v34d,1,0.000002%,unusual,Other
cp_orange_x269,1,0.000002%,cp,Capture Point
unusual_trade_pyro_v5a,1,0.000002%,unusual,Other
tdm_hightower_a2,1,0.000002%,tdm,Other
koth_connector_a2,1,0.000002%,koth,King of the Hill
koth_mall,1,0.000002%,koth,King of the Hill
conc_finale_r_a1p,1,0.000002%,conc,Other
mario_kart_ds_summer14_v2,1,0.000002%,mario,Other
zom_harvest_v3,1,0.000002%,zom,Other
ctf_tmbrdr_a6,1,0.000002%,ctf,Capture the Flag
koth_bagel_b4 (1),1,0.000002%,koth,King of the Hill
achievement_pan_v2final,1,0.000002%,achievement,Trade and Achievement
dm_floating_lands_fix_synthetic,1,0.000002%,dm,Deathmatch
pl_badwater_historyoftf,1,0.000002%,pl,Payload
phoenix_minecraft_altmap,1,0.000002%,phoenix,Other
cp_uturn,1,0.000002%,cp,Capture Point
vsh_mannco_datacenter_,1,0.000002%,vsh,Other
cp_playhouse_2_9,1,0.000002%,cp,Capture Point
pl_cactuscanyon_old,1,0.000002%,pl,Payload
arena_no_where_to_hide,1,0.000002%,arena,Other
ba_jail_anthology_b2,1,0.000002%,ba,Other
jump_pootis_a2,1,0.000002%,jump,Other
ctf_2fort_desert,1,0.000002%,ctf,Capture the Flag
trade_wonderfortress_justg_deve,1,0.000002%,trade,Trade and Achievement
vsh_pbjungle_a1,1,0.000002%,vsh,Other
bhop_uncolored_test1,1,0.000002%,bhop,Other
jim_map_v1,1,0.000002%,jim,Other
slender_doors_final1,1,0.000002%,slender,Other
cp_nexus,1,0.000002%,cp,Capture Point
mvm_mannhattan_marathon_64,1,0.000002%,mvm,Man vs Machine
jump_freedom,1,0.000002%,jump,Other
trade_snowvillage_winter22,1,0.000002%,trade,Trade and Achievement
tc_dockyard_redfinalcp,1,0.000002%,tc,Other
szf_nighttower_v1a,1,0.000002%,szf,Other
test_machina_maps,1,0.000002%,test,Other
ep1_citadel_02,1,0.000002%,ep1,Other
jump_academy_medium_mixedmedium,1,0.000002%,jump,Other
cp_process_a3,1,0.000002%,cp,Capture Point
mvm_rottenburg_bank,1,0.000002%,mvm,Man vs Machine
cp_orange_x_xmas_juke_2015b,1,0.000002%,cp,Capture Point
testmap_glass_o,1,0.000002%,testmap,Other
koth_escher_a1,1,0.000002%,koth,King of the Hill
jump_deus,1,0.000002%,jump,Other
mvm_coaltown_meet_new_creation,1,0.000002%,mvm,Man vs Machine
kart_skyscraper_v2,1,0.000002%,kart,Other
pl_redship_b15,1,0.000002%,pl,Payload
cp_popoff_genesisv1_reup,1,0.000002%,cp,Capture Point
koth_serenai_a5,1,0.000002%,koth,King of the Hill
koth_noir,1,0.000002%,koth,King of the Hill
ctf_420_x-games_v1,1,0.000002%,ctf,Capture the Flag
tdm_valley_castle_fixed,1,0.000002%,tdm,Other
plr_panic_b1,1,0.000002%,plr,Payload Race
ctf_aerial_a25,1,0.000002%,ctf,Capture the Flag
jump_academy_freestyle_b2,1,0.000002%,jump,Other
mvm_rottenburg_vergessenheit,1,0.000002%,mvm,Man vs Machine
cp_orange_x7_tony_b4,1,0.000002%,cp,Capture Point
cp_gorge_pro_rc1,1,0.000002%,cp,Capture Point
gm_flatgrass_d,1,0.000002%,gm,Other
slender_hydro_b1d,1,0.000002%,slender,Other
mvm_underground_a2,1,0.000002%,mvm,Man vs Machine
hr_death_gear_01,1,0.000002%,hr,Other
koth_wfr_01_11a,1,0.000002%,koth,King of the Hill
river_001,1,0.000002%,river,Other
zm_reboot,1,0.000002%,zm,Other
achievement_villains_hal,1,0.000002%,achievement,Trade and Achievement
cp_dust2_d,1,0.000002%,cp,Capture Point
mvm_mannworks_ffofof,1,0.000002%,mvm,Man vs Machine
dm_bridge_chaotic,1,0.000002%,dm,Deathmatch
cp_jungledam_a2,1,0.000002%,cp,Capture Point
mvm_mannworks_what_the_fuck,1,0.000002%,mvm,Man vs Machine
mvm_mannworks_v2,1,0.000002%,mvm,Man vs Machine
mvm_mannhattan_onlyvy,1,0.000002%,mvm,Man vs Machine
koth_terrace_a1,1,0.000002%,koth,King of the Hill
cp_ayuki_s2gaming_rxz1,1,0.000002%,cp,Capture Point
cp_orange_skiver_r6,1,0.000002%,cp,Capture Point
jump_attached2_a1,1,0.000002%,jump,Other
dm_scramble_b15_d,1,0.000002%,dm,Deathmatch
trade_tairan_spring,1,0.000002%,trade,Trade and Achievement
jump_retreat_v3,1,0.000002%,jump,Other
cp_rapture,1,0.000002%,cp,Capture Point
koth_aim_a1,1,0.000002%,koth,King of the Hill
plr_skyfortress_a5,1,0.000002%,plr,Payload Race
mvm_cave-in_a7,1,0.000002%,mvm,Man vs Machine
concmap_eu_a2p,1,0.000002%,concmap,Other
ctf_2fort_freak,1,0.000002%,ctf,Capture the Flag
cp_orange_z4_v4,1,0.000002%,cp,Capture Point
mvm_coaltown_final,1,0.000002%,mvm,Man vs Machine
dom_complex_b4c,1,0.000002%,dom,Other
test_visleaves_3,1,0.000002%,test,Other
mvm_makjang,1,0.000002%,mvm,Man vs Machine
ctf_sawmill_d,1,0.000002%,ctf,Capture the Flag
cp_last_hope,1,0.000002%,cp,Capture Point
pl_a1_iron,1,0.000002%,pl,Payload
jail_blackops_b5_tf2jail,1,0.000002%,jail,Other
ctf_2fort_smissmassv6,1,0.000002%,ctf,Capture the Flag
koth_uno_tower,1,0.000002%,koth,King of the Hill
pl_wintertown_final,1,0.000002%,pl,Payload
achievement_apg_r11a,1,0.000002%,achievement,Trade and Achievement
mvm_coaltown_dnl_bootcamp_easy,1,0.000002%,mvm,Man vs Machine
sd_demo-prefab_x1,1,0.000002%,sd,Other
cp_tethys_a22a_tk,1,0.000002%,cp,Capture Point
cp_orange_revampedv3,1,0.000002%,cp,Capture Point
vsh_castle_siege_b10,1,0.000002%,vsh,Other
koth_apple,1,0.000002%,koth,King of the Hill
plr_skyfortress_a7,1,0.000002%,plr,Payload Race
vsh_mann_city,1,0.000002%,vsh,Other
cp_goldrush,1,0.000002%,cp,Capture Point
koth_warmfront_a4,1,0.000002%,koth,King of the Hill
cp_maxz_orange_x_7,1,0.000002%,cp,Capture Point
mvm_mannworks_electrical_exterm,1,0.000002%,mvm,Man vs Machine
tfdb_anox_boxhole_v1,1,0.000002%,tfdb,Other
cp_dustbowl_pro_b2,1,0.000002%,cp,Capture Point
mvm_mannhattan_meleevy,1,0.000002%,mvm,Man vs Machine
achievement_engineer_v23+,1,0.000002%,achievement,Trade and Achievement
cp_mineshaft_a1,1,0.000002%,cp,Capture Point
mario_kart_panda_b7,1,0.000002%,mario,Other
trade_grinder_final,1,0.000002%,trade,Trade and Achievement
sd_minedelivery_b1,1,0.000002%,sd,Other
mvm_orange_50f_tower_v6_test,1,0.000002%,mvm,Man vs Machine
heavy_race_b2,1,0.000002%,heavy,Other
koth_dijistemge_v2_cp,1,0.000002%,koth,King of the Hill
trade_rdg_b21,1,0.000002%,trade,Trade and Achievement
zelda_do_n64,1,0.000002%,zelda,Other
arena_suijin_rc1,1,0.000002%,arena,Other
cp_cube_b15,1,0.000002%,cp,Capture Point
pl_minecraft_redstone_,1,0.000002%,pl,Payload
mkm_firegod_b01a,1,0.000002%,mkm,Other
jump_unu,1,0.000002%,jump,Other
arena_a_supply_base_b3,1,0.000002%,arena,Other
surf_network_2013_rs,1,0.000002%,surf,Other
ctf_dev,1,0.000002%,ctf,Capture the Flag
first_point,1,0.000002%,first,Other
pl_crig,1,0.000002%,pl,Payload
ttt_airbus_b3,1,0.000002%,ttt,Other
sfm_arena,1,0.000002%,sfm,Other
trade_satellite_final,1,0.000002%,trade,Trade and Achievement
invasion_doomsday2,1,0.000002%,invasion,Other
vsh_dr_minecaves_final,1,0.000002%,vsh,Other
achievement_idlefight_,1,0.000002%,achievement,Trade and Achievement
cp_orange_x_snow,1,0.000002%,cp,Capture Point
mvm_coaltown_spy3,1,0.000002%,mvm,Man vs Machine
mvm_rottenburg_test2,1,0.000002%,mvm,Man vs Machine
walmart_bettermeme,1,0.000002%,walmart,Other
trade_mega2,1,0.000002%,trade,Trade and Achievement
trade_masscc_d4,1,0.000002%,trade,Trade and Achievement
dr_undertale_b3p,1,0.000002%,dr,Other
mvm_sewer_invasion_b7_grays_inv,1,0.000002%,mvm,Man vs Machine
idle_servers_v11,1,0.000002%,idle,Other
pl_robot_factory_wip4,1,0.000002%,pl,Payload
fan_skillpea_b1,1,0.000002%,fan,Other
test_dock_001,1,0.000002%,test,Other
jump_noskillrequired_a1,1,0.000002%,jump,Other
mvm_badwater_final_mannhattan,1,0.000002%,mvm,Man vs Machine
cp_slump_a10,1,0.000002%,cp,Capture Point
slender_4way_v8_d,1,0.000002%,slender,Other
mvm_mannhattan_firewall_frenzy,1,0.000002%,mvm,Man vs Machine
vsh_dr_mario_b4_custom_vidya_v1,1,0.000002%,vsh,Other
idle_16_rc3,1,0.000002%,idle,Other
koth_thunder,1,0.000002%,koth,King of the Hill
achievement_botfarmv6a,1,0.000002%,achievement,Trade and Achievement
mvm_bigrock_fawos,1,0.000002%,mvm,Man vs Machine
trade_smssunsetplaza_a4,1,0.000002%,trade,Trade and Achievement
koth_dijistemge_test_only1cp,1,0.000002%,koth,King of the Hill
pl_rollout_prealpha1,1,0.000002%,pl,Payload
cp_yeah,1,0.000002%,cp,Capture Point
mvm_mannhattan_heavyy,1,0.000002%,mvm,Man vs Machine
mvm_manndarin_lord,1,0.000002%,mvm,Man vs Machine
koth_anthem_b3,1,0.000002%,koth,King of the Hill
mvm_testes,1,0.000002%,mvm,Man vs Machine
jump_pogo,1,0.000002%,jump,Other
trade_tbgsatellite_v2,1,0.000002%,trade,Trade and Achievement
koth_mannwater_a2,1,0.000002%,koth,King of the Hill
gg_a3_crates,1,0.000002%,gg,Other
trade_rdg_b7,1,0.000002%,trade,Trade and Achievement
cp_demolition_b1,1,0.000002%,cp,Capture Point
jungle_detail_72hr_d,1,0.000002%,jungle,Other
koth_varianttestlevel_pa1,1,0.000002%,koth,King of the Hill
mvm_manncohq_v3_single_player,1,0.000002%,mvm,Man vs Machine
ba_jail_csarenasi,1,0.000002%,ba,Other
koth_trenchway_b1,1,0.000002%,koth,King of the Hill
koth_aperture_science_,1,0.000002%,koth,King of the Hill
jump_minecraftia_preview18,1,0.000002%,jump,Other
arena_mario_kart_2012_b3,1,0.000002%,arena,Other
walmart_bettermeme_v6,1,0.000002%,walmart,Other
this_is_alpaca,1,0.000002%,this,Other
mvm_coastrock_a7,1,0.000002%,mvm,Man vs Machine
koth_constipated,1,0.000002%,koth,King of the Hill
test_payloadcontrol,1,0.000002%,test,Other
zf2_badneighbors_v1,1,0.000002%,zf2,Other
super_fun_mario_kart,1,0.000002%,super,Other
pl_batteringram_a4,1,0.000002%,pl,Payload
mvm_gateway_b1a,1,0.000002%,mvm,Man vs Machine
tfdb_spookylava_a8_gsn,1,0.000002%,tfdb,Other
idle_cy4g_pokebeachb2,1,0.000002%,idle,Other
pl_urban_dangerous_cargo_b2,1,0.000002%,pl,Payload
cp_warpath_comp_a8,1,0.000002%,cp,Capture Point
mvm_coaltown_automizedannihilat,1,0.000002%,mvm,Man vs Machine
pl_wutville2,1,0.000002%,pl,Payload
huntsman_stunt,1,0.000002%,huntsman,Other
koth_mines,1,0.000002%,koth,King of the Hill
idle_sniper_war_v12,1,0.000002%,idle,Other
fabianr_discovery,1,0.000002%,fabianr,Other
ctf_2fort_classic_winter_v23,1,0.000002%,ctf,Capture the Flag
trade_retro_eventhotfix,1,0.000002%,trade,Trade and Achievement
dm_orangefortress_v1,1,0.000002%,dm,Deathmatch
mvm_coaltown_advanced666,1,0.000002%,mvm,Man vs Machine
mvm_gremlin_sanctuary_findthega,1,0.000002%,mvm,Man vs Machine
koth_medievalharvest_final_b1,1,0.000002%,koth,King of the Hill
aquablocks_invasion_alpha_origi,1,0.000002%,aquablocks,Other
tfdb_space_sup_vt2,1,0.000002%,tfdb,Other
balloon_race_v3_t17,1,0.000002%,balloon,Other
pd_tribute_b3_tk,1,0.000002%,pd,Other
pl_eclipse_b3,1,0.000002%,pl,Payload
koth_enclosed,1,0.000002%,koth,King of the Hill
mvm_rottenburg_teess,1,0.000002%,mvm,Man vs Machine
pl_humidity_b2,1,0.000002%,pl,Payload
cp_gorge_event_rc1a,1,0.000002%,cp,Capture Point
jump_academy_easy_d1,1,0.000002%,jump,Other
achievement_carloshangout,1,0.000002%,achievement,Trade and Achievement
fff_hzh,1,0.000002%,fff,Other
idle_slowkill,1,0.000002%,idle,Other
mvm_mannworks_eqgl_staff_bosses,1,0.000002%,mvm,Man vs Machine
koth_bread_v3,1,0.000002%,koth,King of the Hill
aim_office,1,0.000002%,aim,Other
de_dustanesi,1,0.000002%,de,Other
trade_touhou_garden_afternoon,1,0.000002%,trade,Trade and Achievement
trade_pretence-beta1-01,1,0.000002%,trade,Trade and Achievement
achiev_minigun_4fun,1,0.000002%,achiev,Other
d3_c17_04,1,0.000002%,d3,Other
prop_preload2,1,0.000002%,prop,Other
response_test,1,0.000002%,response,Other
pl_hooood_a1,1,0.000002%,pl,Payload
dm_bridge,1,0.000002%,dm,Deathmatch
jump_pootis_a1,1,0.000002%,jump,Other
tutorial06-basic_optimization_e,1,0.000002%,tutorial06-basic,Other
mvm_popfile14,1,0.000002%,mvm,Man vs Machine
gmodtech_hotel_beta08,1,0.000002%,gmodtech,Other
trade_sev_school_winterr,1,0.000002%,trade,Trade and Achievement
strange_level_hans,1,0.000002%,strange,Other
trade_minecraft_realms_v2_d,1,0.000002%,trade,Trade and Achievement
pl_idontknow,1,0.000002%,pl,Payload
cp_train_a1,1,0.000002%,cp,Capture Point
sarahtf2_map_final,1,0.000002%,sarahtf2,Other
koth_snowwater_b,1,0.000002%,koth,King of the Hill
mvm_coaltown_spy2,1,0.000002%,mvm,Man vs Machine
koth_noname_a6,1,0.000002%,koth,King of the Hill
mvm_mannhattan_expert2,1,0.000002%,mvm,Man vs Machine
club_hfc_v2,1,0.000002%,club,Other
koth_stone_tower_a2,1,0.000002%,koth,King of the Hill
syn_burlybrawl_fawosfix_click_e,1,0.000002%,syn,Other
ctf_2fort_classic_uber_4,1,0.000002%,ctf,Capture the Flag
koth_static_v2,1,0.000002%,koth,King of the Hill
fy_beacon,1,0.000002%,fy,Other
koth_masterplan_v1,1,0.000002%,koth,King of the Hill
mvm_powerplant_b4,1,0.000002%,mvm,Man vs Machine
cp_permafrost_a2,1,0.000002%,cp,Capture Point
mvm_underground,1,0.000002%,mvm,Man vs Machine
rm_bc_test8,1,0.000002%,rm,Other
pl_bunkerblasta6,1,0.000002%,pl,Payload
vsh_canyon_raid_b35_gsn,1,0.000002%,vsh,Other
mvm_sniparadise_v3,1,0.000002%,mvm,Man vs Machine
bhop_metric_final,1,0.000002%,bhop,Other
koth_rundown_b2,1,0.000002%,koth,King of the Hill
mvm_decoy_dereliction,1,0.000002%,mvm,Man vs Machine
slender_lockers_b4,1,0.000002%,slender,Other
koth_snowcliff,1,0.000002%,koth,King of the Hill
koth_moonshine_event_r,1,0.000002%,koth,King of the Hill
koth_spaaaace_beta_s01,1,0.000002%,koth,King of the Hill
szf_bean_attack_vkillme1,1,0.000002%,szf,Other
pl_erosion_a7dev2,1,0.000002%,pl,Payload
mvm_tropics_rc10,1,0.000002%,mvm,Man vs Machine
pl_wintertown,1,0.000002%,pl,Payload
ctf_turbine_pro_rc5_a,1,0.000002%,ctf,Capture the Flag
cp_trainsurfer_1_4,1,0.000002%,cp,Capture Point
koth_townside_a1,1,0.000002%,koth,King of the Hill
cp_orange_x_idealgaming,1,0.000002%,cp,Capture Point
cp_wiltonkeep_rc2,1,0.000002%,cp,Capture Point
koth_dijistemge_v2_test,1,0.000002%,koth,King of the Hill
l4d2_vehicles,1,0.000002%,l4d2,Other
mvm_zigzag_b1_alpha,1,0.000002%,mvm,Man vs Machine
tfdb_shitcliff_rc3,1,0.000002%,tfdb,Other
tfdb_venkovnifloatprosklenystro,1,0.000002%,tfdb,Other
duel_traingraveyard_b2,1,0.000002%,duel,Other
slender_cellars_b3,1,0.000002%,slender,Other
mvm_mannworks_hax,1,0.000002%,mvm,Man vs Machine
vsh_dr_runoff_b4,1,0.000002%,vsh,Other
mvm_rottenburg_heavyys,1,0.000002%,mvm,Man vs Machine
i_want_to_suck_unskilleds_dick,1,0.000002%,i,Other
koth_niggertest,1,0.000002%,koth,King of the Hill
zom_day_z_v1,1,0.000002%,zom,Other
dr_jumppads,1,0.000002%,dr,Other
cp_abandon_ship,1,0.000002%,cp,Capture Point
evento_adm_f1,1,0.000002%,evento,Other
koth_avalanchev3,1,0.000002%,koth,King of the Hill
pl_ym2k15_a10,1,0.000002%,pl,Payload
trade_lunarpumpkin_v017,1,0.000002%,trade,Trade and Achievement
mvm_soho_normal,1,0.000002%,mvm,Man vs Machine
idle_megabox_m2,1,0.000002%,idle,Other
idle_servers_v6,1,0.000002%,idle,Other
surf_orange_v57,1,0.000002%,surf,Other
surf_colos2,1,0.000002%,surf,Other
mvm_decoy_goldenmassacre2,1,0.000002%,mvm,Man vs Machine
mvm_dixieboys_cosmo,1,0.000002%,mvm,Man vs Machine
tfdb_pillow,1,0.000002%,tfdb,Other
vsh_hakurei_shrine_v3_eggfix,1,0.000002%,vsh,Other
taco_testmapblackcube,1,0.000002%,taco,Other
ctf_turbine_2,1,0.000002%,ctf,Capture the Flag
d3_c17_13,1,0.000002%,d3,Other
achievement_special,1,0.000002%,achievement,Trade and Achievement
pl_badwater2,1,0.000002%,pl,Payload
arena_offblast_final_fix1t,1,0.000002%,arena,Other
vsh_toys_b2_skial_v3,1,0.000002%,vsh,Other
jump_farm,1,0.000002%,jump,Other
cpr_safteyhazard_a12,1,0.000002%,cpr,Other
tr_walkway_rc2_remaster,1,0.000002%,tr,Other
cp_cube,1,0.000002%,cp,Capture Point
pl_minecanyon_b5,1,0.000002%,pl,Payload
mat_clear_texture,1,0.000002%,mat,Other
mvm_ma_ep12b1_1_easy,1,0.000002%,mvm,Man vs Machine
mvm_rottenburg_test6,1,0.000002%,mvm,Man vs Machine
mvm_underground_rc3_normal,1,0.000002%,mvm,Man vs Machine
plr_diversion_a2a,1,0.000002%,plr,Payload Race
cp_japan,1,0.000002%,cp,Capture Point
jb_italia_b1,1,0.000002%,jb,Other
koth_covariance_a2,1,0.000002%,koth,King of the Hill
tfdb_quwu,1,0.000002%,tfdb,Other
pl_orange_x_b1_f2,1,0.000002%,pl,Payload
cp_skytop_beta2_06,1,0.000002%,cp,Capture Point
koth_helix_a5,1,0.000002%,koth,King of the Hill
koth_deadlock_b3,1,0.000002%,koth,King of the Hill
slender_snow_in_the_woods_b1,1,0.000002%,slender,Other
kotf_nucleus_a1a,1,0.000002%,kotf,Other
koth_rain,1,0.000002%,koth,King of the Hill
trade_plaza_hg_moonbase_a16,1,0.000002%,trade,Trade and Achievement
mvm_coaltown_click_expert,1,0.000002%,mvm,Man vs Machine
pl_clearwater_a1,1,0.000002%,pl,Payload
robot_monastery,1,0.000002%,robot,Other
jump_walking,1,0.000002%,jump,Other
koth_factory_remastered,1,0.000002%,koth,King of the Hill
pl_insight_2,1,0.000002%,pl,Payload
tfdb_box_space_a5_fix_gsn,1,0.000002%,tfdb,Other
ctf_facingworlds_b1,1,0.000002%,ctf,Capture the Flag
koth_elevator_a1_wip3,1,0.000002%,koth,King of the Hill
vsh_mokls,1,0.000002%,vsh,Other
dm_bridge_mannworks_expert1,1,0.000002%,dm,Deathmatch
ba_jailbreak_lego_otaku,1,0.000002%,ba,Other
trade_plaza_neon_80,1,0.000002%,trade,Trade and Achievement
shovel_showdown_v15,1,0.000002%,shovel,Other
mvm_devtown,1,0.000002%,mvm,Man vs Machine
ctf_2fort_revamp,1,0.000002%,ctf,Capture the Flag
tfdb_icebergs,1,0.000002%,tfdb,Other
cp_vanguard_rc3a,1,0.000002%,cp,Capture Point
mvm_hydro,1,0.000002%,mvm,Man vs Machine
first_thing,1,0.000002%,first,Other
cp_minigames_test15nav,1,0.000002%,cp,Capture Point
ufo_test_2,1,0.000002%,ufo,Other
cpr_safteyhazard_a11,1,0.000002%,cpr,Other
strange-boost_999,1,0.000002%,strange-boost,Other
cp_sunshine_rc1a,1,0.000002%,cp,Capture Point
surf_greatriver_vgames_v3,1,0.000002%,surf,Other
cp_boomblitz_a1,1,0.000002%,cp,Capture Point
dm_silo_a2_d,1,0.000002%,dm,Deathmatch
koth_big_tower,1,0.000002%,koth,King of the Hill
jump_runqqulainenlautamoinen_pe,1,0.000002%,jump,Other
plr_skyfortress_a8,1,0.000002%,plr,Payload Race
mvm_rottenburg_newsuggestionexe,1,0.000002%,mvm,Man vs Machine
mvm_manncohq_v3_bosses,1,0.000002%,mvm,Man vs Machine
kart_transitsystem,1,0.000002%,kart,Other
skill_seven,1,0.000002%,skill,Other
horde_bluattacks,1,0.000002%,horde,Other
pl_badwater_spawnflip,1,0.000002%,pl,Payload
trade_ztg_v3b,1,0.000002%,trade,Trade and Achievement
trade_minigames_m2,1,0.000002%,trade,Trade and Achievement
koth_radiotower_revision_4_e_da,1,0.000002%,koth,King of the Hill
nhbl_ttpnarena_v2-2,1,0.000002%,nhbl,Other
d2_prison_02,1,0.000002%,d2,Other
tr_soulless_v1,1,0.000002%,tr,Other
mvm_decoy_love,1,0.000002%,mvm,Man vs Machine
trade_server,1,0.000002%,trade,Trade and Achievement
koth_ilios_lighthouse_v24,1,0.000002%,koth,King of the Hill
ctf_battle_creek,1,0.000002%,ctf,Capture the Flag
mvm_decoy_no_money,1,0.000002%,mvm,Man vs Machine
koth_kileyath,1,0.000002%,koth,King of the Hill
koth_goremill_event,1,0.000002%,koth,King of the Hill
big_template,1,0.000002%,big,Other
surf_10x_redone_rv7_event,1,0.000002%,surf,Other
koth_probed_rc2,1,0.000002%,koth,King of the Hill
fw_smap5_v2,1,0.000002%,fw,Other
mvm_decoy_outragesause,1,0.000002%,mvm,Man vs Machine
vsh_manncohq_v14_skial_v2,1,0.000002%,vsh,Other
koth_woodsaw,1,0.000002%,koth,King of the Hill
mvm_bigrock_1bosstest,1,0.000002%,mvm,Man vs Machine
vsh_combine_pb1,1,0.000002%,vsh,Other
koth_hilltop,1,0.000002%,koth,King of the Hill
mvm_derelict_rc2_normal,1,0.000002%,mvm,Man vs Machine
surf_10x_redone_arena,1,0.000002%,surf,Other
mvm_coaltown_british_army.pop,1,0.000002%,mvm,Man vs Machine
room2016_captainclam,1,0.000002%,room2016,Other
tf_gokart_mariokart,1,0.000002%,tf,Other
gf2_asylum_a1,1,0.000002%,gf2,Other
mvm_cyberhighway_beta,1,0.000002%,mvm,Man vs Machine
koth_piano_a22,1,0.000002%,koth,King of the Hill
ponypack/vsh_cross_b3,1,0.000002%,ponypack/vsh,Other
pass_fly_b2,1,0.000002%,pass,Other
mvm_bigrock_overwatch,1,0.000002%,mvm,Man vs Machine
sdk_ctf_2fort - kopia,1,0.000002%,sdk,Other
vsh_2fortdesk_v8_tk,1,0.000002%,vsh,Other
dm_mariokart_2013_summer_p1b,1,0.000002%,dm,Deathmatch
koth_ting,1,0.000002%,koth,King of the Hill
mvm_ventus_b6_fawosfix_historyo,1,0.000002%,mvm,Man vs Machine
jump_academy_easyjurf2_b2,1,0.000002%,jump,Other
surf_greatriver_vgames_v6,1,0.000002%,surf,Other
mvm_coaltown_loser,1,0.000002%,mvm,Man vs Machine
cp_marinara_b0,1,0.000002%,cp,Capture Point
achievement_idle_hicon,1,0.000002%,achievement,Trade and Achievement
mvm_mannhattan_new2,1,0.000002%,mvm,Man vs Machine
rp_c18_v1,1,0.000002%,rp,Other
mge_oihguv_sucks_a11,1,0.000002%,mge,Other
mvm_newnormandy_beachraid,1,0.000002%,mvm,Man vs Machine
ctf_silo_a5,1,0.000002%,ctf,Capture the Flag
pl_dampvalley_a3,1,0.000002%,pl,Payload
tfdb_logic_test,1,0.000002%,tfdb,Other
jump_habibi_c1_l9,1,0.000002%,jump,Other
koth_sollytude_rc1,1,0.000002%,koth,King of the Hill
pl_fjord_bridge,1,0.000002%,pl,Payload
koh_tankwar,1,0.000002%,koh,Other
jump_academy_medjurf_b2,1,0.000002%,jump,Other
cp_legoblast_2012,1,0.000002%,cp,Capture Point
mvm_decoy_b4nnybots,1,0.000002%,mvm,Man vs Machine
mvm_mannhattan_hax,1,0.000002%,mvm,Man vs Machine
achievement_idle_aboxv7_ff,1,0.000002%,achievement,Trade and Achievement
horror_get_stalked_part1,1,0.000002%,horror,Other
jump_compound_v7,1,0.000002%,jump,Other
pl_enclosure_rc2a,1,0.000002%,pl,Payload
tr_airstrafe_a1,1,0.000002%,tr,Other
achievements_smallmap,1,0.000002%,achievements,Other
de_russka,1,0.000002%,de,Other
surf_fastspiral_retro,1,0.000002%,surf,Other
cp_roswell2_b1,1,0.000002%,cp,Capture Point
koth_delta,1,0.000002%,koth,King of the Hill
koth_sekhmet_b2,1,0.000002%,koth,King of the Hill
mvm_mannworks_gmt_endurance,1,0.000002%,mvm,Man vs Machine
ctf_2fort_mirror,1,0.000002%,ctf,Capture the Flag
ba_alcatraz_v1,1,0.000002%,ba,Other
tfdb_vfloat_test,1,0.000002%,tfdb,Other
cp_sawfalls2_30,1,0.000002%,cp,Capture Point
mvm_orange_x3_how_v2b_fawos_sin,1,0.000002%,mvm,Man vs Machine
pl_tracks,1,0.000002%,pl,Payload
koth_process_final,1,0.000002%,koth,King of the Hill
tfdb_tron_intox,1,0.000002%,tfdb,Other
vsh_dr_sector_v4,1,0.000002%,vsh,Other
foq_e2m1_areab_002,1,0.000002%,foq,Other
pl_rivercrossing_b4,1,0.000002%,pl,Payload
cp_toy_fort_beta2_cga,1,0.000002%,cp,Capture Point
jump_grey_v2,1,0.000002%,jump,Other
jump_ltfx_wip,1,0.000002%,jump,Other
koth_viaduct_colortest70_experi,1,0.000002%,koth,King of the Hill
xmas_mochila,1,0.000002%,xmas,Other
dm_bridge_ghost_town,1,0.000002%,dm,Deathmatch
egypt_experiment_01,1,0.000002%,egypt,Other
overlord_test_5,1,0.000002%,overlord,Other
pl_crusoe_a17b,1,0.000002%,pl,Payload
achievement_heavybox,1,0.000002%,achievement,Trade and Achievement
mvm_rottenburg_akfjdf,1,0.000002%,mvm,Man vs Machine
bhop_mapsuck_skybox,1,0.000002%,bhop,Other
push_gray_b1,1,0.000002%,push,Other
ff2_castle_of_the_everfree_d,1,0.000002%,ff2,Other
jump_habibi_c1_l7,1,0.000002%,jump,Other
jb_fuckzz_final_v10fixed,1,0.000002%,jb,Other
mvm_popfile15,1,0.000002%,mvm,Man vs Machine
surf_ny_momentum2_njv,1,0.000002%,surf,Other
pl_frontilnetestv5,1,0.000002%,pl,Payload
idle_sniper_war_v9_69u,1,0.000002%,idle,Other
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment