Skip to content

Instantly share code, notes, and snippets.

@mayblue9
Forked from kleem/README.md
Created July 27, 2016 04:59
Show Gist options
  • Save mayblue9/c9350e102df1d1053bdd05552c3635ed to your computer and use it in GitHub Desktop.
Save mayblue9/c9350e102df1d1053bdd05552c3635ed to your computer and use it in GitHub Desktop.
Cassandra social graph matrix

This example shows the interactions of a group of forum users in the form of a matrix. The interaction is computed by taking into account the number of posts the users wrote into threads with common tags (tags are chosen from a list of relevant keywords). To make clusters more evident we sort the users with a hierarchical clustering algorithm.

A linear luminance multihue color scale is used to improve the readability of the color encoding.

svg = d3.select('svg')
width = svg.node().getBoundingClientRect().width
height = svg.node().getBoundingClientRect().height
# append a group for zoomable content
zoomable_layer = svg.append('g')
# define a zoom behavior
zoom = d3.behavior.zoom()
.scaleExtent([0.5,8]) # min-max zoom - a value of 1 represent the initial zoom
.on 'zoom', () ->
# GEOMETRIC ZOOM
# whenever the user zooms,
# modify translation and scale of the zoomable layer accordingly
zoomable_layer
.attr
transform: "translate(#{zoom.translate()})scale(#{zoom.scale()})"
# bind the zoom behavior to the main SVG (this is needed to have pan work on empty space - a group would pan only when dragging child elements)
svg.call(zoom)
matrix = zoomable_layer.append('g')
.attr('transform', "translate(#{width/2},#{height/2})")
SIZE = 2
d3.csv 'social_graph_keywords_top1k.csv', (data) ->
graph = {nodes: [], links: []}
node_index = {}
link_index = {}
data.forEach (d) ->
if d.user_id_1 not of node_index
n = {id: d.user_id_1, name: d.username_1}
node_index[+d.user_id_1] = n
graph.nodes.push n
if d.user_id_2 not of node_index
n = {id: d.user_id_2, name: d.username_2}
node_index[+d.user_id_2] = n
graph.nodes.push n
link_id = '(' + Math.min(+d.user_id_1, +d.user_id_2) + ')--(' + Math.max(+d.user_id_1, +d.user_id_2) + ')'
if link_id not of link_index
l = {source: node_index[Math.min(+d.user_id_1, +d.user_id_2)], target: node_index[Math.max(+d.user_id_1, +d.user_id_2)], tags: [{tag: d.tag, weight: d.coposting}]}
link_index[link_id] = l
graph.links.push l
else
link_index[link_id].tags.push {tag: d.tag, weight: d.coposting}
# compute average weights
graph.links.forEach (d) ->
d.avg_weight = d3.mean(d.tags, (t) -> t.weight)
# compute the maximum average weight and prepare a color scale
max = d3.max(graph.links, (l) -> l.avg_weight)
color = (d) -> d3.hcl(340-480*d/max, 80-Math.pow(0.5-d/max,2)/400, 100*d/max)
console.debug 'Computing hierarchical clustering...'
clusters = clusterfck.hcluster(
graph.nodes,
((a,b) ->
link_id = '(' + Math.min(a.id, b.id) + ')--(' + Math.max(a.id, b.id) + ')'
if link_id not of link_index
return 1
else
return 1-link_index[link_id].avg_weight/max
),
clusterfck.SINGLE_LINKAGE
)
tree = tree_utils.binary_to_std(clusters)
# use the cluster ordering instead of the original one
graph.nodes = tree_utils.get_leaves(tree).map (d) -> d.value
# store the index of the node within its object, in order to use it when placing link cells
graph.nodes.forEach (d, i) ->
d.i = i
# draw the background
back = matrix.append('rect')
.attr
class: 'back'
x: -graph.nodes.length/2*SIZE
y: -graph.nodes.length/2*SIZE
width: graph.nodes.length*SIZE
height: graph.nodes.length*SIZE
cell_gs = matrix.selectAll('.cell')
.data(graph.links)
enter_cell_gs = cell_gs.enter().append('g')
.attr
fill: (l) -> color(l.avg_weight)
enter_cell_gs
.append('rect')
.attr
class: 'cell'
x: (d) -> (-graph.nodes.length/2 + d.target.i)*SIZE
y: (d) -> (-graph.nodes.length/2 + d.source.i)*SIZE
width: SIZE
height: SIZE
# mirror image cells
enter_cell_gs
.append('rect')
.attr
class: 'cell'
x: (d) -> (-graph.nodes.length/2 + d.source.i)*SIZE
y: (d) -> (-graph.nodes.length/2 + d.target.i)*SIZE
width: SIZE
height: SIZE
enter_cell_gs
.append('title')
.text((l) -> 'user1: '+l.source.name+'\nuser2: '+l.target.name+'\naverage weight: '+d3.format(',.2f')(l.avg_weight)+'\ntags: '+l.tags.map((t) -> t.tag).join(', '))
d3.select(self.frameElement).style('height', height+'px')
html, body {
padding: 0;
margin: 0;
}
svg {
background: #111;
}
.back {
background: black;
}
.cell {
shape-rendering: crispEdges;
}
.cell:hover {
fill: white;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cassandra forum social graph matrix</title>
<link type="text/css" href="index.css" rel="stylesheet"/>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="//wafi.iit.cnr.it/webvis/tmp/clusterfck.js"></script>
<script src="//wafi.iit.cnr.it/webvis/libs/jigmaps/zip.js"></script>
<script src="//wafi.iit.cnr.it/webvis/libs/jigmaps/tree_utils.js"></script>
</head>
<body>
<svg height="760px" width="960px"></svg>
<script src="index.js"></script>
</body>
</html>
// Generated by CoffeeScript 1.4.0
(function() {
var SIZE, height, matrix, svg, width, zoom, zoomable_layer;
svg = d3.select('svg');
width = svg.node().getBoundingClientRect().width;
height = svg.node().getBoundingClientRect().height;
zoomable_layer = svg.append('g');
zoom = d3.behavior.zoom().scaleExtent([0.5, 8]).on('zoom', function() {
return zoomable_layer.attr({
transform: "translate(" + (zoom.translate()) + ")scale(" + (zoom.scale()) + ")"
});
});
svg.call(zoom);
matrix = zoomable_layer.append('g').attr('transform', "translate(" + (width / 2) + "," + (height / 2) + ")");
SIZE = 2;
d3.csv('social_graph_keywords_top1k.csv', function(data) {
var back, cell_gs, clusters, color, enter_cell_gs, graph, link_index, max, node_index, tree;
graph = {
nodes: [],
links: []
};
node_index = {};
link_index = {};
data.forEach(function(d) {
var l, link_id, n;
if (!(d.user_id_1 in node_index)) {
n = {
id: d.user_id_1,
name: d.username_1
};
node_index[+d.user_id_1] = n;
graph.nodes.push(n);
}
if (!(d.user_id_2 in node_index)) {
n = {
id: d.user_id_2,
name: d.username_2
};
node_index[+d.user_id_2] = n;
graph.nodes.push(n);
}
link_id = '(' + Math.min(+d.user_id_1, +d.user_id_2) + ')--(' + Math.max(+d.user_id_1, +d.user_id_2) + ')';
if (!(link_id in link_index)) {
l = {
source: node_index[Math.min(+d.user_id_1, +d.user_id_2)],
target: node_index[Math.max(+d.user_id_1, +d.user_id_2)],
tags: [
{
tag: d.tag,
weight: d.coposting
}
]
};
link_index[link_id] = l;
return graph.links.push(l);
} else {
return link_index[link_id].tags.push({
tag: d.tag,
weight: d.coposting
});
}
});
graph.links.forEach(function(d) {
return d.avg_weight = d3.mean(d.tags, function(t) {
return t.weight;
});
});
max = d3.max(graph.links, function(l) {
return l.avg_weight;
});
color = function(d) {
return d3.hcl(340 - 480 * d / max, 80 - Math.pow(0.5 - d / max, 2) / 400, 100 * d / max);
};
console.debug('Computing hierarchical clustering...');
clusters = clusterfck.hcluster(graph.nodes, (function(a, b) {
var link_id;
link_id = '(' + Math.min(a.id, b.id) + ')--(' + Math.max(a.id, b.id) + ')';
if (!(link_id in link_index)) {
return 1;
} else {
return 1 - link_index[link_id].avg_weight / max;
}
}), clusterfck.SINGLE_LINKAGE);
tree = tree_utils.binary_to_std(clusters);
graph.nodes = tree_utils.get_leaves(tree).map(function(d) {
return d.value;
});
graph.nodes.forEach(function(d, i) {
return d.i = i;
});
back = matrix.append('rect').attr({
"class": 'back',
x: -graph.nodes.length / 2 * SIZE,
y: -graph.nodes.length / 2 * SIZE,
width: graph.nodes.length * SIZE,
height: graph.nodes.length * SIZE
});
cell_gs = matrix.selectAll('.cell').data(graph.links);
enter_cell_gs = cell_gs.enter().append('g').attr({
fill: function(l) {
return color(l.avg_weight);
}
});
enter_cell_gs.append('rect').attr({
"class": 'cell',
x: function(d) {
return (-graph.nodes.length / 2 + d.target.i) * SIZE;
},
y: function(d) {
return (-graph.nodes.length / 2 + d.source.i) * SIZE;
},
width: SIZE,
height: SIZE
});
enter_cell_gs.append('rect').attr({
"class": 'cell',
x: function(d) {
return (-graph.nodes.length / 2 + d.source.i) * SIZE;
},
y: function(d) {
return (-graph.nodes.length / 2 + d.target.i) * SIZE;
},
width: SIZE,
height: SIZE
});
return enter_cell_gs.append('title').text(function(l) {
return 'user1: ' + l.source.name + '\nuser2: ' + l.target.name + '\naverage weight: ' + d3.format(',.2f')(l.avg_weight) + '\ntags: ' + l.tags.map(function(t) {
return t.tag;
}).join(', ');
});
});
d3.select(self.frameElement).style('height', height + 'px');
}).call(this);
We can't make this file beautiful and searchable because it's too large.
"user_id_1","username_1","user_id_2","username_2","tag","coposting"
"2418","Phungushead","35486","NeuroChi","tramadol","4920"
"2418","Phungushead","35486","NeuroChi","buprenorphine","3857"
"2418","Phungushead","35486","NeuroChi","mdma","3250"
"2418","Phungushead","35486","NeuroChi","oxycodone","3243"
"2418","Phungushead","35486","NeuroChi","methadone","3234"
"2418","Phungushead","35486","NeuroChi","xanax","3220"
"2418","Phungushead","35486","NeuroChi","morphine","3212"
"2418","Phungushead","35486","NeuroChi","kratom","3212"
"35486","NeuroChi","46865","dyingtomorrow","suboxone","1561"
"1","Alfa","35486","NeuroChi","tramadol","1517"
"1","Alfa","2418","Phungushead","tramadol","1517"
"35486","NeuroChi","46865","dyingtomorrow","methadone","1444"
"2418","Phungushead","46865","dyingtomorrow","methadone","1444"
"2418","Phungushead","46865","dyingtomorrow","oxycodone","1409"
"35486","NeuroChi","46865","dyingtomorrow","oxycodone","1409"
"35486","NeuroChi","46865","dyingtomorrow","morphine","1378"
"2418","Phungushead","46865","dyingtomorrow","morphine","1378"
"35486","NeuroChi","46865","dyingtomorrow","vicodin","1371"
"1","Alfa","2418","Phungushead","mdma","1260"
"1","Alfa","35486","NeuroChi","mdma","1260"
"2418","Phungushead","46865","dyingtomorrow","valium","1231"
"35486","NeuroChi","46865","dyingtomorrow","percocet","1219"
"35486","NeuroChi","71487","robotripper","adderall","1101"
"1842","nymphetamine","35486","NeuroChi","mdma","1027"
"1","Alfa","1842","nymphetamine","mdma","1027"
"1842","nymphetamine","2418","Phungushead","kratom","1027"
"2418","Phungushead","38632","PilL FreaK","tramadol","1027"
"1842","nymphetamine","35486","NeuroChi","ritalin","1027"
"1842","nymphetamine","46865","dyingtomorrow","methadone","1027"
"1","Alfa","1842","nymphetamine","tramadol","1027"
"1842","nymphetamine","35486","NeuroChi","vicodin","1027"
"1842","nymphetamine","2418","Phungushead","valium","1027"
"1842","nymphetamine","2418","Phungushead","methylphenidate","1027"
"1842","nymphetamine","46865","dyingtomorrow","oxycodone","1027"
"1842","nymphetamine","2418","Phungushead","methadone","1027"
"35486","NeuroChi","38632","PilL FreaK","tramadol","1027"
"1842","nymphetamine","2418","Phungushead","oxycodone","1027"
"1842","nymphetamine","2418","Phungushead","tramadol","1027"
"1842","nymphetamine","35486","NeuroChi","xanax","1027"
"1842","nymphetamine","35486","NeuroChi","morphine","1027"
"1842","nymphetamine","35486","NeuroChi","fentanyl","1027"
"1842","nymphetamine","71487","robotripper","adderall","1027"
"1842","nymphetamine","35486","NeuroChi","percocet","1027"
"1842","nymphetamine","35486","NeuroChi","kratom","1027"
"1842","nymphetamine","35486","NeuroChi","shroom","1027"
"1842","nymphetamine","2418","Phungushead","mdma","1027"
"1","Alfa","38632","PilL FreaK","tramadol","1027"
"1842","nymphetamine","46865","dyingtomorrow","vicodin","1027"
"1842","nymphetamine","35486","NeuroChi","codeine","1027"
"1842","nymphetamine","46865","dyingtomorrow","valium","1027"
"1842","nymphetamine","46865","dyingtomorrow","oxycontin","1027"
"1842","nymphetamine","35486","NeuroChi","methadone","1027"
"1842","nymphetamine","35486","NeuroChi","oxycodone","1027"
"1842","nymphetamine","38632","PilL FreaK","tramadol","1027"
"1842","nymphetamine","35486","NeuroChi","tramadol","1027"
"1842","nymphetamine","46865","dyingtomorrow","morphine","1027"
"1842","nymphetamine","35486","NeuroChi","hydrocodone","1027"
"1842","nymphetamine","2418","Phungushead","xanax","1027"
"1842","nymphetamine","2418","Phungushead","morphine","1027"
"1842","nymphetamine","46865","dyingtomorrow","diphenhydramine","1027"
"1842","nymphetamine","35486","NeuroChi","adderall","1027"
"1842","nymphetamine","46865","dyingtomorrow","percocet","1027"
"1842","nymphetamine","3413","radiometer ","ghb","951"
"1","Alfa","1842","nymphetamine","mephedrone","922"
"2610","brainwaxd","35486","NeuroChi","shroom","900"
"2418","Phungushead","2610","brainwaxd","mdma","900"
"1842","nymphetamine","2610","brainwaxd","mdma","900"
"1","Alfa","2610","brainwaxd","mdma","900"
"2610","brainwaxd","35486","NeuroChi","mdma","900"
"1842","nymphetamine","2610","brainwaxd","shroom","900"
"1","Alfa","8016","chillinwill","mephedrone","870"
"1842","nymphetamine","8016","chillinwill","mephedrone","870"
"35486","NeuroChi","294051","Jungledog","kratom","843"
"46865","dyingtomorrow","294051","Jungledog","oxycodone","843"
"2418","Phungushead","294051","Jungledog","kratom","843"
"1842","nymphetamine","294051","Jungledog","oxycodone","843"
"2418","Phungushead","294051","Jungledog","oxycodone","843"
"35486","NeuroChi","294051","Jungledog","oxycodone","843"
"1842","nymphetamine","294051","Jungledog","kratom","843"
"1842","nymphetamine","13189","augentier ","diphenhydramine","837"
"13189","augentier ","46865","dyingtomorrow","diphenhydramine","837"
"1842","nymphetamine","273439","marathonmel7","kratom","804"
"35486","NeuroChi","273439","marathonmel7","kratom","804"
"273439","marathonmel7","294051","Jungledog","kratom","804"
"2418","Phungushead","273439","marathonmel7","kratom","804"
"2418","Phungushead","273439","marathonmel7","xanax","794"
"35486","NeuroChi","273439","marathonmel7","xanax","794"
"1842","nymphetamine","273439","marathonmel7","xanax","794"
"273791","Roaddoggy","294051","Jungledog","loperamide","792"
"1562","soer","35486","NeuroChi","mdma","785"
"1562","soer","2610","brainwaxd","shroom","785"
"1562","soer","35486","NeuroChi","shroom","785"
"1562","soer","1842","nymphetamine","mdma","785"
"1562","soer","2418","Phungushead","mdma","785"
"1562","soer","1842","nymphetamine","shroom","785"
"1562","soer","2610","brainwaxd","mdma","785"
"1","Alfa","1562","soer","mdma","785"
"28015","riaahacker","35486","NeuroChi","adderall","750"
"28015","riaahacker","71487","robotripper","adderall","750"
"1842","nymphetamine","28015","riaahacker","adderall","750"
"28015","riaahacker","35486","NeuroChi","ritalin","749"
"1842","nymphetamine","28015","riaahacker","ritalin","749"
"1842","nymphetamine","28015","riaahacker","xanax","747"
"28015","riaahacker","35486","NeuroChi","xanax","747"
"2418","Phungushead","28015","riaahacker","xanax","747"
"28015","riaahacker","273439","marathonmel7","xanax","747"
"1","Alfa","28015","riaahacker","tramadol","741"
"1842","nymphetamine","28015","riaahacker","vicodin","741"
"1842","nymphetamine","28015","riaahacker","codeine","741"
"1842","nymphetamine","28015","riaahacker","mephedrone","741"
"1842","nymphetamine","28015","riaahacker","oxycontin","741"
"28015","riaahacker","35486","NeuroChi","methadone","741"
"1842","nymphetamine","28015","riaahacker","tramadol","741"
"28015","riaahacker","35486","NeuroChi","codeine","741"
"1842","nymphetamine","28015","riaahacker","morphine","741"
"28015","riaahacker","46865","dyingtomorrow","oxycontin","741"
"1842","nymphetamine","28015","riaahacker","hydrocodone","741"
"1842","nymphetamine","28015","riaahacker","diazepam","741"
"28015","riaahacker","35486","NeuroChi","tramadol","741"
"2418","Phungushead","28015","riaahacker","baclofen","741"
"28015","riaahacker","46865","dyingtomorrow","vicodin","741"
"28015","riaahacker","46865","dyingtomorrow","morphine","741"
"2418","Phungushead","28015","riaahacker","kratom","741"
"28015","riaahacker","273439","marathonmel7","kratom","741"
"2418","Phungushead","28015","riaahacker","morphine","741"
"28015","riaahacker","35486","NeuroChi","kratom","741"
"2418","Phungushead","28015","riaahacker","tramadol","741"
"28015","riaahacker","46865","dyingtomorrow","methadone","741"
"1842","nymphetamine","28015","riaahacker","methadone","741"
"2418","Phungushead","28015","riaahacker","dxm","741"
"8016","chillinwill","28015","riaahacker","mephedrone","741"
"2418","Phungushead","28015","riaahacker","methadone","741"
"1","Alfa","28015","riaahacker","mephedrone","741"
"28015","riaahacker","38632","PilL FreaK","tramadol","741"
"1842","nymphetamine","28015","riaahacker","nitrous oxide","741"
"28015","riaahacker","35486","NeuroChi","vicodin","741"
"28015","riaahacker","35486","NeuroChi","hydrocodone","741"
"28015","riaahacker","35486","NeuroChi","morphine","741"
"1842","nymphetamine","28015","riaahacker","kratom","741"
"28015","riaahacker","294051","Jungledog","kratom","741"
"3732","Diphenhydramine","35486","NeuroChi","mdma","726"
"2610","brainwaxd","3732","Diphenhydramine","mdma","726"
"1562","soer","3732","Diphenhydramine","mdma","726"
"1","Alfa","3732","Diphenhydramine","mdma","726"
"1842","nymphetamine","3732","Diphenhydramine","shroom","726"
"3732","Diphenhydramine","35486","NeuroChi","shroom","726"
"2610","brainwaxd","3732","Diphenhydramine","shroom","726"
"2418","Phungushead","3732","Diphenhydramine","mdma","726"
"1562","soer","3732","Diphenhydramine","shroom","726"
"1842","nymphetamine","3732","Diphenhydramine","mdma","726"
"1329","khonsu13","28015","riaahacker","morphine","711"
"1329","khonsu13","46865","dyingtomorrow","morphine","711"
"1329","khonsu13","2418","Phungushead","morphine","711"
"1329","khonsu13","1842","nymphetamine","morphine","711"
"1329","khonsu13","35486","NeuroChi","morphine","711"
"28015","riaahacker","202594","headfull0fstars","methadone","709"
"1842","nymphetamine","202594","headfull0fstars","methadone","709"
"2418","Phungushead","202594","headfull0fstars","methadone","709"
"46865","dyingtomorrow","202594","headfull0fstars","methadone","709"
"35486","NeuroChi","202594","headfull0fstars","methadone","709"
"1","Alfa","273439","marathonmel7","kratom","653"
"1","Alfa","1842","nymphetamine","kratom","653"
"1","Alfa","2418","Phungushead","kratom","653"
"1","Alfa","28015","riaahacker","kratom","653"
"1","Alfa","294051","Jungledog","kratom","653"
"1","Alfa","35486","NeuroChi","kratom","653"
"28015","riaahacker","57101","Terrapinzflyer ","mephedrone","647"
"8016","chillinwill","57101","Terrapinzflyer ","mephedrone","647"
"1","Alfa","57101","Terrapinzflyer ","mephedrone","647"
"1842","nymphetamine","57101","Terrapinzflyer ","mephedrone","647"
"1","Alfa","1562","soer","shroom","633"
"1","Alfa","1842","nymphetamine","shroom","633"
"1","Alfa","3732","Diphenhydramine","shroom","633"
"1","Alfa","2610","brainwaxd","shroom","633"
"1","Alfa","35486","NeuroChi","shroom","633"
"28015","riaahacker","115136","trdofbeingtrd","adderall","609"
"71487","robotripper","115136","trdofbeingtrd","adderall","609"
"1842","nymphetamine","115136","trdofbeingtrd","adderall","609"
"35486","NeuroChi","115136","trdofbeingtrd","adderall","609"
"46865","dyingtomorrow","115136","trdofbeingtrd","suboxone","588"
"35486","NeuroChi","115136","trdofbeingtrd","suboxone","588"
"6201","SkUnKaDeLiC","28015","riaahacker","xanax","586"
"6201","SkUnKaDeLiC","35486","NeuroChi","xanax","586"
"1842","nymphetamine","6201","SkUnKaDeLiC","valium","586"
"6201","SkUnKaDeLiC","28015","riaahacker","alprazolam","586"
"6201","SkUnKaDeLiC","28015","riaahacker","diazepam","586"
"6201","SkUnKaDeLiC","28015","riaahacker","methadone","586"
"1842","nymphetamine","6201","SkUnKaDeLiC","lorazepam","586"
"2418","Phungushead","6201","SkUnKaDeLiC","clonazepam","586"
"6201","SkUnKaDeLiC","35486","NeuroChi","methadone","586"
"1842","nymphetamine","6201","SkUnKaDeLiC","phenazepam","586"
"1842","nymphetamine","6201","SkUnKaDeLiC","temazepam","586"
"1842","nymphetamine","6201","SkUnKaDeLiC","methadone","586"
"2418","Phungushead","6201","SkUnKaDeLiC","etizolam","586"
"2418","Phungushead","6201","SkUnKaDeLiC","valium","586"
"6201","SkUnKaDeLiC","273439","marathonmel7","xanax","586"
"1842","nymphetamine","6201","SkUnKaDeLiC","xanax","586"
"2418","Phungushead","6201","SkUnKaDeLiC","methadone","586"
"6201","SkUnKaDeLiC","202594","headfull0fstars","methadone","586"
"1842","nymphetamine","6201","SkUnKaDeLiC","diazepam","586"
"6201","SkUnKaDeLiC","46865","dyingtomorrow","methadone","586"
"6201","SkUnKaDeLiC","46865","dyingtomorrow","valium","586"
"2418","Phungushead","6201","SkUnKaDeLiC","xanax","586"
"4092","trptamene ","57101","Terrapinzflyer ","mephedrone","583"
"4092","trptamene ","8016","chillinwill","mephedrone","583"
"1","Alfa","4092","trptamene ","mephedrone","583"
"4092","trptamene ","28015","riaahacker","mephedrone","583"
"1842","nymphetamine","4092","trptamene ","mephedrone","583"
"35486","NeuroChi","115136","trdofbeingtrd","methadone","579"
"2418","Phungushead","115136","trdofbeingtrd","methadone","579"
"6201","SkUnKaDeLiC","115136","trdofbeingtrd","methadone","579"
"28015","riaahacker","115136","trdofbeingtrd","methadone","579"
"115136","trdofbeingtrd","202594","headfull0fstars","methadone","579"
"46865","dyingtomorrow","115136","trdofbeingtrd","methadone","579"
"1842","nymphetamine","115136","trdofbeingtrd","methadone","579"
"1","Alfa","28015","riaahacker","morphine","577"
"1","Alfa","46865","dyingtomorrow","morphine","577"
"1","Alfa","2418","Phungushead","morphine","577"
"1","Alfa","1329","khonsu13","morphine","577"
"1","Alfa","1842","nymphetamine","morphine","577"
"1","Alfa","35486","NeuroChi","morphine","577"
"1868","Paderas","71487","robotripper","adderall","575"
"1868","Paderas","3732","Diphenhydramine","mdma","575"
"1","Alfa","1868","Paderas","morphine","575"
"1","Alfa","1868","Paderas","shroom","575"
"1868","Paderas","3732","Diphenhydramine","shroom","575"
"1868","Paderas","35486","NeuroChi","mdma","575"
"1868","Paderas","57101","Terrapinzflyer ","mephedrone","575"
"1868","Paderas","35486","NeuroChi","shroom","575"
"1868","Paderas","8016","chillinwill","mephedrone","575"
"1","Alfa","1868","Paderas","mephedrone","575"
"1868","Paderas","46865","dyingtomorrow","morphine","575"
"1868","Paderas","2418","Phungushead","morphine","575"
"1562","soer","1868","Paderas","shroom","575"
"1842","nymphetamine","1868","Paderas","mdma","575"
"1842","nymphetamine","1868","Paderas","mephedrone","575"
"1868","Paderas","28015","riaahacker","adderall","575"
"1868","Paderas","35486","NeuroChi","adderall","575"
"1868","Paderas","2610","brainwaxd","mdma","575"
"1329","khonsu13","1868","Paderas","morphine","575"
"1868","Paderas","4092","trptamene ","mephedrone","575"
"1868","Paderas","2610","brainwaxd","shroom","575"
"1868","Paderas","2418","Phungushead","mdma","575"
"1868","Paderas","28015","riaahacker","mephedrone","575"
"1868","Paderas","28015","riaahacker","morphine","575"
"1842","nymphetamine","1868","Paderas","morphine","575"
"1868","Paderas","35486","NeuroChi","morphine","575"
"1842","nymphetamine","1868","Paderas","adderall","575"
"1562","soer","1868","Paderas","mdma","575"
"1","Alfa","1868","Paderas","mdma","575"
"1842","nymphetamine","1868","Paderas","shroom","575"
"1868","Paderas","115136","trdofbeingtrd","adderall","575"
"46865","dyingtomorrow","63028","Smirnoff","diphenhydramine","573"
"13189","augentier ","63028","Smirnoff","diphenhydramine","573"
"1842","nymphetamine","63028","Smirnoff","diphenhydramine","573"
"45599","On The Nod","46865","dyingtomorrow","methadone","570"
"1842","nymphetamine","45599","On The Nod","methadone","570"
"35486","NeuroChi","45599","On The Nod","methadone","570"
"45599","On The Nod","202594","headfull0fstars","methadone","570"
"2418","Phungushead","45599","On The Nod","methadone","570"
"6201","SkUnKaDeLiC","45599","On The Nod","methadone","570"
"28015","riaahacker","45599","On The Nod","methadone","570"
"45599","On The Nod","115136","trdofbeingtrd","methadone","570"
"35486","NeuroChi","63028","Smirnoff","mdma","567"
"2418","Phungushead","63028","Smirnoff","mdma","567"
"1562","soer","63028","Smirnoff","mdma","567"
"1","Alfa","63028","Smirnoff","mdma","567"
"1868","Paderas","63028","Smirnoff","mdma","567"
"3732","Diphenhydramine","63028","Smirnoff","mdma","567"
"2610","brainwaxd","63028","Smirnoff","mdma","567"
"1842","nymphetamine","63028","Smirnoff","mdma","567"
"2418","Phungushead","63028","Smirnoff","methadone","560"
"6201","SkUnKaDeLiC","63028","Smirnoff","methadone","560"
"46865","dyingtomorrow","63028","Smirnoff","methadone","560"
"28015","riaahacker","63028","Smirnoff","methadone","560"
"45599","On The Nod","63028","Smirnoff","methadone","560"
"63028","Smirnoff","115136","trdofbeingtrd","methadone","560"
"1842","nymphetamine","63028","Smirnoff","methadone","560"
"35486","NeuroChi","63028","Smirnoff","methadone","560"
"63028","Smirnoff","202594","headfull0fstars","methadone","560"
"2418","Phungushead","63028","Smirnoff","tramadol","558"
"28015","riaahacker","63028","Smirnoff","tramadol","558"
"38632","PilL FreaK","63028","Smirnoff","tramadol","558"
"1","Alfa","63028","Smirnoff","tramadol","558"
"1842","nymphetamine","63028","Smirnoff","tramadol","558"
"35486","NeuroChi","63028","Smirnoff","tramadol","558"
"1329","khonsu13","63028","Smirnoff","morphine","557"
"3732","Diphenhydramine","63028","Smirnoff","shroom","557"
"1842","nymphetamine","63028","Smirnoff","oxycodone","557"
"2610","brainwaxd","63028","Smirnoff","shroom","557"
"1842","nymphetamine","63028","Smirnoff","xanax","557"
"1868","Paderas","63028","Smirnoff","morphine","557"
"1842","nymphetamine","63028","Smirnoff","morphine","557"
"35486","NeuroChi","63028","Smirnoff","morphine","557"
"1842","nymphetamine","63028","Smirnoff","diazepam","557"
"63028","Smirnoff","273439","marathonmel7","xanax","557"
"28015","riaahacker","63028","Smirnoff","xanax","557"
"2418","Phungushead","63028","Smirnoff","oxycodone","557"
"1842","nymphetamine","63028","Smirnoff","adderall","557"
"63028","Smirnoff","294051","Jungledog","oxycodone","557"
"35486","NeuroChi","63028","Smirnoff","oxycodone","557"
"6201","SkUnKaDeLiC","63028","Smirnoff","valium","557"
"1842","nymphetamine","63028","Smirnoff","shroom","557"
"1868","Paderas","63028","Smirnoff","adderall","557"
"28015","riaahacker","63028","Smirnoff","alprazolam","557"
"2418","Phungushead","63028","Smirnoff","xanax","557"
"63028","Smirnoff","115136","trdofbeingtrd","adderall","557"
"46865","dyingtomorrow","63028","Smirnoff","oxycontin","557"
"6201","SkUnKaDeLiC","63028","Smirnoff","xanax","557"
"28015","riaahacker","63028","Smirnoff","diazepam","557"
"1","Alfa","63028","Smirnoff","morphine","557"
"1","Alfa","63028","Smirnoff","shroom","557"
"1868","Paderas","63028","Smirnoff","shroom","557"
"1842","nymphetamine","63028","Smirnoff","codeine","557"
"1842","nymphetamine","63028","Smirnoff","valium","557"
"1842","nymphetamine","63028","Smirnoff","oxycontin","557"
"35486","NeuroChi","63028","Smirnoff","xanax","557"
"46865","dyingtomorrow","63028","Smirnoff","valium","557"
"6201","SkUnKaDeLiC","63028","Smirnoff","alprazolam","557"
"28015","riaahacker","63028","Smirnoff","codeine","557"
"2418","Phungushead","63028","Smirnoff","zopiclone","557"
"46865","dyingtomorrow","63028","Smirnoff","morphine","557"
"6201","SkUnKaDeLiC","63028","Smirnoff","diazepam","557"
"35486","NeuroChi","63028","Smirnoff","shroom","557"
"28015","riaahacker","63028","Smirnoff","adderall","557"
"28015","riaahacker","63028","Smirnoff","oxycontin","557"
"2418","Phungushead","63028","Smirnoff","clonazepam","557"
"6201","SkUnKaDeLiC","63028","Smirnoff","phenazepam","557"
"1562","soer","63028","Smirnoff","shroom","557"
"1842","nymphetamine","63028","Smirnoff","phenazepam","557"
"1842","nymphetamine","63028","Smirnoff","kava","557"
"28015","riaahacker","63028","Smirnoff","morphine","557"
"46865","dyingtomorrow","63028","Smirnoff","oxycodone","557"
"2418","Phungushead","63028","Smirnoff","morphine","557"
"6201","SkUnKaDeLiC","63028","Smirnoff","clonazepam","557"
"35486","NeuroChi","63028","Smirnoff","codeine","557"
"35486","NeuroChi","63028","Smirnoff","adderall","557"
"2418","Phungushead","63028","Smirnoff","valium","557"
"63028","Smirnoff","71487","robotripper","adderall","557"
"539","stndguy","1868","Paderas","psilocybin","533"
"539","stndguy","63028","Smirnoff","shroom","533"
"539","stndguy","1868","Paderas","mdma","533"
"539","stndguy","3732","Diphenhydramine","shroom","533"
"539","stndguy","1562","soer","mdma","533"
"539","stndguy","2610","brainwaxd","shroom","533"
"539","stndguy","1842","nymphetamine","mdma","533"
"539","stndguy","35486","NeuroChi","shroom","533"
"539","stndguy","2418","Phungushead","mdma","533"
"539","stndguy","63028","Smirnoff","mdma","533"
"539","stndguy","1868","Paderas","shroom","533"
"539","stndguy","3732","Diphenhydramine","mdma","533"
"539","stndguy","1562","soer","shroom","533"
"539","stndguy","2610","brainwaxd","mdma","533"
"539","stndguy","1842","nymphetamine","shroom","533"
"539","stndguy","35486","NeuroChi","mdma","533"
"1","Alfa","539","stndguy","mdma","533"
"1","Alfa","539","stndguy","shroom","533"
"3732","Diphenhydramine","57101","Terrapinzflyer ","mdma","530"
"57101","Terrapinzflyer ","63028","Smirnoff","mdma","530"
"539","stndguy","57101","Terrapinzflyer ","mdma","530"
"2610","brainwaxd","57101","Terrapinzflyer ","mdma","530"
"1","Alfa","57101","Terrapinzflyer ","mdma","530"
"1842","nymphetamine","57101","Terrapinzflyer ","mdma","530"
"35486","NeuroChi","57101","Terrapinzflyer ","mdma","530"
"2418","Phungushead","57101","Terrapinzflyer ","mdma","530"
"1562","soer","57101","Terrapinzflyer ","mdma","530"
"1868","Paderas","57101","Terrapinzflyer ","mdma","530"
"2418","Phungushead","202594","headfull0fstars","clonazepam","523"
"6201","SkUnKaDeLiC","202594","headfull0fstars","clonazepam","523"
"63028","Smirnoff","202594","headfull0fstars","clonazepam","523"
"2418","Phungushead","4910","Fantasian","mdma","522"
"1562","soer","4910","Fantasian","mdma","522"
"1868","Paderas","4910","Fantasian","mdma","522"
"4910","Fantasian","57101","Terrapinzflyer ","mdma","522"
"4910","Fantasian","35486","NeuroChi","mdma","522"
"3732","Diphenhydramine","4910","Fantasian","mdma","522"
"539","stndguy","4910","Fantasian","mdma","522"
"2610","brainwaxd","4910","Fantasian","mdma","522"
"1","Alfa","4910","Fantasian","mdma","522"
"1842","nymphetamine","4910","Fantasian","mdma","522"
"4910","Fantasian","63028","Smirnoff","mdma","522"
"14677","splish6","63028","Smirnoff","phenazepam","517"
"6201","SkUnKaDeLiC","14677","splish6","phenazepam","517"
"1842","nymphetamine","14677","splish6","phenazepam","517"
"4495","vhalin","13344","drewcil","kratom","516"
"1842","nymphetamine","4495","vhalin","valium","516"
"1842","nymphetamine","4495","vhalin","oxycontin","516"
"3732","Diphenhydramine","4495","vhalin","mdma","516"
"4495","vhalin","4910","Fantasian","mdma","516"
"539","stndguy","4495","vhalin","mdma","516"
"1842","nymphetamine","4495","vhalin","ritalin","516"
"35486","NeuroChi","273791","Roaddoggy","kratom","516"
"1868","Paderas","4495","vhalin","mephedrone","516"
"4495","vhalin","28015","riaahacker","ritalin","516"
"4495","vhalin","6201","SkUnKaDeLiC","diazepam","516"
"4495","vhalin","28015","riaahacker","kratom","516"
"4495","vhalin","63028","Smirnoff","mdma","516"
"1842","nymphetamine","4495","vhalin","tramadol","516"
"4495","vhalin","28015","riaahacker","mephedrone","516"
"4495","vhalin","294051","Jungledog","kratom","516"
"4495","vhalin","6201","SkUnKaDeLiC","xanax","516"
"2610","brainwaxd","4495","vhalin","mdma","516"
"4495","vhalin","63028","Smirnoff","codeine","516"
"4495","vhalin","273439","marathonmel7","xanax","516"
"1562","soer","4495","vhalin","shroom","516"
"4495","vhalin","35486","NeuroChi","shroom","516"
"4495","vhalin","115136","trdofbeingtrd","adderall","516"
"273439","marathonmel7","273791","Roaddoggy","kratom","516"
"1","Alfa","13344","drewcil","kratom","516"
"1","Alfa","4495","vhalin","mdma","516"
"4495","vhalin","35486","NeuroChi","codeine","516"
"4495","vhalin","63028","Smirnoff","diphenhydramine","516"
"1842","nymphetamine","4495","vhalin","nitrous oxide","516"
"1842","nymphetamine","4495","vhalin","kava","516"
"4495","vhalin","71487","robotripper","adderall","516"
"1842","nymphetamine","4495","vhalin","mdma","516"
"2418","Phungushead","4495","vhalin","kratom","516"
"1","Alfa","273791","Roaddoggy","kratom","516"
"4495","vhalin","6201","SkUnKaDeLiC","valium","516"
"1842","nymphetamine","13344","drewcil","kratom","516"
"4495","vhalin","46865","dyingtomorrow","diphenhydramine","516"
"4495","vhalin","14677","splish6","phenazepam","516"
"4495","vhalin","28015","riaahacker","tramadol","516"
"13344","drewcil","273791","Roaddoggy","kratom","516"
"1842","nymphetamine","4495","vhalin","diphenhydramine","516"
"4495","vhalin","63028","Smirnoff","kava","516"
"4495","vhalin","28015","riaahacker","morphine","516"
"2418","Phungushead","4495","vhalin","morphine","516"
"1842","nymphetamine","273791","Roaddoggy","kratom","516"
"4495","vhalin","63028","Smirnoff","oxycontin","516"
"4495","vhalin","6201","SkUnKaDeLiC","phenazepam","516"
"4495","vhalin","35486","NeuroChi","tramadol","516"
"13344","drewcil","273439","marathonmel7","kratom","516"
"1","Alfa","4495","vhalin","shroom","516"
"4495","vhalin","35486","NeuroChi","morphine","516"
"4495","vhalin","63028","Smirnoff","alprazolam","516"
"4495","vhalin","294051","Jungledog","oxycodone","516"
"2418","Phungushead","4495","vhalin","valium","516"
"4495","vhalin","46865","dyingtomorrow","vicodin","516"
"4495","vhalin","46865","dyingtomorrow","oxycontin","516"
"4495","vhalin","35486","NeuroChi","hydrocodone","516"
"2418","Phungushead","4495","vhalin","tramadol","516"
"1329","khonsu13","4495","vhalin","morphine","516"
"1842","nymphetamine","4495","vhalin","vicodin","516"
"4495","vhalin","28015","riaahacker","alprazolam","516"
"4495","vhalin","35486","NeuroChi","oxycodone","516"
"4495","vhalin","63028","Smirnoff","diazepam","516"
"3732","Diphenhydramine","4495","vhalin","shroom","516"
"13344","drewcil","35486","NeuroChi","kratom","516"
"539","stndguy","4495","vhalin","psilocybin","516"
"4495","vhalin","273791","Roaddoggy","kratom","516"
"4495","vhalin","57101","Terrapinzflyer ","mdma","516"
"1842","nymphetamine","4495","vhalin","oxycodone","516"
"4495","vhalin","35486","NeuroChi","ritalin","516"
"539","stndguy","4495","vhalin","shroom","516"
"4495","vhalin","28015","riaahacker","nitrous oxide","516"
"4495","vhalin","28015","riaahacker","diazepam","516"
"2610","brainwaxd","4495","vhalin","shroom","516"
"4495","vhalin","57101","Terrapinzflyer ","mephedrone","516"
"4495","vhalin","273439","marathonmel7","kratom","516"
"4495","vhalin","35486","NeuroChi","mdma","516"
"1842","nymphetamine","4495","vhalin","xanax","516"
"4495","vhalin","63028","Smirnoff","xanax","516"
"1868","Paderas","4495","vhalin","morphine","516"
"1842","nymphetamine","4495","vhalin","morphine","516"
"4495","vhalin","8016","chillinwill","mephedrone","516"
"1","Alfa","4495","vhalin","mephedrone","516"
"4495","vhalin","35486","NeuroChi","kratom","516"
"4495","vhalin","28015","riaahacker","xanax","516"
"1842","nymphetamine","4495","vhalin","diazepam","516"
"2418","Phungushead","4495","vhalin","mdma","516"
"4495","vhalin","63028","Smirnoff","shroom","516"
"4495","vhalin","63028","Smirnoff","adderall","516"
"1842","nymphetamine","4495","vhalin","hydrocodone","516"
"4495","vhalin","28015","riaahacker","codeine","516"
"1842","nymphetamine","4495","vhalin","phenazepam","516"
"2418","Phungushead","4495","vhalin","oxycodone","516"
"4495","vhalin","35486","NeuroChi","xanax","516"
"1562","soer","4495","vhalin","mdma","516"
"4495","vhalin","28015","riaahacker","adderall","516"
"2418","Phungushead","13344","drewcil","kratom","516"
"1","Alfa","4495","vhalin","kratom","516"
"4092","trptamene ","4495","vhalin","mephedrone","516"
"4495","vhalin","63028","Smirnoff","valium","516"
"1842","nymphetamine","4495","vhalin","adderall","516"
"4495","vhalin","13189","augentier ","diphenhydramine","516"
"4495","vhalin","63028","Smirnoff","tramadol","516"
"1868","Paderas","4495","vhalin","psilocybin","516"
"4495","vhalin","35486","NeuroChi","adderall","516"
"4495","vhalin","63028","Smirnoff","morphine","516"
"2418","Phungushead","273791","Roaddoggy","kratom","516"
"4495","vhalin","46865","dyingtomorrow","valium","516"
"1842","nymphetamine","4495","vhalin","kratom","516"
"1842","nymphetamine","4495","vhalin","shroom","516"
"4495","vhalin","63028","Smirnoff","phenazepam","516"
"1868","Paderas","4495","vhalin","adderall","516"
"4495","vhalin","38632","PilL FreaK","tramadol","516"
"1868","Paderas","4495","vhalin","mdma","516"
"2418","Phungushead","4495","vhalin","xanax","516"
"13344","drewcil","28015","riaahacker","kratom","516"
"28015","riaahacker","273791","Roaddoggy","kratom","516"
"4495","vhalin","46865","dyingtomorrow","morphine","516"
"4495","vhalin","63028","Smirnoff","oxycodone","516"
"4495","vhalin","28015","riaahacker","vicodin","516"
"1842","nymphetamine","4495","vhalin","mephedrone","516"
"4495","vhalin","28015","riaahacker","oxycontin","516"
"4495","vhalin","28015","riaahacker","hydrocodone","516"
"4495","vhalin","35486","NeuroChi","vicodin","516"
"1","Alfa","4495","vhalin","morphine","516"
"13344","drewcil","294051","Jungledog","kratom","516"
"273791","Roaddoggy","294051","Jungledog","kratom","516"
"1","Alfa","4495","vhalin","tramadol","516"
"4495","vhalin","6201","SkUnKaDeLiC","alprazolam","516"
"4495","vhalin","46865","dyingtomorrow","oxycodone","516"
"1868","Paderas","4495","vhalin","shroom","516"
"1842","nymphetamine","4495","vhalin","codeine","516"
"127014","MikePatton","273791","Roaddoggy","kratom","498"
"2418","Phungushead","127014","MikePatton","kratom","498"
"127014","MikePatton","294051","Jungledog","kratom","498"
"28015","riaahacker","127014","MikePatton","kratom","498"
"4495","vhalin","127014","MikePatton","kratom","498"
"35486","NeuroChi","127014","MikePatton","kratom","498"
"1","Alfa","127014","MikePatton","kratom","498"
"127014","MikePatton","273439","marathonmel7","kratom","498"
"1842","nymphetamine","127014","MikePatton","kratom","498"
"13344","drewcil","127014","MikePatton","kratom","498"
"15","Sammi","2610","brainwaxd","shroom","496"
"15","Sammi","35486","NeuroChi","shroom","496"
"15","Sammi","539","stndguy","shroom","496"
"15","Sammi","1842","nymphetamine","salvia divinorum","496"
"15","Sammi","1868","Paderas","shroom","496"
"15","Sammi","1562","soer","shroom","496"
"15","Sammi","1842","nymphetamine","shroom","496"
"15","Sammi","4495","vhalin","shroom","496"
"1","Alfa","15","Sammi","shroom","496"
"15","Sammi","63028","Smirnoff","shroom","496"
"15","Sammi","3732","Diphenhydramine","shroom","496"
"35486","NeuroChi","127014","MikePatton","mdma","485"
"2418","Phungushead","127014","MikePatton","mdma","485"
"1562","soer","127014","MikePatton","mdma","485"
"1868","Paderas","127014","MikePatton","mdma","485"
"63028","Smirnoff","127014","MikePatton","mdma","485"
"3732","Diphenhydramine","127014","MikePatton","mdma","485"
"4495","vhalin","127014","MikePatton","mdma","485"
"539","stndguy","127014","MikePatton","mdma","485"
"57101","Terrapinzflyer ","127014","MikePatton","mdma","485"
"2610","brainwaxd","127014","MikePatton","mdma","485"
"1","Alfa","127014","MikePatton","mdma","485"
"1842","nymphetamine","127014","MikePatton","mdma","485"
"4910","Fantasian","127014","MikePatton","mdma","485"
"657","distilla_truant","28015","riaahacker","dextromethorphan","479"
"657","distilla_truant","28015","riaahacker","dxm","479"
"657","distilla_truant","2418","Phungushead","dxm","479"
"539","stndguy","127014","MikePatton","shroom","472"
"2610","brainwaxd","127014","MikePatton","shroom","472"
"35486","NeuroChi","127014","MikePatton","tramadol","472"
"115136","trdofbeingtrd","127014","MikePatton","methadone","472"
"28015","riaahacker","127014","MikePatton","adderall","472"
"4495","vhalin","127014","MikePatton","shroom","472"
"35486","NeuroChi","127014","MikePatton","shroom","472"
"4495","vhalin","127014","MikePatton","adderall","472"
"63028","Smirnoff","127014","MikePatton","tramadol","472"
"1842","nymphetamine","127014","MikePatton","adderall","472"
"4495","vhalin","127014","MikePatton","tramadol","472"
"15","Sammi","127014","MikePatton","shroom","472"
"1842","nymphetamine","127014","MikePatton","shroom","472"
"1868","Paderas","127014","MikePatton","adderall","472"
"1","Alfa","127014","MikePatton","shroom","472"
"1842","nymphetamine","127014","MikePatton","methadone","472"
"127014","MikePatton","202594","headfull0fstars","methadone","472"
"115136","trdofbeingtrd","127014","MikePatton","adderall","472"
"35486","NeuroChi","127014","MikePatton","methadone","472"
"35486","NeuroChi","127014","MikePatton","adderall","472"
"1","Alfa","127014","MikePatton","tramadol","472"
"1868","Paderas","127014","MikePatton","shroom","472"
"46865","dyingtomorrow","127014","MikePatton","diphenhydramine","472"
"13189","augentier ","127014","MikePatton","diphenhydramine","472"
"2418","Phungushead","127014","MikePatton","methadone","472"
"1842","nymphetamine","127014","MikePatton","tramadol","472"
"6201","SkUnKaDeLiC","127014","MikePatton","methadone","472"
"63028","Smirnoff","127014","MikePatton","diphenhydramine","472"
"1868","Paderas","127014","MikePatton","datura","472"
"28015","riaahacker","127014","MikePatton","tramadol","472"
"71487","robotripper","127014","MikePatton","adderall","472"
"1562","soer","127014","MikePatton","shroom","472"
"4495","vhalin","127014","MikePatton","diphenhydramine","472"
"46865","dyingtomorrow","127014","MikePatton","methadone","472"
"1842","nymphetamine","127014","MikePatton","diphenhydramine","472"
"63028","Smirnoff","127014","MikePatton","shroom","472"
"28015","riaahacker","127014","MikePatton","methadone","472"
"45599","On The Nod","127014","MikePatton","methadone","472"
"63028","Smirnoff","127014","MikePatton","methadone","472"
"63028","Smirnoff","127014","MikePatton","adderall","472"
"38632","PilL FreaK","127014","MikePatton","tramadol","472"
"2418","Phungushead","127014","MikePatton","tramadol","472"
"3732","Diphenhydramine","127014","MikePatton","shroom","472"
"1808","xxgaretjaxx","127014","MikePatton","diphenhydramine","470"
"1808","xxgaretjaxx","63028","Smirnoff","xanax","470"
"1808","xxgaretjaxx","63028","Smirnoff","diphenhydramine","470"
"1808","xxgaretjaxx","127014","MikePatton","shroom","470"
"1562","soer","1808","xxgaretjaxx","shroom","470"
"1808","xxgaretjaxx","63028","Smirnoff","shroom","470"
"1808","xxgaretjaxx","28015","riaahacker","xanax","470"
"1808","xxgaretjaxx","1842","nymphetamine","diphenhydramine","470"
"1808","xxgaretjaxx","3732","Diphenhydramine","shroom","470"
"1808","xxgaretjaxx","1842","nymphetamine","xanax","470"
"1808","xxgaretjaxx","1842","nymphetamine","shroom","470"
"1808","xxgaretjaxx","2418","Phungushead","xanax","470"
"1808","xxgaretjaxx","1868","Paderas","datura","470"
"539","stndguy","1808","xxgaretjaxx","shroom","470"
"1808","xxgaretjaxx","4495","vhalin","xanax","470"
"1808","xxgaretjaxx","4495","vhalin","diphenhydramine","470"
"1808","xxgaretjaxx","6201","SkUnKaDeLiC","xanax","470"
"1808","xxgaretjaxx","13189","augentier ","diphenhydramine","470"
"1808","xxgaretjaxx","4495","vhalin","shroom","470"
"1808","xxgaretjaxx","1868","Paderas","shroom","470"
"1808","xxgaretjaxx","273439","marathonmel7","xanax","470"
"1808","xxgaretjaxx","46865","dyingtomorrow","diphenhydramine","470"
"1808","xxgaretjaxx","2610","brainwaxd","shroom","470"
"15","Sammi","1808","xxgaretjaxx","shroom","470"
"1808","xxgaretjaxx","35486","NeuroChi","xanax","470"
"1808","xxgaretjaxx","127014","MikePatton","datura","470"
"1","Alfa","1808","xxgaretjaxx","shroom","470"
"1808","xxgaretjaxx","35486","NeuroChi","shroom","470"
"4495","vhalin","45583","Synesthesiac","mephedrone","459"
"1","Alfa","45583","Synesthesiac","mephedrone","459"
"4092","trptamene ","45583","Synesthesiac","mephedrone","459"
"1842","nymphetamine","45583","Synesthesiac","mephedrone","459"
"45583","Synesthesiac","57101","Terrapinzflyer ","mephedrone","459"
"1868","Paderas","45583","Synesthesiac","mephedrone","459"
"28015","riaahacker","45583","Synesthesiac","mephedrone","459"
"8016","chillinwill","45583","Synesthesiac","mephedrone","459"
"2066","~lostgurl~ ","4495","vhalin","vicodin","455"
"2066","~lostgurl~ ","46865","dyingtomorrow","vicodin","455"
"2066","~lostgurl~ ","28015","riaahacker","vicodin","455"
"2066","~lostgurl~ ","35486","NeuroChi","vicodin","455"
"1842","nymphetamine","2066","~lostgurl~ ","vicodin","455"
"2066","~lostgurl~ ","4495","vhalin","shroom","454"
"2066","~lostgurl~ ","3732","Diphenhydramine","shroom","454"
"2066","~lostgurl~ ","35486","NeuroChi","shroom","454"
"15","Sammi","2066","~lostgurl~ ","shroom","454"
"1","Alfa","2066","~lostgurl~ ","shroom","454"
"2066","~lostgurl~ ","127014","MikePatton","shroom","454"
"2066","~lostgurl~ ","63028","Smirnoff","shroom","454"
"2066","~lostgurl~ ","2610","brainwaxd","shroom","454"
"1808","xxgaretjaxx","2066","~lostgurl~ ","shroom","454"
"1562","soer","2066","~lostgurl~ ","shroom","454"
"1842","nymphetamine","2066","~lostgurl~ ","shroom","454"
"1868","Paderas","2066","~lostgurl~ ","shroom","454"
"539","stndguy","2066","~lostgurl~ ","shroom","454"
"2610","brainwaxd","7303","pankreeas ","mdma","446"
"7303","pankreeas ","57101","Terrapinzflyer ","mdma","446"
"7303","pankreeas ","35486","NeuroChi","mdma","446"
"1","Alfa","7303","pankreeas ","mdma","446"
"1842","nymphetamine","7303","pankreeas ","mdma","446"
"4910","Fantasian","7303","pankreeas ","mdma","446"
"7303","pankreeas ","127014","MikePatton","mdma","446"
"2418","Phungushead","7303","pankreeas ","mdma","446"
"7303","pankreeas ","63028","Smirnoff","mdma","446"
"1562","soer","7303","pankreeas ","mdma","446"
"1868","Paderas","7303","pankreeas ","mdma","446"
"3732","Diphenhydramine","7303","pankreeas ","mdma","446"
"4495","vhalin","7303","pankreeas ","mdma","446"
"539","stndguy","7303","pankreeas ","mdma","446"
"2418","Phungushead","102824","natey7","methadone","441"
"6201","SkUnKaDeLiC","102824","natey7","methadone","441"
"46865","dyingtomorrow","102824","natey7","methadone","441"
"28015","riaahacker","102824","natey7","methadone","441"
"45599","On The Nod","102824","natey7","methadone","441"
"63028","Smirnoff","102824","natey7","methadone","441"
"102824","natey7","127014","MikePatton","methadone","441"
"102824","natey7","202594","headfull0fstars","methadone","441"
"1842","nymphetamine","102824","natey7","methadone","441"
"35486","NeuroChi","102824","natey7","methadone","441"
"102824","natey7","115136","trdofbeingtrd","methadone","441"
"45618","cannabis-sam","127014","MikePatton","methadone","438"
"1842","nymphetamine","45618","cannabis-sam","methadone","438"
"35486","NeuroChi","45618","cannabis-sam","methadone","438"
"45618","cannabis-sam","115136","trdofbeingtrd","methadone","438"
"45618","cannabis-sam","46865","dyingtomorrow","methadone","438"
"2418","Phungushead","45618","cannabis-sam","methadone","438"
"6201","SkUnKaDeLiC","45618","cannabis-sam","methadone","438"
"45618","cannabis-sam","102824","natey7","methadone","438"
"45599","On The Nod","45618","cannabis-sam","methadone","438"
"28015","riaahacker","45618","cannabis-sam","methadone","438"
"45618","cannabis-sam","63028","Smirnoff","methadone","438"
"45618","cannabis-sam","202594","headfull0fstars","methadone","438"
"7303","pankreeas ","54108","Alexander_Praves","mdma","437"
"1808","xxgaretjaxx","54108","Alexander_Praves","shroom","437"
"2418","Phungushead","54108","Alexander_Praves","mdma","437"
"1562","soer","54108","Alexander_Praves","shroom","437"
"1562","soer","54108","Alexander_Praves","mdma","437"
"54108","Alexander_Praves","63028","Smirnoff","shroom","437"
"1842","nymphetamine","54108","Alexander_Praves","shroom","437"
"1868","Paderas","54108","Alexander_Praves","mdma","437"
"54108","Alexander_Praves","127014","MikePatton","mdma","437"
"54108","Alexander_Praves","63028","Smirnoff","mdma","437"
"1868","Paderas","54108","Alexander_Praves","shroom","437"
"3732","Diphenhydramine","54108","Alexander_Praves","mdma","437"
"4495","vhalin","54108","Alexander_Praves","mdma","437"
"539","stndguy","54108","Alexander_Praves","mdma","437"
"539","stndguy","54108","Alexander_Praves","shroom","437"
"3732","Diphenhydramine","54108","Alexander_Praves","shroom","437"
"35486","NeuroChi","54108","Alexander_Praves","mdma","437"
"2610","brainwaxd","54108","Alexander_Praves","shroom","437"
"2610","brainwaxd","54108","Alexander_Praves","mdma","437"
"4495","vhalin","54108","Alexander_Praves","shroom","437"
"35486","NeuroChi","54108","Alexander_Praves","shroom","437"
"1","Alfa","54108","Alexander_Praves","mdma","437"
"54108","Alexander_Praves","127014","MikePatton","shroom","437"
"1842","nymphetamine","54108","Alexander_Praves","mdma","437"
"15","Sammi","54108","Alexander_Praves","shroom","437"
"1","Alfa","54108","Alexander_Praves","shroom","437"
"54108","Alexander_Praves","57101","Terrapinzflyer ","mdma","437"
"4910","Fantasian","54108","Alexander_Praves","mdma","437"
"2066","~lostgurl~ ","54108","Alexander_Praves","shroom","437"
"1842","nymphetamine","180313","out_there","oxycodone","430"
"2418","Phungushead","180313","out_there","oxycodone","430"
"46865","dyingtomorrow","180313","out_there","oxycodone","430"
"4495","vhalin","180313","out_there","oxycodone","430"
"180313","out_there","294051","Jungledog","oxycodone","430"
"63028","Smirnoff","180313","out_there","oxycodone","430"
"35486","NeuroChi","180313","out_there","oxycodone","430"
"207202","Nefret","273791","Roaddoggy","loperamide","429"
"207202","Nefret","294051","Jungledog","loperamide","429"
"15","Sammi","1752","Gurnie","salvia divinorum","429"
"1752","Gurnie","1842","nymphetamine","salvia divinorum","429"
"1595","Curtains","35486","NeuroChi","mdma","423"
"1","Alfa","1595","Curtains","mdma","423"
"1595","Curtains","54108","Alexander_Praves","mdma","423"
"1595","Curtains","127014","MikePatton","mdma","423"
"1595","Curtains","4910","Fantasian","mdma","423"
"1595","Curtains","63028","Smirnoff","mdma","423"
"1595","Curtains","3732","Diphenhydramine","mdma","423"
"1595","Curtains","1842","nymphetamine","mdma","423"
"1595","Curtains","2418","Phungushead","mdma","423"
"1562","soer","1595","Curtains","mdma","423"
"1595","Curtains","7303","pankreeas ","mdma","423"
"1595","Curtains","4495","vhalin","mdma","423"
"1595","Curtains","57101","Terrapinzflyer ","mdma","423"
"539","stndguy","1595","Curtains","mdma","423"
"1595","Curtains","1868","Paderas","mdma","423"
"1595","Curtains","2610","brainwaxd","mdma","423"
"1868","Paderas","7303","pankreeas ","morphine","418"
"1842","nymphetamine","7303","pankreeas ","morphine","418"
"7303","pankreeas ","28015","riaahacker","morphine","418"
"4495","vhalin","7303","pankreeas ","morphine","418"
"7303","pankreeas ","35486","NeuroChi","morphine","418"
"1","Alfa","7303","pankreeas ","morphine","418"
"7303","pankreeas ","63028","Smirnoff","morphine","418"
"7303","pankreeas ","46865","dyingtomorrow","morphine","418"
"2418","Phungushead","7303","pankreeas ","morphine","418"
"1842","nymphetamine","16700","beena","fentanyl","418"
"1329","khonsu13","7303","pankreeas ","morphine","418"
"16700","beena","35486","NeuroChi","fentanyl","418"
"1526","Cuberun ","1842","nymphetamine","mephedrone","413"
"1526","Cuberun ","45583","Synesthesiac","mephedrone","413"
"1526","Cuberun ","1868","Paderas","mephedrone","413"
"1526","Cuberun ","57101","Terrapinzflyer ","mephedrone","413"
"1526","Cuberun ","8016","chillinwill","mephedrone","413"
"1","Alfa","1526","Cuberun ","mephedrone","413"
"1526","Cuberun ","4495","vhalin","mephedrone","413"
"1526","Cuberun ","4092","trptamene ","mephedrone","413"
"1526","Cuberun ","28015","riaahacker","mephedrone","413"
"7303","pankreeas ","13189","augentier ","diphenhydramine","412"
"7303","pankreeas ","127014","MikePatton","datura","412"
"1868","Paderas","7303","pankreeas ","datura","412"
"7303","pankreeas ","63028","Smirnoff","oxycodone","412"
"7303","pankreeas ","63028","Smirnoff","oxycontin","412"
"56","Hollywood ","4495","vhalin","alprazolam","412"
"4495","vhalin","7303","pankreeas ","diphenhydramine","412"
"56","Hollywood ","6201","SkUnKaDeLiC","alprazolam","412"
"7303","pankreeas ","46865","dyingtomorrow","oxycodone","412"
"7303","pankreeas ","46865","dyingtomorrow","oxycontin","412"
"1808","xxgaretjaxx","7303","pankreeas ","datura","412"
"1842","nymphetamine","7303","pankreeas ","diphenhydramine","412"
"1842","nymphetamine","7303","pankreeas ","oxycontin","412"
"1842","nymphetamine","7303","pankreeas ","oxycodone","412"
"7303","pankreeas ","63028","Smirnoff","diphenhydramine","412"
"1808","xxgaretjaxx","7303","pankreeas ","diphenhydramine","412"
"7303","pankreeas ","46865","dyingtomorrow","diphenhydramine","412"
"7303","pankreeas ","180313","out_there","oxycodone","412"
"2418","Phungushead","7303","pankreeas ","oxycodone","412"
"56","Hollywood ","63028","Smirnoff","alprazolam","412"
"7303","pankreeas ","294051","Jungledog","oxycodone","412"
"7303","pankreeas ","28015","riaahacker","oxycontin","412"
"56","Hollywood ","28015","riaahacker","alprazolam","412"
"7303","pankreeas ","35486","NeuroChi","oxycodone","412"
"4495","vhalin","7303","pankreeas ","oxycodone","412"
"4495","vhalin","7303","pankreeas ","oxycontin","412"
"7303","pankreeas ","127014","MikePatton","diphenhydramine","412"
"1","Alfa","4495","vhalin","adderall","404"
"1","Alfa","1868","Paderas","adderall","404"
"1","Alfa","28015","riaahacker","adderall","404"
"1","Alfa","71487","robotripper","adderall","404"
"1","Alfa","127014","MikePatton","adderall","404"
"1","Alfa","63028","Smirnoff","adderall","404"
"1","Alfa","115136","trdofbeingtrd","adderall","404"
"1","Alfa","1842","nymphetamine","adderall","404"
"1","Alfa","35486","NeuroChi","adderall","404"
"28015","riaahacker","61180","Helene ","codeine","403"
"35486","NeuroChi","61180","Helene ","codeine","403"
"1842","nymphetamine","61180","Helene ","codeine","403"
"4495","vhalin","61180","Helene ","codeine","403"
"61180","Helene ","63028","Smirnoff","codeine","403"
"45618","cannabis-sam","194301","rosielee","methadone","402"
"45599","On The Nod","194301","rosielee","methadone","402"
"28015","riaahacker","194301","rosielee","methadone","402"
"194301","rosielee","202594","headfull0fstars","methadone","402"
"115136","trdofbeingtrd","194301","rosielee","methadone","402"
"46865","dyingtomorrow","194301","rosielee","methadone","402"
"1842","nymphetamine","194301","rosielee","methadone","402"
"35486","NeuroChi","194301","rosielee","methadone","402"
"127014","MikePatton","194301","rosielee","methadone","402"
"63028","Smirnoff","194301","rosielee","methadone","402"
"102824","natey7","194301","rosielee","methadone","402"
"2418","Phungushead","194301","rosielee","methadone","402"
"6201","SkUnKaDeLiC","194301","rosielee","methadone","402"
"3345","Unsolved","4495","vhalin","mdma","397"
"3345","Unsolved","57101","Terrapinzflyer ","mdma","397"
"2610","brainwaxd","3345","Unsolved","mdma","397"
"1562","soer","3345","Unsolved","mdma","397"
"3345","Unsolved","3732","Diphenhydramine","mdma","397"
"1842","nymphetamine","3345","Unsolved","mdma","397"
"539","stndguy","3345","Unsolved","mdma","397"
"3345","Unsolved","54108","Alexander_Praves","mdma","397"
"3345","Unsolved","127014","MikePatton","mdma","397"
"3345","Unsolved","4910","Fantasian","mdma","397"
"2418","Phungushead","3345","Unsolved","mdma","397"
"3345","Unsolved","63028","Smirnoff","mdma","397"
"1","Alfa","3345","Unsolved","mdma","397"
"3345","Unsolved","35486","NeuroChi","mdma","397"
"1595","Curtains","3345","Unsolved","mdma","397"
"1868","Paderas","3345","Unsolved","mdma","397"
"3345","Unsolved","7303","pankreeas ","mdma","397"
"1808","xxgaretjaxx","202594","headfull0fstars","diphenhydramine","392"
"63028","Smirnoff","202594","headfull0fstars","diphenhydramine","392"
"7303","pankreeas ","202594","headfull0fstars","diphenhydramine","392"
"4495","vhalin","202594","headfull0fstars","diphenhydramine","392"
"1842","nymphetamine","202594","headfull0fstars","diphenhydramine","392"
"127014","MikePatton","202594","headfull0fstars","diphenhydramine","392"
"46865","dyingtomorrow","202594","headfull0fstars","diphenhydramine","392"
"13189","augentier ","202594","headfull0fstars","diphenhydramine","392"
"56","Hollywood ","35486","NeuroChi","codeine","391"
"56","Hollywood ","63028","Smirnoff","diazepam","391"
"56","Hollywood ","4495","vhalin","mdma","391"
"56","Hollywood ","1842","nymphetamine","oxycodone","391"
"56","Hollywood ","35486","NeuroChi","adderall","391"
"56","Hollywood ","1842","nymphetamine","valium","391"
"56","Hollywood ","28015","riaahacker","diazepam","391"
"1","Alfa","56","Hollywood ","mdma","391"
"56","Hollywood ","127014","MikePatton","tramadol","391"
"56","Hollywood ","57101","Terrapinzflyer ","mdma","391"
"56","Hollywood ","35486","NeuroChi","oxycodone","391"
"56","Hollywood ","7303","pankreeas ","morphine","391"
"1","Alfa","56","Hollywood ","adderall","391"
"56","Hollywood ","2418","Phungushead","valium","391"
"56","Hollywood ","16700","beena","fentanyl","391"
"56","Hollywood ","63028","Smirnoff","tramadol","391"
"56","Hollywood ","63028","Smirnoff","mdma","391"
"56","Hollywood ","1808","xxgaretjaxx","xanax","391"
"56","Hollywood ","63028","Smirnoff","morphine","391"
"56","Hollywood ","35486","NeuroChi","fentanyl","391"
"56","Hollywood ","38632","PilL FreaK","tramadol","391"
"56","Hollywood ","3732","Diphenhydramine","mdma","391"
"56","Hollywood ","63028","Smirnoff","xanax","391"
"56","Hollywood ","1329","khonsu13","morphine","391"
"56","Hollywood ","4495","vhalin","nitrous oxide","391"
"56","Hollywood ","7303","pankreeas ","oxycontin","391"
"56","Hollywood ","2418","Phungushead","tramadol","391"
"56","Hollywood ","2610","brainwaxd","mdma","391"
"56","Hollywood ","28015","riaahacker","xanax","391"
"56","Hollywood ","1842","nymphetamine","morphine","391"
"56","Hollywood ","28015","riaahacker","hydrocodone","391"
"56","Hollywood ","1842","nymphetamine","nitrous oxide","391"
"56","Hollywood ","63028","Smirnoff","oxycontin","391"
"56","Hollywood ","4495","vhalin","adderall","391"
"56","Hollywood ","35486","NeuroChi","mdma","391"
"56","Hollywood ","3345","Unsolved","mdma","391"
"56","Hollywood ","1842","nymphetamine","xanax","391"
"56","Hollywood ","61180","Helene ","codeine","391"
"56","Hollywood ","35486","NeuroChi","morphine","391"
"56","Hollywood ","35486","NeuroChi","hydrocodone","391"
"56","Hollywood ","202594","headfull0fstars","clonazepam","391"
"56","Hollywood ","7303","pankreeas ","oxycodone","391"
"56","Hollywood ","1842","nymphetamine","oxycontin","391"
"56","Hollywood ","1868","Paderas","adderall","391"
"56","Hollywood ","2418","Phungushead","xanax","391"
"56","Hollywood ","63028","Smirnoff","codeine","391"
"56","Hollywood ","54108","Alexander_Praves","mdma","391"
"56","Hollywood ","6201","SkUnKaDeLiC","clonazepam","391"
"56","Hollywood ","4495","vhalin","oxycodone","391"
"56","Hollywood ","28015","riaahacker","adderall","391"
"56","Hollywood ","4495","vhalin","valium","391"
"56","Hollywood ","1842","nymphetamine","codeine","391"
"56","Hollywood ","4495","vhalin","diazepam","391"
"56","Hollywood ","127014","MikePatton","mdma","391"
"56","Hollywood ","294051","Jungledog","oxycodone","391"
"56","Hollywood ","71487","robotripper","adderall","391"
"56","Hollywood ","6201","SkUnKaDeLiC","valium","391"
"56","Hollywood ","6201","SkUnKaDeLiC","diazepam","391"
"56","Hollywood ","4910","Fantasian","mdma","391"
"56","Hollywood ","46865","dyingtomorrow","oxycodone","391"
"56","Hollywood ","46865","dyingtomorrow","valium","391"
"56","Hollywood ","1842","nymphetamine","diazepam","391"
"56","Hollywood ","4495","vhalin","tramadol","391"
"56","Hollywood ","539","stndguy","mdma","391"
"56","Hollywood ","2418","Phungushead","oxycodone","391"
"56","Hollywood ","4495","vhalin","morphine","391"
"56","Hollywood ","1842","nymphetamine","fentanyl","391"
"56","Hollywood ","28015","riaahacker","tramadol","391"
"56","Hollywood ","1868","Paderas","mdma","391"
"56","Hollywood ","4495","vhalin","xanax","391"
"56","Hollywood ","1868","Paderas","morphine","391"
"56","Hollywood ","1842","nymphetamine","tramadol","391"
"56","Hollywood ","1562","soer","mdma","391"
"56","Hollywood ","6201","SkUnKaDeLiC","xanax","391"
"56","Hollywood ","28015","riaahacker","morphine","391"
"56","Hollywood ","4495","vhalin","hydrocodone","391"
"56","Hollywood ","28015","riaahacker","nitrous oxide","391"
"56","Hollywood ","4495","vhalin","oxycontin","391"
"56","Hollywood ","35486","NeuroChi","tramadol","391"
"56","Hollywood ","127014","MikePatton","adderall","391"
"56","Hollywood ","1842","nymphetamine","mdma","391"
"56","Hollywood ","273439","marathonmel7","xanax","391"
"56","Hollywood ","46865","dyingtomorrow","morphine","391"
"56","Hollywood ","1842","nymphetamine","hydrocodone","391"
"56","Hollywood ","28015","riaahacker","oxycontin","391"
"56","Hollywood ","63028","Smirnoff","adderall","391"
"56","Hollywood ","2418","Phungushead","mdma","391"
"56","Hollywood ","1595","Curtains","mdma","391"
"56","Hollywood ","35486","NeuroChi","xanax","391"
"56","Hollywood ","4495","vhalin","codeine","391"
"56","Hollywood ","2418","Phungushead","morphine","391"
"1","Alfa","56","Hollywood ","morphine","391"
"56","Hollywood ","63028","Smirnoff","clonazepam","391"
"56","Hollywood ","180313","out_there","oxycodone","391"
"56","Hollywood ","46865","dyingtomorrow","oxycontin","391"
"1","Alfa","56","Hollywood ","tramadol","391"
"56","Hollywood ","115136","trdofbeingtrd","adderall","391"
"56","Hollywood ","28015","riaahacker","codeine","391"
"56","Hollywood ","7303","pankreeas ","mdma","391"
"56","Hollywood ","2418","Phungushead","clonazepam","391"
"56","Hollywood ","63028","Smirnoff","oxycodone","391"
"56","Hollywood ","1842","nymphetamine","adderall","391"
"56","Hollywood ","63028","Smirnoff","valium","391"
"4264","will","35486","NeuroChi","fentanyl","384"
"1842","nymphetamine","4264","will","fentanyl","384"
"56","Hollywood ","4264","will","fentanyl","384"
"4264","will","16700","beena","fentanyl","384"
"1","Alfa","46865","dyingtomorrow","valium","380"
"1","Alfa","56","Hollywood ","valium","380"
"1","Alfa","63028","Smirnoff","valium","380"
"1","Alfa","1842","nymphetamine","valium","380"
"1","Alfa","2418","Phungushead","valium","380"
"1","Alfa","4495","vhalin","valium","380"
"1","Alfa","6201","SkUnKaDeLiC","valium","380"
"1595","Curtains","35486","NeuroChi","shroom","376"
"539","stndguy","1595","Curtains","psilocybin","376"
"1595","Curtains","127014","MikePatton","methadone","376"
"1595","Curtains","45599","On The Nod","methadone","376"
"1595","Curtains","6201","SkUnKaDeLiC","methadone","376"
"15","Sammi","1595","Curtains","shroom","376"
"1595","Curtains","2066","~lostgurl~ ","shroom","376"
"1595","Curtains","28015","riaahacker","methadone","376"
"1","Alfa","1595","Curtains","shroom","376"
"1595","Curtains","1868","Paderas","psilocybin","376"
"1595","Curtains","127014","MikePatton","shroom","376"
"1595","Curtains","4495","vhalin","vicodin","376"
"1595","Curtains","46865","dyingtomorrow","methadone","376"
"1595","Curtains","63028","Smirnoff","shroom","376"
"1595","Curtains","1842","nymphetamine","vicodin","376"
"1595","Curtains","2418","Phungushead","methadone","376"
"1595","Curtains","3732","Diphenhydramine","shroom","376"
"1595","Curtains","35486","NeuroChi","vicodin","376"
"1595","Curtains","194301","rosielee","methadone","376"
"1595","Curtains","1842","nymphetamine","shroom","376"
"1595","Curtains","102824","natey7","methadone","376"
"1595","Curtains","63028","Smirnoff","methadone","376"
"1562","soer","1595","Curtains","shroom","376"
"1595","Curtains","115136","trdofbeingtrd","methadone","376"
"1595","Curtains","54108","Alexander_Praves","shroom","376"
"1595","Curtains","202594","headfull0fstars","methadone","376"
"1595","Curtains","4495","vhalin","psilocybin","376"
"1595","Curtains","1808","xxgaretjaxx","shroom","376"
"1595","Curtains","2066","~lostgurl~ ","vicodin","376"
"1595","Curtains","1842","nymphetamine","methadone","376"
"1595","Curtains","4495","vhalin","shroom","376"
"1595","Curtains","28015","riaahacker","vicodin","376"
"1595","Curtains","35486","NeuroChi","methadone","376"
"1595","Curtains","1868","Paderas","shroom","376"
"1595","Curtains","46865","dyingtomorrow","vicodin","376"
"539","stndguy","1595","Curtains","shroom","376"
"1595","Curtains","2610","brainwaxd","shroom","376"
"1595","Curtains","45618","cannabis-sam","methadone","376"
"1213","Psilocybe S.","35486","NeuroChi","xanax","375"
"71487","robotripper","202594","headfull0fstars","adderall","375"
"56","Hollywood ","202594","headfull0fstars","adderall","375"
"1213","Psilocybe S.","1808","xxgaretjaxx","xanax","375"
"1213","Psilocybe S.","63028","Smirnoff","xanax","375"
"63028","Smirnoff","202594","headfull0fstars","adderall","375"
"1213","Psilocybe S.","28015","riaahacker","xanax","375"
"1213","Psilocybe S.","1842","nymphetamine","xanax","375"
"1213","Psilocybe S.","2418","Phungushead","xanax","375"
"1","Alfa","202594","headfull0fstars","adderall","375"
"56","Hollywood ","1213","Psilocybe S.","xanax","375"
"28015","riaahacker","202594","headfull0fstars","adderall","375"
"4495","vhalin","202594","headfull0fstars","adderall","375"
"1842","nymphetamine","202594","headfull0fstars","adderall","375"
"1868","Paderas","202594","headfull0fstars","adderall","375"
"1213","Psilocybe S.","4495","vhalin","xanax","375"
"115136","trdofbeingtrd","202594","headfull0fstars","adderall","375"
"35486","NeuroChi","202594","headfull0fstars","adderall","375"
"1213","Psilocybe S.","6201","SkUnKaDeLiC","xanax","375"
"127014","MikePatton","202594","headfull0fstars","adderall","375"
"1213","Psilocybe S.","273439","marathonmel7","xanax","375"
"2418","Phungushead","202594","headfull0fstars","dxm","357"
"28015","riaahacker","202594","headfull0fstars","dxm","357"
"657","distilla_truant","202594","headfull0fstars","dxm","357"
"156304","PillMan","294051","Jungledog","oxycodone","354"
"7303","pankreeas ","156304","PillMan","oxycodone","354"
"2418","Phungushead","156304","PillMan","oxycodone","354"
"63028","Smirnoff","156304","PillMan","oxycodone","354"
"35486","NeuroChi","156304","PillMan","oxycodone","354"
"4495","vhalin","156304","PillMan","oxycodone","354"
"156304","PillMan","180313","out_there","oxycodone","354"
"46865","dyingtomorrow","156304","PillMan","oxycodone","354"
"56","Hollywood ","156304","PillMan","oxycodone","354"
"1842","nymphetamine","156304","PillMan","oxycodone","354"
"1239","Nicaine","127014","MikePatton","kratom","349"
"1239","Nicaine","4495","vhalin","kratom","349"
"1","Alfa","1239","Nicaine","kratom","349"
"1239","Nicaine","28015","riaahacker","kratom","349"
"1239","Nicaine","294051","Jungledog","kratom","349"
"1239","Nicaine","35486","NeuroChi","kratom","349"
"1239","Nicaine","13344","drewcil","kratom","349"
"1239","Nicaine","273791","Roaddoggy","kratom","349"
"1239","Nicaine","273439","marathonmel7","kratom","349"
"1239","Nicaine","1842","nymphetamine","kratom","349"
"1239","Nicaine","2418","Phungushead","kratom","349"
"45599","On The Nod","63028","Smirnoff","morphine","345"
"4495","vhalin","45599","On The Nod","codeine","345"
"7303","pankreeas ","45599","On The Nod","morphine","345"
"28015","riaahacker","45599","On The Nod","morphine","345"
"2418","Phungushead","45599","On The Nod","morphine","345"
"1","Alfa","45599","On The Nod","morphine","345"
"1329","khonsu13","45599","On The Nod","morphine","345"
"45599","On The Nod","63028","Smirnoff","codeine","345"
"1868","Paderas","45599","On The Nod","morphine","345"
"45599","On The Nod","46865","dyingtomorrow","morphine","345"
"28015","riaahacker","45599","On The Nod","codeine","345"
"56","Hollywood ","45599","On The Nod","morphine","345"
"1842","nymphetamine","45599","On The Nod","morphine","345"
"35486","NeuroChi","45599","On The Nod","morphine","345"
"4495","vhalin","45599","On The Nod","morphine","345"
"56","Hollywood ","45599","On The Nod","codeine","345"
"35486","NeuroChi","45599","On The Nod","codeine","345"
"1842","nymphetamine","45599","On The Nod","codeine","345"
"45599","On The Nod","61180","Helene ","codeine","345"
"6201","SkUnKaDeLiC","180313","out_there","nitrazepam","341"
"13189","augentier ","40688","69Ron","nutmeg","339"
"57101","Terrapinzflyer ","59051","Priapism9","mdma","337"
"2418","Phungushead","59051","Priapism9","mdma","337"
"59051","Priapism9","63028","Smirnoff","mdma","337"
"1595","Curtains","59051","Priapism9","mdma","337"
"1868","Paderas","59051","Priapism9","mdma","337"
"4910","Fantasian","59051","Priapism9","mdma","337"
"2610","brainwaxd","59051","Priapism9","mdma","337"
"7303","pankreeas ","59051","Priapism9","mdma","337"
"1","Alfa","59051","Priapism9","mdma","337"
"59051","Priapism9","127014","MikePatton","mdma","337"
"1562","soer","59051","Priapism9","mdma","337"
"1842","nymphetamine","59051","Priapism9","mdma","337"
"54108","Alexander_Praves","59051","Priapism9","mdma","337"
"56","Hollywood ","59051","Priapism9","mdma","337"
"539","stndguy","59051","Priapism9","mdma","337"
"3345","Unsolved","59051","Priapism9","mdma","337"
"3732","Diphenhydramine","59051","Priapism9","mdma","337"
"4495","vhalin","59051","Priapism9","mdma","337"
"35486","NeuroChi","59051","Priapism9","mdma","337"
"28015","riaahacker","100767","missinglfe","codeine","335"
"61180","Helene ","100767","missinglfe","codeine","335"
"46865","dyingtomorrow","100767","missinglfe","methadone","335"
"1842","nymphetamine","100767","missinglfe","methadone","335"
"35486","NeuroChi","100767","missinglfe","methadone","335"
"56","Hollywood ","100767","missinglfe","codeine","335"
"63028","Smirnoff","100767","missinglfe","methadone","335"
"35486","NeuroChi","100767","missinglfe","codeine","335"
"100767","missinglfe","194301","rosielee","methadone","335"
"1842","nymphetamine","100767","missinglfe","codeine","335"
"45599","On The Nod","100767","missinglfe","codeine","335"
"2418","Phungushead","100767","missinglfe","methadone","335"
"6201","SkUnKaDeLiC","100767","missinglfe","methadone","335"
"100767","missinglfe","127014","MikePatton","methadone","335"
"100767","missinglfe","202594","headfull0fstars","methadone","335"
"4495","vhalin","100767","missinglfe","codeine","335"
"45618","cannabis-sam","100767","missinglfe","methadone","335"
"45599","On The Nod","100767","missinglfe","methadone","335"
"28015","riaahacker","100767","missinglfe","methadone","335"
"1595","Curtains","100767","missinglfe","methadone","335"
"100767","missinglfe","102824","natey7","methadone","335"
"100767","missinglfe","115136","trdofbeingtrd","methadone","335"
"63028","Smirnoff","100767","missinglfe","codeine","335"
"1","Alfa","1213","Psilocybe S.","xanax","333"
"1","Alfa","1806","betty_bupe","mdma","333"
"1806","betty_bupe","54108","Alexander_Praves","mdma","333"
"1562","soer","1806","betty_bupe","mdma","333"
"1","Alfa","1808","xxgaretjaxx","xanax","333"
"1562","soer","1806","betty_bupe","shroom","333"
"1806","betty_bupe","54108","Alexander_Praves","shroom","333"
"1806","betty_bupe","127014","MikePatton","mdma","333"
"1","Alfa","63028","Smirnoff","xanax","333"
"1806","betty_bupe","1808","xxgaretjaxx","shroom","333"
"1806","betty_bupe","4910","Fantasian","mdma","333"
"1595","Curtains","1806","betty_bupe","shroom","333"
"1","Alfa","56","Hollywood ","alprazolam","333"
"1","Alfa","28015","riaahacker","xanax","333"
"1806","betty_bupe","4495","vhalin","shroom","333"
"1806","betty_bupe","63028","Smirnoff","mdma","333"
"1","Alfa","63028","Smirnoff","alprazolam","333"
"1806","betty_bupe","1868","Paderas","shroom","333"
"1","Alfa","1842","nymphetamine","xanax","333"
"1806","betty_bupe","3732","Diphenhydramine","mdma","333"
"56","Hollywood ","1806","betty_bupe","mdma","333"
"539","stndguy","1806","betty_bupe","mdma","333"
"1","Alfa","28015","riaahacker","alprazolam","333"
"1806","betty_bupe","2610","brainwaxd","shroom","333"
"1","Alfa","2418","Phungushead","xanax","333"
"1806","betty_bupe","1842","nymphetamine","mdma","333"
"539","stndguy","1806","betty_bupe","shroom","333"
"1806","betty_bupe","35486","NeuroChi","shroom","333"
"1806","betty_bupe","2418","Phungushead","mdma","333"
"1806","betty_bupe","3345","Unsolved","mdma","333"
"1","Alfa","56","Hollywood ","xanax","333"
"1806","betty_bupe","7303","pankreeas ","mdma","333"
"1","Alfa","4495","vhalin","xanax","333"
"1806","betty_bupe","2066","~lostgurl~ ","shroom","333"
"1595","Curtains","1806","betty_bupe","mdma","333"
"1806","betty_bupe","4495","vhalin","mdma","333"
"1","Alfa","6201","SkUnKaDeLiC","xanax","333"
"1806","betty_bupe","127014","MikePatton","shroom","333"
"15","Sammi","1806","betty_bupe","shroom","333"
"1806","betty_bupe","57101","Terrapinzflyer ","mdma","333"
"1","Alfa","4495","vhalin","alprazolam","333"
"1","Alfa","1806","betty_bupe","shroom","333"
"1806","betty_bupe","63028","Smirnoff","shroom","333"
"1","Alfa","273439","marathonmel7","xanax","333"
"1806","betty_bupe","1868","Paderas","mdma","333"
"1","Alfa","6201","SkUnKaDeLiC","alprazolam","333"
"1806","betty_bupe","3732","Diphenhydramine","shroom","333"
"1","Alfa","35486","NeuroChi","xanax","333"
"1806","betty_bupe","2610","brainwaxd","mdma","333"
"1806","betty_bupe","1842","nymphetamine","shroom","333"
"1806","betty_bupe","35486","NeuroChi","mdma","333"
"1806","betty_bupe","59051","Priapism9","mdma","333"
"8671","Richard_smoker","28015","riaahacker","dxm","332"
"657","distilla_truant","8671","Richard_smoker","dxm","332"
"8671","Richard_smoker","202594","headfull0fstars","dxm","332"
"2418","Phungushead","8671","Richard_smoker","dxm","332"
"8671","Richard_smoker","28015","riaahacker","dextromethorphan","332"
"657","distilla_truant","8671","Richard_smoker","dextromethorphan","332"
"2610","brainwaxd","6052","KomodoMK","mdma","322"
"6052","KomodoMK","59051","Priapism9","mdma","322"
"1595","Curtains","6052","KomodoMK","mdma","322"
"1842","nymphetamine","6052","KomodoMK","mdma","322"
"6052","KomodoMK","7303","pankreeas ","mdma","322"
"6052","KomodoMK","57101","Terrapinzflyer ","mdma","322"
"6052","KomodoMK","35486","NeuroChi","mdma","322"
"3345","Unsolved","6052","KomodoMK","mdma","322"
"3732","Diphenhydramine","6052","KomodoMK","mdma","322"
"4495","vhalin","6052","KomodoMK","mdma","322"
"1806","betty_bupe","6052","KomodoMK","mdma","322"
"1","Alfa","6052","KomodoMK","mdma","322"
"1562","soer","6052","KomodoMK","mdma","322"
"2418","Phungushead","6052","KomodoMK","mdma","322"
"6052","KomodoMK","54108","Alexander_Praves","mdma","322"
"6052","KomodoMK","127014","MikePatton","mdma","322"
"1868","Paderas","6052","KomodoMK","mdma","322"
"6052","KomodoMK","63028","Smirnoff","mdma","322"
"56","Hollywood ","6052","KomodoMK","mdma","322"
"539","stndguy","6052","KomodoMK","mdma","322"
"4910","Fantasian","6052","KomodoMK","mdma","322"
"7303","pankreeas ","45618","cannabis-sam","mdma","319"
"1868","Paderas","45618","cannabis-sam","mdma","319"
"56","Hollywood ","45618","cannabis-sam","mdma","319"
"539","stndguy","45618","cannabis-sam","mdma","319"
"45618","cannabis-sam","59051","Priapism9","mdma","319"
"4910","Fantasian","45618","cannabis-sam","mdma","319"
"45618","cannabis-sam","127014","MikePatton","mdma","319"
"45618","cannabis-sam","63028","Smirnoff","mdma","319"
"35486","NeuroChi","45618","cannabis-sam","mdma","319"
"2610","brainwaxd","45618","cannabis-sam","mdma","319"
"6052","KomodoMK","45618","cannabis-sam","mdma","319"
"1595","Curtains","45618","cannabis-sam","mdma","319"
"1842","nymphetamine","45618","cannabis-sam","mdma","319"
"45618","cannabis-sam","54108","Alexander_Praves","mdma","319"
"3345","Unsolved","45618","cannabis-sam","mdma","319"
"3732","Diphenhydramine","45618","cannabis-sam","mdma","319"
"4495","vhalin","45618","cannabis-sam","mdma","319"
"45618","cannabis-sam","57101","Terrapinzflyer ","mdma","319"
"1806","betty_bupe","45618","cannabis-sam","mdma","319"
"1","Alfa","45618","cannabis-sam","mdma","319"
"2418","Phungushead","45618","cannabis-sam","mdma","319"
"1562","soer","45618","cannabis-sam","mdma","319"
"115136","trdofbeingtrd","181260","Kitts","methadone","316"
"181260","Kitts","194301","rosielee","methadone","316"
"45618","cannabis-sam","181260","Kitts","methadone","316"
"45599","On The Nod","181260","Kitts","methadone","316"
"28015","riaahacker","181260","Kitts","methadone","316"
"127014","MikePatton","181260","Kitts","methadone","316"
"102824","natey7","181260","Kitts","methadone","316"
"1595","Curtains","181260","Kitts","methadone","316"
"181260","Kitts","202594","headfull0fstars","methadone","316"
"46865","dyingtomorrow","181260","Kitts","methadone","316"
"1842","nymphetamine","181260","Kitts","methadone","316"
"35486","NeuroChi","181260","Kitts","methadone","316"
"63028","Smirnoff","181260","Kitts","methadone","316"
"100767","missinglfe","181260","Kitts","methadone","316"
"2418","Phungushead","181260","Kitts","methadone","316"
"6201","SkUnKaDeLiC","181260","Kitts","methadone","316"
"35486","NeuroChi","45618","cannabis-sam","xanax","314"
"1842","nymphetamine","45618","cannabis-sam","tramadol","314"
"1","Alfa","45618","cannabis-sam","adderall","314"
"1842","nymphetamine","45618","cannabis-sam","xanax","314"
"4495","vhalin","45618","cannabis-sam","xanax","314"
"1808","xxgaretjaxx","45618","cannabis-sam","xanax","314"
"56","Hollywood ","45618","cannabis-sam","xanax","314"
"28015","riaahacker","45618","cannabis-sam","adderall","314"
"4495","vhalin","45618","cannabis-sam","shroom","314"
"35486","NeuroChi","45618","cannabis-sam","shroom","314"
"4495","vhalin","45618","cannabis-sam","adderall","314"
"45618","cannabis-sam","127014","MikePatton","adderall","314"
"15","Sammi","45618","cannabis-sam","shroom","314"
"28015","riaahacker","45618","cannabis-sam","tramadol","314"
"1","Alfa","45618","cannabis-sam","shroom","314"
"45618","cannabis-sam","115136","trdofbeingtrd","adderall","314"
"1842","nymphetamine","45618","cannabis-sam","hydrocodone","314"
"1842","nymphetamine","45618","cannabis-sam","adderall","314"
"56","Hollywood ","45618","cannabis-sam","hydrocodone","314"
"1","Alfa","1595","Curtains","psilocybin","314"
"4495","vhalin","45618","cannabis-sam","valium","314"
"45618","cannabis-sam","63028","Smirnoff","tramadol","314"
"1868","Paderas","45618","cannabis-sam","adderall","314"
"45618","cannabis-sam","273439","marathonmel7","xanax","314"
"13189","augentier ","45618","cannabis-sam","nutmeg","314"
"45618","cannabis-sam","54108","Alexander_Praves","shroom","314"
"28015","riaahacker","45618","cannabis-sam","hydrocodone","314"
"1","Alfa","539","stndguy","psilocybin","314"
"2418","Phungushead","45618","cannabis-sam","xanax","314"
"1806","betty_bupe","6201","SkUnKaDeLiC","midazolam","314"
"35486","NeuroChi","45618","cannabis-sam","adderall","314"
"1","Alfa","45618","cannabis-sam","tramadol","314"
"45618","cannabis-sam","63028","Smirnoff","shroom","314"
"35486","NeuroChi","45618","cannabis-sam","hydrocodone","314"
"38632","PilL FreaK","45618","cannabis-sam","tramadol","314"
"4495","vhalin","45618","cannabis-sam","hydrocodone","314"
"2418","Phungushead","45618","cannabis-sam","tramadol","314"
"45618","cannabis-sam","63028","Smirnoff","valium","314"
"2066","~lostgurl~ ","45618","cannabis-sam","shroom","314"
"1","Alfa","45618","cannabis-sam","xanax","314"
"1842","nymphetamine","45618","cannabis-sam","valium","314"
"1562","soer","45618","cannabis-sam","shroom","314"
"56","Hollywood ","45618","cannabis-sam","tramadol","314"
"1806","betty_bupe","45618","cannabis-sam","shroom","314"
"35486","NeuroChi","45618","cannabis-sam","tramadol","314"
"1808","xxgaretjaxx","45618","cannabis-sam","shroom","314"
"45618","cannabis-sam","202594","headfull0fstars","adderall","314"
"40688","69Ron","45618","cannabis-sam","nutmeg","314"
"1595","Curtains","45618","cannabis-sam","shroom","314"
"45618","cannabis-sam","63028","Smirnoff","adderall","314"
"28015","riaahacker","45618","cannabis-sam","xanax","314"
"1842","nymphetamine","45618","cannabis-sam","shroom","314"
"45618","cannabis-sam","71487","robotripper","adderall","314"
"45618","cannabis-sam","127014","MikePatton","tramadol","314"
"56","Hollywood ","45618","cannabis-sam","adderall","314"
"4495","vhalin","45618","cannabis-sam","tramadol","314"
"45618","cannabis-sam","63028","Smirnoff","xanax","314"
"1","Alfa","4495","vhalin","psilocybin","314"
"1213","Psilocybe S.","45618","cannabis-sam","xanax","314"
"6201","SkUnKaDeLiC","45618","cannabis-sam","valium","314"
"539","stndguy","45618","cannabis-sam","shroom","314"
"1","Alfa","45618","cannabis-sam","valium","314"
"45618","cannabis-sam","127014","MikePatton","shroom","314"
"1868","Paderas","45618","cannabis-sam","shroom","314"
"1","Alfa","1868","Paderas","psilocybin","314"
"2418","Phungushead","45618","cannabis-sam","valium","314"
"56","Hollywood ","45618","cannabis-sam","valium","314"
"6201","SkUnKaDeLiC","45618","cannabis-sam","xanax","314"
"45618","cannabis-sam","46865","dyingtomorrow","valium","314"
"3732","Diphenhydramine","45618","cannabis-sam","shroom","314"
"2610","brainwaxd","45618","cannabis-sam","shroom","314"
"1","Alfa","28015","riaahacker","diazepam","309"
"1","Alfa","4495","vhalin","diazepam","309"
"1","Alfa","6201","SkUnKaDeLiC","diazepam","309"
"1","Alfa","1842","nymphetamine","diazepam","309"
"1","Alfa","56","Hollywood ","diazepam","309"
"1","Alfa","63028","Smirnoff","diazepam","309"
"45618","cannabis-sam","156304","PillMan","hydrocodone","305"
"1842","nymphetamine","156304","PillMan","hydrocodone","305"
"56","Hollywood ","156304","PillMan","hydrocodone","305"
"28015","riaahacker","156304","PillMan","hydrocodone","305"
"35486","NeuroChi","156304","PillMan","hydrocodone","305"
"4495","vhalin","156304","PillMan","hydrocodone","305"
"3413","radiometer ","42985","EducatedUser408","ghb","304"
"1842","nymphetamine","42985","EducatedUser408","ghb","304"
"157358","CrispCold","273791","Roaddoggy","kratom","303"
"1842","nymphetamine","157358","CrispCold","kratom","303"
"13344","drewcil","157358","CrispCold","kratom","303"
"157358","CrispCold","294051","Jungledog","kratom","303"
"1239","Nicaine","157358","CrispCold","kratom","303"
"1","Alfa","157358","CrispCold","kratom","303"
"127014","MikePatton","157358","CrispCold","kratom","303"
"2418","Phungushead","157358","CrispCold","kratom","303"
"157358","CrispCold","273439","marathonmel7","kratom","303"
"28015","riaahacker","157358","CrispCold","kratom","303"
"4495","vhalin","157358","CrispCold","kratom","303"
"35486","NeuroChi","157358","CrispCold","kratom","303"
"156304","PillMan","164373","mar1ne","hydrocodone","302"
"1842","nymphetamine","164373","mar1ne","hydrocodone","302"
"56","Hollywood ","164373","mar1ne","hydrocodone","302"
"28015","riaahacker","164373","mar1ne","hydrocodone","302"
"35486","NeuroChi","164373","mar1ne","hydrocodone","302"
"4495","vhalin","164373","mar1ne","hydrocodone","302"
"45618","cannabis-sam","164373","mar1ne","hydrocodone","302"
"3299","anabolictrio","4495","vhalin","xanax","301"
"3299","anabolictrio","63028","Smirnoff","valium","301"
"1868","Paderas","3299","anabolictrio","morphine","301"
"56","Hollywood ","3299","anabolictrio","morphine","301"
"1842","nymphetamine","3299","anabolictrio","morphine","301"
"3299","anabolictrio","6201","SkUnKaDeLiC","xanax","301"
"56","Hollywood ","3299","anabolictrio","fentanyl","301"
"3299","anabolictrio","46865","dyingtomorrow","valium","301"
"3299","anabolictrio","4264","will","fentanyl","301"
"3299","anabolictrio","273439","marathonmel7","xanax","301"
"3299","anabolictrio","35486","NeuroChi","fentanyl","301"
"3299","anabolictrio","45599","On The Nod","morphine","301"
"3299","anabolictrio","156304","PillMan","hydrocodone","301"
"1213","Psilocybe S.","3299","anabolictrio","xanax","301"
"3299","anabolictrio","4495","vhalin","morphine","301"
"1","Alfa","3299","anabolictrio","valium","301"
"3299","anabolictrio","4495","vhalin","hydrocodone","301"
"3299","anabolictrio","115136","trdofbeingtrd","suboxone","301"
"3299","anabolictrio","28015","riaahacker","morphine","301"
"3299","anabolictrio","35486","NeuroChi","subutex","301"
"3299","anabolictrio","35486","NeuroChi","hydrocodone","301"
"2418","Phungushead","3299","anabolictrio","valium","301"
"56","Hollywood ","3299","anabolictrio","valium","301"
"3299","anabolictrio","35486","NeuroChi","suboxone","301"
"3299","anabolictrio","35486","NeuroChi","buprenorphine","301"
"3299","anabolictrio","35486","NeuroChi","morphine","301"
"3299","anabolictrio","45618","cannabis-sam","xanax","301"
"3299","anabolictrio","4495","vhalin","valium","301"
"3299","anabolictrio","63028","Smirnoff","xanax","301"
"1842","nymphetamine","3299","anabolictrio","xanax","301"
"1808","xxgaretjaxx","3299","anabolictrio","xanax","301"
"56","Hollywood ","3299","anabolictrio","xanax","301"
"3299","anabolictrio","6201","SkUnKaDeLiC","valium","301"
"3299","anabolictrio","28015","riaahacker","xanax","301"
"1842","nymphetamine","3299","anabolictrio","hydrocodone","301"
"3299","anabolictrio","16700","beena","fentanyl","301"
"56","Hollywood ","3299","anabolictrio","hydrocodone","301"
"3299","anabolictrio","35486","NeuroChi","xanax","301"
"2418","Phungushead","3299","anabolictrio","buprenorphine","301"
"3299","anabolictrio","164373","mar1ne","hydrocodone","301"
"3299","anabolictrio","7303","pankreeas ","morphine","301"
"2418","Phungushead","3299","anabolictrio","morphine","301"
"3299","anabolictrio","45618","cannabis-sam","hydrocodone","301"
"1842","nymphetamine","3299","anabolictrio","fentanyl","301"
"3299","anabolictrio","63028","Smirnoff","morphine","301"
"2418","Phungushead","3299","anabolictrio","xanax","301"
"1","Alfa","3299","anabolictrio","morphine","301"
"3299","anabolictrio","28015","riaahacker","hydrocodone","301"
"3299","anabolictrio","46865","dyingtomorrow","suboxone","301"
"3299","anabolictrio","46865","dyingtomorrow","morphine","301"
"1329","khonsu13","3299","anabolictrio","morphine","301"
"1","Alfa","3299","anabolictrio","xanax","301"
"1842","nymphetamine","3299","anabolictrio","valium","301"
"3299","anabolictrio","45618","cannabis-sam","valium","301"
"1","Alfa","28015","riaahacker","klonopin","296"
"1239","Nicaine","118772","Mr_Spiffy","kratom","294"
"118772","Mr_Spiffy","156304","PillMan","oxycodone","294"
"46865","dyingtomorrow","118772","Mr_Spiffy","suboxone","294"
"118772","Mr_Spiffy","294051","Jungledog","kratom","294"
"118772","Mr_Spiffy","127014","MikePatton","methadone","294"
"118772","Mr_Spiffy","294051","Jungledog","oxycodone","294"
"35486","NeuroChi","118772","Mr_Spiffy","suboxone","294"
"1842","nymphetamine","118772","Mr_Spiffy","hydrocodone","294"
"4495","vhalin","118772","Mr_Spiffy","codeine","294"
"45618","cannabis-sam","118772","Mr_Spiffy","hydrocodone","294"
"56","Hollywood ","118772","Mr_Spiffy","hydrocodone","294"
"63028","Smirnoff","118772","Mr_Spiffy","morphine","294"
"35486","NeuroChi","118772","Mr_Spiffy","morphine","294"
"46865","dyingtomorrow","118772","Mr_Spiffy","morphine","294"
"1","Alfa","118772","Mr_Spiffy","kratom","294"
"46865","dyingtomorrow","118772","Mr_Spiffy","methadone","294"
"1842","nymphetamine","118772","Mr_Spiffy","methadone","294"
"2418","Phungushead","118772","Mr_Spiffy","kratom","294"
"3299","anabolictrio","118772","Mr_Spiffy","hydrocodone","294"
"118772","Mr_Spiffy","156304","PillMan","hydrocodone","294"
"35486","NeuroChi","118772","Mr_Spiffy","methadone","294"
"4495","vhalin","118772","Mr_Spiffy","morphine","294"
"2418","Phungushead","118772","Mr_Spiffy","morphine","294"
"63028","Smirnoff","118772","Mr_Spiffy","methadone","294"
"46865","dyingtomorrow","118772","Mr_Spiffy","oxycodone","294"
"115136","trdofbeingtrd","118772","Mr_Spiffy","suboxone","294"
"1","Alfa","118772","Mr_Spiffy","morphine","294"
"56","Hollywood ","118772","Mr_Spiffy","oxycodone","294"
"28015","riaahacker","118772","Mr_Spiffy","kratom","294"
"100767","missinglfe","118772","Mr_Spiffy","methadone","294"
"2418","Phungushead","118772","Mr_Spiffy","methadone","294"
"1329","khonsu13","118772","Mr_Spiffy","morphine","294"
"6201","SkUnKaDeLiC","118772","Mr_Spiffy","methadone","294"
"4495","vhalin","118772","Mr_Spiffy","kratom","294"
"118772","Mr_Spiffy","127014","MikePatton","kratom","294"
"35486","NeuroChi","118772","Mr_Spiffy","kratom","294"
"1842","nymphetamine","118772","Mr_Spiffy","oxycodone","294"
"63028","Smirnoff","118772","Mr_Spiffy","codeine","294"
"118772","Mr_Spiffy","273439","marathonmel7","kratom","294"
"1868","Paderas","118772","Mr_Spiffy","morphine","294"
"45599","On The Nod","118772","Mr_Spiffy","morphine","294"
"28015","riaahacker","118772","Mr_Spiffy","codeine","294"
"56","Hollywood ","118772","Mr_Spiffy","morphine","294"
"115136","trdofbeingtrd","118772","Mr_Spiffy","methadone","294"
"1842","nymphetamine","118772","Mr_Spiffy","morphine","294"
"118772","Mr_Spiffy","194301","rosielee","methadone","294"
"118772","Mr_Spiffy","180313","out_there","oxycodone","294"
"4495","vhalin","118772","Mr_Spiffy","hydromorphone","294"
"100767","missinglfe","118772","Mr_Spiffy","codeine","294"
"118772","Mr_Spiffy","202594","headfull0fstars","methadone","294"
"7303","pankreeas ","118772","Mr_Spiffy","oxycodone","294"
"2418","Phungushead","118772","Mr_Spiffy","oxycodone","294"
"45618","cannabis-sam","118772","Mr_Spiffy","methadone","294"
"7303","pankreeas ","118772","Mr_Spiffy","morphine","294"
"118772","Mr_Spiffy","164373","mar1ne","hydrocodone","294"
"61180","Helene ","118772","Mr_Spiffy","codeine","294"
"45599","On The Nod","118772","Mr_Spiffy","methadone","294"
"28015","riaahacker","118772","Mr_Spiffy","methadone","294"
"3299","anabolictrio","118772","Mr_Spiffy","morphine","294"
"1842","nymphetamine","118772","Mr_Spiffy","kratom","294"
"28015","riaahacker","118772","Mr_Spiffy","hydrocodone","294"
"63028","Smirnoff","118772","Mr_Spiffy","oxycodone","294"
"56","Hollywood ","118772","Mr_Spiffy","codeine","294"
"35486","NeuroChi","118772","Mr_Spiffy","oxycodone","294"
"28015","riaahacker","118772","Mr_Spiffy","morphine","294"
"13344","drewcil","118772","Mr_Spiffy","kratom","294"
"4495","vhalin","118772","Mr_Spiffy","oxycodone","294"
"35486","NeuroChi","118772","Mr_Spiffy","hydrocodone","294"
"4495","vhalin","118772","Mr_Spiffy","hydrocodone","294"
"3299","anabolictrio","118772","Mr_Spiffy","suboxone","294"
"35486","NeuroChi","118772","Mr_Spiffy","codeine","294"
"102824","natey7","118772","Mr_Spiffy","methadone","294"
"1595","Curtains","118772","Mr_Spiffy","methadone","294"
"1842","nymphetamine","118772","Mr_Spiffy","codeine","294"
"45599","On The Nod","118772","Mr_Spiffy","codeine","294"
"118772","Mr_Spiffy","157358","CrispCold","kratom","294"
"118772","Mr_Spiffy","273791","Roaddoggy","kratom","294"
"118772","Mr_Spiffy","181260","Kitts","methadone","294"
"1562","soer","4969","kaide","shroom","292"
"1806","betty_bupe","4969","kaide","shroom","292"
"4969","kaide","127014","MikePatton","diphenhydramine","292"
"1808","xxgaretjaxx","4969","kaide","shroom","292"
"4969","kaide","13189","augentier ","diphenhydramine","292"
"1595","Curtains","4969","kaide","shroom","292"
"4969","kaide","54108","Alexander_Praves","shroom","292"
"4495","vhalin","4969","kaide","diphenhydramine","292"
"1842","nymphetamine","4969","kaide","shroom","292"
"1595","Curtains","4969","kaide","psilocybin","292"
"4969","kaide","63028","Smirnoff","shroom","292"
"1842","nymphetamine","4969","kaide","diphenhydramine","292"
"1868","Paderas","4969","kaide","psilocybin","292"
"539","stndguy","4969","kaide","shroom","292"
"1868","Paderas","4969","kaide","shroom","292"
"3732","Diphenhydramine","4969","kaide","shroom","292"
"2610","brainwaxd","4969","kaide","shroom","292"
"539","stndguy","4969","kaide","psilocybin","292"
"4969","kaide","7303","pankreeas ","diphenhydramine","292"
"1808","xxgaretjaxx","4969","kaide","diphenhydramine","292"
"4969","kaide","63028","Smirnoff","diphenhydramine","292"
"4495","vhalin","4969","kaide","shroom","292"
"4969","kaide","45618","cannabis-sam","shroom","292"
"15","Sammi","4969","kaide","shroom","292"
"4969","kaide","46865","dyingtomorrow","diphenhydramine","292"
"1","Alfa","4969","kaide","shroom","292"
"4969","kaide","127014","MikePatton","shroom","292"
"4495","vhalin","4969","kaide","psilocybin","292"
"1","Alfa","4969","kaide","psilocybin","292"
"4969","kaide","35486","NeuroChi","shroom","292"
"2066","~lostgurl~ ","4969","kaide","shroom","292"
"4969","kaide","202594","headfull0fstars","diphenhydramine","292"
"10467","WrtngCocaineTutorial","127014","MikePatton","viagra","287"
"6201","SkUnKaDeLiC","180313","out_there","temazepam","286"
"1842","nymphetamine","180313","out_there","temazepam","286"
"127014","MikePatton","156304","PillMan","tramadol","284"
"6052","KomodoMK","10467","WrtngCocaineTutorial","mdma","284"
"56","Hollywood ","156304","PillMan","tramadol","284"
"1595","Curtains","10467","WrtngCocaineTutorial","mdma","284"
"35486","NeuroChi","156304","PillMan","tramadol","284"
"1842","nymphetamine","10467","WrtngCocaineTutorial","mdma","284"
"46446","EyesOfTheWorld","118772","Mr_Spiffy","methadone","284"
"10467","WrtngCocaineTutorial","59051","Priapism9","mdma","284"
"45618","cannabis-sam","46446","EyesOfTheWorld","methadone","284"
"45599","On The Nod","46446","EyesOfTheWorld","methadone","284"
"46446","EyesOfTheWorld","100767","missinglfe","methadone","284"
"28015","riaahacker","46446","EyesOfTheWorld","methadone","284"
"10467","WrtngCocaineTutorial","127014","MikePatton","mdma","284"
"45618","cannabis-sam","156304","PillMan","tramadol","284"
"4495","vhalin","156304","PillMan","tramadol","284"
"46446","EyesOfTheWorld","102824","natey7","methadone","284"
"10467","WrtngCocaineTutorial","63028","Smirnoff","mdma","284"
"3345","Unsolved","10467","WrtngCocaineTutorial","mdma","284"
"46446","EyesOfTheWorld","63028","Smirnoff","methadone","284"
"3732","Diphenhydramine","10467","WrtngCocaineTutorial","mdma","284"
"4495","vhalin","10467","WrtngCocaineTutorial","mdma","284"
"1595","Curtains","46446","EyesOfTheWorld","methadone","284"
"46446","EyesOfTheWorld","202594","headfull0fstars","methadone","284"
"1806","betty_bupe","10467","WrtngCocaineTutorial","mdma","284"
"1","Alfa","10467","WrtngCocaineTutorial","mdma","284"
"2418","Phungushead","10467","WrtngCocaineTutorial","mdma","284"
"1562","soer","10467","WrtngCocaineTutorial","mdma","284"
"7303","pankreeas ","10467","WrtngCocaineTutorial","mdma","284"
"1842","nymphetamine","156304","PillMan","tramadol","284"
"10467","WrtngCocaineTutorial","45618","cannabis-sam","mdma","284"
"28015","riaahacker","156304","PillMan","tramadol","284"
"46446","EyesOfTheWorld","181260","Kitts","methadone","284"
"1868","Paderas","10467","WrtngCocaineTutorial","mdma","284"
"10467","WrtngCocaineTutorial","54108","Alexander_Praves","mdma","284"
"1842","nymphetamine","46446","EyesOfTheWorld","methadone","284"
"35486","NeuroChi","46446","EyesOfTheWorld","methadone","284"
"56","Hollywood ","10467","WrtngCocaineTutorial","mdma","284"
"46446","EyesOfTheWorld","194301","rosielee","methadone","284"
"63028","Smirnoff","156304","PillMan","tramadol","284"
"539","stndguy","10467","WrtngCocaineTutorial","mdma","284"
"10467","WrtngCocaineTutorial","57101","Terrapinzflyer ","mdma","284"
"46446","EyesOfTheWorld","127014","MikePatton","methadone","284"
"10467","WrtngCocaineTutorial","35486","NeuroChi","mdma","284"
"4910","Fantasian","10467","WrtngCocaineTutorial","mdma","284"
"46446","EyesOfTheWorld","115136","trdofbeingtrd","methadone","284"
"2418","Phungushead","46446","EyesOfTheWorld","methadone","284"
"1","Alfa","156304","PillMan","tramadol","284"
"6201","SkUnKaDeLiC","46446","EyesOfTheWorld","methadone","284"
"38632","PilL FreaK","156304","PillMan","tramadol","284"
"46446","EyesOfTheWorld","46865","dyingtomorrow","methadone","284"
"2418","Phungushead","156304","PillMan","tramadol","284"
"2610","brainwaxd","10467","WrtngCocaineTutorial","mdma","284"
"63028","Smirnoff","180313","out_there","clonazepam","283"
"180313","out_there","202594","headfull0fstars","clonazepam","283"
"2418","Phungushead","180313","out_there","clonazepam","283"
"56","Hollywood ","180313","out_there","clonazepam","283"
"6201","SkUnKaDeLiC","180313","out_there","clonazepam","283"
"6201","SkUnKaDeLiC","180313","out_there","etizolam","280"
"59051","Priapism9","180313","out_there","mdma","280"
"1842","nymphetamine","180313","out_there","ghb","280"
"100767","missinglfe","180313","out_there","codeine","280"
"10467","WrtngCocaineTutorial","180313","out_there","mdma","280"
"180313","out_there","202594","headfull0fstars","dxm","280"
"28015","riaahacker","180313","out_there","tramadol","280"
"1868","Paderas","180313","out_there","mdma","280"
"2418","Phungushead","180313","out_there","dxm","280"
"2418","Phungushead","180313","out_there","zopiclone","280"
"7303","pankreeas ","180313","out_there","morphine","280"
"61180","Helene ","180313","out_there","codeine","280"
"56","Hollywood ","180313","out_there","mdma","280"
"63028","Smirnoff","180313","out_there","tramadol","280"
"539","stndguy","180313","out_there","mdma","280"
"3299","anabolictrio","180313","out_there","morphine","280"
"1842","nymphetamine","103726","seaturtle","kratom","280"
"56","Hollywood ","180313","out_there","codeine","280"
"4910","Fantasian","180313","out_there","mdma","280"
"28015","riaahacker","180313","out_there","morphine","280"
"13344","drewcil","103726","seaturtle","kratom","280"
"54108","Alexander_Praves","180313","out_there","mdma","280"
"103726","seaturtle","157358","CrispCold","kratom","280"
"35486","NeuroChi","180313","out_there","codeine","280"
"1","Alfa","180313","out_there","tramadol","280"
"38632","PilL FreaK","180313","out_there","tramadol","280"
"1842","nymphetamine","180313","out_there","codeine","280"
"103726","seaturtle","273791","Roaddoggy","kratom","280"
"45599","On The Nod","180313","out_there","codeine","280"
"2418","Phungushead","180313","out_there","tramadol","280"
"156304","PillMan","180313","out_there","tramadol","280"
"127014","MikePatton","180313","out_there","mdma","280"
"63028","Smirnoff","180313","out_there","zopiclone","280"
"103726","seaturtle","294051","Jungledog","kratom","280"
"2610","brainwaxd","180313","out_there","mdma","280"
"1239","Nicaine","103726","seaturtle","kratom","280"
"127014","MikePatton","180313","out_there","tramadol","280"
"57101","Terrapinzflyer ","180313","out_there","mdma","280"
"6052","KomodoMK","180313","out_there","mdma","280"
"56","Hollywood ","180313","out_there","tramadol","280"
"1595","Curtains","180313","out_there","mdma","280"
"35486","NeuroChi","180313","out_there","tramadol","280"
"1842","nymphetamine","180313","out_there","mdma","280"
"4495","vhalin","180313","out_there","codeine","280"
"3413","radiometer ","180313","out_there","ghb","280"
"63028","Smirnoff","180313","out_there","morphine","280"
"35486","NeuroChi","180313","out_there","morphine","280"
"46865","dyingtomorrow","180313","out_there","morphine","280"
"1","Alfa","103726","seaturtle","kratom","280"
"118772","Mr_Spiffy","180313","out_there","morphine","280"
"2418","Phungushead","103726","seaturtle","kratom","280"
"45618","cannabis-sam","180313","out_there","tramadol","280"
"4495","vhalin","180313","out_there","tramadol","280"
"28015","riaahacker","180313","out_there","baclofen","280"
"2418","Phungushead","180313","out_there","zolpidem","280"
"1842","nymphetamine","180313","out_there","lorazepam","280"
"4495","vhalin","180313","out_there","morphine","280"
"2418","Phungushead","180313","out_there","morphine","280"
"118772","Mr_Spiffy","180313","out_there","codeine","280"
"45618","cannabis-sam","180313","out_there","mdma","280"
"103726","seaturtle","118772","Mr_Spiffy","kratom","280"
"3345","Unsolved","180313","out_there","mdma","280"
"3732","Diphenhydramine","180313","out_there","mdma","280"
"4495","vhalin","180313","out_there","mdma","280"
"1","Alfa","180313","out_there","morphine","280"
"28015","riaahacker","103726","seaturtle","kratom","280"
"2418","Phungushead","180313","out_there","baclofen","280"
"103726","seaturtle","127014","MikePatton","kratom","280"
"28015","riaahacker","180313","out_there","dxm","280"
"1806","betty_bupe","180313","out_there","mdma","280"
"1329","khonsu13","180313","out_there","morphine","280"
"1806","betty_bupe","180313","out_there","midazolam","280"
"657","distilla_truant","180313","out_there","dxm","280"
"6201","SkUnKaDeLiC","180313","out_there","midazolam","280"
"103726","seaturtle","273439","marathonmel7","kratom","280"
"63028","Smirnoff","180313","out_there","mdma","280"
"4495","vhalin","103726","seaturtle","kratom","280"
"6201","SkUnKaDeLiC","180313","out_there","lorazepam","280"
"1","Alfa","180313","out_there","mdma","280"
"35486","NeuroChi","103726","seaturtle","kratom","280"
"2418","Phungushead","180313","out_there","mdma","280"
"42985","EducatedUser408","180313","out_there","ghb","280"
"35486","NeuroChi","180313","out_there","mdma","280"
"1562","soer","180313","out_there","mdma","280"
"63028","Smirnoff","180313","out_there","codeine","280"
"8671","Richard_smoker","180313","out_there","dxm","280"
"7303","pankreeas ","180313","out_there","mdma","280"
"1842","nymphetamine","180313","out_there","tramadol","280"
"6201","SkUnKaDeLiC","180313","out_there","bromazepam","280"
"1868","Paderas","180313","out_there","morphine","280"
"45599","On The Nod","180313","out_there","morphine","280"
"28015","riaahacker","180313","out_there","codeine","280"
"2418","Phungushead","180313","out_there","etizolam","280"
"56","Hollywood ","180313","out_there","morphine","280"
"1842","nymphetamine","180313","out_there","morphine","280"
"1842","nymphetamine","4218","TheLight01","mdma","279"
"4218","TheLight01","10467","WrtngCocaineTutorial","mdma","279"
"4218","TheLight01","6052","KomodoMK","mdma","279"
"4218","TheLight01","54108","Alexander_Praves","mdma","279"
"4218","TheLight01","127014","MikePatton","mdma","279"
"3345","Unsolved","4218","TheLight01","mdma","279"
"3732","Diphenhydramine","4218","TheLight01","mdma","279"
"4218","TheLight01","4910","Fantasian","mdma","279"
"1806","betty_bupe","4218","TheLight01","mdma","279"
"4218","TheLight01","63028","Smirnoff","mdma","279"
"1","Alfa","4218","TheLight01","mdma","279"
"2418","Phungushead","4218","TheLight01","mdma","279"
"1562","soer","4218","TheLight01","mdma","279"
"4218","TheLight01","180313","out_there","mdma","279"
"4218","TheLight01","45618","cannabis-sam","mdma","279"
"1868","Paderas","4218","TheLight01","mdma","279"
"4218","TheLight01","59051","Priapism9","mdma","279"
"56","Hollywood ","4218","TheLight01","mdma","279"
"539","stndguy","4218","TheLight01","mdma","279"
"4218","TheLight01","7303","pankreeas ","mdma","279"
"4218","TheLight01","4495","vhalin","mdma","279"
"4218","TheLight01","57101","Terrapinzflyer ","mdma","279"
"4218","TheLight01","35486","NeuroChi","mdma","279"
"2610","brainwaxd","4218","TheLight01","mdma","279"
"1595","Curtains","4218","TheLight01","mdma","279"
"1595","Curtains","49040","rokman nash","vicodin","277"
"4495","vhalin","49040","rokman nash","vicodin","277"
"1842","nymphetamine","49040","rokman nash","vicodin","277"
"1842","nymphetamine","49040","rokman nash","percocet","277"
"46865","dyingtomorrow","49040","rokman nash","percocet","277"
"35486","NeuroChi","49040","rokman nash","percocet","277"
"35486","NeuroChi","49040","rokman nash","vicodin","277"
"46865","dyingtomorrow","49040","rokman nash","vicodin","277"
"28015","riaahacker","49040","rokman nash","vicodin","277"
"2066","~lostgurl~ ","49040","rokman nash","vicodin","277"
"10467","WrtngCocaineTutorial","54108","Alexander_Praves","shroom","273"
"4495","vhalin","10467","WrtngCocaineTutorial","shroom","273"
"4969","kaide","10467","WrtngCocaineTutorial","shroom","273"
"15","Sammi","10467","WrtngCocaineTutorial","shroom","273"
"10467","WrtngCocaineTutorial","63028","Smirnoff","shroom","273"
"1","Alfa","10467","WrtngCocaineTutorial","shroom","273"
"2066","~lostgurl~ ","10467","WrtngCocaineTutorial","shroom","273"
"1562","soer","10467","WrtngCocaineTutorial","shroom","273"
"1806","betty_bupe","10467","WrtngCocaineTutorial","shroom","273"
"1808","xxgaretjaxx","10467","WrtngCocaineTutorial","shroom","273"
"10467","WrtngCocaineTutorial","45618","cannabis-sam","shroom","273"
"1595","Curtains","10467","WrtngCocaineTutorial","shroom","273"
"10467","WrtngCocaineTutorial","127014","MikePatton","shroom","273"
"10467","WrtngCocaineTutorial","35486","NeuroChi","shroom","273"
"1842","nymphetamine","10467","WrtngCocaineTutorial","shroom","273"
"539","stndguy","10467","WrtngCocaineTutorial","shroom","273"
"1868","Paderas","10467","WrtngCocaineTutorial","shroom","273"
"3732","Diphenhydramine","10467","WrtngCocaineTutorial","shroom","273"
"2610","brainwaxd","10467","WrtngCocaineTutorial","shroom","273"
"856","str8ballin","63028","Smirnoff","xanax","267"
"56","Hollywood ","856","str8ballin","xanax","267"
"856","str8ballin","28015","riaahacker","xanax","267"
"740","Endologik","4495","vhalin","phenazepam","267"
"856","str8ballin","1842","nymphetamine","xanax","267"
"740","Endologik","63028","Smirnoff","phenazepam","267"
"856","str8ballin","45618","cannabis-sam","valium","267"
"856","str8ballin","2418","Phungushead","xanax","267"
"740","Endologik","1842","nymphetamine","phenazepam","267"
"856","str8ballin","63028","Smirnoff","valium","267"
"856","str8ballin","28015","riaahacker","ritalin","267"
"856","str8ballin","1842","nymphetamine","valium","267"
"856","str8ballin","35486","NeuroChi","ritalin","267"
"856","str8ballin","2418","Phungushead","valium","267"
"856","str8ballin","3299","anabolictrio","xanax","267"
"1","Alfa","856","str8ballin","xanax","267"
"856","str8ballin","1213","Psilocybe S.","xanax","267"
"856","str8ballin","4495","vhalin","xanax","267"
"856","str8ballin","6201","SkUnKaDeLiC","xanax","267"
"856","str8ballin","273439","marathonmel7","xanax","267"
"740","Endologik","14677","splish6","phenazepam","267"
"856","str8ballin","3299","anabolictrio","valium","267"
"856","str8ballin","35486","NeuroChi","xanax","267"
"740","Endologik","6201","SkUnKaDeLiC","phenazepam","267"
"856","str8ballin","4495","vhalin","valium","267"
"856","str8ballin","4495","vhalin","ritalin","267"
"856","str8ballin","6201","SkUnKaDeLiC","valium","267"
"856","str8ballin","1842","nymphetamine","ritalin","267"
"1","Alfa","856","str8ballin","valium","267"
"856","str8ballin","46865","dyingtomorrow","valium","267"
"56","Hollywood ","856","str8ballin","valium","267"
"856","str8ballin","45618","cannabis-sam","xanax","267"
"856","str8ballin","1808","xxgaretjaxx","xanax","267"
"743","madman3l6","3299","anabolictrio","xanax","264"
"743","madman3l6","1213","Psilocybe S.","xanax","264"
"743","madman3l6","4495","vhalin","xanax","264"
"743","madman3l6","6201","SkUnKaDeLiC","xanax","264"
"743","madman3l6","273439","marathonmel7","xanax","264"
"743","madman3l6","35486","NeuroChi","xanax","264"
"743","madman3l6","856","str8ballin","xanax","264"
"56","Hollywood ","743","madman3l6","xanax","264"
"743","madman3l6","45618","cannabis-sam","xanax","264"
"743","madman3l6","1808","xxgaretjaxx","xanax","264"
"743","madman3l6","63028","Smirnoff","xanax","264"
"743","madman3l6","28015","riaahacker","xanax","264"
"743","madman3l6","1842","nymphetamine","xanax","264"
"743","madman3l6","2418","Phungushead","xanax","264"
"1","Alfa","743","madman3l6","xanax","264"
"788","mdve2","1595","Curtains","mdma","263"
"56","Hollywood ","788","mdve2","mdma","263"
"788","mdve2","7303","pankreeas ","mdma","263"
"539","stndguy","788","mdve2","mdma","263"
"45618","cannabis-sam","256377","detoxin momma","tramadol","263"
"788","mdve2","4495","vhalin","mdma","263"
"4495","vhalin","256377","detoxin momma","tramadol","263"
"788","mdve2","57101","Terrapinzflyer ","mdma","263"
"788","mdve2","1868","Paderas","mdma","263"
"788","mdve2","180313","out_there","mdma","263"
"788","mdve2","1562","soer","mdma","263"
"788","mdve2","45618","cannabis-sam","mdma","263"
"788","mdve2","1842","nymphetamine","mdma","263"
"1842","nymphetamine","256377","detoxin momma","tramadol","263"
"788","mdve2","1806","betty_bupe","mdma","263"
"788","mdve2","2418","Phungushead","mdma","263"
"788","mdve2","3345","Unsolved","mdma","263"
"28015","riaahacker","256377","detoxin momma","tramadol","263"
"788","mdve2","54108","Alexander_Praves","mdma","263"
"788","mdve2","127014","MikePatton","mdma","263"
"63028","Smirnoff","256377","detoxin momma","tramadol","263"
"788","mdve2","4910","Fantasian","mdma","263"
"788","mdve2","63028","Smirnoff","mdma","263"
"788","mdve2","4218","TheLight01","mdma","263"
"1","Alfa","256377","detoxin momma","tramadol","263"
"38632","PilL FreaK","256377","detoxin momma","tramadol","263"
"788","mdve2","3732","Diphenhydramine","mdma","263"
"2418","Phungushead","256377","detoxin momma","tramadol","263"
"1","Alfa","788","mdve2","mdma","263"
"156304","PillMan","256377","detoxin momma","tramadol","263"
"788","mdve2","10467","WrtngCocaineTutorial","mdma","263"
"788","mdve2","2610","brainwaxd","mdma","263"
"788","mdve2","6052","KomodoMK","mdma","263"
"788","mdve2","35486","NeuroChi","mdma","263"
"127014","MikePatton","256377","detoxin momma","tramadol","263"
"56","Hollywood ","256377","detoxin momma","tramadol","263"
"180313","out_there","256377","detoxin momma","tramadol","263"
"788","mdve2","59051","Priapism9","mdma","263"
"35486","NeuroChi","256377","detoxin momma","tramadol","263"
"1","Alfa","1842","nymphetamine","methylphenidate","262"
"391","leanbaby","835","Thegreatone","acetone","262"
"1","Alfa","2418","Phungushead","methylphenidate","262"
"81101","source","181260","Kitts","methadone","259"
"81101","source","194301","rosielee","methadone","259"
"1842","nymphetamine","81101","source","methadone","259"
"35486","NeuroChi","81101","source","methadone","259"
"81101","source","127014","MikePatton","methadone","259"
"81101","source","202594","headfull0fstars","methadone","259"
"2418","Phungushead","81101","source","methadone","259"
"6201","SkUnKaDeLiC","81101","source","methadone","259"
"81101","source","118772","Mr_Spiffy","methadone","259"
"46446","EyesOfTheWorld","81101","source","methadone","259"
"45618","cannabis-sam","81101","source","methadone","259"
"81101","source","100767","missinglfe","methadone","259"
"45599","On The Nod","81101","source","methadone","259"
"28015","riaahacker","81101","source","methadone","259"
"46865","dyingtomorrow","81101","source","methadone","259"
"81101","source","102824","natey7","methadone","259"
"81101","source","115136","trdofbeingtrd","methadone","259"
"63028","Smirnoff","81101","source","methadone","259"
"1595","Curtains","81101","source","methadone","259"
"28899","Esmerelda","45618","cannabis-sam","xanax","258"
"28899","Esmerelda","115136","trdofbeingtrd","methadone","258"
"1842","nymphetamine","28899","Esmerelda","xanax","258"
"4495","vhalin","28899","Esmerelda","codeine","258"
"1808","xxgaretjaxx","28899","Esmerelda","xanax","258"
"28899","Esmerelda","45599","On The Nod","codeine","258"
"28899","Esmerelda","273439","marathonmel7","xanax","258"
"28899","Esmerelda","46865","dyingtomorrow","methadone","258"
"856","str8ballin","28899","Esmerelda","valium","258"
"28899","Esmerelda","63028","Smirnoff","codeine","258"
"28015","riaahacker","28899","Esmerelda","methadone","258"
"28015","riaahacker","28899","Esmerelda","xanax","258"
"28899","Esmerelda","81101","source","methadone","258"
"28015","riaahacker","28899","Esmerelda","oxycontin","258"
"4495","vhalin","28899","Esmerelda","morphine","258"
"2418","Phungushead","28899","Esmerelda","morphine","258"
"1","Alfa","28899","Esmerelda","morphine","258"
"28899","Esmerelda","118772","Mr_Spiffy","methadone","258"
"28899","Esmerelda","45618","cannabis-sam","valium","258"
"1","Alfa","28899","Esmerelda","valium","258"
"1595","Curtains","28899","Esmerelda","methadone","258"
"28899","Esmerelda","100767","missinglfe","methadone","258"
"2418","Phungushead","28899","Esmerelda","xanax","258"
"28899","Esmerelda","180313","out_there","morphine","258"
"1329","khonsu13","28899","Esmerelda","morphine","258"
"6201","SkUnKaDeLiC","28899","Esmerelda","valium","258"
"28899","Esmerelda","46865","dyingtomorrow","valium","258"
"56","Hollywood ","28899","Esmerelda","valium","258"
"4495","vhalin","28899","Esmerelda","oxycontin","258"
"1","Alfa","28899","Esmerelda","xanax","258"
"28899","Esmerelda","45618","cannabis-sam","methadone","258"
"28899","Esmerelda","45599","On The Nod","morphine","258"
"28899","Esmerelda","46865","dyingtomorrow","oxycontin","258"
"6201","SkUnKaDeLiC","28899","Esmerelda","xanax","258"
"1842","nymphetamine","28899","Esmerelda","valium","258"
"28899","Esmerelda","127014","MikePatton","methadone","258"
"28899","Esmerelda","46865","dyingtomorrow","morphine","258"
"28899","Esmerelda","46865","dyingtomorrow","percocet","258"
"3299","anabolictrio","28899","Esmerelda","valium","258"
"28899","Esmerelda","180313","out_there","codeine","258"
"1868","Paderas","28899","Esmerelda","morphine","258"
"28015","riaahacker","28899","Esmerelda","codeine","258"
"56","Hollywood ","28899","Esmerelda","morphine","258"
"1842","nymphetamine","28899","Esmerelda","morphine","258"
"28899","Esmerelda","45599","On The Nod","methadone","258"
"28899","Esmerelda","100767","missinglfe","codeine","258"
"28899","Esmerelda","63028","Smirnoff","xanax","258"
"28899","Esmerelda","202594","headfull0fstars","methadone","258"
"4495","vhalin","28899","Esmerelda","xanax","258"
"28899","Esmerelda","61180","Helene ","codeine","258"
"1842","nymphetamine","28899","Esmerelda","methadone","258"
"28899","Esmerelda","35486","NeuroChi","xanax","258"
"7303","pankreeas ","28899","Esmerelda","morphine","258"
"28899","Esmerelda","35486","NeuroChi","methadone","258"
"28899","Esmerelda","35486","NeuroChi","codeine","258"
"3299","anabolictrio","28899","Esmerelda","morphine","258"
"7303","pankreeas ","28899","Esmerelda","oxycontin","258"
"56","Hollywood ","28899","Esmerelda","codeine","258"
"28899","Esmerelda","46446","EyesOfTheWorld","methadone","258"
"28015","riaahacker","28899","Esmerelda","morphine","258"
"56","Hollywood ","28899","Esmerelda","oxycontin","258"
"4495","vhalin","28899","Esmerelda","valium","258"
"1213","Psilocybe S.","28899","Esmerelda","xanax","258"
"28899","Esmerelda","181260","Kitts","methadone","258"
"2418","Phungushead","28899","Esmerelda","methadone","258"
"28899","Esmerelda","63028","Smirnoff","valium","258"
"6201","SkUnKaDeLiC","28899","Esmerelda","methadone","258"
"1842","nymphetamine","28899","Esmerelda","codeine","258"
"856","str8ballin","28899","Esmerelda","xanax","258"
"28899","Esmerelda","194301","rosielee","methadone","258"
"28899","Esmerelda","118772","Mr_Spiffy","morphine","258"
"28899","Esmerelda","63028","Smirnoff","oxycontin","258"
"2418","Phungushead","28899","Esmerelda","valium","258"
"28899","Esmerelda","102824","natey7","methadone","258"
"28899","Esmerelda","63028","Smirnoff","morphine","258"
"28899","Esmerelda","49040","rokman nash","percocet","258"
"1842","nymphetamine","28899","Esmerelda","percocet","258"
"743","madman3l6","28899","Esmerelda","xanax","258"
"1842","nymphetamine","28899","Esmerelda","oxycontin","258"
"3299","anabolictrio","28899","Esmerelda","xanax","258"
"28899","Esmerelda","63028","Smirnoff","methadone","258"
"28899","Esmerelda","35486","NeuroChi","morphine","258"
"56","Hollywood ","28899","Esmerelda","xanax","258"
"28899","Esmerelda","35486","NeuroChi","percocet","258"
"28899","Esmerelda","118772","Mr_Spiffy","codeine","258"
"3375","MrJim","28015","riaahacker","codeine","257"
"56","Hollywood ","3375","MrJim","codeine","257"
"1842","nymphetamine","3375","MrJim","codeine","257"
"3375","MrJim","180313","out_there","codeine","257"
"3375","MrJim","100767","missinglfe","codeine","257"
"3375","MrJim","61180","Helene ","codeine","257"
"3375","MrJim","63028","Smirnoff","codeine","257"
"3375","MrJim","35486","NeuroChi","codeine","257"
"3375","MrJim","28899","Esmerelda","codeine","257"
"3375","MrJim","118772","Mr_Spiffy","codeine","257"
"3375","MrJim","45599","On The Nod","codeine","257"
"3375","MrJim","4495","vhalin","codeine","257"
"9019","Forthesevenlakes","118772","Mr_Spiffy","suboxone","256"
"9019","Forthesevenlakes","46865","dyingtomorrow","suboxone","256"
"2418","Phungushead","9019","Forthesevenlakes","buprenorphine","256"
"3299","anabolictrio","9019","Forthesevenlakes","suboxone","256"
"9019","Forthesevenlakes","35486","NeuroChi","buprenorphine","256"
"9019","Forthesevenlakes","115136","trdofbeingtrd","suboxone","256"
"9019","Forthesevenlakes","35486","NeuroChi","suboxone","256"
"3299","anabolictrio","9019","Forthesevenlakes","buprenorphine","256"
"46889","port 21","202594","headfull0fstars","dxm","255"
"16320","psycholic","54108","Alexander_Praves","peyote","255"
"8671","Richard_smoker","46889","port 21","dextromethorphan","255"
"657","distilla_truant","46889","port 21","dextromethorphan","255"
"28015","riaahacker","46889","port 21","dxm","255"
"657","distilla_truant","46889","port 21","dxm","255"
"8671","Richard_smoker","46889","port 21","dxm","255"
"46889","port 21","180313","out_there","dxm","255"
"2418","Phungushead","46889","port 21","dxm","255"
"28015","riaahacker","46889","port 21","dextromethorphan","255"
"2709","risexagainst","3732","Diphenhydramine","mdma","254"
"1868","Paderas","2709","risexagainst","mdma","254"
"2709","risexagainst","180313","out_there","mdma","254"
"2709","risexagainst","45618","cannabis-sam","mdma","254"
"2709","risexagainst","59051","Priapism9","mdma","254"
"788","mdve2","2709","risexagainst","mdma","254"
"2709","risexagainst","54108","Alexander_Praves","mdma","254"
"1","Alfa","2709","risexagainst","mdma","254"
"2709","risexagainst","127014","MikePatton","mdma","254"
"2610","brainwaxd","2709","risexagainst","mdma","254"
"2709","risexagainst","4910","Fantasian","mdma","254"
"1595","Curtains","2709","risexagainst","mdma","254"
"2709","risexagainst","63028","Smirnoff","mdma","254"
"1842","nymphetamine","2709","risexagainst","mdma","254"
"2709","risexagainst","35486","NeuroChi","mdma","254"
"56","Hollywood ","2709","risexagainst","mdma","254"
"2709","risexagainst","4218","TheLight01","mdma","254"
"539","stndguy","2709","risexagainst","mdma","254"
"2709","risexagainst","10467","WrtngCocaineTutorial","mdma","254"
"2709","risexagainst","6052","KomodoMK","mdma","254"
"2709","risexagainst","3345","Unsolved","mdma","254"
"1806","betty_bupe","2709","risexagainst","mdma","254"
"2709","risexagainst","7303","pankreeas ","mdma","254"
"2418","Phungushead","2709","risexagainst","mdma","254"
"1562","soer","2709","risexagainst","mdma","254"
"2709","risexagainst","4495","vhalin","mdma","254"
"2709","risexagainst","57101","Terrapinzflyer ","mdma","254"
"56","Hollywood ","15564","Le Junk","mdma","253"
"2709","risexagainst","15564","Le Junk","mdma","253"
"539","stndguy","15564","Le Junk","mdma","253"
"1","Alfa","20234","ianzombie ","kratom","253"
"20234","ianzombie ","103726","seaturtle","kratom","253"
"2418","Phungushead","20234","ianzombie ","kratom","253"
"20234","ianzombie ","157358","CrispCold","kratom","253"
"15564","Le Junk","45618","cannabis-sam","mdma","253"
"20234","ianzombie ","273791","Roaddoggy","kratom","253"
"4495","vhalin","15564","Le Junk","mdma","253"
"1806","betty_bupe","15564","Le Junk","mdma","253"
"15564","Le Junk","54108","Alexander_Praves","mdma","253"
"835","Thegreatone","40688","69Ron","acetone","253"
"20234","ianzombie ","273439","marathonmel7","kratom","253"
"2418","Phungushead","15564","Le Junk","mdma","253"
"20234","ianzombie ","35486","NeuroChi","kratom","253"
"1562","soer","15564","Le Junk","mdma","253"
"15564","Le Junk","57101","Terrapinzflyer ","mdma","253"
"4495","vhalin","20234","ianzombie ","kratom","253"
"15564","Le Junk","35486","NeuroChi","mdma","253"
"7303","pankreeas ","15564","Le Junk","mdma","253"
"1868","Paderas","15564","Le Junk","mdma","253"
"10467","WrtngCocaineTutorial","15564","Le Junk","mdma","253"
"20234","ianzombie ","118772","Mr_Spiffy","kratom","253"
"15564","Le Junk","180313","out_there","mdma","253"
"1842","nymphetamine","20234","ianzombie ","kratom","253"
"20234","ianzombie ","127014","MikePatton","kratom","253"
"3345","Unsolved","15564","Le Junk","mdma","253"
"3732","Diphenhydramine","15564","Le Junk","mdma","253"
"4910","Fantasian","15564","Le Junk","mdma","253"
"13344","drewcil","20234","ianzombie ","kratom","253"
"788","mdve2","15564","Le Junk","mdma","253"
"15564","Le Junk","59051","Priapism9","mdma","253"
"20234","ianzombie ","28015","riaahacker","kratom","253"
"1","Alfa","15564","Le Junk","mdma","253"
"15564","Le Junk","127014","MikePatton","mdma","253"
"20234","ianzombie ","294051","Jungledog","kratom","253"
"2610","brainwaxd","15564","Le Junk","mdma","253"
"15564","Le Junk","63028","Smirnoff","mdma","253"
"1595","Curtains","15564","Le Junk","mdma","253"
"1239","Nicaine","20234","ianzombie ","kratom","253"
"1842","nymphetamine","15564","Le Junk","mdma","253"
"4218","TheLight01","15564","Le Junk","mdma","253"
"6052","KomodoMK","15564","Le Junk","mdma","253"
"391","leanbaby","40688","69Ron","acetone","253"
"1595","Curtains","38813","waffles","shroom","250"
"1842","nymphetamine","38813","waffles","shroom","250"
"539","stndguy","38813","waffles","shroom","250"
"1868","Paderas","38813","waffles","shroom","250"
"3732","Diphenhydramine","38813","waffles","shroom","250"
"38813","waffles","54108","Alexander_Praves","shroom","250"
"2610","brainwaxd","38813","waffles","shroom","250"
"38813","waffles","63028","Smirnoff","shroom","250"
"4495","vhalin","38813","waffles","shroom","250"
"4969","kaide","38813","waffles","shroom","250"
"15","Sammi","38813","waffles","shroom","250"
"1","Alfa","38813","waffles","shroom","250"
"35486","NeuroChi","38813","waffles","shroom","250"
"38813","waffles","45618","cannabis-sam","shroom","250"
"2066","~lostgurl~ ","38813","waffles","shroom","250"
"38813","waffles","127014","MikePatton","shroom","250"
"1562","soer","38813","waffles","shroom","250"
"1806","betty_bupe","38813","waffles","shroom","250"
"10467","WrtngCocaineTutorial","38813","waffles","shroom","250"
"1808","xxgaretjaxx","38813","waffles","shroom","250"
"62","BA","45618","cannabis-sam","mdma","249"
"62","BA","2610","brainwaxd","mdma","249"
"62","BA","1806","betty_bupe","mdma","249"
"62","BA","35486","NeuroChi","mdma","249"
"62","BA","3345","Unsolved","mdma","249"
"62","BA","54108","Alexander_Praves","mdma","249"
"1","Alfa","62","BA","mdma","249"
"62","BA","127014","MikePatton","mdma","249"
"62","BA","4910","Fantasian","mdma","249"
"62","BA","2709","risexagainst","mdma","249"
"62","BA","539","stndguy","mdma","249"
"62","BA","4218","TheLight01","mdma","249"
"62","BA","1868","Paderas","mdma","249"
"62","BA","10467","WrtngCocaineTutorial","mdma","249"
"56","Hollywood ","62","BA","mdma","249"
"62","BA","1562","soer","mdma","249"
"62","BA","6052","KomodoMK","mdma","249"
"62","BA","1842","nymphetamine","mdma","249"
"62","BA","59051","Priapism9","mdma","249"
"62","BA","2418","Phungushead","mdma","249"
"62","BA","1595","Curtains","mdma","249"
"62","BA","7303","pankreeas ","mdma","249"
"62","BA","4495","vhalin","mdma","249"
"62","BA","15564","Le Junk","mdma","249"
"62","BA","57101","Terrapinzflyer ","mdma","249"
"62","BA","788","mdve2","mdma","249"
"62","BA","63028","Smirnoff","mdma","249"
"62","BA","180313","out_there","mdma","249"
"62","BA","3732","Diphenhydramine","mdma","249"
"5010","snapper ","63028","Smirnoff","kava","247"
"1842","nymphetamine","5010","snapper ","kava","247"
"4495","vhalin","5010","snapper ","kava","247"
"28015","riaahacker","62508","Makesmefeelbig","mephedrone","245"
"1","Alfa","62508","Makesmefeelbig","mephedrone","245"
"57101","Terrapinzflyer ","62508","Makesmefeelbig","mephedrone","245"
"8016","chillinwill","62508","Makesmefeelbig","mephedrone","245"
"4495","vhalin","62508","Makesmefeelbig","mephedrone","245"
"4092","trptamene ","62508","Makesmefeelbig","mephedrone","245"
"1526","Cuberun ","62508","Makesmefeelbig","mephedrone","245"
"1842","nymphetamine","62508","Makesmefeelbig","mephedrone","245"
"45583","Synesthesiac","62508","Makesmefeelbig","mephedrone","245"
"1868","Paderas","62508","Makesmefeelbig","mephedrone","245"
"81101","source","273791","Roaddoggy","methadone","242"
"46446","EyesOfTheWorld","273791","Roaddoggy","methadone","242"
"45618","cannabis-sam","273791","Roaddoggy","methadone","242"
"1842","nymphetamine","273791","Roaddoggy","methadone","242"
"45599","On The Nod","273791","Roaddoggy","methadone","242"
"46865","dyingtomorrow","273791","Roaddoggy","methadone","242"
"63028","Smirnoff","273791","Roaddoggy","methadone","242"
"263706","Ellen042","273791","Roaddoggy","loperamide","242"
"2418","Phungushead","273791","Roaddoggy","methadone","242"
"6201","SkUnKaDeLiC","273791","Roaddoggy","methadone","242"
"102824","natey7","273791","Roaddoggy","methadone","242"
"118772","Mr_Spiffy","273791","Roaddoggy","methadone","242"
"28015","riaahacker","273791","Roaddoggy","methadone","242"
"181260","Kitts","273791","Roaddoggy","methadone","242"
"35486","NeuroChi","273791","Roaddoggy","methadone","242"
"28899","Esmerelda","273791","Roaddoggy","methadone","242"
"207202","Nefret","263706","Ellen042","loperamide","242"
"202594","headfull0fstars","273791","Roaddoggy","methadone","242"
"1595","Curtains","273791","Roaddoggy","methadone","242"
"263706","Ellen042","294051","Jungledog","loperamide","242"
"127014","MikePatton","273791","Roaddoggy","methadone","242"
"100767","missinglfe","273791","Roaddoggy","methadone","242"
"194301","rosielee","273791","Roaddoggy","methadone","242"
"115136","trdofbeingtrd","273791","Roaddoggy","methadone","242"
"153","blaze","4092","trptamene ","mephedrone","241"
"5010","snapper ","46865","dyingtomorrow","morphine","241"
"153","blaze","28015","riaahacker","mephedrone","241"
"3299","anabolictrio","5010","snapper ","morphine","241"
"153","blaze","1842","nymphetamine","mephedrone","241"
"5010","snapper ","180313","out_there","lorazepam","241"
"1842","nymphetamine","5010","snapper ","lorazepam","241"
"5010","snapper ","28899","Esmerelda","morphine","241"
"153","blaze","62508","Makesmefeelbig","mephedrone","241"
"5010","snapper ","118772","Mr_Spiffy","morphine","241"
"153","blaze","45583","Synesthesiac","mephedrone","241"
"5010","snapper ","7303","pankreeas ","morphine","241"
"153","blaze","1868","Paderas","mephedrone","241"
"5010","snapper ","28015","riaahacker","morphine","241"
"1","Alfa","153","blaze","mephedrone","241"
"153","blaze","57101","Terrapinzflyer ","mephedrone","241"
"5010","snapper ","35486","NeuroChi","morphine","241"
"153","blaze","8016","chillinwill","mephedrone","241"
"4495","vhalin","5010","snapper ","morphine","241"
"2418","Phungushead","5010","snapper ","morphine","241"
"1","Alfa","5010","snapper ","morphine","241"
"5010","snapper ","6201","SkUnKaDeLiC","lorazepam","241"
"1329","khonsu13","5010","snapper ","morphine","241"
"5010","snapper ","180313","out_there","morphine","241"
"1868","Paderas","5010","snapper ","morphine","241"
"153","blaze","1526","Cuberun ","mephedrone","241"
"56","Hollywood ","5010","snapper ","morphine","241"
"5010","snapper ","45599","On The Nod","morphine","241"
"1842","nymphetamine","5010","snapper ","morphine","241"
"153","blaze","4495","vhalin","mephedrone","241"
"5010","snapper ","63028","Smirnoff","morphine","241"
"313","RoboCop ","180313","out_there","dxm","237"
"4495","vhalin","45599","On The Nod","hydromorphone","237"
"313","RoboCop ","202594","headfull0fstars","dxm","237"
"313","RoboCop ","28015","riaahacker","dxm","237"
"313","RoboCop ","46889","port 21","dxm","237"
"313","RoboCop ","8671","Richard_smoker","dxm","237"
"313","RoboCop ","657","distilla_truant","dxm","237"
"313","RoboCop ","2418","Phungushead","dxm","237"
"45599","On The Nod","118772","Mr_Spiffy","hydromorphone","237"
"46865","dyingtomorrow","202594","headfull0fstars","adderall","234"
"46865","dyingtomorrow","63028","Smirnoff","adderall","234"
"45618","cannabis-sam","46865","dyingtomorrow","adderall","234"
"46865","dyingtomorrow","71487","robotripper","adderall","234"
"56","Hollywood ","46865","dyingtomorrow","adderall","234"
"1","Alfa","46865","dyingtomorrow","adderall","234"
"46865","dyingtomorrow","127014","MikePatton","adderall","234"
"28015","riaahacker","46865","dyingtomorrow","adderall","234"
"4495","vhalin","46865","dyingtomorrow","adderall","234"
"46865","dyingtomorrow","115136","trdofbeingtrd","adderall","234"
"1842","nymphetamine","46865","dyingtomorrow","adderall","234"
"1868","Paderas","46865","dyingtomorrow","adderall","234"
"35486","NeuroChi","46865","dyingtomorrow","adderall","234"
"135","sands of time","28015","riaahacker","kratom","233"
"135","sands of time","294051","Jungledog","kratom","233"
"135","sands of time","35486","NeuroChi","kratom","233"
"135","sands of time","20234","ianzombie ","kratom","233"
"135","sands of time","118772","Mr_Spiffy","kratom","233"
"135","sands of time","1239","Nicaine","kratom","233"
"135","sands of time","13344","drewcil","kratom","233"
"135","sands of time","273791","Roaddoggy","kratom","233"
"1","Alfa","135","sands of time","kratom","233"
"135","sands of time","273439","marathonmel7","kratom","233"
"135","sands of time","1842","nymphetamine","kratom","233"
"135","sands of time","2418","Phungushead","kratom","233"
"135","sands of time","103726","seaturtle","kratom","233"
"135","sands of time","157358","CrispCold","kratom","233"
"135","sands of time","127014","MikePatton","kratom","233"
"135","sands of time","4495","vhalin","kratom","233"
"2418","Phungushead","161625","mrcowman","dxm","230"
"161625","mrcowman","180313","out_there","dxm","230"
"161625","mrcowman","202594","headfull0fstars","dxm","230"
"28015","riaahacker","161625","mrcowman","dxm","230"
"657","distilla_truant","161625","mrcowman","dxm","230"
"8671","Richard_smoker","161625","mrcowman","dxm","230"
"313","RoboCop ","161625","mrcowman","dxm","230"
"46889","port 21","161625","mrcowman","dxm","230"
"1","Alfa","2763","bogumil","kratom","224"
"2763","bogumil","20234","ianzombie ","kratom","224"
"2763","bogumil","118772","Mr_Spiffy","kratom","224"
"1842","nymphetamine","2763","bogumil","kratom","224"
"2763","bogumil","127014","MikePatton","kratom","224"
"2763","bogumil","4495","vhalin","kratom","224"
"2763","bogumil","28015","riaahacker","kratom","224"
"2763","bogumil","294051","Jungledog","kratom","224"
"1239","Nicaine","2763","bogumil","kratom","224"
"2763","bogumil","103726","seaturtle","kratom","224"
"2418","Phungushead","2763","bogumil","kratom","224"
"2763","bogumil","157358","CrispCold","kratom","224"
"135","sands of time","2763","bogumil","kratom","224"
"2763","bogumil","13344","drewcil","kratom","224"
"2763","bogumil","273791","Roaddoggy","kratom","224"
"2763","bogumil","273439","marathonmel7","kratom","224"
"2763","bogumil","35486","NeuroChi","kratom","224"
"1","Alfa","42985","EducatedUser408","ghb","223"
"1","Alfa","1842","nymphetamine","ghb","223"
"1","Alfa","180313","out_there","ghb","223"
"1","Alfa","3413","radiometer ","ghb","223"
"5750","pharmapsyche","45618","cannabis-sam","adderall","222"
"5750","pharmapsyche","127014","MikePatton","adderall","222"
"4495","vhalin","5750","pharmapsyche","adderall","222"
"5750","pharmapsyche","115136","trdofbeingtrd","adderall","222"
"1842","nymphetamine","5750","pharmapsyche","adderall","222"
"5750","pharmapsyche","71487","robotripper","adderall","222"
"1868","Paderas","5750","pharmapsyche","adderall","222"
"5750","pharmapsyche","46865","dyingtomorrow","adderall","222"
"5750","pharmapsyche","202594","headfull0fstars","adderall","222"
"5750","pharmapsyche","63028","Smirnoff","adderall","222"
"5750","pharmapsyche","28015","riaahacker","adderall","222"
"56","Hollywood ","5750","pharmapsyche","adderall","222"
"5750","pharmapsyche","35486","NeuroChi","adderall","222"
"1","Alfa","5750","pharmapsyche","adderall","222"
"4495","vhalin","20109","imyourlittlebare","mephedrone","221"
"1","Alfa","20109","imyourlittlebare","mephedrone","221"
"4092","trptamene ","20109","imyourlittlebare","mephedrone","221"
"3375","MrJim","83387","PrincessJo x","codeine","221"
"1526","Cuberun ","20109","imyourlittlebare","mephedrone","221"
"83387","PrincessJo x","180313","out_there","codeine","221"
"20109","imyourlittlebare","62508","Makesmefeelbig","mephedrone","221"
"1842","nymphetamine","20109","imyourlittlebare","mephedrone","221"
"83387","PrincessJo x","100767","missinglfe","codeine","221"
"20109","imyourlittlebare","57101","Terrapinzflyer ","mephedrone","221"
"63028","Smirnoff","83387","PrincessJo x","codeine","221"
"1868","Paderas","20109","imyourlittlebare","mephedrone","221"
"4495","vhalin","83387","PrincessJo x","codeine","221"
"8016","chillinwill","20109","imyourlittlebare","mephedrone","221"
"61180","Helene ","83387","PrincessJo x","codeine","221"
"56","Hollywood ","83387","PrincessJo x","codeine","221"
"1842","nymphetamine","83387","PrincessJo x","codeine","221"
"35486","NeuroChi","83387","PrincessJo x","codeine","221"
"45599","On The Nod","83387","PrincessJo x","codeine","221"
"83387","PrincessJo x","118772","Mr_Spiffy","codeine","221"
"20109","imyourlittlebare","45583","Synesthesiac","mephedrone","221"
"153","blaze","20109","imyourlittlebare","mephedrone","221"
"20109","imyourlittlebare","28015","riaahacker","mephedrone","221"
"28899","Esmerelda","83387","PrincessJo x","codeine","221"
"28015","riaahacker","83387","PrincessJo x","codeine","221"
"2418","Phungushead","155253","MachoManSavage","kratom","220"
"135","sands of time","155253","MachoManSavage","kratom","220"
"13344","drewcil","155253","MachoManSavage","kratom","220"
"127014","MikePatton","155253","MachoManSavage","kratom","220"
"103726","seaturtle","155253","MachoManSavage","kratom","220"
"28015","riaahacker","155253","MachoManSavage","kratom","220"
"118772","Mr_Spiffy","155253","MachoManSavage","kratom","220"
"35486","NeuroChi","155253","MachoManSavage","kratom","220"
"155253","MachoManSavage","157358","CrispCold","kratom","220"
"155253","MachoManSavage","273439","marathonmel7","kratom","220"
"1","Alfa","155253","MachoManSavage","kratom","220"
"2763","bogumil","155253","MachoManSavage","kratom","220"
"20234","ianzombie ","155253","MachoManSavage","kratom","220"
"1842","nymphetamine","155253","MachoManSavage","kratom","220"
"9019","Forthesevenlakes","35486","NeuroChi","subutex","220"
"4495","vhalin","155253","MachoManSavage","kratom","220"
"3299","anabolictrio","9019","Forthesevenlakes","subutex","220"
"1239","Nicaine","155253","MachoManSavage","kratom","220"
"155253","MachoManSavage","273791","Roaddoggy","kratom","220"
"155253","MachoManSavage","294051","Jungledog","kratom","220"
"18769","samuraigecko","46865","dyingtomorrow","morphine","219"
"7303","pankreeas ","18769","samuraigecko","morphine","219"
"4495","vhalin","18769","samuraigecko","morphine","219"
"2418","Phungushead","18769","samuraigecko","morphine","219"
"1","Alfa","18769","samuraigecko","morphine","219"
"1329","khonsu13","18769","samuraigecko","morphine","219"
"18769","samuraigecko","180313","out_there","morphine","219"
"1868","Paderas","18769","samuraigecko","morphine","219"
"56","Hollywood ","18769","samuraigecko","morphine","219"
"1842","nymphetamine","18769","samuraigecko","morphine","219"
"18769","samuraigecko","45599","On The Nod","morphine","219"
"18769","samuraigecko","28015","riaahacker","morphine","219"
"18769","samuraigecko","35486","NeuroChi","morphine","219"
"3299","anabolictrio","18769","samuraigecko","morphine","219"
"5010","snapper ","18769","samuraigecko","morphine","219"
"18769","samuraigecko","28899","Esmerelda","morphine","219"
"18769","samuraigecko","118772","Mr_Spiffy","morphine","219"
"18769","samuraigecko","63028","Smirnoff","morphine","219"
"3375","MrJim","45599","On The Nod","hydromorphone","218"
"3375","MrJim","4495","vhalin","hydromorphone","218"
"1842","nymphetamine","3375","MrJim","fentanyl","218"
"3375","MrJim","4264","will","fentanyl","218"
"3375","MrJim","35486","NeuroChi","fentanyl","218"
"56","Hollywood ","3375","MrJim","fentanyl","218"
"3299","anabolictrio","3375","MrJim","fentanyl","218"
"3375","MrJim","118772","Mr_Spiffy","hydromorphone","218"
"3375","MrJim","16700","beena","fentanyl","218"
"8016","chillinwill","53567","buzzman","mephedrone","217"
"7303","pankreeas ","68194","baZING","oxycodone","217"
"2418","Phungushead","68194","baZING","oxycodone","217"
"63028","Smirnoff","68194","baZING","oxycodone","217"
"35486","NeuroChi","68194","baZING","oxycodone","217"
"4495","vhalin","68194","baZING","oxycodone","217"
"153","blaze","53567","buzzman","mephedrone","217"
"45583","Synesthesiac","53567","buzzman","mephedrone","217"
"68194","baZING","118772","Mr_Spiffy","oxycodone","217"
"53567","buzzman","57101","Terrapinzflyer ","mephedrone","217"
"68194","baZING","180313","out_there","oxycodone","217"
"4495","vhalin","53567","buzzman","mephedrone","217"
"1","Alfa","53567","buzzman","mephedrone","217"
"28015","riaahacker","53567","buzzman","mephedrone","217"
"4092","trptamene ","53567","buzzman","mephedrone","217"
"1526","Cuberun ","53567","buzzman","mephedrone","217"
"46865","dyingtomorrow","68194","baZING","oxycodone","217"
"56","Hollywood ","68194","baZING","oxycodone","217"
"20109","imyourlittlebare","53567","buzzman","mephedrone","217"
"1842","nymphetamine","53567","buzzman","mephedrone","217"
"53567","buzzman","62508","Makesmefeelbig","mephedrone","217"
"1868","Paderas","53567","buzzman","mephedrone","217"
"68194","baZING","156304","PillMan","oxycodone","217"
"1842","nymphetamine","68194","baZING","oxycodone","217"
"68194","baZING","294051","Jungledog","oxycodone","217"
"28015","riaahacker","156304","PillMan","dxm","216"
"657","distilla_truant","156304","PillMan","dxm","216"
"2418","Phungushead","46865","dyingtomorrow","methylphenidate","216"
"156304","PillMan","161625","mrcowman","dxm","216"
"8671","Richard_smoker","156304","PillMan","dxm","216"
"156304","PillMan","202594","headfull0fstars","dxm","216"
"313","RoboCop ","156304","PillMan","dxm","216"
"46889","port 21","156304","PillMan","dxm","216"
"2418","Phungushead","156304","PillMan","dxm","216"
"1","Alfa","46865","dyingtomorrow","methylphenidate","216"
"1842","nymphetamine","46865","dyingtomorrow","methylphenidate","216"
"156304","PillMan","180313","out_there","dxm","216"
"2418","Phungushead","75764","lololsolid","dxm","212"
"15","Sammi","3565","amd6568","salvia divinorum","212"
"75764","lololsolid","156304","PillMan","dxm","212"
"1752","Gurnie","3565","amd6568","salvia divinorum","212"
"75764","lololsolid","180313","out_there","dxm","212"
"28015","riaahacker","75764","lololsolid","dxm","212"
"1842","nymphetamine","3565","amd6568","salvia divinorum","212"
"657","distilla_truant","75764","lololsolid","dxm","212"
"8671","Richard_smoker","75764","lololsolid","dxm","212"
"313","RoboCop ","75764","lololsolid","dxm","212"
"46889","port 21","75764","lololsolid","dxm","212"
"75764","lololsolid","161625","mrcowman","dxm","212"
"75764","lololsolid","202594","headfull0fstars","dxm","212"
"90006","Ghetto_Chem","115136","trdofbeingtrd","suboxone","211"
"46865","dyingtomorrow","90006","Ghetto_Chem","suboxone","211"
"9019","Forthesevenlakes","90006","Ghetto_Chem","suboxone","211"
"35486","NeuroChi","90006","Ghetto_Chem","suboxone","211"
"90006","Ghetto_Chem","118772","Mr_Spiffy","suboxone","211"
"3299","anabolictrio","90006","Ghetto_Chem","suboxone","211"
"1023","btoddw2","6201","SkUnKaDeLiC","valium","210"
"1023","btoddw2","6201","SkUnKaDeLiC","diazepam","210"
"1023","btoddw2","5750","pharmapsyche","adderall","210"
"1023","btoddw2","46865","dyingtomorrow","valium","210"
"56","Hollywood ","1023","btoddw2","codeine","210"
"1023","btoddw2","1842","nymphetamine","diazepam","210"
"1023","btoddw2","45618","cannabis-sam","adderall","210"
"1023","btoddw2","3375","MrJim","codeine","210"
"56","Hollywood ","1023","btoddw2","adderall","210"
"1023","btoddw2","127014","MikePatton","adderall","210"
"1023","btoddw2","180313","out_there","codeine","210"
"1023","btoddw2","63028","Smirnoff","adderall","210"
"1023","btoddw2","100767","missinglfe","codeine","210"
"1023","btoddw2","115136","trdofbeingtrd","adderall","210"
"1023","btoddw2","61180","Helene ","codeine","210"
"1","Alfa","1023","btoddw2","diazepam","210"
"1023","btoddw2","28899","Esmerelda","valium","210"
"1023","btoddw2","1842","nymphetamine","adderall","210"
"1023","btoddw2","63028","Smirnoff","codeine","210"
"1023","btoddw2","45618","cannabis-sam","valium","210"
"1023","btoddw2","35486","NeuroChi","adderall","210"
"1023","btoddw2","1842","nymphetamine","codeine","210"
"1","Alfa","1023","btoddw2","adderall","210"
"1023","btoddw2","180313","out_there","zolpidem","210"
"1023","btoddw2","63028","Smirnoff","valium","210"
"1023","btoddw2","63028","Smirnoff","diazepam","210"
"1023","btoddw2","1842","nymphetamine","valium","210"
"856","str8ballin","1023","btoddw2","valium","210"
"1023","btoddw2","28015","riaahacker","diazepam","210"
"1023","btoddw2","46865","dyingtomorrow","adderall","210"
"1023","btoddw2","83387","PrincessJo x","codeine","210"
"1023","btoddw2","2418","Phungushead","valium","210"
"1023","btoddw2","202594","headfull0fstars","adderall","210"
"1023","btoddw2","28899","Esmerelda","codeine","210"
"1023","btoddw2","4495","vhalin","adderall","210"
"1023","btoddw2","118772","Mr_Spiffy","codeine","210"
"1","Alfa","1023","btoddw2","valium","210"
"1023","btoddw2","1868","Paderas","adderall","210"
"1023","btoddw2","45599","On The Nod","codeine","210"
"56","Hollywood ","1023","btoddw2","valium","210"
"1023","btoddw2","28015","riaahacker","adderall","210"
"1023","btoddw2","4495","vhalin","codeine","210"
"1023","btoddw2","3299","anabolictrio","valium","210"
"1023","btoddw2","71487","robotripper","adderall","210"
"1023","btoddw2","28015","riaahacker","codeine","210"
"56","Hollywood ","1023","btoddw2","diazepam","210"
"1023","btoddw2","4495","vhalin","valium","210"
"1023","btoddw2","35486","NeuroChi","codeine","210"
"1023","btoddw2","4495","vhalin","diazepam","210"
"1023","btoddw2","2418","Phungushead","zolpidem","210"
"1684","CABS205","1808","xxgaretjaxx","diphenhydramine","209"
"1684","CABS205","4495","vhalin","diphenhydramine","209"
"1684","CABS205","13189","augentier ","diphenhydramine","209"
"1684","CABS205","46865","dyingtomorrow","diphenhydramine","209"
"1684","CABS205","4969","kaide","diphenhydramine","209"
"1684","CABS205","7303","pankreeas ","diphenhydramine","209"
"1684","CABS205","127014","MikePatton","diphenhydramine","209"
"1684","CABS205","63028","Smirnoff","diphenhydramine","209"
"1684","CABS205","1842","nymphetamine","diphenhydramine","209"
"1684","CABS205","202594","headfull0fstars","diphenhydramine","209"
"9","Freedom of Mind","156304","PillMan","dxm","206"
"9","Freedom of Mind","313","RoboCop ","dxm","206"
"9","Freedom of Mind","46889","port 21","dextromethorphan","206"
"9","Freedom of Mind","180313","out_there","dxm","206"
"9","Freedom of Mind","657","distilla_truant","dextromethorphan","206"
"9","Freedom of Mind","202594","headfull0fstars","dxm","206"
"9","Freedom of Mind","28015","riaahacker","dxm","206"
"9","Freedom of Mind","75764","lololsolid","dxm","206"
"9","Freedom of Mind","161625","mrcowman","dxm","206"
"9","Freedom of Mind","46889","port 21","dxm","206"
"9","Freedom of Mind","8671","Richard_smoker","dextromethorphan","206"
"9","Freedom of Mind","8671","Richard_smoker","dxm","206"
"9","Freedom of Mind","28015","riaahacker","dextromethorphan","206"
"9","Freedom of Mind","657","distilla_truant","dxm","206"
"9","Freedom of Mind","2418","Phungushead","dxm","206"
"856","str8ballin","5750","pharmapsyche","ritalin","205"
"5750","pharmapsyche","28015","riaahacker","ritalin","205"
"1842","nymphetamine","5750","pharmapsyche","ritalin","205"
"4495","vhalin","5750","pharmapsyche","ritalin","205"
"5750","pharmapsyche","35486","NeuroChi","ritalin","205"
"15564","Le Junk","90006","Ghetto_Chem","mdma","204"
"3345","Unsolved","90006","Ghetto_Chem","mdma","204"
"3732","Diphenhydramine","90006","Ghetto_Chem","mdma","204"
"90006","Ghetto_Chem","127014","MikePatton","mdma","204"
"4910","Fantasian","90006","Ghetto_Chem","mdma","204"
"788","mdve2","90006","Ghetto_Chem","mdma","204"
"45618","cannabis-sam","90006","Ghetto_Chem","mdma","204"
"2610","brainwaxd","90006","Ghetto_Chem","mdma","204"
"62","BA","90006","Ghetto_Chem","mdma","204"
"63028","Smirnoff","90006","Ghetto_Chem","mdma","204"
"1595","Curtains","90006","Ghetto_Chem","mdma","204"
"35486","NeuroChi","90006","Ghetto_Chem","mdma","204"
"1842","nymphetamine","90006","Ghetto_Chem","mdma","204"
"4218","TheLight01","90006","Ghetto_Chem","mdma","204"
"6052","KomodoMK","90006","Ghetto_Chem","mdma","204"
"59051","Priapism9","90006","Ghetto_Chem","mdma","204"
"2709","risexagainst","90006","Ghetto_Chem","mdma","204"
"539","stndguy","90006","Ghetto_Chem","mdma","204"
"90006","Ghetto_Chem","180313","out_there","mdma","204"
"1","Alfa","90006","Ghetto_Chem","mdma","204"
"4495","vhalin","90006","Ghetto_Chem","mdma","204"
"1806","betty_bupe","90006","Ghetto_Chem","mdma","204"
"54108","Alexander_Praves","90006","Ghetto_Chem","mdma","204"
"2418","Phungushead","90006","Ghetto_Chem","mdma","204"
"1562","soer","90006","Ghetto_Chem","mdma","204"
"7303","pankreeas ","90006","Ghetto_Chem","mdma","204"
"57101","Terrapinzflyer ","90006","Ghetto_Chem","mdma","204"
"56","Hollywood ","90006","Ghetto_Chem","mdma","204"
"1868","Paderas","90006","Ghetto_Chem","mdma","204"
"10467","WrtngCocaineTutorial","90006","Ghetto_Chem","mdma","204"
"9","Freedom of Mind","98407","phenythylamine","dxm","203"
"56520","Christian1122","127014","MikePatton","adderall","203"
"28015","riaahacker","56520","Christian1122","adderall","203"
"56520","Christian1122","115136","trdofbeingtrd","adderall","203"
"28015","riaahacker","98407","phenythylamine","dxm","203"
"657","distilla_truant","98407","phenythylamine","dxm","203"
"8671","Richard_smoker","98407","phenythylamine","dxm","203"
"35486","NeuroChi","56520","Christian1122","adderall","203"
"98407","phenythylamine","156304","PillMan","dxm","203"
"313","RoboCop ","98407","phenythylamine","dxm","203"
"46889","port 21","98407","phenythylamine","dxm","203"
"98407","phenythylamine","180313","out_there","dxm","203"
"2418","Phungushead","98407","phenythylamine","dxm","203"
"46865","dyingtomorrow","56520","Christian1122","adderall","203"
"56520","Christian1122","202594","headfull0fstars","adderall","203"
"1023","btoddw2","56520","Christian1122","adderall","203"
"4495","vhalin","56520","Christian1122","adderall","203"
"45618","cannabis-sam","56520","Christian1122","adderall","203"
"56520","Christian1122","63028","Smirnoff","adderall","203"
"1842","nymphetamine","56520","Christian1122","adderall","203"
"56","Hollywood ","56520","Christian1122","adderall","203"
"56520","Christian1122","71487","robotripper","adderall","203"
"1868","Paderas","56520","Christian1122","adderall","203"
"75764","lololsolid","98407","phenythylamine","dxm","203"
"98407","phenythylamine","161625","mrcowman","dxm","203"
"1","Alfa","56520","Christian1122","adderall","203"
"98407","phenythylamine","202594","headfull0fstars","dxm","203"
"5750","pharmapsyche","56520","Christian1122","adderall","203"
"1","Alfa","1808","xxgaretjaxx","datura","202"
"1","Alfa","1868","Paderas","datura","202"
"1","Alfa","7303","pankreeas ","datura","202"
"1","Alfa","127014","MikePatton","datura","202"
"3565","amd6568","46889","port 21","dextromethorphan","201"
"3565","amd6568","28015","riaahacker","dextromethorphan","201"
"3565","amd6568","98407","phenythylamine","dxm","201"
"3565","amd6568","156304","PillMan","dxm","201"
"3565","amd6568","46889","port 21","dxm","201"
"3565","amd6568","8671","Richard_smoker","dxm","201"
"3565","amd6568","28015","riaahacker","dxm","201"
"9","Freedom of Mind","3565","amd6568","dxm","201"
"3565","amd6568","8671","Richard_smoker","dextromethorphan","201"
"9","Freedom of Mind","3565","amd6568","dextromethorphan","201"
"657","distilla_truant","3565","amd6568","dxm","201"
"3565","amd6568","75764","lololsolid","dxm","201"
"657","distilla_truant","3565","amd6568","dextromethorphan","201"
"3565","amd6568","161625","mrcowman","dxm","201"
"313","RoboCop ","3565","amd6568","dxm","201"
"3565","amd6568","180313","out_there","dxm","201"
"3565","amd6568","202594","headfull0fstars","dxm","201"
"2418","Phungushead","3565","amd6568","dxm","201"
"9","Freedom of Mind","1842","nymphetamine","adderall","200"
"9","Freedom of Mind","35486","NeuroChi","adderall","200"
"9","Freedom of Mind","56520","Christian1122","adderall","200"
"9","Freedom of Mind","5750","pharmapsyche","adderall","200"
"9","Freedom of Mind","45618","cannabis-sam","adderall","200"
"9","Freedom of Mind","56","Hollywood ","adderall","200"
"9","Freedom of Mind","4495","vhalin","adderall","200"
"1","Alfa","9","Freedom of Mind","adderall","200"
"9","Freedom of Mind","1868","Paderas","adderall","200"
"9","Freedom of Mind","28015","riaahacker","adderall","200"
"9","Freedom of Mind","71487","robotripper","adderall","200"
"9","Freedom of Mind","1023","btoddw2","adderall","200"
"9","Freedom of Mind","46865","dyingtomorrow","adderall","200"
"9","Freedom of Mind","202594","headfull0fstars","adderall","200"
"9","Freedom of Mind","127014","MikePatton","adderall","200"
"9","Freedom of Mind","63028","Smirnoff","adderall","200"
"9","Freedom of Mind","115136","trdofbeingtrd","adderall","200"
"28015","riaahacker","79947","TheBigBadWolf","methadone","199"
"35486","NeuroChi","79947","TheBigBadWolf","methadone","199"
"28899","Esmerelda","79947","TheBigBadWolf","methadone","199"
"1595","Curtains","79947","TheBigBadWolf","methadone","199"
"79947","TheBigBadWolf","81101","source","methadone","199"
"79947","TheBigBadWolf","181260","Kitts","methadone","199"
"79947","TheBigBadWolf","194301","rosielee","methadone","199"
"79947","TheBigBadWolf","127014","MikePatton","methadone","199"
"79947","TheBigBadWolf","202594","headfull0fstars","methadone","199"
"46446","EyesOfTheWorld","79947","TheBigBadWolf","methadone","199"
"45618","cannabis-sam","79947","TheBigBadWolf","methadone","199"
"1842","nymphetamine","79947","TheBigBadWolf","methadone","199"
"45599","On The Nod","79947","TheBigBadWolf","methadone","199"
"46865","dyingtomorrow","79947","TheBigBadWolf","methadone","199"
"63028","Smirnoff","79947","TheBigBadWolf","methadone","199"
"79947","TheBigBadWolf","273791","Roaddoggy","methadone","199"
"2418","Phungushead","79947","TheBigBadWolf","methadone","199"
"6201","SkUnKaDeLiC","79947","TheBigBadWolf","methadone","199"
"79947","TheBigBadWolf","118772","Mr_Spiffy","methadone","199"
"79947","TheBigBadWolf","100767","missinglfe","methadone","199"
"79947","TheBigBadWolf","102824","natey7","methadone","199"
"79947","TheBigBadWolf","115136","trdofbeingtrd","methadone","199"
"9","Freedom of Mind","63028","Smirnoff","alprazolam","196"
"9","Freedom of Mind","118772","Mr_Spiffy","hydromorphone","196"
"9","Freedom of Mind","180313","out_there","morphine","196"
"9","Freedom of Mind","1842","nymphetamine","diazepam","196"
"9","Freedom of Mind","1842","nymphetamine","hydrocodone","196"
"9","Freedom of Mind","6201","SkUnKaDeLiC","bromazepam","196"
"9","Freedom of Mind","83387","PrincessJo x","codeine","196"
"9","Freedom of Mind","28015","riaahacker","alprazolam","196"
"9","Freedom of Mind","1595","Curtains","vicodin","196"
"9","Freedom of Mind","3299","anabolictrio","morphine","196"
"9","Freedom of Mind","6201","SkUnKaDeLiC","flunitrazepam","196"
"9","Freedom of Mind","256377","detoxin momma","tramadol","196"
"9","Freedom of Mind","28015","riaahacker","baclofen","196"
"9","Freedom of Mind","28899","Esmerelda","codeine","196"
"9","Freedom of Mind","4495","vhalin","vicodin","196"
"9","Freedom of Mind","56","Hollywood ","morphine","196"
"9","Freedom of Mind","5010","snapper ","lorazepam","196"
"9","Freedom of Mind","118772","Mr_Spiffy","codeine","196"
"9","Freedom of Mind","156304","PillMan","tramadol","196"
"9","Freedom of Mind","1842","nymphetamine","vicodin","196"
"9","Freedom of Mind","4495","vhalin","morphine","196"
"9","Freedom of Mind","6201","SkUnKaDeLiC","temazepam","196"
"9","Freedom of Mind","6201","SkUnKaDeLiC","lorazepam","196"
"9","Freedom of Mind","45599","On The Nod","codeine","196"
"9","Freedom of Mind","56","Hollywood ","tramadol","196"
"9","Freedom of Mind","35486","NeuroChi","vicodin","196"
"9","Freedom of Mind","1868","Paderas","morphine","196"
"1","Alfa","9","Freedom of Mind","tramadol","196"
"9","Freedom of Mind","61180","Helene ","codeine","196"
"9","Freedom of Mind","4495","vhalin","tramadol","196"
"9","Freedom of Mind","3299","anabolictrio","hydrocodone","196"
"9","Freedom of Mind","56","Hollywood ","clonazepam","196"
"9","Freedom of Mind","28015","riaahacker","morphine","196"
"9","Freedom of Mind","6201","SkUnKaDeLiC","nitrazepam","196"
"9","Freedom of Mind","63028","Smirnoff","codeine","196"
"9","Freedom of Mind","56","Hollywood ","diazepam","196"
"9","Freedom of Mind","28015","riaahacker","tramadol","196"
"9","Freedom of Mind","42985","EducatedUser408","ghb","196"
"9","Freedom of Mind","156304","PillMan","hydrocodone","196"
"9","Freedom of Mind","63028","Smirnoff","clonazepam","196"
"9","Freedom of Mind","46865","dyingtomorrow","morphine","196"
"9","Freedom of Mind","1842","nymphetamine","codeine","196"
"9","Freedom of Mind","18769","samuraigecko","morphine","196"
"9","Freedom of Mind","63028","Smirnoff","diazepam","196"
"9","Freedom of Mind","1842","nymphetamine","tramadol","196"
"9","Freedom of Mind","1842","nymphetamine","ghb","196"
"9","Freedom of Mind","56","Hollywood ","hydrocodone","196"
"9","Freedom of Mind","2418","Phungushead","clonazepam","196"
"9","Freedom of Mind","2418","Phungushead","morphine","196"
"9","Freedom of Mind","4495","vhalin","alprazolam","196"
"9","Freedom of Mind","45599","On The Nod","hydromorphone","196"
"9","Freedom of Mind","28899","Esmerelda","morphine","196"
"9","Freedom of Mind","28015","riaahacker","diazepam","196"
"9","Freedom of Mind","35486","NeuroChi","tramadol","196"
"9","Freedom of Mind","28015","riaahacker","hydrocodone","196"
"9","Freedom of Mind","180313","out_there","bromazepam","196"
"9","Freedom of Mind","1023","btoddw2","codeine","196"
"9","Freedom of Mind","6201","SkUnKaDeLiC","alprazolam","196"
"9","Freedom of Mind","49040","rokman nash","vicodin","196"
"9","Freedom of Mind","4495","vhalin","hydromorphone","196"
"9","Freedom of Mind","118772","Mr_Spiffy","morphine","196"
"9","Freedom of Mind","35486","NeuroChi","hydrocodone","196"
"9","Freedom of Mind","180313","out_there","baclofen","196"
"9","Freedom of Mind","3375","MrJim","codeine","196"
"9","Freedom of Mind","2066","~lostgurl~ ","vicodin","196"
"9","Freedom of Mind","45599","On The Nod","morphine","196"
"1","Alfa","9","Freedom of Mind","morphine","196"
"9","Freedom of Mind","2418","Phungushead","baclofen","196"
"9","Freedom of Mind","180313","out_there","codeine","196"
"1","Alfa","9","Freedom of Mind","alprazolam","196"
"9","Freedom of Mind","180313","out_there","tramadol","196"
"9","Freedom of Mind","28015","riaahacker","vicodin","196"
"9","Freedom of Mind","7303","pankreeas ","morphine","196"
"9","Freedom of Mind","180313","out_there","temazepam","196"
"9","Freedom of Mind","180313","out_there","lorazepam","196"
"9","Freedom of Mind","100767","missinglfe","codeine","196"
"9","Freedom of Mind","45618","cannabis-sam","tramadol","196"
"9","Freedom of Mind","46865","dyingtomorrow","vicodin","196"
"9","Freedom of Mind","63028","Smirnoff","morphine","196"
"9","Freedom of Mind","1842","nymphetamine","temazepam","196"
"9","Freedom of Mind","1842","nymphetamine","lorazepam","196"
"9","Freedom of Mind","56","Hollywood ","codeine","196"
"9","Freedom of Mind","127014","MikePatton","tramadol","196"
"9","Freedom of Mind","118772","Mr_Spiffy","hydrocodone","196"
"9","Freedom of Mind","180313","out_there","clonazepam","196"
"9","Freedom of Mind","1329","khonsu13","morphine","196"
"9","Freedom of Mind","180313","out_there","nitrazepam","196"
"9","Freedom of Mind","180313","out_there","ghb","196"
"1","Alfa","9","Freedom of Mind","diazepam","196"
"9","Freedom of Mind","4495","vhalin","codeine","196"
"9","Freedom of Mind","1023","btoddw2","diazepam","196"
"9","Freedom of Mind","63028","Smirnoff","tramadol","196"
"9","Freedom of Mind","164373","mar1ne","hydrocodone","196"
"9","Freedom of Mind","202594","headfull0fstars","clonazepam","196"
"9","Freedom of Mind","1842","nymphetamine","morphine","196"
"9","Freedom of Mind","28015","riaahacker","codeine","196"
"9","Freedom of Mind","4495","vhalin","diazepam","196"
"9","Freedom of Mind","38632","PilL FreaK","tramadol","196"
"9","Freedom of Mind","3413","radiometer ","ghb","196"
"9","Freedom of Mind","45618","cannabis-sam","hydrocodone","196"
"9","Freedom of Mind","6201","SkUnKaDeLiC","clonazepam","196"
"9","Freedom of Mind","35486","NeuroChi","morphine","196"
"1","Alfa","9","Freedom of Mind","ghb","196"
"9","Freedom of Mind","56","Hollywood ","alprazolam","196"
"9","Freedom of Mind","3375","MrJim","hydromorphone","196"
"9","Freedom of Mind","35486","NeuroChi","codeine","196"
"9","Freedom of Mind","5010","snapper ","morphine","196"
"9","Freedom of Mind","6201","SkUnKaDeLiC","diazepam","196"
"9","Freedom of Mind","2418","Phungushead","tramadol","196"
"9","Freedom of Mind","4495","vhalin","hydrocodone","196"
"1842","nymphetamine","16489","baron samedi","methadone","195"
"1684","CABS205","1842","nymphetamine","codeine","195"
"16489","baron samedi","127014","MikePatton","methadone","195"
"1023","btoddw2","1684","CABS205","codeine","195"
"16489","baron samedi","45599","On The Nod","methadone","195"
"3471","Potassium Kid","20109","imyourlittlebare","mephedrone","195"
"1684","CABS205","5010","snapper ","kava","195"
"16489","baron samedi","202594","headfull0fstars","methadone","195"
"16489","baron samedi","79947","TheBigBadWolf","methadone","195"
"3471","Potassium Kid","45583","Synesthesiac","mephedrone","195"
"1684","CABS205","83387","PrincessJo x","codeine","195"
"2418","Phungushead","16489","baron samedi","methadone","195"
"1684","CABS205","63028","Smirnoff","kava","195"
"1023","btoddw2","1684","CABS205","promethazine","195"
"6201","SkUnKaDeLiC","16489","baron samedi","methadone","195"
"1526","Cuberun ","3471","Potassium Kid","mephedrone","195"
"16489","baron samedi","46865","dyingtomorrow","methadone","195"
"16489","baron samedi","28899","Esmerelda","methadone","195"
"3471","Potassium Kid","4092","trptamene ","mephedrone","195"
"1684","CABS205","28899","Esmerelda","codeine","195"
"1842","nymphetamine","3471","Potassium Kid","mephedrone","195"
"16489","baron samedi","46446","EyesOfTheWorld","methadone","195"
"3471","Potassium Kid","28015","riaahacker","mephedrone","195"
"1684","CABS205","118772","Mr_Spiffy","codeine","195"
"1684","CABS205","45618","cannabis-sam","nutmeg","195"
"16489","baron samedi","181260","Kitts","methadone","195"
"1684","CABS205","45599","On The Nod","codeine","195"
"1684","CABS205","13189","augentier ","nutmeg","195"
"1868","Paderas","3471","Potassium Kid","mephedrone","195"
"16489","baron samedi","194301","rosielee","methadone","195"
"1684","CABS205","4495","vhalin","codeine","195"
"1684","CABS205","3299","anabolictrio","melatonin","195"
"1684","CABS205","28015","riaahacker","codeine","195"
"16489","baron samedi","102824","natey7","methadone","195"
"1684","CABS205","35486","NeuroChi","codeine","195"
"16489","baron samedi","63028","Smirnoff","methadone","195"
"56","Hollywood ","1684","CABS205","codeine","195"
"3471","Potassium Kid","53567","buzzman","mephedrone","195"
"16489","baron samedi","115136","trdofbeingtrd","methadone","195"
"3471","Potassium Kid","62508","Makesmefeelbig","mephedrone","195"
"1684","CABS205","4495","vhalin","kava","195"
"1595","Curtains","16489","baron samedi","methadone","195"
"16489","baron samedi","28015","riaahacker","methadone","195"
"16489","baron samedi","273791","Roaddoggy","methadone","195"
"3471","Potassium Kid","4495","vhalin","mephedrone","195"
"1684","CABS205","3375","MrJim","codeine","195"
"1684","CABS205","1842","nymphetamine","kava","195"
"16489","baron samedi","35486","NeuroChi","methadone","195"
"16489","baron samedi","81101","source","methadone","195"
"3471","Potassium Kid","57101","Terrapinzflyer ","mephedrone","195"
"1684","CABS205","180313","out_there","codeine","195"
"153","blaze","3471","Potassium Kid","mephedrone","195"
"16489","baron samedi","118772","Mr_Spiffy","methadone","195"
"3471","Potassium Kid","8016","chillinwill","mephedrone","195"
"1684","CABS205","100767","missinglfe","codeine","195"
"1684","CABS205","40688","69Ron","nutmeg","195"
"16489","baron samedi","100767","missinglfe","methadone","195"
"1684","CABS205","61180","Helene ","codeine","195"
"1","Alfa","3471","Potassium Kid","mephedrone","195"
"1684","CABS205","63028","Smirnoff","codeine","195"
"16489","baron samedi","45618","cannabis-sam","methadone","195"
"9","Freedom of Mind","1684","CABS205","codeine","195"
"4495","vhalin","14069","Drugaddict","shroom","194"
"4969","kaide","14069","Drugaddict","shroom","194"
"15","Sammi","14069","Drugaddict","shroom","194"
"35486","NeuroChi","227635","Jels","buprenorphine","194"
"1","Alfa","14069","Drugaddict","shroom","194"
"3565","amd6568","14069","Drugaddict","salvia divinorum","194"
"1842","nymphetamine","14069","Drugaddict","salvia divinorum","194"
"14069","Drugaddict","38813","waffles","shroom","194"
"14069","Drugaddict","54108","Alexander_Praves","shroom","194"
"2066","~lostgurl~ ","14069","Drugaddict","shroom","194"
"14069","Drugaddict","63028","Smirnoff","shroom","194"
"3299","anabolictrio","227635","Jels","buprenorphine","194"
"1562","soer","14069","Drugaddict","shroom","194"
"1806","betty_bupe","14069","Drugaddict","shroom","194"
"10467","WrtngCocaineTutorial","14069","Drugaddict","shroom","194"
"1808","xxgaretjaxx","14069","Drugaddict","shroom","194"
"1595","Curtains","14069","Drugaddict","shroom","194"
"1842","nymphetamine","14069","Drugaddict","shroom","194"
"2418","Phungushead","227635","Jels","buprenorphine","194"
"539","stndguy","14069","Drugaddict","shroom","194"
"1868","Paderas","14069","Drugaddict","shroom","194"
"14069","Drugaddict","45618","cannabis-sam","shroom","194"
"3732","Diphenhydramine","14069","Drugaddict","shroom","194"
"14069","Drugaddict","127014","MikePatton","shroom","194"
"15","Sammi","14069","Drugaddict","salvia divinorum","194"
"9019","Forthesevenlakes","227635","Jels","buprenorphine","194"
"2610","brainwaxd","14069","Drugaddict","shroom","194"
"14069","Drugaddict","35486","NeuroChi","shroom","194"
"1752","Gurnie","14069","Drugaddict","salvia divinorum","194"
"4910","Fantasian","7303","pankreeas ","morphine","192"
"3299","anabolictrio","4910","Fantasian","morphine","192"
"4910","Fantasian","28015","riaahacker","morphine","192"
"1","Alfa","4910","Fantasian","morphine","192"
"4910","Fantasian","35486","NeuroChi","morphine","192"
"4910","Fantasian","5010","snapper ","morphine","192"
"4910","Fantasian","180313","out_there","morphine","192"
"4910","Fantasian","45599","On The Nod","morphine","192"
"4910","Fantasian","63028","Smirnoff","morphine","192"
"4495","vhalin","4910","Fantasian","morphine","192"
"2418","Phungushead","4910","Fantasian","morphine","192"
"4910","Fantasian","46865","dyingtomorrow","morphine","192"
"1329","khonsu13","4910","Fantasian","morphine","192"
"4910","Fantasian","18769","samuraigecko","morphine","192"
"1868","Paderas","4910","Fantasian","morphine","192"
"56","Hollywood ","4910","Fantasian","morphine","192"
"1842","nymphetamine","4910","Fantasian","morphine","192"
"9","Freedom of Mind","4910","Fantasian","morphine","192"
"4910","Fantasian","28899","Esmerelda","morphine","192"
"4910","Fantasian","118772","Mr_Spiffy","morphine","192"
"7946","788.4","28899","Esmerelda","methadone","189"
"7946","788.4","63028","Smirnoff","morphine","189"
"2763","bogumil","156304","PillMan","kratom","189"
"7946","788.4","59051","Priapism9","mdma","189"
"4495","vhalin","7946","788.4","xanax","189"
"20234","ianzombie ","156304","PillMan","kratom","189"
"856","str8ballin","7946","788.4","valium","189"
"56","Hollywood ","7946","788.4","codeine","189"
"7946","788.4","83387","PrincessJo x","codeine","189"
"1714","magicmaster141","4495","vhalin","xanax","189"
"1714","magicmaster141","4495","vhalin","alprazolam","189"
"7946","788.4","46865","dyingtomorrow","morphine","189"
"4495","vhalin","7946","788.4","morphine","189"
"2418","Phungushead","7946","788.4","morphine","189"
"7946","788.4","127014","MikePatton","mdma","189"
"1842","nymphetamine","156304","PillMan","kratom","189"
"7946","788.4","46446","EyesOfTheWorld","methadone","189"
"7946","788.4","180313","out_there","codeine","189"
"1714","magicmaster141","6201","SkUnKaDeLiC","xanax","189"
"1","Alfa","1714","magicmaster141","alprazolam","189"
"1714","magicmaster141","6201","SkUnKaDeLiC","alprazolam","189"
"7946","788.4","63028","Smirnoff","mdma","189"
"1714","magicmaster141","180313","out_there","lorazepam","189"
"7946","788.4","68194","baZING","oxycodone","189"
"9","Freedom of Mind","7946","788.4","temazepam","189"
"1595","Curtains","7946","788.4","methadone","189"
"7946","788.4","181260","Kitts","methadone","189"
"7946","788.4","100767","missinglfe","codeine","189"
"1714","magicmaster141","273439","marathonmel7","xanax","189"
"1","Alfa","7946","788.4","mdma","189"
"1806","betty_bupe","7946","788.4","mdma","189"
"1329","khonsu13","7946","788.4","morphine","189"
"1714","magicmaster141","1842","nymphetamine","lorazepam","189"
"1","Alfa","7946","788.4","valium","189"
"7946","788.4","156304","PillMan","oxycodone","189"
"4495","vhalin","7946","788.4","valium","189"
"1213","Psilocybe S.","7946","788.4","xanax","189"
"4495","vhalin","7946","788.4","mdma","189"
"7946","788.4","45618","cannabis-sam","valium","189"
"1842","nymphetamine","7946","788.4","codeine","189"
"7946","788.4","194301","rosielee","methadone","189"
"7946","788.4","61180","Helene ","codeine","189"
"1714","magicmaster141","180313","out_there","clonazepam","189"
"1714","magicmaster141","35486","NeuroChi","xanax","189"
"2418","Phungushead","7946","788.4","mdma","189"
"56","Hollywood ","7946","788.4","oxycodone","189"
"9","Freedom of Mind","1714","magicmaster141","clonazepam","189"
"7946","788.4","63028","Smirnoff","oxycodone","189"
"1562","soer","7946","788.4","mdma","189"
"7946","788.4","46865","dyingtomorrow","valium","189"
"5010","snapper ","7946","788.4","morphine","189"
"56","Hollywood ","7946","788.4","valium","189"
"7946","788.4","102824","natey7","methadone","189"
"7946","788.4","28899","Esmerelda","xanax","189"
"1","Alfa","1714","magicmaster141","xanax","189"
"7946","788.4","28015","riaahacker","codeine","189"
"1714","magicmaster141","63028","Smirnoff","clonazepam","189"
"4495","vhalin","156304","PillMan","kratom","189"
"856","str8ballin","7946","788.4","xanax","189"
"56","Hollywood ","1714","magicmaster141","clonazepam","189"
"4910","Fantasian","7946","788.4","morphine","189"
"156304","PillMan","273791","Roaddoggy","kratom","189"
"7946","788.4","46865","dyingtomorrow","oxycodone","189"
"1868","Paderas","7946","788.4","morphine","189"
"2418","Phungushead","7946","788.4","valium","189"
"56","Hollywood ","7946","788.4","morphine","189"
"1842","nymphetamine","7946","788.4","morphine","189"
"7946","788.4","63028","Smirnoff","methadone","189"
"1239","Nicaine","156304","PillMan","kratom","189"
"1714","magicmaster141","2418","Phungushead","clonazepam","189"
"7946","788.4","18769","samuraigecko","morphine","189"
"7303","pankreeas ","7946","788.4","mdma","189"
"7946","788.4","90006","Ghetto_Chem","mdma","189"
"9","Freedom of Mind","7946","788.4","morphine","189"
"7946","788.4","63028","Smirnoff","xanax","189"
"856","str8ballin","7946","788.4","lithium","189"
"156304","PillMan","294051","Jungledog","kratom","189"
"1","Alfa","1714","magicmaster141","klonopin","189"
"1714","magicmaster141","7946","788.4","xanax","189"
"7946","788.4","115136","trdofbeingtrd","methadone","189"
"7946","788.4","16489","baron samedi","methadone","189"
"1842","nymphetamine","7946","788.4","temazepam","189"
"743","madman3l6","7946","788.4","xanax","189"
"1842","nymphetamine","7946","788.4","oxycodone","189"
"9","Freedom of Mind","1714","magicmaster141","alprazolam","189"
"7946","788.4","180313","out_there","morphine","189"
"3299","anabolictrio","7946","788.4","xanax","189"
"7946","788.4","180313","out_there","mdma","189"
"1714","magicmaster141","1806","betty_bupe","midazolam","189"
"7946","788.4","273439","marathonmel7","xanax","189"
"56","Hollywood ","7946","788.4","mdma","189"
"56","Hollywood ","7946","788.4","xanax","189"
"1714","magicmaster141","2418","Phungushead","clorazepate","189"
"9","Freedom of Mind","7946","788.4","codeine","189"
"1868","Paderas","7946","788.4","mdma","189"
"1714","magicmaster141","3299","anabolictrio","xanax","189"
"7946","788.4","28015","riaahacker","methadone","189"
"7946","788.4","273791","Roaddoggy","methadone","189"
"7946","788.4","45599","On The Nod","morphine","189"
"1842","nymphetamine","7946","788.4","methadone","189"
"7946","788.4","45618","cannabis-sam","mdma","189"
"1842","nymphetamine","7946","788.4","xanax","189"
"1808","xxgaretjaxx","7946","788.4","xanax","189"
"6201","SkUnKaDeLiC","7946","788.4","temazepam","189"
"1714","magicmaster141","1808","xxgaretjaxx","xanax","189"
"7946","788.4","35486","NeuroChi","methadone","189"
"3299","anabolictrio","7946","788.4","morphine","189"
"7946","788.4","81101","source","methadone","189"
"7303","pankreeas ","7946","788.4","oxycodone","189"
"7946","788.4","28015","riaahacker","morphine","189"
"1023","btoddw2","7946","788.4","codeine","189"
"7303","pankreeas ","7946","788.4","morphine","189"
"7946","788.4","54108","Alexander_Praves","mdma","189"
"2418","Phungushead","156304","PillMan","kratom","189"
"2418","Phungushead","7946","788.4","oxycodone","189"
"9","Freedom of Mind","1714","magicmaster141","flunitrazepam","189"
"1","Alfa","7946","788.4","morphine","189"
"7946","788.4","28899","Esmerelda","codeine","189"
"1714","magicmaster141","63028","Smirnoff","xanax","189"
"1714","magicmaster141","63028","Smirnoff","alprazolam","189"
"1842","nymphetamine","38015","davestate ","ethylphenidate","189"
"7946","788.4","35486","NeuroChi","morphine","189"
"7946","788.4","57101","Terrapinzflyer ","mdma","189"
"1714","magicmaster141","5010","snapper ","lorazepam","189"
"7946","788.4","118772","Mr_Spiffy","methadone","189"
"7946","788.4","118772","Mr_Spiffy","codeine","189"
"3345","Unsolved","7946","788.4","mdma","189"
"9","Freedom of Mind","1714","magicmaster141","lorazepam","189"
"3732","Diphenhydramine","7946","788.4","mdma","189"
"1684","CABS205","7946","788.4","codeine","189"
"1714","magicmaster141","28015","riaahacker","xanax","189"
"135","sands of time","156304","PillMan","kratom","189"
"4910","Fantasian","7946","788.4","mdma","189"
"2418","Phungushead","7946","788.4","methadone","189"
"13344","drewcil","156304","PillMan","kratom","189"
"1714","magicmaster141","28015","riaahacker","alprazolam","189"
"127014","MikePatton","156304","PillMan","kratom","189"
"7946","788.4","35486","NeuroChi","mdma","189"
"1714","magicmaster141","6201","SkUnKaDeLiC","lorazepam","189"
"56","Hollywood ","1714","magicmaster141","alprazolam","189"
"7946","788.4","118772","Mr_Spiffy","oxycodone","189"
"788","mdve2","7946","788.4","mdma","189"
"1213","Psilocybe S.","1714","magicmaster141","xanax","189"
"6201","SkUnKaDeLiC","7946","788.4","methadone","189"
"7946","788.4","28899","Esmerelda","valium","189"
"7946","788.4","100767","missinglfe","methadone","189"
"7946","788.4","45599","On The Nod","codeine","189"
"103726","seaturtle","156304","PillMan","kratom","189"
"1714","magicmaster141","1842","nymphetamine","xanax","189"
"28015","riaahacker","156304","PillMan","kratom","189"
"7946","788.4","180313","out_there","oxycodone","189"
"3375","MrJim","7946","788.4","codeine","189"
"4495","vhalin","7946","788.4","oxycodone","189"
"7946","788.4","63028","Smirnoff","valium","189"
"7946","788.4","45618","cannabis-sam","methadone","189"
"7946","788.4","63028","Smirnoff","codeine","189"
"1714","magicmaster141","202594","headfull0fstars","clonazepam","189"
"856","str8ballin","1714","magicmaster141","xanax","189"
"2610","brainwaxd","7946","788.4","mdma","189"
"1714","magicmaster141","2418","Phungushead","xanax","189"
"62","BA","7946","788.4","mdma","189"
"2418","Phungushead","7946","788.4","xanax","189"
"6201","SkUnKaDeLiC","7946","788.4","valium","189"
"156304","PillMan","157358","CrispCold","kratom","189"
"1714","magicmaster141","28015","riaahacker","klonopin","189"
"7946","788.4","294051","Jungledog","oxycodone","189"
"7946","788.4","127014","MikePatton","methadone","189"
"1","Alfa","7946","788.4","xanax","189"
"7946","788.4","35486","NeuroChi","codeine","189"
"1714","magicmaster141","6201","SkUnKaDeLiC","clonazepam","189"
"118772","Mr_Spiffy","156304","PillMan","kratom","189"
"1023","btoddw2","7946","788.4","valium","189"
"35486","NeuroChi","156304","PillMan","kratom","189"
"1595","Curtains","7946","788.4","mdma","189"
"7946","788.4","45618","cannabis-sam","xanax","189"
"156304","PillMan","273439","marathonmel7","kratom","189"
"1714","magicmaster141","2418","Phungushead","flurazepam","189"
"7946","788.4","35486","NeuroChi","oxycodone","189"
"155253","MachoManSavage","156304","PillMan","kratom","189"
"7946","788.4","180313","out_there","temazepam","189"
"7946","788.4","45599","On The Nod","methadone","189"
"743","madman3l6","1714","magicmaster141","xanax","189"
"6201","SkUnKaDeLiC","7946","788.4","xanax","189"
"7946","788.4","28899","Esmerelda","morphine","189"
"1842","nymphetamine","7946","788.4","valium","189"
"1842","nymphetamine","7946","788.4","mdma","189"
"7946","788.4","15564","Le Junk","mdma","189"
"4218","TheLight01","7946","788.4","mdma","189"
"1714","magicmaster141","180313","out_there","midazolam","189"
"6052","KomodoMK","7946","788.4","mdma","189"
"7946","788.4","28015","riaahacker","xanax","189"
"56","Hollywood ","1714","magicmaster141","xanax","189"
"3299","anabolictrio","7946","788.4","valium","189"
"1714","magicmaster141","6201","SkUnKaDeLiC","flunitrazepam","189"
"1714","magicmaster141","28899","Esmerelda","xanax","189"
"7946","788.4","202594","headfull0fstars","methadone","189"
"7946","788.4","79947","TheBigBadWolf","methadone","189"
"7946","788.4","118772","Mr_Spiffy","morphine","189"
"7946","788.4","10467","WrtngCocaineTutorial","mdma","189"
"1714","magicmaster141","6201","SkUnKaDeLiC","midazolam","189"
"1","Alfa","156304","PillMan","kratom","189"
"4495","vhalin","7946","788.4","codeine","189"
"7946","788.4","35486","NeuroChi","xanax","189"
"2709","risexagainst","7946","788.4","mdma","189"
"1714","magicmaster141","45618","cannabis-sam","xanax","189"
"539","stndguy","7946","788.4","mdma","189"
"7946","788.4","46865","dyingtomorrow","methadone","189"
"3167","bubaloo","6201","SkUnKaDeLiC","alprazolam","187"
"3167","bubaloo","273439","marathonmel7","xanax","187"
"9","Freedom of Mind","3167","bubaloo","flunitrazepam","187"
"1714","magicmaster141","3167","bubaloo","lorazepam","187"
"2539","Beltane","28899","Esmerelda","valium","187"
"9","Freedom of Mind","3167","bubaloo","lorazepam","187"
"56","Hollywood ","3167","bubaloo","alprazolam","187"
"1213","Psilocybe S.","3167","bubaloo","xanax","187"
"2418","Phungushead","3167","bubaloo","clonazepam","187"
"2539","Beltane","45618","cannabis-sam","valium","187"
"3167","bubaloo","180313","out_there","clonazepam","187"
"3167","bubaloo","180313","out_there","temazepam","187"
"2539","Beltane","63028","Smirnoff","valium","187"
"3167","bubaloo","63028","Smirnoff","clonazepam","187"
"856","str8ballin","3167","bubaloo","xanax","187"
"2418","Phungushead","3167","bubaloo","xanax","187"
"2539","Beltane","46865","dyingtomorrow","valium","187"
"3167","bubaloo","28899","Esmerelda","xanax","187"
"1023","btoddw2","2539","Beltane","valium","187"
"1714","magicmaster141","3167","bubaloo","flurazepam","187"
"743","madman3l6","3167","bubaloo","xanax","187"
"1842","nymphetamine","2539","Beltane","valium","187"
"3167","bubaloo","45618","cannabis-sam","xanax","187"
"56","Hollywood ","3167","bubaloo","xanax","187"
"1714","magicmaster141","3167","bubaloo","flunitrazepam","187"
"3167","bubaloo","180313","out_there","lorazepam","187"
"3167","bubaloo","63028","Smirnoff","xanax","187"
"3167","bubaloo","6201","SkUnKaDeLiC","flunitrazepam","187"
"3167","bubaloo","63028","Smirnoff","alprazolam","187"
"2418","Phungushead","3167","bubaloo","flurazepam","187"
"3167","bubaloo","28015","riaahacker","xanax","187"
"856","str8ballin","2539","Beltane","valium","187"
"1714","magicmaster141","3167","bubaloo","alprazolam","187"
"3167","bubaloo","28015","riaahacker","alprazolam","187"
"3167","bubaloo","35486","NeuroChi","xanax","187"
"2539","Beltane","7946","788.4","valium","187"
"2418","Phungushead","3167","bubaloo","trazodone","187"
"1","Alfa","3167","bubaloo","alprazolam","187"
"9","Freedom of Mind","3167","bubaloo","temazepam","187"
"2539","Beltane","3299","anabolictrio","valium","187"
"1","Alfa","2539","Beltane","valium","187"
"3167","bubaloo","7946","788.4","temazepam","187"
"2539","Beltane","4495","vhalin","valium","187"
"1842","nymphetamine","3167","bubaloo","lorazepam","187"
"1714","magicmaster141","3167","bubaloo","clonazepam","187"
"3167","bubaloo","202594","headfull0fstars","clonazepam","187"
"9","Freedom of Mind","3167","bubaloo","clonazepam","187"
"3167","bubaloo","6201","SkUnKaDeLiC","temazepam","187"
"2539","Beltane","6201","SkUnKaDeLiC","valium","187"
"56","Hollywood ","2539","Beltane","valium","187"
"1","Alfa","3167","bubaloo","xanax","187"
"3167","bubaloo","6201","SkUnKaDeLiC","clonazepam","187"
"3167","bubaloo","7946","788.4","xanax","187"
"56","Hollywood ","3167","bubaloo","clonazepam","187"
"2418","Phungushead","2539","Beltane","valium","187"
"3167","bubaloo","3299","anabolictrio","xanax","187"
"3167","bubaloo","5010","snapper ","lorazepam","187"
"1714","magicmaster141","3167","bubaloo","xanax","187"
"1842","nymphetamine","3167","bubaloo","temazepam","187"
"9","Freedom of Mind","3167","bubaloo","alprazolam","187"
"3167","bubaloo","4495","vhalin","xanax","187"
"3167","bubaloo","6201","SkUnKaDeLiC","lorazepam","187"
"3167","bubaloo","4495","vhalin","alprazolam","187"
"3167","bubaloo","6201","SkUnKaDeLiC","xanax","187"
"1842","nymphetamine","3167","bubaloo","xanax","187"
"1808","xxgaretjaxx","3167","bubaloo","xanax","187"
"7303","pankreeas ","19028","RochiWizz","morphine","185"
"1","Alfa","19028","RochiWizz","morphine","185"
"1","Alfa","19028","RochiWizz","methylphenidate","185"
"19028","RochiWizz","90006","Ghetto_Chem","mdma","185"
"19028","RochiWizz","28015","riaahacker","morphine","185"
"1842","nymphetamine","19028","RochiWizz","methylphenidate","185"
"19028","RochiWizz","45618","cannabis-sam","mdma","185"
"3345","Unsolved","19028","RochiWizz","mdma","185"
"19028","RochiWizz","35486","NeuroChi","morphine","185"
"3732","Diphenhydramine","19028","RochiWizz","mdma","185"
"4910","Fantasian","19028","RochiWizz","mdma","185"
"788","mdve2","19028","RochiWizz","mdma","185"
"19028","RochiWizz","54108","Alexander_Praves","mdma","185"
"19028","RochiWizz","57101","Terrapinzflyer ","mdma","185"
"2610","brainwaxd","19028","RochiWizz","mdma","185"
"62","BA","19028","RochiWizz","mdma","185"
"19028","RochiWizz","35486","NeuroChi","mdma","185"
"18769","samuraigecko","19028","RochiWizz","morphine","185"
"1595","Curtains","19028","RochiWizz","mdma","185"
"1842","nymphetamine","19028","RochiWizz","mdma","185"
"4218","TheLight01","19028","RochiWizz","mdma","185"
"6052","KomodoMK","19028","RochiWizz","mdma","185"
"19028","RochiWizz","28899","Esmerelda","morphine","185"
"19028","RochiWizz","118772","Mr_Spiffy","morphine","185"
"2709","risexagainst","19028","RochiWizz","mdma","185"
"539","stndguy","19028","RochiWizz","mdma","185"
"10467","WrtngCocaineTutorial","19028","RochiWizz","mdma","185"
"19028","RochiWizz","63028","Smirnoff","morphine","185"
"4495","vhalin","19028","RochiWizz","morphine","185"
"2418","Phungushead","19028","RochiWizz","morphine","185"
"19028","RochiWizz","180313","out_there","mdma","185"
"19028","RochiWizz","46865","dyingtomorrow","morphine","185"
"15564","Le Junk","19028","RochiWizz","mdma","185"
"19028","RochiWizz","59051","Priapism9","mdma","185"
"1","Alfa","19028","RochiWizz","mdma","185"
"1806","betty_bupe","19028","RochiWizz","mdma","185"
"1329","khonsu13","19028","RochiWizz","morphine","185"
"4495","vhalin","19028","RochiWizz","mdma","185"
"19028","RochiWizz","127014","MikePatton","mdma","185"
"2418","Phungushead","19028","RochiWizz","mdma","185"
"1562","soer","19028","RochiWizz","mdma","185"
"5010","snapper ","19028","RochiWizz","morphine","185"
"19028","RochiWizz","63028","Smirnoff","mdma","185"
"2418","Phungushead","19028","RochiWizz","methylphenidate","185"
"4910","Fantasian","19028","RochiWizz","morphine","185"
"1868","Paderas","19028","RochiWizz","morphine","185"
"56","Hollywood ","19028","RochiWizz","morphine","185"
"1842","nymphetamine","19028","RochiWizz","morphine","185"
"19028","RochiWizz","46865","dyingtomorrow","methylphenidate","185"
"7946","788.4","19028","RochiWizz","morphine","185"
"7303","pankreeas ","19028","RochiWizz","mdma","185"
"7946","788.4","19028","RochiWizz","mdma","185"
"9","Freedom of Mind","19028","RochiWizz","morphine","185"
"56","Hollywood ","19028","RochiWizz","mdma","185"
"19028","RochiWizz","180313","out_there","morphine","185"
"1868","Paderas","19028","RochiWizz","mdma","185"
"19028","RochiWizz","45599","On The Nod","morphine","185"
"3299","anabolictrio","19028","RochiWizz","morphine","185"
"1023","btoddw2","15232","Tortoise","codeine","184"
"273791","Roaddoggy","309595","gbread","loperamide","184"
"294051","Jungledog","309595","gbread","loperamide","184"
"1684","CABS205","15232","Tortoise","codeine","184"
"207202","Nefret","309595","gbread","loperamide","184"
"15232","Tortoise","83387","PrincessJo x","codeine","184"
"3375","MrJim","15232","Tortoise","codeine","184"
"15232","Tortoise","180313","out_there","codeine","184"
"15232","Tortoise","100767","missinglfe","codeine","184"
"15232","Tortoise","61180","Helene ","codeine","184"
"15232","Tortoise","28015","riaahacker","codeine","184"
"4495","vhalin","15232","Tortoise","codeine","184"
"102824","natey7","179810","Cid Lysergic","iboga","184"
"56","Hollywood ","15232","Tortoise","codeine","184"
"7946","788.4","15232","Tortoise","codeine","184"
"1842","nymphetamine","15232","Tortoise","codeine","184"
"263706","Ellen042","309595","gbread","loperamide","184"
"15232","Tortoise","28899","Esmerelda","codeine","184"
"15232","Tortoise","118772","Mr_Spiffy","codeine","184"
"15232","Tortoise","45599","On The Nod","codeine","184"
"15232","Tortoise","63028","Smirnoff","codeine","184"
"9","Freedom of Mind","15232","Tortoise","codeine","184"
"15232","Tortoise","35486","NeuroChi","codeine","184"
"164373","mar1ne","180932","gal68","hydrocodone","183"
"118772","Mr_Spiffy","180932","gal68","hydrocodone","183"
"28015","riaahacker","180932","gal68","hydrocodone","183"
"9","Freedom of Mind","180932","gal68","hydrocodone","183"
"35486","NeuroChi","180932","gal68","hydrocodone","183"
"4495","vhalin","180932","gal68","hydrocodone","183"
"156304","PillMan","180932","gal68","hydrocodone","183"
"1842","nymphetamine","180932","gal68","hydrocodone","183"
"45618","cannabis-sam","180932","gal68","hydrocodone","183"
"56","Hollywood ","180932","gal68","hydrocodone","183"
"16320","psycholic","40688","69Ron","peyote","183"
"3299","anabolictrio","180932","gal68","hydrocodone","183"
"40688","69Ron","54108","Alexander_Praves","peyote","183"
"15832","JapanHorrorUncut","90006","Ghetto_Chem","mdma","182"
"15564","Le Junk","15832","JapanHorrorUncut","mdma","182"
"1","Alfa","15832","JapanHorrorUncut","mdma","182"
"15832","JapanHorrorUncut","45618","cannabis-sam","mdma","182"
"1806","betty_bupe","15832","JapanHorrorUncut","mdma","182"
"4495","vhalin","15832","JapanHorrorUncut","mdma","182"
"15832","JapanHorrorUncut","54108","Alexander_Praves","mdma","182"
"2418","Phungushead","15832","JapanHorrorUncut","mdma","182"
"1562","soer","15832","JapanHorrorUncut","mdma","182"
"15832","JapanHorrorUncut","57101","Terrapinzflyer ","mdma","182"
"7303","pankreeas ","15832","JapanHorrorUncut","mdma","182"
"7946","788.4","15832","JapanHorrorUncut","mdma","182"
"15832","JapanHorrorUncut","35486","NeuroChi","mdma","182"
"56","Hollywood ","15832","JapanHorrorUncut","mdma","182"
"1868","Paderas","15832","JapanHorrorUncut","mdma","182"
"15832","JapanHorrorUncut","19028","RochiWizz","mdma","182"
"3345","Unsolved","15832","JapanHorrorUncut","mdma","182"
"3732","Diphenhydramine","15832","JapanHorrorUncut","mdma","182"
"15832","JapanHorrorUncut","180313","out_there","mdma","182"
"4910","Fantasian","15832","JapanHorrorUncut","mdma","182"
"788","mdve2","15832","JapanHorrorUncut","mdma","182"
"15832","JapanHorrorUncut","59051","Priapism9","mdma","182"
"2610","brainwaxd","15832","JapanHorrorUncut","mdma","182"
"62","BA","15832","JapanHorrorUncut","mdma","182"
"15832","JapanHorrorUncut","127014","MikePatton","mdma","182"
"15832","JapanHorrorUncut","63028","Smirnoff","mdma","182"
"1595","Curtains","15832","JapanHorrorUncut","mdma","182"
"1842","nymphetamine","15832","JapanHorrorUncut","mdma","182"
"4218","TheLight01","15832","JapanHorrorUncut","mdma","182"
"6052","KomodoMK","15832","JapanHorrorUncut","mdma","182"
"2709","risexagainst","15832","JapanHorrorUncut","mdma","182"
"539","stndguy","15832","JapanHorrorUncut","mdma","182"
"10467","WrtngCocaineTutorial","15832","JapanHorrorUncut","mdma","182"
"5750","pharmapsyche","45618","cannabis-sam","mdma","181"
"3345","Unsolved","5750","pharmapsyche","mdma","181"
"3732","Diphenhydramine","5750","pharmapsyche","mdma","181"
"4910","Fantasian","5750","pharmapsyche","mdma","181"
"788","mdve2","5750","pharmapsyche","mdma","181"
"5750","pharmapsyche","59051","Priapism9","mdma","181"
"5750","pharmapsyche","7303","pankreeas ","mdma","181"
"2610","brainwaxd","5750","pharmapsyche","mdma","181"
"62","BA","5750","pharmapsyche","mdma","181"
"5750","pharmapsyche","57101","Terrapinzflyer ","mdma","181"
"1595","Curtains","5750","pharmapsyche","mdma","181"
"5750","pharmapsyche","35486","NeuroChi","mdma","181"
"1842","nymphetamine","5750","pharmapsyche","mdma","181"
"4218","TheLight01","5750","pharmapsyche","mdma","181"
"5750","pharmapsyche","15832","JapanHorrorUncut","mdma","181"
"5750","pharmapsyche","7946","788.4","mdma","181"
"2709","risexagainst","5750","pharmapsyche","mdma","181"
"539","stndguy","5750","pharmapsyche","mdma","181"
"5750","pharmapsyche","15564","Le Junk","mdma","181"
"5750","pharmapsyche","10467","WrtngCocaineTutorial","mdma","181"
"5750","pharmapsyche","6052","KomodoMK","mdma","181"
"1","Alfa","5750","pharmapsyche","mdma","181"
"1806","betty_bupe","5750","pharmapsyche","mdma","181"
"4495","vhalin","5750","pharmapsyche","mdma","181"
"5750","pharmapsyche","54108","Alexander_Praves","mdma","181"
"2418","Phungushead","5750","pharmapsyche","mdma","181"
"1562","soer","5750","pharmapsyche","mdma","181"
"5750","pharmapsyche","127014","MikePatton","mdma","181"
"5750","pharmapsyche","63028","Smirnoff","mdma","181"
"56","Hollywood ","5750","pharmapsyche","mdma","181"
"5750","pharmapsyche","19028","RochiWizz","mdma","181"
"1868","Paderas","5750","pharmapsyche","mdma","181"
"5750","pharmapsyche","90006","Ghetto_Chem","mdma","181"
"5750","pharmapsyche","180313","out_there","mdma","181"
"2418","Phungushead","275468","Openmymind","kratom","180"
"2539","Beltane","28015","riaahacker","klonopin","180"
"2539","Beltane","180313","out_there","clonazepam","180"
"135","sands of time","275468","Openmymind","kratom","180"
"13344","drewcil","275468","Openmymind","kratom","180"
"127014","MikePatton","275468","Openmymind","kratom","180"
"2539","Beltane","63028","Smirnoff","clonazepam","180"
"1842","nymphetamine","2539","Beltane","diazepam","180"
"103726","seaturtle","275468","Openmymind","kratom","180"
"1714","magicmaster141","2539","Beltane","clonazepam","180"
"28015","riaahacker","275468","Openmymind","kratom","180"
"9","Freedom of Mind","2539","Beltane","clonazepam","180"
"2539","Beltane","4495","vhalin","diazepam","180"
"56","Hollywood ","2539","Beltane","clonazepam","180"
"156304","PillMan","275468","Openmymind","kratom","180"
"1714","magicmaster141","2539","Beltane","klonopin","180"
"2539","Beltane","6201","SkUnKaDeLiC","diazepam","180"
"1","Alfa","2539","Beltane","diazepam","180"
"9","Freedom of Mind","2539","Beltane","diazepam","180"
"118772","Mr_Spiffy","275468","Openmymind","kratom","180"
"35486","NeuroChi","275468","Openmymind","kratom","180"
"1806","betty_bupe","2539","Beltane","midazolam","180"
"155253","MachoManSavage","275468","Openmymind","kratom","180"
"1714","magicmaster141","2539","Beltane","midazolam","180"
"1","Alfa","275468","Openmymind","kratom","180"
"2539","Beltane","180313","out_there","midazolam","180"
"273791","Roaddoggy","275468","Openmymind","kratom","180"
"56","Hollywood ","2539","Beltane","diazepam","180"
"1023","btoddw2","2539","Beltane","diazepam","180"
"2763","bogumil","275468","Openmymind","kratom","180"
"20234","ianzombie ","275468","Openmymind","kratom","180"
"1842","nymphetamine","275468","Openmymind","kratom","180"
"2539","Beltane","3167","bubaloo","clonazepam","180"
"2418","Phungushead","2539","Beltane","clonazepam","180"
"2539","Beltane","202594","headfull0fstars","clonazepam","180"
"2539","Beltane","6201","SkUnKaDeLiC","clonazepam","180"
"157358","CrispCold","275468","Openmymind","kratom","180"
"273439","marathonmel7","275468","Openmymind","kratom","180"
"2539","Beltane","63028","Smirnoff","diazepam","180"
"4495","vhalin","275468","Openmymind","kratom","180"
"2539","Beltane","28015","riaahacker","diazepam","180"
"1239","Nicaine","275468","Openmymind","kratom","180"
"275468","Openmymind","294051","Jungledog","kratom","180"
"1","Alfa","2539","Beltane","klonopin","180"
"2539","Beltane","6201","SkUnKaDeLiC","midazolam","180"
"3471","Potassium Kid","5750","pharmapsyche","mephedrone","179"
"5750","pharmapsyche","10467","WrtngCocaineTutorial","viagra","179"
"5750","pharmapsyche","53567","buzzman","mephedrone","179"
"657","distilla_truant","18724","AirO","dxm","179"
"5750","pharmapsyche","62508","Makesmefeelbig","mephedrone","179"
"2418","Phungushead","46865","dyingtomorrow","buprenorphine","179"
"4092","trptamene ","5750","pharmapsyche","mephedrone","179"
"5750","pharmapsyche","57101","Terrapinzflyer ","mephedrone","179"
"18724","AirO","75764","lololsolid","dxm","179"
"5750","pharmapsyche","8016","chillinwill","mephedrone","179"
"18724","AirO","161625","mrcowman","dxm","179"
"153","blaze","5750","pharmapsyche","mephedrone","179"
"313","RoboCop ","18724","AirO","dxm","179"
"9019","Forthesevenlakes","46865","dyingtomorrow","buprenorphine","179"
"18724","AirO","180313","out_there","dxm","179"
"18724","AirO","28015","riaahacker","dxm","179"
"2418","Phungushead","18724","AirO","dxm","179"
"1","Alfa","5750","pharmapsyche","mephedrone","179"
"35486","NeuroChi","46865","dyingtomorrow","buprenorphine","179"
"5750","pharmapsyche","127014","MikePatton","viagra","179"
"5750","pharmapsyche","20109","imyourlittlebare","mephedrone","179"
"3565","amd6568","18724","AirO","dxm","179"
"5750","pharmapsyche","45583","Synesthesiac","mephedrone","179"
"18724","AirO","98407","phenythylamine","dxm","179"
"1526","Cuberun ","5750","pharmapsyche","mephedrone","179"
"5750","pharmapsyche","28015","riaahacker","mephedrone","179"
"18724","AirO","156304","PillMan","dxm","179"
"1842","nymphetamine","5750","pharmapsyche","mephedrone","179"
"8671","Richard_smoker","18724","AirO","dxm","179"
"18724","AirO","46889","port 21","dxm","179"
"3299","anabolictrio","46865","dyingtomorrow","buprenorphine","179"
"1868","Paderas","5750","pharmapsyche","mephedrone","179"
"18724","AirO","202594","headfull0fstars","dxm","179"
"4495","vhalin","5750","pharmapsyche","mephedrone","179"
"9","Freedom of Mind","18724","AirO","dxm","179"
"46865","dyingtomorrow","227635","Jels","buprenorphine","179"
"9019","Forthesevenlakes","46865","dyingtomorrow","subutex","175"
"3299","anabolictrio","46865","dyingtomorrow","subutex","175"
"35486","NeuroChi","46865","dyingtomorrow","subutex","175"
"1180","Creeping Death ","3299","anabolictrio","valium","173"
"1842","nymphetamine","3413","radiometer ","kratom","173"
"3413","radiometer ","28015","riaahacker","kratom","173"
"1180","Creeping Death ","2539","Beltane","diazepam","173"
"1180","Creeping Death ","4495","vhalin","valium","173"
"3413","radiometer ","294051","Jungledog","kratom","173"
"1180","Creeping Death ","63028","Smirnoff","diazepam","173"
"1180","Creeping Death ","6201","SkUnKaDeLiC","valium","173"
"1","Alfa","1180","Creeping Death ","valium","173"
"50050","Gradient","62508","Makesmefeelbig","mephedrone","173"
"1526","Cuberun ","50050","Gradient","mephedrone","173"
"1180","Creeping Death ","28015","riaahacker","diazepam","173"
"1180","Creeping Death ","46865","dyingtomorrow","valium","173"
"3413","radiometer ","275468","Openmymind","kratom","173"
"56","Hollywood ","1180","Creeping Death ","valium","173"
"1842","nymphetamine","50050","Gradient","mephedrone","173"
"3413","radiometer ","155253","MachoManSavage","kratom","173"
"20109","imyourlittlebare","50050","Gradient","mephedrone","173"
"1239","Nicaine","3413","radiometer ","kratom","173"
"1180","Creeping Death ","3299","anabolictrio","melatonin","173"
"1868","Paderas","50050","Gradient","mephedrone","173"
"3413","radiometer ","103726","seaturtle","kratom","173"
"3413","radiometer ","157358","CrispCold","kratom","173"
"1180","Creeping Death ","2539","Beltane","valium","173"
"4495","vhalin","50050","Gradient","mephedrone","173"
"3413","radiometer ","13344","drewcil","kratom","173"
"1180","Creeping Death ","28899","Esmerelda","valium","173"
"2418","Phungushead","3413","radiometer ","kratom","173"
"3413","radiometer ","273791","Roaddoggy","kratom","173"
"3471","Potassium Kid","50050","Gradient","mephedrone","173"
"8016","chillinwill","50050","Gradient","mephedrone","173"
"1180","Creeping Death ","45618","cannabis-sam","valium","173"
"5750","pharmapsyche","50050","Gradient","mephedrone","173"
"3413","radiometer ","273439","marathonmel7","kratom","173"
"135","sands of time","3413","radiometer ","kratom","173"
"1180","Creeping Death ","4495","vhalin","diazepam","173"
"1180","Creeping Death ","63028","Smirnoff","valium","173"
"4092","trptamene ","50050","Gradient","mephedrone","173"
"50050","Gradient","53567","buzzman","mephedrone","173"
"3413","radiometer ","35486","NeuroChi","kratom","173"
"1180","Creeping Death ","6201","SkUnKaDeLiC","diazepam","173"
"1180","Creeping Death ","1842","nymphetamine","valium","173"
"50050","Gradient","57101","Terrapinzflyer ","mephedrone","173"
"1180","Creeping Death ","1842","nymphetamine","diazepam","173"
"1180","Creeping Death ","2418","Phungushead","valium","173"
"3413","radiometer ","156304","PillMan","kratom","173"
"153","blaze","50050","Gradient","mephedrone","173"
"1","Alfa","1180","Creeping Death ","diazepam","173"
"9","Freedom of Mind","1180","Creeping Death ","diazepam","173"
"1023","btoddw2","1180","Creeping Death ","valium","173"
"1180","Creeping Death ","1684","CABS205","melatonin","173"
"3413","radiometer ","20234","ianzombie ","kratom","173"
"45583","Synesthesiac","50050","Gradient","mephedrone","173"
"3413","radiometer ","118772","Mr_Spiffy","kratom","173"
"1","Alfa","50050","Gradient","mephedrone","173"
"1","Alfa","3413","radiometer ","kratom","173"
"3413","radiometer ","127014","MikePatton","kratom","173"
"56","Hollywood ","1180","Creeping Death ","diazepam","173"
"1023","btoddw2","1180","Creeping Death ","diazepam","173"
"1180","Creeping Death ","7946","788.4","valium","173"
"2763","bogumil","3413","radiometer ","kratom","173"
"3413","radiometer ","4495","vhalin","kratom","173"
"856","str8ballin","1180","Creeping Death ","valium","173"
"28015","riaahacker","50050","Gradient","mephedrone","173"
"48119","Jasim ","63028","Smirnoff","phenazepam","171"
"3565","amd6568","44584","Rightnow289","dxm","171"
"18724","AirO","44584","Rightnow289","dxm","171"
"1842","nymphetamine","48119","Jasim ","phenazepam","171"
"8671","Richard_smoker","44584","Rightnow289","dxm","171"
"44584","Rightnow289","75764","lololsolid","dxm","171"
"44584","Rightnow289","161625","mrcowman","dxm","171"
"9","Freedom of Mind","44584","Rightnow289","dxm","171"
"44584","Rightnow289","180313","out_there","dxm","171"
"740","Endologik","48119","Jasim ","phenazepam","171"
"14677","splish6","48119","Jasim ","phenazepam","171"
"657","distilla_truant","44584","Rightnow289","dxm","171"
"28015","riaahacker","44584","Rightnow289","dxm","171"
"6201","SkUnKaDeLiC","48119","Jasim ","phenazepam","171"
"313","RoboCop ","44584","Rightnow289","dxm","171"
"44584","Rightnow289","98407","phenythylamine","dxm","171"
"4495","vhalin","48119","Jasim ","phenazepam","171"
"44584","Rightnow289","156304","PillMan","dxm","171"
"2418","Phungushead","44584","Rightnow289","dxm","171"
"44584","Rightnow289","46889","port 21","dxm","171"
"44584","Rightnow289","202594","headfull0fstars","dxm","171"
"45618","cannabis-sam","58307","missparkles ","methadone","168"
"1714","magicmaster141","48762","brandon561","alprazolam","168"
"45599","On The Nod","58307","missparkles ","methadone","168"
"46865","dyingtomorrow","58307","missparkles ","methadone","168"
"58307","missparkles ","79947","TheBigBadWolf","methadone","168"
"1","Alfa","48762","brandon561","alprazolam","168"
"2418","Phungushead","58307","missparkles ","methadone","168"
"6201","SkUnKaDeLiC","48762","brandon561","alprazolam","168"
"58307","missparkles ","81101","source","methadone","168"
"7303","pankreeas ","108860","Pain Hurts","oxycontin","168"
"6201","SkUnKaDeLiC","58307","missparkles ","diazepam","168"
"6201","SkUnKaDeLiC","58307","missparkles ","methadone","168"
"58307","missparkles ","181260","Kitts","methadone","168"
"56","Hollywood ","108860","Pain Hurts","oxycontin","168"
"45599","On The Nod","46865","dyingtomorrow","hydromorphone","168"
"1","Alfa","58307","missparkles ","diazepam","168"
"58307","missparkles ","194301","rosielee","methadone","168"
"9","Freedom of Mind","58307","missparkles ","diazepam","168"
"63028","Smirnoff","108860","Pain Hurts","oxycontin","168"
"58307","missparkles ","127014","MikePatton","methadone","168"
"28899","Esmerelda","108860","Pain Hurts","oxycontin","168"
"9","Freedom of Mind","48762","brandon561","alprazolam","168"
"58307","missparkles ","115136","trdofbeingtrd","methadone","168"
"56","Hollywood ","58307","missparkles ","diazepam","168"
"1023","btoddw2","58307","missparkles ","diazepam","168"
"9","Freedom of Mind","46865","dyingtomorrow","hydromorphone","168"
"3167","bubaloo","48762","brandon561","alprazolam","168"
"1842","nymphetamine","108860","Pain Hurts","oxycontin","168"
"4495","vhalin","46865","dyingtomorrow","hydromorphone","168"
"28015","riaahacker","58307","missparkles ","methadone","168"
"1180","Creeping Death ","58307","missparkles ","diazepam","168"
"48762","brandon561","63028","Smirnoff","alprazolam","168"
"3375","MrJim","46865","dyingtomorrow","hydromorphone","168"
"46865","dyingtomorrow","118772","Mr_Spiffy","hydromorphone","168"
"35486","NeuroChi","58307","missparkles ","methadone","168"
"28899","Esmerelda","58307","missparkles ","methadone","168"
"58307","missparkles ","273791","Roaddoggy","methadone","168"
"56","Hollywood ","48762","brandon561","alprazolam","168"
"1595","Curtains","58307","missparkles ","methadone","168"
"16489","baron samedi","58307","missparkles ","methadone","168"
"1842","nymphetamine","58307","missparkles ","diazepam","168"
"58307","missparkles ","118772","Mr_Spiffy","methadone","168"
"28015","riaahacker","108860","Pain Hurts","oxycontin","168"
"2539","Beltane","58307","missparkles ","diazepam","168"
"58307","missparkles ","100767","missinglfe","methadone","168"
"58307","missparkles ","102824","natey7","methadone","168"
"4495","vhalin","108860","Pain Hurts","oxycontin","168"
"58307","missparkles ","63028","Smirnoff","methadone","168"
"7946","788.4","58307","missparkles ","methadone","168"
"28015","riaahacker","48762","brandon561","alprazolam","168"
"58307","missparkles ","202594","headfull0fstars","methadone","168"
"4495","vhalin","48762","brandon561","alprazolam","168"
"46865","dyingtomorrow","108860","Pain Hurts","oxycontin","168"
"1842","nymphetamine","58307","missparkles ","methadone","168"
"58307","missparkles ","63028","Smirnoff","diazepam","168"
"28015","riaahacker","58307","missparkles ","diazepam","168"
"46446","EyesOfTheWorld","58307","missparkles ","methadone","168"
"4495","vhalin","58307","missparkles ","diazepam","168"
"91040","Dankfish","273439","marathonmel7","kratom","167"
"1","Alfa","124017","LoveNwar","mdma","167"
"135","sands of time","91040","Dankfish","kratom","167"
"1806","betty_bupe","124017","LoveNwar","mdma","167"
"4495","vhalin","124017","LoveNwar","mdma","167"
"90006","Ghetto_Chem","124017","LoveNwar","mdma","167"
"2418","Phungushead","124017","LoveNwar","mdma","167"
"1562","soer","124017","LoveNwar","mdma","167"
"4490","DJ-666","40688","69Ron","acetone","167"
"54108","Alexander_Praves","124017","LoveNwar","mdma","167"
"124017","LoveNwar","180313","out_there","mdma","167"
"4495","vhalin","91040","Dankfish","kratom","167"
"6052","KomodoMK","124017","LoveNwar","mdma","167"
"56","Hollywood ","124017","LoveNwar","mdma","167"
"91040","Dankfish","156304","PillMan","kratom","167"
"1868","Paderas","124017","LoveNwar","mdma","167"
"1","Alfa","91040","Dankfish","kratom","167"
"91040","Dankfish","103726","seaturtle","kratom","167"
"10467","WrtngCocaineTutorial","124017","LoveNwar","mdma","167"
"1526","Cuberun ","6201","SkUnKaDeLiC","etizolam","167"
"2763","bogumil","91040","Dankfish","kratom","167"
"57101","Terrapinzflyer ","124017","LoveNwar","mdma","167"
"91040","Dankfish","157358","CrispCold","kratom","167"
"391","leanbaby","4490","DJ-666","acetone","167"
"1842","nymphetamine","91040","Dankfish","kratom","167"
"19028","RochiWizz","124017","LoveNwar","mdma","167"
"91040","Dankfish","273791","Roaddoggy","kratom","167"
"3345","Unsolved","124017","LoveNwar","mdma","167"
"3732","Diphenhydramine","124017","LoveNwar","mdma","167"
"4910","Fantasian","124017","LoveNwar","mdma","167"
"788","mdve2","124017","LoveNwar","mdma","167"
"15564","Le Junk","124017","LoveNwar","mdma","167"
"91040","Dankfish","294051","Jungledog","kratom","167"
"13344","drewcil","91040","Dankfish","kratom","167"
"2610","brainwaxd","124017","LoveNwar","mdma","167"
"62","BA","124017","LoveNwar","mdma","167"
"28015","riaahacker","91040","Dankfish","kratom","167"
"3413","radiometer ","91040","Dankfish","kratom","167"
"45618","cannabis-sam","124017","LoveNwar","mdma","167"
"1595","Curtains","124017","LoveNwar","mdma","167"
"835","Thegreatone","4490","DJ-666","acetone","167"
"1239","Nicaine","91040","Dankfish","kratom","167"
"124017","LoveNwar","127014","MikePatton","mdma","167"
"1842","nymphetamine","124017","LoveNwar","mdma","167"
"7303","pankreeas ","124017","LoveNwar","mdma","167"
"7946","788.4","124017","LoveNwar","mdma","167"
"4218","TheLight01","124017","LoveNwar","mdma","167"
"35486","NeuroChi","91040","Dankfish","kratom","167"
"91040","Dankfish","275468","Openmymind","kratom","167"
"5750","pharmapsyche","124017","LoveNwar","mdma","167"
"63028","Smirnoff","124017","LoveNwar","mdma","167"
"91040","Dankfish","155253","MachoManSavage","kratom","167"
"35486","NeuroChi","124017","LoveNwar","mdma","167"
"2709","risexagainst","124017","LoveNwar","mdma","167"
"539","stndguy","124017","LoveNwar","mdma","167"
"1526","Cuberun ","180313","out_there","etizolam","167"
"91040","Dankfish","118772","Mr_Spiffy","kratom","167"
"1526","Cuberun ","2418","Phungushead","etizolam","167"
"2418","Phungushead","91040","Dankfish","kratom","167"
"59051","Priapism9","124017","LoveNwar","mdma","167"
"91040","Dankfish","127014","MikePatton","kratom","167"
"20234","ianzombie ","91040","Dankfish","kratom","167"
"15832","JapanHorrorUncut","124017","LoveNwar","mdma","167"
"2418","Phungushead","3375","MrJim","oxycodone","166"
"3375","MrJim","108860","Pain Hurts","oxycontin","166"
"3375","MrJim","156304","PillMan","oxycodone","166"
"115136","trdofbeingtrd","127014","MikePatton","kratom","166"
"13344","drewcil","115136","trdofbeingtrd","kratom","166"
"3375","MrJim","7303","pankreeas ","oxycontin","166"
"3375","MrJim","180313","out_there","oxycodone","166"
"115136","trdofbeingtrd","273439","marathonmel7","kratom","166"
"28015","riaahacker","115136","trdofbeingtrd","kratom","166"
"3413","radiometer ","115136","trdofbeingtrd","kratom","166"
"3375","MrJim","63028","Smirnoff","oxycontin","166"
"3375","MrJim","63028","Smirnoff","oxycodone","166"
"3375","MrJim","46865","dyingtomorrow","oxycontin","166"
"1239","Nicaine","115136","trdofbeingtrd","kratom","166"
"3375","MrJim","46865","dyingtomorrow","oxycodone","166"
"35486","NeuroChi","115136","trdofbeingtrd","kratom","166"
"91040","Dankfish","115136","trdofbeingtrd","kratom","166"
"115136","trdofbeingtrd","275468","Openmymind","kratom","166"
"2418","Phungushead","115136","trdofbeingtrd","kratom","166"
"115136","trdofbeingtrd","155253","MachoManSavage","kratom","166"
"20234","ianzombie ","115136","trdofbeingtrd","kratom","166"
"3375","MrJim","7946","788.4","oxycodone","166"
"3375","MrJim","118772","Mr_Spiffy","oxycodone","166"
"135","sands of time","115136","trdofbeingtrd","kratom","166"
"115136","trdofbeingtrd","157358","CrispCold","kratom","166"
"3375","MrJim","28899","Esmerelda","oxycontin","166"
"3375","MrJim","7303","pankreeas ","oxycodone","166"
"115136","trdofbeingtrd","273791","Roaddoggy","kratom","166"
"3375","MrJim","4495","vhalin","oxycontin","166"
"103726","seaturtle","115136","trdofbeingtrd","kratom","166"
"3375","MrJim","4495","vhalin","oxycodone","166"
"115136","trdofbeingtrd","294051","Jungledog","kratom","166"
"3375","MrJim","28015","riaahacker","oxycontin","166"
"4495","vhalin","115136","trdofbeingtrd","kratom","166"
"3375","MrJim","294051","Jungledog","oxycodone","166"
"56","Hollywood ","3375","MrJim","oxycontin","166"
"56","Hollywood ","3375","MrJim","oxycodone","166"
"3375","MrJim","35486","NeuroChi","oxycodone","166"
"1","Alfa","115136","trdofbeingtrd","kratom","166"
"1842","nymphetamine","3375","MrJim","oxycodone","166"
"2763","bogumil","115136","trdofbeingtrd","kratom","166"
"1842","nymphetamine","3375","MrJim","oxycontin","166"
"115136","trdofbeingtrd","156304","PillMan","kratom","166"
"1842","nymphetamine","115136","trdofbeingtrd","kratom","166"
"3375","MrJim","68194","baZING","oxycodone","166"
"115136","trdofbeingtrd","118772","Mr_Spiffy","kratom","166"
"930","searcher","3732","Diphenhydramine","shroom","165"
"35486","NeuroChi","170641","jimmym321","methadone","165"
"28899","Esmerelda","170641","jimmym321","methadone","165"
"930","searcher","2610","brainwaxd","shroom","165"
"1595","Curtains","170641","jimmym321","methadone","165"
"16489","baron samedi","170641","jimmym321","methadone","165"
"930","searcher","38813","waffles","shroom","165"
"930","searcher","35486","NeuroChi","shroom","165"
"63028","Smirnoff","170641","jimmym321","methadone","165"
"930","searcher","4969","kaide","shroom","165"
"79947","TheBigBadWolf","170641","jimmym321","methadone","165"
"539","stndguy","930","searcher","shroom","165"
"930","searcher","1806","betty_bupe","shroom","165"
"127014","MikePatton","170641","jimmym321","methadone","165"
"100767","missinglfe","170641","jimmym321","methadone","165"
"930","searcher","54108","Alexander_Praves","shroom","165"
"7946","788.4","170641","jimmym321","methadone","165"
"930","searcher","1808","xxgaretjaxx","shroom","165"
"170641","jimmym321","181260","Kitts","methadone","165"
"930","searcher","4495","vhalin","shroom","165"
"1842","nymphetamine","170641","jimmym321","methadone","165"
"170641","jimmym321","202594","headfull0fstars","methadone","165"
"46446","EyesOfTheWorld","170641","jimmym321","methadone","165"
"115136","trdofbeingtrd","170641","jimmym321","methadone","165"
"45618","cannabis-sam","170641","jimmym321","methadone","165"
"930","searcher","1868","Paderas","shroom","165"
"81101","source","170641","jimmym321","methadone","165"
"15","Sammi","930","searcher","shroom","165"
"45599","On The Nod","170641","jimmym321","methadone","165"
"46865","dyingtomorrow","170641","jimmym321","methadone","165"
"58307","missparkles ","170641","jimmym321","methadone","165"
"930","searcher","1562","soer","shroom","165"
"1","Alfa","930","searcher","shroom","165"
"2418","Phungushead","170641","jimmym321","methadone","165"
"930","searcher","14069","Drugaddict","shroom","165"
"930","searcher","1842","nymphetamine","shroom","165"
"6201","SkUnKaDeLiC","170641","jimmym321","methadone","165"
"930","searcher","10467","WrtngCocaineTutorial","shroom","165"
"930","searcher","45618","cannabis-sam","shroom","165"
"930","searcher","1595","Curtains","shroom","165"
"102824","natey7","170641","jimmym321","methadone","165"
"930","searcher","2066","~lostgurl~ ","shroom","165"
"170641","jimmym321","273791","Roaddoggy","methadone","165"
"930","searcher","127014","MikePatton","shroom","165"
"170641","jimmym321","194301","rosielee","methadone","165"
"118772","Mr_Spiffy","170641","jimmym321","methadone","165"
"930","searcher","63028","Smirnoff","shroom","165"
"28015","riaahacker","170641","jimmym321","methadone","165"
"7303","pankreeas ","211963","WoodyCA","oxycodone","164"
"9","Freedom of Mind","211963","WoodyCA","vicodin","164"
"35486","NeuroChi","211963","WoodyCA","suboxone","164"
"788","mdve2","54214","Zoidberg","mdma","164"
"15564","Le Junk","54214","Zoidberg","mdma","164"
"2539","Beltane","211963","WoodyCA","valium","164"
"156304","PillMan","211963","WoodyCA","oxycodone","164"
"46865","dyingtomorrow","211963","WoodyCA","valium","164"
"90006","Ghetto_Chem","211963","WoodyCA","suboxone","164"
"180313","out_there","211963","WoodyCA","oxycodone","164"
"54214","Zoidberg","90006","Ghetto_Chem","mdma","164"
"2610","brainwaxd","54214","Zoidberg","mdma","164"
"62","BA","54214","Zoidberg","mdma","164"
"28015","riaahacker","211963","WoodyCA","oxycontin","164"
"7946","788.4","211963","WoodyCA","valium","164"
"1595","Curtains","54214","Zoidberg","mdma","164"
"45618","cannabis-sam","54214","Zoidberg","mdma","164"
"56","Hollywood ","211963","WoodyCA","oxycontin","164"
"54214","Zoidberg","59051","Priapism9","mdma","164"
"56","Hollywood ","211963","WoodyCA","oxycodone","164"
"4495","vhalin","211963","WoodyCA","oxycodone","164"
"46865","dyingtomorrow","211963","WoodyCA","oxycodone","164"
"3299","anabolictrio","211963","WoodyCA","suboxone","164"
"1","Alfa","211963","WoodyCA","xanax","164"
"35486","NeuroChi","211963","WoodyCA","vicodin","164"
"118772","Mr_Spiffy","211963","WoodyCA","suboxone","164"
"46865","dyingtomorrow","211963","WoodyCA","vicodin","164"
"1842","nymphetamine","54214","Zoidberg","mdma","164"
"54214","Zoidberg","57101","Terrapinzflyer ","mdma","164"
"7303","pankreeas ","54214","Zoidberg","mdma","164"
"7946","788.4","54214","Zoidberg","mdma","164"
"4218","TheLight01","54214","Zoidberg","mdma","164"
"3167","bubaloo","211963","WoodyCA","xanax","164"
"45618","cannabis-sam","211963","WoodyCA","xanax","164"
"1023","btoddw2","211963","WoodyCA","valium","164"
"6201","SkUnKaDeLiC","211963","WoodyCA","valium","164"
"5750","pharmapsyche","54214","Zoidberg","mdma","164"
"28015","riaahacker","211963","WoodyCA","vicodin","164"
"2418","Phungushead","211963","WoodyCA","valium","164"
"4495","vhalin","211963","WoodyCA","oxycontin","164"
"2066","~lostgurl~ ","211963","WoodyCA","vicodin","164"
"35486","NeuroChi","54214","Zoidberg","mdma","164"
"2709","risexagainst","54214","Zoidberg","mdma","164"
"1714","magicmaster141","211963","WoodyCA","xanax","164"
"539","stndguy","54214","Zoidberg","mdma","164"
"1842","nymphetamine","211963","WoodyCA","oxycodone","164"
"6201","SkUnKaDeLiC","211963","WoodyCA","xanax","164"
"1842","nymphetamine","211963","WoodyCA","oxycontin","164"
"3299","anabolictrio","211963","WoodyCA","valium","164"
"1842","nymphetamine","211963","WoodyCA","xanax","164"
"1808","xxgaretjaxx","211963","WoodyCA","xanax","164"
"46865","dyingtomorrow","211963","WoodyCA","oxycontin","164"
"856","str8ballin","211963","WoodyCA","valium","164"
"15832","JapanHorrorUncut","54214","Zoidberg","mdma","164"
"118772","Mr_Spiffy","211963","WoodyCA","oxycodone","164"
"28899","Esmerelda","211963","WoodyCA","xanax","164"
"35486","NeuroChi","211963","WoodyCA","xanax","164"
"2418","Phungushead","211963","WoodyCA","oxycodone","164"
"3375","MrJim","211963","WoodyCA","oxycontin","164"
"4495","vhalin","211963","WoodyCA","xanax","164"
"1","Alfa","54214","Zoidberg","mdma","164"
"1806","betty_bupe","54214","Zoidberg","mdma","164"
"4495","vhalin","54214","Zoidberg","mdma","164"
"54214","Zoidberg","124017","LoveNwar","mdma","164"
"2418","Phungushead","54214","Zoidberg","mdma","164"
"7303","pankreeas ","211963","WoodyCA","oxycontin","164"
"211963","WoodyCA","294051","Jungledog","oxycodone","164"
"1","Alfa","211963","WoodyCA","valium","164"
"7946","788.4","211963","WoodyCA","oxycodone","164"
"1213","Psilocybe S.","211963","WoodyCA","xanax","164"
"1562","soer","54214","Zoidberg","mdma","164"
"54214","Zoidberg","180313","out_there","mdma","164"
"28015","riaahacker","211963","WoodyCA","xanax","164"
"54108","Alexander_Praves","54214","Zoidberg","mdma","164"
"4495","vhalin","211963","WoodyCA","valium","164"
"56","Hollywood ","211963","WoodyCA","valium","164"
"63028","Smirnoff","211963","WoodyCA","oxycodone","164"
"63028","Smirnoff","211963","WoodyCA","xanax","164"
"1595","Curtains","211963","WoodyCA","vicodin","164"
"54214","Zoidberg","127014","MikePatton","mdma","164"
"856","str8ballin","211963","WoodyCA","xanax","164"
"9019","Forthesevenlakes","211963","WoodyCA","subutex","164"
"35486","NeuroChi","211963","WoodyCA","oxycodone","164"
"2418","Phungushead","211963","WoodyCA","xanax","164"
"63028","Smirnoff","211963","WoodyCA","oxycontin","164"
"28899","Esmerelda","211963","WoodyCA","valium","164"
"7946","788.4","211963","WoodyCA","xanax","164"
"115136","trdofbeingtrd","211963","WoodyCA","suboxone","164"
"54214","Zoidberg","63028","Smirnoff","mdma","164"
"6052","KomodoMK","54214","Zoidberg","mdma","164"
"49040","rokman nash","211963","WoodyCA","vicodin","164"
"28899","Esmerelda","211963","WoodyCA","oxycontin","164"
"56","Hollywood ","54214","Zoidberg","mdma","164"
"3299","anabolictrio","211963","WoodyCA","subutex","164"
"1868","Paderas","54214","Zoidberg","mdma","164"
"743","madman3l6","211963","WoodyCA","xanax","164"
"63028","Smirnoff","211963","WoodyCA","valium","164"
"1842","nymphetamine","211963","WoodyCA","valium","164"
"211963","WoodyCA","273439","marathonmel7","xanax","164"
"46865","dyingtomorrow","211963","WoodyCA","subutex","164"
"56","Hollywood ","211963","WoodyCA","xanax","164"
"68194","baZING","211963","WoodyCA","oxycodone","164"
"4495","vhalin","211963","WoodyCA","vicodin","164"
"10467","WrtngCocaineTutorial","54214","Zoidberg","mdma","164"
"1180","Creeping Death ","211963","WoodyCA","valium","164"
"3299","anabolictrio","211963","WoodyCA","xanax","164"
"45618","cannabis-sam","211963","WoodyCA","valium","164"
"35486","NeuroChi","211963","WoodyCA","subutex","164"
"3375","MrJim","211963","WoodyCA","oxycodone","164"
"1842","nymphetamine","211963","WoodyCA","vicodin","164"
"108860","Pain Hurts","211963","WoodyCA","oxycontin","164"
"46865","dyingtomorrow","211963","WoodyCA","suboxone","164"
"19028","RochiWizz","54214","Zoidberg","mdma","164"
"3345","Unsolved","54214","Zoidberg","mdma","164"
"3732","Diphenhydramine","54214","Zoidberg","mdma","164"
"9019","Forthesevenlakes","211963","WoodyCA","suboxone","164"
"4910","Fantasian","54214","Zoidberg","mdma","164"
"1964","enquirewithin ","28015","riaahacker","kratom","163"
"1964","enquirewithin ","115136","trdofbeingtrd","kratom","163"
"1964","enquirewithin ","294051","Jungledog","kratom","163"
"1964","enquirewithin ","3413","radiometer ","kratom","163"
"1964","enquirewithin ","2418","Phungushead","kratom","163"
"1964","enquirewithin ","156304","PillMan","kratom","163"
"1964","enquirewithin ","2763","bogumil","kratom","163"
"1","Alfa","1964","enquirewithin ","kratom","163"
"1964","enquirewithin ","103726","seaturtle","kratom","163"
"1964","enquirewithin ","157358","CrispCold","kratom","163"
"1964","enquirewithin ","13344","drewcil","kratom","163"
"1842","nymphetamine","1964","enquirewithin ","kratom","163"
"1964","enquirewithin ","273791","Roaddoggy","kratom","163"
"1964","enquirewithin ","273439","marathonmel7","kratom","163"
"1964","enquirewithin ","91040","Dankfish","kratom","163"
"1964","enquirewithin ","35486","NeuroChi","kratom","163"
"1964","enquirewithin ","275468","Openmymind","kratom","163"
"1239","Nicaine","1964","enquirewithin ","kratom","163"
"1964","enquirewithin ","155253","MachoManSavage","kratom","163"
"1964","enquirewithin ","20234","ianzombie ","kratom","163"
"1964","enquirewithin ","118772","Mr_Spiffy","kratom","163"
"1964","enquirewithin ","127014","MikePatton","kratom","163"
"1964","enquirewithin ","4495","vhalin","kratom","163"
"135","sands of time","1964","enquirewithin ","kratom","163"
"2418","Phungushead","27864","G_nome","methadone","162"
"737","RARFE ","46865","dyingtomorrow","adderall","162"
"27864","G_nome","118772","Mr_Spiffy","methadone","162"
"6201","SkUnKaDeLiC","27864","G_nome","methadone","162"
"56","Hollywood ","737","RARFE ","adderall","162"
"737","RARFE ","202594","headfull0fstars","adderall","162"
"27864","G_nome","100767","missinglfe","methadone","162"
"1842","nymphetamine","40282","Razorbladekiss","codeine","162"
"737","RARFE ","4495","vhalin","adderall","162"
"27864","G_nome","45618","cannabis-sam","methadone","162"
"737","RARFE ","1868","Paderas","adderall","162"
"35486","NeuroChi","40282","Razorbladekiss","codeine","162"
"40282","Razorbladekiss","180313","out_there","codeine","162"
"27864","G_nome","127014","MikePatton","methadone","162"
"737","RARFE ","28015","riaahacker","adderall","162"
"40282","Razorbladekiss","100767","missinglfe","codeine","162"
"27864","G_nome","45599","On The Nod","methadone","162"
"27864","G_nome","202594","headfull0fstars","methadone","162"
"27864","G_nome","170641","jimmym321","methadone","162"
"737","RARFE ","71487","robotripper","adderall","162"
"40282","Razorbladekiss","61180","Helene ","codeine","162"
"28899","Esmerelda","40282","Razorbladekiss","codeine","162"
"27864","G_nome","46865","dyingtomorrow","methadone","162"
"28015","riaahacker","40282","Razorbladekiss","codeine","162"
"9","Freedom of Mind","40282","Razorbladekiss","codeine","162"
"27864","G_nome","79947","TheBigBadWolf","methadone","162"
"737","RARFE ","56520","Christian1122","adderall","162"
"27864","G_nome","28899","Esmerelda","methadone","162"
"1023","btoddw2","40282","Razorbladekiss","codeine","162"
"737","RARFE ","5750","pharmapsyche","adderall","162"
"27864","G_nome","46446","EyesOfTheWorld","methadone","162"
"1595","Curtains","27864","G_nome","methadone","162"
"16489","baron samedi","27864","G_nome","methadone","162"
"737","RARFE ","45618","cannabis-sam","adderall","162"
"1684","CABS205","40282","Razorbladekiss","codeine","162"
"9","Freedom of Mind","737","RARFE ","adderall","162"
"27864","G_nome","181260","Kitts","methadone","162"
"737","RARFE ","127014","MikePatton","adderall","162"
"27864","G_nome","194301","rosielee","methadone","162"
"15232","Tortoise","40282","Razorbladekiss","codeine","162"
"3375","MrJim","40282","Razorbladekiss","codeine","162"
"737","RARFE ","63028","Smirnoff","adderall","162"
"40282","Razorbladekiss","83387","PrincessJo x","codeine","162"
"27864","G_nome","102824","natey7","methadone","162"
"737","RARFE ","115136","trdofbeingtrd","adderall","162"
"40282","Razorbladekiss","118772","Mr_Spiffy","codeine","162"
"27864","G_nome","63028","Smirnoff","methadone","162"
"7946","788.4","27864","G_nome","methadone","162"
"737","RARFE ","1842","nymphetamine","adderall","162"
"40282","Razorbladekiss","45599","On The Nod","codeine","162"
"27864","G_nome","115136","trdofbeingtrd","methadone","162"
"27864","G_nome","28015","riaahacker","methadone","162"
"27864","G_nome","58307","missparkles ","methadone","162"
"1","Alfa","737","RARFE ","adderall","162"
"737","RARFE ","35486","NeuroChi","adderall","162"
"1842","nymphetamine","27864","G_nome","methadone","162"
"40282","Razorbladekiss","63028","Smirnoff","codeine","162"
"4495","vhalin","40282","Razorbladekiss","codeine","162"
"27864","G_nome","35486","NeuroChi","methadone","162"
"27864","G_nome","273791","Roaddoggy","methadone","162"
"737","RARFE ","1023","btoddw2","adderall","162"
"56","Hollywood ","40282","Razorbladekiss","codeine","162"
"7946","788.4","40282","Razorbladekiss","codeine","162"
"27864","G_nome","81101","source","methadone","162"
"102420","spicybrainsgirl","102824","natey7","methadone","161"
"4495","vhalin","102420","spicybrainsgirl","morphine","161"
"2418","Phungushead","102420","spicybrainsgirl","morphine","161"
"1595","Curtains","102420","spicybrainsgirl","methadone","161"
"102420","spicybrainsgirl","118772","Mr_Spiffy","kratom","161"
"16489","baron samedi","102420","spicybrainsgirl","methadone","161"
"102420","spicybrainsgirl","118772","Mr_Spiffy","morphine","161"
"63028","Smirnoff","102420","spicybrainsgirl","morphine","161"
"102420","spicybrainsgirl","115136","trdofbeingtrd","methadone","161"
"35486","NeuroChi","102420","spicybrainsgirl","morphine","161"
"46865","dyingtomorrow","102420","spicybrainsgirl","morphine","161"
"46865","dyingtomorrow","102420","spicybrainsgirl","percocet","161"
"7303","pankreeas ","102420","spicybrainsgirl","oxycontin","161"
"102420","spicybrainsgirl","211963","WoodyCA","suboxone","161"
"1213","Psilocybe S.","102420","spicybrainsgirl","xanax","161"
"28015","riaahacker","102420","spicybrainsgirl","xanax","161"
"102420","spicybrainsgirl","127014","MikePatton","kratom","161"
"1329","khonsu13","102420","spicybrainsgirl","morphine","161"
"102420","spicybrainsgirl","115136","trdofbeingtrd","suboxone","161"
"35486","NeuroChi","102420","spicybrainsgirl","percocet","161"
"1239","Nicaine","102420","spicybrainsgirl","kratom","161"
"4495","vhalin","102420","spicybrainsgirl","kratom","161"
"63028","Smirnoff","102420","spicybrainsgirl","xanax","161"
"1595","Curtains","102420","spicybrainsgirl","vicodin","161"
"856","str8ballin","102420","spicybrainsgirl","xanax","161"
"9019","Forthesevenlakes","102420","spicybrainsgirl","subutex","161"
"2418","Phungushead","102420","spicybrainsgirl","xanax","161"
"28015","riaahacker","102420","spicybrainsgirl","morphine","161"
"102420","spicybrainsgirl","273439","marathonmel7","kratom","161"
"63028","Smirnoff","102420","spicybrainsgirl","oxycontin","161"
"5010","snapper ","102420","spicybrainsgirl","morphine","161"
"7946","788.4","102420","spicybrainsgirl","xanax","161"
"102420","spicybrainsgirl","273439","marathonmel7","xanax","161"
"49040","rokman nash","102420","spicybrainsgirl","vicodin","161"
"28899","Esmerelda","102420","spicybrainsgirl","oxycontin","161"
"4910","Fantasian","102420","spicybrainsgirl","morphine","161"
"3299","anabolictrio","102420","spicybrainsgirl","subutex","161"
"1868","Paderas","102420","spicybrainsgirl","morphine","161"
"56","Hollywood ","102420","spicybrainsgirl","morphine","161"
"1842","nymphetamine","102420","spicybrainsgirl","morphine","161"
"7946","788.4","102420","spicybrainsgirl","methadone","161"
"743","madman3l6","102420","spicybrainsgirl","xanax","161"
"7946","788.4","102420","spicybrainsgirl","morphine","161"
"102420","spicybrainsgirl","211963","WoodyCA","vicodin","161"
"9","Freedom of Mind","102420","spicybrainsgirl","morphine","161"
"56","Hollywood ","102420","spicybrainsgirl","xanax","161"
"46865","dyingtomorrow","102420","spicybrainsgirl","subutex","161"
"4495","vhalin","102420","spicybrainsgirl","vicodin","161"
"102420","spicybrainsgirl","170641","jimmym321","methadone","161"
"1526","Cuberun ","108546","reef88","etizolam","161"
"1842","nymphetamine","102420","spicybrainsgirl","methadone","161"
"2763","bogumil","102420","spicybrainsgirl","kratom","161"
"3299","anabolictrio","102420","spicybrainsgirl","xanax","161"
"1684","CABS205","102420","spicybrainsgirl","benadryl","161"
"102420","spicybrainsgirl","115136","trdofbeingtrd","kratom","161"
"28899","Esmerelda","102420","spicybrainsgirl","percocet","161"
"102420","spicybrainsgirl","108860","Pain Hurts","oxycontin","161"
"35486","NeuroChi","102420","spicybrainsgirl","subutex","161"
"1842","nymphetamine","102420","spicybrainsgirl","vicodin","161"
"1842","nymphetamine","102420","spicybrainsgirl","percocet","161"
"102420","spicybrainsgirl","118772","Mr_Spiffy","methadone","161"
"46865","dyingtomorrow","102420","spicybrainsgirl","suboxone","161"
"102420","spicybrainsgirl","156304","PillMan","kratom","161"
"45599","On The Nod","102420","spicybrainsgirl","morphine","161"
"2418","Phungushead","108546","reef88","etizolam","161"
"28015","riaahacker","102420","spicybrainsgirl","methadone","161"
"9019","Forthesevenlakes","102420","spicybrainsgirl","suboxone","161"
"3299","anabolictrio","102420","spicybrainsgirl","morphine","161"
"135","sands of time","102420","spicybrainsgirl","kratom","161"
"102420","spicybrainsgirl","194301","rosielee","methadone","161"
"9","Freedom of Mind","102420","spicybrainsgirl","vicodin","161"
"6201","SkUnKaDeLiC","108546","reef88","etizolam","161"
"7303","pankreeas ","102420","spicybrainsgirl","morphine","161"
"35486","NeuroChi","102420","spicybrainsgirl","suboxone","161"
"102420","spicybrainsgirl","103726","seaturtle","kratom","161"
"2418","Phungushead","102420","spicybrainsgirl","methadone","161"
"1","Alfa","102420","spicybrainsgirl","morphine","161"
"35486","NeuroChi","102420","spicybrainsgirl","methadone","161"
"102420","spicybrainsgirl","180313","out_there","morphine","161"
"108546","reef88","180313","out_there","etizolam","161"
"28899","Esmerelda","102420","spicybrainsgirl","methadone","161"
"1964","enquirewithin ","102420","spicybrainsgirl","kratom","161"
"13344","drewcil","102420","spicybrainsgirl","kratom","161"
"102420","spicybrainsgirl","127014","MikePatton","methadone","161"
"6201","SkUnKaDeLiC","102420","spicybrainsgirl","methadone","161"
"90006","Ghetto_Chem","102420","spicybrainsgirl","suboxone","161"
"102420","spicybrainsgirl","157358","CrispCold","kratom","161"
"28015","riaahacker","102420","spicybrainsgirl","oxycontin","161"
"102420","spicybrainsgirl","202594","headfull0fstars","methadone","161"
"28015","riaahacker","102420","spicybrainsgirl","kratom","161"
"3413","radiometer ","102420","spicybrainsgirl","kratom","161"
"102420","spicybrainsgirl","118772","Mr_Spiffy","suboxone","161"
"63028","Smirnoff","102420","spicybrainsgirl","methadone","161"
"56","Hollywood ","102420","spicybrainsgirl","oxycontin","161"
"79947","TheBigBadWolf","102420","spicybrainsgirl","methadone","161"
"102420","spicybrainsgirl","273791","Roaddoggy","kratom","161"
"3299","anabolictrio","102420","spicybrainsgirl","suboxone","161"
"1","Alfa","102420","spicybrainsgirl","xanax","161"
"35486","NeuroChi","102420","spicybrainsgirl","vicodin","161"
"46865","dyingtomorrow","102420","spicybrainsgirl","vicodin","161"
"102420","spicybrainsgirl","211963","WoodyCA","xanax","161"
"3167","bubaloo","102420","spicybrainsgirl","xanax","161"
"45618","cannabis-sam","102420","spicybrainsgirl","xanax","161"
"102420","spicybrainsgirl","294051","Jungledog","kratom","161"
"35486","NeuroChi","102420","spicybrainsgirl","kratom","161"
"91040","Dankfish","102420","spicybrainsgirl","kratom","161"
"28015","riaahacker","102420","spicybrainsgirl","vicodin","161"
"100767","missinglfe","102420","spicybrainsgirl","methadone","161"
"4495","vhalin","102420","spicybrainsgirl","oxycontin","161"
"2066","~lostgurl~ ","102420","spicybrainsgirl","vicodin","161"
"1","Alfa","102420","spicybrainsgirl","kratom","161"
"18769","samuraigecko","102420","spicybrainsgirl","morphine","161"
"28899","Esmerelda","102420","spicybrainsgirl","morphine","161"
"27864","G_nome","102420","spicybrainsgirl","methadone","161"
"6201","SkUnKaDeLiC","102420","spicybrainsgirl","xanax","161"
"1842","nymphetamine","102420","spicybrainsgirl","oxycontin","161"
"1714","magicmaster141","102420","spicybrainsgirl","xanax","161"
"49040","rokman nash","102420","spicybrainsgirl","percocet","161"
"102420","spicybrainsgirl","211963","WoodyCA","oxycontin","161"
"19028","RochiWizz","102420","spicybrainsgirl","morphine","161"
"102420","spicybrainsgirl","273791","Roaddoggy","methadone","161"
"2418","Phungushead","102420","spicybrainsgirl","kratom","161"
"1842","nymphetamine","102420","spicybrainsgirl","xanax","161"
"1808","xxgaretjaxx","102420","spicybrainsgirl","xanax","161"
"1842","nymphetamine","102420","spicybrainsgirl","kratom","161"
"102420","spicybrainsgirl","275468","Openmymind","kratom","161"
"46865","dyingtomorrow","102420","spicybrainsgirl","oxycontin","161"
"20234","ianzombie ","102420","spicybrainsgirl","kratom","161"
"46446","EyesOfTheWorld","102420","spicybrainsgirl","methadone","161"
"45618","cannabis-sam","102420","spicybrainsgirl","methadone","161"
"102420","spicybrainsgirl","181260","Kitts","methadone","161"
"81101","source","102420","spicybrainsgirl","methadone","161"
"28899","Esmerelda","102420","spicybrainsgirl","xanax","161"
"102420","spicybrainsgirl","211963","WoodyCA","subutex","161"
"35486","NeuroChi","102420","spicybrainsgirl","xanax","161"
"3375","MrJim","102420","spicybrainsgirl","oxycontin","161"
"4495","vhalin","102420","spicybrainsgirl","xanax","161"
"102420","spicybrainsgirl","155253","MachoManSavage","kratom","161"
"45599","On The Nod","102420","spicybrainsgirl","methadone","161"
"46865","dyingtomorrow","102420","spicybrainsgirl","methadone","161"
"58307","missparkles ","102420","spicybrainsgirl","methadone","161"
"595","globalloon","45618","cannabis-sam","nutmeg","160"
"9","Freedom of Mind","595","globalloon","dextromethorphan","160"
"595","globalloon","13189","augentier ","nutmeg","160"
"595","globalloon","46889","port 21","dextromethorphan","160"
"595","globalloon","657","distilla_truant","dextromethorphan","160"
"595","globalloon","1684","CABS205","nutmeg","160"
"595","globalloon","40688","69Ron","nutmeg","160"
"595","globalloon","3565","amd6568","dextromethorphan","160"
"595","globalloon","8671","Richard_smoker","dextromethorphan","160"
"595","globalloon","28015","riaahacker","dextromethorphan","160"
"130","Woodman ","391","leanbaby","acetone","158"
"49040","rokman nash","263706","Ellen042","percocet","158"
"130","Woodman ","4490","DJ-666","acetone","158"
"130","Woodman ","835","Thegreatone","acetone","158"
"46865","dyingtomorrow","263706","Ellen042","percocet","158"
"35486","NeuroChi","41143","RoboCodeine7610","ritalin","158"
"28015","riaahacker","41143","RoboCodeine7610","ritalin","158"
"35486","NeuroChi","263706","Ellen042","percocet","158"
"856","str8ballin","41143","RoboCodeine7610","ritalin","158"
"102420","spicybrainsgirl","263706","Ellen042","percocet","158"
"28899","Esmerelda","263706","Ellen042","percocet","158"
"1842","nymphetamine","263706","Ellen042","percocet","158"
"5750","pharmapsyche","41143","RoboCodeine7610","ritalin","158"
"1842","nymphetamine","41143","RoboCodeine7610","ritalin","158"
"130","Woodman ","40688","69Ron","acetone","158"
"4495","vhalin","41143","RoboCodeine7610","ritalin","158"
"1806","betty_bupe","96636","Mersann","mdma","157"
"4495","vhalin","96636","Mersann","mdma","157"
"54214","Zoidberg","96636","Mersann","mdma","157"
"2418","Phungushead","96636","Mersann","mdma","157"
"28015","riaahacker","156304","PillMan","oxycontin","157"
"1562","soer","96636","Mersann","mdma","157"
"56","Hollywood ","156304","PillMan","oxycontin","157"
"96636","Mersann","180313","out_there","mdma","157"
"856","str8ballin","1112","hh339 ","ritalin","157"
"54108","Alexander_Praves","96636","Mersann","mdma","157"
"1112","hh339 ","41143","RoboCodeine7610","ritalin","157"
"4495","vhalin","156304","PillMan","oxycontin","157"
"6052","KomodoMK","96636","Mersann","mdma","157"
"1112","hh339 ","4495","vhalin","ritalin","157"
"56","Hollywood ","96636","Mersann","mdma","157"
"1868","Paderas","96636","Mersann","mdma","157"
"63028","Smirnoff","96636","Mersann","mdma","157"
"1842","nymphetamine","156304","PillMan","oxycontin","157"
"102420","spicybrainsgirl","156304","PillMan","oxycontin","157"
"10467","WrtngCocaineTutorial","96636","Mersann","mdma","157"
"1112","hh339 ","1842","nymphetamine","ritalin","157"
"46865","dyingtomorrow","156304","PillMan","oxycontin","157"
"108860","Pain Hurts","156304","PillMan","oxycontin","157"
"59051","Priapism9","96636","Mersann","mdma","157"
"3375","MrJim","156304","PillMan","oxycontin","157"
"19028","RochiWizz","96636","Mersann","mdma","157"
"3345","Unsolved","96636","Mersann","mdma","157"
"3732","Diphenhydramine","96636","Mersann","mdma","157"
"4910","Fantasian","96636","Mersann","mdma","157"
"156304","PillMan","211963","WoodyCA","oxycontin","157"
"788","mdve2","96636","Mersann","mdma","157"
"15564","Le Junk","96636","Mersann","mdma","157"
"7303","pankreeas ","156304","PillMan","oxycontin","157"
"2610","brainwaxd","96636","Mersann","mdma","157"
"62","BA","96636","Mersann","mdma","157"
"90006","Ghetto_Chem","96636","Mersann","mdma","157"
"96636","Mersann","124017","LoveNwar","mdma","157"
"1595","Curtains","96636","Mersann","mdma","157"
"45618","cannabis-sam","96636","Mersann","mdma","157"
"96636","Mersann","127014","MikePatton","mdma","157"
"63028","Smirnoff","156304","PillMan","oxycontin","157"
"1842","nymphetamine","96636","Mersann","mdma","157"
"7303","pankreeas ","96636","Mersann","mdma","157"
"7946","788.4","96636","Mersann","mdma","157"
"4218","TheLight01","96636","Mersann","mdma","157"
"1112","hh339 ","5750","pharmapsyche","ritalin","157"
"28899","Esmerelda","156304","PillMan","oxycontin","157"
"5750","pharmapsyche","96636","Mersann","mdma","157"
"1112","hh339 ","28015","riaahacker","ritalin","157"
"35486","NeuroChi","96636","Mersann","mdma","157"
"2709","risexagainst","96636","Mersann","mdma","157"
"539","stndguy","96636","Mersann","mdma","157"
"1112","hh339 ","35486","NeuroChi","ritalin","157"
"57101","Terrapinzflyer ","96636","Mersann","mdma","157"
"15832","JapanHorrorUncut","96636","Mersann","mdma","157"
"1","Alfa","96636","Mersann","mdma","157"
"13344","drewcil","46865","dyingtomorrow","kratom","156"
"46865","dyingtomorrow","273791","Roaddoggy","kratom","156"
"28015","riaahacker","46865","dyingtomorrow","kratom","156"
"3413","radiometer ","46865","dyingtomorrow","kratom","156"
"211963","WoodyCA","220080","Lunaciel","oxycodone","156"
"7946","788.4","220080","Lunaciel","oxycodone","156"
"46865","dyingtomorrow","294051","Jungledog","kratom","156"
"63028","Smirnoff","220080","Lunaciel","oxycodone","156"
"35486","NeuroChi","220080","Lunaciel","oxycodone","156"
"35486","NeuroChi","46865","dyingtomorrow","kratom","156"
"21513","HorseBucket","41143","RoboCodeine7610","ritalin","156"
"1","Alfa","46865","dyingtomorrow","kratom","156"
"46865","dyingtomorrow","115136","trdofbeingtrd","kratom","156"
"45599","On The Nod","211963","WoodyCA","subutex","156"
"21513","HorseBucket","35486","NeuroChi","ritalin","156"
"68194","baZING","220080","Lunaciel","oxycodone","156"
"46865","dyingtomorrow","275468","Openmymind","kratom","156"
"220080","Lunaciel","294051","Jungledog","oxycodone","156"
"2418","Phungushead","46865","dyingtomorrow","kratom","156"
"5750","pharmapsyche","21513","HorseBucket","ritalin","156"
"1842","nymphetamine","46865","dyingtomorrow","kratom","156"
"46865","dyingtomorrow","155253","MachoManSavage","kratom","156"
"20234","ianzombie ","46865","dyingtomorrow","kratom","156"
"3375","MrJim","220080","Lunaciel","oxycodone","156"
"1","Alfa","63028","Smirnoff","zopiclone","156"
"1842","nymphetamine","21513","HorseBucket","ritalin","156"
"4495","vhalin","21513","HorseBucket","ritalin","156"
"46865","dyingtomorrow","118772","Mr_Spiffy","kratom","156"
"7303","pankreeas ","220080","Lunaciel","oxycodone","156"
"46865","dyingtomorrow","127014","MikePatton","kratom","156"
"156304","PillMan","220080","Lunaciel","oxycodone","156"
"46865","dyingtomorrow","273439","marathonmel7","kratom","156"
"180313","out_there","220080","Lunaciel","oxycodone","156"
"856","str8ballin","21513","HorseBucket","ritalin","156"
"1239","Nicaine","46865","dyingtomorrow","kratom","156"
"4495","vhalin","46865","dyingtomorrow","kratom","156"
"9019","Forthesevenlakes","45599","On The Nod","subutex","156"
"1112","hh339 ","21513","HorseBucket","ritalin","156"
"56","Hollywood ","220080","Lunaciel","oxycodone","156"
"4495","vhalin","220080","Lunaciel","oxycodone","156"
"46865","dyingtomorrow","220080","Lunaciel","oxycodone","156"
"3299","anabolictrio","45599","On The Nod","subutex","156"
"46865","dyingtomorrow","102420","spicybrainsgirl","kratom","156"
"45599","On The Nod","102420","spicybrainsgirl","subutex","156"
"21513","HorseBucket","28015","riaahacker","ritalin","156"
"46865","dyingtomorrow","91040","Dankfish","kratom","156"
"45599","On The Nod","46865","dyingtomorrow","subutex","156"
"1842","nymphetamine","220080","Lunaciel","oxycodone","156"
"2763","bogumil","46865","dyingtomorrow","kratom","156"
"46865","dyingtomorrow","156304","PillMan","kratom","156"
"35486","NeuroChi","45599","On The Nod","subutex","156"
"1","Alfa","180313","out_there","zopiclone","156"
"46865","dyingtomorrow","103726","seaturtle","kratom","156"
"135","sands of time","46865","dyingtomorrow","kratom","156"
"1","Alfa","2418","Phungushead","zopiclone","156"
"118772","Mr_Spiffy","220080","Lunaciel","oxycodone","156"
"2418","Phungushead","220080","Lunaciel","oxycodone","156"
"46865","dyingtomorrow","157358","CrispCold","kratom","156"
"1964","enquirewithin ","46865","dyingtomorrow","kratom","156"
"18965","beentheredonethatagain","28015","riaahacker","methadone","155"
"6201","SkUnKaDeLiC","18965","beentheredonethatagain","methadone","155"
"110776","PowerfulMedicine","202594","headfull0fstars","dxm","155"
"18965","beentheredonethatagain","273791","Roaddoggy","methadone","155"
"657","distilla_truant","110776","PowerfulMedicine","dxm","155"
"1842","nymphetamine","93684","Synaps","ethylphenidate","155"
"18965","beentheredonethatagain","35486","NeuroChi","methadone","155"
"1","Alfa","18965","beentheredonethatagain","valium","155"
"18965","beentheredonethatagain","81101","source","methadone","155"
"28015","riaahacker","110776","PowerfulMedicine","dxm","155"
"4495","vhalin","18965","beentheredonethatagain","valium","155"
"56","Hollywood ","18965","beentheredonethatagain","valium","155"
"18965","beentheredonethatagain","118772","Mr_Spiffy","methadone","155"
"313","RoboCop ","110776","PowerfulMedicine","dxm","155"
"18965","beentheredonethatagain","100767","missinglfe","methadone","155"
"18965","beentheredonethatagain","28899","Esmerelda","valium","155"
"44584","Rightnow289","110776","PowerfulMedicine","dxm","155"
"1842","nymphetamine","18965","beentheredonethatagain","valium","155"
"18965","beentheredonethatagain","45618","cannabis-sam","methadone","155"
"18965","beentheredonethatagain","63028","Smirnoff","valium","155"
"75764","lololsolid","110776","PowerfulMedicine","dxm","155"
"2418","Phungushead","110776","PowerfulMedicine","dxm","155"
"1180","Creeping Death ","18965","beentheredonethatagain","valium","155"
"18965","beentheredonethatagain","127014","MikePatton","methadone","155"
"18965","beentheredonethatagain","102420","spicybrainsgirl","methadone","155"
"18965","beentheredonethatagain","45599","On The Nod","methadone","155"
"110776","PowerfulMedicine","156304","PillMan","dxm","155"
"18965","beentheredonethatagain","170641","jimmym321","methadone","155"
"18965","beentheredonethatagain","202594","headfull0fstars","methadone","155"
"1595","Curtains","18965","beentheredonethatagain","methadone","155"
"2539","Beltane","18965","beentheredonethatagain","valium","155"
"110776","PowerfulMedicine","180313","out_there","dxm","155"
"16489","baron samedi","18965","beentheredonethatagain","methadone","155"
"18965","beentheredonethatagain","79947","TheBigBadWolf","methadone","155"
"18965","beentheredonethatagain","46865","dyingtomorrow","methadone","155"
"3565","amd6568","110776","PowerfulMedicine","dxm","155"
"18965","beentheredonethatagain","28899","Esmerelda","methadone","155"
"18724","AirO","110776","PowerfulMedicine","dxm","155"
"7946","788.4","18965","beentheredonethatagain","valium","155"
"18965","beentheredonethatagain","46446","EyesOfTheWorld","methadone","155"
"8671","Richard_smoker","110776","PowerfulMedicine","dxm","155"
"18965","beentheredonethatagain","181260","Kitts","methadone","155"
"1023","btoddw2","18965","beentheredonethatagain","valium","155"
"18965","beentheredonethatagain","211963","WoodyCA","valium","155"
"6201","SkUnKaDeLiC","18965","beentheredonethatagain","valium","155"
"2418","Phungushead","18965","beentheredonethatagain","valium","155"
"7946","788.4","18965","beentheredonethatagain","methadone","155"
"18965","beentheredonethatagain","194301","rosielee","methadone","155"
"18965","beentheredonethatagain","45618","cannabis-sam","valium","155"
"38015","davestate ","93684","Synaps","ethylphenidate","155"
"1842","nymphetamine","18965","beentheredonethatagain","methadone","155"
"18965","beentheredonethatagain","102824","natey7","methadone","155"
"18965","beentheredonethatagain","46865","dyingtomorrow","valium","155"
"98407","phenythylamine","110776","PowerfulMedicine","dxm","155"
"46889","port 21","110776","PowerfulMedicine","dxm","155"
"3299","anabolictrio","18965","beentheredonethatagain","valium","155"
"9","Freedom of Mind","110776","PowerfulMedicine","dxm","155"
"18965","beentheredonethatagain","63028","Smirnoff","methadone","155"
"856","str8ballin","18965","beentheredonethatagain","valium","155"
"18965","beentheredonethatagain","27864","G_nome","methadone","155"
"18965","beentheredonethatagain","115136","trdofbeingtrd","methadone","155"
"2418","Phungushead","18965","beentheredonethatagain","methadone","155"
"110776","PowerfulMedicine","161625","mrcowman","dxm","155"
"18965","beentheredonethatagain","58307","missparkles ","methadone","155"
"8016","chillinwill","96636","Mersann","mephedrone","154"
"5750","pharmapsyche","96636","Mersann","mephedrone","154"
"57101","Terrapinzflyer ","62077","WTF O_o","mephedrone","154"
"2610","brainwaxd","45583","Synesthesiac","mdma","154"
"62","BA","45583","Synesthesiac","mdma","154"
"4092","trptamene ","96636","Mersann","mephedrone","154"
"50050","Gradient","96636","Mersann","mephedrone","154"
"1526","Cuberun ","62077","WTF O_o","mephedrone","154"
"1595","Curtains","45583","Synesthesiac","mdma","154"
"1842","nymphetamine","62077","WTF O_o","mephedrone","154"
"1","Alfa","46446","EyesOfTheWorld","xanax","154"
"1842","nymphetamine","45583","Synesthesiac","mdma","154"
"7303","pankreeas ","45583","Synesthesiac","mdma","154"
"7946","788.4","45583","Synesthesiac","mdma","154"
"4218","TheLight01","45583","Synesthesiac","mdma","154"
"3167","bubaloo","46446","EyesOfTheWorld","xanax","154"
"45618","cannabis-sam","46446","EyesOfTheWorld","xanax","154"
"46446","EyesOfTheWorld","211963","WoodyCA","xanax","154"
"5750","pharmapsyche","45583","Synesthesiac","mdma","154"
"20109","imyourlittlebare","62077","WTF O_o","mephedrone","154"
"45583","Synesthesiac","96636","Mersann","mdma","154"
"153","blaze","96636","Mersann","mephedrone","154"
"46446","EyesOfTheWorld","273439","marathonmel7","xanax","154"
"1868","Paderas","62077","WTF O_o","mephedrone","154"
"35486","NeuroChi","45583","Synesthesiac","mdma","154"
"45583","Synesthesiac","124017","LoveNwar","mdma","154"
"2709","risexagainst","45583","Synesthesiac","mdma","154"
"539","stndguy","45583","Synesthesiac","mdma","154"
"62077","WTF O_o","96636","Mersann","mephedrone","154"
"6201","SkUnKaDeLiC","46446","EyesOfTheWorld","xanax","154"
"1714","magicmaster141","46446","EyesOfTheWorld","xanax","154"
"45583","Synesthesiac","96636","Mersann","mephedrone","154"
"45583","Synesthesiac","180313","out_there","mdma","154"
"53567","buzzman","96636","Mersann","mephedrone","154"
"4495","vhalin","62077","WTF O_o","mephedrone","154"
"1","Alfa","96636","Mersann","mephedrone","154"
"1842","nymphetamine","46446","EyesOfTheWorld","xanax","154"
"1808","xxgaretjaxx","46446","EyesOfTheWorld","xanax","154"
"45583","Synesthesiac","59051","Priapism9","mdma","154"
"15832","JapanHorrorUncut","45583","Synesthesiac","mdma","154"
"28899","Esmerelda","46446","EyesOfTheWorld","xanax","154"
"35486","NeuroChi","46446","EyesOfTheWorld","xanax","154"
"4495","vhalin","46446","EyesOfTheWorld","xanax","154"
"3471","Potassium Kid","62077","WTF O_o","mephedrone","154"
"45583","Synesthesiac","127014","MikePatton","mdma","154"
"28015","riaahacker","96636","Mersann","mephedrone","154"
"1","Alfa","45583","Synesthesiac","mdma","154"
"8016","chillinwill","62077","WTF O_o","mephedrone","154"
"1806","betty_bupe","45583","Synesthesiac","mdma","154"
"5750","pharmapsyche","62077","WTF O_o","mephedrone","154"
"4495","vhalin","45583","Synesthesiac","mdma","154"
"45583","Synesthesiac","63028","Smirnoff","mdma","154"
"2418","Phungushead","45583","Synesthesiac","mdma","154"
"62508","Makesmefeelbig","96636","Mersann","mephedrone","154"
"4092","trptamene ","62077","WTF O_o","mephedrone","154"
"1213","Psilocybe S.","46446","EyesOfTheWorld","xanax","154"
"1562","soer","45583","Synesthesiac","mdma","154"
"50050","Gradient","62077","WTF O_o","mephedrone","154"
"57101","Terrapinzflyer ","96636","Mersann","mephedrone","154"
"28015","riaahacker","46446","EyesOfTheWorld","xanax","154"
"1526","Cuberun ","96636","Mersann","mephedrone","154"
"856","str8ballin","46446","EyesOfTheWorld","xanax","154"
"2418","Phungushead","46446","EyesOfTheWorld","xanax","154"
"46446","EyesOfTheWorld","102420","spicybrainsgirl","xanax","154"
"153","blaze","62077","WTF O_o","mephedrone","154"
"1842","nymphetamine","96636","Mersann","mephedrone","154"
"7946","788.4","46446","EyesOfTheWorld","xanax","154"
"6052","KomodoMK","45583","Synesthesiac","mdma","154"
"46446","EyesOfTheWorld","63028","Smirnoff","xanax","154"
"56","Hollywood ","45583","Synesthesiac","mdma","154"
"20109","imyourlittlebare","96636","Mersann","mephedrone","154"
"45583","Synesthesiac","54214","Zoidberg","mdma","154"
"1868","Paderas","45583","Synesthesiac","mdma","154"
"743","madman3l6","46446","EyesOfTheWorld","xanax","154"
"45583","Synesthesiac","62077","WTF O_o","mephedrone","154"
"56","Hollywood ","46446","EyesOfTheWorld","xanax","154"
"1868","Paderas","96636","Mersann","mephedrone","154"
"45583","Synesthesiac","90006","Ghetto_Chem","mdma","154"
"10467","WrtngCocaineTutorial","45583","Synesthesiac","mdma","154"
"53567","buzzman","62077","WTF O_o","mephedrone","154"
"1","Alfa","62077","WTF O_o","mephedrone","154"
"62077","WTF O_o","62508","Makesmefeelbig","mephedrone","154"
"3299","anabolictrio","46446","EyesOfTheWorld","xanax","154"
"45583","Synesthesiac","45618","cannabis-sam","mdma","154"
"4495","vhalin","96636","Mersann","mephedrone","154"
"19028","RochiWizz","45583","Synesthesiac","mdma","154"
"45583","Synesthesiac","54108","Alexander_Praves","mdma","154"
"28015","riaahacker","62077","WTF O_o","mephedrone","154"
"3345","Unsolved","45583","Synesthesiac","mdma","154"
"3732","Diphenhydramine","45583","Synesthesiac","mdma","154"
"4910","Fantasian","45583","Synesthesiac","mdma","154"
"788","mdve2","45583","Synesthesiac","mdma","154"
"15564","Le Junk","45583","Synesthesiac","mdma","154"
"3471","Potassium Kid","96636","Mersann","mephedrone","154"
"45583","Synesthesiac","57101","Terrapinzflyer ","mdma","154"
"16987","darkglobe","102420","spicybrainsgirl","benadryl","152"
"1684","CABS205","16987","darkglobe","benadryl","152"
"2539","Beltane","5733","Jatelka ","clonazepam","151"
"1562","soer","2281","billyloner ","mdma","151"
"2281","billyloner ","59051","Priapism9","mdma","151"
"5733","Jatelka ","180313","out_there","clonazepam","151"
"2281","billyloner ","96636","Mersann","mdma","151"
"2281","billyloner ","54108","Alexander_Praves","mdma","151"
"2418","Phungushead","5733","Jatelka ","clonazepam","151"
"5733","Jatelka ","63028","Smirnoff","clonazepam","151"
"2281","billyloner ","124017","LoveNwar","mdma","151"
"2281","billyloner ","127014","MikePatton","mdma","151"
"2281","billyloner ","15832","JapanHorrorUncut","mdma","151"
"56","Hollywood ","2281","billyloner ","mdma","151"
"2281","billyloner ","4910","Fantasian","mdma","151"
"1868","Paderas","2281","billyloner ","mdma","151"
"2281","billyloner ","7946","788.4","mdma","151"
"2281","billyloner ","63028","Smirnoff","mdma","151"
"2281","billyloner ","15564","Le Junk","mdma","151"
"2281","billyloner ","2610","brainwaxd","mdma","151"
"2281","billyloner ","4218","TheLight01","mdma","151"
"2281","billyloner ","2418","Phungushead","mdma","151"
"788","mdve2","2281","billyloner ","mdma","151"
"2281","billyloner ","10467","WrtngCocaineTutorial","mdma","151"
"2281","billyloner ","6052","KomodoMK","mdma","151"
"62","BA","2281","billyloner ","mdma","151"
"2281","billyloner ","45583","Synesthesiac","mdma","151"
"2281","billyloner ","3345","Unsolved","mdma","151"
"1595","Curtains","2281","billyloner ","mdma","151"
"5733","Jatelka ","202594","headfull0fstars","clonazepam","151"
"2281","billyloner ","54214","Zoidberg","mdma","151"
"2281","billyloner ","7303","pankreeas ","mdma","151"
"1714","magicmaster141","5733","Jatelka ","clonazepam","151"
"3167","bubaloo","5733","Jatelka ","clonazepam","151"
"1842","nymphetamine","2281","billyloner ","mdma","151"
"5733","Jatelka ","6201","SkUnKaDeLiC","clonazepam","151"
"2281","billyloner ","5750","pharmapsyche","mdma","151"
"9","Freedom of Mind","5733","Jatelka ","clonazepam","151"
"2281","billyloner ","4495","vhalin","mdma","151"
"2281","billyloner ","19028","RochiWizz","mdma","151"
"56","Hollywood ","5733","Jatelka ","clonazepam","151"
"2281","billyloner ","57101","Terrapinzflyer ","mdma","151"
"539","stndguy","2281","billyloner ","mdma","151"
"2281","billyloner ","90006","Ghetto_Chem","mdma","151"
"2281","billyloner ","3732","Diphenhydramine","mdma","151"
"2281","billyloner ","2709","risexagainst","mdma","151"
"2281","billyloner ","35486","NeuroChi","mdma","151"
"2281","billyloner ","180313","out_there","mdma","151"
"1","Alfa","2281","billyloner ","mdma","151"
"1806","betty_bupe","2281","billyloner ","mdma","151"
"2281","billyloner ","45618","cannabis-sam","mdma","151"
"40911","rawbeer","294051","Jungledog","kratom","150"
"1239","Nicaine","40911","rawbeer","kratom","150"
"4495","vhalin","40911","rawbeer","kratom","150"
"40911","rawbeer","46865","dyingtomorrow","kratom","150"
"40911","rawbeer","115136","trdofbeingtrd","kratom","150"
"40911","rawbeer","275468","Openmymind","kratom","150"
"2763","bogumil","40911","rawbeer","kratom","150"
"40911","rawbeer","155253","MachoManSavage","kratom","150"
"40911","rawbeer","118772","Mr_Spiffy","kratom","150"
"135","sands of time","40911","rawbeer","kratom","150"
"40911","rawbeer","127014","MikePatton","kratom","150"
"1964","enquirewithin ","40911","rawbeer","kratom","150"
"13344","drewcil","40911","rawbeer","kratom","150"
"40911","rawbeer","273439","marathonmel7","kratom","150"
"28015","riaahacker","40911","rawbeer","kratom","150"
"3413","radiometer ","40911","rawbeer","kratom","150"
"2080","BluNt-ZiLLa","63028","Smirnoff","kanna","150"
"35486","NeuroChi","40911","rawbeer","kratom","150"
"40911","rawbeer","102420","spicybrainsgirl","kratom","150"
"1","Alfa","40911","rawbeer","kratom","150"
"40911","rawbeer","91040","Dankfish","kratom","150"
"40911","rawbeer","156304","PillMan","kratom","150"
"2418","Phungushead","40911","rawbeer","kratom","150"
"1842","nymphetamine","40911","rawbeer","kratom","150"
"20234","ianzombie ","40911","rawbeer","kratom","150"
"40911","rawbeer","103726","seaturtle","kratom","150"
"40911","rawbeer","157358","CrispCold","kratom","150"
"40911","rawbeer","273791","Roaddoggy","kratom","150"
"2418","Phungushead","83387","PrincessJo x","mdma","149"
"83387","PrincessJo x","180313","out_there","mdma","149"
"1595","Curtains","83387","PrincessJo x","mdma","149"
"45618","cannabis-sam","83387","PrincessJo x","mdma","149"
"1842","nymphetamine","83387","PrincessJo x","mdma","149"
"6052","KomodoMK","83387","PrincessJo x","mdma","149"
"5010","snapper ","11877","howlongisthenight","kava","149"
"539","stndguy","83387","PrincessJo x","mdma","149"
"1833","scyrusurcys","3565","amd6568","salvia divinorum","149"
"1842","nymphetamine","11877","howlongisthenight","kava","149"
"11877","howlongisthenight","102420","spicybrainsgirl","benadryl","149"
"10467","WrtngCocaineTutorial","83387","PrincessJo x","mdma","149"
"15","Sammi","1833","scyrusurcys","salvia divinorum","149"
"1684","CABS205","11877","howlongisthenight","benadryl","149"
"4495","vhalin","11877","howlongisthenight","kava","149"
"1752","Gurnie","1833","scyrusurcys","salvia divinorum","149"
"57101","Terrapinzflyer ","83387","PrincessJo x","mdma","149"
"19028","RochiWizz","83387","PrincessJo x","mdma","149"
"3345","Unsolved","83387","PrincessJo x","mdma","149"
"3732","Diphenhydramine","83387","PrincessJo x","mdma","149"
"1","Alfa","83387","PrincessJo x","mdma","149"
"4910","Fantasian","83387","PrincessJo x","mdma","149"
"1806","betty_bupe","83387","PrincessJo x","mdma","149"
"83387","PrincessJo x","96636","Mersann","mdma","149"
"15564","Le Junk","83387","PrincessJo x","mdma","149"
"83387","PrincessJo x","90006","Ghetto_Chem","mdma","149"
"1562","soer","83387","PrincessJo x","mdma","149"
"54214","Zoidberg","83387","PrincessJo x","mdma","149"
"2610","brainwaxd","83387","PrincessJo x","mdma","149"
"83387","PrincessJo x","127014","MikePatton","mdma","149"
"54108","Alexander_Praves","83387","PrincessJo x","mdma","149"
"11877","howlongisthenight","63028","Smirnoff","kava","149"
"1684","CABS205","11877","howlongisthenight","kava","149"
"7303","pankreeas ","83387","PrincessJo x","mdma","149"
"7946","788.4","83387","PrincessJo x","mdma","149"
"4218","TheLight01","83387","PrincessJo x","mdma","149"
"56","Hollywood ","83387","PrincessJo x","mdma","149"
"5750","pharmapsyche","83387","PrincessJo x","mdma","149"
"45583","Synesthesiac","83387","PrincessJo x","mdma","149"
"1868","Paderas","83387","PrincessJo x","mdma","149"
"1833","scyrusurcys","14069","Drugaddict","salvia divinorum","149"
"35486","NeuroChi","83387","PrincessJo x","mdma","149"
"2709","risexagainst","83387","PrincessJo x","mdma","149"
"11877","howlongisthenight","16987","darkglobe","benadryl","149"
"63028","Smirnoff","83387","PrincessJo x","mdma","149"
"1833","scyrusurcys","1842","nymphetamine","salvia divinorum","149"
"15832","JapanHorrorUncut","83387","PrincessJo x","mdma","149"
"59051","Priapism9","83387","PrincessJo x","mdma","149"
"788","mdve2","83387","PrincessJo x","mdma","149"
"83387","PrincessJo x","124017","LoveNwar","mdma","149"
"4495","vhalin","83387","PrincessJo x","mdma","149"
"62","BA","83387","PrincessJo x","mdma","149"
"2281","billyloner ","83387","PrincessJo x","mdma","149"
"7303","pankreeas ","76984","LostControl","oxycontin","148"
"6482","psychedelaholic","7303","pankreeas ","mdma","148"
"6482","psychedelaholic","83387","PrincessJo x","mdma","148"
"46446","EyesOfTheWorld","46865","dyingtomorrow","suboxone","148"
"6482","psychedelaholic","57101","Terrapinzflyer ","mdma","148"
"6482","psychedelaholic","96636","Mersann","mdma","148"
"4218","TheLight01","6482","psychedelaholic","mdma","148"
"56","Hollywood ","6482","psychedelaholic","mdma","148"
"63028","Smirnoff","76984","LostControl","oxycontin","148"
"5750","pharmapsyche","6482","psychedelaholic","mdma","148"
"1868","Paderas","6482","psychedelaholic","mdma","148"
"6482","psychedelaholic","35486","NeuroChi","mdma","148"
"6482","psychedelaholic","124017","LoveNwar","mdma","148"
"3299","anabolictrio","46446","EyesOfTheWorld","suboxone","148"
"28899","Esmerelda","76984","LostControl","oxycontin","148"
"2709","risexagainst","6482","psychedelaholic","mdma","148"
"6482","psychedelaholic","19028","RochiWizz","mdma","148"
"76984","LostControl","102420","spicybrainsgirl","oxycontin","148"
"6482","psychedelaholic","90006","Ghetto_Chem","mdma","148"
"76984","LostControl","108860","Pain Hurts","oxycontin","148"
"788","mdve2","6482","psychedelaholic","mdma","148"
"6482","psychedelaholic","180313","out_there","mdma","148"
"46446","EyesOfTheWorld","102420","spicybrainsgirl","suboxone","148"
"4495","vhalin","6482","psychedelaholic","mdma","148"
"6482","psychedelaholic","45618","cannabis-sam","mdma","148"
"46446","EyesOfTheWorld","90006","Ghetto_Chem","suboxone","148"
"62","BA","6482","psychedelaholic","mdma","148"
"2281","billyloner ","6482","psychedelaholic","mdma","148"
"2418","Phungushead","6482","psychedelaholic","mdma","148"
"6482","psychedelaholic","54108","Alexander_Praves","mdma","148"
"1595","Curtains","6482","psychedelaholic","mdma","148"
"46446","EyesOfTheWorld","115136","trdofbeingtrd","suboxone","148"
"28015","riaahacker","76984","LostControl","oxycontin","148"
"6482","psychedelaholic","127014","MikePatton","mdma","148"
"6482","psychedelaholic","45583","Synesthesiac","mdma","148"
"56","Hollywood ","76984","LostControl","oxycontin","148"
"1842","nymphetamine","6482","psychedelaholic","mdma","148"
"6482","psychedelaholic","63028","Smirnoff","mdma","148"
"6482","psychedelaholic","54214","Zoidberg","mdma","148"
"6052","KomodoMK","6482","psychedelaholic","mdma","148"
"539","stndguy","6482","psychedelaholic","mdma","148"
"4495","vhalin","76984","LostControl","oxycontin","148"
"6482","psychedelaholic","15832","JapanHorrorUncut","mdma","148"
"76984","LostControl","156304","PillMan","oxycontin","148"
"1842","nymphetamine","76984","LostControl","oxycontin","148"
"6482","psychedelaholic","7946","788.4","mdma","148"
"76984","LostControl","211963","WoodyCA","oxycontin","148"
"6482","psychedelaholic","15564","Le Junk","mdma","148"
"46865","dyingtomorrow","76984","LostControl","oxycontin","148"
"3345","Unsolved","6482","psychedelaholic","mdma","148"
"3732","Diphenhydramine","6482","psychedelaholic","mdma","148"
"1","Alfa","6482","psychedelaholic","mdma","148"
"4910","Fantasian","6482","psychedelaholic","mdma","148"
"1806","betty_bupe","6482","psychedelaholic","mdma","148"
"3375","MrJim","76984","LostControl","oxycontin","148"
"6482","psychedelaholic","10467","WrtngCocaineTutorial","mdma","148"
"46446","EyesOfTheWorld","211963","WoodyCA","suboxone","148"
"9019","Forthesevenlakes","46446","EyesOfTheWorld","suboxone","148"
"35486","NeuroChi","46446","EyesOfTheWorld","suboxone","148"
"1562","soer","6482","psychedelaholic","mdma","148"
"6482","psychedelaholic","59051","Priapism9","mdma","148"
"2610","brainwaxd","6482","psychedelaholic","mdma","148"
"46446","EyesOfTheWorld","118772","Mr_Spiffy","suboxone","148"
"46865","dyingtomorrow","93684","Synaps","ethylphenidate","147"
"38015","davestate ","46865","dyingtomorrow","ethylphenidate","147"
"1842","nymphetamine","46865","dyingtomorrow","ethylphenidate","147"
"1915","curve","45618","cannabis-sam","mdma","146"
"21315","Graduisic","156304","PillMan","dxm","146"
"3565","amd6568","21315","Graduisic","dxm","146"
"108860","Pain Hurts","220080","Lunaciel","oxycodone","146"
"1842","nymphetamine","1915","curve","mdma","146"
"1915","curve","2281","billyloner ","mdma","146"
"8569","johnnyvoid","16320","psycholic","peyote","146"
"108860","Pain Hurts","118772","Mr_Spiffy","oxycodone","146"
"1915","curve","59051","Priapism9","mdma","146"
"18724","AirO","21315","Graduisic","dxm","146"
"7946","788.4","8569","johnnyvoid","valium","146"
"1842","nymphetamine","8569","johnnyvoid","diazepam","146"
"21315","Graduisic","46889","port 21","dxm","146"
"1915","curve","96636","Mersann","mdma","146"
"56","Hollywood ","108860","Pain Hurts","oxycodone","146"
"108860","Pain Hurts","180313","out_there","oxycodone","146"
"1915","curve","54108","Alexander_Praves","mdma","146"
"4495","vhalin","108860","Pain Hurts","oxycodone","146"
"539","stndguy","1915","curve","mdma","146"
"46865","dyingtomorrow","108860","Pain Hurts","oxycodone","146"
"2539","Beltane","8569","johnnyvoid","diazepam","146"
"21315","Graduisic","202594","headfull0fstars","dxm","146"
"8671","Richard_smoker","21315","Graduisic","dxm","146"
"1915","curve","124017","LoveNwar","mdma","146"
"1023","btoddw2","8569","johnnyvoid","valium","146"
"6201","SkUnKaDeLiC","8569","johnnyvoid","valium","146"
"1915","curve","127014","MikePatton","mdma","146"
"2418","Phungushead","8569","johnnyvoid","valium","146"
"1915","curve","15832","JapanHorrorUncut","mdma","146"
"8569","johnnyvoid","127014","MikePatton","diphenhydramine","146"
"1915","curve","4910","Fantasian","mdma","146"
"1842","nymphetamine","108860","Pain Hurts","oxycodone","146"
"1915","curve","7946","788.4","mdma","146"
"8569","johnnyvoid","13189","augentier ","diphenhydramine","146"
"3299","anabolictrio","8569","johnnyvoid","valium","146"
"1915","curve","63028","Smirnoff","mdma","146"
"1","Alfa","1915","curve","mdma","146"
"8569","johnnyvoid","211963","WoodyCA","valium","146"
"1806","betty_bupe","1915","curve","mdma","146"
"9","Freedom of Mind","21315","Graduisic","dxm","146"
"1915","curve","15564","Le Junk","mdma","146"
"856","str8ballin","8569","johnnyvoid","valium","146"
"1915","curve","2610","brainwaxd","mdma","146"
"8569","johnnyvoid","45618","cannabis-sam","valium","146"
"1915","curve","4218","TheLight01","mdma","146"
"1562","soer","1915","curve","mdma","146"
"2418","Phungushead","108860","Pain Hurts","oxycodone","146"
"8569","johnnyvoid","58307","missparkles ","diazepam","146"
"4969","kaide","8569","johnnyvoid","diphenhydramine","146"
"21315","Graduisic","44584","Rightnow289","dxm","146"
"1915","curve","2418","Phungushead","mdma","146"
"4495","vhalin","8569","johnnyvoid","diazepam","146"
"8569","johnnyvoid","46865","dyingtomorrow","valium","146"
"1915","curve","10467","WrtngCocaineTutorial","mdma","146"
"8569","johnnyvoid","28015","riaahacker","diazepam","146"
"21315","Graduisic","75764","lololsolid","dxm","146"
"1915","curve","83387","PrincessJo x","mdma","146"
"657","distilla_truant","21315","Graduisic","dxm","146"
"8569","johnnyvoid","40688","69Ron","peyote","146"
"1915","curve","6052","KomodoMK","mdma","146"
"1","Alfa","8569","johnnyvoid","valium","146"
"7946","788.4","108860","Pain Hurts","oxycodone","146"
"21315","Graduisic","161625","mrcowman","dxm","146"
"108860","Pain Hurts","211963","WoodyCA","oxycodone","146"
"1915","curve","45583","Synesthesiac","mdma","146"
"8569","johnnyvoid","54108","Alexander_Praves","peyote","146"
"56","Hollywood ","1915","curve","mdma","146"
"108860","Pain Hurts","156304","PillMan","oxycodone","146"
"6201","SkUnKaDeLiC","8569","johnnyvoid","diazepam","146"
"1915","curve","3345","Unsolved","mdma","146"
"4495","vhalin","8569","johnnyvoid","valium","146"
"1868","Paderas","1915","curve","mdma","146"
"56","Hollywood ","8569","johnnyvoid","valium","146"
"4495","vhalin","8569","johnnyvoid","diphenhydramine","146"
"63028","Smirnoff","108860","Pain Hurts","oxycodone","146"
"21315","Graduisic","180313","out_there","dxm","146"
"1915","curve","54214","Zoidberg","mdma","146"
"35486","NeuroChi","108860","Pain Hurts","oxycodone","146"
"108860","Pain Hurts","294051","Jungledog","oxycodone","146"
"1915","curve","7303","pankreeas ","mdma","146"
"1","Alfa","8569","johnnyvoid","diazepam","146"
"313","RoboCop ","21315","Graduisic","dxm","146"
"21315","Graduisic","28015","riaahacker","dxm","146"
"1915","curve","5750","pharmapsyche","mdma","146"
"9","Freedom of Mind","8569","johnnyvoid","diazepam","146"
"8569","johnnyvoid","202594","headfull0fstars","diphenhydramine","146"
"1842","nymphetamine","8569","johnnyvoid","diphenhydramine","146"
"1915","curve","4495","vhalin","mdma","146"
"1842","nymphetamine","8569","johnnyvoid","valium","146"
"1915","curve","19028","RochiWizz","mdma","146"
"8569","johnnyvoid","63028","Smirnoff","diphenhydramine","146"
"68194","baZING","108860","Pain Hurts","oxycodone","146"
"1915","curve","57101","Terrapinzflyer ","mdma","146"
"2418","Phungushead","21315","Graduisic","dxm","146"
"1180","Creeping Death ","8569","johnnyvoid","valium","146"
"8569","johnnyvoid","18965","beentheredonethatagain","valium","146"
"1915","curve","90006","Ghetto_Chem","mdma","146"
"788","mdve2","1915","curve","mdma","146"
"8569","johnnyvoid","46865","dyingtomorrow","diphenhydramine","146"
"1915","curve","3732","Diphenhydramine","mdma","146"
"3375","MrJim","108860","Pain Hurts","oxycodone","146"
"56","Hollywood ","8569","johnnyvoid","diazepam","146"
"1023","btoddw2","8569","johnnyvoid","diazepam","146"
"1684","CABS205","8569","johnnyvoid","diphenhydramine","146"
"8569","johnnyvoid","28899","Esmerelda","valium","146"
"1915","curve","2709","risexagainst","mdma","146"
"7303","pankreeas ","8569","johnnyvoid","diphenhydramine","146"
"21315","Graduisic","110776","PowerfulMedicine","dxm","146"
"1915","curve","35486","NeuroChi","mdma","146"
"62","BA","1915","curve","mdma","146"
"7303","pankreeas ","108860","Pain Hurts","oxycodone","146"
"8569","johnnyvoid","63028","Smirnoff","valium","146"
"1915","curve","180313","out_there","mdma","146"
"2539","Beltane","8569","johnnyvoid","valium","146"
"8569","johnnyvoid","63028","Smirnoff","diazepam","146"
"1595","Curtains","1915","curve","mdma","146"
"21315","Graduisic","98407","phenythylamine","dxm","146"
"1808","xxgaretjaxx","8569","johnnyvoid","diphenhydramine","146"
"1915","curve","6482","psychedelaholic","mdma","146"
"1180","Creeping Death ","8569","johnnyvoid","diazepam","146"
"1842","nymphetamine","2627","NoWorldOrder","ethylphenidate","145"
"4092","trptamene ","57308","BoyInTheCountry","mephedrone","145"
"1","Alfa","1833","scyrusurcys","salvia divinorum","145"
"1213","Psilocybe S.","297036","supermono","xanax","145"
"50050","Gradient","57308","BoyInTheCountry","mephedrone","145"
"28015","riaahacker","297036","supermono","xanax","145"
"1","Alfa","3565","amd6568","salvia divinorum","145"
"856","str8ballin","297036","supermono","xanax","145"
"2418","Phungushead","297036","supermono","xanax","145"
"46446","EyesOfTheWorld","297036","supermono","xanax","145"
"273439","marathonmel7","297036","supermono","xanax","145"
"153","blaze","57308","BoyInTheCountry","mephedrone","145"
"1","Alfa","15","Sammi","salvia divinorum","145"
"7946","788.4","297036","supermono","xanax","145"
"102420","spicybrainsgirl","297036","supermono","xanax","145"
"743","madman3l6","297036","supermono","xanax","145"
"45583","Synesthesiac","57308","BoyInTheCountry","mephedrone","145"
"56","Hollywood ","297036","supermono","xanax","145"
"2627","NoWorldOrder","46865","dyingtomorrow","ethylphenidate","145"
"53567","buzzman","57308","BoyInTheCountry","mephedrone","145"
"1","Alfa","57308","BoyInTheCountry","mephedrone","145"
"211963","WoodyCA","297036","supermono","xanax","145"
"3299","anabolictrio","297036","supermono","xanax","145"
"57308","BoyInTheCountry","96636","Mersann","mephedrone","145"
"2627","NoWorldOrder","38015","davestate ","ethylphenidate","145"
"28015","riaahacker","57308","BoyInTheCountry","mephedrone","145"
"57101","Terrapinzflyer ","57308","BoyInTheCountry","mephedrone","145"
"1","Alfa","14069","Drugaddict","salvia divinorum","145"
"1526","Cuberun ","57308","BoyInTheCountry","mephedrone","145"
"1842","nymphetamine","57308","BoyInTheCountry","mephedrone","145"
"1","Alfa","1752","Gurnie","salvia divinorum","145"
"1","Alfa","297036","supermono","dihydrocodeine","145"
"1","Alfa","297036","supermono","xanax","145"
"63028","Smirnoff","297036","supermono","xanax","145"
"3167","bubaloo","297036","supermono","xanax","145"
"45618","cannabis-sam","297036","supermono","xanax","145"
"20109","imyourlittlebare","57308","BoyInTheCountry","mephedrone","145"
"1","Alfa","1842","nymphetamine","salvia divinorum","145"
"1868","Paderas","57308","BoyInTheCountry","mephedrone","145"
"6201","SkUnKaDeLiC","297036","supermono","xanax","145"
"57308","BoyInTheCountry","62077","WTF O_o","mephedrone","145"
"1714","magicmaster141","297036","supermono","xanax","145"
"2627","NoWorldOrder","93684","Synaps","ethylphenidate","145"
"4495","vhalin","57308","BoyInTheCountry","mephedrone","145"
"57308","BoyInTheCountry","62508","Makesmefeelbig","mephedrone","145"
"1842","nymphetamine","297036","supermono","xanax","145"
"1808","xxgaretjaxx","297036","supermono","xanax","145"
"28899","Esmerelda","297036","supermono","xanax","145"
"35486","NeuroChi","297036","supermono","xanax","145"
"4495","vhalin","297036","supermono","xanax","145"
"3471","Potassium Kid","57308","BoyInTheCountry","mephedrone","145"
"8016","chillinwill","57308","BoyInTheCountry","mephedrone","145"
"5750","pharmapsyche","57308","BoyInTheCountry","mephedrone","145"
"1023","btoddw2","45728","Gappa","adderall","144"
"28015","riaahacker","90006","Ghetto_Chem","kratom","144"
"1239","Nicaine","28899","Esmerelda","valium","144"
"4495","vhalin","45728","Gappa","adderall","144"
"3413","radiometer ","90006","Ghetto_Chem","kratom","144"
"45618","cannabis-sam","45728","Gappa","adderall","144"
"1","Alfa","1239","Nicaine","valium","144"
"1239","Nicaine","6201","SkUnKaDeLiC","diazepam","144"
"9","Freedom of Mind","45728","Gappa","adderall","144"
"1239","Nicaine","45618","cannabis-sam","valium","144"
"90006","Ghetto_Chem","115136","trdofbeingtrd","kratom","144"
"56","Hollywood ","1239","Nicaine","alprazolam","144"
"1842","nymphetamine","45728","Gappa","adderall","144"
"56","Hollywood ","1239","Nicaine","valium","144"
"1239","Nicaine","1842","nymphetamine","diazepam","144"
"201","fnord","14069","Drugaddict","salvia divinorum","144"
"35486","NeuroChi","90006","Ghetto_Chem","kratom","144"
"1239","Nicaine","63028","Smirnoff","valium","144"
"90006","Ghetto_Chem","275468","Openmymind","kratom","144"
"1","Alfa","1239","Nicaine","diazepam","144"
"1868","Paderas","45728","Gappa","adderall","144"
"201","fnord","1752","Gurnie","salvia divinorum","144"
"1","Alfa","90006","Ghetto_Chem","kratom","144"
"9","Freedom of Mind","1239","Nicaine","diazepam","144"
"1239","Nicaine","1842","nymphetamine","valium","144"
"46865","dyingtomorrow","90006","Ghetto_Chem","kratom","144"
"90006","Ghetto_Chem","155253","MachoManSavage","kratom","144"
"1239","Nicaine","2418","Phungushead","valium","144"
"90006","Ghetto_Chem","118772","Mr_Spiffy","kratom","144"
"1842","nymphetamine","90006","Ghetto_Chem","kratom","144"
"1239","Nicaine","3167","bubaloo","alprazolam","144"
"1180","Creeping Death ","1239","Nicaine","valium","144"
"2418","Phungushead","90006","Ghetto_Chem","kratom","144"
"20234","ianzombie ","90006","Ghetto_Chem","kratom","144"
"90006","Ghetto_Chem","127014","MikePatton","kratom","144"
"56","Hollywood ","1239","Nicaine","diazepam","144"
"1023","btoddw2","1239","Nicaine","diazepam","144"
"1","Alfa","45728","Gappa","adderall","144"
"45728","Gappa","46865","dyingtomorrow","adderall","144"
"1239","Nicaine","4495","vhalin","alprazolam","144"
"1239","Nicaine","8569","johnnyvoid","valium","144"
"1239","Nicaine","8569","johnnyvoid","diazepam","144"
"90006","Ghetto_Chem","273439","marathonmel7","kratom","144"
"45728","Gappa","127014","MikePatton","adderall","144"
"5750","pharmapsyche","45728","Gappa","adderall","144"
"1239","Nicaine","211963","WoodyCA","valium","144"
"1239","Nicaine","6201","SkUnKaDeLiC","alprazolam","144"
"1239","Nicaine","2539","Beltane","diazepam","144"
"45728","Gappa","115136","trdofbeingtrd","adderall","144"
"1180","Creeping Death ","1239","Nicaine","diazepam","144"
"1239","Nicaine","7946","788.4","valium","144"
"1","Alfa","201","fnord","salvia divinorum","144"
"1239","Nicaine","63028","Smirnoff","diazepam","144"
"28015","riaahacker","45728","Gappa","adderall","144"
"1","Alfa","1239","Nicaine","alprazolam","144"
"1239","Nicaine","3299","anabolictrio","valium","144"
"90006","Ghetto_Chem","102420","spicybrainsgirl","kratom","144"
"56","Hollywood ","45728","Gappa","adderall","144"
"1239","Nicaine","28015","riaahacker","diazepam","144"
"1239","Nicaine","90006","Ghetto_Chem","kratom","144"
"201","fnord","1833","scyrusurcys","salvia divinorum","144"
"4495","vhalin","90006","Ghetto_Chem","kratom","144"
"1239","Nicaine","4495","vhalin","valium","144"
"40911","rawbeer","90006","Ghetto_Chem","kratom","144"
"90006","Ghetto_Chem","91040","Dankfish","kratom","144"
"201","fnord","3565","amd6568","salvia divinorum","144"
"1023","btoddw2","1239","Nicaine","valium","144"
"1239","Nicaine","6201","SkUnKaDeLiC","valium","144"
"90006","Ghetto_Chem","156304","PillMan","kratom","144"
"201","fnord","1842","nymphetamine","salvia divinorum","144"
"1239","Nicaine","46865","dyingtomorrow","valium","144"
"90006","Ghetto_Chem","103726","seaturtle","kratom","144"
"1239","Nicaine","48762","brandon561","alprazolam","144"
"2763","bogumil","90006","Ghetto_Chem","kratom","144"
"15","Sammi","201","fnord","salvia divinorum","144"
"90006","Ghetto_Chem","157358","CrispCold","kratom","144"
"35486","NeuroChi","45728","Gappa","adderall","144"
"45728","Gappa","56520","Christian1122","adderall","144"
"1239","Nicaine","1714","magicmaster141","alprazolam","144"
"9","Freedom of Mind","1239","Nicaine","alprazolam","144"
"856","str8ballin","1239","Nicaine","valium","144"
"90006","Ghetto_Chem","273791","Roaddoggy","kratom","144"
"45728","Gappa","202594","headfull0fstars","adderall","144"
"135","sands of time","90006","Ghetto_Chem","kratom","144"
"1239","Nicaine","18965","beentheredonethatagain","valium","144"
"1239","Nicaine","63028","Smirnoff","alprazolam","144"
"1239","Nicaine","58307","missparkles ","diazepam","144"
"737","RARFE ","45728","Gappa","adderall","144"
"90006","Ghetto_Chem","294051","Jungledog","kratom","144"
"45728","Gappa","63028","Smirnoff","adderall","144"
"1964","enquirewithin ","90006","Ghetto_Chem","kratom","144"
"13344","drewcil","90006","Ghetto_Chem","kratom","144"
"1239","Nicaine","2539","Beltane","valium","144"
"1239","Nicaine","28015","riaahacker","alprazolam","144"
"1239","Nicaine","4495","vhalin","diazepam","144"
"45728","Gappa","71487","robotripper","adderall","144"
"28015","riaahacker","156304","PillMan","klonopin","142"
"56","Hollywood ","79297","bostonnew","mdma","142"
"54108","Alexander_Praves","79297","bostonnew","mdma","142"
"1868","Paderas","79297","bostonnew","mdma","142"
"7303","pankreeas ","79297","bostonnew","mdma","142"
"7946","788.4","79297","bostonnew","mdma","142"
"6052","KomodoMK","79297","bostonnew","mdma","142"
"45583","Synesthesiac","79297","bostonnew","mdma","142"
"2539","Beltane","3375","MrJim","hydromorphone","142"
"35486","NeuroChi","79297","bostonnew","mdma","142"
"63028","Smirnoff","79297","bostonnew","mdma","142"
"2539","Beltane","118772","Mr_Spiffy","hydromorphone","142"
"788","mdve2","79297","bostonnew","mdma","142"
"3345","Unsolved","79297","bostonnew","mdma","142"
"3732","Diphenhydramine","79297","bostonnew","mdma","142"
"1","Alfa","156304","PillMan","klonopin","142"
"79297","bostonnew","83387","PrincessJo x","mdma","142"
"15832","JapanHorrorUncut","79297","bostonnew","mdma","142"
"4910","Fantasian","79297","bostonnew","mdma","142"
"59051","Priapism9","79297","bostonnew","mdma","142"
"79297","bostonnew","124017","LoveNwar","mdma","142"
"62","BA","79297","bostonnew","mdma","142"
"1595","Curtains","79297","bostonnew","mdma","142"
"2610","brainwaxd","79297","bostonnew","mdma","142"
"1915","curve","79297","bostonnew","mdma","142"
"79297","bostonnew","180313","out_there","mdma","142"
"9","Freedom of Mind","1239","Nicaine","gabapentin","142"
"6482","psychedelaholic","79297","bostonnew","mdma","142"
"2539","Beltane","156304","PillMan","klonopin","142"
"1842","nymphetamine","79297","bostonnew","mdma","142"
"45618","cannabis-sam","79297","bostonnew","mdma","142"
"4218","TheLight01","79297","bostonnew","mdma","142"
"5750","pharmapsyche","79297","bostonnew","mdma","142"
"539","stndguy","79297","bostonnew","mdma","142"
"2539","Beltane","46865","dyingtomorrow","hydromorphone","142"
"2709","risexagainst","79297","bostonnew","mdma","142"
"2539","Beltane","45599","On The Nod","hydromorphone","142"
"1714","magicmaster141","156304","PillMan","klonopin","142"
"10467","WrtngCocaineTutorial","79297","bostonnew","mdma","142"
"2539","Beltane","4495","vhalin","hydromorphone","142"
"1","Alfa","79297","bostonnew","mdma","142"
"1806","betty_bupe","79297","bostonnew","mdma","142"
"57101","Terrapinzflyer ","79297","bostonnew","mdma","142"
"19028","RochiWizz","79297","bostonnew","mdma","142"
"79297","bostonnew","96636","Mersann","mdma","142"
"9","Freedom of Mind","2539","Beltane","hydromorphone","142"
"1562","soer","79297","bostonnew","mdma","142"
"4495","vhalin","79297","bostonnew","mdma","142"
"15564","Le Junk","79297","bostonnew","mdma","142"
"79297","bostonnew","90006","Ghetto_Chem","mdma","142"
"2281","billyloner ","79297","bostonnew","mdma","142"
"2418","Phungushead","79297","bostonnew","mdma","142"
"54214","Zoidberg","79297","bostonnew","mdma","142"
"79297","bostonnew","127014","MikePatton","mdma","142"
"28015","riaahacker","65726","ellavader","oxycontin","141"
"75","Leo.","6052","KomodoMK","mdma","141"
"90006","Ghetto_Chem","234642","SuperCaesarKratomSalad","kratom","141"
"7946","788.4","207982","tryinghard","oxycodone","141"
"313","RoboCop ","1842","nymphetamine","ethylphenidate","141"
"75","Leo.","1842","nymphetamine","mdma","141"
"1239","Nicaine","234642","SuperCaesarKratomSalad","kratom","141"
"75","Leo.","96636","Mersann","mdma","141"
"4495","vhalin","234642","SuperCaesarKratomSalad","kratom","141"
"56","Hollywood ","65726","ellavader","oxycontin","141"
"180313","out_there","207982","tryinghard","oxycodone","141"
"75","Leo.","59051","Priapism9","mdma","141"
"40911","rawbeer","234642","SuperCaesarKratomSalad","kratom","141"
"75","Leo.","2418","Phungushead","mdma","141"
"63028","Smirnoff","207982","tryinghard","oxycodone","141"
"75","Leo.","124017","LoveNwar","mdma","141"
"103726","seaturtle","234642","SuperCaesarKratomSalad","kratom","141"
"35486","NeuroChi","207982","tryinghard","oxycodone","141"
"4495","vhalin","65726","ellavader","oxycontin","141"
"75","Leo.","1595","Curtains","mdma","141"
"207982","tryinghard","211963","WoodyCA","oxycodone","141"
"75","Leo.","15832","JapanHorrorUncut","mdma","141"
"65726","ellavader","156304","PillMan","oxycontin","141"
"57024","textosteron","263706","Ellen042","loperamide","141"
"75","Leo.","7303","pankreeas ","mdma","141"
"91040","Dankfish","234642","SuperCaesarKratomSalad","kratom","141"
"157358","CrispCold","234642","SuperCaesarKratomSalad","kratom","141"
"75","Leo.","7946","788.4","mdma","141"
"2763","bogumil","234642","SuperCaesarKratomSalad","kratom","141"
"1842","nymphetamine","65726","ellavader","oxycontin","141"
"65726","ellavader","211963","WoodyCA","oxycontin","141"
"57024","textosteron","273791","Roaddoggy","loperamide","141"
"75","Leo.","4495","vhalin","mdma","141"
"68194","baZING","207982","tryinghard","oxycodone","141"
"1","Alfa","75","Leo.","mdma","141"
"234642","SuperCaesarKratomSalad","273791","Roaddoggy","kratom","141"
"75","Leo.","15564","Le Junk","mdma","141"
"75","Leo.","57101","Terrapinzflyer ","mdma","141"
"46865","dyingtomorrow","65726","ellavader","oxycontin","141"
"3375","MrJim","207982","tryinghard","oxycodone","141"
"234642","SuperCaesarKratomSalad","294051","Jungledog","kratom","141"
"135","sands of time","234642","SuperCaesarKratomSalad","kratom","141"
"75","Leo.","788","mdve2","mdma","141"
"3375","MrJim","65726","ellavader","oxycontin","141"
"75","Leo.","63028","Smirnoff","mdma","141"
"75","Leo.","1915","curve","mdma","141"
"313","RoboCop ","4495","vhalin","nitrous oxide","141"
"1964","enquirewithin ","234642","SuperCaesarKratomSalad","kratom","141"
"118772","Mr_Spiffy","207982","tryinghard","oxycodone","141"
"7303","pankreeas ","207982","tryinghard","oxycodone","141"
"13344","drewcil","234642","SuperCaesarKratomSalad","kratom","141"
"75","Leo.","180313","out_there","mdma","141"
"313","RoboCop ","46865","dyingtomorrow","ethylphenidate","141"
"75","Leo.","3732","Diphenhydramine","mdma","141"
"75","Leo.","83387","PrincessJo x","mdma","141"
"313","RoboCop ","1842","nymphetamine","nitrous oxide","141"
"75","Leo.","45618","cannabis-sam","mdma","141"
"28015","riaahacker","234642","SuperCaesarKratomSalad","kratom","141"
"3413","radiometer ","234642","SuperCaesarKratomSalad","kratom","141"
"7303","pankreeas ","65726","ellavader","oxycontin","141"
"313","RoboCop ","38015","davestate ","ethylphenidate","141"
"75","Leo.","2610","brainwaxd","mdma","141"
"75","Leo.","45583","Synesthesiac","mdma","141"
"108860","Pain Hurts","207982","tryinghard","oxycodone","141"
"75","Leo.","1806","betty_bupe","mdma","141"
"56","Hollywood ","75","Leo.","mdma","141"
"35486","NeuroChi","234642","SuperCaesarKratomSalad","kratom","141"
"75","Leo.","35486","NeuroChi","mdma","141"
"75","Leo.","54214","Zoidberg","mdma","141"
"75","Leo.","3345","Unsolved","mdma","141"
"56","Hollywood ","207982","tryinghard","oxycodone","141"
"63028","Smirnoff","65726","ellavader","oxycontin","141"
"127014","MikePatton","234642","SuperCaesarKratomSalad","kratom","141"
"4495","vhalin","207982","tryinghard","oxycodone","141"
"207982","tryinghard","220080","Lunaciel","oxycodone","141"
"46865","dyingtomorrow","207982","tryinghard","oxycodone","141"
"75","Leo.","5750","pharmapsyche","mdma","141"
"1","Alfa","234642","SuperCaesarKratomSalad","kratom","141"
"65726","ellavader","76984","LostControl","oxycontin","141"
"57024","textosteron","309595","gbread","loperamide","141"
"75","Leo.","54108","Alexander_Praves","mdma","141"
"28899","Esmerelda","65726","ellavader","oxycontin","141"
"46865","dyingtomorrow","234642","SuperCaesarKratomSalad","kratom","141"
"207982","tryinghard","294051","Jungledog","oxycodone","141"
"75","Leo.","19028","RochiWizz","mdma","141"
"65726","ellavader","102420","spicybrainsgirl","oxycontin","141"
"57024","textosteron","207202","Nefret","loperamide","141"
"56","Hollywood ","313","RoboCop ","nitrous oxide","141"
"75","Leo.","127014","MikePatton","mdma","141"
"156304","PillMan","234642","SuperCaesarKratomSalad","kratom","141"
"234642","SuperCaesarKratomSalad","275468","Openmymind","kratom","141"
"1842","nymphetamine","234642","SuperCaesarKratomSalad","kratom","141"
"1842","nymphetamine","207982","tryinghard","oxycodone","141"
"75","Leo.","90006","Ghetto_Chem","mdma","141"
"2418","Phungushead","234642","SuperCaesarKratomSalad","kratom","141"
"65726","ellavader","108860","Pain Hurts","oxycontin","141"
"118772","Mr_Spiffy","234642","SuperCaesarKratomSalad","kratom","141"
"57024","textosteron","294051","Jungledog","loperamide","141"
"75","Leo.","4910","Fantasian","mdma","141"
"20234","ianzombie ","234642","SuperCaesarKratomSalad","kratom","141"
"155253","MachoManSavage","234642","SuperCaesarKratomSalad","kratom","141"
"234642","SuperCaesarKratomSalad","273439","marathonmel7","kratom","141"
"75","Leo.","2709","risexagainst","mdma","141"
"115136","trdofbeingtrd","234642","SuperCaesarKratomSalad","kratom","141"
"102420","spicybrainsgirl","234642","SuperCaesarKratomSalad","kratom","141"
"75","Leo.","539","stndguy","mdma","141"
"75","Leo.","79297","bostonnew","mdma","141"
"62","BA","75","Leo.","mdma","141"
"75","Leo.","4218","TheLight01","mdma","141"
"2418","Phungushead","207982","tryinghard","oxycodone","141"
"313","RoboCop ","2627","NoWorldOrder","ethylphenidate","141"
"75","Leo.","1868","Paderas","mdma","141"
"75","Leo.","6482","psychedelaholic","mdma","141"
"313","RoboCop ","28015","riaahacker","nitrous oxide","141"
"75","Leo.","10467","WrtngCocaineTutorial","mdma","141"
"313","RoboCop ","93684","Synaps","ethylphenidate","141"
"75","Leo.","1562","soer","mdma","141"
"75","Leo.","2281","billyloner ","mdma","141"
"156304","PillMan","207982","tryinghard","oxycodone","141"
"657","distilla_truant","116985","Chug Chug Chug","dxm","140"
"56","Hollywood ","46865","dyingtomorrow","mdma","140"
"32247","Lettish","46865","dyingtomorrow","mdma","140"
"2239","skilld","4910","Fantasian","mdma","140"
"1868","Paderas","2239","skilld","mdma","140"
"539","stndguy","32247","Lettish","mdma","140"
"883","apoch22","5750","pharmapsyche","ritalin","140"
"45618","cannabis-sam","46865","dyingtomorrow","mdma","140"
"46865","dyingtomorrow","180313","out_there","mdma","140"
"116985","Chug Chug Chug","202594","headfull0fstars","dxm","140"
"7303","pankreeas ","32247","Lettish","mdma","140"
"7946","788.4","32247","Lettish","mdma","140"
"4218","TheLight01","46865","dyingtomorrow","mdma","140"
"2239","skilld","7946","788.4","mdma","140"
"6052","KomodoMK","32247","Lettish","mdma","140"
"856","str8ballin","883","apoch22","ritalin","140"
"56","Hollywood ","45599","On The Nod","oxycodone","140"
"5750","pharmapsyche","46865","dyingtomorrow","mdma","140"
"32247","Lettish","83387","PrincessJo x","mdma","140"
"2239","skilld","63028","Smirnoff","mdma","140"
"4495","vhalin","45599","On The Nod","oxycodone","140"
"539","stndguy","46865","dyingtomorrow","mdma","140"
"883","apoch22","28015","riaahacker","ritalin","140"
"46865","dyingtomorrow","54108","Alexander_Praves","mdma","140"
"1","Alfa","48762","brandon561","xanax","140"
"32247","Lettish","96636","Mersann","mdma","140"
"2239","skilld","15564","Le Junk","mdma","140"
"3167","bubaloo","48762","brandon561","xanax","140"
"45618","cannabis-sam","48762","brandon561","xanax","140"
"2239","skilld","2610","brainwaxd","mdma","140"
"2709","risexagainst","46865","dyingtomorrow","mdma","140"
"2239","skilld","32247","Lettish","mdma","140"
"883","apoch22","35486","NeuroChi","ritalin","140"
"46865","dyingtomorrow","57101","Terrapinzflyer ","mdma","140"
"313","RoboCop ","116985","Chug Chug Chug","dxm","140"
"32247","Lettish","124017","LoveNwar","mdma","140"
"45599","On The Nod","207982","tryinghard","oxycodone","140"
"2239","skilld","4218","TheLight01","mdma","140"
"48762","brandon561","297036","supermono","xanax","140"
"2239","skilld","2418","Phungushead","mdma","140"
"1","Alfa","2239","skilld","mdma","140"
"2239","skilld","79297","bostonnew","mdma","140"
"10467","WrtngCocaineTutorial","46865","dyingtomorrow","mdma","140"
"1842","nymphetamine","45599","On The Nod","oxycodone","140"
"32247","Lettish","180313","out_there","mdma","140"
"1806","betty_bupe","32247","Lettish","mdma","140"
"45599","On The Nod","220080","Lunaciel","oxycodone","140"
"6201","SkUnKaDeLiC","48762","brandon561","xanax","140"
"2239","skilld","10467","WrtngCocaineTutorial","mdma","140"
"788","mdve2","2239","skilld","mdma","140"
"1714","magicmaster141","48762","brandon561","xanax","140"
"4910","Fantasian","32247","Lettish","mdma","140"
"48762","brandon561","211963","WoodyCA","xanax","140"
"3345","Unsolved","32247","Lettish","mdma","140"
"3732","Diphenhydramine","32247","Lettish","mdma","140"
"2239","skilld","83387","PrincessJo x","mdma","140"
"62","BA","32247","Lettish","mdma","140"
"15832","JapanHorrorUncut","32247","Lettish","mdma","140"
"2418","Phungushead","116985","Chug Chug Chug","dxm","140"
"32247","Lettish","59051","Priapism9","mdma","140"
"1806","betty_bupe","46865","dyingtomorrow","mdma","140"
"45599","On The Nod","68194","baZING","oxycodone","140"
"75","Leo.","32247","Lettish","mdma","140"
"2239","skilld","6052","KomodoMK","mdma","140"
"1842","nymphetamine","48762","brandon561","xanax","140"
"1562","soer","32247","Lettish","mdma","140"
"1808","xxgaretjaxx","48762","brandon561","xanax","140"
"98407","phenythylamine","116985","Chug Chug Chug","dxm","140"
"48762","brandon561","273439","marathonmel7","xanax","140"
"19028","RochiWizz","46865","dyingtomorrow","mdma","140"
"46889","port 21","116985","Chug Chug Chug","dxm","140"
"75","Leo.","46865","dyingtomorrow","mdma","140"
"2239","skilld","45583","Synesthesiac","mdma","140"
"62","BA","46865","dyingtomorrow","mdma","140"
"32247","Lettish","127014","MikePatton","mdma","140"
"45599","On The Nod","156304","PillMan","oxycodone","140"
"28899","Esmerelda","48762","brandon561","xanax","140"
"35486","NeuroChi","48762","brandon561","xanax","140"
"2239","skilld","3345","Unsolved","mdma","140"
"1562","soer","46865","dyingtomorrow","mdma","140"
"2418","Phungushead","45599","On The Nod","oxycodone","140"
"4495","vhalin","46865","dyingtomorrow","mdma","140"
"4495","vhalin","48762","brandon561","xanax","140"
"15564","Le Junk","46865","dyingtomorrow","mdma","140"
"2281","billyloner ","46865","dyingtomorrow","mdma","140"
"1595","Curtains","2239","skilld","mdma","140"
"46865","dyingtomorrow","83387","PrincessJo x","mdma","140"
"21315","Graduisic","116985","Chug Chug Chug","dxm","140"
"2610","brainwaxd","32247","Lettish","mdma","140"
"1915","curve","2239","skilld","mdma","140"
"2239","skilld","54214","Zoidberg","mdma","140"
"883","apoch22","21513","HorseBucket","ritalin","140"
"2418","Phungushead","46865","dyingtomorrow","mdma","140"
"32247","Lettish","63028","Smirnoff","mdma","140"
"45599","On The Nod","63028","Smirnoff","oxycodone","140"
"2239","skilld","7303","pankreeas ","mdma","140"
"6482","psychedelaholic","32247","Lettish","mdma","140"
"46865","dyingtomorrow","54214","Zoidberg","mdma","140"
"116985","Chug Chug Chug","156304","PillMan","dxm","140"
"1842","nymphetamine","2239","skilld","mdma","140"
"2239","skilld","5750","pharmapsyche","mdma","140"
"56","Hollywood ","2239","skilld","mdma","140"
"45599","On The Nod","46865","dyingtomorrow","oxycodone","140"
"2239","skilld","4495","vhalin","mdma","140"
"7946","788.4","45599","On The Nod","oxycodone","140"
"1213","Psilocybe S.","48762","brandon561","xanax","140"
"1868","Paderas","32247","Lettish","mdma","140"
"883","apoch22","41143","RoboCodeine7610","ritalin","140"
"46865","dyingtomorrow","90006","Ghetto_Chem","mdma","140"
"3565","amd6568","116985","Chug Chug Chug","dxm","140"
"116985","Chug Chug Chug","180313","out_there","dxm","140"
"28015","riaahacker","48762","brandon561","xanax","140"
"4218","TheLight01","32247","Lettish","mdma","140"
"2239","skilld","19028","RochiWizz","mdma","140"
"5750","pharmapsyche","32247","Lettish","mdma","140"
"32247","Lettish","79297","bostonnew","mdma","140"
"2239","skilld","57101","Terrapinzflyer ","mdma","140"
"18724","AirO","116985","Chug Chug Chug","dxm","140"
"1868","Paderas","46865","dyingtomorrow","mdma","140"
"539","stndguy","2239","skilld","mdma","140"
"883","apoch22","4495","vhalin","ritalin","140"
"46865","dyingtomorrow","59051","Priapism9","mdma","140"
"32247","Lettish","45583","Synesthesiac","mdma","140"
"856","str8ballin","48762","brandon561","xanax","140"
"7303","pankreeas ","46865","dyingtomorrow","mdma","140"
"7946","788.4","46865","dyingtomorrow","mdma","140"
"2239","skilld","90006","Ghetto_Chem","mdma","140"
"35486","NeuroChi","45599","On The Nod","oxycodone","140"
"6052","KomodoMK","46865","dyingtomorrow","mdma","140"
"28015","riaahacker","116985","Chug Chug Chug","dxm","140"
"2418","Phungushead","48762","brandon561","xanax","140"
"46446","EyesOfTheWorld","48762","brandon561","xanax","140"
"45583","Synesthesiac","46865","dyingtomorrow","mdma","140"
"2239","skilld","3732","Diphenhydramine","mdma","140"
"2709","risexagainst","32247","Lettish","mdma","140"
"883","apoch22","1842","nymphetamine","ritalin","140"
"7946","788.4","48762","brandon561","xanax","140"
"46865","dyingtomorrow","127014","MikePatton","mdma","140"
"32247","Lettish","54214","Zoidberg","mdma","140"
"8671","Richard_smoker","116985","Chug Chug Chug","dxm","140"
"2239","skilld","2709","risexagainst","mdma","140"
"35486","NeuroChi","46865","dyingtomorrow","mdma","140"
"2239","skilld","35486","NeuroChi","mdma","140"
"1","Alfa","32247","Lettish","mdma","140"
"2239","skilld","46865","dyingtomorrow","mdma","140"
"10467","WrtngCocaineTutorial","32247","Lettish","mdma","140"
"46865","dyingtomorrow","63028","Smirnoff","mdma","140"
"743","madman3l6","48762","brandon561","xanax","140"
"32247","Lettish","90006","Ghetto_Chem","mdma","140"
"45599","On The Nod","108860","Pain Hurts","oxycodone","140"
"2239","skilld","180313","out_there","mdma","140"
"788","mdve2","32247","Lettish","mdma","140"
"48762","brandon561","102420","spicybrainsgirl","xanax","140"
"56","Hollywood ","48762","brandon561","xanax","140"
"44584","Rightnow289","116985","Chug Chug Chug","dxm","140"
"1","Alfa","46865","dyingtomorrow","mdma","140"
"2239","skilld","6482","psychedelaholic","mdma","140"
"32247","Lettish","45618","cannabis-sam","mdma","140"
"1806","betty_bupe","2239","skilld","mdma","140"
"45599","On The Nod","211963","WoodyCA","oxycodone","140"
"3299","anabolictrio","48762","brandon561","xanax","140"
"2239","skilld","45618","cannabis-sam","mdma","140"
"788","mdve2","46865","dyingtomorrow","mdma","140"
"48762","brandon561","63028","Smirnoff","xanax","140"
"19028","RochiWizz","32247","Lettish","mdma","140"
"3345","Unsolved","46865","dyingtomorrow","mdma","140"
"3375","MrJim","45599","On The Nod","oxycodone","140"
"3732","Diphenhydramine","46865","dyingtomorrow","mdma","140"
"2239","skilld","2281","billyloner ","mdma","140"
"75764","lololsolid","116985","Chug Chug Chug","dxm","140"
"62","BA","2239","skilld","mdma","140"
"15832","JapanHorrorUncut","46865","dyingtomorrow","mdma","140"
"4910","Fantasian","46865","dyingtomorrow","mdma","140"
"32247","Lettish","54108","Alexander_Praves","mdma","140"
"45599","On The Nod","118772","Mr_Spiffy","oxycodone","140"
"75","Leo.","2239","skilld","mdma","140"
"9","Freedom of Mind","116985","Chug Chug Chug","dxm","140"
"2239","skilld","59051","Priapism9","mdma","140"
"1562","soer","2239","skilld","mdma","140"
"4495","vhalin","32247","Lettish","mdma","140"
"15564","Le Junk","32247","Lettish","mdma","140"
"2281","billyloner ","32247","Lettish","mdma","140"
"1595","Curtains","32247","Lettish","mdma","140"
"46865","dyingtomorrow","79297","bostonnew","mdma","140"
"1915","curve","32247","Lettish","mdma","140"
"2239","skilld","96636","Mersann","mdma","140"
"7303","pankreeas ","45599","On The Nod","oxycodone","140"
"2418","Phungushead","32247","Lettish","mdma","140"
"32247","Lettish","57101","Terrapinzflyer ","mdma","140"
"45599","On The Nod","180313","out_there","oxycodone","140"
"2239","skilld","54108","Alexander_Praves","mdma","140"
"110776","PowerfulMedicine","116985","Chug Chug Chug","dxm","140"
"1595","Curtains","46865","dyingtomorrow","mdma","140"
"46865","dyingtomorrow","96636","Mersann","mdma","140"
"1842","nymphetamine","32247","Lettish","mdma","140"
"2610","brainwaxd","46865","dyingtomorrow","mdma","140"
"1915","curve","46865","dyingtomorrow","mdma","140"
"2239","skilld","124017","LoveNwar","mdma","140"
"883","apoch22","1112","hh339 ","ritalin","140"
"32247","Lettish","35486","NeuroChi","mdma","140"
"56","Hollywood ","32247","Lettish","mdma","140"
"45599","On The Nod","294051","Jungledog","oxycodone","140"
"2239","skilld","127014","MikePatton","mdma","140"
"6482","psychedelaholic","46865","dyingtomorrow","mdma","140"
"46865","dyingtomorrow","124017","LoveNwar","mdma","140"
"116985","Chug Chug Chug","161625","mrcowman","dxm","140"
"1842","nymphetamine","46865","dyingtomorrow","mdma","140"
"2239","skilld","15832","JapanHorrorUncut","mdma","140"
"56","Hollywood ","46446","EyesOfTheWorld","fentanyl","139"
"28015","riaahacker","41143","RoboCodeine7610","tramadol","139"
"3299","anabolictrio","46446","EyesOfTheWorld","fentanyl","139"
"35486","NeuroChi","280861","Hydroxyout","oxycodone","139"
"41143","RoboCodeine7610","45618","cannabis-sam","tramadol","139"
"207982","tryinghard","280861","Hydroxyout","oxycodone","139"
"46865","dyingtomorrow","280861","Hydroxyout","oxycodone","139"
"9019","Forthesevenlakes","280861","Hydroxyout","subutex","139"
"41143","RoboCodeine7610","63028","Smirnoff","tramadol","139"
"1842","nymphetamine","220080","Lunaciel","lorazepam","139"
"3299","anabolictrio","280861","Hydroxyout","subutex","139"
"11411","supremedan","19028","RochiWizz","methylphenidate","139"
"45599","On The Nod","280861","Hydroxyout","subutex","139"
"2418","Phungushead","11411","supremedan","methylphenidate","139"
"4264","will","46446","EyesOfTheWorld","fentanyl","139"
"3375","MrJim","280861","Hydroxyout","oxycodone","139"
"38632","PilL FreaK","41143","RoboCodeine7610","tramadol","139"
"9","Freedom of Mind","401","peggs16","alprazolam","139"
"2418","Phungushead","41143","RoboCodeine7610","tramadol","139"
"401","peggs16","48762","brandon561","alprazolam","139"
"35486","NeuroChi","280861","Hydroxyout","subutex","139"
"3167","bubaloo","220080","Lunaciel","lorazepam","139"
"280861","Hydroxyout","294051","Jungledog","oxycodone","139"
"7303","pankreeas ","280861","Hydroxyout","oxycodone","139"
"6201","SkUnKaDeLiC","220080","Lunaciel","lorazepam","139"
"401","peggs16","1714","magicmaster141","alprazolam","139"
"35486","NeuroChi","46446","EyesOfTheWorld","fentanyl","139"
"211963","WoodyCA","280861","Hydroxyout","subutex","139"
"102420","spicybrainsgirl","280861","Hydroxyout","subutex","139"
"56","Hollywood ","41143","RoboCodeine7610","tramadol","139"
"401","peggs16","63028","Smirnoff","alprazolam","139"
"16700","beena","46446","EyesOfTheWorld","fentanyl","139"
"35486","NeuroChi","41143","RoboCodeine7610","tramadol","139"
"41143","RoboCodeine7610","256377","detoxin momma","tramadol","139"
"156304","PillMan","280861","Hydroxyout","oxycodone","139"
"401","peggs16","28015","riaahacker","alprazolam","139"
"1","Alfa","11411","supremedan","methylphenidate","139"
"180313","out_there","220080","Lunaciel","lorazepam","139"
"180313","out_there","280861","Hydroxyout","oxycodone","139"
"41143","RoboCodeine7610","156304","PillMan","tramadol","139"
"56","Hollywood ","280861","Hydroxyout","oxycodone","139"
"211963","WoodyCA","280861","Hydroxyout","oxycodone","139"
"1714","magicmaster141","220080","Lunaciel","lorazepam","139"
"56","Hollywood ","401","peggs16","alprazolam","139"
"1842","nymphetamine","11411","supremedan","methylphenidate","139"
"4495","vhalin","280861","Hydroxyout","oxycodone","139"
"9","Freedom of Mind","41143","RoboCodeine7610","tramadol","139"
"63028","Smirnoff","280861","Hydroxyout","oxycodone","139"
"9","Freedom of Mind","220080","Lunaciel","lorazepam","139"
"41143","RoboCodeine7610","127014","MikePatton","tramadol","139"
"45599","On The Nod","280861","Hydroxyout","oxycodone","139"
"4495","vhalin","41143","RoboCodeine7610","tramadol","139"
"5010","snapper ","220080","Lunaciel","lorazepam","139"
"1842","nymphetamine","280861","Hydroxyout","oxycodone","139"
"68194","baZING","280861","Hydroxyout","oxycodone","139"
"1","Alfa","41143","RoboCodeine7610","tramadol","139"
"11411","supremedan","46865","dyingtomorrow","methylphenidate","139"
"1842","nymphetamine","46446","EyesOfTheWorld","fentanyl","139"
"401","peggs16","1239","Nicaine","alprazolam","139"
"3375","MrJim","46446","EyesOfTheWorld","fentanyl","139"
"46865","dyingtomorrow","280861","Hydroxyout","subutex","139"
"220080","Lunaciel","280861","Hydroxyout","oxycodone","139"
"401","peggs16","3167","bubaloo","alprazolam","139"
"2418","Phungushead","280861","Hydroxyout","oxycodone","139"
"118772","Mr_Spiffy","280861","Hydroxyout","oxycodone","139"
"401","peggs16","4495","vhalin","alprazolam","139"
"1842","nymphetamine","41143","RoboCodeine7610","tramadol","139"
"7946","788.4","280861","Hydroxyout","oxycodone","139"
"401","peggs16","6201","SkUnKaDeLiC","alprazolam","139"
"108860","Pain Hurts","280861","Hydroxyout","oxycodone","139"
"41143","RoboCodeine7610","180313","out_there","tramadol","139"
"1","Alfa","401","peggs16","alprazolam","139"
"11411","supremedan","15564","Le Junk","mdma","138"
"45258","motter28218","98407","phenythylamine","dxm","138"
"5750","pharmapsyche","11411","supremedan","mdma","138"
"18724","AirO","45258","motter28218","dxm","138"
"28015","riaahacker","45258","motter28218","dxm","138"
"45258","motter28218","156304","PillMan","dxm","138"
"2709","risexagainst","11411","supremedan","mdma","138"
"11411","supremedan","45618","cannabis-sam","mdma","138"
"8671","Richard_smoker","45258","motter28218","dxm","138"
"10467","WrtngCocaineTutorial","11411","supremedan","mdma","138"
"45258","motter28218","46889","port 21","dxm","138"
"1","Alfa","11411","supremedan","mdma","138"
"11411","supremedan","54108","Alexander_Praves","mdma","138"
"11411","supremedan","32247","Lettish","mdma","138"
"788","mdve2","11411","supremedan","mdma","138"
"45258","motter28218","202594","headfull0fstars","dxm","138"
"44584","Rightnow289","45258","motter28218","dxm","138"
"11411","supremedan","57101","Terrapinzflyer ","mdma","138"
"11411","supremedan","79297","bostonnew","mdma","138"
"11411","supremedan","35486","NeuroChi","mdma","138"
"11411","supremedan","45583","Synesthesiac","mdma","138"
"9","Freedom of Mind","45258","motter28218","dxm","138"
"4495","vhalin","11411","supremedan","mdma","138"
"2281","billyloner ","11411","supremedan","mdma","138"
"1595","Curtains","11411","supremedan","mdma","138"
"1915","curve","11411","supremedan","mdma","138"
"11411","supremedan","54214","Zoidberg","mdma","138"
"2418","Phungushead","11411","supremedan","mdma","138"
"1842","nymphetamine","11411","supremedan","mdma","138"
"11411","supremedan","15832","JapanHorrorUncut","mdma","138"
"56","Hollywood ","11411","supremedan","mdma","138"
"11411","supremedan","90006","Ghetto_Chem","mdma","138"
"657","distilla_truant","45258","motter28218","dxm","138"
"45258","motter28218","110776","PowerfulMedicine","dxm","138"
"539","stndguy","11411","supremedan","mdma","138"
"7303","pankreeas ","11411","supremedan","mdma","138"
"7946","788.4","11411","supremedan","mdma","138"
"6052","KomodoMK","11411","supremedan","mdma","138"
"11411","supremedan","180313","out_there","mdma","138"
"45258","motter28218","75764","lololsolid","dxm","138"
"45258","motter28218","161625","mrcowman","dxm","138"
"2239","skilld","11411","supremedan","mdma","138"
"11411","supremedan","59051","Priapism9","mdma","138"
"313","RoboCop ","45258","motter28218","dxm","138"
"45258","motter28218","180313","out_there","dxm","138"
"11411","supremedan","127014","MikePatton","mdma","138"
"11411","supremedan","46865","dyingtomorrow","mdma","138"
"1806","betty_bupe","11411","supremedan","mdma","138"
"4910","Fantasian","11411","supremedan","mdma","138"
"3345","Unsolved","11411","supremedan","mdma","138"
"3732","Diphenhydramine","11411","supremedan","mdma","138"
"11411","supremedan","63028","Smirnoff","mdma","138"
"62","BA","11411","supremedan","mdma","138"
"11411","supremedan","83387","PrincessJo x","mdma","138"
"2418","Phungushead","45258","motter28218","dxm","138"
"75","Leo.","11411","supremedan","mdma","138"
"1562","soer","11411","supremedan","mdma","138"
"11411","supremedan","96636","Mersann","mdma","138"
"21315","Graduisic","45258","motter28218","dxm","138"
"2610","brainwaxd","11411","supremedan","mdma","138"
"11411","supremedan","124017","LoveNwar","mdma","138"
"6482","psychedelaholic","11411","supremedan","mdma","138"
"11411","supremedan","19028","RochiWizz","mdma","138"
"45258","motter28218","116985","Chug Chug Chug","dxm","138"
"1868","Paderas","11411","supremedan","mdma","138"
"3565","amd6568","45258","motter28218","dxm","138"
"4218","TheLight01","11411","supremedan","mdma","138"
"35486","NeuroChi","74033","TheSweetPea","kratom","137"
"10410","DXMBunny","118772","Mr_Spiffy","kratom","137"
"74033","TheSweetPea","155253","MachoManSavage","kratom","137"
"10410","DXMBunny","127014","MikePatton","kratom","137"
"1","Alfa","10410","DXMBunny","kratom","137"
"74033","TheSweetPea","118772","Mr_Spiffy","kratom","137"
"46865","dyingtomorrow","74033","TheSweetPea","kratom","137"
"10410","DXMBunny","74033","TheSweetPea","kratom","137"
"10410","DXMBunny","273791","Roaddoggy","kratom","137"
"2763","bogumil","74033","TheSweetPea","kratom","137"
"74033","TheSweetPea","127014","MikePatton","kratom","137"
"10410","DXMBunny","90006","Ghetto_Chem","kratom","137"
"1842","nymphetamine","10410","DXMBunny","kratom","137"
"10410","DXMBunny","273439","marathonmel7","kratom","137"
"2418","Phungushead","10410","DXMBunny","kratom","137"
"74033","TheSweetPea","273439","marathonmel7","kratom","137"
"20234","ianzombie ","74033","TheSweetPea","kratom","137"
"10410","DXMBunny","46865","dyingtomorrow","kratom","137"
"135","sands of time","74033","TheSweetPea","kratom","137"
"10410","DXMBunny","35486","NeuroChi","kratom","137"
"10410","DXMBunny","115136","trdofbeingtrd","kratom","137"
"74033","TheSweetPea","234642","SuperCaesarKratomSalad","kratom","137"
"1964","enquirewithin ","74033","TheSweetPea","kratom","137"
"10410","DXMBunny","275468","Openmymind","kratom","137"
"74033","TheSweetPea","102420","spicybrainsgirl","kratom","137"
"3413","radiometer ","74033","TheSweetPea","kratom","137"
"10410","DXMBunny","155253","MachoManSavage","kratom","137"
"74033","TheSweetPea","91040","Dankfish","kratom","137"
"1239","Nicaine","10410","DXMBunny","kratom","137"
"4495","vhalin","10410","DXMBunny","kratom","137"
"10410","DXMBunny","103726","seaturtle","kratom","137"
"74033","TheSweetPea","156304","PillMan","kratom","137"
"40911","rawbeer","74033","TheSweetPea","kratom","137"
"10410","DXMBunny","157358","CrispCold","kratom","137"
"1","Alfa","74033","TheSweetPea","kratom","137"
"74033","TheSweetPea","103726","seaturtle","kratom","137"
"10410","DXMBunny","13344","drewcil","kratom","137"
"74033","TheSweetPea","157358","CrispCold","kratom","137"
"10410","DXMBunny","234642","SuperCaesarKratomSalad","kratom","137"
"1842","nymphetamine","74033","TheSweetPea","kratom","137"
"10410","DXMBunny","28015","riaahacker","kratom","137"
"2763","bogumil","10410","DXMBunny","kratom","137"
"2418","Phungushead","74033","TheSweetPea","kratom","137"
"74033","TheSweetPea","273791","Roaddoggy","kratom","137"
"10410","DXMBunny","40911","rawbeer","kratom","137"
"10410","DXMBunny","294051","Jungledog","kratom","137"
"74033","TheSweetPea","294051","Jungledog","kratom","137"
"10410","DXMBunny","102420","spicybrainsgirl","kratom","137"
"135","sands of time","10410","DXMBunny","kratom","137"
"10410","DXMBunny","91040","Dankfish","kratom","137"
"74033","TheSweetPea","90006","Ghetto_Chem","kratom","137"
"1964","enquirewithin ","10410","DXMBunny","kratom","137"
"13344","drewcil","74033","TheSweetPea","kratom","137"
"10410","DXMBunny","156304","PillMan","kratom","137"
"74033","TheSweetPea","115136","trdofbeingtrd","kratom","137"
"28015","riaahacker","74033","TheSweetPea","kratom","137"
"3413","radiometer ","10410","DXMBunny","kratom","137"
"1239","Nicaine","74033","TheSweetPea","kratom","137"
"4495","vhalin","74033","TheSweetPea","kratom","137"
"10410","DXMBunny","20234","ianzombie ","kratom","137"
"74033","TheSweetPea","275468","Openmymind","kratom","137"
"56","Hollywood ","65726","ellavader","oxycodone","136"
"54993","Rise against","63028","Smirnoff","adderall","136"
"1842","nymphetamine","65638","Pieces Mended","adderall","136"
"4495","vhalin","65726","ellavader","oxycodone","136"
"56","Hollywood ","127455","BitterSweet","adderall","136"
"156304","PillMan","297036","supermono","xanax","136"
"63028","Smirnoff","65726","ellavader","oxycodone","136"
"856","str8ballin","156304","PillMan","xanax","136"
"2418","Phungushead","156304","PillMan","xanax","136"
"46446","EyesOfTheWorld","156304","PillMan","xanax","136"
"54993","Rise against","71487","robotripper","adderall","136"
"156304","PillMan","273439","marathonmel7","xanax","136"
"7946","788.4","156304","PillMan","xanax","136"
"1868","Paderas","65638","Pieces Mended","adderall","136"
"45599","On The Nod","65726","ellavader","oxycodone","136"
"63028","Smirnoff","156304","PillMan","xanax","136"
"65726","ellavader","280861","Hydroxyout","oxycodone","136"
"1842","nymphetamine","65726","ellavader","oxycodone","136"
"56","Hollywood ","156304","PillMan","xanax","136"
"35486","NeuroChi","54993","Rise against","adderall","136"
"45728","Gappa","54993","Rise against","adderall","136"
"65726","ellavader","108860","Pain Hurts","oxycodone","136"
"3299","anabolictrio","156304","PillMan","xanax","136"
"65638","Pieces Mended","202594","headfull0fstars","adderall","136"
"35486","NeuroChi","127455","BitterSweet","adderall","136"
"1","Alfa","65638","Pieces Mended","adderall","136"
"45728","Gappa","127455","BitterSweet","adderall","136"
"65726","ellavader","211963","WoodyCA","oxycodone","136"
"2418","Phungushead","65726","ellavader","oxycodone","136"
"65638","Pieces Mended","115136","trdofbeingtrd","adderall","136"
"743","madman3l6","156304","PillMan","xanax","136"
"737","RARFE ","54993","Rise against","adderall","136"
"63028","Smirnoff","65638","Pieces Mended","adderall","136"
"5750","pharmapsyche","65638","Pieces Mended","adderall","136"
"115136","trdofbeingtrd","127455","BitterSweet","adderall","136"
"54993","Rise against","65638","Pieces Mended","adderall","136"
"65726","ellavader","118772","Mr_Spiffy","oxycodone","136"
"127455","BitterSweet","202594","headfull0fstars","adderall","136"
"737","RARFE ","127455","BitterSweet","adderall","136"
"1023","btoddw2","54993","Rise against","adderall","136"
"54993","Rise against","56520","Christian1122","adderall","136"
"4495","vhalin","54993","Rise against","adderall","136"
"46865","dyingtomorrow","65638","Pieces Mended","adderall","136"
"45618","cannabis-sam","54993","Rise against","adderall","136"
"7946","788.4","65726","ellavader","oxycodone","136"
"65726","ellavader","180313","out_there","oxycodone","136"
"56520","Christian1122","65638","Pieces Mended","adderall","136"
"127014","MikePatton","127455","BitterSweet","adderall","136"
"28015","riaahacker","65638","Pieces Mended","adderall","136"
"9","Freedom of Mind","54993","Rise against","adderall","136"
"1023","btoddw2","127455","BitterSweet","adderall","136"
"54993","Rise against","127014","MikePatton","adderall","136"
"4495","vhalin","127455","BitterSweet","adderall","136"
"45618","cannabis-sam","127455","BitterSweet","adderall","136"
"1842","nymphetamine","54993","Rise against","adderall","136"
"56","Hollywood ","65638","Pieces Mended","adderall","136"
"9","Freedom of Mind","127455","BitterSweet","adderall","136"
"35486","NeuroChi","65726","ellavader","oxycodone","136"
"54993","Rise against","115136","trdofbeingtrd","adderall","136"
"1842","nymphetamine","127455","BitterSweet","adderall","136"
"156304","PillMan","211963","WoodyCA","xanax","136"
"46865","dyingtomorrow","65726","ellavader","oxycodone","136"
"1","Alfa","156304","PillMan","xanax","136"
"1868","Paderas","54993","Rise against","adderall","136"
"3167","bubaloo","156304","PillMan","xanax","136"
"45618","cannabis-sam","156304","PillMan","xanax","136"
"1868","Paderas","127455","BitterSweet","adderall","136"
"71487","robotripper","127455","BitterSweet","adderall","136"
"102420","spicybrainsgirl","156304","PillMan","xanax","136"
"48762","brandon561","156304","PillMan","xanax","136"
"65726","ellavader","207982","tryinghard","oxycodone","136"
"6201","SkUnKaDeLiC","156304","PillMan","xanax","136"
"1714","magicmaster141","156304","PillMan","xanax","136"
"65638","Pieces Mended","127455","BitterSweet","adderall","136"
"35486","NeuroChi","65638","Pieces Mended","adderall","136"
"3375","MrJim","65726","ellavader","oxycodone","136"
"1","Alfa","54993","Rise against","adderall","136"
"45728","Gappa","65638","Pieces Mended","adderall","136"
"65726","ellavader","220080","Lunaciel","oxycodone","136"
"1842","nymphetamine","156304","PillMan","xanax","136"
"1808","xxgaretjaxx","156304","PillMan","xanax","136"
"65638","Pieces Mended","127014","MikePatton","adderall","136"
"1","Alfa","127455","BitterSweet","adderall","136"
"7303","pankreeas ","65726","ellavader","oxycodone","136"
"5750","pharmapsyche","54993","Rise against","adderall","136"
"28899","Esmerelda","156304","PillMan","xanax","136"
"35486","NeuroChi","156304","PillMan","xanax","136"
"4495","vhalin","156304","PillMan","xanax","136"
"65726","ellavader","68194","baZING","oxycodone","136"
"65638","Pieces Mended","71487","robotripper","adderall","136"
"737","RARFE ","65638","Pieces Mended","adderall","136"
"63028","Smirnoff","127455","BitterSweet","adderall","136"
"5750","pharmapsyche","127455","BitterSweet","adderall","136"
"54993","Rise against","127455","BitterSweet","adderall","136"
"46865","dyingtomorrow","54993","Rise against","adderall","136"
"65726","ellavader","156304","PillMan","oxycodone","136"
"28015","riaahacker","54993","Rise against","adderall","136"
"1023","btoddw2","65638","Pieces Mended","adderall","136"
"54993","Rise against","202594","headfull0fstars","adderall","136"
"4495","vhalin","65638","Pieces Mended","adderall","136"
"46865","dyingtomorrow","127455","BitterSweet","adderall","136"
"45618","cannabis-sam","65638","Pieces Mended","adderall","136"
"1213","Psilocybe S.","156304","PillMan","xanax","136"
"56","Hollywood ","54993","Rise against","adderall","136"
"65726","ellavader","294051","Jungledog","oxycodone","136"
"56520","Christian1122","127455","BitterSweet","adderall","136"
"28015","riaahacker","127455","BitterSweet","adderall","136"
"28015","riaahacker","156304","PillMan","xanax","136"
"9","Freedom of Mind","65638","Pieces Mended","adderall","136"
"46446","EyesOfTheWorld","46865","dyingtomorrow","adderall","135"
"40911","rawbeer","275604","snowdrop","kratom","135"
"36571","boots12","65638","Pieces Mended","adderall","135"
"1868","Paderas","46446","EyesOfTheWorld","adderall","135"
"1","Alfa","275604","snowdrop","kratom","135"
"46446","EyesOfTheWorld","127014","MikePatton","adderall","135"
"127014","MikePatton","275604","snowdrop","kratom","135"
"36571","boots12","45728","Gappa","adderall","135"
"118772","Mr_Spiffy","179359","uberhigh","morphine","135"
"46446","EyesOfTheWorld","115136","trdofbeingtrd","adderall","135"
"35486","NeuroChi","36571","boots12","adderall","135"
"36571","boots12","46865","dyingtomorrow","adderall","135"
"1842","nymphetamine","275604","snowdrop","kratom","135"
"2418","Phungushead","275604","snowdrop","kratom","135"
"156304","PillMan","275604","snowdrop","kratom","135"
"273439","marathonmel7","275604","snowdrop","kratom","135"
"179359","uberhigh","180313","out_there","morphine","135"
"36571","boots12","202594","headfull0fstars","adderall","135"
"1","Alfa","46446","EyesOfTheWorld","adderall","135"
"234642","SuperCaesarKratomSalad","275604","snowdrop","kratom","135"
"275604","snowdrop","294051","Jungledog","kratom","135"
"18769","samuraigecko","179359","uberhigh","morphine","135"
"118772","Mr_Spiffy","275604","snowdrop","kratom","135"
"28899","Esmerelda","179359","uberhigh","morphine","135"
"737","RARFE ","36571","boots12","adderall","135"
"36571","boots12","63028","Smirnoff","adderall","135"
"155253","MachoManSavage","275604","snowdrop","kratom","135"
"5750","pharmapsyche","46446","EyesOfTheWorld","adderall","135"
"115136","trdofbeingtrd","275604","snowdrop","kratom","135"
"102420","spicybrainsgirl","275604","snowdrop","kratom","135"
"275468","Openmymind","275604","snowdrop","kratom","135"
"19028","RochiWizz","179359","uberhigh","morphine","135"
"36571","boots12","71487","robotripper","adderall","135"
"13344","drewcil","275604","snowdrop","kratom","135"
"1023","btoddw2","36571","boots12","adderall","135"
"4495","vhalin","36571","boots12","adderall","135"
"28015","riaahacker","46446","EyesOfTheWorld","adderall","135"
"9","Freedom of Mind","36571","boots12","adderall","135"
"28015","riaahacker","275604","snowdrop","kratom","135"
"46446","EyesOfTheWorld","65638","Pieces Mended","adderall","135"
"1842","nymphetamine","36571","boots12","adderall","135"
"56","Hollywood ","46446","EyesOfTheWorld","adderall","135"
"1239","Nicaine","275604","snowdrop","kratom","135"
"4495","vhalin","275604","snowdrop","kratom","135"
"4495","vhalin","179359","uberhigh","morphine","135"
"46446","EyesOfTheWorld","56520","Christian1122","adderall","135"
"2418","Phungushead","179359","uberhigh","morphine","135"
"90006","Ghetto_Chem","275604","snowdrop","kratom","135"
"36571","boots12","54993","Rise against","adderall","135"
"35486","NeuroChi","275604","snowdrop","kratom","135"
"1868","Paderas","36571","boots12","adderall","135"
"63028","Smirnoff","179359","uberhigh","morphine","135"
"35486","NeuroChi","179359","uberhigh","morphine","135"
"46865","dyingtomorrow","179359","uberhigh","morphine","135"
"46446","EyesOfTheWorld","202594","headfull0fstars","adderall","135"
"36571","boots12","127455","BitterSweet","adderall","135"
"103726","seaturtle","275604","snowdrop","kratom","135"
"1329","khonsu13","179359","uberhigh","morphine","135"
"46865","dyingtomorrow","275604","snowdrop","kratom","135"
"46446","EyesOfTheWorld","63028","Smirnoff","adderall","135"
"10410","DXMBunny","275604","snowdrop","kratom","135"
"36571","boots12","56520","Christian1122","adderall","135"
"2763","bogumil","275604","snowdrop","kratom","135"
"28015","riaahacker","179359","uberhigh","morphine","135"
"91040","Dankfish","275604","snowdrop","kratom","135"
"157358","CrispCold","275604","snowdrop","kratom","135"
"46446","EyesOfTheWorld","71487","robotripper","adderall","135"
"35486","NeuroChi","46446","EyesOfTheWorld","adderall","135"
"36571","boots12","45618","cannabis-sam","adderall","135"
"1","Alfa","36571","boots12","adderall","135"
"5010","snapper ","179359","uberhigh","morphine","135"
"45728","Gappa","46446","EyesOfTheWorld","adderall","135"
"4910","Fantasian","179359","uberhigh","morphine","135"
"20234","ianzombie ","275604","snowdrop","kratom","135"
"1868","Paderas","179359","uberhigh","morphine","135"
"36571","boots12","127014","MikePatton","adderall","135"
"56","Hollywood ","179359","uberhigh","morphine","135"
"1842","nymphetamine","179359","uberhigh","morphine","135"
"135","sands of time","275604","snowdrop","kratom","135"
"5750","pharmapsyche","36571","boots12","adderall","135"
"7946","788.4","179359","uberhigh","morphine","135"
"9","Freedom of Mind","179359","uberhigh","morphine","135"
"737","RARFE ","46446","EyesOfTheWorld","adderall","135"
"36571","boots12","115136","trdofbeingtrd","adderall","135"
"74033","TheSweetPea","275604","snowdrop","kratom","135"
"1964","enquirewithin ","275604","snowdrop","kratom","135"
"28015","riaahacker","36571","boots12","adderall","135"
"1023","btoddw2","46446","EyesOfTheWorld","adderall","135"
"4495","vhalin","46446","EyesOfTheWorld","adderall","135"
"3413","radiometer ","275604","snowdrop","kratom","135"
"46446","EyesOfTheWorld","54993","Rise against","adderall","135"
"45618","cannabis-sam","46446","EyesOfTheWorld","adderall","135"
"56","Hollywood ","36571","boots12","adderall","135"
"273791","Roaddoggy","275604","snowdrop","kratom","135"
"45599","On The Nod","179359","uberhigh","morphine","135"
"9","Freedom of Mind","46446","EyesOfTheWorld","adderall","135"
"3299","anabolictrio","179359","uberhigh","morphine","135"
"46446","EyesOfTheWorld","127455","BitterSweet","adderall","135"
"7303","pankreeas ","179359","uberhigh","morphine","135"
"1842","nymphetamine","46446","EyesOfTheWorld","adderall","135"
"36571","boots12","46446","EyesOfTheWorld","adderall","135"
"1","Alfa","179359","uberhigh","morphine","135"
"102420","spicybrainsgirl","179359","uberhigh","morphine","135"
"83387","PrincessJo x","280861","Hydroxyout","oxycodone","134"
"3375","MrJim","83387","PrincessJo x","hydromorphone","134"
"35486","NeuroChi","96636","Mersann","buprenorphine","134"
"46865","dyingtomorrow","83387","PrincessJo x","hydromorphone","134"
"3413","radiometer ","96636","Mersann","ghb","134"
"9","Freedom of Mind","96636","Mersann","tramadol","134"
"46865","dyingtomorrow","83387","PrincessJo x","oxycodone","134"
"4495","vhalin","96636","Mersann","nitrous oxide","134"
"96636","Mersann","156304","PillMan","tramadol","134"
"83387","PrincessJo x","108860","Pain Hurts","oxycodone","134"
"6201","SkUnKaDeLiC","96636","Mersann","diazepam","134"
"4495","vhalin","96636","Mersann","valium","134"
"4495","vhalin","96636","Mersann","tramadol","134"
"63028","Smirnoff","96636","Mersann","tramadol","134"
"2539","Beltane","83387","PrincessJo x","hydromorphone","134"
"96636","Mersann","180313","out_there","midazolam","134"
"1023","btoddw2","96636","Mersann","valium","134"
"83387","PrincessJo x","211963","WoodyCA","oxycodone","134"
"18628","Pino ","96636","Mersann","methoxetamine","134"
"35486","NeuroChi","83387","PrincessJo x","vicodin","134"
"46865","dyingtomorrow","83387","PrincessJo x","vicodin","134"
"96636","Mersann","180313","out_there","ghb","134"
"56","Hollywood ","96636","Mersann","nitrous oxide","134"
"18965","beentheredonethatagain","96636","Mersann","valium","134"
"2418","Phungushead","96636","Mersann","zolpidem","134"
"28899","Esmerelda","96636","Mersann","valium","134"
"68194","baZING","83387","PrincessJo x","oxycodone","134"
"28015","riaahacker","83387","PrincessJo x","vicodin","134"
"3375","MrJim","83387","PrincessJo x","oxycodone","134"
"1","Alfa","96636","Mersann","tramadol","134"
"83387","PrincessJo x","156304","PillMan","oxycodone","134"
"63028","Smirnoff","96636","Mersann","diazepam","134"
"96636","Mersann","227635","Jels","buprenorphine","134"
"2066","~lostgurl~ ","83387","PrincessJo x","vicodin","134"
"1842","nymphetamine","96636","Mersann","valium","134"
"83387","PrincessJo x","294051","Jungledog","oxycodone","134"
"9","Freedom of Mind","96636","Mersann","ghb","134"
"83387","PrincessJo x","102420","spicybrainsgirl","vicodin","134"
"7303","pankreeas ","83387","PrincessJo x","oxycodone","134"
"8569","johnnyvoid","96636","Mersann","valium","134"
"63028","Smirnoff","96636","Mersann","valium","134"
"3299","anabolictrio","96636","Mersann","buprenorphine","134"
"856","str8ballin","96636","Mersann","valium","134"
"96636","Mersann","180313","out_there","zolpidem","134"
"6201","SkUnKaDeLiC","96636","Mersann","midazolam","134"
"9","Freedom of Mind","83387","PrincessJo x","hydromorphone","134"
"45618","cannabis-sam","96636","Mersann","valium","134"
"313","RoboCop ","96636","Mersann","ethylphenidate","134"
"1842","nymphetamine","96636","Mersann","tramadol","134"
"42985","EducatedUser408","96636","Mersann","ghb","134"
"1","Alfa","96636","Mersann","ghb","134"
"58307","missparkles ","96636","Mersann","diazepam","134"
"28015","riaahacker","96636","Mersann","diazepam","134"
"2539","Beltane","96636","Mersann","valium","134"
"46865","dyingtomorrow","96636","Mersann","buprenorphine","134"
"56","Hollywood ","83387","PrincessJo x","oxycodone","134"
"1842","nymphetamine","96636","Mersann","ethylphenidate","134"
"1","Alfa","96636","Mersann","valium","134"
"4495","vhalin","83387","PrincessJo x","oxycodone","134"
"63028","Smirnoff","83387","PrincessJo x","oxycodone","134"
"28015","riaahacker","96636","Mersann","tramadol","134"
"46865","dyingtomorrow","96636","Mersann","ethylphenidate","134"
"1842","nymphetamine","96636","Mersann","ghb","134"
"96636","Mersann","180313","out_there","tramadol","134"
"83387","PrincessJo x","207982","tryinghard","oxycodone","134"
"46865","dyingtomorrow","96636","Mersann","valium","134"
"7946","788.4","96636","Mersann","valium","134"
"56","Hollywood ","96636","Mersann","valium","134"
"93684","Synaps","96636","Mersann","ethylphenidate","134"
"1842","nymphetamine","96636","Mersann","diazepam","134"
"1","Alfa","18628","Pino ","modafinil","134"
"45599","On The Nod","83387","PrincessJo x","oxycodone","134"
"96636","Mersann","127014","MikePatton","tramadol","134"
"83387","PrincessJo x","220080","Lunaciel","oxycodone","134"
"2418","Phungushead","96636","Mersann","buprenorphine","134"
"45618","cannabis-sam","96636","Mersann","tramadol","134"
"65726","ellavader","83387","PrincessJo x","oxycodone","134"
"2539","Beltane","96636","Mersann","diazepam","134"
"1","Alfa","96636","Mersann","diazepam","134"
"1842","nymphetamine","83387","PrincessJo x","oxycodone","134"
"1595","Curtains","83387","PrincessJo x","vicodin","134"
"9","Freedom of Mind","96636","Mersann","diazepam","134"
"6201","SkUnKaDeLiC","96636","Mersann","valium","134"
"46889","port 21","96636","Mersann","methoxetamine","134"
"2418","Phungushead","96636","Mersann","valium","134"
"83387","PrincessJo x","118772","Mr_Spiffy","oxycodone","134"
"45599","On The Nod","83387","PrincessJo x","hydromorphone","134"
"18628","Pino ","46889","port 21","methoxetamine","134"
"49040","rokman nash","83387","PrincessJo x","vicodin","134"
"38015","davestate ","96636","Mersann","ethylphenidate","134"
"2627","NoWorldOrder","96636","Mersann","ethylphenidate","134"
"38632","PilL FreaK","96636","Mersann","tramadol","134"
"83387","PrincessJo x","180313","out_there","oxycodone","134"
"1842","nymphetamine","96636","Mersann","nitrous oxide","134"
"1180","Creeping Death ","96636","Mersann","valium","134"
"2418","Phungushead","96636","Mersann","tramadol","134"
"9019","Forthesevenlakes","96636","Mersann","buprenorphine","134"
"2418","Phungushead","83387","PrincessJo x","oxycodone","134"
"28015","riaahacker","96636","Mersann","nitrous oxide","134"
"1806","betty_bupe","96636","Mersann","midazolam","134"
"3299","anabolictrio","96636","Mersann","valium","134"
"56","Hollywood ","96636","Mersann","diazepam","134"
"1023","btoddw2","96636","Mersann","diazepam","134"
"4495","vhalin","83387","PrincessJo x","vicodin","134"
"83387","PrincessJo x","118772","Mr_Spiffy","hydromorphone","134"
"83387","PrincessJo x","211963","WoodyCA","vicodin","134"
"1239","Nicaine","96636","Mersann","valium","134"
"1714","magicmaster141","96636","Mersann","midazolam","134"
"1239","Nicaine","96636","Mersann","diazepam","134"
"1842","nymphetamine","83387","PrincessJo x","vicodin","134"
"313","RoboCop ","96636","Mersann","nitrous oxide","134"
"96636","Mersann","211963","WoodyCA","valium","134"
"7946","788.4","83387","PrincessJo x","oxycodone","134"
"56","Hollywood ","96636","Mersann","tramadol","134"
"8569","johnnyvoid","96636","Mersann","diazepam","134"
"2539","Beltane","96636","Mersann","midazolam","134"
"35486","NeuroChi","96636","Mersann","tramadol","134"
"4495","vhalin","96636","Mersann","diazepam","134"
"41143","RoboCodeine7610","96636","Mersann","tramadol","134"
"1180","Creeping Death ","96636","Mersann","diazepam","134"
"1023","btoddw2","96636","Mersann","zolpidem","134"
"9","Freedom of Mind","83387","PrincessJo x","vicodin","134"
"4495","vhalin","83387","PrincessJo x","hydromorphone","134"
"35486","NeuroChi","83387","PrincessJo x","oxycodone","134"
"96636","Mersann","256377","detoxin momma","tramadol","134"
"63028","Smirnoff","156304","PillMan","morphine","133"
"35486","NeuroChi","156304","PillMan","morphine","133"
"46865","dyingtomorrow","156304","PillMan","morphine","133"
"1281","mmk271","28899","Esmerelda","methadone","133"
"1753","kailey_elise ","2418","Phungushead","methadone","133"
"1281","mmk271","1842","nymphetamine","methadone","133"
"1753","kailey_elise ","181260","Kitts","methadone","133"
"1329","khonsu13","156304","PillMan","morphine","133"
"1281","mmk271","46446","EyesOfTheWorld","methadone","133"
"1281","mmk271","35486","NeuroChi","methadone","133"
"1753","kailey_elise ","194301","rosielee","methadone","133"
"28015","riaahacker","156304","PillMan","morphine","133"
"1281","mmk271","181260","Kitts","methadone","133"
"5010","snapper ","156304","PillMan","morphine","133"
"1753","kailey_elise ","18965","beentheredonethatagain","methadone","133"
"1753","kailey_elise ","102824","natey7","methadone","133"
"4910","Fantasian","156304","PillMan","morphine","133"
"1281","mmk271","1595","Curtains","methadone","133"
"1868","Paderas","156304","PillMan","morphine","133"
"56","Hollywood ","156304","PillMan","morphine","133"
"1842","nymphetamine","156304","PillMan","morphine","133"
"1753","kailey_elise ","27864","G_nome","methadone","133"
"7946","788.4","156304","PillMan","morphine","133"
"1281","mmk271","18965","beentheredonethatagain","methadone","133"
"9","Freedom of Mind","156304","PillMan","morphine","133"
"1753","kailey_elise ","63028","Smirnoff","methadone","133"
"1281","mmk271","45618","cannabis-sam","methadone","133"
"1753","kailey_elise ","58307","missparkles ","methadone","133"
"1281","mmk271","27864","G_nome","methadone","133"
"1753","kailey_elise ","115136","trdofbeingtrd","methadone","133"
"1281","mmk271","127014","MikePatton","methadone","133"
"1753","kailey_elise ","16489","baron samedi","methadone","133"
"1281","mmk271","58307","missparkles ","methadone","133"
"1753","kailey_elise ","202594","headfull0fstars","methadone","133"
"1281","mmk271","45599","On The Nod","methadone","133"
"45599","On The Nod","156304","PillMan","morphine","133"
"1753","kailey_elise ","273791","Roaddoggy","methadone","133"
"3299","anabolictrio","156304","PillMan","morphine","133"
"1281","mmk271","16489","baron samedi","methadone","133"
"7303","pankreeas ","156304","PillMan","morphine","133"
"1753","kailey_elise ","1842","nymphetamine","methadone","133"
"1","Alfa","156304","PillMan","morphine","133"
"156304","PillMan","180313","out_there","morphine","133"
"1281","mmk271","6201","SkUnKaDeLiC","methadone","133"
"102420","spicybrainsgirl","156304","PillMan","morphine","133"
"1753","kailey_elise ","81101","source","methadone","133"
"1281","mmk271","273791","Roaddoggy","methadone","133"
"1753","kailey_elise ","35486","NeuroChi","methadone","133"
"1281","mmk271","28015","riaahacker","methadone","133"
"1753","kailey_elise ","118772","Mr_Spiffy","methadone","133"
"1281","mmk271","81101","source","methadone","133"
"1281","mmk271","46865","dyingtomorrow","methadone","133"
"1753","kailey_elise ","100767","missinglfe","methadone","133"
"118772","Mr_Spiffy","156304","PillMan","morphine","133"
"1281","mmk271","118772","Mr_Spiffy","methadone","133"
"1281","mmk271","2418","Phungushead","methadone","133"
"1753","kailey_elise ","45618","cannabis-sam","methadone","133"
"1281","mmk271","100767","missinglfe","methadone","133"
"1753","kailey_elise ","102420","spicybrainsgirl","methadone","133"
"1281","mmk271","1753","kailey_elise ","methadone","133"
"1753","kailey_elise ","127014","MikePatton","methadone","133"
"18769","samuraigecko","156304","PillMan","morphine","133"
"28899","Esmerelda","156304","PillMan","morphine","133"
"1281","mmk271","194301","rosielee","methadone","133"
"1753","kailey_elise ","170641","jimmym321","methadone","133"
"1281","mmk271","102420","spicybrainsgirl","methadone","133"
"1753","kailey_elise ","45599","On The Nod","methadone","133"
"1281","mmk271","102824","natey7","methadone","133"
"19028","RochiWizz","156304","PillMan","morphine","133"
"1753","kailey_elise ","7946","788.4","methadone","133"
"1281","mmk271","170641","jimmym321","methadone","133"
"1753","kailey_elise ","6201","SkUnKaDeLiC","methadone","133"
"1281","mmk271","63028","Smirnoff","methadone","133"
"1753","kailey_elise ","79947","TheBigBadWolf","methadone","133"
"1281","mmk271","7946","788.4","methadone","133"
"1753","kailey_elise ","28015","riaahacker","methadone","133"
"156304","PillMan","179359","uberhigh","morphine","133"
"1281","mmk271","115136","trdofbeingtrd","methadone","133"
"1753","kailey_elise ","28899","Esmerelda","methadone","133"
"1281","mmk271","79947","TheBigBadWolf","methadone","133"
"4495","vhalin","156304","PillMan","morphine","133"
"2418","Phungushead","156304","PillMan","morphine","133"
"1753","kailey_elise ","46865","dyingtomorrow","methadone","133"
"1595","Curtains","1753","kailey_elise ","methadone","133"
"1281","mmk271","202594","headfull0fstars","methadone","133"
"1753","kailey_elise ","46446","EyesOfTheWorld","methadone","133"
"4910","Fantasian","100767","missinglfe","methadone","132"
"4910","Fantasian","45618","cannabis-sam","methadone","132"
"11877","howlongisthenight","90006","Ghetto_Chem","kava","132"
"1684","CABS205","90006","Ghetto_Chem","kava","132"
"4910","Fantasian","127014","MikePatton","methadone","132"
"4910","Fantasian","102420","spicybrainsgirl","methadone","132"
"1281","mmk271","4910","Fantasian","methadone","132"
"4910","Fantasian","45599","On The Nod","methadone","132"
"4910","Fantasian","170641","jimmym321","methadone","132"
"4910","Fantasian","6201","SkUnKaDeLiC","methadone","132"
"4910","Fantasian","7946","788.4","methadone","132"
"1842","nymphetamine","4910","Fantasian","methadone","132"
"4910","Fantasian","28015","riaahacker","methadone","132"
"4910","Fantasian","79947","TheBigBadWolf","methadone","132"
"4910","Fantasian","35486","NeuroChi","methadone","132"
"4910","Fantasian","28899","Esmerelda","methadone","132"
"13022","MrG","96636","Mersann","ghb","132"
"1595","Curtains","4910","Fantasian","methadone","132"
"2418","Phungushead","4910","Fantasian","methadone","132"
"4910","Fantasian","46446","EyesOfTheWorld","methadone","132"
"13022","MrG","42985","EducatedUser408","ghb","132"
"3413","radiometer ","13022","MrG","ghb","132"
"4910","Fantasian","181260","Kitts","methadone","132"
"4910","Fantasian","194301","rosielee","methadone","132"
"4910","Fantasian","102824","natey7","methadone","132"
"4910","Fantasian","18965","beentheredonethatagain","methadone","132"
"1753","kailey_elise ","4910","Fantasian","methadone","132"
"63028","Smirnoff","90006","Ghetto_Chem","kava","132"
"4910","Fantasian","63028","Smirnoff","methadone","132"
"5010","snapper ","90006","Ghetto_Chem","kava","132"
"4910","Fantasian","27864","G_nome","methadone","132"
"1842","nymphetamine","90006","Ghetto_Chem","kava","132"
"4910","Fantasian","115136","trdofbeingtrd","methadone","132"
"4910","Fantasian","58307","missparkles ","methadone","132"
"9","Freedom of Mind","13022","MrG","ghb","132"
"4910","Fantasian","202594","headfull0fstars","methadone","132"
"4495","vhalin","90006","Ghetto_Chem","kava","132"
"4910","Fantasian","16489","baron samedi","methadone","132"
"4910","Fantasian","46865","dyingtomorrow","methadone","132"
"4910","Fantasian","273791","Roaddoggy","methadone","132"
"1","Alfa","13022","MrG","ghb","132"
"4910","Fantasian","81101","source","methadone","132"
"13022","MrG","180313","out_there","ghb","132"
"4910","Fantasian","118772","Mr_Spiffy","methadone","132"
"1842","nymphetamine","13022","MrG","ghb","132"
"16345","IkBenDeMan","194301","rosielee","methadone","131"
"45599","On The Nod","135119","pup555","oxycodone","131"
"4910","Fantasian","16345","IkBenDeMan","methadone","131"
"16345","IkBenDeMan","102824","natey7","methadone","131"
"1753","kailey_elise ","16345","IkBenDeMan","methadone","131"
"65726","ellavader","135119","pup555","oxycodone","131"
"1842","nymphetamine","135119","pup555","oxycodone","131"
"16345","IkBenDeMan","102420","spicybrainsgirl","methadone","131"
"16345","IkBenDeMan","63028","Smirnoff","methadone","131"
"16345","IkBenDeMan","170641","jimmym321","methadone","131"
"16345","IkBenDeMan","115136","trdofbeingtrd","methadone","131"
"7946","788.4","16345","IkBenDeMan","methadone","131"
"2418","Phungushead","135119","pup555","oxycodone","131"
"16345","IkBenDeMan","16489","baron samedi","methadone","131"
"16345","IkBenDeMan","28015","riaahacker","methadone","131"
"135119","pup555","280861","Hydroxyout","oxycodone","131"
"16345","IkBenDeMan","273791","Roaddoggy","methadone","131"
"16345","IkBenDeMan","35486","NeuroChi","methadone","131"
"135119","pup555","220080","Lunaciel","oxycodone","131"
"118772","Mr_Spiffy","135119","pup555","oxycodone","131"
"7946","788.4","135119","pup555","oxycodone","131"
"16345","IkBenDeMan","81101","source","methadone","131"
"135119","pup555","156304","PillMan","oxycodone","131"
"16345","IkBenDeMan","118772","Mr_Spiffy","methadone","131"
"108860","Pain Hurts","135119","pup555","oxycodone","131"
"35486","NeuroChi","135119","pup555","oxycodone","131"
"83387","PrincessJo x","135119","pup555","oxycodone","131"
"135119","pup555","294051","Jungledog","oxycodone","131"
"16345","IkBenDeMan","100767","missinglfe","methadone","131"
"6201","SkUnKaDeLiC","16345","IkBenDeMan","methadone","131"
"46865","dyingtomorrow","135119","pup555","oxycodone","131"
"16345","IkBenDeMan","45618","cannabis-sam","methadone","131"
"16345","IkBenDeMan","18965","beentheredonethatagain","methadone","131"
"16345","IkBenDeMan","127014","MikePatton","methadone","131"
"1281","mmk271","16345","IkBenDeMan","methadone","131"
"16345","IkBenDeMan","27864","G_nome","methadone","131"
"68194","baZING","135119","pup555","oxycodone","131"
"3375","MrJim","135119","pup555","oxycodone","131"
"16345","IkBenDeMan","45599","On The Nod","methadone","131"
"16345","IkBenDeMan","58307","missparkles ","methadone","131"
"16345","IkBenDeMan","202594","headfull0fstars","methadone","131"
"7303","pankreeas ","135119","pup555","oxycodone","131"
"1842","nymphetamine","16345","IkBenDeMan","methadone","131"
"16345","IkBenDeMan","79947","TheBigBadWolf","methadone","131"
"16345","IkBenDeMan","46865","dyingtomorrow","methadone","131"
"135119","pup555","207982","tryinghard","oxycodone","131"
"16345","IkBenDeMan","28899","Esmerelda","methadone","131"
"135119","pup555","211963","WoodyCA","oxycodone","131"
"16345","IkBenDeMan","46446","EyesOfTheWorld","methadone","131"
"1595","Curtains","16345","IkBenDeMan","methadone","131"
"2418","Phungushead","16345","IkBenDeMan","methadone","131"
"135119","pup555","180313","out_there","oxycodone","131"
"56","Hollywood ","135119","pup555","oxycodone","131"
"4495","vhalin","135119","pup555","oxycodone","131"
"16345","IkBenDeMan","181260","Kitts","methadone","131"
"63028","Smirnoff","135119","pup555","oxycodone","131"
"401","peggs16","48762","brandon561","xanax","130"
"1","Alfa","401","peggs16","xanax","130"
"401","peggs16","6201","SkUnKaDeLiC","xanax","130"
"3780","Kradle","28015","riaahacker","dxm","130"
"401","peggs16","46446","EyesOfTheWorld","xanax","130"
"401","peggs16","273439","marathonmel7","xanax","130"
"313","RoboCop ","3780","Kradle","dxm","130"
"37097","jok3r","102420","spicybrainsgirl","benadryl","130"
"401","peggs16","211963","WoodyCA","xanax","130"
"3780","Kradle","116985","Chug Chug Chug","dxm","130"
"401","peggs16","35486","NeuroChi","xanax","130"
"401","peggs16","1714","magicmaster141","xanax","130"
"11877","howlongisthenight","37097","jok3r","benadryl","130"
"3780","Kradle","110776","PowerfulMedicine","dxm","130"
"2418","Phungushead","3780","Kradle","dxm","130"
"401","peggs16","28899","Esmerelda","xanax","130"
"3780","Kradle","18724","AirO","dxm","130"
"401","peggs16","856","str8ballin","xanax","130"
"3780","Kradle","75764","lololsolid","dxm","130"
"401","peggs16","45618","cannabis-sam","xanax","130"
"3780","Kradle","161625","mrcowman","dxm","130"
"401","peggs16","1808","xxgaretjaxx","xanax","130"
"3565","amd6568","3780","Kradle","dxm","130"
"3780","Kradle","180313","out_there","dxm","130"
"401","peggs16","156304","PillMan","xanax","130"
"401","peggs16","63028","Smirnoff","xanax","130"
"3780","Kradle","202594","headfull0fstars","dxm","130"
"401","peggs16","297036","supermono","xanax","130"
"401","peggs16","28015","riaahacker","xanax","130"
"401","peggs16","102420","spicybrainsgirl","xanax","130"
"3780","Kradle","45258","motter28218","dxm","130"
"401","peggs16","1842","nymphetamine","xanax","130"
"56","Hollywood ","401","peggs16","xanax","130"
"401","peggs16","3167","bubaloo","xanax","130"
"3780","Kradle","21315","Graduisic","dxm","130"
"401","peggs16","2418","Phungushead","xanax","130"
"16987","darkglobe","37097","jok3r","benadryl","130"
"401","peggs16","7946","788.4","xanax","130"
"3780","Kradle","44584","Rightnow289","dxm","130"
"9","Freedom of Mind","3780","Kradle","dxm","130"
"1684","CABS205","37097","jok3r","benadryl","130"
"401","peggs16","743","madman3l6","xanax","130"
"3780","Kradle","98407","phenythylamine","dxm","130"
"401","peggs16","3299","anabolictrio","xanax","130"
"3780","Kradle","156304","PillMan","dxm","130"
"401","peggs16","1213","Psilocybe S.","xanax","130"
"3780","Kradle","46889","port 21","dxm","130"
"657","distilla_truant","3780","Kradle","dxm","130"
"401","peggs16","4495","vhalin","xanax","130"
"3780","Kradle","8671","Richard_smoker","dxm","130"
"16700","beena","35486","NeuroChi","methadone","129"
"62508","Makesmefeelbig","124017","LoveNwar","mephedrone","129"
"740","Endologik","11411","supremedan","phenazepam","129"
"124017","LoveNwar","202594","headfull0fstars","diphenhydramine","129"
"1526","Cuberun ","11411","supremedan","mephedrone","129"
"11411","supremedan","179359","uberhigh","morphine","129"
"16700","beena","81101","source","methadone","129"
"11411","supremedan","156304","PillMan","oxycodone","129"
"201","fnord","13210","Ben12345","salvia divinorum","129"
"11411","supremedan","63028","Smirnoff","xanax","129"
"3167","bubaloo","11411","supremedan","xanax","129"
"11411","supremedan","11877","howlongisthenight","kava","129"
"16345","IkBenDeMan","16700","beena","methadone","129"
"1753","kailey_elise ","7946","788.4","xanax","129"
"1842","nymphetamine","11411","supremedan","mephedrone","129"
"153","blaze","124017","LoveNwar","mephedrone","129"
"4495","vhalin","124017","LoveNwar","diphenhydramine","129"
"11411","supremedan","19028","RochiWizz","morphine","129"
"16700","beena","118772","Mr_Spiffy","methadone","129"
"11411","supremedan","63028","Smirnoff","oxycodone","129"
"1281","mmk271","16700","beena","methadone","129"
"11411","supremedan","273439","marathonmel7","xanax","129"
"1753","kailey_elise ","3299","anabolictrio","xanax","129"
"56","Hollywood ","11411","supremedan","xanax","129"
"5010","snapper ","11411","supremedan","kava","129"
"20109","imyourlittlebare","124017","LoveNwar","mephedrone","129"
"3375","MrJim","11411","supremedan","oxycodone","129"
"6201","SkUnKaDeLiC","11411","supremedan","phenazepam","129"
"11411","supremedan","28899","Esmerelda","morphine","129"
"16700","beena","100767","missinglfe","methadone","129"
"11411","supremedan","46865","dyingtomorrow","oxycodone","129"
"6201","SkUnKaDeLiC","11411","supremedan","xanax","129"
"1833","scyrusurcys","13210","Ben12345","salvia divinorum","129"
"1842","nymphetamine","11411","supremedan","kava","129"
"11411","supremedan","46865","dyingtomorrow","hydromorphone","129"
"1714","magicmaster141","11411","supremedan","xanax","129"
"1753","kailey_elise ","1808","xxgaretjaxx","xanax","129"
"8569","johnnyvoid","124017","LoveNwar","diphenhydramine","129"
"1842","nymphetamine","124017","LoveNwar","diphenhydramine","129"
"1868","Paderas","11411","supremedan","mephedrone","129"
"11411","supremedan","135119","pup555","oxycodone","129"
"11411","supremedan","57308","BoyInTheCountry","mephedrone","129"
"11411","supremedan","118772","Mr_Spiffy","morphine","129"
"16700","beena","45618","cannabis-sam","methadone","129"
"7303","pankreeas ","11411","supremedan","oxycodone","129"
"1","Alfa","124017","LoveNwar","mephedrone","129"
"1842","nymphetamine","16700","beena","methadone","129"
"15","Sammi","13210","Ben12345","salvia divinorum","129"
"11411","supremedan","48119","Jasim ","phenazepam","129"
"57308","BoyInTheCountry","124017","LoveNwar","mephedrone","129"
"1842","nymphetamine","11411","supremedan","xanax","129"
"11411","supremedan","118772","Mr_Spiffy","hydromorphone","129"
"1753","kailey_elise ","63028","Smirnoff","xanax","129"
"1808","xxgaretjaxx","11411","supremedan","xanax","129"
"4495","vhalin","11411","supremedan","kava","129"
"743","madman3l6","1753","kailey_elise ","xanax","129"
"11411","supremedan","65726","ellavader","oxycodone","129"
"11411","supremedan","96636","Mersann","mephedrone","129"
"11411","supremedan","63028","Smirnoff","morphine","129"
"4495","vhalin","11411","supremedan","phenazepam","129"
"16700","beena","127014","MikePatton","methadone","129"
"4495","vhalin","11411","supremedan","mephedrone","129"
"11411","supremedan","63028","Smirnoff","phenazepam","129"
"1753","kailey_elise ","28015","riaahacker","xanax","129"
"4495","vhalin","11411","supremedan","xanax","129"
"1753","kailey_elise ","156304","PillMan","xanax","129"
"16700","beena","102420","spicybrainsgirl","methadone","129"
"11411","supremedan","45599","On The Nod","oxycodone","129"
"11411","supremedan","48762","brandon561","xanax","129"
"11411","supremedan","53567","buzzman","mephedrone","129"
"11411","supremedan","46865","dyingtomorrow","morphine","129"
"16700","beena","45599","On The Nod","methadone","129"
"1684","CABS205","124017","LoveNwar","diphenhydramine","129"
"96636","Mersann","124017","LoveNwar","mephedrone","129"
"1753","kailey_elise ","1842","nymphetamine","xanax","129"
"1595","Curtains","16700","beena","methadone","129"
"7303","pankreeas ","124017","LoveNwar","diphenhydramine","129"
"2418","Phungushead","16700","beena","methadone","129"
"16700","beena","170641","jimmym321","methadone","129"
"3471","Potassium Kid","11411","supremedan","mephedrone","129"
"11411","supremedan","108860","Pain Hurts","oxycodone","129"
"11411","supremedan","46446","EyesOfTheWorld","xanax","129"
"11411","supremedan","62508","Makesmefeelbig","mephedrone","129"
"1753","kailey_elise ","297036","supermono","xanax","129"
"8016","chillinwill","11411","supremedan","mephedrone","129"
"16700","beena","202594","headfull0fstars","methadone","129"
"56","Hollywood ","11411","supremedan","oxycodone","129"
"5750","pharmapsyche","11411","supremedan","mephedrone","129"
"401","peggs16","1753","kailey_elise ","xanax","129"
"46865","dyingtomorrow","124017","LoveNwar","diphenhydramine","129"
"4495","vhalin","11411","supremedan","morphine","129"
"2418","Phungushead","11411","supremedan","morphine","129"
"1213","Psilocybe S.","11411","supremedan","xanax","129"
"4495","vhalin","11411","supremedan","oxycodone","129"
"1753","kailey_elise ","2418","Phungushead","xanax","129"
"4495","vhalin","11411","supremedan","hydromorphone","129"
"13189","augentier ","124017","LoveNwar","diphenhydramine","129"
"16700","beena","79947","TheBigBadWolf","methadone","129"
"11411","supremedan","211963","WoodyCA","oxycodone","129"
"1808","xxgaretjaxx","124017","LoveNwar","diphenhydramine","129"
"11411","supremedan","211963","WoodyCA","xanax","129"
"11411","supremedan","57101","Terrapinzflyer ","mephedrone","129"
"1753","kailey_elise ","102420","spicybrainsgirl","xanax","129"
"3375","MrJim","11411","supremedan","hydromorphone","129"
"16700","beena","46865","dyingtomorrow","methadone","129"
"4092","trptamene ","11411","supremedan","mephedrone","129"
"50050","Gradient","124017","LoveNwar","mephedrone","129"
"13210","Ben12345","14069","Drugaddict","salvia divinorum","129"
"1526","Cuberun ","124017","LoveNwar","mephedrone","129"
"11411","supremedan","156304","PillMan","morphine","129"
"1","Alfa","11411","supremedan","xanax","129"
"16700","beena","28899","Esmerelda","methadone","129"
"11411","supremedan","118772","Mr_Spiffy","oxycodone","129"
"856","str8ballin","11411","supremedan","xanax","129"
"11411","supremedan","45618","cannabis-sam","xanax","129"
"11411","supremedan","90006","Ghetto_Chem","kava","129"
"2418","Phungushead","11411","supremedan","xanax","129"
"1753","kailey_elise ","3167","bubaloo","xanax","129"
"1842","nymphetamine","124017","LoveNwar","mephedrone","129"
"1329","khonsu13","11411","supremedan","morphine","129"
"4910","Fantasian","16700","beena","methadone","129"
"1684","CABS205","11411","supremedan","kava","129"
"124017","LoveNwar","127014","MikePatton","diphenhydramine","129"
"63028","Smirnoff","124017","LoveNwar","diphenhydramine","129"
"1753","kailey_elise ","16700","beena","methadone","129"
"7946","788.4","11411","supremedan","xanax","129"
"11411","supremedan","102420","spicybrainsgirl","morphine","129"
"16700","beena","46446","EyesOfTheWorld","methadone","129"
"1842","nymphetamine","11411","supremedan","oxycodone","129"
"11411","supremedan","180313","out_there","oxycodone","129"
"11411","supremedan","28015","riaahacker","xanax","129"
"2539","Beltane","11411","supremedan","hydromorphone","129"
"11411","supremedan","63028","Smirnoff","kava","129"
"3565","amd6568","13210","Ben12345","salvia divinorum","129"
"1753","kailey_elise ","28899","Esmerelda","xanax","129"
"56","Hollywood ","1753","kailey_elise ","xanax","129"
"153","blaze","11411","supremedan","mephedrone","129"
"5010","snapper ","11411","supremedan","morphine","129"
"11411","supremedan","18769","samuraigecko","morphine","129"
"16700","beena","181260","Kitts","methadone","129"
"11411","supremedan","294051","Jungledog","oxycodone","129"
"11411","supremedan","35486","NeuroChi","xanax","129"
"11411","supremedan","83387","PrincessJo x","hydromorphone","129"
"1714","magicmaster141","1753","kailey_elise ","xanax","129"
"1842","nymphetamine","13210","Ben12345","salvia divinorum","129"
"1753","kailey_elise ","45618","cannabis-sam","xanax","129"
"4910","Fantasian","11411","supremedan","morphine","129"
"1868","Paderas","124017","LoveNwar","mephedrone","129"
"1868","Paderas","11411","supremedan","morphine","129"
"1842","nymphetamine","11411","supremedan","phenazepam","129"
"56","Hollywood ","11411","supremedan","morphine","129"
"1842","nymphetamine","11411","supremedan","morphine","129"
"11411","supremedan","124017","LoveNwar","mephedrone","129"
"11411","supremedan","180313","out_there","morphine","129"
"7946","788.4","16700","beena","methadone","129"
"16700","beena","194301","rosielee","methadone","129"
"11411","supremedan","35486","NeuroChi","oxycodone","129"
"7946","788.4","11411","supremedan","morphine","129"
"3299","anabolictrio","11411","supremedan","xanax","129"
"9","Freedom of Mind","11411","supremedan","morphine","129"
"11411","supremedan","45599","On The Nod","hydromorphone","129"
"2418","Phungushead","11411","supremedan","oxycodone","129"
"1753","kailey_elise ","4495","vhalin","xanax","129"
"45583","Synesthesiac","124017","LoveNwar","mephedrone","129"
"11411","supremedan","83387","PrincessJo x","oxycodone","129"
"11411","supremedan","62077","WTF O_o","mephedrone","129"
"11411","supremedan","45599","On The Nod","morphine","129"
"53567","buzzman","124017","LoveNwar","mephedrone","129"
"16700","beena","102824","natey7","methadone","129"
"4495","vhalin","124017","LoveNwar","mephedrone","129"
"1","Alfa","11411","supremedan","mephedrone","129"
"62077","WTF O_o","124017","LoveNwar","mephedrone","129"
"11411","supremedan","14677","splish6","phenazepam","129"
"1753","kailey_elise ","6201","SkUnKaDeLiC","xanax","129"
"1753","kailey_elise ","11411","supremedan","xanax","129"
"743","madman3l6","11411","supremedan","xanax","129"
"16700","beena","18965","beentheredonethatagain","methadone","129"
"11411","supremedan","280861","Hydroxyout","oxycodone","129"
"11411","supremedan","156304","PillMan","xanax","129"
"11411","supremedan","50050","Gradient","mephedrone","129"
"11411","supremedan","28015","riaahacker","morphine","129"
"16700","beena","63028","Smirnoff","methadone","129"
"9","Freedom of Mind","11411","supremedan","hydromorphone","129"
"1752","Gurnie","13210","Ben12345","salvia divinorum","129"
"7946","788.4","11411","supremedan","oxycodone","129"
"1753","kailey_elise ","273439","marathonmel7","xanax","129"
"1753","kailey_elise ","48762","brandon561","xanax","129"
"16700","beena","27864","G_nome","methadone","129"
"3471","Potassium Kid","124017","LoveNwar","mephedrone","129"
"11411","supremedan","207982","tryinghard","oxycodone","129"
"28015","riaahacker","124017","LoveNwar","mephedrone","129"
"11411","supremedan","297036","supermono","xanax","129"
"11411","supremedan","20109","imyourlittlebare","mephedrone","129"
"3299","anabolictrio","11411","supremedan","morphine","129"
"11411","supremedan","35486","NeuroChi","morphine","129"
"8016","chillinwill","124017","LoveNwar","mephedrone","129"
"16700","beena","115136","trdofbeingtrd","methadone","129"
"5750","pharmapsyche","124017","LoveNwar","mephedrone","129"
"7303","pankreeas ","11411","supremedan","morphine","129"
"1213","Psilocybe S.","1753","kailey_elise ","xanax","129"
"1753","kailey_elise ","35486","NeuroChi","xanax","129"
"1","Alfa","11411","supremedan","morphine","129"
"16700","beena","58307","missparkles ","methadone","129"
"4969","kaide","124017","LoveNwar","diphenhydramine","129"
"11411","supremedan","220080","Lunaciel","oxycodone","129"
"11411","supremedan","102420","spicybrainsgirl","xanax","129"
"11411","supremedan","45583","Synesthesiac","mephedrone","129"
"1753","kailey_elise ","46446","EyesOfTheWorld","xanax","129"
"16700","beena","28015","riaahacker","methadone","129"
"401","peggs16","11411","supremedan","xanax","129"
"4092","trptamene ","124017","LoveNwar","mephedrone","129"
"1","Alfa","13210","Ben12345","salvia divinorum","129"
"6201","SkUnKaDeLiC","16700","beena","methadone","129"
"57101","Terrapinzflyer ","124017","LoveNwar","mephedrone","129"
"16489","baron samedi","16700","beena","methadone","129"
"1","Alfa","1753","kailey_elise ","xanax","129"
"16700","beena","273791","Roaddoggy","methadone","129"
"11411","supremedan","68194","baZING","oxycodone","129"
"856","str8ballin","1753","kailey_elise ","xanax","129"
"11411","supremedan","28899","Esmerelda","xanax","129"
"11411","supremedan","28015","riaahacker","mephedrone","129"
"1753","kailey_elise ","211963","WoodyCA","xanax","129"
"7946","788.4","108546","reef88","xanax","128"
"45618","cannabis-sam","108546","reef88","xanax","128"
"56","Hollywood ","108546","reef88","xanax","128"
"102420","spicybrainsgirl","108546","reef88","xanax","128"
"1714","magicmaster141","108546","reef88","xanax","128"
"48762","brandon561","108546","reef88","xanax","128"
"108546","reef88","297036","supermono","xanax","128"
"3299","anabolictrio","108546","reef88","xanax","128"
"108546","reef88","273439","marathonmel7","xanax","128"
"1753","kailey_elise ","108546","reef88","xanax","128"
"11411","supremedan","108546","reef88","xanax","128"
"28899","Esmerelda","108546","reef88","xanax","128"
"35486","NeuroChi","108546","reef88","xanax","128"
"1213","Psilocybe S.","108546","reef88","xanax","128"
"1","Alfa","108546","reef88","xanax","128"
"856","str8ballin","108546","reef88","xanax","128"
"28015","riaahacker","108546","reef88","xanax","128"
"3167","bubaloo","108546","reef88","xanax","128"
"46446","EyesOfTheWorld","108546","reef88","xanax","128"
"63028","Smirnoff","108546","reef88","xanax","128"
"6201","SkUnKaDeLiC","108546","reef88","xanax","128"
"108546","reef88","156304","PillMan","xanax","128"
"108546","reef88","211963","WoodyCA","xanax","128"
"1842","nymphetamine","108546","reef88","xanax","128"
"1808","xxgaretjaxx","108546","reef88","xanax","128"
"743","madman3l6","108546","reef88","xanax","128"
"4495","vhalin","108546","reef88","xanax","128"
"401","peggs16","108546","reef88","xanax","128"
"2418","Phungushead","108546","reef88","xanax","128"
"401","peggs16","156304","PillMan","klonopin","127"
"401","peggs16","2418","Phungushead","clonazepam","127"
"401","peggs16","1714","magicmaster141","klonopin","127"
"9","Freedom of Mind","401","peggs16","clonazepam","127"
"56","Hollywood ","401","peggs16","clonazepam","127"
"401","peggs16","2539","Beltane","clonazepam","127"
"401","peggs16","1714","magicmaster141","clonazepam","127"
"401","peggs16","202594","headfull0fstars","clonazepam","127"
"401","peggs16","6201","SkUnKaDeLiC","clonazepam","127"
"401","peggs16","2539","Beltane","klonopin","127"
"401","peggs16","28015","riaahacker","klonopin","127"
"401","peggs16","5733","Jatelka ","clonazepam","127"
"1","Alfa","401","peggs16","klonopin","127"
"401","peggs16","3167","bubaloo","clonazepam","127"
"401","peggs16","180313","out_there","clonazepam","127"
"401","peggs16","63028","Smirnoff","clonazepam","127"
"2271","polloloco001 ","6052","KomodoMK","mdma","126"
"2271","polloloco001 ","83387","PrincessJo x","mdma","126"
"4910","Fantasian","230750","MoreGutzThanGlory","methadone","126"
"17829","LookingForHer","46889","port 21","dxm","126"
"1753","kailey_elise ","230750","MoreGutzThanGlory","methadone","126"
"202594","headfull0fstars","230750","MoreGutzThanGlory","clonazepam","126"
"2271","polloloco001 ","3345","Unsolved","mdma","126"
"2271","polloloco001 ","45583","Synesthesiac","mdma","126"
"181260","Kitts","230750","MoreGutzThanGlory","methadone","126"
"17829","LookingForHer","202594","headfull0fstars","dxm","126"
"63028","Smirnoff","230750","MoreGutzThanGlory","methadone","126"
"3780","Kradle","17829","LookingForHer","dxm","126"
"2239","skilld","2271","polloloco001 ","mdma","126"
"2271","polloloco001 ","54214","Zoidberg","mdma","126"
"1714","magicmaster141","230750","MoreGutzThanGlory","clonazepam","126"
"3167","bubaloo","230750","MoreGutzThanGlory","clonazepam","126"
"79947","TheBigBadWolf","230750","MoreGutzThanGlory","methadone","126"
"2271","polloloco001 ","7303","pankreeas ","mdma","126"
"7946","788.4","230750","MoreGutzThanGlory","methadone","126"
"2271","polloloco001 ","5750","pharmapsyche","mdma","126"
"202594","headfull0fstars","230750","MoreGutzThanGlory","methadone","126"
"16987","darkglobe","230750","MoreGutzThanGlory","benadryl","126"
"45599","On The Nod","46446","EyesOfTheWorld","suboxone","126"
"1806","betty_bupe","2271","polloloco001 ","mdma","126"
"100767","missinglfe","230750","MoreGutzThanGlory","methadone","126"
"62","BA","2271","polloloco001 ","mdma","126"
"2271","polloloco001 ","4495","vhalin","mdma","126"
"2271","polloloco001 ","19028","RochiWizz","mdma","126"
"75","Leo.","2271","polloloco001 ","mdma","126"
"9","Freedom of Mind","17829","LookingForHer","dxm","126"
"17829","LookingForHer","116985","Chug Chug Chug","dxm","126"
"1562","soer","2271","polloloco001 ","mdma","126"
"45599","On The Nod","211963","WoodyCA","suboxone","126"
"102824","natey7","230750","MoreGutzThanGlory","methadone","126"
"102420","spicybrainsgirl","230750","MoreGutzThanGlory","benadryl","126"
"1684","CABS205","230750","MoreGutzThanGlory","benadryl","126"
"16700","beena","230750","MoreGutzThanGlory","methadone","126"
"401","peggs16","230750","MoreGutzThanGlory","clonazepam","126"
"27864","G_nome","230750","MoreGutzThanGlory","methadone","126"
"2271","polloloco001 ","57101","Terrapinzflyer ","mdma","126"
"2271","polloloco001 ","90006","Ghetto_Chem","mdma","126"
"17829","LookingForHer","110776","PowerfulMedicine","dxm","126"
"45599","On The Nod","118772","Mr_Spiffy","suboxone","126"
"170641","jimmym321","230750","MoreGutzThanGlory","methadone","126"
"6201","SkUnKaDeLiC","230750","MoreGutzThanGlory","clonazepam","126"
"2271","polloloco001 ","3732","Diphenhydramine","mdma","126"
"2271","polloloco001 ","2709","risexagainst","mdma","126"
"2271","polloloco001 ","11411","supremedan","mdma","126"
"17829","LookingForHer","18724","AirO","dxm","126"
"45599","On The Nod","46865","dyingtomorrow","suboxone","126"
"118772","Mr_Spiffy","230750","MoreGutzThanGlory","methadone","126"
"194301","rosielee","230750","MoreGutzThanGlory","methadone","126"
"46446","EyesOfTheWorld","230750","MoreGutzThanGlory","methadone","126"
"9019","Forthesevenlakes","45599","On The Nod","suboxone","126"
"2271","polloloco001 ","35486","NeuroChi","mdma","126"
"2271","polloloco001 ","180313","out_there","mdma","126"
"657","distilla_truant","17829","LookingForHer","dxm","126"
"45618","cannabis-sam","230750","MoreGutzThanGlory","methadone","126"
"2271","polloloco001 ","46865","dyingtomorrow","mdma","126"
"81101","source","230750","MoreGutzThanGlory","methadone","126"
"17829","LookingForHer","75764","lololsolid","dxm","126"
"35486","NeuroChi","45599","On The Nod","suboxone","126"
"6201","SkUnKaDeLiC","230750","MoreGutzThanGlory","methadone","126"
"45599","On The Nod","230750","MoreGutzThanGlory","methadone","126"
"16489","baron samedi","230750","MoreGutzThanGlory","methadone","126"
"46865","dyingtomorrow","230750","MoreGutzThanGlory","methadone","126"
"1868","Paderas","2271","polloloco001 ","mdma","126"
"58307","missparkles ","230750","MoreGutzThanGlory","methadone","126"
"2539","Beltane","230750","MoreGutzThanGlory","clonazepam","126"
"2271","polloloco001 ","45618","cannabis-sam","mdma","126"
"2271","polloloco001 ","6482","psychedelaholic","mdma","126"
"17829","LookingForHer","161625","mrcowman","dxm","126"
"230750","MoreGutzThanGlory","273791","Roaddoggy","methadone","126"
"5733","Jatelka ","230750","MoreGutzThanGlory","clonazepam","126"
"16345","IkBenDeMan","230750","MoreGutzThanGlory","methadone","126"
"2271","polloloco001 ","59051","Priapism9","mdma","126"
"2271","polloloco001 ","2281","billyloner ","mdma","126"
"17829","LookingForHer","180313","out_there","dxm","126"
"2418","Phungushead","230750","MoreGutzThanGlory","clonazepam","126"
"2271","polloloco001 ","96636","Mersann","mdma","126"
"313","RoboCop ","17829","LookingForHer","dxm","126"
"1281","mmk271","230750","MoreGutzThanGlory","methadone","126"
"8671","Richard_smoker","17829","LookingForHer","dxm","126"
"37097","jok3r","230750","MoreGutzThanGlory","benadryl","126"
"63028","Smirnoff","230750","MoreGutzThanGlory","clonazepam","126"
"2271","polloloco001 ","54108","Alexander_Praves","mdma","126"
"9","Freedom of Mind","230750","MoreGutzThanGlory","clonazepam","126"
"17829","LookingForHer","28015","riaahacker","dxm","126"
"1","Alfa","2271","polloloco001 ","mdma","126"
"3299","anabolictrio","45599","On The Nod","suboxone","126"
"2271","polloloco001 ","124017","LoveNwar","mdma","126"
"180313","out_there","230750","MoreGutzThanGlory","clonazepam","126"
"788","mdve2","2271","polloloco001 ","mdma","126"
"56","Hollywood ","230750","MoreGutzThanGlory","clonazepam","126"
"11877","howlongisthenight","230750","MoreGutzThanGlory","benadryl","126"
"2271","polloloco001 ","127014","MikePatton","mdma","126"
"2271","polloloco001 ","15832","JapanHorrorUncut","mdma","126"
"2418","Phungushead","17829","LookingForHer","dxm","126"
"1842","nymphetamine","230750","MoreGutzThanGlory","methadone","126"
"17829","LookingForHer","45258","motter28218","dxm","126"
"45599","On The Nod","102420","spicybrainsgirl","suboxone","126"
"127014","MikePatton","230750","MoreGutzThanGlory","methadone","126"
"2271","polloloco001 ","4910","Fantasian","mdma","126"
"2271","polloloco001 ","7946","788.4","mdma","126"
"17829","LookingForHer","21315","Graduisic","dxm","126"
"45599","On The Nod","90006","Ghetto_Chem","suboxone","126"
"1595","Curtains","2271","polloloco001 ","mdma","126"
"1915","curve","2271","polloloco001 ","mdma","126"
"2271","polloloco001 ","63028","Smirnoff","mdma","126"
"2271","polloloco001 ","15564","Le Junk","mdma","126"
"102420","spicybrainsgirl","230750","MoreGutzThanGlory","methadone","126"
"17829","LookingForHer","44584","Rightnow289","dxm","126"
"45599","On The Nod","115136","trdofbeingtrd","suboxone","126"
"1595","Curtains","230750","MoreGutzThanGlory","methadone","126"
"2418","Phungushead","230750","MoreGutzThanGlory","methadone","126"
"1842","nymphetamine","2271","polloloco001 ","mdma","126"
"18965","beentheredonethatagain","230750","MoreGutzThanGlory","methadone","126"
"2271","polloloco001 ","2610","brainwaxd","mdma","126"
"2271","polloloco001 ","4218","TheLight01","mdma","126"
"2271","polloloco001 ","32247","Lettish","mdma","126"
"56","Hollywood ","2271","polloloco001 ","mdma","126"
"17829","LookingForHer","98407","phenythylamine","dxm","126"
"3565","amd6568","17829","LookingForHer","dxm","126"
"28015","riaahacker","230750","MoreGutzThanGlory","methadone","126"
"115136","trdofbeingtrd","230750","MoreGutzThanGlory","methadone","126"
"2271","polloloco001 ","2418","Phungushead","mdma","126"
"2271","polloloco001 ","10467","WrtngCocaineTutorial","mdma","126"
"2271","polloloco001 ","79297","bostonnew","mdma","126"
"17829","LookingForHer","156304","PillMan","dxm","126"
"539","stndguy","2271","polloloco001 ","mdma","126"
"35486","NeuroChi","230750","MoreGutzThanGlory","methadone","126"
"28899","Esmerelda","230750","MoreGutzThanGlory","methadone","126"
"62096","Cooki ","181260","Kitts","methadone","125"
"1329","khonsu13","16345","IkBenDeMan","morphine","125"
"1842","nymphetamine","16345","IkBenDeMan","hydrocodone","125"
"16345","IkBenDeMan","309595","gbread","loperamide","125"
"1281","mmk271","62096","Cooki ","methadone","125"
"56","Hollywood ","16345","IkBenDeMan","hydrocodone","125"
"90006","Ghetto_Chem","119102","roastlamb123","mdma","125"
"96636","Mersann","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","156304","PillMan","morphine","125"
"62096","Cooki ","194301","rosielee","methadone","125"
"45583","Synesthesiac","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","207202","Nefret","loperamide","125"
"1","Alfa","119102","roastlamb123","mdma","125"
"5010","snapper ","16345","IkBenDeMan","morphine","125"
"788","mdve2","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","102420","spicybrainsgirl","morphine","125"
"62096","Cooki ","127014","MikePatton","methadone","125"
"4910","Fantasian","16345","IkBenDeMan","morphine","125"
"35486","NeuroChi","119102","roastlamb123","mdma","125"
"1868","Paderas","16345","IkBenDeMan","morphine","125"
"3299","anabolictrio","16345","IkBenDeMan","hydrocodone","125"
"16345","IkBenDeMan","294051","Jungledog","loperamide","125"
"56","Hollywood ","16345","IkBenDeMan","morphine","125"
"1842","nymphetamine","16345","IkBenDeMan","morphine","125"
"7946","788.4","16345","IkBenDeMan","morphine","125"
"1842","nymphetamine","62096","Cooki ","methadone","125"
"9","Freedom of Mind","16345","IkBenDeMan","morphine","125"
"16345","IkBenDeMan","18769","samuraigecko","morphine","125"
"4910","Fantasian","119102","roastlamb123","mdma","125"
"62096","Cooki ","115136","trdofbeingtrd","methadone","125"
"3345","Unsolved","119102","roastlamb123","mdma","125"
"3732","Diphenhydramine","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","180313","out_there","morphine","125"
"1595","Curtains","119102","roastlamb123","mdma","125"
"19028","RochiWizz","119102","roastlamb123","mdma","125"
"1915","curve","119102","roastlamb123","mdma","125"
"62096","Cooki ","230750","MoreGutzThanGlory","methadone","125"
"57101","Terrapinzflyer ","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","45599","On The Nod","morphine","125"
"1595","Curtains","62096","Cooki ","methadone","125"
"15564","Le Junk","119102","roastlamb123","mdma","125"
"2418","Phungushead","62096","Cooki ","methadone","125"
"46865","dyingtomorrow","119102","roastlamb123","mdma","125"
"1842","nymphetamine","119102","roastlamb123","mdma","125"
"2610","brainwaxd","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","180932","gal68","hydrocodone","125"
"18965","beentheredonethatagain","62096","Cooki ","methadone","125"
"3299","anabolictrio","16345","IkBenDeMan","morphine","125"
"62096","Cooki ","170641","jimmym321","methadone","125"
"56","Hollywood ","119102","roastlamb123","mdma","125"
"7303","pankreeas ","16345","IkBenDeMan","morphine","125"
"16345","IkBenDeMan","28015","riaahacker","morphine","125"
"1","Alfa","16345","IkBenDeMan","morphine","125"
"6482","psychedelaholic","119102","roastlamb123","mdma","125"
"119102","roastlamb123","180313","out_there","mdma","125"
"16345","IkBenDeMan","164373","mar1ne","hydrocodone","125"
"28015","riaahacker","62096","Cooki ","methadone","125"
"539","stndguy","119102","roastlamb123","mdma","125"
"62096","Cooki ","273791","Roaddoggy","methadone","125"
"16345","IkBenDeMan","35486","NeuroChi","morphine","125"
"35486","NeuroChi","62096","Cooki ","methadone","125"
"54214","Zoidberg","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","45618","cannabis-sam","hydrocodone","125"
"4218","TheLight01","119102","roastlamb123","mdma","125"
"28899","Esmerelda","62096","Cooki ","methadone","125"
"62096","Cooki ","118772","Mr_Spiffy","methadone","125"
"5750","pharmapsyche","119102","roastlamb123","mdma","125"
"32247","Lettish","119102","roastlamb123","mdma","125"
"4910","Fantasian","62096","Cooki ","methadone","125"
"16345","IkBenDeMan","57024","textosteron","loperamide","125"
"1753","kailey_elise ","62096","Cooki ","methadone","125"
"45618","cannabis-sam","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","35486","NeuroChi","hydrocodone","125"
"62096","Cooki ","100767","missinglfe","methadone","125"
"54108","Alexander_Praves","119102","roastlamb123","mdma","125"
"2709","risexagainst","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","263706","Ellen042","loperamide","125"
"2239","skilld","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","179359","uberhigh","morphine","125"
"10467","WrtngCocaineTutorial","119102","roastlamb123","mdma","125"
"62096","Cooki ","102824","natey7","methadone","125"
"16345","IkBenDeMan","273791","Roaddoggy","loperamide","125"
"7946","788.4","62096","Cooki ","methadone","125"
"11411","supremedan","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","19028","RochiWizz","morphine","125"
"62096","Cooki ","63028","Smirnoff","methadone","125"
"1806","betty_bupe","119102","roastlamb123","mdma","125"
"62","BA","119102","roastlamb123","mdma","125"
"63028","Smirnoff","119102","roastlamb123","mdma","125"
"75","Leo.","119102","roastlamb123","mdma","125"
"1562","soer","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","28899","Esmerelda","morphine","125"
"15832","JapanHorrorUncut","119102","roastlamb123","mdma","125"
"62096","Cooki ","202594","headfull0fstars","methadone","125"
"9","Freedom of Mind","16345","IkBenDeMan","hydrocodone","125"
"16700","beena","62096","Cooki ","methadone","125"
"27864","G_nome","62096","Cooki ","methadone","125"
"4495","vhalin","16345","IkBenDeMan","hydrocodone","125"
"4495","vhalin","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","118772","Mr_Spiffy","morphine","125"
"2281","billyloner ","119102","roastlamb123","mdma","125"
"79297","bostonnew","119102","roastlamb123","mdma","125"
"62096","Cooki ","102420","spicybrainsgirl","methadone","125"
"2418","Phungushead","119102","roastlamb123","mdma","125"
"2271","polloloco001 ","119102","roastlamb123","mdma","125"
"59051","Priapism9","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","63028","Smirnoff","morphine","125"
"119102","roastlamb123","124017","LoveNwar","mdma","125"
"46446","EyesOfTheWorld","62096","Cooki ","methadone","125"
"16345","IkBenDeMan","118772","Mr_Spiffy","hydrocodone","125"
"45618","cannabis-sam","62096","Cooki ","methadone","125"
"62096","Cooki ","79947","TheBigBadWolf","methadone","125"
"4495","vhalin","16345","IkBenDeMan","morphine","125"
"2418","Phungushead","16345","IkBenDeMan","morphine","125"
"83387","PrincessJo x","119102","roastlamb123","mdma","125"
"6201","SkUnKaDeLiC","62096","Cooki ","methadone","125"
"16345","IkBenDeMan","46865","dyingtomorrow","morphine","125"
"45599","On The Nod","62096","Cooki ","methadone","125"
"16489","baron samedi","62096","Cooki ","methadone","125"
"119102","roastlamb123","127014","MikePatton","mdma","125"
"16345","IkBenDeMan","156304","PillMan","hydrocodone","125"
"46865","dyingtomorrow","62096","Cooki ","methadone","125"
"1868","Paderas","119102","roastlamb123","mdma","125"
"58307","missparkles ","62096","Cooki ","methadone","125"
"62096","Cooki ","81101","source","methadone","125"
"11411","supremedan","16345","IkBenDeMan","morphine","125"
"7303","pankreeas ","119102","roastlamb123","mdma","125"
"7946","788.4","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","28015","riaahacker","hydrocodone","125"
"6052","KomodoMK","119102","roastlamb123","mdma","125"
"16345","IkBenDeMan","62096","Cooki ","methadone","125"
"201049","ak2Ut","211963","WoodyCA","suboxone","124"
"90006","Ghetto_Chem","201049","ak2Ut","suboxone","124"
"313","RoboCop ","127711","Zhekarius","dxm","124"
"103726","seaturtle","117995","dreamy","kratom","124"
"4495","vhalin","111239","whocaresdude91","tramadol","124"
"8671","Richard_smoker","127711","Zhekarius","dxm","124"
"1684","CABS205","4910","Fantasian","codeine","124"
"63028","Smirnoff","111239","whocaresdude91","tramadol","124"
"1","Alfa","16320","psycholic","peyote","124"
"46865","dyingtomorrow","117995","dreamy","kratom","124"
"10410","DXMBunny","117995","dreamy","kratom","124"
"28015","riaahacker","110776","PowerfulMedicine","dextromethorphan","124"
"4910","Fantasian","40282","Razorbladekiss","codeine","124"
"45618","cannabis-sam","201049","ak2Ut","tramadol","124"
"3299","anabolictrio","201049","ak2Ut","suboxone","124"
"2763","bogumil","117995","dreamy","kratom","124"
"117995","dreamy","275604","snowdrop","kratom","124"
"91040","Dankfish","117995","dreamy","kratom","124"
"1526","Cuberun ","48119","Jasim ","phenazepam","124"
"1","Alfa","111239","whocaresdude91","tramadol","124"
"3375","MrJim","4910","Fantasian","codeine","124"
"4910","Fantasian","7946","788.4","codeine","124"
"2418","Phungushead","127711","Zhekarius","dxm","124"
"117995","dreamy","275468","Openmymind","kratom","124"
"17829","LookingForHer","127711","Zhekarius","dxm","124"
"111239","whocaresdude91","201049","ak2Ut","tramadol","124"
"657","distilla_truant","110776","PowerfulMedicine","dextromethorphan","124"
"135","sands of time","117995","dreamy","kratom","124"
"20234","ianzombie ","117995","dreamy","kratom","124"
"1526","Cuberun ","14677","splish6","phenazepam","124"
"4910","Fantasian","28899","Esmerelda","codeine","124"
"38632","PilL FreaK","201049","ak2Ut","tramadol","124"
"115136","trdofbeingtrd","201049","ak2Ut","suboxone","124"
"117995","dreamy","155253","MachoManSavage","kratom","124"
"2418","Phungushead","201049","ak2Ut","tramadol","124"
"111239","whocaresdude91","180313","out_there","tramadol","124"
"1526","Cuberun ","6201","SkUnKaDeLiC","phenazepam","124"
"4910","Fantasian","118772","Mr_Spiffy","codeine","124"
"74033","TheSweetPea","117995","dreamy","kratom","124"
"75764","lololsolid","127711","Zhekarius","dxm","124"
"1964","enquirewithin ","117995","dreamy","kratom","124"
"117995","dreamy","157358","CrispCold","kratom","124"
"156304","PillMan","201049","ak2Ut","tramadol","124"
"111239","whocaresdude91","127014","MikePatton","tramadol","124"
"1842","nymphetamine","111239","whocaresdude91","tramadol","124"
"21315","Graduisic","127711","Zhekarius","dxm","124"
"4910","Fantasian","45599","On The Nod","codeine","124"
"595","globalloon","110776","PowerfulMedicine","dextromethorphan","124"
"127711","Zhekarius","156304","PillMan","dxm","124"
"3413","radiometer ","117995","dreamy","kratom","124"
"117995","dreamy","273791","Roaddoggy","kratom","124"
"56","Hollywood ","201049","ak2Ut","tramadol","124"
"4495","vhalin","4910","Fantasian","codeine","124"
"110776","PowerfulMedicine","127711","Zhekarius","dxm","124"
"3565","amd6568","127711","Zhekarius","dxm","124"
"4910","Fantasian","63028","Smirnoff","codeine","124"
"35486","NeuroChi","201049","ak2Ut","tramadol","124"
"41143","RoboCodeine7610","201049","ak2Ut","tramadol","124"
"127711","Zhekarius","180313","out_there","dxm","124"
"45258","motter28218","127711","Zhekarius","dxm","124"
"127014","MikePatton","201049","ak2Ut","tramadol","124"
"117995","dreamy","294051","Jungledog","kratom","124"
"180313","out_there","201049","ak2Ut","tramadol","124"
"28015","riaahacker","111239","whocaresdude91","tramadol","124"
"56","Hollywood ","4910","Fantasian","codeine","124"
"4910","Fantasian","35486","NeuroChi","codeine","124"
"96636","Mersann","201049","ak2Ut","tramadol","124"
"40911","rawbeer","117995","dreamy","kratom","124"
"18724","AirO","127711","Zhekarius","dxm","124"
"740","Endologik","1526","Cuberun ","phenazepam","124"
"9","Freedom of Mind","201049","ak2Ut","tramadol","124"
"1","Alfa","117995","dreamy","kratom","124"
"28015","riaahacker","127711","Zhekarius","dxm","124"
"1","Alfa","40688","69Ron","peyote","124"
"3565","amd6568","110776","PowerfulMedicine","dextromethorphan","124"
"102420","spicybrainsgirl","201049","ak2Ut","suboxone","124"
"3780","Kradle","127711","Zhekarius","dxm","124"
"45618","cannabis-sam","111239","whocaresdude91","tramadol","124"
"9","Freedom of Mind","110776","PowerfulMedicine","dextromethorphan","124"
"4495","vhalin","201049","ak2Ut","tramadol","124"
"63028","Smirnoff","201049","ak2Ut","tramadol","124"
"1","Alfa","54108","Alexander_Praves","peyote","124"
"8671","Richard_smoker","110776","PowerfulMedicine","dextromethorphan","124"
"1526","Cuberun ","11411","supremedan","phenazepam","124"
"4910","Fantasian","15232","Tortoise","codeine","124"
"1842","nymphetamine","4910","Fantasian","codeine","124"
"1842","nymphetamine","117995","dreamy","kratom","124"
"46889","port 21","110776","PowerfulMedicine","dextromethorphan","124"
"117995","dreamy","234642","SuperCaesarKratomSalad","kratom","124"
"2418","Phungushead","117995","dreamy","kratom","124"
"45599","On The Nod","201049","ak2Ut","suboxone","124"
"1526","Cuberun ","4495","vhalin","phenazepam","124"
"1","Alfa","201049","ak2Ut","tramadol","124"
"44584","Rightnow289","127711","Zhekarius","dxm","124"
"4910","Fantasian","83387","PrincessJo x","codeine","124"
"38632","PilL FreaK","111239","whocaresdude91","tramadol","124"
"118772","Mr_Spiffy","201049","ak2Ut","suboxone","124"
"9","Freedom of Mind","127711","Zhekarius","dxm","124"
"117995","dreamy","156304","PillMan","kratom","124"
"2418","Phungushead","111239","whocaresdude91","tramadol","124"
"111239","whocaresdude91","256377","detoxin momma","tramadol","124"
"1526","Cuberun ","63028","Smirnoff","phenazepam","124"
"4910","Fantasian","180313","out_there","codeine","124"
"117995","dreamy","118772","Mr_Spiffy","kratom","124"
"111239","whocaresdude91","156304","PillMan","tramadol","124"
"98407","phenythylamine","127711","Zhekarius","dxm","124"
"115136","trdofbeingtrd","117995","dreamy","kratom","124"
"102420","spicybrainsgirl","117995","dreamy","kratom","124"
"46889","port 21","127711","Zhekarius","dxm","124"
"1526","Cuberun ","1842","nymphetamine","phenazepam","124"
"4910","Fantasian","100767","missinglfe","codeine","124"
"13344","drewcil","117995","dreamy","kratom","124"
"117995","dreamy","127014","MikePatton","kratom","124"
"56","Hollywood ","111239","whocaresdude91","tramadol","124"
"1842","nymphetamine","201049","ak2Ut","tramadol","124"
"4910","Fantasian","61180","Helene ","codeine","124"
"9","Freedom of Mind","4910","Fantasian","codeine","124"
"35486","NeuroChi","111239","whocaresdude91","tramadol","124"
"46446","EyesOfTheWorld","201049","ak2Ut","suboxone","124"
"9019","Forthesevenlakes","201049","ak2Ut","suboxone","124"
"41143","RoboCodeine7610","111239","whocaresdude91","tramadol","124"
"127711","Zhekarius","161625","mrcowman","dxm","124"
"657","distilla_truant","127711","Zhekarius","dxm","124"
"28015","riaahacker","117995","dreamy","kratom","124"
"46865","dyingtomorrow","201049","ak2Ut","suboxone","124"
"117995","dreamy","273439","marathonmel7","kratom","124"
"35486","NeuroChi","201049","ak2Ut","suboxone","124"
"1239","Nicaine","117995","dreamy","kratom","124"
"4495","vhalin","117995","dreamy","kratom","124"
"116985","Chug Chug Chug","127711","Zhekarius","dxm","124"
"4910","Fantasian","28015","riaahacker","codeine","124"
"96636","Mersann","111239","whocaresdude91","tramadol","124"
"127711","Zhekarius","202594","headfull0fstars","dxm","124"
"201049","ak2Ut","256377","detoxin momma","tramadol","124"
"1023","btoddw2","4910","Fantasian","codeine","124"
"90006","Ghetto_Chem","117995","dreamy","kratom","124"
"35486","NeuroChi","117995","dreamy","kratom","124"
"9","Freedom of Mind","111239","whocaresdude91","tramadol","124"
"28015","riaahacker","201049","ak2Ut","tramadol","124"
"1","Alfa","8569","johnnyvoid","peyote","124"
"2577","Stingray_313 ","35486","NeuroChi","mdma","123"
"2577","Stingray_313 ","2709","risexagainst","mdma","123"
"2239","skilld","2577","Stingray_313 ","mdma","123"
"9","Freedom of Mind","313","RoboCop ","dextromethorphan","123"
"2577","Stingray_313 ","32247","Lettish","mdma","123"
"1475","i like wimmins","96636","Mersann","ethylphenidate","123"
"2577","Stingray_313 ","180313","out_there","mdma","123"
"212335","Calyspical","275604","snowdrop","kratom","123"
"1842","nymphetamine","212335","Calyspical","kratom","123"
"7946","788.4","198055","yem69420","methadone","123"
"2577","Stingray_313 ","79297","bostonnew","mdma","123"
"2418","Phungushead","212335","Calyspical","kratom","123"
"1475","i like wimmins","46865","dyingtomorrow","ethylphenidate","123"
"2577","Stingray_313 ","45618","cannabis-sam","mdma","123"
"157358","CrispCold","212335","Calyspical","kratom","123"
"1806","betty_bupe","2577","Stingray_313 ","mdma","123"
"212335","Calyspical","275468","Openmymind","kratom","123"
"62","BA","2577","Stingray_313 ","mdma","123"
"2577","Stingray_313 ","83387","PrincessJo x","mdma","123"
"75","Leo.","2577","Stingray_313 ","mdma","123"
"313","RoboCop ","595","globalloon","dextromethorphan","123"
"1562","soer","2577","Stingray_313 ","mdma","123"
"1475","i like wimmins","38015","davestate ","ethylphenidate","123"
"2577","Stingray_313 ","59051","Priapism9","mdma","123"
"127014","MikePatton","198055","yem69420","methadone","123"
"16700","beena","198055","yem69420","methadone","123"
"27864","G_nome","198055","yem69420","methadone","123"
"212335","Calyspical","273439","marathonmel7","kratom","123"
"2577","Stingray_313 ","96636","Mersann","mdma","123"
"313","RoboCop ","46889","port 21","dextromethorphan","123"
"2281","billyloner ","2577","Stingray_313 ","mdma","123"
"115136","trdofbeingtrd","212335","Calyspical","kratom","123"
"102420","spicybrainsgirl","212335","Calyspical","kratom","123"
"2577","Stingray_313 ","54108","Alexander_Praves","mdma","123"
"13344","drewcil","212335","Calyspical","kratom","123"
"2418","Phungushead","2577","Stingray_313 ","mdma","123"
"102420","spicybrainsgirl","198055","yem69420","methadone","123"
"2271","polloloco001 ","2577","Stingray_313 ","mdma","123"
"2577","Stingray_313 ","124017","LoveNwar","mdma","123"
"313","RoboCop ","657","distilla_truant","dextromethorphan","123"
"2577","Stingray_313 ","127014","MikePatton","mdma","123"
"46446","EyesOfTheWorld","198055","yem69420","methadone","123"
"2577","Stingray_313 ","4910","Fantasian","mdma","123"
"45618","cannabis-sam","198055","yem69420","methadone","123"
"28015","riaahacker","212335","Calyspical","kratom","123"
"2577","Stingray_313 ","15832","JapanHorrorUncut","mdma","123"
"6201","SkUnKaDeLiC","198055","yem69420","methadone","123"
"45599","On The Nod","198055","yem69420","methadone","123"
"16489","baron samedi","198055","yem69420","methadone","123"
"1239","Nicaine","212335","Calyspical","kratom","123"
"4495","vhalin","212335","Calyspical","kratom","123"
"198055","yem69420","230750","MoreGutzThanGlory","methadone","123"
"115136","trdofbeingtrd","198055","yem69420","methadone","123"
"46865","dyingtomorrow","198055","yem69420","methadone","123"
"1868","Paderas","2577","Stingray_313 ","mdma","123"
"58307","missparkles ","198055","yem69420","methadone","123"
"2577","Stingray_313 ","63028","Smirnoff","mdma","123"
"2577","Stingray_313 ","7946","788.4","mdma","123"
"90006","Ghetto_Chem","212335","Calyspical","kratom","123"
"35486","NeuroChi","212335","Calyspical","kratom","123"
"198055","yem69420","202594","headfull0fstars","methadone","123"
"16345","IkBenDeMan","198055","yem69420","methadone","123"
"2577","Stingray_313 ","2610","brainwaxd","mdma","123"
"2577","Stingray_313 ","15564","Le Junk","mdma","123"
"103726","seaturtle","212335","Calyspical","kratom","123"
"2577","Stingray_313 ","11411","supremedan","mdma","123"
"1281","mmk271","198055","yem69420","methadone","123"
"2577","Stingray_313 ","4218","TheLight01","mdma","123"
"181260","Kitts","198055","yem69420","methadone","123"
"46865","dyingtomorrow","212335","Calyspical","kratom","123"
"127014","MikePatton","212335","Calyspical","kratom","123"
"63028","Smirnoff","198055","yem69420","methadone","123"
"10410","DXMBunny","212335","Calyspical","kratom","123"
"1","Alfa","2577","Stingray_313 ","mdma","123"
"2577","Stingray_313 ","46865","dyingtomorrow","mdma","123"
"2763","bogumil","212335","Calyspical","kratom","123"
"117995","dreamy","212335","Calyspical","kratom","123"
"788","mdve2","2577","Stingray_313 ","mdma","123"
"79947","TheBigBadWolf","198055","yem69420","methadone","123"
"1475","i like wimmins","2627","NoWorldOrder","ethylphenidate","123"
"2577","Stingray_313 ","10467","WrtngCocaineTutorial","mdma","123"
"91040","Dankfish","212335","Calyspical","kratom","123"
"212335","Calyspical","234642","SuperCaesarKratomSalad","kratom","123"
"2577","Stingray_313 ","6482","psychedelaholic","mdma","123"
"1842","nymphetamine","198055","yem69420","methadone","123"
"313","RoboCop ","110776","PowerfulMedicine","dextromethorphan","123"
"135","sands of time","212335","Calyspical","kratom","123"
"1475","i like wimmins","93684","Synaps","ethylphenidate","123"
"2577","Stingray_313 ","6052","KomodoMK","mdma","123"
"156304","PillMan","212335","Calyspical","kratom","123"
"20234","ianzombie ","212335","Calyspical","kratom","123"
"212335","Calyspical","273791","Roaddoggy","kratom","123"
"100767","missinglfe","198055","yem69420","methadone","123"
"2577","Stingray_313 ","45583","Synesthesiac","mdma","123"
"313","RoboCop ","3565","amd6568","dextromethorphan","123"
"102824","natey7","198055","yem69420","methadone","123"
"118772","Mr_Spiffy","212335","Calyspical","kratom","123"
"1595","Curtains","2577","Stingray_313 ","mdma","123"
"2577","Stingray_313 ","3345","Unsolved","mdma","123"
"155253","MachoManSavage","212335","Calyspical","kratom","123"
"1915","curve","2577","Stingray_313 ","mdma","123"
"212335","Calyspical","294051","Jungledog","kratom","123"
"74033","TheSweetPea","212335","Calyspical","kratom","123"
"1964","enquirewithin ","212335","Calyspical","kratom","123"
"1475","i like wimmins","1842","nymphetamine","ethylphenidate","123"
"62096","Cooki ","198055","yem69420","methadone","123"
"2577","Stingray_313 ","54214","Zoidberg","mdma","123"
"313","RoboCop ","8671","Richard_smoker","dextromethorphan","123"
"1595","Curtains","198055","yem69420","methadone","123"
"2418","Phungushead","198055","yem69420","methadone","123"
"2577","Stingray_313 ","7303","pankreeas ","mdma","123"
"170641","jimmym321","198055","yem69420","methadone","123"
"1842","nymphetamine","2577","Stingray_313 ","mdma","123"
"18965","beentheredonethatagain","198055","yem69420","methadone","123"
"2577","Stingray_313 ","4495","vhalin","mdma","123"
"2577","Stingray_313 ","5750","pharmapsyche","mdma","123"
"56","Hollywood ","2577","Stingray_313 ","mdma","123"
"3413","radiometer ","212335","Calyspical","kratom","123"
"313","RoboCop ","28015","riaahacker","dextromethorphan","123"
"313","RoboCop ","1475","i like wimmins","ethylphenidate","123"
"118772","Mr_Spiffy","198055","yem69420","methadone","123"
"194301","rosielee","198055","yem69420","methadone","123"
"28015","riaahacker","198055","yem69420","methadone","123"
"539","stndguy","2577","Stingray_313 ","mdma","123"
"2577","Stingray_313 ","57101","Terrapinzflyer ","mdma","123"
"2577","Stingray_313 ","19028","RochiWizz","mdma","123"
"81101","source","198055","yem69420","methadone","123"
"35486","NeuroChi","198055","yem69420","methadone","123"
"198055","yem69420","273791","Roaddoggy","methadone","123"
"28899","Esmerelda","198055","yem69420","methadone","123"
"2577","Stingray_313 ","3732","Diphenhydramine","mdma","123"
"2577","Stingray_313 ","90006","Ghetto_Chem","mdma","123"
"40911","rawbeer","212335","Calyspical","kratom","123"
"4910","Fantasian","198055","yem69420","methadone","123"
"1753","kailey_elise ","198055","yem69420","methadone","123"
"2577","Stingray_313 ","119102","roastlamb123","mdma","123"
"1","Alfa","212335","Calyspical","kratom","123"
"1842","nymphetamine","74620","methuselah969","mephedrone","122"
"2167","hard2core","28015","riaahacker","dextromethorphan","122"
"54108","Alexander_Praves","57031","rhcpeppers1234","mdma","122"
"2709","risexagainst","57031","rhcpeppers1234","mdma","122"
"1842","nymphetamine","57031","rhcpeppers1234","methylphenidate","122"
"1","Alfa","57031","rhcpeppers1234","mdma","122"
"57031","rhcpeppers1234","127014","MikePatton","mdma","122"
"2167","hard2core","161625","mrcowman","dxm","122"
"788","mdve2","57031","rhcpeppers1234","mdma","122"
"10467","WrtngCocaineTutorial","57031","rhcpeppers1234","mdma","122"
"1842","nymphetamine","57031","rhcpeppers1234","codeine","122"
"11411","supremedan","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","180313","out_there","dxm","122"
"313","RoboCop ","2167","hard2core","dextromethorphan","122"
"15232","Tortoise","57031","rhcpeppers1234","codeine","122"
"57031","rhcpeppers1234","63028","Smirnoff","mdma","122"
"1868","Paderas","74620","methuselah969","mephedrone","122"
"2167","hard2core","127711","Zhekarius","dxm","122"
"11411","supremedan","74620","methuselah969","mephedrone","122"
"2167","hard2core","202594","headfull0fstars","dxm","122"
"40282","Razorbladekiss","57031","rhcpeppers1234","codeine","122"
"9","Freedom of Mind","2167","hard2core","dxm","122"
"15832","JapanHorrorUncut","57031","rhcpeppers1234","mdma","122"
"45583","Synesthesiac","74620","methuselah969","mephedrone","122"
"1595","Curtains","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","3780","Kradle","dxm","122"
"1915","curve","57031","rhcpeppers1234","mdma","122"
"53567","buzzman","74620","methuselah969","mephedrone","122"
"4495","vhalin","74620","methuselah969","mephedrone","122"
"2167","hard2core","2418","Phungushead","dxm","122"
"62077","WTF O_o","74620","methuselah969","mephedrone","122"
"74620","methuselah969","124017","LoveNwar","mephedrone","122"
"4495","vhalin","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","116985","Chug Chug Chug","dxm","122"
"1842","nymphetamine","57031","rhcpeppers1234","mdma","122"
"56","Hollywood ","57031","rhcpeppers1234","mdma","122"
"19028","RochiWizz","57031","rhcpeppers1234","methylphenidate","122"
"45599","On The Nod","57031","rhcpeppers1234","codeine","122"
"57031","rhcpeppers1234","79297","bostonnew","mdma","122"
"2167","hard2core","110776","PowerfulMedicine","dxm","122"
"3471","Potassium Kid","74620","methuselah969","mephedrone","122"
"28015","riaahacker","74620","methuselah969","mephedrone","122"
"9","Freedom of Mind","57031","rhcpeppers1234","codeine","122"
"539","stndguy","57031","rhcpeppers1234","mdma","122"
"657","distilla_truant","2167","hard2core","dxm","122"
"8016","chillinwill","74620","methuselah969","mephedrone","122"
"5750","pharmapsyche","74620","methuselah969","mephedrone","122"
"57031","rhcpeppers1234","180313","out_there","codeine","122"
"57031","rhcpeppers1234","96636","Mersann","mdma","122"
"2167","hard2core","18724","AirO","dxm","122"
"2167","hard2core","3565","amd6568","dextromethorphan","122"
"1023","btoddw2","57031","rhcpeppers1234","codeine","122"
"4092","trptamene ","74620","methuselah969","mephedrone","122"
"57031","rhcpeppers1234","100767","missinglfe","codeine","122"
"57101","Terrapinzflyer ","74620","methuselah969","mephedrone","122"
"57031","rhcpeppers1234","90006","Ghetto_Chem","mdma","122"
"2167","hard2core","98407","phenythylamine","dxm","122"
"7946","788.4","57031","rhcpeppers1234","codeine","122"
"2577","Stingray_313 ","57031","rhcpeppers1234","mdma","122"
"7303","pankreeas ","57031","rhcpeppers1234","mdma","122"
"7946","788.4","57031","rhcpeppers1234","mdma","122"
"6052","KomodoMK","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","8671","Richard_smoker","dextromethorphan","122"
"62508","Makesmefeelbig","74620","methuselah969","mephedrone","122"
"57031","rhcpeppers1234","63028","Smirnoff","codeine","122"
"2239","skilld","57031","rhcpeppers1234","mdma","122"
"57031","rhcpeppers1234","59051","Priapism9","mdma","122"
"9","Freedom of Mind","2167","hard2core","dextromethorphan","122"
"313","RoboCop ","2167","hard2core","dxm","122"
"2167","hard2core","156304","PillMan","dxm","122"
"1684","CABS205","57031","rhcpeppers1234","codeine","122"
"45583","Synesthesiac","57031","rhcpeppers1234","mdma","122"
"153","blaze","74620","methuselah969","mephedrone","122"
"4910","Fantasian","57031","rhcpeppers1234","codeine","122"
"2167","hard2core","46889","port 21","dxm","122"
"57031","rhcpeppers1234","57101","Terrapinzflyer ","mdma","122"
"1806","betty_bupe","57031","rhcpeppers1234","mdma","122"
"20109","imyourlittlebare","74620","methuselah969","mephedrone","122"
"3375","MrJim","57031","rhcpeppers1234","codeine","122"
"62","BA","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","8671","Richard_smoker","dxm","122"
"75","Leo.","57031","rhcpeppers1234","mdma","122"
"1562","soer","57031","rhcpeppers1234","mdma","122"
"657","distilla_truant","2167","hard2core","dextromethorphan","122"
"4910","Fantasian","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","17829","LookingForHer","dxm","122"
"3345","Unsolved","57031","rhcpeppers1234","mdma","122"
"11411","supremedan","57031","rhcpeppers1234","methylphenidate","122"
"3732","Diphenhydramine","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","28015","riaahacker","dxm","122"
"1","Alfa","74620","methuselah969","mephedrone","122"
"2418","Phungushead","57031","rhcpeppers1234","methylphenidate","122"
"35486","NeuroChi","57031","rhcpeppers1234","codeine","122"
"57308","BoyInTheCountry","74620","methuselah969","mephedrone","122"
"2281","billyloner ","57031","rhcpeppers1234","mdma","122"
"19028","RochiWizz","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","45258","motter28218","dxm","122"
"2418","Phungushead","57031","rhcpeppers1234","mdma","122"
"2271","polloloco001 ","57031","rhcpeppers1234","mdma","122"
"74620","methuselah969","96636","Mersann","mephedrone","122"
"15564","Le Junk","57031","rhcpeppers1234","mdma","122"
"57031","rhcpeppers1234","119102","roastlamb123","mdma","122"
"46865","dyingtomorrow","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","21315","Graduisic","dxm","122"
"595","globalloon","2167","hard2core","dextromethorphan","122"
"2610","brainwaxd","57031","rhcpeppers1234","mdma","122"
"4495","vhalin","57031","rhcpeppers1234","codeine","122"
"57031","rhcpeppers1234","83387","PrincessJo x","codeine","122"
"57031","rhcpeppers1234","83387","PrincessJo x","mdma","122"
"6482","psychedelaholic","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","44584","Rightnow289","dxm","122"
"28899","Esmerelda","57031","rhcpeppers1234","codeine","122"
"28015","riaahacker","57031","rhcpeppers1234","codeine","122"
"1868","Paderas","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","110776","PowerfulMedicine","dextromethorphan","122"
"57031","rhcpeppers1234","118772","Mr_Spiffy","codeine","122"
"57031","rhcpeppers1234","124017","LoveNwar","mdma","122"
"56","Hollywood ","57031","rhcpeppers1234","codeine","122"
"2167","hard2core","3565","amd6568","dxm","122"
"54214","Zoidberg","57031","rhcpeppers1234","mdma","122"
"4218","TheLight01","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","46889","port 21","dextromethorphan","122"
"35486","NeuroChi","57031","rhcpeppers1234","mdma","122"
"5750","pharmapsyche","57031","rhcpeppers1234","mdma","122"
"46865","dyingtomorrow","57031","rhcpeppers1234","methylphenidate","122"
"32247","Lettish","57031","rhcpeppers1234","mdma","122"
"50050","Gradient","74620","methuselah969","mephedrone","122"
"1526","Cuberun ","74620","methuselah969","mephedrone","122"
"57031","rhcpeppers1234","61180","Helene ","codeine","122"
"57031","rhcpeppers1234","180313","out_there","mdma","122"
"1","Alfa","57031","rhcpeppers1234","methylphenidate","122"
"45618","cannabis-sam","57031","rhcpeppers1234","mdma","122"
"2167","hard2core","75764","lololsolid","dxm","122"
"60","Sick Jack","2709","risexagainst","mdma","121"
"422","1933","1842","nymphetamine","mdma","121"
"422","1933","96636","Mersann","mdma","121"
"3780","Kradle","11835","El Calico Loco","dxm","121"
"4490","DJ-666","45583","Synesthesiac","mdma","121"
"11835","El Calico Loco","21315","Graduisic","dxm","121"
"60","Sick Jack","539","stndguy","mdma","121"
"16987","darkglobe","227635","Jels","buprenorphine","121"
"60","Sick Jack","1915","curve","mdma","121"
"422","1933","59051","Priapism9","mdma","121"
"4490","DJ-666","127014","MikePatton","mdma","121"
"422","1933","4490","DJ-666","mdma","121"
"62","BA","4490","DJ-666","mdma","121"
"60","Sick Jack","4218","TheLight01","mdma","121"
"422","1933","2418","Phungushead","mdma","121"
"2418","Phungushead","16987","darkglobe","buprenorphine","121"
"1806","betty_bupe","4490","DJ-666","mdma","121"
"422","1933","124017","LoveNwar","mdma","121"
"4490","DJ-666","54214","Zoidberg","mdma","121"
"11835","El Calico Loco","44584","Rightnow289","dxm","121"
"9","Freedom of Mind","4490","DJ-666","temazepam","121"
"60","Sick Jack","1868","Paderas","mdma","121"
"60","Sick Jack","83387","PrincessJo x","mdma","121"
"422","1933","1595","Curtains","mdma","121"
"75","Leo.","4490","DJ-666","mdma","121"
"4490","DJ-666","4910","Fantasian","mdma","121"
"422","1933","2577","Stingray_313 ","mdma","121"
"1562","soer","4490","DJ-666","mdma","121"
"4490","DJ-666","7946","788.4","temazepam","121"
"60","Sick Jack","10467","WrtngCocaineTutorial","mdma","121"
"13765","Nacumen","124017","LoveNwar","diphenhydramine","121"
"3345","Unsolved","4490","DJ-666","mdma","121"
"422","1933","15832","JapanHorrorUncut","mdma","121"
"11877","howlongisthenight","13765","Nacumen","benadryl","121"
"3167","bubaloo","4490","DJ-666","temazepam","121"
"3732","Diphenhydramine","4490","DJ-666","mdma","121"
"4490","DJ-666","5750","pharmapsyche","mdma","121"
"11835","El Calico Loco","98407","phenythylamine","dxm","121"
"60","Sick Jack","1562","soer","mdma","121"
"4495","vhalin","57101","Terrapinzflyer ","psilocybin","121"
"60","Sick Jack","45583","Synesthesiac","mdma","121"
"422","1933","7303","pankreeas ","mdma","121"
"4490","DJ-666","63028","Smirnoff","mdma","121"
"422","1933","2271","polloloco001 ","mdma","121"
"1","Alfa","57101","Terrapinzflyer ","psilocybin","121"
"4490","DJ-666","6201","SkUnKaDeLiC","temazepam","121"
"2281","billyloner ","4490","DJ-666","mdma","121"
"60","Sick Jack","6052","KomodoMK","mdma","121"
"13765","Nacumen","127014","MikePatton","diphenhydramine","121"
"60","Sick Jack","4490","DJ-666","mdma","121"
"422","1933","7946","788.4","mdma","121"
"4490","DJ-666","19028","RochiWizz","mdma","121"
"11835","El Calico Loco","156304","PillMan","dxm","121"
"2418","Phungushead","4490","DJ-666","mdma","121"
"60","Sick Jack","54214","Zoidberg","mdma","121"
"2271","polloloco001 ","4490","DJ-666","mdma","121"
"56","Hollywood ","422","1933","mdma","121"
"422","1933","4495","vhalin","mdma","121"
"422","1933","32247","Lettish","mdma","121"
"9019","Forthesevenlakes","16987","darkglobe","buprenorphine","121"
"60","Sick Jack","1842","nymphetamine","mdma","121"
"60","Sick Jack","59051","Priapism9","mdma","121"
"13765","Nacumen","46865","dyingtomorrow","diphenhydramine","121"
"60","Sick Jack","2577","Stingray_313 ","mdma","121"
"422","1933","15564","Le Junk","mdma","121"
"4490","DJ-666","90006","Ghetto_Chem","mdma","121"
"2610","brainwaxd","4490","DJ-666","mdma","121"
"11835","El Calico Loco","46889","port 21","dxm","121"
"60","Sick Jack","5750","pharmapsyche","mdma","121"
"422","1933","57101","Terrapinzflyer ","mdma","121"
"422","1933","46865","dyingtomorrow","mdma","121"
"4490","DJ-666","119102","roastlamb123","mdma","121"
"60","Sick Jack","2418","Phungushead","mdma","121"
"60","Sick Jack","1595","Curtains","mdma","121"
"13765","Nacumen","37097","jok3r","benadryl","121"
"4969","kaide","57101","Terrapinzflyer ","psilocybin","121"
"60","Sick Jack","2271","polloloco001 ","mdma","121"
"422","1933","788","mdve2","mdma","121"
"4490","DJ-666","180313","out_there","mdma","121"
"11835","El Calico Loco","202594","headfull0fstars","dxm","121"
"1868","Paderas","4490","DJ-666","mdma","121"
"1842","nymphetamine","4490","DJ-666","temazepam","121"
"60","Sick Jack","19028","RochiWizz","mdma","121"
"422","1933","63028","Smirnoff","mdma","121"
"422","1933","1915","curve","mdma","121"
"4490","DJ-666","32247","Lettish","mdma","121"
"60","Sick Jack","7303","pankreeas ","mdma","121"
"13765","Nacumen","102420","spicybrainsgirl","benadryl","121"
"4969","kaide","13765","Nacumen","diphenhydramine","121"
"60","Sick Jack","32247","Lettish","mdma","121"
"422","1933","180313","out_there","mdma","121"
"4490","DJ-666","45618","cannabis-sam","mdma","121"
"4218","TheLight01","4490","DJ-666","mdma","121"
"60","Sick Jack","90006","Ghetto_Chem","mdma","121"
"422","1933","3732","Diphenhydramine","mdma","121"
"422","1933","83387","PrincessJo x","mdma","121"
"4490","DJ-666","79297","bostonnew","mdma","121"
"11835","El Calico Loco","17829","LookingForHer","dxm","121"
"1","Alfa","60","Sick Jack","mdma","121"
"60","Sick Jack","4495","vhalin","mdma","121"
"60","Sick Jack","46865","dyingtomorrow","mdma","121"
"422","1933","45618","cannabis-sam","mdma","121"
"4490","DJ-666","59051","Priapism9","mdma","121"
"60","Sick Jack","15564","Le Junk","mdma","121"
"422","1933","2610","brainwaxd","mdma","121"
"422","1933","45583","Synesthesiac","mdma","121"
"2709","risexagainst","4490","DJ-666","mdma","121"
"4490","DJ-666","83387","PrincessJo x","mdma","121"
"11835","El Calico Loco","116985","Chug Chug Chug","dxm","121"
"1","Alfa","4490","DJ-666","mdma","121"
"60","Sick Jack","57101","Terrapinzflyer ","mdma","121"
"16987","darkglobe","46865","dyingtomorrow","buprenorphine","121"
"60","Sick Jack","79297","bostonnew","mdma","121"
"422","1933","1806","betty_bupe","mdma","121"
"8671","Richard_smoker","11835","El Calico Loco","dxm","121"
"4490","DJ-666","7303","pankreeas ","mdma","121"
"788","mdve2","4490","DJ-666","mdma","121"
"4495","vhalin","13765","Nacumen","diphenhydramine","121"
"62","BA","422","1933","mdma","121"
"60","Sick Jack","788","mdve2","mdma","121"
"422","1933","35486","NeuroChi","mdma","121"
"422","1933","54214","Zoidberg","mdma","121"
"4490","DJ-666","96636","Mersann","mdma","121"
"11835","El Calico Loco","110776","PowerfulMedicine","dxm","121"
"60","Sick Jack","63028","Smirnoff","mdma","121"
"16987","darkglobe","35486","NeuroChi","buprenorphine","121"
"60","Sick Jack","6482","psychedelaholic","mdma","121"
"422","1933","3345","Unsolved","mdma","121"
"75","Leo.","422","1933","mdma","121"
"4490","DJ-666","4495","vhalin","mdma","121"
"422","1933","57031","rhcpeppers1234","mdma","121"
"60","Sick Jack","180313","out_there","mdma","121"
"2167","hard2core","11835","El Calico Loco","dxm","121"
"422","1933","5750","pharmapsyche","mdma","121"
"4490","DJ-666","124017","LoveNwar","mdma","121"
"11835","El Calico Loco","18724","AirO","dxm","121"
"60","Sick Jack","3732","Diphenhydramine","mdma","121"
"2418","Phungushead","11835","El Calico Loco","dxm","121"
"60","Sick Jack","2281","billyloner ","mdma","121"
"422","1933","54108","Alexander_Praves","mdma","121"
"9","Freedom of Mind","11835","El Calico Loco","dxm","121"
"4490","DJ-666","57101","Terrapinzflyer ","mdma","121"
"422","1933","119102","roastlamb123","mdma","121"
"4490","DJ-666","180313","out_there","temazepam","121"
"8569","johnnyvoid","13765","Nacumen","diphenhydramine","121"
"60","Sick Jack","45618","cannabis-sam","mdma","121"
"1595","Curtains","4490","DJ-666","mdma","121"
"1595","Curtains","57101","Terrapinzflyer ","psilocybin","121"
"13765","Nacumen","202594","headfull0fstars","diphenhydramine","121"
"1842","nymphetamine","13765","Nacumen","diphenhydramine","121"
"60","Sick Jack","422","1933","mdma","121"
"422","1933","19028","RochiWizz","mdma","121"
"4490","DJ-666","15832","JapanHorrorUncut","mdma","121"
"11835","El Calico Loco","75764","lololsolid","dxm","121"
"1915","curve","4490","DJ-666","mdma","121"
"60","Sick Jack","96636","Mersann","mdma","121"
"56","Hollywood ","60","Sick Jack","mdma","121"
"422","1933","127014","MikePatton","mdma","121"
"4490","DJ-666","35486","NeuroChi","mdma","121"
"422","1933","11411","supremedan","mdma","121"
"60","Sick Jack","2610","brainwaxd","mdma","121"
"1684","CABS205","13765","Nacumen","benadryl","121"
"60","Sick Jack","1806","betty_bupe","mdma","121"
"13765","Nacumen","63028","Smirnoff","diphenhydramine","121"
"60","Sick Jack","57031","rhcpeppers1234","mdma","121"
"422","1933","90006","Ghetto_Chem","mdma","121"
"1842","nymphetamine","4490","DJ-666","mdma","121"
"4490","DJ-666","7946","788.4","mdma","121"
"11835","El Calico Loco","161625","mrcowman","dxm","121"
"60","Sick Jack","124017","LoveNwar","mdma","121"
"56","Hollywood ","4490","DJ-666","mdma","121"
"422","1933","4910","Fantasian","mdma","121"
"3299","anabolictrio","16987","darkglobe","buprenorphine","121"
"422","1933","2239","skilld","mdma","121"
"1868","Paderas","57101","Terrapinzflyer ","psilocybin","121"
"4490","DJ-666","57031","rhcpeppers1234","mdma","121"
"60","Sick Jack","35486","NeuroChi","mdma","121"
"60","Sick Jack","3345","Unsolved","mdma","121"
"13765","Nacumen","230750","MoreGutzThanGlory","benadryl","121"
"60","Sick Jack","119102","roastlamb123","mdma","121"
"422","1933","2709","risexagainst","mdma","121"
"4490","DJ-666","15564","Le Junk","mdma","121"
"11835","El Calico Loco","180313","out_there","dxm","121"
"539","stndguy","4490","DJ-666","mdma","121"
"657","distilla_truant","11835","El Calico Loco","dxm","121"
"1684","CABS205","13765","Nacumen","diphenhydramine","121"
"60","Sick Jack","15832","JapanHorrorUncut","mdma","121"
"422","1933","539","stndguy","mdma","121"
"422","1933","79297","bostonnew","mdma","121"
"4490","DJ-666","11411","supremedan","mdma","121"
"7303","pankreeas ","13765","Nacumen","diphenhydramine","121"
"60","Sick Jack","54108","Alexander_Praves","mdma","121"
"13765","Nacumen","16987","darkglobe","benadryl","121"
"60","Sick Jack","11411","supremedan","mdma","121"
"3565","amd6568","11835","El Calico Loco","dxm","121"
"422","1933","4218","TheLight01","mdma","121"
"4490","DJ-666","10467","WrtngCocaineTutorial","mdma","121"
"11835","El Calico Loco","28015","riaahacker","dxm","121"
"60","Sick Jack","7946","788.4","mdma","121"
"422","1933","1868","Paderas","mdma","121"
"422","1933","6482","psychedelaholic","mdma","121"
"4490","DJ-666","46865","dyingtomorrow","mdma","121"
"11835","El Calico Loco","127711","Zhekarius","dxm","121"
"60","Sick Jack","127014","MikePatton","mdma","121"
"13189","augentier ","13765","Nacumen","diphenhydramine","121"
"60","Sick Jack","2239","skilld","mdma","121"
"2577","Stingray_313 ","4490","DJ-666","mdma","121"
"422","1933","10467","WrtngCocaineTutorial","mdma","121"
"1808","xxgaretjaxx","13765","Nacumen","diphenhydramine","121"
"4490","DJ-666","6052","KomodoMK","mdma","121"
"60","Sick Jack","62","BA","mdma","121"
"422","1933","1562","soer","mdma","121"
"539","stndguy","57101","Terrapinzflyer ","psilocybin","121"
"422","1933","2281","billyloner ","mdma","121"
"4490","DJ-666","6482","psychedelaholic","mdma","121"
"11835","El Calico Loco","45258","motter28218","dxm","121"
"1","Alfa","422","1933","mdma","121"
"2239","skilld","4490","DJ-666","mdma","121"
"60","Sick Jack","4910","Fantasian","mdma","121"
"16987","darkglobe","96636","Mersann","buprenorphine","121"
"313","RoboCop ","11835","El Calico Loco","dxm","121"
"60","Sick Jack","75","Leo.","mdma","121"
"422","1933","6052","KomodoMK","mdma","121"
"4490","DJ-666","54108","Alexander_Praves","mdma","121"
"2200","par excellence.","98407","phenythylamine","dxm","120"
"10663","fizzle","46865","dyingtomorrow","adderall","120"
"1684","CABS205","10891","Bajeda ","kava","120"
"1224","markdahman","28015","riaahacker","codeine","120"
"2200","par excellence.","156304","PillMan","dxm","120"
"2167","hard2core","2200","par excellence.","dxm","120"
"10663","fizzle","202594","headfull0fstars","adderall","120"
"1224","markdahman","4910","Fantasian","codeine","120"
"9","Freedom of Mind","2200","par excellence.","dxm","120"
"1224","markdahman","35486","NeuroChi","codeine","120"
"2200","par excellence.","46889","port 21","dxm","120"
"10663","fizzle","63028","Smirnoff","adderall","120"
"1","Alfa","10663","fizzle","adderall","120"
"1224","markdahman","15232","Tortoise","codeine","120"
"2200","par excellence.","11835","El Calico Loco","dxm","120"
"2200","par excellence.","8671","Richard_smoker","dxm","120"
"10663","fizzle","28015","riaahacker","adderall","120"
"9","Freedom of Mind","156304","PillMan","ghb","120"
"1224","markdahman","1684","CABS205","codeine","120"
"5750","pharmapsyche","10663","fizzle","adderall","120"
"2200","par excellence.","17829","LookingForHer","dxm","120"
"1842","nymphetamine","39479","thebige","fentanyl","120"
"3375","MrJim","39479","thebige","fentanyl","120"
"2200","par excellence.","28015","riaahacker","dxm","120"
"10663","fizzle","35486","NeuroChi","adderall","120"
"1224","markdahman","3375","MrJim","codeine","120"
"657","distilla_truant","2200","par excellence.","dxm","120"
"2200","par excellence.","45258","motter28218","dxm","120"
"10663","fizzle","36571","boots12","adderall","120"
"1224","markdahman","180313","out_there","codeine","120"
"1","Alfa","156304","PillMan","ghb","120"
"2200","par excellence.","21315","Graduisic","dxm","120"
"10663","fizzle","54993","Rise against","adderall","120"
"56","Hollywood ","10663","fizzle","adderall","120"
"1224","markdahman","100767","missinglfe","codeine","120"
"56","Hollywood ","1224","markdahman","codeine","120"
"2200","par excellence.","44584","Rightnow289","dxm","120"
"10663","fizzle","127455","BitterSweet","adderall","120"
"313","RoboCop ","2200","par excellence.","dxm","120"
"1842","nymphetamine","156304","PillMan","ghb","120"
"10891","Bajeda ","90006","Ghetto_Chem","kava","120"
"1224","markdahman","61180","Helene ","codeine","120"
"2200","par excellence.","3565","amd6568","dxm","120"
"10663","fizzle","56520","Christian1122","adderall","120"
"56","Hollywood ","39479","thebige","fentanyl","120"
"3299","anabolictrio","39479","thebige","fentanyl","120"
"10891","Bajeda ","63028","Smirnoff","kava","120"
"1224","markdahman","63028","Smirnoff","codeine","120"
"2200","par excellence.","75764","lololsolid","dxm","120"
"10663","fizzle","45618","cannabis-sam","adderall","120"
"1224","markdahman","57031","rhcpeppers1234","codeine","120"
"1224","markdahman","1842","nymphetamine","codeine","120"
"2200","par excellence.","161625","mrcowman","dxm","120"
"5010","snapper ","10891","Bajeda ","kava","120"
"10663","fizzle","127014","MikePatton","adderall","120"
"1224","markdahman","40282","Razorbladekiss","codeine","120"
"1842","nymphetamine","10891","Bajeda ","kava","120"
"96636","Mersann","156304","PillMan","ghb","120"
"156304","PillMan","180313","out_there","ghb","120"
"2200","par excellence.","180313","out_there","dxm","120"
"10663","fizzle","115136","trdofbeingtrd","adderall","120"
"1224","markdahman","7946","788.4","codeine","120"
"4264","will","39479","thebige","fentanyl","120"
"2200","par excellence.","127711","Zhekarius","dxm","120"
"2200","par excellence.","202594","headfull0fstars","dxm","120"
"4495","vhalin","10891","Bajeda ","kava","120"
"737","RARFE ","10663","fizzle","adderall","120"
"10663","fizzle","71487","robotripper","adderall","120"
"1224","markdahman","83387","PrincessJo x","codeine","120"
"2200","par excellence.","3780","Kradle","dxm","120"
"2200","par excellence.","2418","Phungushead","dxm","120"
"9","Freedom of Mind","1224","markdahman","codeine","120"
"1224","markdahman","28899","Esmerelda","codeine","120"
"1023","btoddw2","10663","fizzle","adderall","120"
"2200","par excellence.","116985","Chug Chug Chug","dxm","120"
"4495","vhalin","10663","fizzle","adderall","120"
"10663","fizzle","46446","EyesOfTheWorld","adderall","120"
"1224","markdahman","118772","Mr_Spiffy","codeine","120"
"42985","EducatedUser408","156304","PillMan","ghb","120"
"39479","thebige","46446","EyesOfTheWorld","fentanyl","120"
"13022","MrG","156304","PillMan","ghb","120"
"9","Freedom of Mind","10663","fizzle","adderall","120"
"35486","NeuroChi","39479","thebige","fentanyl","120"
"2200","par excellence.","110776","PowerfulMedicine","dxm","120"
"1023","btoddw2","1224","markdahman","codeine","120"
"10663","fizzle","65638","Pieces Mended","adderall","120"
"1842","nymphetamine","10663","fizzle","adderall","120"
"1224","markdahman","45599","On The Nod","codeine","120"
"16700","beena","39479","thebige","fentanyl","120"
"10891","Bajeda ","11411","supremedan","kava","120"
"3413","radiometer ","156304","PillMan","ghb","120"
"2200","par excellence.","18724","AirO","dxm","120"
"10663","fizzle","45728","Gappa","adderall","120"
"1868","Paderas","10663","fizzle","adderall","120"
"10891","Bajeda ","11877","howlongisthenight","kava","120"
"1224","markdahman","4495","vhalin","codeine","120"
"9781","cutiepie","46865","dyingtomorrow","oxycodone","119"
"59051","Priapism9","63028","Smirnoff","adderall","119"
"1714","magicmaster141","4777","IHrtHalucingens","lorazepam","119"
"56","Hollywood ","4777","IHrtHalucingens","alprazolam","119"
"2418","Phungushead","4777","IHrtHalucingens","clonazepam","119"
"4777","IHrtHalucingens","230750","MoreGutzThanGlory","clonazepam","119"
"56","Hollywood ","4777","IHrtHalucingens","valium","119"
"1842","nymphetamine","4777","IHrtHalucingens","diazepam","119"
"1842","nymphetamine","9781","cutiepie","oxycodone","119"
"9781","cutiepie","135119","pup555","oxycodone","119"
"9","Freedom of Mind","4777","IHrtHalucingens","lorazepam","119"
"35486","NeuroChi","122372","PatrickEngle","ritalin","119"
"9","Freedom of Mind","4777","IHrtHalucingens","clonazepam","119"
"28015","riaahacker","122372","PatrickEngle","ritalin","119"
"59051","Priapism9","71487","robotripper","adderall","119"
"4777","IHrtHalucingens","180313","out_there","clonazepam","119"
"4777","IHrtHalucingens","5010","snapper ","lorazepam","119"
"2539","Beltane","4777","IHrtHalucingens","diazepam","119"
"1","Alfa","4777","IHrtHalucingens","diazepam","119"
"9781","cutiepie","65726","ellavader","oxycodone","119"
"9","Freedom of Mind","4777","IHrtHalucingens","diazepam","119"
"1112","hh339 ","122372","PatrickEngle","ritalin","119"
"56","Hollywood ","4777","IHrtHalucingens","clonazepam","119"
"4777","IHrtHalucingens","96636","Mersann","valium","119"
"2418","Phungushead","4777","IHrtHalucingens","valium","119"
"4777","IHrtHalucingens","63028","Smirnoff","clonazepam","119"
"45728","Gappa","59051","Priapism9","adderall","119"
"4777","IHrtHalucingens","6201","SkUnKaDeLiC","lorazepam","119"
"9781","cutiepie","45599","On The Nod","oxycodone","119"
"2418","Phungushead","9781","cutiepie","oxycodone","119"
"4777","IHrtHalucingens","18965","beentheredonethatagain","valium","119"
"737","RARFE ","59051","Priapism9","adderall","119"
"4777","IHrtHalucingens","96636","Mersann","diazepam","119"
"1239","Nicaine","4777","IHrtHalucingens","alprazolam","119"
"1180","Creeping Death ","4777","IHrtHalucingens","valium","119"
"9781","cutiepie","108860","Pain Hurts","oxycodone","119"
"401","peggs16","4777","IHrtHalucingens","alprazolam","119"
"4777","IHrtHalucingens","7946","788.4","valium","119"
"1806","betty_bupe","4777","IHrtHalucingens","midazolam","119"
"3299","anabolictrio","4777","IHrtHalucingens","valium","119"
"56","Hollywood ","4777","IHrtHalucingens","diazepam","119"
"1023","btoddw2","4777","IHrtHalucingens","diazepam","119"
"1023","btoddw2","59051","Priapism9","adderall","119"
"9781","cutiepie","211963","WoodyCA","oxycodone","119"
"1239","Nicaine","4777","IHrtHalucingens","valium","119"
"4495","vhalin","59051","Priapism9","adderall","119"
"1714","magicmaster141","4777","IHrtHalucingens","midazolam","119"
"7946","788.4","9781","cutiepie","oxycodone","119"
"41143","RoboCodeine7610","122372","PatrickEngle","ritalin","119"
"4777","IHrtHalucingens","58307","missparkles ","diazepam","119"
"4777","IHrtHalucingens","45618","cannabis-sam","valium","119"
"1239","Nicaine","4777","IHrtHalucingens","diazepam","119"
"28015","riaahacker","59051","Priapism9","adderall","119"
"9","Freedom of Mind","59051","Priapism9","adderall","119"
"4777","IHrtHalucingens","63028","Smirnoff","alprazolam","119"
"9781","cutiepie","118772","Mr_Spiffy","oxycodone","119"
"46446","EyesOfTheWorld","59051","Priapism9","adderall","119"
"46865","dyingtomorrow","59051","Priapism9","adderall","119"
"45618","cannabis-sam","59051","Priapism9","adderall","119"
"1842","nymphetamine","59051","Priapism9","adderall","119"
"4777","IHrtHalucingens","6201","SkUnKaDeLiC","diazepam","119"
"4777","IHrtHalucingens","6201","SkUnKaDeLiC","valium","119"
"2539","Beltane","4777","IHrtHalucingens","midazolam","119"
"4495","vhalin","4777","IHrtHalucingens","alprazolam","119"
"4777","IHrtHalucingens","28015","riaahacker","alprazolam","119"
"4495","vhalin","4777","IHrtHalucingens","diazepam","119"
"1180","Creeping Death ","4777","IHrtHalucingens","diazepam","119"
"9781","cutiepie","180313","out_there","oxycodone","119"
"59051","Priapism9","127455","BitterSweet","adderall","119"
"36571","boots12","59051","Priapism9","adderall","119"
"4777","IHrtHalucingens","96636","Mersann","midazolam","119"
"1868","Paderas","59051","Priapism9","adderall","119"
"1","Alfa","4777","IHrtHalucingens","alprazolam","119"
"9781","cutiepie","294051","Jungledog","oxycodone","119"
"1714","magicmaster141","4777","IHrtHalucingens","alprazolam","119"
"59051","Priapism9","127014","MikePatton","adderall","119"
"4777","IHrtHalucingens","6201","SkUnKaDeLiC","midazolam","119"
"9781","cutiepie","11411","supremedan","oxycodone","119"
"856","str8ballin","122372","PatrickEngle","ritalin","119"
"9781","cutiepie","35486","NeuroChi","oxycodone","119"
"59051","Priapism9","115136","trdofbeingtrd","adderall","119"
"4495","vhalin","4777","IHrtHalucingens","valium","119"
"4777","IHrtHalucingens","5733","Jatelka ","clonazepam","119"
"4777","IHrtHalucingens","220080","Lunaciel","lorazepam","119"
"9781","cutiepie","83387","PrincessJo x","oxycodone","119"
"1714","magicmaster141","4777","IHrtHalucingens","clonazepam","119"
"3167","bubaloo","4777","IHrtHalucingens","clonazepam","119"
"1023","btoddw2","4777","IHrtHalucingens","valium","119"
"35486","NeuroChi","59051","Priapism9","adderall","119"
"3375","MrJim","9781","cutiepie","oxycodone","119"
"4777","IHrtHalucingens","202594","headfull0fstars","clonazepam","119"
"1","Alfa","59051","Priapism9","adderall","119"
"4777","IHrtHalucingens","180313","out_there","lorazepam","119"
"1842","nymphetamine","4777","IHrtHalucingens","lorazepam","119"
"9781","cutiepie","280861","Hydroxyout","oxycodone","119"
"4777","IHrtHalucingens","8569","johnnyvoid","valium","119"
"4777","IHrtHalucingens","6201","SkUnKaDeLiC","clonazepam","119"
"7303","pankreeas ","9781","cutiepie","oxycodone","119"
"5750","pharmapsyche","59051","Priapism9","adderall","119"
"9781","cutiepie","207982","tryinghard","oxycodone","119"
"1842","nymphetamine","4777","IHrtHalucingens","valium","119"
"21513","HorseBucket","122372","PatrickEngle","ritalin","119"
"4777","IHrtHalucingens","211963","WoodyCA","valium","119"
"401","peggs16","4777","IHrtHalucingens","clonazepam","119"
"4777","IHrtHalucingens","8569","johnnyvoid","diazepam","119"
"9","Freedom of Mind","4777","IHrtHalucingens","alprazolam","119"
"9781","cutiepie","220080","Lunaciel","oxycodone","119"
"10663","fizzle","59051","Priapism9","adderall","119"
"4777","IHrtHalucingens","28899","Esmerelda","valium","119"
"856","str8ballin","4777","IHrtHalucingens","valium","119"
"3167","bubaloo","4777","IHrtHalucingens","lorazepam","119"
"4777","IHrtHalucingens","48762","brandon561","alprazolam","119"
"9781","cutiepie","68194","baZING","oxycodone","119"
"54993","Rise against","59051","Priapism9","adderall","119"
"5750","pharmapsyche","122372","PatrickEngle","ritalin","119"
"56","Hollywood ","59051","Priapism9","adderall","119"
"4777","IHrtHalucingens","63028","Smirnoff","diazepam","119"
"4777","IHrtHalucingens","63028","Smirnoff","valium","119"
"4777","IHrtHalucingens","6201","SkUnKaDeLiC","alprazolam","119"
"2539","Beltane","4777","IHrtHalucingens","valium","119"
"883","apoch22","122372","PatrickEngle","ritalin","119"
"56","Hollywood ","9781","cutiepie","oxycodone","119"
"9781","cutiepie","156304","PillMan","oxycodone","119"
"3167","bubaloo","4777","IHrtHalucingens","alprazolam","119"
"59051","Priapism9","65638","Pieces Mended","adderall","119"
"4495","vhalin","9781","cutiepie","oxycodone","119"
"1842","nymphetamine","122372","PatrickEngle","ritalin","119"
"4777","IHrtHalucingens","28015","riaahacker","diazepam","119"
"56520","Christian1122","59051","Priapism9","adderall","119"
"4777","IHrtHalucingens","46865","dyingtomorrow","valium","119"
"4495","vhalin","122372","PatrickEngle","ritalin","119"
"2539","Beltane","4777","IHrtHalucingens","clonazepam","119"
"9781","cutiepie","63028","Smirnoff","oxycodone","119"
"59051","Priapism9","202594","headfull0fstars","adderall","119"
"1","Alfa","4777","IHrtHalucingens","valium","119"
"4777","IHrtHalucingens","180313","out_there","midazolam","119"
"41143","RoboCodeine7610","211963","WoodyCA","xanax","118"
"4495","vhalin","41143","RoboCodeine7610","valium","118"
"7946","788.4","41143","RoboCodeine7610","valium","118"
"35591","AACrazy2892","68194","baZING","oxycodone","118"
"1023","btoddw2","41143","RoboCodeine7610","valium","118"
"41143","RoboCodeine7610","63028","Smirnoff","xanax","118"
"35486","NeuroChi","107312","FinnishPharmer","adderall","118"
"3375","MrJim","35591","AACrazy2892","oxycodone","118"
"1","Alfa","107312","FinnishPharmer","adderall","118"
"6201","SkUnKaDeLiC","41143","RoboCodeine7610","xanax","118"
"71487","robotripper","107312","FinnishPharmer","adderall","118"
"35591","AACrazy2892","156304","PillMan","oxycodone","118"
"6201","SkUnKaDeLiC","41143","RoboCodeine7610","valium","118"
"7303","pankreeas ","35591","AACrazy2892","oxycodone","118"
"5750","pharmapsyche","107312","FinnishPharmer","adderall","118"
"1842","nymphetamine","41143","RoboCodeine7610","valium","118"
"35591","AACrazy2892","63028","Smirnoff","oxycodone","118"
"1842","nymphetamine","41143","RoboCodeine7610","xanax","118"
"41143","RoboCodeine7610","211963","WoodyCA","valium","118"
"1808","xxgaretjaxx","41143","RoboCodeine7610","xanax","118"
"65638","Pieces Mended","107312","FinnishPharmer","adderall","118"
"743","madman3l6","41143","RoboCodeine7610","xanax","118"
"35591","AACrazy2892","46865","dyingtomorrow","oxycodone","118"
"10663","fizzle","107312","FinnishPharmer","adderall","118"
"4495","vhalin","41143","RoboCodeine7610","xanax","118"
"41143","RoboCodeine7610","63028","Smirnoff","valium","118"
"856","str8ballin","41143","RoboCodeine7610","valium","118"
"35591","AACrazy2892","135119","pup555","oxycodone","118"
"56","Hollywood ","107312","FinnishPharmer","adderall","118"
"54993","Rise against","107312","FinnishPharmer","adderall","118"
"35591","AACrazy2892","65726","ellavader","oxycodone","118"
"2539","Beltane","41143","RoboCodeine7610","valium","118"
"41143","RoboCodeine7610","156304","PillMan","xanax","118"
"56","Hollywood ","35591","AACrazy2892","oxycodone","118"
"401","peggs16","41143","RoboCodeine7610","xanax","118"
"59051","Priapism9","107312","FinnishPharmer","adderall","118"
"4495","vhalin","35591","AACrazy2892","oxycodone","118"
"107312","FinnishPharmer","202594","headfull0fstars","adderall","118"
"56520","Christian1122","107312","FinnishPharmer","adderall","118"
"35591","AACrazy2892","45599","On The Nod","oxycodone","118"
"41143","RoboCodeine7610","297036","supermono","xanax","118"
"1","Alfa","41143","RoboCodeine7610","valium","118"
"107312","FinnishPharmer","115136","trdofbeingtrd","adderall","118"
"35591","AACrazy2892","108860","Pain Hurts","oxycodone","118"
"2418","Phungushead","41143","RoboCodeine7610","xanax","118"
"56","Hollywood ","41143","RoboCodeine7610","valium","118"
"41143","RoboCodeine7610","102420","spicybrainsgirl","xanax","118"
"7946","788.4","41143","RoboCodeine7610","xanax","118"
"1842","nymphetamine","35591","AACrazy2892","oxycodone","118"
"35591","AACrazy2892","211963","WoodyCA","oxycodone","118"
"41143","RoboCodeine7610","45618","cannabis-sam","xanax","118"
"56","Hollywood ","41143","RoboCodeine7610","xanax","118"
"35591","AACrazy2892","118772","Mr_Spiffy","oxycodone","118"
"1714","magicmaster141","41143","RoboCodeine7610","xanax","118"
"41143","RoboCodeine7610","273439","marathonmel7","xanax","118"
"4777","IHrtHalucingens","41143","RoboCodeine7610","valium","118"
"2418","Phungushead","41143","RoboCodeine7610","valium","118"
"45728","Gappa","107312","FinnishPharmer","adderall","118"
"18965","beentheredonethatagain","41143","RoboCodeine7610","valium","118"
"3299","anabolictrio","41143","RoboCodeine7610","xanax","118"
"35591","AACrazy2892","180313","out_there","oxycodone","118"
"2418","Phungushead","35591","AACrazy2892","oxycodone","118"
"41143","RoboCodeine7610","96636","Mersann","valium","118"
"737","RARFE ","107312","FinnishPharmer","adderall","118"
"28899","Esmerelda","41143","RoboCodeine7610","valium","118"
"11411","supremedan","35591","AACrazy2892","oxycodone","118"
"1180","Creeping Death ","41143","RoboCodeine7610","valium","118"
"35591","AACrazy2892","294051","Jungledog","oxycodone","118"
"41143","RoboCodeine7610","45618","cannabis-sam","valium","118"
"1753","kailey_elise ","41143","RoboCodeine7610","xanax","118"
"3299","anabolictrio","41143","RoboCodeine7610","valium","118"
"11411","supremedan","41143","RoboCodeine7610","xanax","118"
"8569","johnnyvoid","41143","RoboCodeine7610","valium","118"
"1023","btoddw2","107312","FinnishPharmer","adderall","118"
"1239","Nicaine","41143","RoboCodeine7610","valium","118"
"28899","Esmerelda","41143","RoboCodeine7610","xanax","118"
"4495","vhalin","107312","FinnishPharmer","adderall","118"
"35486","NeuroChi","41143","RoboCodeine7610","xanax","118"
"7946","788.4","35591","AACrazy2892","oxycodone","118"
"41143","RoboCodeine7610","46865","dyingtomorrow","valium","118"
"28015","riaahacker","107312","FinnishPharmer","adderall","118"
"9","Freedom of Mind","107312","FinnishPharmer","adderall","118"
"35591","AACrazy2892","83387","PrincessJo x","oxycodone","118"
"63028","Smirnoff","107312","FinnishPharmer","adderall","118"
"1684","CABS205","102824","natey7","phenibut","118"
"41143","RoboCodeine7610","108546","reef88","xanax","118"
"46446","EyesOfTheWorld","107312","FinnishPharmer","adderall","118"
"46865","dyingtomorrow","107312","FinnishPharmer","adderall","118"
"45618","cannabis-sam","107312","FinnishPharmer","adderall","118"
"1842","nymphetamine","107312","FinnishPharmer","adderall","118"
"1213","Psilocybe S.","41143","RoboCodeine7610","xanax","118"
"107312","FinnishPharmer","127455","BitterSweet","adderall","118"
"35591","AACrazy2892","280861","Hydroxyout","oxycodone","118"
"41143","RoboCodeine7610","48762","brandon561","xanax","118"
"36571","boots12","107312","FinnishPharmer","adderall","118"
"107312","FinnishPharmer","127014","MikePatton","adderall","118"
"1","Alfa","41143","RoboCodeine7610","xanax","118"
"1868","Paderas","107312","FinnishPharmer","adderall","118"
"856","str8ballin","41143","RoboCodeine7610","xanax","118"
"28015","riaahacker","41143","RoboCodeine7610","xanax","118"
"35591","AACrazy2892","207982","tryinghard","oxycodone","118"
"35486","NeuroChi","35591","AACrazy2892","oxycodone","118"
"41143","RoboCodeine7610","46446","EyesOfTheWorld","xanax","118"
"9781","cutiepie","35591","AACrazy2892","oxycodone","118"
"35591","AACrazy2892","220080","Lunaciel","oxycodone","118"
"3167","bubaloo","41143","RoboCodeine7610","xanax","118"
"4495","vhalin","37097","jok3r","diphenhydramine","117"
"62","BA","9351","M3th","mdma","117"
"856","str8ballin","45599","On The Nod","ritalin","117"
"56","Hollywood ","9904","Benzeneringz","xanax","117"
"9904","Benzeneringz","156304","PillMan","xanax","117"
"9351","M3th","10467","WrtngCocaineTutorial","mdma","117"
"45618","cannabis-sam","148228","livespd","tramadol","117"
"148228","livespd","201049","ak2Ut","tramadol","117"
"75","Leo.","9351","M3th","mdma","117"
"9351","M3th","119102","roastlamb123","mdma","117"
"1714","magicmaster141","9904","Benzeneringz","xanax","117"
"9904","Benzeneringz","297036","supermono","xanax","117"
"63028","Smirnoff","135119","pup555","oxycontin","117"
"9351","M3th","59051","Priapism9","mdma","117"
"148228","livespd","180313","out_there","tramadol","117"
"45599","On The Nod","122372","PatrickEngle","ritalin","117"
"3299","anabolictrio","9904","Benzeneringz","xanax","117"
"9351","M3th","32247","Lettish","mdma","117"
"65726","ellavader","135119","pup555","oxycontin","117"
"4910","Fantasian","9351","M3th","mdma","117"
"8569","johnnyvoid","37097","jok3r","diphenhydramine","117"
"28899","Esmerelda","135119","pup555","oxycontin","117"
"1595","Curtains","9351","M3th","mdma","117"
"1842","nymphetamine","37097","jok3r","diphenhydramine","117"
"9904","Benzeneringz","102420","spicybrainsgirl","xanax","117"
"60","Sick Jack","9351","M3th","mdma","117"
"9351","M3th","127014","MikePatton","mdma","117"
"1915","curve","9351","M3th","mdma","117"
"38632","PilL FreaK","148228","livespd","tramadol","117"
"56","Hollywood ","9351","M3th","mdma","117"
"45599","On The Nod","96636","Mersann","buprenorphine","117"
"21513","HorseBucket","45599","On The Nod","ritalin","117"
"2418","Phungushead","148228","livespd","tramadol","117"
"9351","M3th","79297","bostonnew","mdma","117"
"1753","kailey_elise ","9904","Benzeneringz","xanax","117"
"9904","Benzeneringz","28899","Esmerelda","xanax","117"
"9351","M3th","63028","Smirnoff","mdma","117"
"1842","nymphetamine","9351","M3th","mdma","117"
"9","Freedom of Mind","9904","Benzeneringz","alprazolam","117"
"76984","LostControl","135119","pup555","oxycontin","117"
"45599","On The Nod","227635","Jels","buprenorphine","117"
"3299","anabolictrio","45599","On The Nod","buprenorphine","117"
"9351","M3th","45583","Synesthesiac","mdma","117"
"4490","DJ-666","9351","M3th","mdma","117"
"9904","Benzeneringz","63028","Smirnoff","xanax","117"
"4777","IHrtHalucingens","9904","Benzeneringz","alprazolam","117"
"539","stndguy","9351","M3th","mdma","117"
"1684","CABS205","37097","jok3r","diphenhydramine","117"
"9351","M3th","54214","Zoidberg","mdma","117"
"56","Hollywood ","148228","livespd","tramadol","117"
"1213","Psilocybe S.","9904","Benzeneringz","xanax","117"
"5750","pharmapsyche","45599","On The Nod","ritalin","117"
"7303","pankreeas ","37097","jok3r","diphenhydramine","117"
"6482","psychedelaholic","9351","M3th","mdma","117"
"9904","Benzeneringz","273439","marathonmel7","xanax","117"
"135119","pup555","156304","PillMan","oxycontin","117"
"35486","NeuroChi","148228","livespd","tramadol","117"
"41143","RoboCodeine7610","148228","livespd","tramadol","117"
"883","apoch22","45599","On The Nod","ritalin","117"
"3167","bubaloo","9904","Benzeneringz","alprazolam","117"
"9351","M3th","15832","JapanHorrorUncut","mdma","117"
"1842","nymphetamine","45599","On The Nod","ritalin","117"
"4495","vhalin","45599","On The Nod","ritalin","117"
"1","Alfa","9904","Benzeneringz","xanax","117"
"13189","augentier ","37097","jok3r","diphenhydramine","117"
"2577","Stingray_313 ","9351","M3th","mdma","117"
"37097","jok3r","124017","LoveNwar","diphenhydramine","117"
"1808","xxgaretjaxx","37097","jok3r","diphenhydramine","117"
"856","str8ballin","9904","Benzeneringz","xanax","117"
"96636","Mersann","148228","livespd","tramadol","117"
"9904","Benzeneringz","41143","RoboCodeine7610","xanax","117"
"5750","pharmapsyche","9351","M3th","mdma","117"
"9351","M3th","90006","Ghetto_Chem","mdma","117"
"2239","skilld","9351","M3th","mdma","117"
"9","Freedom of Mind","148228","livespd","tramadol","117"
"16987","darkglobe","45599","On The Nod","buprenorphine","117"
"9904","Benzeneringz","48762","brandon561","alprazolam","117"
"37097","jok3r","127014","MikePatton","diphenhydramine","117"
"3167","bubaloo","9904","Benzeneringz","xanax","117"
"35486","NeuroChi","45599","On The Nod","buprenorphine","117"
"28015","riaahacker","135119","pup555","oxycontin","117"
"9904","Benzeneringz","11411","supremedan","xanax","117"
"56","Hollywood ","9904","Benzeneringz","alprazolam","117"
"9351","M3th","180313","out_there","mdma","117"
"9904","Benzeneringz","28015","riaahacker","alprazolam","117"
"37097","jok3r","46865","dyingtomorrow","diphenhydramine","117"
"4495","vhalin","148228","livespd","tramadol","117"
"56","Hollywood ","135119","pup555","oxycontin","117"
"35486","NeuroChi","45599","On The Nod","ritalin","117"
"63028","Smirnoff","148228","livespd","tramadol","117"
"422","1933","9351","M3th","mdma","117"
"9351","M3th","57031","rhcpeppers1234","mdma","117"
"9904","Benzeneringz","48762","brandon561","xanax","117"
"2418","Phungushead","45599","On The Nod","buprenorphine","117"
"1806","betty_bupe","9351","M3th","mdma","117"
"28015","riaahacker","45599","On The Nod","ritalin","117"
"9351","M3th","45618","cannabis-sam","mdma","117"
"148228","livespd","256377","detoxin momma","tramadol","117"
"6201","SkUnKaDeLiC","9904","Benzeneringz","alprazolam","117"
"6201","SkUnKaDeLiC","9904","Benzeneringz","xanax","117"
"9351","M3th","11411","supremedan","mdma","117"
"1562","soer","9351","M3th","mdma","117"
"4495","vhalin","135119","pup555","oxycontin","117"
"1112","hh339 ","45599","On The Nod","ritalin","117"
"13765","Nacumen","37097","jok3r","diphenhydramine","117"
"9904","Benzeneringz","46446","EyesOfTheWorld","xanax","117"
"3345","Unsolved","9351","M3th","mdma","117"
"9351","M3th","54108","Alexander_Praves","mdma","117"
"1","Alfa","148228","livespd","tramadol","117"
"3732","Diphenhydramine","9351","M3th","mdma","117"
"148228","livespd","156304","PillMan","tramadol","117"
"9351","M3th","46865","dyingtomorrow","mdma","117"
"1842","nymphetamine","9904","Benzeneringz","xanax","117"
"111239","whocaresdude91","148228","livespd","tramadol","117"
"1808","xxgaretjaxx","9904","Benzeneringz","xanax","117"
"2281","billyloner ","9351","M3th","mdma","117"
"9904","Benzeneringz","211963","WoodyCA","xanax","117"
"743","madman3l6","9904","Benzeneringz","xanax","117"
"9351","M3th","57101","Terrapinzflyer ","mdma","117"
"1239","Nicaine","9904","Benzeneringz","alprazolam","117"
"2418","Phungushead","9351","M3th","mdma","117"
"2271","polloloco001 ","9351","M3th","mdma","117"
"45599","On The Nod","46865","dyingtomorrow","buprenorphine","117"
"1842","nymphetamine","135119","pup555","oxycontin","117"
"9351","M3th","83387","PrincessJo x","mdma","117"
"9019","Forthesevenlakes","45599","On The Nod","buprenorphine","117"
"401","peggs16","9904","Benzeneringz","alprazolam","117"
"4495","vhalin","9351","M3th","mdma","117"
"4495","vhalin","9904","Benzeneringz","xanax","117"
"9904","Benzeneringz","45618","cannabis-sam","xanax","117"
"9351","M3th","35486","NeuroChi","mdma","117"
"2610","brainwaxd","9351","M3th","mdma","117"
"9351","M3th","96636","Mersann","mdma","117"
"41143","RoboCodeine7610","45599","On The Nod","ritalin","117"
"9904","Benzeneringz","28015","riaahacker","xanax","117"
"1842","nymphetamine","148228","livespd","tramadol","117"
"46865","dyingtomorrow","135119","pup555","oxycontin","117"
"102420","spicybrainsgirl","135119","pup555","oxycontin","117"
"1868","Paderas","9351","M3th","mdma","117"
"401","peggs16","9904","Benzeneringz","xanax","117"
"9351","M3th","124017","LoveNwar","mdma","117"
"3375","MrJim","135119","pup555","oxycontin","117"
"9904","Benzeneringz","35486","NeuroChi","xanax","117"
"4969","kaide","37097","jok3r","diphenhydramine","117"
"135119","pup555","211963","WoodyCA","oxycontin","117"
"4495","vhalin","9904","Benzeneringz","alprazolam","117"
"4218","TheLight01","9351","M3th","mdma","117"
"108860","Pain Hurts","135119","pup555","oxycontin","117"
"127014","MikePatton","148228","livespd","tramadol","117"
"9351","M3th","19028","RochiWizz","mdma","117"
"1","Alfa","9351","M3th","mdma","117"
"28015","riaahacker","148228","livespd","tramadol","117"
"37097","jok3r","202594","headfull0fstars","diphenhydramine","117"
"7303","pankreeas ","9351","M3th","mdma","117"
"7946","788.4","9351","M3th","mdma","117"
"6052","KomodoMK","9351","M3th","mdma","117"
"1","Alfa","9904","Benzeneringz","alprazolam","117"
"2418","Phungushead","9904","Benzeneringz","xanax","117"
"1714","magicmaster141","9904","Benzeneringz","alprazolam","117"
"9904","Benzeneringz","108546","reef88","xanax","117"
"7303","pankreeas ","135119","pup555","oxycontin","117"
"2709","risexagainst","9351","M3th","mdma","117"
"9351","M3th","15564","Le Junk","mdma","117"
"7946","788.4","9904","Benzeneringz","xanax","117"
"9904","Benzeneringz","63028","Smirnoff","alprazolam","117"
"37097","jok3r","63028","Smirnoff","diphenhydramine","117"
"788","mdve2","9351","M3th","mdma","117"
"35993","Greenport","59051","Priapism9","mdma","116"
"1806","betty_bupe","35993","Greenport","mdma","116"
"1753","kailey_elise ","1842","nymphetamine","adderall","116"
"1753","kailey_elise ","54993","Rise against","adderall","116"
"1562","soer","35993","Greenport","mdma","116"
"35993","Greenport","127014","MikePatton","mdma","116"
"3345","Unsolved","35993","Greenport","mdma","116"
"3732","Diphenhydramine","35993","Greenport","mdma","116"
"1753","kailey_elise ","35486","NeuroChi","adderall","116"
"1753","kailey_elise ","127455","BitterSweet","adderall","116"
"2281","billyloner ","35993","Greenport","mdma","116"
"35993","Greenport","63028","Smirnoff","mdma","116"
"737","RARFE ","1753","kailey_elise ","adderall","116"
"1753","kailey_elise ","56520","Christian1122","adderall","116"
"2418","Phungushead","35993","Greenport","mdma","116"
"2271","polloloco001 ","35993","Greenport","mdma","116"
"35993","Greenport","119102","roastlamb123","mdma","116"
"4495","vhalin","35993","Greenport","mdma","116"
"19028","RochiWizz","35993","Greenport","mdma","116"
"2610","brainwaxd","35993","Greenport","mdma","116"
"15564","Le Junk","35993","Greenport","mdma","116"
"1753","kailey_elise ","46865","dyingtomorrow","adderall","116"
"1023","btoddw2","1753","kailey_elise ","adderall","116"
"35993","Greenport","79297","bostonnew","mdma","116"
"9","Freedom of Mind","1753","kailey_elise ","adderall","116"
"1868","Paderas","35993","Greenport","mdma","116"
"1753","kailey_elise ","202594","headfull0fstars","adderall","116"
"35993","Greenport","45583","Synesthesiac","mdma","116"
"4218","TheLight01","35993","Greenport","mdma","116"
"1753","kailey_elise ","4495","vhalin","adderall","116"
"35993","Greenport","54214","Zoidberg","mdma","116"
"1","Alfa","35993","Greenport","mdma","116"
"1753","kailey_elise ","107312","FinnishPharmer","adderall","116"
"7303","pankreeas ","35993","Greenport","mdma","116"
"7946","788.4","35993","Greenport","mdma","116"
"6052","KomodoMK","35993","Greenport","mdma","116"
"35993","Greenport","90006","Ghetto_Chem","mdma","116"
"35486","NeuroChi","35993","Greenport","mdma","116"
"32247","Lettish","35993","Greenport","mdma","116"
"2709","risexagainst","35993","Greenport","mdma","116"
"1753","kailey_elise ","1868","Paderas","adderall","116"
"1753","kailey_elise ","10663","fizzle","adderall","116"
"788","mdve2","35993","Greenport","mdma","116"
"62","BA","35993","Greenport","mdma","116"
"35993","Greenport","45618","cannabis-sam","mdma","116"
"1753","kailey_elise ","28015","riaahacker","adderall","116"
"1753","kailey_elise ","46446","EyesOfTheWorld","adderall","116"
"75","Leo.","35993","Greenport","mdma","116"
"10467","WrtngCocaineTutorial","35993","Greenport","mdma","116"
"35993","Greenport","54108","Alexander_Praves","mdma","116"
"1","Alfa","1753","kailey_elise ","adderall","116"
"1753","kailey_elise ","71487","robotripper","adderall","116"
"1753","kailey_elise ","65638","Pieces Mended","adderall","116"
"11411","supremedan","35993","Greenport","mdma","116"
"4910","Fantasian","35993","Greenport","mdma","116"
"1595","Curtains","35993","Greenport","mdma","116"
"35993","Greenport","57101","Terrapinzflyer ","mdma","116"
"60","Sick Jack","35993","Greenport","mdma","116"
"1915","curve","35993","Greenport","mdma","116"
"1753","kailey_elise ","45728","Gappa","adderall","116"
"35993","Greenport","57031","rhcpeppers1234","mdma","116"
"56","Hollywood ","35993","Greenport","mdma","116"
"15832","JapanHorrorUncut","35993","Greenport","mdma","116"
"1842","nymphetamine","35993","Greenport","mdma","116"
"1753","kailey_elise ","5750","pharmapsyche","adderall","116"
"35993","Greenport","46865","dyingtomorrow","mdma","116"
"4490","DJ-666","35993","Greenport","mdma","116"
"1753","kailey_elise ","45618","cannabis-sam","adderall","116"
"539","stndguy","35993","Greenport","mdma","116"
"35993","Greenport","83387","PrincessJo x","mdma","116"
"56","Hollywood ","1753","kailey_elise ","adderall","116"
"6482","psychedelaholic","35993","Greenport","mdma","116"
"1753","kailey_elise ","127014","MikePatton","adderall","116"
"35993","Greenport","96636","Mersann","mdma","116"
"2577","Stingray_313 ","35993","Greenport","mdma","116"
"35993","Greenport","124017","LoveNwar","mdma","116"
"5750","pharmapsyche","35993","Greenport","mdma","116"
"2239","skilld","35993","Greenport","mdma","116"
"1753","kailey_elise ","63028","Smirnoff","adderall","116"
"1753","kailey_elise ","59051","Priapism9","adderall","116"
"35993","Greenport","180313","out_there","mdma","116"
"1753","kailey_elise ","115136","trdofbeingtrd","adderall","116"
"1753","kailey_elise ","36571","boots12","adderall","116"
"422","1933","35993","Greenport","mdma","116"
"9351","M3th","35993","Greenport","mdma","116"
"181260","Kitts","268087","Pbnjesse","methadone","115"
"102420","spicybrainsgirl","268087","Pbnjesse","suboxone","115"
"63028","Smirnoff","268087","Pbnjesse","methadone","115"
"4910","Fantasian","58307","missparkles ","codeine","115"
"1224","markdahman","58307","missparkles ","codeine","115"
"79947","TheBigBadWolf","268087","Pbnjesse","methadone","115"
"58307","missparkles ","180313","out_there","codeine","115"
"3375","MrJim","58307","missparkles ","codeine","115"
"1842","nymphetamine","268087","Pbnjesse","methadone","115"
"45599","On The Nod","268087","Pbnjesse","suboxone","115"
"58307","missparkles ","100767","missinglfe","codeine","115"
"11411","supremedan","41143","RoboCodeine7610","methylphenidate","115"
"100767","missinglfe","268087","Pbnjesse","methadone","115"
"118772","Mr_Spiffy","268087","Pbnjesse","suboxone","115"
"2418","Phungushead","41143","RoboCodeine7610","methylphenidate","115"
"35486","NeuroChi","58307","missparkles ","codeine","115"
"102824","natey7","268087","Pbnjesse","methadone","115"
"58307","missparkles ","63028","Smirnoff","codeine","115"
"1595","Curtains","268087","Pbnjesse","methadone","115"
"62096","Cooki ","268087","Pbnjesse","methadone","115"
"2418","Phungushead","268087","Pbnjesse","methadone","115"
"170641","jimmym321","268087","Pbnjesse","methadone","115"
"268087","Pbnjesse","273791","Roaddoggy","methadone","115"
"9","Freedom of Mind","58307","missparkles ","codeine","115"
"46865","dyingtomorrow","268087","Pbnjesse","subutex","115"
"18965","beentheredonethatagain","268087","Pbnjesse","methadone","115"
"4495","vhalin","58307","missparkles ","codeine","115"
"57031","rhcpeppers1234","58307","missparkles ","codeine","115"
"118772","Mr_Spiffy","268087","Pbnjesse","methadone","115"
"194301","rosielee","268087","Pbnjesse","methadone","115"
"28899","Esmerelda","58307","missparkles ","codeine","115"
"28015","riaahacker","58307","missparkles ","codeine","115"
"28015","riaahacker","268087","Pbnjesse","methadone","115"
"46446","EyesOfTheWorld","268087","Pbnjesse","suboxone","115"
"9019","Forthesevenlakes","268087","Pbnjesse","suboxone","115"
"81101","source","268087","Pbnjesse","methadone","115"
"46865","dyingtomorrow","268087","Pbnjesse","suboxone","115"
"1023","btoddw2","58307","missparkles ","codeine","115"
"35486","NeuroChi","268087","Pbnjesse","suboxone","115"
"41143","RoboCodeine7610","46865","dyingtomorrow","methylphenidate","115"
"35486","NeuroChi","268087","Pbnjesse","methadone","115"
"28899","Esmerelda","268087","Pbnjesse","methadone","115"
"1753","kailey_elise ","268087","Pbnjesse","methadone","115"
"4910","Fantasian","268087","Pbnjesse","methadone","115"
"1","Alfa","41143","RoboCodeine7610","methylphenidate","115"
"201049","ak2Ut","268087","Pbnjesse","suboxone","115"
"1842","nymphetamine","41143","RoboCodeine7610","methylphenidate","115"
"90006","Ghetto_Chem","268087","Pbnjesse","suboxone","115"
"58307","missparkles ","83387","PrincessJo x","codeine","115"
"1842","nymphetamine","58307","missparkles ","codeine","115"
"7946","788.4","268087","Pbnjesse","methadone","115"
"3299","anabolictrio","268087","Pbnjesse","suboxone","115"
"9019","Forthesevenlakes","268087","Pbnjesse","subutex","115"
"15232","Tortoise","58307","missparkles ","codeine","115"
"58307","missparkles ","118772","Mr_Spiffy","codeine","115"
"202594","headfull0fstars","268087","Pbnjesse","methadone","115"
"40282","Razorbladekiss","58307","missparkles ","codeine","115"
"127014","MikePatton","268087","Pbnjesse","methadone","115"
"16700","beena","268087","Pbnjesse","methadone","115"
"58307","missparkles ","61180","Helene ","codeine","115"
"27864","G_nome","268087","Pbnjesse","methadone","115"
"45599","On The Nod","268087","Pbnjesse","subutex","115"
"3299","anabolictrio","268087","Pbnjesse","subutex","115"
"115136","trdofbeingtrd","268087","Pbnjesse","suboxone","115"
"268087","Pbnjesse","280861","Hydroxyout","subutex","115"
"102420","spicybrainsgirl","268087","Pbnjesse","methadone","115"
"19028","RochiWizz","41143","RoboCodeine7610","methylphenidate","115"
"45599","On The Nod","58307","missparkles ","codeine","115"
"35486","NeuroChi","268087","Pbnjesse","subutex","115"
"46446","EyesOfTheWorld","268087","Pbnjesse","methadone","115"
"45618","cannabis-sam","268087","Pbnjesse","methadone","115"
"41143","RoboCodeine7610","57031","rhcpeppers1234","methylphenidate","115"
"6201","SkUnKaDeLiC","268087","Pbnjesse","methadone","115"
"45599","On The Nod","268087","Pbnjesse","methadone","115"
"16489","baron samedi","268087","Pbnjesse","methadone","115"
"56","Hollywood ","58307","missparkles ","codeine","115"
"198055","yem69420","268087","Pbnjesse","methadone","115"
"115136","trdofbeingtrd","268087","Pbnjesse","methadone","115"
"46865","dyingtomorrow","268087","Pbnjesse","methadone","115"
"58307","missparkles ","268087","Pbnjesse","methadone","115"
"211963","WoodyCA","268087","Pbnjesse","subutex","115"
"102420","spicybrainsgirl","268087","Pbnjesse","subutex","115"
"7946","788.4","58307","missparkles ","codeine","115"
"16345","IkBenDeMan","268087","Pbnjesse","methadone","115"
"211963","WoodyCA","268087","Pbnjesse","suboxone","115"
"230750","MoreGutzThanGlory","268087","Pbnjesse","methadone","115"
"1281","mmk271","268087","Pbnjesse","methadone","115"
"1684","CABS205","58307","missparkles ","codeine","115"
"1935","duchy ","6482","psychedelaholic","mdma","114"
"5733","Jatelka ","15832","JapanHorrorUncut","mdma","114"
"1935","duchy ","5750","pharmapsyche","viagra","114"
"46865","dyingtomorrow","291968","servo75","kratom","114"
"127014","MikePatton","291968","servo75","kratom","114"
"10410","DXMBunny","291968","servo75","kratom","114"
"153","blaze","2822","fastandbulbous","mephedrone","114"
"1935","duchy ","45618","cannabis-sam","mdma","114"
"1842","nymphetamine","291968","servo75","kratom","114"
"5733","Jatelka ","35993","Greenport","mdma","114"
"2763","bogumil","2822","fastandbulbous","kratom","114"
"2822","fastandbulbous","155253","MachoManSavage","kratom","114"
"117995","dreamy","291968","servo75","kratom","114"
"2418","Phungushead","291968","servo75","kratom","114"
"2822","fastandbulbous","53567","buzzman","mephedrone","114"
"1935","duchy ","2281","billyloner ","mdma","114"
"4910","Fantasian","5733","Jatelka ","mdma","114"
"1595","Curtains","1935","duchy ","mdma","114"
"5733","Jatelka ","7946","788.4","mdma","114"
"91040","Dankfish","291968","servo75","kratom","114"
"1935","duchy ","127014","MikePatton","viagra","114"
"60","Sick Jack","1935","duchy ","mdma","114"
"2822","fastandbulbous","212335","Calyspical","kratom","114"
"1915","curve","1935","duchy ","mdma","114"
"1935","duchy ","59051","Priapism9","mdma","114"
"1935","duchy ","5733","Jatelka ","mdma","114"
"2418","Phungushead","43332","enhancion01","dxm","114"
"56","Hollywood ","1935","duchy ","mdma","114"
"5733","Jatelka ","57031","rhcpeppers1234","mdma","114"
"2822","fastandbulbous","103726","seaturtle","kratom","114"
"1935","duchy ","13022","MrG","ghb","114"
"2822","fastandbulbous","62508","Makesmefeelbig","mephedrone","114"
"135","sands of time","2822","fastandbulbous","kratom","114"
"1935","duchy ","96636","Mersann","mdma","114"
"5733","Jatelka ","15564","Le Junk","mdma","114"
"156304","PillMan","291968","servo75","kratom","114"
"20234","ianzombie ","291968","servo75","kratom","114"
"2822","fastandbulbous","275604","snowdrop","kratom","114"
"1842","nymphetamine","1935","duchy ","mdma","114"
"1935","duchy ","54108","Alexander_Praves","mdma","114"
"43332","enhancion01","45258","motter28218","dxm","114"
"1935","duchy ","9351","M3th","mdma","114"
"1","Alfa","2822","fastandbulbous","mephedrone","114"
"5733","Jatelka ","11411","supremedan","mdma","114"
"2822","fastandbulbous","157358","CrispCold","kratom","114"
"1935","duchy ","180313","out_there","ghb","114"
"2822","fastandbulbous","4495","vhalin","mephedrone","114"
"4490","DJ-666","5733","Jatelka ","mdma","114"
"118772","Mr_Spiffy","291968","servo75","kratom","114"
"1964","enquirewithin ","2822","fastandbulbous","kratom","114"
"1935","duchy ","124017","LoveNwar","mdma","114"
"5733","Jatelka ","10467","WrtngCocaineTutorial","mdma","114"
"2822","fastandbulbous","10410","DXMBunny","kratom","114"
"155253","MachoManSavage","291968","servo75","kratom","114"
"1935","duchy ","127014","MikePatton","mdma","114"
"74033","TheSweetPea","291968","servo75","kratom","114"
"1868","Paderas","5733","Jatelka ","mdma","114"
"539","stndguy","1935","duchy ","mdma","114"
"43332","enhancion01","110776","PowerfulMedicine","dxm","114"
"1935","duchy ","57031","rhcpeppers1234","mdma","114"
"5733","Jatelka ","46865","dyingtomorrow","mdma","114"
"2822","fastandbulbous","13344","drewcil","kratom","114"
"1935","duchy ","3413","radiometer ","ghb","114"
"2822","fastandbulbous","57101","Terrapinzflyer ","mephedrone","114"
"5733","Jatelka ","6052","KomodoMK","mdma","114"
"2822","fastandbulbous","90006","Ghetto_Chem","kratom","114"
"1935","duchy ","4910","Fantasian","mdma","114"
"2822","fastandbulbous","74620","methuselah969","mephedrone","114"
"1935","duchy ","15832","JapanHorrorUncut","mdma","114"
"43332","enhancion01","98407","phenythylamine","dxm","114"
"1935","duchy ","119102","roastlamb123","mdma","114"
"5733","Jatelka ","6482","psychedelaholic","mdma","114"
"2822","fastandbulbous","273791","Roaddoggy","kratom","114"
"3413","radiometer ","291968","servo75","kratom","114"
"2822","fastandbulbous","8016","chillinwill","mephedrone","114"
"1","Alfa","5733","Jatelka ","mdma","114"
"5733","Jatelka ","54108","Alexander_Praves","mdma","114"
"1239","Nicaine","291968","servo75","kratom","114"
"3565","amd6568","43332","enhancion01","dxm","114"
"2577","Stingray_313 ","5733","Jatelka ","mdma","114"
"2822","fastandbulbous","46865","dyingtomorrow","kratom","114"
"1935","duchy ","63028","Smirnoff","mdma","114"
"2822","fastandbulbous","11411","supremedan","mephedrone","114"
"1935","duchy ","7946","788.4","mdma","114"
"43332","enhancion01","156304","PillMan","dxm","114"
"1935","duchy ","11411","supremedan","mdma","114"
"5733","Jatelka ","45583","Synesthesiac","mdma","114"
"2822","fastandbulbous","273439","marathonmel7","kratom","114"
"11835","El Calico Loco","43332","enhancion01","dxm","114"
"1935","duchy ","15564","Le Junk","mdma","114"
"2239","skilld","5733","Jatelka ","mdma","114"
"5733","Jatelka ","127014","MikePatton","mdma","114"
"273791","Roaddoggy","291968","servo75","kratom","114"
"2822","fastandbulbous","115136","trdofbeingtrd","kratom","114"
"1935","duchy ","2610","brainwaxd","mdma","114"
"788","mdve2","5733","Jatelka ","mdma","114"
"2822","fastandbulbous","62077","WTF O_o","mephedrone","114"
"43332","enhancion01","46889","port 21","dxm","114"
"62","BA","5733","Jatelka ","mdma","114"
"1935","duchy ","2239","skilld","mdma","114"
"5733","Jatelka ","54214","Zoidberg","mdma","114"
"2822","fastandbulbous","35486","NeuroChi","kratom","114"
"40911","rawbeer","291968","servo75","kratom","114"
"1526","Cuberun ","2822","fastandbulbous","mephedrone","114"
"1935","duchy ","4218","TheLight01","mdma","114"
"5733","Jatelka ","63028","Smirnoff","mdma","114"
"75","Leo.","5733","Jatelka ","mdma","114"
"2822","fastandbulbous","3413","radiometer ","kratom","114"
"1935","duchy ","2418","Phungushead","mdma","114"
"1","Alfa","2822","fastandbulbous","kratom","114"
"422","1933","1935","duchy ","mdma","114"
"2822","fastandbulbous","50050","Gradient","mephedrone","114"
"1842","nymphetamine","2822","fastandbulbous","mephedrone","114"
"1935","duchy ","79297","bostonnew","mdma","114"
"5733","Jatelka ","5750","pharmapsyche","mdma","114"
"1806","betty_bupe","1935","duchy ","mdma","114"
"3780","Kradle","43332","enhancion01","dxm","114"
"1935","duchy ","10467","WrtngCocaineTutorial","mdma","114"
"43332","enhancion01","202594","headfull0fstars","dxm","114"
"291968","servo75","294051","Jungledog","kratom","114"
"2763","bogumil","291968","servo75","kratom","114"
"2822","fastandbulbous","156304","PillMan","kratom","114"
"2822","fastandbulbous","3471","Potassium Kid","mephedrone","114"
"1562","soer","1935","duchy ","mdma","114"
"1935","duchy ","83387","PrincessJo x","mdma","114"
"1595","Curtains","5733","Jatelka ","mdma","114"
"5733","Jatelka ","19028","RochiWizz","mdma","114"
"1935","duchy ","10467","WrtngCocaineTutorial","viagra","114"
"2167","hard2core","43332","enhancion01","dxm","114"
"60","Sick Jack","5733","Jatelka ","mdma","114"
"3345","Unsolved","5733","Jatelka ","mdma","114"
"2822","fastandbulbous","291968","servo75","kratom","114"
"3732","Diphenhydramine","5733","Jatelka ","mdma","114"
"1915","curve","5733","Jatelka ","mdma","114"
"212335","Calyspical","291968","servo75","kratom","114"
"1935","duchy ","6052","KomodoMK","mdma","114"
"1842","nymphetamine","2822","fastandbulbous","kratom","114"
"56","Hollywood ","5733","Jatelka ","mdma","114"
"5733","Jatelka ","9351","M3th","mdma","114"
"2822","fastandbulbous","20234","ianzombie ","kratom","114"
"9","Freedom of Mind","43332","enhancion01","dxm","114"
"2418","Phungushead","2822","fastandbulbous","kratom","114"
"1935","duchy ","156304","PillMan","ghb","114"
"2822","fastandbulbous","20109","imyourlittlebare","mephedrone","114"
"135","sands of time","291968","servo75","kratom","114"
"1935","duchy ","45583","Synesthesiac","mdma","114"
"2281","billyloner ","5733","Jatelka ","mdma","114"
"5733","Jatelka ","90006","Ghetto_Chem","mdma","114"
"1868","Paderas","2822","fastandbulbous","mephedrone","114"
"157358","CrispCold","291968","servo75","kratom","114"
"2822","fastandbulbous","117995","dreamy","kratom","114"
"1842","nymphetamine","5733","Jatelka ","mdma","114"
"1935","duchy ","3345","Unsolved","mdma","114"
"43332","enhancion01","127711","Zhekarius","dxm","114"
"1935","duchy ","35993","Greenport","mdma","114"
"2418","Phungushead","5733","Jatelka ","mdma","114"
"2271","polloloco001 ","5733","Jatelka ","mdma","114"
"5733","Jatelka ","119102","roastlamb123","mdma","114"
"2200","par excellence.","43332","enhancion01","dxm","114"
"2822","fastandbulbous","118772","Mr_Spiffy","kratom","114"
"17829","LookingForHer","43332","enhancion01","dxm","114"
"1935","duchy ","96636","Mersann","ghb","114"
"2822","fastandbulbous","45583","Synesthesiac","mephedrone","114"
"4495","vhalin","5733","Jatelka ","mdma","114"
"1964","enquirewithin ","291968","servo75","kratom","114"
"1935","duchy ","54214","Zoidberg","mdma","114"
"5733","Jatelka ","180313","out_there","mdma","114"
"273439","marathonmel7","291968","servo75","kratom","114"
"2822","fastandbulbous","74033","TheSweetPea","kratom","114"
"2610","brainwaxd","5733","Jatelka ","mdma","114"
"1935","duchy ","7303","pankreeas ","mdma","114"
"234642","SuperCaesarKratomSalad","291968","servo75","kratom","114"
"9","Freedom of Mind","1935","duchy ","ghb","114"
"539","stndguy","5733","Jatelka ","mdma","114"
"43332","enhancion01","116985","Chug Chug Chug","dxm","114"
"1935","duchy ","4490","DJ-666","mdma","114"
"5733","Jatelka ","32247","Lettish","mdma","114"
"2822","fastandbulbous","127014","MikePatton","kratom","114"
"1935","duchy ","42985","EducatedUser408","ghb","114"
"2822","fastandbulbous","4092","trptamene ","mephedrone","114"
"275604","snowdrop","291968","servo75","kratom","114"
"115136","trdofbeingtrd","291968","servo75","kratom","114"
"102420","spicybrainsgirl","291968","servo75","kratom","114"
"5733","Jatelka ","45618","cannabis-sam","mdma","114"
"2822","fastandbulbous","234642","SuperCaesarKratomSalad","kratom","114"
"1935","duchy ","4495","vhalin","mdma","114"
"1868","Paderas","1935","duchy ","mdma","114"
"1935","duchy ","5750","pharmapsyche","mdma","114"
"43332","enhancion01","44584","Rightnow289","dxm","114"
"1935","duchy ","2577","Stingray_313 ","mdma","114"
"657","distilla_truant","43332","enhancion01","dxm","114"
"13344","drewcil","291968","servo75","kratom","114"
"5733","Jatelka ","79297","bostonnew","mdma","114"
"2822","fastandbulbous","4495","vhalin","kratom","114"
"2822","fastandbulbous","28015","riaahacker","mephedrone","114"
"5733","Jatelka ","59051","Priapism9","mdma","114"
"275468","Openmymind","291968","servo75","kratom","114"
"21315","Graduisic","43332","enhancion01","dxm","114"
"2822","fastandbulbous","40911","rawbeer","kratom","114"
"4218","TheLight01","5733","Jatelka ","mdma","114"
"1935","duchy ","57101","Terrapinzflyer ","mdma","114"
"2822","fastandbulbous","124017","LoveNwar","mephedrone","114"
"1935","duchy ","19028","RochiWizz","mdma","114"
"1","Alfa","1935","duchy ","ghb","114"
"43332","enhancion01","75764","lololsolid","dxm","114"
"1935","duchy ","2271","polloloco001 ","mdma","114"
"28015","riaahacker","291968","servo75","kratom","114"
"5733","Jatelka ","83387","PrincessJo x","mdma","114"
"2822","fastandbulbous","28015","riaahacker","kratom","114"
"1935","duchy ","90006","Ghetto_Chem","mdma","114"
"1","Alfa","1935","duchy ","mdma","114"
"5733","Jatelka ","7303","pankreeas ","mdma","114"
"1239","Nicaine","2822","fastandbulbous","kratom","114"
"4495","vhalin","291968","servo75","kratom","114"
"2822","fastandbulbous","102420","spicybrainsgirl","kratom","114"
"1935","duchy ","3732","Diphenhydramine","mdma","114"
"2822","fastandbulbous","57308","BoyInTheCountry","mephedrone","114"
"43332","enhancion01","161625","mrcowman","dxm","114"
"1935","duchy ","32247","Lettish","mdma","114"
"5733","Jatelka ","96636","Mersann","mdma","114"
"2822","fastandbulbous","294051","Jungledog","kratom","114"
"90006","Ghetto_Chem","291968","servo75","kratom","114"
"2709","risexagainst","5733","Jatelka ","mdma","114"
"1935","duchy ","2709","risexagainst","mdma","114"
"35486","NeuroChi","291968","servo75","kratom","114"
"5733","Jatelka ","57101","Terrapinzflyer ","mdma","114"
"313","RoboCop ","43332","enhancion01","dxm","114"
"1842","nymphetamine","1935","duchy ","ghb","114"
"2822","fastandbulbous","91040","Dankfish","kratom","114"
"1935","duchy ","35486","NeuroChi","mdma","114"
"1","Alfa","291968","servo75","kratom","114"
"422","1933","5733","Jatelka ","mdma","114"
"788","mdve2","1935","duchy ","mdma","114"
"2822","fastandbulbous","96636","Mersann","mephedrone","114"
"43332","enhancion01","180313","out_there","dxm","114"
"62","BA","1935","duchy ","mdma","114"
"1935","duchy ","46865","dyingtomorrow","mdma","114"
"5733","Jatelka ","124017","LoveNwar","mdma","114"
"1806","betty_bupe","5733","Jatelka ","mdma","114"
"18724","AirO","43332","enhancion01","dxm","114"
"1935","duchy ","180313","out_there","mdma","114"
"5733","Jatelka ","35486","NeuroChi","mdma","114"
"103726","seaturtle","291968","servo75","kratom","114"
"8671","Richard_smoker","43332","enhancion01","dxm","114"
"75","Leo.","1935","duchy ","mdma","114"
"2822","fastandbulbous","275468","Openmymind","kratom","114"
"2822","fastandbulbous","5750","pharmapsyche","mephedrone","114"
"1562","soer","5733","Jatelka ","mdma","114"
"28015","riaahacker","43332","enhancion01","dxm","114"
"10467","WrtngCocaineTutorial","129304","Dankitydankness","mdma","113"
"1521","Smarthead","13344","drewcil","kratom","113"
"1595","Curtains","129304","Dankitydankness","mdma","113"
"45583","Synesthesiac","129304","Dankitydankness","mdma","113"
"60","Sick Jack","129304","Dankitydankness","mdma","113"
"3345","Unsolved","129304","Dankitydankness","mdma","113"
"105712","boy_char","127014","MikePatton","methadone","113"
"3732","Diphenhydramine","129304","Dankitydankness","mdma","113"
"1915","curve","129304","Dankitydankness","mdma","113"
"7946","788.4","105712","boy_char","methadone","113"
"3299","anabolictrio","105712","boy_char","suboxone","113"
"11411","supremedan","129304","Dankitydankness","mdma","113"
"1521","Smarthead","46865","dyingtomorrow","kratom","113"
"56","Hollywood ","129304","Dankitydankness","mdma","113"
"9019","Forthesevenlakes","105712","boy_char","subutex","113"
"105712","boy_char","118772","Mr_Spiffy","suboxone","113"
"9904","Benzeneringz","256377","detoxin momma","tramadol","113"
"135","sands of time","1521","Smarthead","kratom","113"
"1521","Smarthead","273791","Roaddoggy","kratom","113"
"2281","billyloner ","129304","Dankitydankness","mdma","113"
"1868","Paderas","70276","tripolar","mephedrone","113"
"20109","imyourlittlebare","70276","tripolar","mephedrone","113"
"105712","boy_char","202594","headfull0fstars","methadone","113"
"1","Alfa","9904","Benzeneringz","tramadol","113"
"1842","nymphetamine","129304","Dankitydankness","mdma","113"
"9904","Benzeneringz","156304","PillMan","tramadol","113"
"1521","Smarthead","1964","enquirewithin ","kratom","113"
"2418","Phungushead","129304","Dankitydankness","mdma","113"
"2271","polloloco001 ","129304","Dankitydankness","mdma","113"
"35993","Greenport","129304","Dankitydankness","mdma","113"
"1595","Curtains","105712","boy_char","vicodin","113"
"4495","vhalin","129304","Dankitydankness","mdma","113"
"15832","JapanHorrorUncut","129304","Dankitydankness","mdma","113"
"1521","Smarthead","273439","marathonmel7","kratom","113"
"16700","beena","105712","boy_char","methadone","113"
"2610","brainwaxd","129304","Dankitydankness","mdma","113"
"27864","G_nome","105712","boy_char","methadone","113"
"9904","Benzeneringz","127014","MikePatton","tramadol","113"
"539","stndguy","129304","Dankitydankness","mdma","113"
"45599","On The Nod","105712","boy_char","subutex","113"
"1521","Smarthead","91040","Dankfish","kratom","113"
"3299","anabolictrio","105712","boy_char","subutex","113"
"63028","Smirnoff","129304","Dankitydankness","mdma","113"
"57308","BoyInTheCountry","70276","tripolar","mephedrone","113"
"49040","rokman nash","105712","boy_char","vicodin","113"
"1521","Smarthead","1842","nymphetamine","kratom","113"
"9904","Benzeneringz","28015","riaahacker","tramadol","113"
"1521","Smarthead","275468","Openmymind","kratom","113"
"102420","spicybrainsgirl","105712","boy_char","methadone","113"
"1521","Smarthead","2418","Phungushead","kratom","113"
"57031","rhcpeppers1234","129304","Dankitydankness","mdma","113"
"6482","psychedelaholic","129304","Dankitydankness","mdma","113"
"46865","dyingtomorrow","129304","Dankitydankness","mdma","113"
"1842","nymphetamine","9904","Benzeneringz","tramadol","113"
"1521","Smarthead","2822","fastandbulbous","kratom","113"
"35486","NeuroChi","105712","boy_char","subutex","113"
"46446","EyesOfTheWorld","105712","boy_char","methadone","113"
"4495","vhalin","105712","boy_char","vicodin","113"
"4218","TheLight01","129304","Dankitydankness","mdma","113"
"79297","bostonnew","129304","Dankitydankness","mdma","113"
"9904","Benzeneringz","35486","NeuroChi","tramadol","113"
"1521","Smarthead","155253","MachoManSavage","kratom","113"
"45618","cannabis-sam","105712","boy_char","methadone","113"
"105712","boy_char","198055","yem69420","methadone","113"
"59051","Priapism9","129304","Dankitydankness","mdma","113"
"6201","SkUnKaDeLiC","105712","boy_char","methadone","113"
"45599","On The Nod","105712","boy_char","methadone","113"
"16489","baron samedi","105712","boy_char","methadone","113"
"1521","Smarthead","117995","dreamy","kratom","113"
"119102","roastlamb123","129304","Dankitydankness","mdma","113"
"1842","nymphetamine","105712","boy_char","vicodin","113"
"46865","dyingtomorrow","105712","boy_char","methadone","113"
"58307","missparkles ","105712","boy_char","methadone","113"
"1521","Smarthead","20234","ianzombie ","kratom","113"
"5750","pharmapsyche","129304","Dankitydankness","mdma","113"
"102420","spicybrainsgirl","105712","boy_char","subutex","113"
"105712","boy_char","170641","jimmym321","methadone","113"
"2709","risexagainst","129304","Dankitydankness","mdma","113"
"83387","PrincessJo x","129304","Dankitydankness","mdma","113"
"1521","Smarthead","74033","TheSweetPea","kratom","113"
"54214","Zoidberg","129304","Dankitydankness","mdma","113"
"1","Alfa","1521","Smarthead","kratom","113"
"422","1933","129304","Dankitydankness","mdma","113"
"105712","boy_char","280861","Hydroxyout","subutex","113"
"16345","IkBenDeMan","105712","boy_char","methadone","113"
"9904","Benzeneringz","148228","livespd","tramadol","113"
"1521","Smarthead","118772","Mr_Spiffy","kratom","113"
"9","Freedom of Mind","105712","boy_char","vicodin","113"
"70276","tripolar","124017","LoveNwar","mephedrone","113"
"1806","betty_bupe","129304","Dankitydankness","mdma","113"
"105712","boy_char","118772","Mr_Spiffy","methadone","113"
"50050","Gradient","70276","tripolar","mephedrone","113"
"45618","cannabis-sam","129304","Dankitydankness","mdma","113"
"1521","Smarthead","234642","SuperCaesarKratomSalad","kratom","113"
"1281","mmk271","105712","boy_char","methadone","113"
"105712","boy_char","268087","Pbnjesse","suboxone","113"
"9351","M3th","129304","Dankitydankness","mdma","113"
"1562","soer","129304","Dankitydankness","mdma","113"
"9904","Benzeneringz","201049","ak2Ut","tramadol","113"
"1521","Smarthead","127014","MikePatton","kratom","113"
"54108","Alexander_Praves","129304","Dankitydankness","mdma","113"
"102420","spicybrainsgirl","105712","boy_char","suboxone","113"
"63028","Smirnoff","105712","boy_char","methadone","113"
"105712","boy_char","194301","rosielee","methadone","113"
"153","blaze","70276","tripolar","mephedrone","113"
"1521","Smarthead","40911","rawbeer","kratom","113"
"5733","Jatelka ","129304","Dankitydankness","mdma","113"
"105712","boy_char","211963","WoodyCA","suboxone","113"
"90006","Ghetto_Chem","129304","Dankitydankness","mdma","113"
"96636","Mersann","129304","Dankitydankness","mdma","113"
"9904","Benzeneringz","41143","RoboCodeine7610","tramadol","113"
"79947","TheBigBadWolf","105712","boy_char","methadone","113"
"4910","Fantasian","129304","Dankitydankness","mdma","113"
"1521","Smarthead","4495","vhalin","kratom","113"
"105712","boy_char","115136","trdofbeingtrd","methadone","113"
"1935","duchy ","129304","Dankitydankness","mdma","113"
"1521","Smarthead","102420","spicybrainsgirl","kratom","113"
"1842","nymphetamine","105712","boy_char","methadone","113"
"105712","boy_char","115136","trdofbeingtrd","suboxone","113"
"45599","On The Nod","105712","boy_char","suboxone","113"
"9904","Benzeneringz","180313","out_there","tramadol","113"
"1521","Smarthead","28015","riaahacker","kratom","113"
"9904","Benzeneringz","45618","cannabis-sam","tramadol","113"
"100767","missinglfe","105712","boy_char","methadone","113"
"11411","supremedan","70276","tripolar","mephedrone","113"
"1521","Smarthead","115136","trdofbeingtrd","kratom","113"
"35486","NeuroChi","105712","boy_char","vicodin","113"
"1","Alfa","70276","tripolar","mephedrone","113"
"46865","dyingtomorrow","105712","boy_char","vicodin","113"
"2418","Phungushead","9904","Benzeneringz","tramadol","113"
"4490","DJ-666","129304","Dankitydankness","mdma","113"
"102824","natey7","105712","boy_char","methadone","113"
"1521","Smarthead","294051","Jungledog","kratom","113"
"45583","Synesthesiac","70276","tripolar","mephedrone","113"
"19028","RochiWizz","129304","Dankitydankness","mdma","113"
"28015","riaahacker","105712","boy_char","vicodin","113"
"9904","Benzeneringz","63028","Smirnoff","tramadol","113"
"1868","Paderas","129304","Dankitydankness","mdma","113"
"1595","Curtains","105712","boy_char","methadone","113"
"15564","Le Junk","129304","Dankitydankness","mdma","113"
"124017","LoveNwar","129304","Dankitydankness","mdma","113"
"53567","buzzman","70276","tripolar","mephedrone","113"
"1521","Smarthead","3413","radiometer ","kratom","113"
"4495","vhalin","70276","tripolar","mephedrone","113"
"62096","Cooki ","105712","boy_char","methadone","113"
"2066","~lostgurl~ ","105712","boy_char","vicodin","113"
"62077","WTF O_o","70276","tripolar","mephedrone","113"
"1521","Smarthead","35486","NeuroChi","kratom","113"
"2418","Phungushead","105712","boy_char","methadone","113"
"1521","Smarthead","291968","servo75","kratom","113"
"46865","dyingtomorrow","105712","boy_char","subutex","113"
"18965","beentheredonethatagain","105712","boy_char","methadone","113"
"9904","Benzeneringz","38632","PilL FreaK","tramadol","113"
"2822","fastandbulbous","70276","tripolar","mephedrone","113"
"83387","PrincessJo x","105712","boy_char","vicodin","113"
"1521","Smarthead","156304","PillMan","kratom","113"
"102420","spicybrainsgirl","105712","boy_char","vicodin","113"
"57101","Terrapinzflyer ","129304","Dankitydankness","mdma","113"
"105712","boy_char","268087","Pbnjesse","methadone","113"
"56","Hollywood ","9904","Benzeneringz","tramadol","113"
"1","Alfa","129304","Dankitydankness","mdma","113"
"1239","Nicaine","1521","Smarthead","kratom","113"
"1521","Smarthead","212335","Calyspical","kratom","113"
"3471","Potassium Kid","70276","tripolar","mephedrone","113"
"28015","riaahacker","70276","tripolar","mephedrone","113"
"2577","Stingray_313 ","129304","Dankitydankness","mdma","113"
"28015","riaahacker","105712","boy_char","methadone","113"
"105712","boy_char","211963","WoodyCA","vicodin","113"
"46446","EyesOfTheWorld","105712","boy_char","suboxone","113"
"9019","Forthesevenlakes","105712","boy_char","suboxone","113"
"1521","Smarthead","2763","bogumil","kratom","113"
"8016","chillinwill","70276","tripolar","mephedrone","113"
"81101","source","105712","boy_char","methadone","113"
"5750","pharmapsyche","70276","tripolar","mephedrone","113"
"46865","dyingtomorrow","105712","boy_char","suboxone","113"
"129304","Dankitydankness","180313","out_there","mdma","113"
"35486","NeuroChi","105712","boy_char","suboxone","113"
"105712","boy_char","230750","MoreGutzThanGlory","methadone","113"
"127014","MikePatton","129304","Dankitydankness","mdma","113"
"2239","skilld","129304","Dankitydankness","mdma","113"
"35486","NeuroChi","105712","boy_char","methadone","113"
"1521","Smarthead","275604","snowdrop","kratom","113"
"7303","pankreeas ","129304","Dankitydankness","mdma","113"
"7946","788.4","129304","Dankitydankness","mdma","113"
"28899","Esmerelda","105712","boy_char","methadone","113"
"105712","boy_char","268087","Pbnjesse","subutex","113"
"788","mdve2","129304","Dankitydankness","mdma","113"
"6052","KomodoMK","129304","Dankitydankness","mdma","113"
"1753","kailey_elise ","105712","boy_char","methadone","113"
"62","BA","129304","Dankitydankness","mdma","113"
"1521","Smarthead","103726","seaturtle","kratom","113"
"35486","NeuroChi","129304","Dankitydankness","mdma","113"
"32247","Lettish","129304","Dankitydankness","mdma","113"
"70276","tripolar","74620","methuselah969","mephedrone","113"
"4910","Fantasian","105712","boy_char","methadone","113"
"105712","boy_char","273791","Roaddoggy","methadone","113"
"4092","trptamene ","70276","tripolar","mephedrone","113"
"1526","Cuberun ","70276","tripolar","mephedrone","113"
"57101","Terrapinzflyer ","70276","tripolar","mephedrone","113"
"9","Freedom of Mind","9904","Benzeneringz","tramadol","113"
"1521","Smarthead","10410","DXMBunny","kratom","113"
"75","Leo.","129304","Dankitydankness","mdma","113"
"105712","boy_char","211963","WoodyCA","subutex","113"
"9904","Benzeneringz","111239","whocaresdude91","tramadol","113"
"1842","nymphetamine","70276","tripolar","mephedrone","113"
"1521","Smarthead","157358","CrispCold","kratom","113"
"62508","Makesmefeelbig","70276","tripolar","mephedrone","113"
"70276","tripolar","96636","Mersann","mephedrone","113"
"105712","boy_char","181260","Kitts","methadone","113"
"90006","Ghetto_Chem","105712","boy_char","suboxone","113"
"1521","Smarthead","90006","Ghetto_Chem","kratom","113"
"4495","vhalin","9904","Benzeneringz","tramadol","113"
"105712","boy_char","201049","ak2Ut","suboxone","113"
"9904","Benzeneringz","96636","Mersann","tramadol","113"
"4910","Fantasian","41207","NeuroMD","mdma","112"
"10467","WrtngCocaineTutorial","96636","Mersann","ghb","112"
"9904","Benzeneringz","63028","Smirnoff","methadone","112"
"4777","IHrtHalucingens","9904","Benzeneringz","lorazepam","112"
"9904","Benzeneringz","220080","Lunaciel","oxycodone","112"
"1935","duchy ","41207","NeuroMD","mdma","112"
"1714","magicmaster141","9904","Benzeneringz","clonazepam","112"
"41207","NeuroMD","45583","Synesthesiac","mdma","112"
"1842","nymphetamine","9904","Benzeneringz","methadone","112"
"3167","bubaloo","9904","Benzeneringz","clonazepam","112"
"9904","Benzeneringz","180313","out_there","clonazepam","112"
"1935","duchy ","10467","WrtngCocaineTutorial","ghb","112"
"9904","Benzeneringz","170641","jimmym321","methadone","112"
"5010","snapper ","9904","Benzeneringz","kava","112"
"10467","WrtngCocaineTutorial","42985","EducatedUser408","ghb","112"
"9904","Benzeneringz","115136","trdofbeingtrd","methadone","112"
"9904","Benzeneringz","68194","baZING","oxycodone","112"
"1842","nymphetamine","9904","Benzeneringz","lorazepam","112"
"41207","NeuroMD","54214","Zoidberg","mdma","112"
"9904","Benzeneringz","63028","Smirnoff","clonazepam","112"
"1842","nymphetamine","9904","Benzeneringz","kava","112"
"5010","snapper ","9904","Benzeneringz","lorazepam","112"
"9904","Benzeneringz","16489","baron samedi","methadone","112"
"2418","Phungushead","9904","Benzeneringz","oxycodone","112"
"4490","DJ-666","41207","NeuroMD","mdma","112"
"19028","RochiWizz","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","28015","riaahacker","methadone","112"
"1868","Paderas","41207","NeuroMD","mdma","112"
"1595","Curtains","9904","Benzeneringz","methadone","112"
"15564","Le Junk","41207","NeuroMD","mdma","112"
"9","Freedom of Mind","10467","WrtngCocaineTutorial","ghb","112"
"9904","Benzeneringz","156304","PillMan","oxycodone","112"
"4264","will","12819","blinkKDX","fentanyl","112"
"41207","NeuroMD","90006","Ghetto_Chem","mdma","112"
"9904","Benzeneringz","273791","Roaddoggy","methadone","112"
"2418","Phungushead","9904","Benzeneringz","methadone","112"
"4495","vhalin","9904","Benzeneringz","kava","112"
"9904","Benzeneringz","35486","NeuroChi","methadone","112"
"401","peggs16","9904","Benzeneringz","clonazepam","112"
"9904","Benzeneringz","63028","Smirnoff","oxycodone","112"
"41207","NeuroMD","45618","cannabis-sam","mdma","112"
"12819","blinkKDX","46446","EyesOfTheWorld","fentanyl","112"
"7946","788.4","9904","Benzeneringz","oxycodone","112"
"9904","Benzeneringz","81101","source","methadone","112"
"1","Alfa","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","35591","AACrazy2892","oxycodone","112"
"2577","Stingray_313 ","41207","NeuroMD","mdma","112"
"3167","bubaloo","9904","Benzeneringz","lorazepam","112"
"9904","Benzeneringz","180313","out_there","lorazepam","112"
"9904","Benzeneringz","268087","Pbnjesse","methadone","112"
"9904","Benzeneringz","46865","dyingtomorrow","oxycodone","112"
"41207","NeuroMD","54108","Alexander_Praves","mdma","112"
"12819","blinkKDX","35486","NeuroChi","fentanyl","112"
"9904","Benzeneringz","118772","Mr_Spiffy","methadone","112"
"2239","skilld","41207","NeuroMD","mdma","112"
"1","Alfa","10467","WrtngCocaineTutorial","ghb","112"
"9904","Benzeneringz","135119","pup555","oxycodone","112"
"9904","Benzeneringz","11411","supremedan","kava","112"
"7303","pankreeas ","41207","NeuroMD","mdma","112"
"7946","788.4","41207","NeuroMD","mdma","112"
"788","mdve2","41207","NeuroMD","mdma","112"
"6052","KomodoMK","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","62096","Cooki ","methadone","112"
"1753","kailey_elise ","9904","Benzeneringz","methadone","112"
"62","BA","41207","NeuroMD","mdma","112"
"41207","NeuroMD","57101","Terrapinzflyer ","mdma","112"
"35486","NeuroChi","41207","NeuroMD","mdma","112"
"32247","Lettish","41207","NeuroMD","mdma","112"
"4910","Fantasian","9904","Benzeneringz","methadone","112"
"9904","Benzeneringz","100767","missinglfe","methadone","112"
"9904","Benzeneringz","65726","ellavader","oxycodone","112"
"1842","nymphetamine","10467","WrtngCocaineTutorial","ghb","112"
"41207","NeuroMD","57031","rhcpeppers1234","mdma","112"
"75","Leo.","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","11877","howlongisthenight","kava","112"
"9904","Benzeneringz","16700","beena","methadone","112"
"3413","radiometer ","10467","WrtngCocaineTutorial","ghb","112"
"2539","Beltane","9904","Benzeneringz","clonazepam","112"
"9904","Benzeneringz","45618","cannabis-sam","methadone","112"
"9904","Benzeneringz","45599","On The Nod","oxycodone","112"
"9781","cutiepie","9904","Benzeneringz","oxycodone","112"
"41207","NeuroMD","46865","dyingtomorrow","mdma","112"
"9904","Benzeneringz","18965","beentheredonethatagain","methadone","112"
"10467","WrtngCocaineTutorial","41207","NeuroMD","mdma","112"
"1595","Curtains","41207","NeuroMD","mdma","112"
"60","Sick Jack","41207","NeuroMD","mdma","112"
"3345","Unsolved","41207","NeuroMD","mdma","112"
"1714","magicmaster141","9904","Benzeneringz","lorazepam","112"
"10467","WrtngCocaineTutorial","13022","MrG","ghb","112"
"9904","Benzeneringz","127014","MikePatton","methadone","112"
"3732","Diphenhydramine","41207","NeuroMD","mdma","112"
"1684","CABS205","9904","Benzeneringz","kava","112"
"2418","Phungushead","9904","Benzeneringz","clonazepam","112"
"1915","curve","41207","NeuroMD","mdma","112"
"4777","IHrtHalucingens","9904","Benzeneringz","clonazepam","112"
"7946","788.4","9904","Benzeneringz","methadone","112"
"11411","supremedan","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","108860","Pain Hurts","oxycodone","112"
"9","Freedom of Mind","9904","Benzeneringz","lorazepam","112"
"56","Hollywood ","41207","NeuroMD","mdma","112"
"41207","NeuroMD","83387","PrincessJo x","mdma","112"
"9904","Benzeneringz","230750","MoreGutzThanGlory","clonazepam","112"
"9904","Benzeneringz","27864","G_nome","methadone","112"
"2281","billyloner ","41207","NeuroMD","mdma","112"
"9","Freedom of Mind","9904","Benzeneringz","clonazepam","112"
"10467","WrtngCocaineTutorial","180313","out_there","ghb","112"
"9904","Benzeneringz","45599","On The Nod","methadone","112"
"1842","nymphetamine","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","211963","WoodyCA","oxycodone","112"
"2418","Phungushead","41207","NeuroMD","mdma","112"
"2271","polloloco001 ","41207","NeuroMD","mdma","112"
"35993","Greenport","41207","NeuroMD","mdma","112"
"41207","NeuroMD","96636","Mersann","mdma","112"
"9904","Benzeneringz","202594","headfull0fstars","clonazepam","112"
"3375","MrJim","9904","Benzeneringz","oxycodone","112"
"9904","Benzeneringz","58307","missparkles ","methadone","112"
"4495","vhalin","41207","NeuroMD","mdma","112"
"15832","JapanHorrorUncut","41207","NeuroMD","mdma","112"
"56","Hollywood ","9904","Benzeneringz","clonazepam","112"
"9904","Benzeneringz","202594","headfull0fstars","methadone","112"
"2610","brainwaxd","41207","NeuroMD","mdma","112"
"539","stndguy","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","118772","Mr_Spiffy","oxycodone","112"
"7303","pankreeas ","9904","Benzeneringz","oxycodone","112"
"41207","NeuroMD","124017","LoveNwar","mdma","112"
"9904","Benzeneringz","79947","TheBigBadWolf","methadone","112"
"9904","Benzeneringz","46865","dyingtomorrow","methadone","112"
"9904","Benzeneringz","180313","out_there","oxycodone","112"
"1842","nymphetamine","12819","blinkKDX","fentanyl","112"
"41207","NeuroMD","180313","out_there","mdma","112"
"12819","blinkKDX","39479","thebige","fentanyl","112"
"9904","Benzeneringz","28899","Esmerelda","methadone","112"
"3375","MrJim","12819","blinkKDX","fentanyl","112"
"6482","psychedelaholic","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","220080","Lunaciel","lorazepam","112"
"4218","TheLight01","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","105712","boy_char","methadone","112"
"9904","Benzeneringz","294051","Jungledog","oxycodone","112"
"41207","NeuroMD","59051","Priapism9","mdma","112"
"12819","blinkKDX","16700","beena","fentanyl","112"
"9904","Benzeneringz","46446","EyesOfTheWorld","methadone","112"
"6201","SkUnKaDeLiC","9904","Benzeneringz","methadone","112"
"9904","Benzeneringz","11411","supremedan","oxycodone","112"
"6201","SkUnKaDeLiC","9904","Benzeneringz","clonazepam","112"
"9904","Benzeneringz","10891","Bajeda ","kava","112"
"9904","Benzeneringz","198055","yem69420","methadone","112"
"9904","Benzeneringz","35486","NeuroChi","oxycodone","112"
"56","Hollywood ","9904","Benzeneringz","oxycodone","112"
"41207","NeuroMD","127014","MikePatton","mdma","112"
"5750","pharmapsyche","41207","NeuroMD","mdma","112"
"6201","SkUnKaDeLiC","9904","Benzeneringz","lorazepam","112"
"2709","risexagainst","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","181260","Kitts","methadone","112"
"4495","vhalin","9904","Benzeneringz","oxycodone","112"
"9904","Benzeneringz","83387","PrincessJo x","oxycodone","112"
"41207","NeuroMD","129304","Dankitydankness","mdma","112"
"9904","Benzeneringz","90006","Ghetto_Chem","kava","112"
"422","1933","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","230750","MoreGutzThanGlory","methadone","112"
"41207","NeuroMD","63028","Smirnoff","mdma","112"
"1806","betty_bupe","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","194301","rosielee","methadone","112"
"9904","Benzeneringz","280861","Hydroxyout","oxycodone","112"
"41207","NeuroMD","119102","roastlamb123","mdma","112"
"1281","mmk271","9904","Benzeneringz","methadone","112"
"9904","Benzeneringz","63028","Smirnoff","kava","112"
"9351","M3th","41207","NeuroMD","mdma","112"
"9904","Benzeneringz","16345","IkBenDeMan","methadone","112"
"1562","soer","41207","NeuroMD","mdma","112"
"10467","WrtngCocaineTutorial","156304","PillMan","ghb","112"
"56","Hollywood ","12819","blinkKDX","fentanyl","112"
"9904","Benzeneringz","102824","natey7","methadone","112"
"9904","Benzeneringz","207982","tryinghard","oxycodone","112"
"1842","nymphetamine","9904","Benzeneringz","oxycodone","112"
"5733","Jatelka ","41207","NeuroMD","mdma","112"
"41207","NeuroMD","79297","bostonnew","mdma","112"
"3299","anabolictrio","12819","blinkKDX","fentanyl","112"
"5733","Jatelka ","9904","Benzeneringz","clonazepam","112"
"9904","Benzeneringz","102420","spicybrainsgirl","methadone","112"
"100767","missinglfe","112582","tryinmybest","methadone","111"
"11411","supremedan","68044","fanyovsky","mephedrone","111"
"1","Alfa","68044","fanyovsky","mephedrone","111"
"112582","tryinmybest","268087","Pbnjesse","methadone","111"
"102824","natey7","112582","tryinmybest","methadone","111"
"45583","Synesthesiac","68044","fanyovsky","mephedrone","111"
"53567","buzzman","68044","fanyovsky","mephedrone","111"
"4495","vhalin","68044","fanyovsky","mephedrone","111"
"62096","Cooki ","112582","tryinmybest","methadone","111"
"62077","WTF O_o","68044","fanyovsky","mephedrone","111"
"112582","tryinmybest","230750","MoreGutzThanGlory","methadone","111"
"18965","beentheredonethatagain","112582","tryinmybest","methadone","111"
"2822","fastandbulbous","68044","fanyovsky","mephedrone","111"
"9904","Benzeneringz","112582","tryinmybest","methadone","111"
"105712","boy_char","112582","tryinmybest","methadone","111"
"112582","tryinmybest","273791","Roaddoggy","methadone","111"
"6201","SkUnKaDeLiC","112582","tryinmybest","methadone","111"
"3471","Potassium Kid","68044","fanyovsky","mephedrone","111"
"28015","riaahacker","68044","fanyovsky","mephedrone","111"
"28015","riaahacker","112582","tryinmybest","methadone","111"
"8016","chillinwill","68044","fanyovsky","mephedrone","111"
"81101","source","112582","tryinmybest","methadone","111"
"5750","pharmapsyche","68044","fanyovsky","mephedrone","111"
"112582","tryinmybest","181260","Kitts","methadone","111"
"35486","NeuroChi","112582","tryinmybest","methadone","111"
"28899","Esmerelda","112582","tryinmybest","methadone","111"
"4092","trptamene ","68044","fanyovsky","mephedrone","111"
"112582","tryinmybest","127014","MikePatton","methadone","111"
"1526","Cuberun ","68044","fanyovsky","mephedrone","111"
"57101","Terrapinzflyer ","68044","fanyovsky","mephedrone","111"
"1281","mmk271","112582","tryinmybest","methadone","111"
"68044","fanyovsky","74620","methuselah969","mephedrone","111"
"1842","nymphetamine","68044","fanyovsky","mephedrone","111"
"62508","Makesmefeelbig","68044","fanyovsky","mephedrone","111"
"112582","tryinmybest","202594","headfull0fstars","methadone","111"
"68044","fanyovsky","96636","Mersann","mephedrone","111"
"1842","nymphetamine","112582","tryinmybest","methadone","111"
"1868","Paderas","68044","fanyovsky","mephedrone","111"
"20109","imyourlittlebare","68044","fanyovsky","mephedrone","111"
"16700","beena","112582","tryinmybest","methadone","111"
"27864","G_nome","112582","tryinmybest","methadone","111"
"1595","Curtains","112582","tryinmybest","methadone","111"
"112582","tryinmybest","198055","yem69420","methadone","111"
"57308","BoyInTheCountry","68044","fanyovsky","mephedrone","111"
"2418","Phungushead","112582","tryinmybest","methadone","111"
"102420","spicybrainsgirl","112582","tryinmybest","methadone","111"
"112582","tryinmybest","170641","jimmym321","methadone","111"
"46446","EyesOfTheWorld","112582","tryinmybest","methadone","111"
"45618","cannabis-sam","112582","tryinmybest","methadone","111"
"112582","tryinmybest","118772","Mr_Spiffy","methadone","111"
"45599","On The Nod","112582","tryinmybest","methadone","111"
"16489","baron samedi","112582","tryinmybest","methadone","111"
"46865","dyingtomorrow","112582","tryinmybest","methadone","111"
"58307","missparkles ","112582","tryinmybest","methadone","111"
"1753","kailey_elise ","112582","tryinmybest","methadone","111"
"4910","Fantasian","112582","tryinmybest","methadone","111"
"112582","tryinmybest","194301","rosielee","methadone","111"
"68044","fanyovsky","70276","tripolar","mephedrone","111"
"16345","IkBenDeMan","112582","tryinmybest","methadone","111"
"112582","tryinmybest","115136","trdofbeingtrd","methadone","111"
"50050","Gradient","68044","fanyovsky","mephedrone","111"
"68044","fanyovsky","124017","LoveNwar","mephedrone","111"
"63028","Smirnoff","112582","tryinmybest","methadone","111"
"153","blaze","68044","fanyovsky","mephedrone","111"
"79947","TheBigBadWolf","112582","tryinmybest","methadone","111"
"7946","788.4","112582","tryinmybest","methadone","111"
"46446","EyesOfTheWorld","69047","lease25","xanax","110"
"46865","dyingtomorrow","69047","lease25","valium","110"
"1868","Paderas","63391","Tamis","mephedrone","110"
"2418","Phungushead","69047","lease25","buprenorphine","110"
"410","Sitbcknchill ","46865","dyingtomorrow","adderall","110"
"20109","imyourlittlebare","63391","Tamis","mephedrone","110"
"28015","riaahacker","111239","whocaresdude91","ritalin","110"
"1","Alfa","410","Sitbcknchill ","adderall","110"
"69047","lease25","297036","supermono","xanax","110"
"6201","SkUnKaDeLiC","69047","lease25","xanax","110"
"63028","Smirnoff","69047","lease25","xanax","110"
"45618","cannabis-sam","198055","yem69420","hydrocodone","110"
"45599","On The Nod","69047","lease25","suboxone","110"
"69047","lease25","100767","missinglfe","methadone","110"
"1112","hh339 ","111239","whocaresdude91","ritalin","110"
"4777","IHrtHalucingens","69047","lease25","valium","110"
"16700","beena","69047","lease25","methadone","110"
"410","Sitbcknchill ","202594","headfull0fstars","adderall","110"
"2418","Phungushead","69047","lease25","valium","110"
"27864","G_nome","69047","lease25","methadone","110"
"18965","beentheredonethatagain","69047","lease25","valium","110"
"1595","Curtains","69047","lease25","methadone","110"
"69047","lease25","211963","WoodyCA","xanax","110"
"410","Sitbcknchill ","107312","FinnishPharmer","adderall","110"
"57308","BoyInTheCountry","63391","Tamis","mephedrone","110"
"1842","nymphetamine","69047","lease25","xanax","110"
"69047","lease25","102824","natey7","methadone","110"
"41143","RoboCodeine7610","69047","lease25","valium","110"
"1808","xxgaretjaxx","69047","lease25","xanax","110"
"2418","Phungushead","69047","lease25","methadone","110"
"743","madman3l6","69047","lease25","xanax","110"
"28899","Esmerelda","69047","lease25","valium","110"
"410","Sitbcknchill ","4495","vhalin","adderall","110"
"1180","Creeping Death ","69047","lease25","valium","110"
"69047","lease25","96636","Mersann","valium","110"
"410","Sitbcknchill ","10663","fizzle","adderall","110"
"9019","Forthesevenlakes","69047","lease25","buprenorphine","110"
"69047","lease25","115136","trdofbeingtrd","methadone","110"
"4495","vhalin","69047","lease25","xanax","110"
"69047","lease25","105712","boy_char","methadone","110"
"9","Freedom of Mind","198055","yem69420","hydrocodone","110"
"410","Sitbcknchill ","1868","Paderas","adderall","110"
"3299","anabolictrio","69047","lease25","valium","110"
"46446","EyesOfTheWorld","69047","lease25","methadone","110"
"63391","Tamis","70276","tripolar","mephedrone","110"
"11411","supremedan","69047","lease25","xanax","110"
"4495","vhalin","198055","yem69420","hydrocodone","110"
"45618","cannabis-sam","69047","lease25","methadone","110"
"69047","lease25","180313","out_there","temazepam","110"
"8569","johnnyvoid","69047","lease25","valium","110"
"1239","Nicaine","69047","lease25","valium","110"
"28899","Esmerelda","69047","lease25","xanax","110"
"410","Sitbcknchill ","46446","EyesOfTheWorld","adderall","110"
"35486","NeuroChi","69047","lease25","xanax","110"
"41143","RoboCodeine7610","111239","whocaresdude91","ritalin","110"
"69047","lease25","102824","natey7","iboga","110"
"56","Hollywood ","410","Sitbcknchill ","adderall","110"
"69047","lease25","198055","yem69420","methadone","110"
"45599","On The Nod","69047","lease25","methadone","110"
"16489","baron samedi","69047","lease25","methadone","110"
"410","Sitbcknchill ","28015","riaahacker","adderall","110"
"63391","Tamis","124017","LoveNwar","mephedrone","110"
"46446","EyesOfTheWorld","69047","lease25","suboxone","110"
"46865","dyingtomorrow","69047","lease25","methadone","110"
"9019","Forthesevenlakes","69047","lease25","suboxone","110"
"58307","missparkles ","69047","lease25","methadone","110"
"1753","kailey_elise ","69047","lease25","methadone","110"
"41143","RoboCodeine7610","69047","lease25","xanax","110"
"69047","lease25","268087","Pbnjesse","suboxone","110"
"46865","dyingtomorrow","69047","lease25","suboxone","110"
"401","peggs16","69047","lease25","xanax","110"
"410","Sitbcknchill ","65638","Pieces Mended","adderall","110"
"4910","Fantasian","69047","lease25","methadone","110"
"35486","NeuroChi","69047","lease25","suboxone","110"
"69047","lease25","96636","Mersann","buprenorphine","110"
"69047","lease25","102420","spicybrainsgirl","methadone","110"
"410","Sitbcknchill ","71487","robotripper","adderall","110"
"111239","whocaresdude91","122372","PatrickEngle","ritalin","110"
"7946","788.4","69047","lease25","temazepam","110"
"16345","IkBenDeMan","69047","lease25","methadone","110"
"1","Alfa","259597","somewhereovertherainbow","zopiclone","110"
"69047","lease25","102420","spicybrainsgirl","suboxone","110"
"410","Sitbcknchill ","45728","Gappa","adderall","110"
"180932","gal68","198055","yem69420","hydrocodone","110"
"50050","Gradient","63391","Tamis","mephedrone","110"
"69047","lease25","79947","TheBigBadWolf","methadone","110"
"28015","riaahacker","69047","lease25","xanax","110"
"2418","Phungushead","69047","lease25","xanax","110"
"69047","lease25","90006","Ghetto_Chem","suboxone","110"
"410","Sitbcknchill ","56520","Christian1122","adderall","110"
"63028","Smirnoff","69047","lease25","methadone","110"
"153","blaze","63391","Tamis","mephedrone","110"
"7946","788.4","69047","lease25","xanax","110"
"7946","788.4","69047","lease25","methadone","110"
"69047","lease25","81101","source","methadone","110"
"3299","anabolictrio","69047","lease25","naltrexone","110"
"69047","lease25","115136","trdofbeingtrd","suboxone","110"
"856","str8ballin","111239","whocaresdude91","ritalin","110"
"56","Hollywood ","69047","lease25","xanax","110"
"164373","mar1ne","198055","yem69420","hydrocodone","110"
"410","Sitbcknchill ","5750","pharmapsyche","adderall","110"
"1842","nymphetamine","198055","yem69420","hydrocodone","110"
"4495","vhalin","69047","lease25","valium","110"
"7946","788.4","69047","lease25","valium","110"
"3299","anabolictrio","69047","lease25","suboxone","110"
"69047","lease25","156304","PillMan","xanax","110"
"56","Hollywood ","198055","yem69420","hydrocodone","110"
"1714","magicmaster141","69047","lease25","xanax","110"
"45618","cannabis-sam","69047","lease25","xanax","110"
"1023","btoddw2","69047","lease25","valium","110"
"69047","lease25","181260","Kitts","methadone","110"
"410","Sitbcknchill ","45618","cannabis-sam","adderall","110"
"9","Freedom of Mind","69047","lease25","temazepam","110"
"11411","supremedan","63391","Tamis","mephedrone","110"
"69047","lease25","102420","spicybrainsgirl","xanax","110"
"1","Alfa","63391","Tamis","mephedrone","110"
"45599","On The Nod","111239","whocaresdude91","ritalin","110"
"410","Sitbcknchill ","1753","kailey_elise ","adderall","110"
"3299","anabolictrio","69047","lease25","xanax","110"
"69047","lease25","194301","rosielee","methadone","110"
"4490","DJ-666","69047","lease25","temazepam","110"
"2418","Phungushead","259597","somewhereovertherainbow","zopiclone","110"
"45583","Synesthesiac","63391","Tamis","mephedrone","110"
"48762","brandon561","69047","lease25","xanax","110"
"6201","SkUnKaDeLiC","69047","lease25","valium","110"
"410","Sitbcknchill ","127014","MikePatton","adderall","110"
"3167","bubaloo","69047","lease25","temazepam","110"
"3299","anabolictrio","198055","yem69420","hydrocodone","110"
"118772","Mr_Spiffy","198055","yem69420","hydrocodone","110"
"53567","buzzman","63391","Tamis","mephedrone","110"
"4495","vhalin","63391","Tamis","mephedrone","110"
"69047","lease25","273439","marathonmel7","xanax","110"
"62096","Cooki ","69047","lease25","methadone","110"
"62077","WTF O_o","63391","Tamis","mephedrone","110"
"45599","On The Nod","69047","lease25","buprenorphine","110"
"1842","nymphetamine","69047","lease25","valium","110"
"21513","HorseBucket","111239","whocaresdude91","ritalin","110"
"410","Sitbcknchill ","59051","Priapism9","adderall","110"
"69047","lease25","127014","MikePatton","methadone","110"
"1753","kailey_elise ","69047","lease25","xanax","110"
"69047","lease25","112582","tryinmybest","methadone","110"
"410","Sitbcknchill ","63028","Smirnoff","adderall","110"
"63391","Tamis","68044","fanyovsky","mephedrone","110"
"1023","btoddw2","69047","lease25","promethazine","110"
"18965","beentheredonethatagain","69047","lease25","methadone","110"
"2822","fastandbulbous","63391","Tamis","mephedrone","110"
"9904","Benzeneringz","69047","lease25","methadone","110"
"28015","riaahacker","198055","yem69420","hydrocodone","110"
"69047","lease25","211963","WoodyCA","valium","110"
"3299","anabolictrio","69047","lease25","buprenorphine","110"
"410","Sitbcknchill ","36571","boots12","adderall","110"
"6201","SkUnKaDeLiC","69047","lease25","methadone","110"
"69047","lease25","202594","headfull0fstars","methadone","110"
"69047","lease25","268087","Pbnjesse","methadone","110"
"410","Sitbcknchill ","115136","trdofbeingtrd","adderall","110"
"856","str8ballin","69047","lease25","valium","110"
"3471","Potassium Kid","63391","Tamis","mephedrone","110"
"28015","riaahacker","63391","Tamis","mephedrone","110"
"63391","Tamis","74620","methuselah969","mephedrone","110"
"9","Freedom of Mind","410","Sitbcknchill ","adderall","110"
"28015","riaahacker","69047","lease25","methadone","110"
"35486","NeuroChi","198055","yem69420","hydrocodone","110"
"8016","chillinwill","63391","Tamis","mephedrone","110"
"69047","lease25","105712","boy_char","suboxone","110"
"5750","pharmapsyche","63391","Tamis","mephedrone","110"
"63028","Smirnoff","69047","lease25","valium","110"
"410","Sitbcknchill ","54993","Rise against","adderall","110"
"1213","Psilocybe S.","69047","lease25","xanax","110"
"5750","pharmapsyche","111239","whocaresdude91","ritalin","110"
"69047","lease25","179810","Cid Lysergic","iboga","110"
"69047","lease25","230750","MoreGutzThanGlory","methadone","110"
"35486","NeuroChi","69047","lease25","methadone","110"
"410","Sitbcknchill ","1842","nymphetamine","adderall","110"
"63391","Tamis","96636","Mersann","mephedrone","110"
"16345","IkBenDeMan","198055","yem69420","hydrocodone","110"
"28899","Esmerelda","69047","lease25","methadone","110"
"2539","Beltane","69047","lease25","valium","110"
"883","apoch22","111239","whocaresdude91","ritalin","110"
"1842","nymphetamine","69047","lease25","temazepam","110"
"69047","lease25","201049","ak2Ut","suboxone","110"
"410","Sitbcknchill ","127455","BitterSweet","adderall","110"
"4092","trptamene ","63391","Tamis","mephedrone","110"
"1842","nymphetamine","111239","whocaresdude91","ritalin","110"
"45618","cannabis-sam","69047","lease25","valium","110"
"69047","lease25","227635","Jels","buprenorphine","110"
"1526","Cuberun ","63391","Tamis","mephedrone","110"
"57101","Terrapinzflyer ","63391","Tamis","mephedrone","110"
"69047","lease25","170641","jimmym321","methadone","110"
"4495","vhalin","111239","whocaresdude91","ritalin","110"
"1","Alfa","69047","lease25","xanax","110"
"410","Sitbcknchill ","35486","NeuroChi","adderall","110"
"1281","mmk271","69047","lease25","methadone","110"
"63028","Smirnoff","259597","somewhereovertherainbow","zopiclone","110"
"856","str8ballin","69047","lease25","xanax","110"
"1842","nymphetamine","63391","Tamis","mephedrone","110"
"69047","lease25","211963","WoodyCA","suboxone","110"
"1684","CABS205","69047","lease25","promethazine","110"
"62508","Makesmefeelbig","63391","Tamis","mephedrone","110"
"9904","Benzeneringz","69047","lease25","xanax","110"
"410","Sitbcknchill ","737","RARFE ","adderall","110"
"1","Alfa","69047","lease25","valium","110"
"16987","darkglobe","69047","lease25","buprenorphine","110"
"46865","dyingtomorrow","69047","lease25","buprenorphine","110"
"3167","bubaloo","69047","lease25","xanax","110"
"69047","lease25","273791","Roaddoggy","methadone","110"
"56","Hollywood ","69047","lease25","valium","110"
"35486","NeuroChi","69047","lease25","buprenorphine","110"
"69047","lease25","118772","Mr_Spiffy","suboxone","110"
"180313","out_there","259597","somewhereovertherainbow","zopiclone","110"
"410","Sitbcknchill ","1023","btoddw2","adderall","110"
"6201","SkUnKaDeLiC","69047","lease25","temazepam","110"
"156304","PillMan","198055","yem69420","hydrocodone","110"
"69047","lease25","108546","reef88","xanax","110"
"1842","nymphetamine","69047","lease25","methadone","110"
"35486","NeuroChi","111239","whocaresdude91","ritalin","110"
"69047","lease25","118772","Mr_Spiffy","methadone","110"
"297","UglyInfidel","19028","RochiWizz","mdma","109"
"1832","opiumjade7","1842","nymphetamine","mdma","109"
"297","UglyInfidel","856","str8ballin","lithium","109"
"1832","opiumjade7","4218","TheLight01","mdma","109"
"297","UglyInfidel","11411","supremedan","mdma","109"
"68194","baZING","102824","natey7","phenibut","109"
"3299","anabolictrio","168933","KCIUB","xanax","109"
"297","UglyInfidel","127014","MikePatton","mdma","109"
"1832","opiumjade7","1915","curve","mdma","109"
"297","UglyInfidel","90006","Ghetto_Chem","mdma","109"
"1832","opiumjade7","129304","Dankitydankness","mdma","109"
"48762","brandon561","168933","KCIUB","xanax","109"
"1832","opiumjade7","2418","Phungushead","mdma","109"
"1","Alfa","62096","Cooki ","dihydrocodeine","109"
"1832","opiumjade7","10467","WrtngCocaineTutorial","mdma","109"
"539","stndguy","1832","opiumjade7","mdma","109"
"297","UglyInfidel","2239","skilld","mdma","109"
"68194","baZING","93684","Synaps","ethylphenidate","109"
"108546","reef88","168933","KCIUB","xanax","109"
"1832","opiumjade7","6052","KomodoMK","mdma","109"
"297","UglyInfidel","4910","Fantasian","mdma","109"
"1832","opiumjade7","83387","PrincessJo x","mdma","109"
"297","UglyInfidel","2709","risexagainst","mdma","109"
"1753","kailey_elise ","168933","KCIUB","xanax","109"
"1832","opiumjade7","1935","duchy ","mdma","109"
"297","UglyInfidel","1832","opiumjade7","mdma","109"
"1","Alfa","1832","opiumjade7","mdma","109"
"297","UglyInfidel","79297","bostonnew","mdma","109"
"1832","opiumjade7","3345","Unsolved","mdma","109"
"297","UglyInfidel","539","stndguy","mdma","109"
"1832","opiumjade7","45583","Synesthesiac","mdma","109"
"1832","opiumjade7","9351","M3th","mdma","109"
"38015","davestate ","68194","baZING","ethylphenidate","109"
"297","UglyInfidel","129304","Dankitydankness","mdma","109"
"2627","NoWorldOrder","68194","baZING","ethylphenidate","109"
"46957","Ilsa ","105712","boy_char","suboxone","109"
"297","UglyInfidel","4218","TheLight01","mdma","109"
"297","UglyInfidel","6482","psychedelaholic","mdma","109"
"19028","RochiWizz","68194","baZING","methylphenidate","109"
"1832","opiumjade7","7303","pankreeas ","mdma","109"
"1213","Psilocybe S.","168933","KCIUB","xanax","109"
"297","UglyInfidel","1868","Paderas","mdma","109"
"1832","opiumjade7","54214","Zoidberg","mdma","109"
"1832","opiumjade7","57031","rhcpeppers1234","mdma","109"
"297","UglyInfidel","1935","duchy ","mdma","109"
"46957","Ilsa ","201049","ak2Ut","suboxone","109"
"1684","CABS205","68194","baZING","phenibut","109"
"297","UglyInfidel","10467","WrtngCocaineTutorial","mdma","109"
"62","BA","1832","opiumjade7","mdma","109"
"297","UglyInfidel","2281","billyloner ","mdma","109"
"41143","RoboCodeine7610","68194","baZING","methylphenidate","109"
"1832","opiumjade7","4495","vhalin","mdma","109"
"297","UglyInfidel","1562","soer","mdma","109"
"1832","opiumjade7","5750","pharmapsyche","mdma","109"
"313","RoboCop ","68194","baZING","ethylphenidate","109"
"1832","opiumjade7","119102","roastlamb123","mdma","109"
"297","UglyInfidel","9351","M3th","mdma","109"
"1","Alfa","168933","KCIUB","xanax","109"
"46957","Ilsa ","211963","WoodyCA","suboxone","109"
"75","Leo.","1832","opiumjade7","mdma","109"
"856","str8ballin","168933","KCIUB","xanax","109"
"422","1933","1832","opiumjade7","mdma","109"
"297","UglyInfidel","6052","KomodoMK","mdma","109"
"297","UglyInfidel","96636","Mersann","mdma","109"
"9904","Benzeneringz","168933","KCIUB","xanax","109"
"1806","betty_bupe","1832","opiumjade7","mdma","109"
"1832","opiumjade7","57101","Terrapinzflyer ","mdma","109"
"297","UglyInfidel","1842","nymphetamine","mdma","109"
"1832","opiumjade7","19028","RochiWizz","mdma","109"
"1832","opiumjade7","11411","supremedan","mdma","109"
"297","UglyInfidel","4490","DJ-666","mdma","109"
"46957","Ilsa ","118772","Mr_Spiffy","suboxone","109"
"3167","bubaloo","168933","KCIUB","xanax","109"
"1562","soer","1832","opiumjade7","mdma","109"
"297","UglyInfidel","59051","Priapism9","mdma","109"
"297","UglyInfidel","124017","LoveNwar","mdma","109"
"46865","dyingtomorrow","68194","baZING","methylphenidate","109"
"60","Sick Jack","1832","opiumjade7","mdma","109"
"1832","opiumjade7","1868","Paderas","mdma","109"
"297","UglyInfidel","2418","Phungushead","mdma","109"
"1832","opiumjade7","90006","Ghetto_Chem","mdma","109"
"1832","opiumjade7","2239","skilld","mdma","109"
"297","UglyInfidel","2577","Stingray_313 ","mdma","109"
"69047","lease25","168933","KCIUB","xanax","109"
"56","Hollywood ","1832","opiumjade7","mdma","109"
"168933","KCIUB","297036","supermono","xanax","109"
"297","UglyInfidel","1595","Curtains","mdma","109"
"297","UglyInfidel","15832","JapanHorrorUncut","mdma","109"
"46446","EyesOfTheWorld","168933","KCIUB","xanax","109"
"1832","opiumjade7","2610","brainwaxd","mdma","109"
"297","UglyInfidel","7946","788.4","lithium","109"
"1832","opiumjade7","2709","risexagainst","mdma","109"
"156304","PillMan","168933","KCIUB","xanax","109"
"1832","opiumjade7","79297","bostonnew","mdma","109"
"297","UglyInfidel","2271","polloloco001 ","mdma","109"
"6201","SkUnKaDeLiC","168933","KCIUB","xanax","109"
"168933","KCIUB","273439","marathonmel7","xanax","109"
"63028","Smirnoff","168933","KCIUB","xanax","109"
"45599","On The Nod","46957","Ilsa ","suboxone","109"
"297","UglyInfidel","7303","pankreeas ","mdma","109"
"297","UglyInfidel","7946","788.4","mdma","109"
"1475","i like wimmins","68194","baZING","ethylphenidate","109"
"1832","opiumjade7","41207","NeuroMD","mdma","109"
"57031","rhcpeppers1234","68194","baZING","methylphenidate","109"
"1832","opiumjade7","35486","NeuroChi","mdma","109"
"62096","Cooki ","297036","supermono","dihydrocodeine","109"
"1832","opiumjade7","180313","out_there","mdma","109"
"1808","xxgaretjaxx","168933","KCIUB","xanax","109"
"297","UglyInfidel","32247","Lettish","mdma","109"
"68194","baZING","96636","Mersann","ethylphenidate","109"
"102420","spicybrainsgirl","168933","KCIUB","xanax","109"
"1832","opiumjade7","45618","cannabis-sam","mdma","109"
"1842","nymphetamine","168933","KCIUB","xanax","109"
"297","UglyInfidel","4495","vhalin","mdma","109"
"1832","opiumjade7","6482","psychedelaholic","mdma","109"
"297","UglyInfidel","15564","Le Junk","mdma","109"
"1832","opiumjade7","5733","Jatelka ","mdma","109"
"743","madman3l6","168933","KCIUB","xanax","109"
"11411","supremedan","68194","baZING","methylphenidate","109"
"297","UglyInfidel","46865","dyingtomorrow","mdma","109"
"2418","Phungushead","68194","baZING","methylphenidate","109"
"1832","opiumjade7","59051","Priapism9","mdma","109"
"297","UglyInfidel","57101","Terrapinzflyer ","mdma","109"
"4495","vhalin","168933","KCIUB","xanax","109"
"1832","opiumjade7","2281","billyloner ","mdma","109"
"297","UglyInfidel","788","mdve2","mdma","109"
"1832","opiumjade7","35993","Greenport","mdma","109"
"297","UglyInfidel","41207","NeuroMD","mdma","109"
"46957","Ilsa ","69047","lease25","suboxone","109"
"11411","supremedan","168933","KCIUB","xanax","109"
"297","UglyInfidel","1915","curve","mdma","109"
"28899","Esmerelda","168933","KCIUB","xanax","109"
"35486","NeuroChi","168933","KCIUB","xanax","109"
"1832","opiumjade7","54108","Alexander_Praves","mdma","109"
"297","UglyInfidel","63028","Smirnoff","mdma","109"
"1832","opiumjade7","96636","Mersann","mdma","109"
"1","Alfa","297","UglyInfidel","mdma","109"
"1832","opiumjade7","4490","DJ-666","mdma","109"
"297","UglyInfidel","5733","Jatelka ","mdma","109"
"46957","Ilsa ","268087","Pbnjesse","suboxone","109"
"46446","EyesOfTheWorld","46957","Ilsa ","suboxone","109"
"9019","Forthesevenlakes","46957","Ilsa ","suboxone","109"
"297","UglyInfidel","180313","out_there","mdma","109"
"41143","RoboCodeine7610","168933","KCIUB","xanax","109"
"297","UglyInfidel","83387","PrincessJo x","mdma","109"
"46865","dyingtomorrow","46957","Ilsa ","suboxone","109"
"401","peggs16","168933","KCIUB","xanax","109"
"35486","NeuroChi","46957","Ilsa ","suboxone","109"
"1832","opiumjade7","127014","MikePatton","mdma","109"
"297","UglyInfidel","3732","Diphenhydramine","mdma","109"
"1832","opiumjade7","124017","LoveNwar","mdma","109"
"1832","opiumjade7","2577","Stingray_313 ","mdma","109"
"297","UglyInfidel","35993","Greenport","mdma","109"
"46957","Ilsa ","102420","spicybrainsgirl","suboxone","109"
"788","mdve2","1832","opiumjade7","mdma","109"
"297","UglyInfidel","45618","cannabis-sam","mdma","109"
"62","BA","297","UglyInfidel","mdma","109"
"297","UglyInfidel","45583","Synesthesiac","mdma","109"
"1832","opiumjade7","4910","Fantasian","mdma","109"
"297","UglyInfidel","2610","brainwaxd","mdma","109"
"1832","opiumjade7","15832","JapanHorrorUncut","mdma","109"
"2418","Phungushead","168933","KCIUB","xanax","109"
"1832","opiumjade7","2271","polloloco001 ","mdma","109"
"297","UglyInfidel","422","1933","mdma","109"
"46957","Ilsa ","90006","Ghetto_Chem","suboxone","109"
"75","Leo.","297","UglyInfidel","mdma","109"
"28015","riaahacker","168933","KCIUB","xanax","109"
"297","UglyInfidel","1806","betty_bupe","mdma","109"
"297","UglyInfidel","54214","Zoidberg","mdma","109"
"1832","opiumjade7","63028","Smirnoff","mdma","109"
"297","UglyInfidel","35486","NeuroChi","mdma","109"
"1832","opiumjade7","7946","788.4","mdma","109"
"1832","opiumjade7","32247","Lettish","mdma","109"
"7946","788.4","168933","KCIUB","xanax","109"
"1","Alfa","68194","baZING","methylphenidate","109"
"297","UglyInfidel","57031","rhcpeppers1234","mdma","109"
"46957","Ilsa ","115136","trdofbeingtrd","suboxone","109"
"297","UglyInfidel","3345","Unsolved","mdma","109"
"297","UglyInfidel","5750","pharmapsyche","mdma","109"
"1595","Curtains","1832","opiumjade7","mdma","109"
"56","Hollywood ","168933","KCIUB","xanax","109"
"1842","nymphetamine","68194","baZING","ethylphenidate","109"
"60","Sick Jack","297","UglyInfidel","mdma","109"
"1842","nymphetamine","68194","baZING","methylphenidate","109"
"1832","opiumjade7","3732","Diphenhydramine","mdma","109"
"1832","opiumjade7","15564","Le Junk","mdma","109"
"1832","opiumjade7","46865","dyingtomorrow","mdma","109"
"3299","anabolictrio","46957","Ilsa ","suboxone","109"
"297","UglyInfidel","119102","roastlamb123","mdma","109"
"46865","dyingtomorrow","68194","baZING","ethylphenidate","109"
"56","Hollywood ","297","UglyInfidel","mdma","109"
"168933","KCIUB","211963","WoodyCA","xanax","109"
"1714","magicmaster141","168933","KCIUB","xanax","109"
"297","UglyInfidel","54108","Alexander_Praves","mdma","109"
"45618","cannabis-sam","168933","KCIUB","xanax","109"
"1842","nymphetamine","2112","QGdoxl ","codeine","108"
"2281","billyloner ","67133","User-126494","mdma","108"
"1832","opiumjade7","67133","User-126494","mdma","108"
"2167","hard2core","5866","RealGanjaMan ","dxm","108"
"1842","nymphetamine","67133","User-126494","mdma","108"
"5866","RealGanjaMan ","116985","Chug Chug Chug","dxm","108"
"2418","Phungushead","67133","User-126494","mdma","108"
"2112","QGdoxl ","28015","riaahacker","codeine","108"
"2271","polloloco001 ","67133","User-126494","mdma","108"
"35993","Greenport","67133","User-126494","mdma","108"
"9","Freedom of Mind","5866","RealGanjaMan ","dxm","108"
"4495","vhalin","67133","User-126494","mdma","108"
"15832","JapanHorrorUncut","67133","User-126494","mdma","108"
"2112","QGdoxl ","57031","rhcpeppers1234","codeine","108"
"5866","RealGanjaMan ","110776","PowerfulMedicine","dxm","108"
"2610","brainwaxd","67133","User-126494","mdma","108"
"2200","par excellence.","5866","RealGanjaMan ","dxm","108"
"67133","User-126494","119102","roastlamb123","mdma","108"
"2112","QGdoxl ","40282","Razorbladekiss","codeine","108"
"5866","RealGanjaMan ","18724","AirO","dxm","108"
"67133","User-126494","83387","PrincessJo x","mdma","108"
"6482","psychedelaholic","67133","User-126494","mdma","108"
"2112","QGdoxl ","7946","788.4","codeine","108"
"5866","RealGanjaMan ","75764","lololsolid","dxm","108"
"4218","TheLight01","67133","User-126494","mdma","108"
"657","distilla_truant","5866","RealGanjaMan ","dxm","108"
"67133","User-126494","124017","LoveNwar","mdma","108"
"57101","Terrapinzflyer ","67133","User-126494","mdma","108"
"2112","QGdoxl ","3375","MrJim","codeine","108"
"5866","RealGanjaMan ","161625","mrcowman","dxm","108"
"788","mdve2","67133","User-126494","mdma","108"
"5750","pharmapsyche","67133","User-126494","mdma","108"
"67133","User-126494","180313","out_there","mdma","108"
"2709","risexagainst","67133","User-126494","mdma","108"
"2112","QGdoxl ","180313","out_there","codeine","108"
"56","Hollywood ","2112","QGdoxl ","codeine","108"
"41207","NeuroMD","67133","User-126494","mdma","108"
"5866","RealGanjaMan ","180313","out_there","dxm","108"
"5866","RealGanjaMan ","43332","enhancion01","dxm","108"
"313","RoboCop ","5866","RealGanjaMan ","dxm","108"
"2112","QGdoxl ","100767","missinglfe","codeine","108"
"5866","RealGanjaMan ","202594","headfull0fstars","dxm","108"
"9351","M3th","67133","User-126494","mdma","108"
"1595","Curtains","67133","User-126494","mdma","108"
"5866","RealGanjaMan ","127711","Zhekarius","dxm","108"
"2112","QGdoxl ","61180","Helene ","codeine","108"
"5733","Jatelka ","67133","User-126494","mdma","108"
"1684","CABS205","2112","QGdoxl ","codeine","108"
"4910","Fantasian","67133","User-126494","mdma","108"
"45583","Synesthesiac","67133","User-126494","mdma","108"
"5866","RealGanjaMan ","45258","motter28218","dxm","108"
"1224","markdahman","2112","QGdoxl ","codeine","108"
"1935","duchy ","67133","User-126494","mdma","108"
"2112","QGdoxl ","63028","Smirnoff","codeine","108"
"2112","QGdoxl ","58307","missparkles ","codeine","108"
"5866","RealGanjaMan ","21315","Graduisic","dxm","108"
"539","stndguy","67133","User-126494","mdma","108"
"2418","Phungushead","5866","RealGanjaMan ","dxm","108"
"2112","QGdoxl ","35486","NeuroChi","codeine","108"
"67133","User-126494","129304","Dankitydankness","mdma","108"
"4490","DJ-666","67133","User-126494","mdma","108"
"19028","RochiWizz","67133","User-126494","mdma","108"
"297","UglyInfidel","67133","User-126494","mdma","108"
"2112","QGdoxl ","4910","Fantasian","codeine","108"
"5866","RealGanjaMan ","44584","Rightnow289","dxm","108"
"1868","Paderas","67133","User-126494","mdma","108"
"1","Alfa","67133","User-126494","mdma","108"
"15564","Le Junk","67133","User-126494","mdma","108"
"63028","Smirnoff","67133","User-126494","mdma","108"
"67133","User-126494","79297","bostonnew","mdma","108"
"2112","QGdoxl ","15232","Tortoise","codeine","108"
"5866","RealGanjaMan ","98407","phenythylamine","dxm","108"
"67133","User-126494","96636","Mersann","mdma","108"
"57031","rhcpeppers1234","67133","User-126494","mdma","108"
"46865","dyingtomorrow","67133","User-126494","mdma","108"
"2112","QGdoxl ","83387","PrincessJo x","codeine","108"
"2577","Stingray_313 ","67133","User-126494","mdma","108"
"9","Freedom of Mind","2112","QGdoxl ","codeine","108"
"5866","RealGanjaMan ","156304","PillMan","dxm","108"
"62","BA","67133","User-126494","mdma","108"
"67133","User-126494","90006","Ghetto_Chem","mdma","108"
"59051","Priapism9","67133","User-126494","mdma","108"
"2239","skilld","67133","User-126494","mdma","108"
"2112","QGdoxl ","28899","Esmerelda","codeine","108"
"3565","amd6568","5866","RealGanjaMan ","dxm","108"
"75","Leo.","67133","User-126494","mdma","108"
"5866","RealGanjaMan ","46889","port 21","dxm","108"
"7303","pankreeas ","67133","User-126494","mdma","108"
"7946","788.4","67133","User-126494","mdma","108"
"422","1933","67133","User-126494","mdma","108"
"6052","KomodoMK","67133","User-126494","mdma","108"
"35486","NeuroChi","67133","User-126494","mdma","108"
"32247","Lettish","67133","User-126494","mdma","108"
"1806","betty_bupe","67133","User-126494","mdma","108"
"67133","User-126494","127014","MikePatton","mdma","108"
"1023","btoddw2","2112","QGdoxl ","codeine","108"
"2112","QGdoxl ","118772","Mr_Spiffy","codeine","108"
"54214","Zoidberg","67133","User-126494","mdma","108"
"5866","RealGanjaMan ","8671","Richard_smoker","dxm","108"
"1562","soer","67133","User-126494","mdma","108"
"60","Sick Jack","67133","User-126494","mdma","108"
"5866","RealGanjaMan ","11835","El Calico Loco","dxm","108"
"45618","cannabis-sam","67133","User-126494","mdma","108"
"2112","QGdoxl ","45599","On The Nod","codeine","108"
"56","Hollywood ","67133","User-126494","mdma","108"
"5866","RealGanjaMan ","28015","riaahacker","dxm","108"
"10467","WrtngCocaineTutorial","67133","User-126494","mdma","108"
"54108","Alexander_Praves","67133","User-126494","mdma","108"
"3345","Unsolved","67133","User-126494","mdma","108"
"3780","Kradle","5866","RealGanjaMan ","dxm","108"
"5866","RealGanjaMan ","17829","LookingForHer","dxm","108"
"3732","Diphenhydramine","67133","User-126494","mdma","108"
"1915","curve","67133","User-126494","mdma","108"
"11411","supremedan","67133","User-126494","mdma","108"
"2112","QGdoxl ","4495","vhalin","codeine","108"
"11411","supremedan","55332","LowCrawl To Freedom","mephedrone","107"
"55332","LowCrawl To Freedom","57101","Terrapinzflyer ","mephedrone","107"
"2112","QGdoxl ","80751","AnrBjotk","codeine","107"
"58307","missparkles ","80751","AnrBjotk","codeine","107"
"539","stndguy","55332","LowCrawl To Freedom","mdma","107"
"80751","AnrBjotk","100767","missinglfe","codeine","107"
"1","Alfa","55332","LowCrawl To Freedom","mephedrone","107"
"55332","LowCrawl To Freedom","127014","MikePatton","mdma","107"
"4490","DJ-666","55332","LowCrawl To Freedom","mdma","107"
"1868","Paderas","55332","LowCrawl To Freedom","mdma","107"
"45583","Synesthesiac","55332","LowCrawl To Freedom","mephedrone","107"
"19028","RochiWizz","55332","LowCrawl To Freedom","mdma","107"
"297","UglyInfidel","55332","LowCrawl To Freedom","mdma","107"
"11411","supremedan","55332","LowCrawl To Freedom","methylphenidate","107"
"15232","Tortoise","80751","AnrBjotk","codeine","107"
"1","Alfa","55332","LowCrawl To Freedom","mdma","107"
"15564","Le Junk","55332","LowCrawl To Freedom","mdma","107"
"61180","Helene ","80751","AnrBjotk","codeine","107"
"55332","LowCrawl To Freedom","57031","rhcpeppers1234","methylphenidate","107"
"53567","buzzman","55332","LowCrawl To Freedom","mephedrone","107"
"4495","vhalin","55332","LowCrawl To Freedom","mephedrone","107"
"2418","Phungushead","55332","LowCrawl To Freedom","methylphenidate","107"
"40282","Razorbladekiss","80751","AnrBjotk","codeine","107"
"55332","LowCrawl To Freedom","63028","Smirnoff","mdma","107"
"2822","fastandbulbous","55332","LowCrawl To Freedom","mephedrone","107"
"55332","LowCrawl To Freedom","67133","User-126494","mdma","107"
"46865","dyingtomorrow","55332","LowCrawl To Freedom","mdma","107"
"3471","Potassium Kid","55332","LowCrawl To Freedom","mephedrone","107"
"28015","riaahacker","55332","LowCrawl To Freedom","mephedrone","107"
"2577","Stingray_313 ","55332","LowCrawl To Freedom","mdma","107"
"9","Freedom of Mind","80751","AnrBjotk","codeine","107"
"62","BA","55332","LowCrawl To Freedom","mdma","107"
"55332","LowCrawl To Freedom","63391","Tamis","mephedrone","107"
"8016","chillinwill","55332","LowCrawl To Freedom","mephedrone","107"
"5750","pharmapsyche","55332","LowCrawl To Freedom","mephedrone","107"
"45599","On The Nod","80751","AnrBjotk","codeine","107"
"2239","skilld","55332","LowCrawl To Freedom","mdma","107"
"55332","LowCrawl To Freedom","57031","rhcpeppers1234","mdma","107"
"75","Leo.","55332","LowCrawl To Freedom","mdma","107"
"7303","pankreeas ","55332","LowCrawl To Freedom","mdma","107"
"7946","788.4","55332","LowCrawl To Freedom","mdma","107"
"422","1933","55332","LowCrawl To Freedom","mdma","107"
"6052","KomodoMK","55332","LowCrawl To Freedom","mdma","107"
"55332","LowCrawl To Freedom","70276","tripolar","mephedrone","107"
"35486","NeuroChi","55332","LowCrawl To Freedom","mdma","107"
"32247","Lettish","55332","LowCrawl To Freedom","mdma","107"
"1806","betty_bupe","55332","LowCrawl To Freedom","mdma","107"
"1023","btoddw2","80751","AnrBjotk","codeine","107"
"4092","trptamene ","55332","LowCrawl To Freedom","mephedrone","107"
"1526","Cuberun ","55332","LowCrawl To Freedom","mephedrone","107"
"54214","Zoidberg","55332","LowCrawl To Freedom","mdma","107"
"1562","soer","55332","LowCrawl To Freedom","mdma","107"
"55332","LowCrawl To Freedom","79297","bostonnew","mdma","107"
"1842","nymphetamine","55332","LowCrawl To Freedom","mephedrone","107"
"55332","LowCrawl To Freedom","124017","LoveNwar","mephedrone","107"
"60","Sick Jack","55332","LowCrawl To Freedom","mdma","107"
"1","Alfa","55332","LowCrawl To Freedom","methylphenidate","107"
"45618","cannabis-sam","55332","LowCrawl To Freedom","mdma","107"
"7946","788.4","80751","AnrBjotk","codeine","107"
"56","Hollywood ","55332","LowCrawl To Freedom","mdma","107"
"55332","LowCrawl To Freedom","96636","Mersann","mdma","107"
"10467","WrtngCocaineTutorial","55332","LowCrawl To Freedom","mdma","107"
"55332","LowCrawl To Freedom","62077","WTF O_o","mephedrone","107"
"54108","Alexander_Praves","55332","LowCrawl To Freedom","mdma","107"
"3345","Unsolved","55332","LowCrawl To Freedom","mdma","107"
"1842","nymphetamine","55332","LowCrawl To Freedom","methylphenidate","107"
"3732","Diphenhydramine","55332","LowCrawl To Freedom","mdma","107"
"1915","curve","55332","LowCrawl To Freedom","mdma","107"
"11411","supremedan","55332","LowCrawl To Freedom","mdma","107"
"80751","AnrBjotk","83387","PrincessJo x","codeine","107"
"55332","LowCrawl To Freedom","90006","Ghetto_Chem","mdma","107"
"1842","nymphetamine","80751","AnrBjotk","codeine","107"
"55332","LowCrawl To Freedom","62508","Makesmefeelbig","mephedrone","107"
"2281","billyloner ","55332","LowCrawl To Freedom","mdma","107"
"1832","opiumjade7","55332","LowCrawl To Freedom","mdma","107"
"1868","Paderas","55332","LowCrawl To Freedom","mephedrone","107"
"20109","imyourlittlebare","55332","LowCrawl To Freedom","mephedrone","107"
"1842","nymphetamine","55332","LowCrawl To Freedom","mdma","107"
"4910","Fantasian","80751","AnrBjotk","codeine","107"
"80751","AnrBjotk","118772","Mr_Spiffy","codeine","107"
"2418","Phungushead","55332","LowCrawl To Freedom","mdma","107"
"2271","polloloco001 ","55332","LowCrawl To Freedom","mdma","107"
"35993","Greenport","55332","LowCrawl To Freedom","mdma","107"
"55332","LowCrawl To Freedom","59051","Priapism9","mdma","107"
"4495","vhalin","55332","LowCrawl To Freedom","mdma","107"
"15832","JapanHorrorUncut","55332","LowCrawl To Freedom","mdma","107"
"3375","MrJim","80751","AnrBjotk","codeine","107"
"2610","brainwaxd","55332","LowCrawl To Freedom","mdma","107"
"55332","LowCrawl To Freedom","68194","baZING","methylphenidate","107"
"55332","LowCrawl To Freedom","57101","Terrapinzflyer ","mdma","107"
"35486","NeuroChi","80751","AnrBjotk","codeine","107"
"55332","LowCrawl To Freedom","57101","Terrapinzflyer ","mdai","107"
"6482","psychedelaholic","55332","LowCrawl To Freedom","mdma","107"
"4218","TheLight01","55332","LowCrawl To Freedom","mdma","107"
"19028","RochiWizz","55332","LowCrawl To Freedom","methylphenidate","107"
"55332","LowCrawl To Freedom","129304","Dankitydankness","mdma","107"
"788","mdve2","55332","LowCrawl To Freedom","mdma","107"
"55332","LowCrawl To Freedom","68044","fanyovsky","mephedrone","107"
"5750","pharmapsyche","55332","LowCrawl To Freedom","mdma","107"
"41143","RoboCodeine7610","55332","LowCrawl To Freedom","methylphenidate","107"
"2709","risexagainst","55332","LowCrawl To Freedom","mdma","107"
"4495","vhalin","80751","AnrBjotk","codeine","107"
"57031","rhcpeppers1234","80751","AnrBjotk","codeine","107"
"56","Hollywood ","80751","AnrBjotk","codeine","107"
"28899","Esmerelda","80751","AnrBjotk","codeine","107"
"41207","NeuroMD","55332","LowCrawl To Freedom","mdma","107"
"28015","riaahacker","80751","AnrBjotk","codeine","107"
"55332","LowCrawl To Freedom","119102","roastlamb123","mdma","107"
"55332","LowCrawl To Freedom","74620","methuselah969","mephedrone","107"
"50050","Gradient","55332","LowCrawl To Freedom","mephedrone","107"
"9351","M3th","55332","LowCrawl To Freedom","mdma","107"
"63028","Smirnoff","80751","AnrBjotk","codeine","107"
"55332","LowCrawl To Freedom","83387","PrincessJo x","mdma","107"
"55332","LowCrawl To Freedom","57308","BoyInTheCountry","mephedrone","107"
"1595","Curtains","55332","LowCrawl To Freedom","mdma","107"
"46865","dyingtomorrow","55332","LowCrawl To Freedom","methylphenidate","107"
"153","blaze","55332","LowCrawl To Freedom","mephedrone","107"
"5733","Jatelka ","55332","LowCrawl To Freedom","mdma","107"
"1684","CABS205","80751","AnrBjotk","codeine","107"
"55332","LowCrawl To Freedom","124017","LoveNwar","mdma","107"
"55332","LowCrawl To Freedom","96636","Mersann","mephedrone","107"
"4910","Fantasian","55332","LowCrawl To Freedom","mdma","107"
"45583","Synesthesiac","55332","LowCrawl To Freedom","mdma","107"
"1224","markdahman","80751","AnrBjotk","codeine","107"
"1935","duchy ","55332","LowCrawl To Freedom","mdma","107"
"80751","AnrBjotk","180313","out_there","codeine","107"
"55332","LowCrawl To Freedom","180313","out_there","mdma","107"
"3565","amd6568","3780","Kradle","dextromethorphan","106"
"218660","Jerms81","273791","Roaddoggy","methadone","106"
"211963","WoodyCA","218660","Jerms81","oxycodone","106"
"3375","MrJim","77229","reckoner","codeine","106"
"2418","Phungushead","11876","Paracelsus ","dxm","106"
"11876","Paracelsus ","161625","mrcowman","dxm","106"
"410","Sitbcknchill ","122777","addersloth","adderall","106"
"3375","MrJim","218660","Jerms81","oxycodone","106"
"4495","vhalin","218660","Jerms81","oxycontin","106"
"77229","reckoner","80751","AnrBjotk","codeine","106"
"45728","Gappa","122777","addersloth","adderall","106"
"7303","pankreeas ","218660","Jerms81","oxycodone","106"
"62096","Cooki ","218660","Jerms81","methadone","106"
"35486","NeuroChi","77229","reckoner","codeine","106"
"202594","headfull0fstars","218660","Jerms81","methadone","106"
"11876","Paracelsus ","180313","out_there","dxm","106"
"657","distilla_truant","3780","Kradle","dextromethorphan","106"
"69047","lease25","218660","Jerms81","methadone","106"
"127014","MikePatton","218660","Jerms81","methadone","106"
"77229","reckoner","180313","out_there","codeine","106"
"68194","baZING","218660","Jerms81","oxycodone","106"
"11411","supremedan","218660","Jerms81","oxycodone","106"
"18965","beentheredonethatagain","218660","Jerms81","methadone","106"
"9904","Benzeneringz","218660","Jerms81","methadone","106"
"102420","spicybrainsgirl","218660","Jerms81","methadone","106"
"11876","Paracelsus ","28015","riaahacker","dxm","106"
"1842","nymphetamine","218660","Jerms81","oxycontin","106"
"77229","reckoner","100767","missinglfe","codeine","106"
"11876","Paracelsus ","127711","Zhekarius","dxm","106"
"9","Freedom of Mind","122777","addersloth","adderall","106"
"28015","riaahacker","218660","Jerms81","methadone","106"
"6201","SkUnKaDeLiC","218660","Jerms81","methadone","106"
"122777","addersloth","202594","headfull0fstars","adderall","106"
"4495","vhalin","122777","addersloth","adderall","106"
"4495","vhalin","77229","reckoner","codeine","106"
"57031","rhcpeppers1234","77229","reckoner","codeine","106"
"35486","NeuroChi","218660","Jerms81","methadone","106"
"46865","dyingtomorrow","218660","Jerms81","oxycontin","106"
"56","Hollywood ","77229","reckoner","codeine","106"
"102420","spicybrainsgirl","218660","Jerms81","oxycontin","106"
"28015","riaahacker","122777","addersloth","adderall","106"
"3565","amd6568","11876","Paracelsus ","dxm","106"
"28899","Esmerelda","77229","reckoner","codeine","106"
"11876","Paracelsus ","45258","motter28218","dxm","106"
"28015","riaahacker","77229","reckoner","codeine","106"
"595","globalloon","3780","Kradle","dextromethorphan","106"
"63028","Smirnoff","122777","addersloth","adderall","106"
"9","Freedom of Mind","131598","CanadianBakin","nitrazepam","106"
"28899","Esmerelda","218660","Jerms81","methadone","106"
"6201","SkUnKaDeLiC","131598","CanadianBakin","nitrazepam","106"
"56","Hollywood ","218660","Jerms81","oxycodone","106"
"218660","Jerms81","280861","Hydroxyout","oxycodone","106"
"46446","EyesOfTheWorld","122777","addersloth","adderall","106"
"46865","dyingtomorrow","122777","addersloth","adderall","106"
"45618","cannabis-sam","122777","addersloth","adderall","106"
"1842","nymphetamine","122777","addersloth","adderall","106"
"4495","vhalin","218660","Jerms81","oxycodone","106"
"3375","MrJim","218660","Jerms81","oxycontin","106"
"107312","FinnishPharmer","122777","addersloth","adderall","106"
"3780","Kradle","46889","port 21","dextromethorphan","106"
"1281","mmk271","218660","Jerms81","methadone","106"
"11876","Paracelsus ","21315","Graduisic","dxm","106"
"198055","yem69420","218660","Jerms81","methadone","106"
"115136","trdofbeingtrd","218660","Jerms81","methadone","106"
"63028","Smirnoff","77229","reckoner","codeine","106"
"108860","Pain Hurts","218660","Jerms81","oxycontin","106"
"2167","hard2core","3780","Kradle","dextromethorphan","106"
"218660","Jerms81","294051","Jungledog","oxycodone","106"
"36571","boots12","122777","addersloth","adderall","106"
"3780","Kradle","28015","riaahacker","dextromethorphan","106"
"1868","Paderas","122777","addersloth","adderall","106"
"11876","Paracelsus ","44584","Rightnow289","dxm","106"
"1684","CABS205","77229","reckoner","codeine","106"
"35486","NeuroChi","218660","Jerms81","oxycodone","106"
"7303","pankreeas ","218660","Jerms81","oxycontin","106"
"3780","Kradle","11876","Paracelsus ","dxm","106"
"79947","TheBigBadWolf","218660","Jerms81","methadone","106"
"1224","markdahman","77229","reckoner","codeine","106"
"63028","Smirnoff","218660","Jerms81","oxycodone","106"
"1842","nymphetamine","218660","Jerms81","oxycodone","106"
"1842","nymphetamine","218660","Jerms81","methadone","106"
"8671","Richard_smoker","11876","Paracelsus ","dxm","106"
"11876","Paracelsus ","98407","phenythylamine","dxm","106"
"181260","Kitts","218660","Jerms81","methadone","106"
"218660","Jerms81","230750","MoreGutzThanGlory","methadone","106"
"211963","WoodyCA","218660","Jerms81","oxycontin","106"
"2112","QGdoxl ","77229","reckoner","codeine","106"
"2167","hard2core","11876","Paracelsus ","dxm","106"
"58307","missparkles ","77229","reckoner","codeine","106"
"1","Alfa","122777","addersloth","adderall","106"
"45599","On The Nod","218660","Jerms81","oxycodone","106"
"11876","Paracelsus ","156304","PillMan","dxm","106"
"9","Freedom of Mind","11876","Paracelsus ","dxm","106"
"63028","Smirnoff","218660","Jerms81","oxycontin","106"
"16700","beena","218660","Jerms81","methadone","106"
"35486","NeuroChi","122777","addersloth","adderall","106"
"15232","Tortoise","77229","reckoner","codeine","106"
"27864","G_nome","218660","Jerms81","methadone","106"
"207982","tryinghard","218660","Jerms81","oxycodone","106"
"100767","missinglfe","218660","Jerms81","methadone","106"
"1595","Curtains","218660","Jerms81","methadone","106"
"61180","Helene ","77229","reckoner","codeine","106"
"65726","ellavader","218660","Jerms81","oxycodone","106"
"2200","par excellence.","11876","Paracelsus ","dxm","106"
"40282","Razorbladekiss","77229","reckoner","codeine","106"
"11876","Paracelsus ","46889","port 21","dxm","106"
"71487","robotripper","122777","addersloth","adderall","106"
"313","RoboCop ","3780","Kradle","dextromethorphan","106"
"112582","tryinmybest","218660","Jerms81","methadone","106"
"65726","ellavader","218660","Jerms81","oxycontin","106"
"2418","Phungushead","218660","Jerms81","oxycodone","106"
"102824","natey7","218660","Jerms81","methadone","106"
"2418","Phungushead","218660","Jerms81","methadone","106"
"28899","Esmerelda","218660","Jerms81","oxycontin","106"
"737","RARFE ","122777","addersloth","adderall","106"
"77229","reckoner","83387","PrincessJo x","codeine","106"
"5750","pharmapsyche","122777","addersloth","adderall","106"
"11876","Paracelsus ","202594","headfull0fstars","dxm","106"
"65638","Pieces Mended","122777","addersloth","adderall","106"
"77229","reckoner","118772","Mr_Spiffy","codeine","106"
"11876","Paracelsus ","43332","enhancion01","dxm","106"
"46446","EyesOfTheWorld","218660","Jerms81","methadone","106"
"9","Freedom of Mind","77229","reckoner","codeine","106"
"657","distilla_truant","11876","Paracelsus ","dxm","106"
"45618","cannabis-sam","218660","Jerms81","methadone","106"
"1023","btoddw2","122777","addersloth","adderall","106"
"76984","LostControl","218660","Jerms81","oxycontin","106"
"45599","On The Nod","77229","reckoner","codeine","106"
"122777","addersloth","127455","BitterSweet","adderall","106"
"105712","boy_char","218660","Jerms81","methadone","106"
"10663","fizzle","122777","addersloth","adderall","106"
"7946","788.4","218660","Jerms81","oxycodone","106"
"56","Hollywood ","122777","addersloth","adderall","106"
"45599","On The Nod","218660","Jerms81","methadone","106"
"16489","baron samedi","218660","Jerms81","methadone","106"
"9904","Benzeneringz","218660","Jerms81","oxycodone","106"
"170641","jimmym321","218660","Jerms81","methadone","106"
"11876","Paracelsus ","17829","LookingForHer","dxm","106"
"35591","AACrazy2892","218660","Jerms81","oxycodone","106"
"46865","dyingtomorrow","218660","Jerms81","methadone","106"
"58307","missparkles ","218660","Jerms81","methadone","106"
"1753","kailey_elise ","218660","Jerms81","methadone","106"
"135119","pup555","218660","Jerms81","oxycodone","106"
"81101","source","218660","Jerms81","methadone","106"
"122777","addersloth","127014","MikePatton","adderall","106"
"4910","Fantasian","218660","Jerms81","methadone","106"
"1023","btoddw2","77229","reckoner","codeine","106"
"118772","Mr_Spiffy","218660","Jerms81","methadone","106"
"194301","rosielee","218660","Jerms81","methadone","106"
"3780","Kradle","110776","PowerfulMedicine","dextromethorphan","106"
"54993","Rise against","122777","addersloth","adderall","106"
"135119","pup555","218660","Jerms81","oxycontin","106"
"11876","Paracelsus ","116985","Chug Chug Chug","dxm","106"
"16345","IkBenDeMan","218660","Jerms81","methadone","106"
"118772","Mr_Spiffy","218660","Jerms81","oxycodone","106"
"115136","trdofbeingtrd","122777","addersloth","adderall","106"
"218660","Jerms81","220080","Lunaciel","oxycodone","106"
"59051","Priapism9","122777","addersloth","adderall","106"
"5866","RealGanjaMan ","11876","Paracelsus ","dxm","106"
"11835","El Calico Loco","11876","Paracelsus ","dxm","106"
"56520","Christian1122","122777","addersloth","adderall","106"
"1753","kailey_elise ","122777","addersloth","adderall","106"
"3780","Kradle","8671","Richard_smoker","dextromethorphan","106"
"313","RoboCop ","11876","Paracelsus ","dxm","106"
"7946","788.4","77229","reckoner","codeine","106"
"11876","Paracelsus ","110776","PowerfulMedicine","dxm","106"
"63028","Smirnoff","218660","Jerms81","methadone","106"
"7946","788.4","218660","Jerms81","methadone","106"
"131598","CanadianBakin","180313","out_there","nitrazepam","106"
"9781","cutiepie","218660","Jerms81","oxycodone","106"
"108860","Pain Hurts","218660","Jerms81","oxycodone","106"
"11876","Paracelsus ","18724","AirO","dxm","106"
"156304","PillMan","218660","Jerms81","oxycodone","106"
"156304","PillMan","218660","Jerms81","oxycontin","106"
"1842","nymphetamine","77229","reckoner","codeine","106"
"83387","PrincessJo x","218660","Jerms81","oxycodone","106"
"28015","riaahacker","218660","Jerms81","oxycontin","106"
"218660","Jerms81","268087","Pbnjesse","methadone","106"
"4910","Fantasian","77229","reckoner","codeine","106"
"46865","dyingtomorrow","218660","Jerms81","oxycodone","106"
"9","Freedom of Mind","3780","Kradle","dextromethorphan","106"
"56","Hollywood ","218660","Jerms81","oxycontin","106"
"11876","Paracelsus ","75764","lololsolid","dxm","106"
"180313","out_there","218660","Jerms81","oxycodone","106"
"655","mc-lean","35993","Greenport","mdma","105"
"9858","jesusfreak666er","35486","NeuroChi","adderall","105"
"655","mc-lean","35486","NeuroChi","mdma","105"
"655","mc-lean","6052","KomodoMK","mdma","105"
"655","mc-lean","96636","Mersann","mdma","105"
"9858","jesusfreak666er","36571","boots12","adderall","105"
"655","mc-lean","4490","DJ-666","mdma","105"
"737","RARFE ","9858","jesusfreak666er","adderall","105"
"1","Alfa","9904","Benzeneringz","kava","105"
"655","mc-lean","59051","Priapism9","mdma","105"
"655","mc-lean","124017","LoveNwar","mdma","105"
"5750","pharmapsyche","9858","jesusfreak666er","adderall","105"
"9858","jesusfreak666er","54993","Rise against","adderall","105"
"655","mc-lean","2577","Stingray_313 ","mdma","105"
"1","Alfa","11411","supremedan","kava","105"
"655","mc-lean","1595","Curtains","mdma","105"
"1023","btoddw2","9858","jesusfreak666er","adderall","105"
"9858","jesusfreak666er","127455","BitterSweet","adderall","105"
"56","Hollywood ","9858","jesusfreak666er","adderall","105"
"655","mc-lean","15832","JapanHorrorUncut","mdma","105"
"655","mc-lean","2271","polloloco001 ","mdma","105"
"1","Alfa","11877","howlongisthenight","kava","105"
"655","mc-lean","7303","pankreeas ","mdma","105"
"9858","jesusfreak666er","56520","Christian1122","adderall","105"
"655","mc-lean","7946","788.4","mdma","105"
"655","mc-lean","32247","Lettish","mdma","105"
"1","Alfa","5010","snapper ","kava","105"
"655","mc-lean","4495","vhalin","mdma","105"
"655","mc-lean","55332","LowCrawl To Freedom","mdma","105"
"9858","jesusfreak666er","45618","cannabis-sam","adderall","105"
"655","mc-lean","15564","Le Junk","mdma","105"
"655","mc-lean","46865","dyingtomorrow","mdma","105"
"1753","kailey_elise ","9858","jesusfreak666er","adderall","105"
"1","Alfa","63028","Smirnoff","kava","105"
"655","mc-lean","57101","Terrapinzflyer ","mdma","105"
"655","mc-lean","1832","opiumjade7","mdma","105"
"9858","jesusfreak666er","127014","MikePatton","adderall","105"
"655","mc-lean","1868","Paderas","mdma","105"
"655","mc-lean","788","mdve2","mdma","105"
"655","mc-lean","1915","curve","mdma","105"
"655","mc-lean","129304","Dankitydankness","mdma","105"
"9858","jesusfreak666er","115136","trdofbeingtrd","adderall","105"
"655","mc-lean","1562","soer","mdma","105"
"655","mc-lean","180313","out_there","mdma","105"
"655","mc-lean","83387","PrincessJo x","mdma","105"
"9858","jesusfreak666er","107312","FinnishPharmer","adderall","105"
"655","mc-lean","1935","duchy ","mdma","105"
"9858","jesusfreak666er","71487","robotripper","adderall","105"
"655","mc-lean","1842","nymphetamine","mdma","105"
"655","mc-lean","45618","cannabis-sam","mdma","105"
"655","mc-lean","45583","Synesthesiac","mdma","105"
"539","stndguy","655","mc-lean","mdma","105"
"410","Sitbcknchill ","9858","jesusfreak666er","adderall","105"
"9858","jesusfreak666er","10663","fizzle","adderall","105"
"655","mc-lean","9351","M3th","mdma","105"
"297","UglyInfidel","655","mc-lean","mdma","105"
"655","mc-lean","2418","Phungushead","mdma","105"
"655","mc-lean","1806","betty_bupe","mdma","105"
"655","mc-lean","54214","Zoidberg","mdma","105"
"1","Alfa","655","mc-lean","mdma","105"
"9858","jesusfreak666er","46446","EyesOfTheWorld","adderall","105"
"655","mc-lean","57031","rhcpeppers1234","mdma","105"
"1","Alfa","10891","Bajeda ","kava","105"
"655","mc-lean","3345","Unsolved","mdma","105"
"9858","jesusfreak666er","65638","Pieces Mended","adderall","105"
"655","mc-lean","5750","pharmapsyche","mdma","105"
"655","mc-lean","119102","roastlamb123","mdma","105"
"1","Alfa","90006","Ghetto_Chem","kava","105"
"9","Freedom of Mind","9858","jesusfreak666er","adderall","105"
"655","mc-lean","54108","Alexander_Praves","mdma","105"
"62","BA","655","mc-lean","mdma","105"
"4495","vhalin","9858","jesusfreak666er","adderall","105"
"9858","jesusfreak666er","45728","Gappa","adderall","105"
"655","mc-lean","19028","RochiWizz","mdma","105"
"655","mc-lean","11411","supremedan","mdma","105"
"1","Alfa","1684","CABS205","kava","105"
"75","Leo.","655","mc-lean","mdma","105"
"655","mc-lean","127014","MikePatton","mdma","105"
"422","1933","655","mc-lean","mdma","105"
"9858","jesusfreak666er","46865","dyingtomorrow","adderall","105"
"1842","nymphetamine","9858","jesusfreak666er","adderall","105"
"655","mc-lean","90006","Ghetto_Chem","mdma","105"
"655","mc-lean","2239","skilld","mdma","105"
"1","Alfa","4495","vhalin","kava","105"
"655","mc-lean","4910","Fantasian","mdma","105"
"655","mc-lean","67133","User-126494","mdma","105"
"9858","jesusfreak666er","202594","headfull0fstars","adderall","105"
"60","Sick Jack","655","mc-lean","mdma","105"
"655","mc-lean","63028","Smirnoff","mdma","105"
"655","mc-lean","2709","risexagainst","mdma","105"
"655","mc-lean","79297","bostonnew","mdma","105"
"1","Alfa","1842","nymphetamine","kava","105"
"1868","Paderas","9858","jesusfreak666er","adderall","105"
"56","Hollywood ","655","mc-lean","mdma","105"
"655","mc-lean","41207","NeuroMD","mdma","105"
"9858","jesusfreak666er","63028","Smirnoff","adderall","105"
"655","mc-lean","3732","Diphenhydramine","mdma","105"
"655","mc-lean","4218","TheLight01","mdma","105"
"655","mc-lean","6482","psychedelaholic","mdma","105"
"9858","jesusfreak666er","122777","addersloth","adderall","105"
"655","mc-lean","5733","Jatelka ","mdma","105"
"9858","jesusfreak666er","28015","riaahacker","adderall","105"
"655","mc-lean","2610","brainwaxd","mdma","105"
"655","mc-lean","10467","WrtngCocaineTutorial","mdma","105"
"1","Alfa","9858","jesusfreak666er","adderall","105"
"655","mc-lean","2281","billyloner ","mdma","105"
"9858","jesusfreak666er","59051","Priapism9","adderall","105"
"48762","brandon561","108546","reef88","alprazolam","104"
"4333","Benga ","40688","69Ron","acetone","104"
"15232","Tortoise","42579","cabal","codeine","104"
"42579","cabal","57031","rhcpeppers1234","codeine","104"
"1964","enquirewithin ","62508","Makesmefeelbig","mephedrone","104"
"6201","SkUnKaDeLiC","108546","reef88","alprazolam","104"
"40282","Razorbladekiss","42579","cabal","codeine","104"
"1517","Gahaba22 ","4777","IHrtHalucingens","lorazepam","104"
"1964","enquirewithin ","63391","Tamis","mephedrone","104"
"42579","cabal","180313","out_there","codeine","104"
"1964","enquirewithin ","4495","vhalin","mephedrone","104"
"42579","cabal","179359","uberhigh","morphine","104"
"1517","Gahaba22 ","3167","bubaloo","lorazepam","104"
"1595","Curtains","2679","mariecurie","psilocybin","104"
"1964","enquirewithin ","70276","tripolar","mephedrone","104"
"9","Freedom of Mind","42579","cabal","codeine","104"
"42579","cabal","100767","missinglfe","codeine","104"
"1239","Nicaine","108546","reef88","alprazolam","104"
"1964","enquirewithin ","57101","Terrapinzflyer ","mephedrone","104"
"19028","RochiWizz","21513","HorseBucket","methylphenidate","104"
"401","peggs16","108546","reef88","alprazolam","104"
"18769","samuraigecko","42579","cabal","morphine","104"
"42579","cabal","180313","out_there","morphine","104"
"28899","Esmerelda","42579","cabal","morphine","104"
"1517","Gahaba22 ","5010","snapper ","lorazepam","104"
"1964","enquirewithin ","74620","methuselah969","mephedrone","104"
"42579","cabal","61180","Helene ","codeine","104"
"835","Thegreatone","4333","Benga ","acetone","104"
"1964","enquirewithin ","8016","chillinwill","mephedrone","104"
"1023","btoddw2","42579","cabal","codeine","104"
"1868","Paderas","2679","mariecurie","psilocybin","104"
"42579","cabal","45599","On The Nod","morphine","104"
"1517","Gahaba22 ","6201","SkUnKaDeLiC","lorazepam","104"
"1964","enquirewithin ","11411","supremedan","mephedrone","104"
"19028","RochiWizz","42579","cabal","morphine","104"
"21513","HorseBucket","68194","baZING","methylphenidate","104"
"42579","cabal","46865","dyingtomorrow","morphine","104"
"1964","enquirewithin ","62077","WTF O_o","mephedrone","104"
"7946","788.4","42579","cabal","codeine","104"
"4495","vhalin","108546","reef88","alprazolam","104"
"2679","mariecurie","4969","kaide","psilocybin","104"
"21513","HorseBucket","57031","rhcpeppers1234","methylphenidate","104"
"4495","vhalin","42579","cabal","morphine","104"
"2418","Phungushead","42579","cabal","morphine","104"
"28015","riaahacker","108546","reef88","alprazolam","104"
"153","blaze","1964","enquirewithin ","mephedrone","104"
"1964","enquirewithin ","50050","Gradient","mephedrone","104"
"1","Alfa","108546","reef88","alprazolam","104"
"1842","nymphetamine","42579","cabal","codeine","104"
"1714","magicmaster141","108546","reef88","alprazolam","104"
"539","stndguy","2679","mariecurie","psilocybin","104"
"4910","Fantasian","42579","cabal","codeine","104"
"42579","cabal","77229","reckoner","codeine","104"
"11411","supremedan","42579","cabal","morphine","104"
"1964","enquirewithin ","3471","Potassium Kid","mephedrone","104"
"4333","Benga ","4490","DJ-666","acetone","104"
"35486","NeuroChi","42579","cabal","morphine","104"
"1329","khonsu13","42579","cabal","morphine","104"
"3375","MrJim","42579","cabal","codeine","104"
"42579","cabal","58307","missparkles ","codeine","104"
"1964","enquirewithin ","20109","imyourlittlebare","mephedrone","104"
"1","Alfa","1964","enquirewithin ","mephedrone","104"
"16345","IkBenDeMan","42579","cabal","morphine","104"
"1517","Gahaba22 ","9904","Benzeneringz","lorazepam","104"
"1964","enquirewithin ","55332","LowCrawl To Freedom","mephedrone","104"
"11411","supremedan","21513","HorseBucket","methylphenidate","104"
"42579","cabal","83387","PrincessJo x","codeine","104"
"5010","snapper ","42579","cabal","morphine","104"
"1964","enquirewithin ","45583","Synesthesiac","mephedrone","104"
"2418","Phungushead","21513","HorseBucket","methylphenidate","104"
"35486","NeuroChi","42579","cabal","codeine","104"
"42579","cabal","156304","PillMan","morphine","104"
"28015","riaahacker","42579","cabal","morphine","104"
"1517","Gahaba22 ","220080","Lunaciel","lorazepam","104"
"4910","Fantasian","42579","cabal","morphine","104"
"1964","enquirewithin ","68044","fanyovsky","mephedrone","104"
"1868","Paderas","42579","cabal","morphine","104"
"42579","cabal","118772","Mr_Spiffy","codeine","104"
"56","Hollywood ","42579","cabal","morphine","104"
"1842","nymphetamine","42579","cabal","morphine","104"
"1964","enquirewithin ","4092","trptamene ","mephedrone","104"
"7946","788.4","42579","cabal","morphine","104"
"9","Freedom of Mind","42579","cabal","morphine","104"
"42579","cabal","102420","spicybrainsgirl","morphine","104"
"1","Alfa","2679","mariecurie","psilocybin","104"
"1517","Gahaba22 ","1714","magicmaster141","lorazepam","104"
"1964","enquirewithin ","2822","fastandbulbous","mephedrone","104"
"42579","cabal","45599","On The Nod","codeine","104"
"1964","enquirewithin ","28015","riaahacker","mephedrone","104"
"9","Freedom of Mind","108546","reef88","alprazolam","104"
"4495","vhalin","42579","cabal","codeine","104"
"63028","Smirnoff","108546","reef88","alprazolam","104"
"42579","cabal","118772","Mr_Spiffy","morphine","104"
"1517","Gahaba22 ","180313","out_there","lorazepam","104"
"1964","enquirewithin ","124017","LoveNwar","mephedrone","104"
"56","Hollywood ","42579","cabal","codeine","104"
"28899","Esmerelda","42579","cabal","codeine","104"
"28015","riaahacker","42579","cabal","codeine","104"
"42579","cabal","63028","Smirnoff","codeine","104"
"4777","IHrtHalucingens","108546","reef88","alprazolam","104"
"21513","HorseBucket","55332","LowCrawl To Freedom","methylphenidate","104"
"42579","cabal","63028","Smirnoff","morphine","104"
"1526","Cuberun ","1964","enquirewithin ","mephedrone","104"
"1517","Gahaba22 ","1842","nymphetamine","lorazepam","104"
"1964","enquirewithin ","57308","BoyInTheCountry","mephedrone","104"
"3299","anabolictrio","42579","cabal","morphine","104"
"1842","nymphetamine","1964","enquirewithin ","mephedrone","104"
"2679","mariecurie","57101","Terrapinzflyer ","psilocybin","104"
"3167","bubaloo","108546","reef88","alprazolam","104"
"21513","HorseBucket","41143","RoboCodeine7610","methylphenidate","104"
"7303","pankreeas ","42579","cabal","morphine","104"
"1","Alfa","42579","cabal","morphine","104"
"1","Alfa","21513","HorseBucket","methylphenidate","104"
"1964","enquirewithin ","96636","Mersann","mephedrone","104"
"1684","CABS205","42579","cabal","codeine","104"
"2679","mariecurie","4495","vhalin","psilocybin","104"
"21513","HorseBucket","46865","dyingtomorrow","methylphenidate","104"
"1842","nymphetamine","21513","HorseBucket","methylphenidate","104"
"130","Woodman ","4333","Benga ","acetone","104"
"1224","markdahman","42579","cabal","codeine","104"
"9904","Benzeneringz","108546","reef88","alprazolam","104"
"1964","enquirewithin ","5750","pharmapsyche","mephedrone","104"
"391","leanbaby","4333","Benga ","acetone","104"
"1868","Paderas","1964","enquirewithin ","mephedrone","104"
"2112","QGdoxl ","42579","cabal","codeine","104"
"56","Hollywood ","108546","reef88","alprazolam","104"
"42579","cabal","80751","AnrBjotk","codeine","104"
"1964","enquirewithin ","53567","buzzman","mephedrone","104"
"9","Freedom of Mind","1517","Gahaba22 ","lorazepam","104"
"1868","Paderas","6294","astenu","mdma","103"
"15832","JapanHorrorUncut","105372","frost458","mdma","103"
"297","UglyInfidel","105372","frost458","mdma","103"
"6294","astenu","41207","NeuroMD","mdma","103"
"2610","brainwaxd","105372","frost458","mdma","103"
"1411","umich","83387","PrincessJo x","mdma","103"
"1","Alfa","105372","frost458","mdma","103"
"1411","umich","1935","duchy ","mdma","103"
"6294","astenu","19028","RochiWizz","mdma","103"
"1411","umich","35486","NeuroChi","mdma","103"
"67133","User-126494","105372","frost458","mdma","103"
"14541","laws0n","63028","Smirnoff","oxycodone","103"
"1411","umich","6052","KomodoMK","mdma","103"
"2418","Phungushead","14541","laws0n","oxycodone","103"
"6294","astenu","35993","Greenport","mdma","103"
"1411","umich","59051","Priapism9","mdma","103"
"14541","laws0n","218660","Jerms81","oxycodone","103"
"1411","umich","45583","Synesthesiac","mdma","103"
"1411","umich","9351","M3th","mdma","103"
"62","BA","6294","astenu","mdma","103"
"6294","astenu","90006","Ghetto_Chem","mdma","103"
"63028","Smirnoff","105372","frost458","mdma","103"
"105372","frost458","129304","Dankitydankness","mdma","103"
"14541","laws0n","46865","dyingtomorrow","oxycodone","103"
"6482","psychedelaholic","105372","frost458","mdma","103"
"6294","astenu","57031","rhcpeppers1234","mdma","103"
"2577","Stingray_313 ","6294","astenu","mdma","103"
"75","Leo.","6294","astenu","mdma","103"
"1411","umich","1595","Curtains","mdma","103"
"14541","laws0n","135119","pup555","oxycodone","103"
"4218","TheLight01","105372","frost458","mdma","103"
"422","1933","6294","astenu","mdma","103"
"1411","umich","54214","Zoidberg","mdma","103"
"788","mdve2","6294","astenu","mdma","103"
"2239","skilld","6294","astenu","mdma","103"
"1411","umich","57031","rhcpeppers1234","mdma","103"
"62","BA","105372","frost458","mdma","103"
"6294","astenu","180313","out_there","mdma","103"
"105372","frost458","124017","LoveNwar","mdma","103"
"7946","788.4","14541","laws0n","oxycodone","103"
"57031","rhcpeppers1234","105372","frost458","mdma","103"
"9904","Benzeneringz","14541","laws0n","oxycodone","103"
"6294","astenu","11411","supremedan","mdma","103"
"75","Leo.","105372","frost458","mdma","103"
"1411","umich","7303","pankreeas ","mdma","103"
"14541","laws0n","65726","ellavader","oxycodone","103"
"422","1933","105372","frost458","mdma","103"
"1411","umich","5750","pharmapsyche","mdma","103"
"788","mdve2","105372","frost458","mdma","103"
"6052","KomodoMK","6294","astenu","mdma","103"
"655","mc-lean","1411","umich","mdma","103"
"6294","astenu","45618","cannabis-sam","mdma","103"
"5750","pharmapsyche","105372","frost458","mdma","103"
"105372","frost458","127014","MikePatton","mdma","103"
"1806","betty_bupe","6294","astenu","mdma","103"
"60","Sick Jack","6294","astenu","mdma","103"
"2709","risexagainst","105372","frost458","mdma","103"
"59051","Priapism9","105372","frost458","mdma","103"
"1411","umich","119102","roastlamb123","mdma","103"
"6294","astenu","46865","dyingtomorrow","mdma","103"
"56","Hollywood ","6294","astenu","mdma","103"
"41207","NeuroMD","105372","frost458","mdma","103"
"1411","umich","4495","vhalin","mdma","103"
"14541","laws0n","45599","On The Nod","oxycodone","103"
"1411","umich","19028","RochiWizz","mdma","103"
"1562","soer","6294","astenu","mdma","103"
"6294","astenu","54108","Alexander_Praves","mdma","103"
"60","Sick Jack","105372","frost458","mdma","103"
"1411","umich","11411","supremedan","mdma","103"
"1411","umich","105372","frost458","mdma","103"
"6294","astenu","6482","psychedelaholic","mdma","103"
"56","Hollywood ","105372","frost458","mdma","103"
"1411","umich","57101","Terrapinzflyer ","mdma","103"
"14541","laws0n","108860","Pain Hurts","oxycodone","103"
"1411","umich","90006","Ghetto_Chem","mdma","103"
"9351","M3th","105372","frost458","mdma","103"
"1595","Curtains","105372","frost458","mdma","103"
"6294","astenu","127014","MikePatton","mdma","103"
"3345","Unsolved","6294","astenu","mdma","103"
"3732","Diphenhydramine","6294","astenu","mdma","103"
"1915","curve","6294","astenu","mdma","103"
"1411","umich","2239","skilld","mdma","103"
"1411","umich","67133","User-126494","mdma","103"
"6294","astenu","45583","Synesthesiac","mdma","103"
"9781","cutiepie","14541","laws0n","oxycodone","103"
"5733","Jatelka ","105372","frost458","mdma","103"
"1411","umich","1868","Paderas","mdma","103"
"14541","laws0n","211963","WoodyCA","oxycodone","103"
"1411","umich","2709","risexagainst","mdma","103"
"4910","Fantasian","105372","frost458","mdma","103"
"2281","billyloner ","6294","astenu","mdma","103"
"1832","opiumjade7","6294","astenu","mdma","103"
"6294","astenu","63028","Smirnoff","mdma","103"
"45583","Synesthesiac","105372","frost458","mdma","103"
"6294","astenu","105372","frost458","mdma","103"
"1842","nymphetamine","6294","astenu","mdma","103"
"1411","umich","79297","bostonnew","mdma","103"
"1411","umich","41207","NeuroMD","mdma","103"
"539","stndguy","1411","umich","mdma","103"
"1935","duchy ","105372","frost458","mdma","103"
"2418","Phungushead","6294","astenu","mdma","103"
"2271","polloloco001 ","6294","astenu","mdma","103"
"6294","astenu","54214","Zoidberg","mdma","103"
"1411","umich","1562","soer","mdma","103"
"14541","laws0n","118772","Mr_Spiffy","oxycodone","103"
"1411","umich","180313","out_there","mdma","103"
"4495","vhalin","6294","astenu","mdma","103"
"297","UglyInfidel","1411","umich","mdma","103"
"6294","astenu","67133","User-126494","mdma","103"
"2610","brainwaxd","6294","astenu","mdma","103"
"1411","umich","6482","psychedelaholic","mdma","103"
"1","Alfa","1411","umich","mdma","103"
"1411","umich","5733","Jatelka ","mdma","103"
"6294","astenu","15832","JapanHorrorUncut","mdma","103"
"1411","umich","1842","nymphetamine","mdma","103"
"3375","MrJim","14541","laws0n","oxycodone","103"
"14541","laws0n","180313","out_there","oxycodone","103"
"1411","umich","45618","cannabis-sam","mdma","103"
"4490","DJ-666","105372","frost458","mdma","103"
"1868","Paderas","105372","frost458","mdma","103"
"19028","RochiWizz","105372","frost458","mdma","103"
"6294","astenu","129304","Dankitydankness","mdma","103"
"1411","umich","2281","billyloner ","mdma","103"
"1411","umich","35993","Greenport","mdma","103"
"15564","Le Junk","105372","frost458","mdma","103"
"7303","pankreeas ","14541","laws0n","oxycodone","103"
"6294","astenu","7946","788.4","mdma","103"
"1411","umich","2418","Phungushead","mdma","103"
"14541","laws0n","294051","Jungledog","oxycodone","103"
"1411","umich","1806","betty_bupe","mdma","103"
"11411","supremedan","14541","laws0n","oxycodone","103"
"6294","astenu","9351","M3th","mdma","103"
"1411","umich","3345","Unsolved","mdma","103"
"14541","laws0n","35591","AACrazy2892","oxycodone","103"
"4218","TheLight01","6294","astenu","mdma","103"
"1411","umich","96636","Mersann","mdma","103"
"1411","umich","4490","DJ-666","mdma","103"
"62","BA","1411","umich","mdma","103"
"6294","astenu","15564","Le Junk","mdma","103"
"105372","frost458","119102","roastlamb123","mdma","103"
"14541","laws0n","35486","NeuroChi","oxycodone","103"
"55332","LowCrawl To Freedom","105372","frost458","mdma","103"
"46865","dyingtomorrow","105372","frost458","mdma","103"
"6294","astenu","119102","roastlamb123","mdma","103"
"2577","Stingray_313 ","105372","frost458","mdma","103"
"75","Leo.","1411","umich","mdma","103"
"1411","umich","54108","Alexander_Praves","mdma","103"
"14541","laws0n","83387","PrincessJo x","oxycodone","103"
"422","1933","1411","umich","mdma","103"
"1411","umich","124017","LoveNwar","mdma","103"
"788","mdve2","1411","umich","mdma","103"
"2239","skilld","105372","frost458","mdma","103"
"1411","umich","2577","Stingray_313 ","mdma","103"
"655","mc-lean","6294","astenu","mdma","103"
"6294","astenu","10467","WrtngCocaineTutorial","mdma","103"
"5750","pharmapsyche","6294","astenu","mdma","103"
"105372","frost458","180313","out_there","mdma","103"
"57101","Terrapinzflyer ","105372","frost458","mdma","103"
"2709","risexagainst","6294","astenu","mdma","103"
"6294","astenu","32247","Lettish","mdma","103"
"1411","umich","127014","MikePatton","mdma","103"
"7303","pankreeas ","105372","frost458","mdma","103"
"7946","788.4","105372","frost458","mdma","103"
"14541","laws0n","280861","Hydroxyout","oxycodone","103"
"79297","bostonnew","105372","frost458","mdma","103"
"1411","umich","15832","JapanHorrorUncut","mdma","103"
"6052","KomodoMK","105372","frost458","mdma","103"
"655","mc-lean","105372","frost458","mdma","103"
"56","Hollywood ","14541","laws0n","oxycodone","103"
"6294","astenu","59051","Priapism9","mdma","103"
"35486","NeuroChi","105372","frost458","mdma","103"
"32247","Lettish","105372","frost458","mdma","103"
"1806","betty_bupe","105372","frost458","mdma","103"
"60","Sick Jack","1411","umich","mdma","103"
"4495","vhalin","14541","laws0n","oxycodone","103"
"1411","umich","2271","polloloco001 ","mdma","103"
"1411","umich","6294","astenu","mdma","103"
"6294","astenu","79297","bostonnew","mdma","103"
"56","Hollywood ","1411","umich","mdma","103"
"1411","umich","4910","Fantasian","mdma","103"
"54214","Zoidberg","105372","frost458","mdma","103"
"14541","laws0n","207982","tryinghard","oxycodone","103"
"1411","umich","7946","788.4","mdma","103"
"1562","soer","105372","frost458","mdma","103"
"1595","Curtains","6294","astenu","mdma","103"
"6294","astenu","7303","pankreeas ","mdma","103"
"83387","PrincessJo x","105372","frost458","mdma","103"
"1411","umich","32247","Lettish","mdma","103"
"1411","umich","55332","LowCrawl To Freedom","mdma","103"
"45618","cannabis-sam","105372","frost458","mdma","103"
"6294","astenu","83387","PrincessJo x","mdma","103"
"5733","Jatelka ","6294","astenu","mdma","103"
"1411","umich","63028","Smirnoff","mdma","103"
"14541","laws0n","220080","Lunaciel","oxycodone","103"
"1411","umich","15564","Le Junk","mdma","103"
"10467","WrtngCocaineTutorial","105372","frost458","mdma","103"
"4910","Fantasian","6294","astenu","mdma","103"
"6294","astenu","57101","Terrapinzflyer ","mdma","103"
"54108","Alexander_Praves","105372","frost458","mdma","103"
"3345","Unsolved","105372","frost458","mdma","103"
"3732","Diphenhydramine","105372","frost458","mdma","103"
"1915","curve","105372","frost458","mdma","103"
"1411","umich","46865","dyingtomorrow","mdma","103"
"1411","umich","1832","opiumjade7","mdma","103"
"539","stndguy","6294","astenu","mdma","103"
"11411","supremedan","105372","frost458","mdma","103"
"1935","duchy ","6294","astenu","mdma","103"
"1842","nymphetamine","14541","laws0n","oxycodone","103"
"6294","astenu","96636","Mersann","mdma","103"
"1411","umich","3732","Diphenhydramine","mdma","103"
"14541","laws0n","68194","baZING","oxycodone","103"
"1411","umich","4218","TheLight01","mdma","103"
"2281","billyloner ","105372","frost458","mdma","103"
"1832","opiumjade7","105372","frost458","mdma","103"
"6294","astenu","35486","NeuroChi","mdma","103"
"297","UglyInfidel","6294","astenu","mdma","103"
"6294","astenu","55332","LowCrawl To Freedom","mdma","103"
"1842","nymphetamine","105372","frost458","mdma","103"
"1411","umich","1915","curve","mdma","103"
"1","Alfa","6294","astenu","mdma","103"
"1411","umich","129304","Dankitydankness","mdma","103"
"539","stndguy","105372","frost458","mdma","103"
"2418","Phungushead","105372","frost458","mdma","103"
"2271","polloloco001 ","105372","frost458","mdma","103"
"6294","astenu","124017","LoveNwar","mdma","103"
"35993","Greenport","105372","frost458","mdma","103"
"1411","umich","2610","brainwaxd","mdma","103"
"14541","laws0n","156304","PillMan","oxycodone","103"
"1411","umich","10467","WrtngCocaineTutorial","mdma","103"
"90006","Ghetto_Chem","105372","frost458","mdma","103"
"96636","Mersann","105372","frost458","mdma","103"
"4490","DJ-666","6294","astenu","mdma","103"
"4495","vhalin","105372","frost458","mdma","103"
"74627","SwiftyyFlintt","83387","PrincessJo x","mdma","102"
"19028","RochiWizz","74627","SwiftyyFlintt","mdma","102"
"16700","beena","236416","lyoness","methadone","102"
"3310","Potter ","10891","Bajeda ","kava","102"
"9","Freedom of Mind","74627","SwiftyyFlintt","clonazepam","102"
"2822","fastandbulbous","45509","REDSOXFAN","kratom","102"
"27864","G_nome","236416","lyoness","methadone","102"
"37112","ihavequestions","74627","SwiftyyFlintt","mdma","102"
"100767","missinglfe","236416","lyoness","methadone","102"
"1595","Curtains","236416","lyoness","methadone","102"
"15564","Le Junk","74627","SwiftyyFlintt","mdma","102"
"65726","ellavader","74627","SwiftyyFlintt","oxycodone","102"
"62","BA","37112","ihavequestions","mdma","102"
"14677","splish6","74627","SwiftyyFlintt","phenazepam","102"
"7303","pankreeas ","74627","SwiftyyFlintt","oxycodone","102"
"74627","SwiftyyFlintt","83387","PrincessJo x","oxycodone","102"
"45509","REDSOXFAN","46865","dyingtomorrow","kratom","102"
"37112","ihavequestions","45618","cannabis-sam","mdma","102"
"112582","tryinmybest","236416","lyoness","methadone","102"
"63028","Smirnoff","74627","SwiftyyFlintt","clonazepam","102"
"102824","natey7","236416","lyoness","methadone","102"
"3146","Nahbus ","45599","On The Nod","ritalin","102"
"74627","SwiftyyFlintt","124017","LoveNwar","mdma","102"
"56","Hollywood ","74627","SwiftyyFlintt","clonazepam","102"
"2418","Phungushead","236416","lyoness","methadone","102"
"6482","psychedelaholic","37112","ihavequestions","mdma","102"
"1526","Cuberun ","74627","SwiftyyFlintt","phenazepam","102"
"3310","Potter ","90006","Ghetto_Chem","kava","102"
"11411","supremedan","74627","SwiftyyFlintt","oxycodone","102"
"2577","Stingray_313 ","37112","ihavequestions","mdma","102"
"75","Leo.","37112","ihavequestions","mdma","102"
"3299","anabolictrio","134323","Roll1N","hydrocodone","102"
"118772","Mr_Spiffy","134323","Roll1N","hydrocodone","102"
"4218","TheLight01","74627","SwiftyyFlintt","mdma","102"
"422","1933","37112","ihavequestions","mdma","102"
"37112","ihavequestions","55332","LowCrawl To Freedom","mdma","102"
"788","mdve2","37112","ihavequestions","mdma","102"
"2239","skilld","37112","ihavequestions","mdma","102"
"74627","SwiftyyFlintt","207982","tryinghard","oxycodone","102"
"45509","REDSOXFAN","115136","trdofbeingtrd","kratom","102"
"37112","ihavequestions","54108","Alexander_Praves","mdma","102"
"3146","Nahbus ","21513","HorseBucket","ritalin","102"
"1964","enquirewithin ","45509","REDSOXFAN","kratom","102"
"55332","LowCrawl To Freedom","74627","SwiftyyFlintt","mdma","102"
"1","Alfa","74627","SwiftyyFlintt","psilocybin","102"
"74627","SwiftyyFlintt","180313","out_there","mdma","102"
"46865","dyingtomorrow","74627","SwiftyyFlintt","mdma","102"
"3310","Potter ","5010","snapper ","kava","102"
"46446","EyesOfTheWorld","236416","lyoness","methadone","102"
"1842","nymphetamine","74627","SwiftyyFlintt","phenazepam","102"
"37112","ihavequestions","41207","NeuroMD","mdma","102"
"6052","KomodoMK","37112","ihavequestions","mdma","102"
"28015","riaahacker","134323","Roll1N","hydrocodone","102"
"45618","cannabis-sam","236416","lyoness","methadone","102"
"74627","SwiftyyFlintt","220080","Lunaciel","oxycodone","102"
"9","Freedom of Mind","74627","SwiftyyFlintt","alprazolam","102"
"655","mc-lean","74627","SwiftyyFlintt","mdma","102"
"5750","pharmapsyche","74627","SwiftyyFlintt","mdma","102"
"1806","betty_bupe","37112","ihavequestions","mdma","102"
"45509","REDSOXFAN","275468","Openmymind","kratom","102"
"60","Sick Jack","37112","ihavequestions","mdma","102"
"57101","Terrapinzflyer ","74627","SwiftyyFlintt","mdma","102"
"105712","boy_char","236416","lyoness","methadone","102"
"2709","risexagainst","74627","SwiftyyFlintt","mdma","102"
"37112","ihavequestions","57101","Terrapinzflyer ","mdma","102"
"63028","Smirnoff","74627","SwiftyyFlintt","alprazolam","102"
"3146","Nahbus ","5750","pharmapsyche","ritalin","102"
"45599","On The Nod","236416","lyoness","methadone","102"
"16489","baron samedi","236416","lyoness","methadone","102"
"1521","Smarthead","45509","REDSOXFAN","kratom","102"
"170641","jimmym321","236416","lyoness","methadone","102"
"3310","Potter ","63028","Smirnoff","kava","102"
"56","Hollywood ","37112","ihavequestions","mdma","102"
"7303","pankreeas ","74627","SwiftyyFlintt","mdma","102"
"7946","788.4","74627","SwiftyyFlintt","mdma","102"
"35591","AACrazy2892","74627","SwiftyyFlintt","oxycodone","102"
"35486","NeuroChi","134323","Roll1N","hydrocodone","102"
"4777","IHrtHalucingens","74627","SwiftyyFlintt","alprazolam","102"
"37112","ihavequestions","57031","rhcpeppers1234","mdma","102"
"46865","dyingtomorrow","236416","lyoness","methadone","102"
"1562","soer","37112","ihavequestions","mdma","102"
"58307","missparkles ","236416","lyoness","methadone","102"
"1753","kailey_elise ","236416","lyoness","methadone","102"
"74627","SwiftyyFlintt","118772","Mr_Spiffy","oxycodone","102"
"13344","drewcil","45509","REDSOXFAN","kratom","102"
"56","Hollywood ","74627","SwiftyyFlintt","oxycodone","102"
"81101","source","236416","lyoness","methadone","102"
"35486","NeuroChi","74627","SwiftyyFlintt","mdma","102"
"32247","Lettish","74627","SwiftyyFlintt","mdma","102"
"45509","REDSOXFAN","155253","MachoManSavage","kratom","102"
"4910","Fantasian","236416","lyoness","methadone","102"
"4495","vhalin","74627","SwiftyyFlintt","oxycodone","102"
"3146","Nahbus ","28015","riaahacker","ritalin","102"
"16345","IkBenDeMan","236416","lyoness","methadone","102"
"118772","Mr_Spiffy","236416","lyoness","methadone","102"
"74627","SwiftyyFlintt","180313","out_there","clonazepam","102"
"1411","umich","74627","SwiftyyFlintt","mdma","102"
"194301","rosielee","236416","lyoness","methadone","102"
"1239","Nicaine","45509","REDSOXFAN","kratom","102"
"6201","SkUnKaDeLiC","74627","SwiftyyFlintt","clonazepam","102"
"54214","Zoidberg","74627","SwiftyyFlintt","mdma","102"
"16345","IkBenDeMan","134323","Roll1N","hydrocodone","102"
"37112","ihavequestions","46865","dyingtomorrow","mdma","102"
"9351","M3th","37112","ihavequestions","mdma","102"
"134323","Roll1N","180932","gal68","hydrocodone","102"
"883","apoch22","3146","Nahbus ","ritalin","102"
"2679","mariecurie","74627","SwiftyyFlintt","psilocybin","102"
"74627","SwiftyyFlintt","180313","out_there","oxycodone","102"
"1595","Curtains","74627","SwiftyyFlintt","mdma","102"
"28015","riaahacker","45509","REDSOXFAN","kratom","102"
"3167","bubaloo","74627","SwiftyyFlintt","alprazolam","102"
"45509","REDSOXFAN","118772","Mr_Spiffy","kratom","102"
"3345","Unsolved","37112","ihavequestions","mdma","102"
"1842","nymphetamine","3146","Nahbus ","ritalin","102"
"3732","Diphenhydramine","37112","ihavequestions","mdma","102"
"1915","curve","37112","ihavequestions","mdma","102"
"74627","SwiftyyFlintt","108546","reef88","alprazolam","102"
"45618","cannabis-sam","74627","SwiftyyFlintt","mdma","102"
"12715","Broshious","180313","out_there","etizolam","102"
"5733","Jatelka ","74627","SwiftyyFlintt","mdma","102"
"4495","vhalin","45509","REDSOXFAN","kratom","102"
"45509","REDSOXFAN","291968","servo75","kratom","102"
"37112","ihavequestions","83387","PrincessJo x","mdma","102"
"10467","WrtngCocaineTutorial","74627","SwiftyyFlintt","mdma","102"
"4910","Fantasian","74627","SwiftyyFlintt","mdma","102"
"2281","billyloner ","37112","ihavequestions","mdma","102"
"1832","opiumjade7","37112","ihavequestions","mdma","102"
"54108","Alexander_Praves","74627","SwiftyyFlintt","mdma","102"
"45509","REDSOXFAN","127014","MikePatton","kratom","102"
"6294","astenu","37112","ihavequestions","mdma","102"
"63028","Smirnoff","236416","lyoness","methadone","102"
"1842","nymphetamine","37112","ihavequestions","mdma","102"
"134323","Roll1N","156304","PillMan","hydrocodone","102"
"4495","vhalin","37112","ihavequestions","mdma","102"
"236416","lyoness","268087","Pbnjesse","methadone","102"
"35486","NeuroChi","45509","REDSOXFAN","kratom","102"
"539","stndguy","74627","SwiftyyFlintt","mdma","102"
"7946","788.4","236416","lyoness","methadone","102"
"11411","supremedan","74627","SwiftyyFlintt","mdma","102"
"9904","Benzeneringz","74627","SwiftyyFlintt","alprazolam","102"
"1935","duchy ","74627","SwiftyyFlintt","mdma","102"
"1842","nymphetamine","74627","SwiftyyFlintt","oxycodone","102"
"2418","Phungushead","37112","ihavequestions","mdma","102"
"2271","polloloco001 ","37112","ihavequestions","mdma","102"
"45509","REDSOXFAN","117995","dreamy","kratom","102"
"37112","ihavequestions","96636","Mersann","mdma","102"
"74627","SwiftyyFlintt","129304","Dankitydankness","mdma","102"
"297","UglyInfidel","74627","SwiftyyFlintt","mdma","102"
"63028","Smirnoff","74627","SwiftyyFlintt","phenazepam","102"
"218660","Jerms81","236416","lyoness","methadone","102"
"45509","REDSOXFAN","273439","marathonmel7","kratom","102"
"56","Hollywood ","74627","SwiftyyFlintt","alprazolam","102"
"230750","MoreGutzThanGlory","236416","lyoness","methadone","102"
"2610","brainwaxd","37112","ihavequestions","mdma","102"
"1","Alfa","74627","SwiftyyFlintt","mdma","102"
"46865","dyingtomorrow","74627","SwiftyyFlintt","oxycodone","102"
"35993","Greenport","74627","SwiftyyFlintt","mdma","102"
"45509","REDSOXFAN","74033","TheSweetPea","kratom","102"
"5733","Jatelka ","74627","SwiftyyFlintt","clonazepam","102"
"37112","ihavequestions","124017","LoveNwar","mdma","102"
"4490","DJ-666","74627","SwiftyyFlintt","mdma","102"
"1868","Paderas","74627","SwiftyyFlintt","mdma","102"
"48762","brandon561","74627","SwiftyyFlintt","alprazolam","102"
"15832","JapanHorrorUncut","74627","SwiftyyFlintt","mdma","102"
"74627","SwiftyyFlintt","79297","bostonnew","mdma","102"
"19028","RochiWizz","37112","ihavequestions","mdma","102"
"3310","Potter ","9904","Benzeneringz","kava","102"
"10410","DXMBunny","45509","REDSOXFAN","kratom","102"
"15564","Le Junk","37112","ihavequestions","mdma","102"
"1842","nymphetamine","45509","REDSOXFAN","kratom","102"
"74627","SwiftyyFlintt","135119","pup555","oxycodone","102"
"6201","SkUnKaDeLiC","74627","SwiftyyFlintt","alprazolam","102"
"1714","magicmaster141","74627","SwiftyyFlintt","clonazepam","102"
"3167","bubaloo","74627","SwiftyyFlintt","clonazepam","102"
"48119","Jasim ","74627","SwiftyyFlintt","phenazepam","102"
"45509","REDSOXFAN","90006","Ghetto_Chem","kratom","102"
"67133","User-126494","74627","SwiftyyFlintt","mdma","102"
"45618","cannabis-sam","134323","Roll1N","hydrocodone","102"
"2418","Phungushead","45509","REDSOXFAN","kratom","102"
"37112","ihavequestions","180313","out_there","mdma","102"
"2418","Phungushead","74627","SwiftyyFlintt","oxycodone","102"
"3146","Nahbus ","111239","whocaresdude91","ritalin","102"
"135","sands of time","45509","REDSOXFAN","kratom","102"
"1112","hh339 ","3146","Nahbus ","ritalin","102"
"74627","SwiftyyFlintt","96636","Mersann","mdma","102"
"3310","Potter ","11411","supremedan","kava","102"
"1","Alfa","3310","Potter ","kava","102"
"14541","laws0n","74627","SwiftyyFlintt","oxycodone","102"
"4218","TheLight01","37112","ihavequestions","mdma","102"
"37112","ihavequestions","105372","frost458","mdma","102"
"62","BA","74627","SwiftyyFlintt","mdma","102"
"62096","Cooki ","236416","lyoness","methadone","102"
"74627","SwiftyyFlintt","280861","Hydroxyout","oxycodone","102"
"63028","Smirnoff","74627","SwiftyyFlintt","mdma","102"
"202594","headfull0fstars","236416","lyoness","methadone","102"
"45509","REDSOXFAN","102420","spicybrainsgirl","kratom","102"
"1842","nymphetamine","3310","Potter ","kava","102"
"37112","ihavequestions","59051","Priapism9","mdma","102"
"3146","Nahbus ","122372","PatrickEngle","ritalin","102"
"69047","lease25","236416","lyoness","methadone","102"
"74627","SwiftyyFlintt","90006","Ghetto_Chem","mdma","102"
"1595","Curtains","74627","SwiftyyFlintt","psilocybin","102"
"6482","psychedelaholic","74627","SwiftyyFlintt","mdma","102"
"127014","MikePatton","236416","lyoness","methadone","102"
"68194","baZING","74627","SwiftyyFlintt","oxycodone","102"
"20234","ianzombie ","45509","REDSOXFAN","kratom","102"
"3310","Potter ","11877","howlongisthenight","kava","102"
"2577","Stingray_313 ","74627","SwiftyyFlintt","mdma","102"
"75","Leo.","74627","SwiftyyFlintt","mdma","102"
"18965","beentheredonethatagain","236416","lyoness","methadone","102"
"422","1933","74627","SwiftyyFlintt","mdma","102"
"37112","ihavequestions","67133","User-126494","mdma","102"
"788","mdve2","74627","SwiftyyFlintt","mdma","102"
"9904","Benzeneringz","236416","lyoness","methadone","102"
"2239","skilld","74627","SwiftyyFlintt","mdma","102"
"1239","Nicaine","74627","SwiftyyFlintt","alprazolam","102"
"6201","SkUnKaDeLiC","74627","SwiftyyFlintt","phenazepam","102"
"4495","vhalin","74627","SwiftyyFlintt","psilocybin","102"
"74627","SwiftyyFlintt","108860","Pain Hurts","oxycodone","102"
"102420","spicybrainsgirl","236416","lyoness","methadone","102"
"655","mc-lean","37112","ihavequestions","mdma","102"
"5750","pharmapsyche","37112","ihavequestions","mdma","102"
"45509","REDSOXFAN","91040","Dankfish","kratom","102"
"2709","risexagainst","37112","ihavequestions","mdma","102"
"7946","788.4","74627","SwiftyyFlintt","oxycodone","102"
"37112","ihavequestions","127014","MikePatton","mdma","102"
"401","peggs16","74627","SwiftyyFlintt","alprazolam","102"
"3146","Nahbus ","41143","RoboCodeine7610","ritalin","102"
"74627","SwiftyyFlintt","127014","MikePatton","mdma","102"
"57031","rhcpeppers1234","74627","SwiftyyFlintt","mdma","102"
"9","Freedom of Mind","134323","Roll1N","hydrocodone","102"
"9904","Benzeneringz","74627","SwiftyyFlintt","oxycodone","102"
"3310","Potter ","4495","vhalin","kava","102"
"401","peggs16","74627","SwiftyyFlintt","clonazepam","102"
"7303","pankreeas ","37112","ihavequestions","mdma","102"
"7946","788.4","37112","ihavequestions","mdma","102"
"28015","riaahacker","236416","lyoness","methadone","102"
"37112","ihavequestions","129304","Dankitydankness","mdma","102"
"6052","KomodoMK","74627","SwiftyyFlintt","mdma","102"
"6201","SkUnKaDeLiC","236416","lyoness","methadone","102"
"4495","vhalin","134323","Roll1N","hydrocodone","102"
"74627","SwiftyyFlintt","211963","WoodyCA","oxycodone","102"
"35486","NeuroChi","37112","ihavequestions","mdma","102"
"32247","Lettish","37112","ihavequestions","mdma","102"
"1806","betty_bupe","74627","SwiftyyFlintt","mdma","102"
"45509","REDSOXFAN","156304","PillMan","kratom","102"
"11411","supremedan","74627","SwiftyyFlintt","phenazepam","102"
"60","Sick Jack","74627","SwiftyyFlintt","mdma","102"
"37112","ihavequestions","63028","Smirnoff","mdma","102"
"1868","Paderas","74627","SwiftyyFlintt","psilocybin","102"
"59051","Priapism9","74627","SwiftyyFlintt","mdma","102"
"57101","Terrapinzflyer ","74627","SwiftyyFlintt","psilocybin","102"
"3146","Nahbus ","4495","vhalin","ritalin","102"
"74627","SwiftyyFlintt","230750","MoreGutzThanGlory","clonazepam","102"
"1411","umich","37112","ihavequestions","mdma","102"
"35486","NeuroChi","236416","lyoness","methadone","102"
"34213","fiveleggedrat","69047","lease25","naltrexone","102"
"56","Hollywood ","74627","SwiftyyFlintt","mdma","102"
"41207","NeuroMD","74627","SwiftyyFlintt","mdma","102"
"28899","Esmerelda","236416","lyoness","methadone","102"
"37112","ihavequestions","119102","roastlamb123","mdma","102"
"1562","soer","74627","SwiftyyFlintt","mdma","102"
"134323","Roll1N","198055","yem69420","hydrocodone","102"
"4495","vhalin","74627","SwiftyyFlintt","phenazepam","102"
"74627","SwiftyyFlintt","156304","PillMan","oxycodone","102"
"1595","Curtains","37112","ihavequestions","mdma","102"
"3413","radiometer ","45509","REDSOXFAN","kratom","102"
"45509","REDSOXFAN","103726","seaturtle","kratom","102"
"3146","Nahbus ","35486","NeuroChi","ritalin","102"
"74627","SwiftyyFlintt","202594","headfull0fstars","clonazepam","102"
"4969","kaide","74627","SwiftyyFlintt","psilocybin","102"
"12715","Broshious","108546","reef88","etizolam","102"
"5733","Jatelka ","37112","ihavequestions","mdma","102"
"1281","mmk271","236416","lyoness","methadone","102"
"4495","vhalin","74627","SwiftyyFlintt","alprazolam","102"
"198055","yem69420","236416","lyoness","methadone","102"
"115136","trdofbeingtrd","236416","lyoness","methadone","102"
"37112","ihavequestions","79297","bostonnew","mdma","102"
"9351","M3th","74627","SwiftyyFlintt","mdma","102"
"10467","WrtngCocaineTutorial","37112","ihavequestions","mdma","102"
"4910","Fantasian","37112","ihavequestions","mdma","102"
"74627","SwiftyyFlintt","294051","Jungledog","oxycodone","102"
"1526","Cuberun ","12715","Broshious","etizolam","102"
"45509","REDSOXFAN","157358","CrispCold","kratom","102"
"28015","riaahacker","74627","SwiftyyFlintt","alprazolam","102"
"3345","Unsolved","74627","SwiftyyFlintt","mdma","102"
"3732","Diphenhydramine","74627","SwiftyyFlintt","mdma","102"
"1915","curve","74627","SwiftyyFlintt","mdma","102"
"134323","Roll1N","164373","mar1ne","hydrocodone","102"
"539","stndguy","37112","ihavequestions","mdma","102"
"11411","supremedan","37112","ihavequestions","mdma","102"
"1935","duchy ","37112","ihavequestions","mdma","102"
"9781","cutiepie","74627","SwiftyyFlintt","oxycodone","102"
"45509","REDSOXFAN","212335","Calyspical","kratom","102"
"1","Alfa","45509","REDSOXFAN","kratom","102"
"37112","ihavequestions","45583","Synesthesiac","mdma","102"
"35486","NeuroChi","74627","SwiftyyFlintt","oxycodone","102"
"1","Alfa","74627","SwiftyyFlintt","alprazolam","102"
"2539","Beltane","74627","SwiftyyFlintt","clonazepam","102"
"2281","billyloner ","74627","SwiftyyFlintt","mdma","102"
"74627","SwiftyyFlintt","105372","frost458","mdma","102"
"1832","opiumjade7","74627","SwiftyyFlintt","mdma","102"
"1714","magicmaster141","74627","SwiftyyFlintt","alprazolam","102"
"539","stndguy","74627","SwiftyyFlintt","psilocybin","102"
"297","UglyInfidel","37112","ihavequestions","mdma","102"
"40911","rawbeer","45509","REDSOXFAN","kratom","102"
"45509","REDSOXFAN","273791","Roaddoggy","kratom","102"
"45583","Synesthesiac","74627","SwiftyyFlintt","mdma","102"
"6294","astenu","74627","SwiftyyFlintt","mdma","102"
"1842","nymphetamine","74627","SwiftyyFlintt","mdma","102"
"236416","lyoness","273791","Roaddoggy","methadone","102"
"79947","TheBigBadWolf","236416","lyoness","methadone","102"
"1","Alfa","37112","ihavequestions","mdma","102"
"63028","Smirnoff","74627","SwiftyyFlintt","oxycodone","102"
"2418","Phungushead","74627","SwiftyyFlintt","mdma","102"
"2271","polloloco001 ","74627","SwiftyyFlintt","mdma","102"
"35993","Greenport","37112","ihavequestions","mdma","102"
"1842","nymphetamine","236416","lyoness","methadone","102"
"45509","REDSOXFAN","275604","snowdrop","kratom","102"
"2418","Phungushead","12715","Broshious","etizolam","102"
"37112","ihavequestions","54214","Zoidberg","mdma","102"
"4490","DJ-666","37112","ihavequestions","mdma","102"
"4495","vhalin","74627","SwiftyyFlintt","mdma","102"
"3299","anabolictrio","34213","fiveleggedrat","naltrexone","102"
"1868","Paderas","37112","ihavequestions","mdma","102"
"15832","JapanHorrorUncut","37112","ihavequestions","mdma","102"
"74627","SwiftyyFlintt","119102","roastlamb123","mdma","102"
"856","str8ballin","3146","Nahbus ","ritalin","102"
"181260","Kitts","236416","lyoness","methadone","102"
"45509","REDSOXFAN","294051","Jungledog","kratom","102"
"6201","SkUnKaDeLiC","12715","Broshious","etizolam","102"
"1842","nymphetamine","134323","Roll1N","hydrocodone","102"
"740","Endologik","74627","SwiftyyFlintt","phenazepam","102"
"2610","brainwaxd","74627","SwiftyyFlintt","mdma","102"
"1684","CABS205","3310","Potter ","kava","102"
"2418","Phungushead","74627","SwiftyyFlintt","clonazepam","102"
"4777","IHrtHalucingens","74627","SwiftyyFlintt","clonazepam","102"
"74627","SwiftyyFlintt","218660","Jerms81","oxycodone","102"
"45599","On The Nod","74627","SwiftyyFlintt","oxycodone","102"
"2763","bogumil","45509","REDSOXFAN","kratom","102"
"9904","Benzeneringz","74627","SwiftyyFlintt","clonazepam","102"
"45509","REDSOXFAN","234642","SuperCaesarKratomSalad","kratom","102"
"3375","MrJim","74627","SwiftyyFlintt","oxycodone","102"
"37112","ihavequestions","90006","Ghetto_Chem","mdma","102"
"56","Hollywood ","134323","Roll1N","hydrocodone","102"
"1112","hh339 ","44584","Rightnow289","ritalin","101"
"44584","Rightnow289","111239","whocaresdude91","ritalin","101"
"2418","Phungushead","50001","GutterPhenomenon69","methadone","101"
"54214","Zoidberg","230750","MoreGutzThanGlory","methadone","101"
"50001","GutterPhenomenon69","100767","missinglfe","methadone","101"
"54214","Zoidberg","69047","lease25","suboxone","101"
"50001","GutterPhenomenon69","236416","lyoness","methadone","101"
"14541","laws0n","62048","war209","oxycodone","101"
"4218","TheLight01","9654","gib","mdma","101"
"9654","gib","74627","SwiftyyFlintt","mdma","101"
"9","Freedom of Mind","29120","Tony Williams","temazepam","101"
"5010","snapper ","54214","Zoidberg","morphine","101"
"28015","riaahacker","54214","Zoidberg","morphine","101"
"9858","jesusfreak666er","44584","Rightnow289","dxm","101"
"29120","Tony Williams","180313","out_there","temazepam","101"
"62048","war209","135119","pup555","oxycodone","101"
"54214","Zoidberg","180313","out_there","morphine","101"
"2200","par excellence.","9858","jesusfreak666er","dxm","101"
"9654","gib","124017","LoveNwar","mdma","101"
"3565","amd6568","8016","chillinwill","salvia divinorum","101"
"42579","cabal","54214","Zoidberg","morphine","101"
"9904","Benzeneringz","54214","Zoidberg","methadone","101"
"4490","DJ-666","29120","Tony Williams","temazepam","101"
"44584","Rightnow289","122372","PatrickEngle","ritalin","101"
"4910","Fantasian","54214","Zoidberg","morphine","101"
"54214","Zoidberg","170641","jimmym321","methadone","101"
"50001","GutterPhenomenon69","102824","natey7","methadone","101"
"54214","Zoidberg","268087","Pbnjesse","suboxone","101"
"1868","Paderas","54214","Zoidberg","morphine","101"
"3167","bubaloo","29120","Tony Williams","temazepam","101"
"50001","GutterPhenomenon69","69047","lease25","methadone","101"
"46446","EyesOfTheWorld","50001","GutterPhenomenon69","methadone","101"
"9654","gib","55332","LowCrawl To Freedom","mdma","101"
"56","Hollywood ","54214","Zoidberg","morphine","101"
"18965","beentheredonethatagain","54214","Zoidberg","methadone","101"
"1842","nymphetamine","54214","Zoidberg","morphine","101"
"29120","Tony Williams","180313","out_there","etizolam","101"
"43332","enhancion01","198587","Zeldarocks","dxm","101"
"45618","cannabis-sam","50001","GutterPhenomenon69","methadone","101"
"62048","war209","65726","ellavader","oxycodone","101"
"655","mc-lean","9654","gib","mdma","101"
"54214","Zoidberg","63028","Smirnoff","morphine","101"
"7946","788.4","54214","Zoidberg","morphine","101"
"5750","pharmapsyche","9654","gib","mdma","101"
"21513","HorseBucket","44584","Rightnow289","ritalin","101"
"50001","GutterPhenomenon69","105712","boy_char","methadone","101"
"17829","LookingForHer","198587","Zeldarocks","dxm","101"
"9654","gib","19028","RochiWizz","mdma","101"
"9","Freedom of Mind","54214","Zoidberg","morphine","101"
"2709","risexagainst","9654","gib","mdma","101"
"7946","788.4","62048","war209","oxycodone","101"
"1842","nymphetamine","8016","chillinwill","salvia divinorum","101"
"9858","jesusfreak666er","98407","phenythylamine","dxm","101"
"54214","Zoidberg","79947","TheBigBadWolf","methadone","101"
"45599","On The Nod","50001","GutterPhenomenon69","methadone","101"
"16489","baron samedi","50001","GutterPhenomenon69","methadone","101"
"9904","Benzeneringz","62048","war209","oxycodone","101"
"50001","GutterPhenomenon69","63028","Smirnoff","methadone","101"
"54214","Zoidberg","102420","spicybrainsgirl","suboxone","101"
"46957","Ilsa ","54214","Zoidberg","suboxone","101"
"11876","Paracelsus ","198587","Zeldarocks","dxm","101"
"44584","Rightnow289","198587","Zeldarocks","dxm","101"
"7303","pankreeas ","9654","gib","mdma","101"
"7946","788.4","9654","gib","mdma","101"
"28015","riaahacker","54214","Zoidberg","methadone","101"
"9654","gib","41207","NeuroMD","mdma","101"
"46865","dyingtomorrow","50001","GutterPhenomenon69","methadone","101"
"6201","SkUnKaDeLiC","54214","Zoidberg","methadone","101"
"29120","Tony Williams","58307","missparkles ","diazepam","101"
"1753","kailey_elise ","50001","GutterPhenomenon69","methadone","101"
"657","distilla_truant","9858","jesusfreak666er","dxm","101"
"62048","war209","207982","tryinghard","oxycodone","101"
"4910","Fantasian","50001","GutterPhenomenon69","methadone","101"
"50001","GutterPhenomenon69","198055","yem69420","methadone","101"
"9654","gib","15564","Le Junk","mdma","101"
"9858","jesusfreak666er","156304","PillMan","dxm","101"
"16345","IkBenDeMan","50001","GutterPhenomenon69","methadone","101"
"1411","umich","9654","gib","mdma","101"
"54214","Zoidberg","81101","source","methadone","101"
"35486","NeuroChi","54214","Zoidberg","methadone","101"
"50001","GutterPhenomenon69","202594","headfull0fstars","methadone","101"
"3565","amd6568","198587","Zeldarocks","dxm","101"
"54214","Zoidberg","90006","Ghetto_Chem","suboxone","101"
"9654","gib","35993","Greenport","mdma","101"
"28899","Esmerelda","54214","Zoidberg","methadone","101"
"46446","EyesOfTheWorld","54214","Zoidberg","suboxone","101"
"9019","Forthesevenlakes","54214","Zoidberg","suboxone","101"
"98407","phenythylamine","198587","Zeldarocks","dxm","101"
"62048","war209","220080","Lunaciel","oxycodone","101"
"1595","Curtains","9654","gib","mdma","101"
"46865","dyingtomorrow","54214","Zoidberg","suboxone","101"
"50001","GutterPhenomenon69","230750","MoreGutzThanGlory","methadone","101"
"35486","NeuroChi","54214","Zoidberg","suboxone","101"
"9654","gib","10467","WrtngCocaineTutorial","mdma","101"
"5750","pharmapsyche","44584","Rightnow289","ritalin","101"
"9858","jesusfreak666er","46889","port 21","dxm","101"
"9858","jesusfreak666er","11876","Paracelsus ","dxm","101"
"54214","Zoidberg","181260","Kitts","methadone","101"
"46889","port 21","198587","Zeldarocks","dxm","101"
"12715","Broshious","29120","Tony Williams","etizolam","101"
"21315","Graduisic","198587","Zeldarocks","dxm","101"
"8016","chillinwill","13210","Ben12345","salvia divinorum","101"
"54214","Zoidberg","115136","trdofbeingtrd","suboxone","101"
"5733","Jatelka ","9654","gib","mdma","101"
"1281","mmk271","54214","Zoidberg","methadone","101"
"9654","gib","119102","roastlamb123","mdma","101"
"3299","anabolictrio","54214","Zoidberg","morphine","101"
"1842","nymphetamine","29120","Tony Williams","temazepam","101"
"4910","Fantasian","9654","gib","mdma","101"
"62048","war209","68194","baZING","oxycodone","101"
"54214","Zoidberg","218660","Jerms81","methadone","101"
"1526","Cuberun ","29120","Tony Williams","etizolam","101"
"50001","GutterPhenomenon69","170641","jimmym321","methadone","101"
"7303","pankreeas ","54214","Zoidberg","morphine","101"
"9654","gib","59051","Priapism9","mdma","101"
"1752","Gurnie","8016","chillinwill","salvia divinorum","101"
"5866","RealGanjaMan ","9858","jesusfreak666er","dxm","101"
"11835","El Calico Loco","198587","Zeldarocks","dxm","101"
"9858","jesusfreak666er","202594","headfull0fstars","dxm","101"
"9858","jesusfreak666er","11835","El Calico Loco","dxm","101"
"1","Alfa","54214","Zoidberg","morphine","101"
"54214","Zoidberg","194301","rosielee","methadone","101"
"539","stndguy","9654","gib","mdma","101"
"7946","788.4","50001","GutterPhenomenon69","methadone","101"
"4495","vhalin","44584","Rightnow289","ritalin","101"
"1935","duchy ","9654","gib","mdma","101"
"313","RoboCop ","9858","jesusfreak666er","dxm","101"
"9781","cutiepie","62048","war209","oxycodone","101"
"9654","gib","32247","Lettish","mdma","101"
"35486","NeuroChi","62048","war209","oxycodone","101"
"62048","war209","156304","PillMan","oxycodone","101"
"54214","Zoidberg","112582","tryinmybest","methadone","101"
"297","UglyInfidel","9654","gib","mdma","101"
"50001","GutterPhenomenon69","79947","TheBigBadWolf","methadone","101"
"9654","gib","127014","MikePatton","mdma","101"
"3780","Kradle","198587","Zeldarocks","dxm","101"
"8569","johnnyvoid","29120","Tony Williams","diazepam","101"
"9858","jesusfreak666er","17829","LookingForHer","dxm","101"
"1","Alfa","9654","gib","mdma","101"
"54214","Zoidberg","127014","MikePatton","methadone","101"
"1842","nymphetamine","54214","Zoidberg","methadone","101"
"8671","Richard_smoker","198587","Zeldarocks","dxm","101"
"116985","Chug Chug Chug","198587","Zeldarocks","dxm","101"
"2418","Phungushead","29120","Tony Williams","etizolam","101"
"9654","gib","79297","bostonnew","mdma","101"
"4490","DJ-666","9654","gib","mdma","101"
"1868","Paderas","9654","gib","mdma","101"
"856","str8ballin","44584","Rightnow289","ritalin","101"
"62048","war209","63028","Smirnoff","oxycodone","101"
"54214","Zoidberg","268087","Pbnjesse","methadone","101"
"2167","hard2core","198587","Zeldarocks","dxm","101"
"50001","GutterPhenomenon69","81101","source","methadone","101"
"6201","SkUnKaDeLiC","29120","Tony Williams","etizolam","101"
"9654","gib","63028","Smirnoff","mdma","101"
"18724","AirO","198587","Zeldarocks","dxm","101"
"1","Alfa","8016","chillinwill","salvia divinorum","101"
"9858","jesusfreak666er","116985","Chug Chug Chug","dxm","101"
"54214","Zoidberg","115136","trdofbeingtrd","methadone","101"
"6201","SkUnKaDeLiC","29120","Tony Williams","temazepam","101"
"3299","anabolictrio","54214","Zoidberg","suboxone","101"
"54214","Zoidberg","156304","PillMan","morphine","101"
"45599","On The Nod","62048","war209","oxycodone","101"
"9","Freedom of Mind","198587","Zeldarocks","dxm","101"
"3375","MrJim","62048","war209","oxycodone","101"
"9654","gib","45583","Synesthesiac","mdma","101"
"35486","NeuroChi","44584","Rightnow289","ritalin","101"
"28015","riaahacker","198587","Zeldarocks","dxm","101"
"54214","Zoidberg","62096","Cooki ","methadone","101"
"46865","dyingtomorrow","54214","Zoidberg","morphine","101"
"16700","beena","54214","Zoidberg","methadone","101"
"50001","GutterPhenomenon69","181260","Kitts","methadone","101"
"28015","riaahacker","44584","Rightnow289","ritalin","101"
"50001","GutterPhenomenon69","54214","Zoidberg","methadone","101"
"27864","G_nome","54214","Zoidberg","methadone","101"
"9654","gib","37112","ihavequestions","mdma","101"
"9858","jesusfreak666er","110776","PowerfulMedicine","dxm","101"
"1595","Curtains","54214","Zoidberg","methadone","101"
"29120","Tony Williams","69047","lease25","temazepam","101"
"1842","nymphetamine","29120","Tony Williams","diazepam","101"
"62","BA","9654","gib","mdma","101"
"2418","Phungushead","9858","jesusfreak666er","dxm","101"
"7303","pankreeas ","62048","war209","oxycodone","101"
"62048","war209","218660","Jerms81","oxycodone","101"
"54214","Zoidberg","102420","spicybrainsgirl","morphine","101"
"201","fnord","8016","chillinwill","salvia divinorum","101"
"2200","par excellence.","198587","Zeldarocks","dxm","101"
"9654","gib","54214","Zoidberg","mdma","101"
"9904","Benzeneringz","50001","GutterPhenomenon69","methadone","101"
"44584","Rightnow289","45599","On The Nod","ritalin","101"
"2418","Phungushead","54214","Zoidberg","methadone","101"
"6482","psychedelaholic","9654","gib","mdma","101"
"54214","Zoidberg","102420","spicybrainsgirl","methadone","101"
"50001","GutterPhenomenon69","194301","rosielee","methadone","101"
"11411","supremedan","62048","war209","oxycodone","101"
"6201","SkUnKaDeLiC","29120","Tony Williams","diazepam","101"
"2577","Stingray_313 ","9654","gib","mdma","101"
"54214","Zoidberg","105712","boy_char","suboxone","101"
"50001","GutterPhenomenon69","218660","Jerms81","methadone","101"
"75","Leo.","9654","gib","mdma","101"
"9654","gib","105372","frost458","mdma","101"
"18965","beentheredonethatagain","50001","GutterPhenomenon69","methadone","101"
"422","1933","9654","gib","mdma","101"
"788","mdve2","9654","gib","mdma","101"
"9858","jesusfreak666er","18724","AirO","dxm","101"
"2239","skilld","9654","gib","mdma","101"
"29120","Tony Williams","108546","reef88","etizolam","101"
"6201","SkUnKaDeLiC","29120","Tony Williams","pyrazolam","101"
"2539","Beltane","29120","Tony Williams","diazepam","101"
"180313","out_there","198587","Zeldarocks","dxm","101"
"1","Alfa","29120","Tony Williams","diazepam","101"
"62048","war209","83387","PrincessJo x","oxycodone","101"
"54214","Zoidberg","118772","Mr_Spiffy","morphine","101"
"50001","GutterPhenomenon69","112582","tryinmybest","methadone","101"
"9654","gib","15832","JapanHorrorUncut","mdma","101"
"9","Freedom of Mind","29120","Tony Williams","diazepam","101"
"198587","Zeldarocks","202594","headfull0fstars","dxm","101"
"54214","Zoidberg","58307","missparkles ","methadone","101"
"50001","GutterPhenomenon69","127014","MikePatton","methadone","101"
"54214","Zoidberg","201049","ak2Ut","suboxone","101"
"46446","EyesOfTheWorld","54214","Zoidberg","methadone","101"
"28015","riaahacker","50001","GutterPhenomenon69","methadone","101"
"9654","gib","67133","User-126494","mdma","101"
"6052","KomodoMK","9654","gib","mdma","101"
"6201","SkUnKaDeLiC","50001","GutterPhenomenon69","methadone","101"
"28899","Esmerelda","54214","Zoidberg","morphine","101"
"29120","Tony Williams","96636","Mersann","diazepam","101"
"657","distilla_truant","198587","Zeldarocks","dxm","101"
"45618","cannabis-sam","54214","Zoidberg","methadone","101"
"62048","war209","280861","Hydroxyout","oxycodone","101"
"1806","betty_bupe","9654","gib","mdma","101"
"50001","GutterPhenomenon69","268087","Pbnjesse","methadone","101"
"60","Sick Jack","9654","gib","mdma","101"
"9654","gib","90006","Ghetto_Chem","mdma","101"
"1833","scyrusurcys","8016","chillinwill","salvia divinorum","101"
"18769","samuraigecko","54214","Zoidberg","morphine","101"
"9858","jesusfreak666er","75764","lololsolid","dxm","101"
"54214","Zoidberg","273791","Roaddoggy","methadone","101"
"35486","NeuroChi","50001","GutterPhenomenon69","methadone","101"
"45599","On The Nod","54214","Zoidberg","methadone","101"
"16489","baron samedi","54214","Zoidberg","methadone","101"
"50001","GutterPhenomenon69","115136","trdofbeingtrd","methadone","101"
"54214","Zoidberg","211963","WoodyCA","suboxone","101"
"56","Hollywood ","9654","gib","mdma","101"
"35591","AACrazy2892","62048","war209","oxycodone","101"
"9654","gib","129304","Dankitydankness","mdma","101"
"28899","Esmerelda","50001","GutterPhenomenon69","methadone","101"
"46865","dyingtomorrow","54214","Zoidberg","methadone","101"
"1562","soer","9654","gib","mdma","101"
"4777","IHrtHalucingens","29120","Tony Williams","diazepam","101"
"29120","Tony Williams","63028","Smirnoff","diazepam","101"
"1753","kailey_elise ","54214","Zoidberg","methadone","101"
"161625","mrcowman","198587","Zeldarocks","dxm","101"
"62048","war209","108860","Pain Hurts","oxycodone","101"
"56","Hollywood ","62048","war209","oxycodone","101"
"15","Sammi","8016","chillinwill","salvia divinorum","101"
"4910","Fantasian","54214","Zoidberg","methadone","101"
"50001","GutterPhenomenon69","62096","Cooki ","methadone","101"
"9654","gib","180313","out_there","mdma","101"
"4495","vhalin","62048","war209","oxycodone","101"
"41143","RoboCodeine7610","44584","Rightnow289","ritalin","101"
"9858","jesusfreak666er","161625","mrcowman","dxm","101"
"16345","IkBenDeMan","54214","Zoidberg","methadone","101"
"9858","jesusfreak666er","198587","Zeldarocks","dxm","101"
"54214","Zoidberg","118772","Mr_Spiffy","methadone","101"
"3565","amd6568","9858","jesusfreak666er","dxm","101"
"54214","Zoidberg","118772","Mr_Spiffy","suboxone","101"
"19028","RochiWizz","54214","Zoidberg","morphine","101"
"56","Hollywood ","29120","Tony Williams","diazepam","101"
"1281","mmk271","50001","GutterPhenomenon69","methadone","101"
"1023","btoddw2","29120","Tony Williams","diazepam","101"
"9654","gib","57031","rhcpeppers1234","mdma","101"
"9351","M3th","9654","gib","mdma","101"
"75764","lololsolid","198587","Zeldarocks","dxm","101"
"883","apoch22","44584","Rightnow289","ritalin","101"
"62048","war209","211963","WoodyCA","oxycodone","101"
"54214","Zoidberg","236416","lyoness","methadone","101"
"156304","PillMan","198587","Zeldarocks","dxm","101"
"50001","GutterPhenomenon69","102420","spicybrainsgirl","methadone","101"
"3345","Unsolved","9654","gib","mdma","101"
"9654","gib","45618","cannabis-sam","mdma","101"
"1842","nymphetamine","44584","Rightnow289","ritalin","101"
"5866","RealGanjaMan ","198587","Zeldarocks","dxm","101"
"3732","Diphenhydramine","9654","gib","mdma","101"
"1915","curve","9654","gib","mdma","101"
"9858","jesusfreak666er","180313","out_there","dxm","101"
"9858","jesusfreak666er","43332","enhancion01","dxm","101"
"54214","Zoidberg","100767","missinglfe","methadone","101"
"1239","Nicaine","29120","Tony Williams","diazepam","101"
"313","RoboCop ","198587","Zeldarocks","dxm","101"
"8016","chillinwill","14069","Drugaddict","salvia divinorum","101"
"9654","gib","11411","supremedan","mdma","101"
"7946","788.4","29120","Tony Williams","temazepam","101"
"127711","Zhekarius","198587","Zeldarocks","dxm","101"
"2281","billyloner ","9654","gib","mdma","101"
"1832","opiumjade7","9654","gib","mdma","101"
"62048","war209","118772","Mr_Spiffy","oxycodone","101"
"54214","Zoidberg","69047","lease25","methadone","101"
"4495","vhalin","54214","Zoidberg","morphine","101"
"50001","GutterPhenomenon69","58307","missparkles ","methadone","101"
"2418","Phungushead","54214","Zoidberg","morphine","101"
"6294","astenu","9654","gib","mdma","101"
"9654","gib","54108","Alexander_Praves","mdma","101"
"1842","nymphetamine","9654","gib","mdma","101"
"9858","jesusfreak666er","28015","riaahacker","dxm","101"
"4495","vhalin","9654","gib","mdma","101"
"9858","jesusfreak666er","127711","Zhekarius","dxm","101"
"110776","PowerfulMedicine","198587","Zeldarocks","dxm","101"
"54214","Zoidberg","102824","natey7","methadone","101"
"7946","788.4","54214","Zoidberg","methadone","101"
"1842","nymphetamine","62048","war209","oxycodone","101"
"2418","Phungushead","9654","gib","mdma","101"
"2271","polloloco001 ","9654","gib","mdma","101"
"45599","On The Nod","54214","Zoidberg","morphine","101"
"1842","nymphetamine","50001","GutterPhenomenon69","methadone","101"
"9654","gib","46865","dyingtomorrow","mdma","101"
"4495","vhalin","29120","Tony Williams","diazepam","101"
"1180","Creeping Death ","29120","Tony Williams","diazepam","101"
"62048","war209","180313","out_there","oxycodone","101"
"54214","Zoidberg","105712","boy_char","methadone","101"
"45258","motter28218","198587","Zeldarocks","dxm","101"
"50001","GutterPhenomenon69","273791","Roaddoggy","methadone","101"
"9654","gib","57101","Terrapinzflyer ","mdma","101"
"3780","Kradle","9858","jesusfreak666er","dxm","101"
"28015","riaahacker","29120","Tony Williams","diazepam","101"
"2610","brainwaxd","9654","gib","mdma","101"
"9858","jesusfreak666er","45258","motter28218","dxm","101"
"54214","Zoidberg","63028","Smirnoff","methadone","101"
"46865","dyingtomorrow","62048","war209","oxycodone","101"
"11411","supremedan","54214","Zoidberg","morphine","101"
"8671","Richard_smoker","9858","jesusfreak666er","dxm","101"
"9654","gib","83387","PrincessJo x","mdma","101"
"62048","war209","294051","Jungledog","oxycodone","101"
"35486","NeuroChi","54214","Zoidberg","morphine","101"
"54214","Zoidberg","198055","yem69420","methadone","101"
"1329","khonsu13","54214","Zoidberg","morphine","101"
"16700","beena","50001","GutterPhenomenon69","methadone","101"
"2167","hard2core","9858","jesusfreak666er","dxm","101"
"50001","GutterPhenomenon69","118772","Mr_Spiffy","methadone","101"
"9654","gib","35486","NeuroChi","mdma","101"
"27864","G_nome","50001","GutterPhenomenon69","methadone","101"
"9858","jesusfreak666er","21315","Graduisic","dxm","101"
"1595","Curtains","50001","GutterPhenomenon69","methadone","101"
"54214","Zoidberg","202594","headfull0fstars","methadone","101"
"2418","Phungushead","198587","Zeldarocks","dxm","101"
"62048","war209","74627","SwiftyyFlintt","oxycodone","101"
"54214","Zoidberg","179359","uberhigh","morphine","101"
"9","Freedom of Mind","9858","jesusfreak666er","dxm","101"
"9654","gib","96636","Mersann","mdma","101"
"45599","On The Nod","54214","Zoidberg","suboxone","101"
"2418","Phungushead","62048","war209","oxycodone","101"
"16345","IkBenDeMan","54214","Zoidberg","morphine","101"
"3146","Nahbus ","44584","Rightnow289","ritalin","101"
"9904","Benzeneringz","80015","southern girl","methadone","100"
"48762","brandon561","90035","RaoulDuke32","xanax","100"
"6482","psychedelaholic","72408","Mr Fish","mdma","100"
"80015","southern girl","218660","Jerms81","methadone","100"
"63028","Smirnoff","80015","southern girl","oxycontin","100"
"11411","supremedan","80015","southern girl","oxycodone","100"
"2577","Stingray_313 ","72408","Mr Fish","mdma","100"
"75","Leo.","72408","Mr Fish","mdma","100"
"46446","EyesOfTheWorld","251918","Iezegrim","methadone","100"
"18965","beentheredonethatagain","80015","southern girl","methadone","100"
"422","1933","72408","Mr Fish","mdma","100"
"90035","RaoulDuke32","168933","KCIUB","xanax","100"
"788","mdve2","72408","Mr Fish","mdma","100"
"3423","mopsie ","96636","Mersann","ghb","100"
"1808","xxgaretjaxx","65726","ellavader","xanax","100"
"2239","skilld","72408","Mr Fish","mdma","100"
"61180","Helene ","64012","timkanu","codeine","100"
"80015","southern girl","202594","headfull0fstars","methadone","100"
"45618","cannabis-sam","251918","Iezegrim","methadone","100"
"62096","Cooki ","80015","southern girl","methadone","100"
"35486","NeuroChi","64012","timkanu","codeine","100"
"63028","Smirnoff","72408","Mr Fish","mdma","100"
"202594","headfull0fstars","251918","Iezegrim","methadone","100"
"80015","southern girl","211963","WoodyCA","oxycodone","100"
"11876","Paracelsus ","201049","ak2Ut","tramadol","100"
"72408","Mr Fish","127014","MikePatton","mdma","100"
"65726","ellavader","80015","southern girl","oxycontin","100"
"1842","nymphetamine","65726","ellavader","xanax","100"
"1753","kailey_elise ","90035","RaoulDuke32","xanax","100"
"69047","lease25","80015","southern girl","methadone","100"
"28899","Esmerelda","80015","southern girl","oxycontin","100"
"1595","Curtains","2418","Phungushead","psilocybin","100"
"45599","On The Nod","251918","Iezegrim","methadone","100"
"80015","southern girl","105712","boy_char","methadone","100"
"16489","baron samedi","251918","Iezegrim","methadone","100"
"743","madman3l6","65726","ellavader","xanax","100"
"127014","MikePatton","251918","Iezegrim","methadone","100"
"68194","baZING","80015","southern girl","oxycodone","100"
"80015","southern girl","135119","pup555","oxycontin","100"
"28015","riaahacker","80015","southern girl","methadone","100"
"90035","RaoulDuke32","156304","PillMan","xanax","100"
"3423","mopsie ","42985","EducatedUser408","ghb","100"
"46865","dyingtomorrow","251918","Iezegrim","methadone","100"
"6052","KomodoMK","72408","Mr Fish","mdma","100"
"6201","SkUnKaDeLiC","80015","southern girl","methadone","100"
"28899","Esmerelda","80015","southern girl","morphine","100"
"1753","kailey_elise ","251918","Iezegrim","methadone","100"
"65726","ellavader","90035","RaoulDuke32","xanax","100"
"6201","SkUnKaDeLiC","17821","lulz ","phenazepam","100"
"102420","spicybrainsgirl","251918","Iezegrim","methadone","100"
"80015","southern girl","156304","PillMan","oxycodone","100"
"1806","betty_bupe","72408","Mr Fish","mdma","100"
"2418","Phungushead","11876","Paracelsus ","tramadol","100"
"4910","Fantasian","251918","Iezegrim","methadone","100"
"60","Sick Jack","72408","Mr Fish","mdma","100"
"11876","Paracelsus ","41143","RoboCodeine7610","tramadol","100"
"1833","scyrusurcys","90006","Ghetto_Chem","salvia divinorum","100"
"18769","samuraigecko","80015","southern girl","morphine","100"
"4495","vhalin","65726","ellavader","xanax","100"
"16345","IkBenDeMan","251918","Iezegrim","methadone","100"
"57031","rhcpeppers1234","72408","Mr Fish","mdma","100"
"35486","NeuroChi","80015","southern girl","methadone","100"
"80015","southern girl","198055","yem69420","methadone","100"
"56","Hollywood ","72408","Mr Fish","mdma","100"
"80015","southern girl","102420","spicybrainsgirl","oxycontin","100"
"11411","supremedan","65726","ellavader","xanax","100"
"35591","AACrazy2892","80015","southern girl","oxycodone","100"
"28899","Esmerelda","80015","southern girl","methadone","100"
"90035","RaoulDuke32","102420","spicybrainsgirl","xanax","100"
"17821","lulz ","48119","Jasim ","phenazepam","100"
"1562","soer","72408","Mr Fish","mdma","100"
"58307","missparkles ","251918","Iezegrim","methadone","100"
"65726","ellavader","69047","lease25","xanax","100"
"56","Hollywood ","80015","southern girl","oxycodone","100"
"76984","LostControl","80015","southern girl","oxycontin","100"
"80015","southern girl","294051","Jungledog","oxycodone","100"
"35486","NeuroChi","72408","Mr Fish","mdma","100"
"45599","On The Nod","64012","timkanu","codeine","100"
"28899","Esmerelda","65726","ellavader","xanax","100"
"32247","Lettish","72408","Mr Fish","mdma","100"
"15","Sammi","90006","Ghetto_Chem","salvia divinorum","100"
"11411","supremedan","17821","lulz ","phenazepam","100"
"35486","NeuroChi","65726","ellavader","xanax","100"
"11876","Paracelsus ","180313","out_there","tramadol","100"
"1868","Paderas","2418","Phungushead","psilocybin","100"
"59051","Priapism9","72408","Mr Fish","mdma","100"
"64012","timkanu","80751","AnrBjotk","codeine","100"
"4495","vhalin","64012","timkanu","codeine","100"
"1213","Psilocybe S.","90035","RaoulDuke32","xanax","100"
"4495","vhalin","80015","southern girl","oxycodone","100"
"80015","southern girl","102420","spicybrainsgirl","methadone","100"
"56","Hollywood ","64012","timkanu","codeine","100"
"28899","Esmerelda","64012","timkanu","codeine","100"
"19028","RochiWizz","80015","southern girl","morphine","100"
"80015","southern girl","108860","Pain Hurts","oxycontin","100"
"41207","NeuroMD","72408","Mr Fish","mdma","100"
"1281","mmk271","80015","southern girl","methadone","100"
"28015","riaahacker","64012","timkanu","codeine","100"
"90035","RaoulDuke32","273439","marathonmel7","xanax","100"
"9351","M3th","72408","Mr Fish","mdma","100"
"65726","ellavader","156304","PillMan","xanax","100"
"41143","RoboCodeine7610","65726","ellavader","xanax","100"
"4495","vhalin","17821","lulz ","phenazepam","100"
"54214","Zoidberg","80015","southern girl","methadone","100"
"401","peggs16","65726","ellavader","xanax","100"
"3345","Unsolved","72408","Mr Fish","mdma","100"
"11876","Paracelsus ","45618","cannabis-sam","tramadol","100"
"64012","timkanu","180313","out_there","codeine","100"
"56","Hollywood ","11876","Paracelsus ","tramadol","100"
"3732","Diphenhydramine","72408","Mr Fish","mdma","100"
"1915","curve","72408","Mr Fish","mdma","100"
"80015","southern girl","273791","Roaddoggy","methadone","100"
"7946","788.4","251918","Iezegrim","methadone","100"
"1","Alfa","90035","RaoulDuke32","xanax","100"
"856","str8ballin","90035","RaoulDuke32","xanax","100"
"198055","yem69420","251918","Iezegrim","methadone","100"
"2418","Phungushead","74627","SwiftyyFlintt","psilocybin","100"
"115136","trdofbeingtrd","251918","Iezegrim","methadone","100"
"72408","Mr Fish","105372","frost458","mdma","100"
"65726","ellavader","102420","spicybrainsgirl","xanax","100"
"10467","WrtngCocaineTutorial","72408","Mr Fish","mdma","100"
"2281","billyloner ","72408","Mr Fish","mdma","100"
"1832","opiumjade7","72408","Mr Fish","mdma","100"
"80015","southern girl","179359","uberhigh","morphine","100"
"9904","Benzeneringz","90035","RaoulDuke32","xanax","100"
"4495","vhalin","80015","southern girl","morphine","100"
"2418","Phungushead","80015","southern girl","morphine","100"
"6294","astenu","72408","Mr Fish","mdma","100"
"63028","Smirnoff","251918","Iezegrim","methadone","100"
"11876","Paracelsus ","63028","Smirnoff","tramadol","100"
"64012","timkanu","100767","missinglfe","codeine","100"
"1842","nymphetamine","72408","Mr Fish","mdma","100"
"2418","Phungushead","65726","ellavader","xanax","100"
"4495","vhalin","72408","Mr Fish","mdma","100"
"80015","southern girl","118772","Mr_Spiffy","methadone","100"
"11411","supremedan","72408","Mr Fish","mdma","100"
"1842","nymphetamine","80015","southern girl","oxycodone","100"
"2418","Phungushead","72408","Mr Fish","mdma","100"
"2271","polloloco001 ","72408","Mr Fish","mdma","100"
"80015","southern girl","218660","Jerms81","oxycodone","100"
"45599","On The Nod","80015","southern girl","morphine","100"
"1842","nymphetamine","80015","southern girl","methadone","100"
"1684","CABS205","64012","timkanu","codeine","100"
"28015","riaahacker","65726","ellavader","xanax","100"
"2418","Phungushead","57101","Terrapinzflyer ","psilocybin","100"
"3167","bubaloo","90035","RaoulDuke32","xanax","100"
"72408","Mr Fish","119102","roastlamb123","mdma","100"
"65726","ellavader","273439","marathonmel7","xanax","100"
"80015","southern girl","180313","out_there","morphine","100"
"539","stndguy","2418","Phungushead","psilocybin","100"
"45583","Synesthesiac","72408","Mr Fish","mdma","100"
"11876","Paracelsus ","38632","PilL FreaK","tramadol","100"
"2610","brainwaxd","72408","Mr Fish","mdma","100"
"79947","TheBigBadWolf","80015","southern girl","methadone","100"
"9","Freedom of Mind","11876","Paracelsus ","tramadol","100"
"7946","788.4","65726","ellavader","xanax","100"
"80015","southern girl","100767","missinglfe","methadone","100"
"46865","dyingtomorrow","80015","southern girl","oxycodone","100"
"1224","markdahman","64012","timkanu","codeine","100"
"11411","supremedan","80015","southern girl","morphine","100"
"63028","Smirnoff","80015","southern girl","oxycodone","100"
"35993","Greenport","72408","Mr Fish","mdma","100"
"80015","southern girl","83387","PrincessJo x","oxycodone","100"
"2418","Phungushead","4495","vhalin","psilocybin","100"
"72408","Mr Fish","83387","PrincessJo x","mdma","100"
"3423","mopsie ","10467","WrtngCocaineTutorial","ghb","100"
"15832","JapanHorrorUncut","72408","Mr Fish","mdma","100"
"28015","riaahacker","80015","southern girl","oxycontin","100"
"35486","NeuroChi","80015","southern girl","morphine","100"
"46446","EyesOfTheWorld","90035","RaoulDuke32","xanax","100"
"1329","khonsu13","80015","southern girl","morphine","100"
"14069","Drugaddict","90006","Ghetto_Chem","salvia divinorum","100"
"56","Hollywood ","65726","ellavader","xanax","100"
"16700","beena","80015","southern girl","methadone","100"
"2112","QGdoxl ","64012","timkanu","codeine","100"
"251918","Iezegrim","268087","Pbnjesse","methadone","100"
"50001","GutterPhenomenon69","251918","Iezegrim","methadone","100"
"740","Endologik","17821","lulz ","phenazepam","100"
"27864","G_nome","80015","southern girl","methadone","100"
"16345","IkBenDeMan","80015","southern girl","morphine","100"
"1595","Curtains","80015","southern girl","methadone","100"
"80015","southern girl","102824","natey7","methadone","100"
"74627","SwiftyyFlintt","80015","southern girl","oxycodone","100"
"181260","Kitts","251918","Iezegrim","methadone","100"
"62048","war209","80015","southern girl","oxycodone","100"
"80015","southern girl","207982","tryinghard","oxycodone","100"
"6201","SkUnKaDeLiC","90035","RaoulDuke32","xanax","100"
"4495","vhalin","11876","Paracelsus ","tramadol","100"
"63028","Smirnoff","90035","RaoulDuke32","xanax","100"
"56","Hollywood ","80015","southern girl","oxycontin","100"
"72408","Mr Fish","124017","LoveNwar","mdma","100"
"1714","magicmaster141","65726","ellavader","xanax","100"
"2418","Phungushead","80015","southern girl","oxycodone","100"
"45618","cannabis-sam","65726","ellavader","xanax","100"
"9904","Benzeneringz","251918","Iezegrim","methadone","100"
"63028","Smirnoff","80015","southern girl","morphine","100"
"2418","Phungushead","80015","southern girl","methadone","100"
"80015","southern girl","236416","lyoness","methadone","100"
"15232","Tortoise","64012","timkanu","codeine","100"
"14541","laws0n","80015","southern girl","oxycodone","100"
"4218","TheLight01","72408","Mr Fish","mdma","100"
"18965","beentheredonethatagain","251918","Iezegrim","methadone","100"
"37112","ihavequestions","72408","Mr Fish","mdma","100"
"100767","missinglfe","251918","Iezegrim","methadone","100"
"5010","snapper ","80015","southern girl","morphine","100"
"3423","mopsie ","13022","MrG","ghb","100"
"28015","riaahacker","80015","southern girl","morphine","100"
"1808","xxgaretjaxx","90035","RaoulDuke32","xanax","100"
"65726","ellavader","80015","southern girl","oxycodone","100"
"80015","southern girl","115136","trdofbeingtrd","methadone","100"
"14677","splish6","17821","lulz ","phenazepam","100"
"62096","Cooki ","251918","Iezegrim","methadone","100"
"80015","southern girl","220080","Lunaciel","oxycodone","100"
"40282","Razorbladekiss","64012","timkanu","codeine","100"
"3299","anabolictrio","65726","ellavader","xanax","100"
"1935","duchy ","3423","mopsie ","ghb","100"
"11876","Paracelsus ","111239","whocaresdude91","tramadol","100"
"112582","tryinmybest","251918","Iezegrim","methadone","100"
"72408","Mr Fish","180313","out_there","mdma","100"
"1842","nymphetamine","90035","RaoulDuke32","xanax","100"
"3565","amd6568","90006","Ghetto_Chem","salvia divinorum","100"
"102824","natey7","251918","Iezegrim","methadone","100"
"42579","cabal","80015","southern girl","morphine","100"
"4495","vhalin","80015","southern girl","oxycontin","100"
"69047","lease25","251918","Iezegrim","methadone","100"
"4910","Fantasian","80015","southern girl","morphine","100"
"48762","brandon561","65726","ellavader","xanax","100"
"80015","southern girl","112582","tryinmybest","methadone","100"
"743","madman3l6","90035","RaoulDuke32","xanax","100"
"1526","Cuberun ","17821","lulz ","phenazepam","100"
"80015","southern girl","218660","Jerms81","oxycontin","100"
"1868","Paderas","80015","southern girl","morphine","100"
"1","Alfa","11876","Paracelsus ","tramadol","100"
"46446","EyesOfTheWorld","80015","southern girl","methadone","100"
"28015","riaahacker","251918","Iezegrim","methadone","100"
"56","Hollywood ","80015","southern girl","morphine","100"
"90035","RaoulDuke32","108546","reef88","xanax","100"
"1842","nymphetamine","80015","southern girl","morphine","100"
"3423","mopsie ","180313","out_there","ghb","100"
"6201","SkUnKaDeLiC","251918","Iezegrim","methadone","100"
"45618","cannabis-sam","80015","southern girl","methadone","100"
"655","mc-lean","72408","Mr Fish","mdma","100"
"80015","southern girl","118772","Mr_Spiffy","oxycodone","100"
"7946","788.4","80015","southern girl","morphine","100"
"5750","pharmapsyche","72408","Mr Fish","mdma","100"
"9","Freedom of Mind","80015","southern girl","morphine","100"
"11876","Paracelsus ","96636","Mersann","tramadol","100"
"2709","risexagainst","72408","Mr Fish","mdma","100"
"7946","788.4","80015","southern girl","oxycodone","100"
"1842","nymphetamine","90006","Ghetto_Chem","salvia divinorum","100"
"4495","vhalin","90035","RaoulDuke32","xanax","100"
"55332","LowCrawl To Freedom","72408","Mr Fish","mdma","100"
"1","Alfa","2418","Phungushead","psilocybin","100"
"1753","kailey_elise ","65726","ellavader","xanax","100"
"35486","NeuroChi","251918","Iezegrim","methadone","100"
"45599","On The Nod","80015","southern girl","methadone","100"
"80015","southern girl","268087","Pbnjesse","methadone","100"
"16489","baron samedi","80015","southern girl","methadone","100"
"46865","dyingtomorrow","72408","Mr Fish","mdma","100"
"9904","Benzeneringz","80015","southern girl","oxycodone","100"
"80015","southern girl","156304","PillMan","oxycontin","100"
"1842","nymphetamine","17821","lulz ","phenazepam","100"
"9","Freedom of Mind","64012","timkanu","codeine","100"
"7303","pankreeas ","72408","Mr Fish","mdma","100"
"11411","supremedan","90035","RaoulDuke32","xanax","100"
"7946","788.4","72408","Mr Fish","mdma","100"
"28899","Esmerelda","251918","Iezegrim","methadone","100"
"90035","RaoulDuke32","297036","supermono","xanax","100"
"17821","lulz ","74627","SwiftyyFlintt","phenazepam","100"
"46865","dyingtomorrow","80015","southern girl","methadone","100"
"9","Freedom of Mind","3423","mopsie ","ghb","100"
"1753","kailey_elise ","80015","southern girl","methadone","100"
"65726","ellavader","168933","KCIUB","xanax","100"
"80015","southern girl","180313","out_there","oxycodone","100"
"28899","Esmerelda","90035","RaoulDuke32","xanax","100"
"1842","nymphetamine","80015","southern girl","oxycontin","100"
"4910","Fantasian","80015","southern girl","methadone","100"
"35486","NeuroChi","90035","RaoulDuke32","xanax","100"
"11876","Paracelsus ","256377","detoxin momma","tramadol","100"
"57101","Terrapinzflyer ","72408","Mr Fish","mdma","100"
"105712","boy_char","251918","Iezegrim","methadone","100"
"64012","timkanu","77229","reckoner","codeine","100"
"16345","IkBenDeMan","80015","southern girl","methadone","100"
"1411","umich","72408","Mr Fish","mdma","100"
"80015","southern girl","230750","MoreGutzThanGlory","methadone","100"
"170641","jimmym321","251918","Iezegrim","methadone","100"
"80015","southern girl","211963","WoodyCA","oxycontin","100"
"1281","mmk271","251918","Iezegrim","methadone","100"
"90035","RaoulDuke32","211963","WoodyCA","xanax","100"
"17821","lulz ","63028","Smirnoff","phenazepam","100"
"58307","missparkles ","80015","southern girl","methadone","100"
"65726","ellavader","108546","reef88","xanax","100"
"41143","RoboCodeine7610","90035","RaoulDuke32","xanax","100"
"1595","Curtains","72408","Mr Fish","mdma","100"
"54214","Zoidberg","251918","Iezegrim","methadone","100"
"81101","source","251918","Iezegrim","methadone","100"
"401","peggs16","90035","RaoulDuke32","xanax","100"
"1023","btoddw2","64012","timkanu","codeine","100"
"11876","Paracelsus ","156304","PillMan","tramadol","100"
"64012","timkanu","83387","PrincessJo x","codeine","100"
"1213","Psilocybe S.","65726","ellavader","xanax","100"
"57031","rhcpeppers1234","64012","timkanu","codeine","100"
"118772","Mr_Spiffy","251918","Iezegrim","methadone","100"
"194301","rosielee","251918","Iezegrim","methadone","100"
"80015","southern girl","170641","jimmym321","methadone","100"
"1842","nymphetamine","11876","Paracelsus ","tramadol","100"
"46865","dyingtomorrow","80015","southern girl","oxycontin","100"
"8016","chillinwill","90006","Ghetto_Chem","salvia divinorum","100"
"5733","Jatelka ","72408","Mr Fish","mdma","100"
"54214","Zoidberg","72408","Mr Fish","mdma","100"
"72408","Mr Fish","74627","SwiftyyFlintt","mdma","100"
"3299","anabolictrio","80015","southern girl","morphine","100"
"65726","ellavader","297036","supermono","xanax","100"
"4910","Fantasian","72408","Mr Fish","mdma","100"
"80015","southern girl","156304","PillMan","morphine","100"
"7303","pankreeas ","80015","southern girl","morphine","100"
"11876","Paracelsus ","127014","MikePatton","tramadol","100"
"1752","Gurnie","90006","Ghetto_Chem","salvia divinorum","100"
"64012","timkanu","118772","Mr_Spiffy","codeine","100"
"3375","MrJim","80015","southern girl","oxycontin","100"
"2418","Phungushead","90035","RaoulDuke32","xanax","100"
"1","Alfa","3423","mopsie ","ghb","100"
"1","Alfa","80015","southern girl","morphine","100"
"80015","southern girl","81101","source","methadone","100"
"539","stndguy","72408","Mr Fish","mdma","100"
"45618","cannabis-sam","72408","Mr Fish","mdma","100"
"7946","788.4","80015","southern girl","methadone","100"
"1","Alfa","65726","ellavader","xanax","100"
"1935","duchy ","72408","Mr Fish","mdma","100"
"7946","788.4","64012","timkanu","codeine","100"
"9781","cutiepie","80015","southern girl","oxycodone","100"
"1842","nymphetamine","251918","Iezegrim","methadone","100"
"856","str8ballin","65726","ellavader","xanax","100"
"28015","riaahacker","90035","RaoulDuke32","xanax","100"
"2418","Phungushead","2679","mariecurie","psilocybin","100"
"35486","NeuroChi","80015","southern girl","oxycodone","100"
"72408","Mr Fish","129304","Dankitydankness","mdma","100"
"63028","Smirnoff","64012","timkanu","codeine","100"
"65726","ellavader","211963","WoodyCA","xanax","100"
"80015","southern girl","102420","spicybrainsgirl","morphine","100"
"9904","Benzeneringz","65726","ellavader","xanax","100"
"297","UglyInfidel","72408","Mr Fish","mdma","100"
"54108","Alexander_Praves","72408","Mr Fish","mdma","100"
"63028","Smirnoff","80015","southern girl","methadone","100"
"11876","Paracelsus ","28015","riaahacker","tramadol","100"
"236416","lyoness","251918","Iezegrim","methadone","100"
"79947","TheBigBadWolf","251918","Iezegrim","methadone","100"
"1","Alfa","72408","Mr Fish","mdma","100"
"7946","788.4","90035","RaoulDuke32","xanax","100"
"80015","southern girl","181260","Kitts","methadone","100"
"80015","southern girl","135119","pup555","oxycodone","100"
"1842","nymphetamine","3423","mopsie ","ghb","100"
"2418","Phungushead","4969","kaide","psilocybin","100"
"3167","bubaloo","65726","ellavader","xanax","100"
"72408","Mr Fish","79297","bostonnew","mdma","100"
"9904","Benzeneringz","11876","Paracelsus ","tramadol","100"
"4490","DJ-666","72408","Mr Fish","mdma","100"
"3413","radiometer ","3423","mopsie ","ghb","100"
"1842","nymphetamine","64012","timkanu","codeine","100"
"1868","Paderas","72408","Mr Fish","mdma","100"
"80015","southern girl","118772","Mr_Spiffy","morphine","100"
"56","Hollywood ","90035","RaoulDuke32","xanax","100"
"218660","Jerms81","251918","Iezegrim","methadone","100"
"16700","beena","251918","Iezegrim","methadone","100"
"7303","pankreeas ","80015","southern girl","oxycontin","100"
"11876","Paracelsus ","35486","NeuroChi","tramadol","100"
"1","Alfa","90006","Ghetto_Chem","salvia divinorum","100"
"230750","MoreGutzThanGlory","251918","Iezegrim","methadone","100"
"4910","Fantasian","64012","timkanu","codeine","100"
"42579","cabal","64012","timkanu","codeine","100"
"27864","G_nome","251918","Iezegrim","methadone","100"
"1595","Curtains","251918","Iezegrim","methadone","100"
"80015","southern girl","194301","rosielee","methadone","100"
"69047","lease25","90035","RaoulDuke32","xanax","100"
"54214","Zoidberg","80015","southern girl","morphine","100"
"80015","southern girl","280861","Hydroxyout","oxycodone","100"
"45599","On The Nod","80015","southern girl","oxycodone","100"
"3375","MrJim","80015","southern girl","oxycodone","100"
"72408","Mr Fish","96636","Mersann","mdma","100"
"1714","magicmaster141","90035","RaoulDuke32","xanax","100"
"45618","cannabis-sam","90035","RaoulDuke32","xanax","100"
"2418","Phungushead","251918","Iezegrim","methadone","100"
"46446","EyesOfTheWorld","65726","ellavader","xanax","100"
"19028","RochiWizz","72408","Mr Fish","mdma","100"
"80015","southern girl","251918","Iezegrim","methadone","100"
"46865","dyingtomorrow","80015","southern girl","morphine","100"
"58307","missparkles ","64012","timkanu","codeine","100"
"251918","Iezegrim","273791","Roaddoggy","methadone","100"
"50001","GutterPhenomenon69","80015","southern girl","methadone","100"
"3375","MrJim","64012","timkanu","codeine","100"
"13210","Ben12345","90006","Ghetto_Chem","salvia divinorum","100"
"9654","gib","72408","Mr Fish","mdma","100"
"3423","mopsie ","156304","PillMan","ghb","100"
"15564","Le Junk","72408","Mr Fish","mdma","100"
"80015","southern girl","127014","MikePatton","methadone","100"
"62","BA","72408","Mr Fish","mdma","100"
"7303","pankreeas ","80015","southern girl","oxycodone","100"
"201","fnord","90006","Ghetto_Chem","salvia divinorum","100"
"80015","southern girl","108860","Pain Hurts","oxycodone","100"
"6201","SkUnKaDeLiC","65726","ellavader","xanax","100"
"63028","Smirnoff","65726","ellavader","xanax","100"
"67133","User-126494","72408","Mr Fish","mdma","100"
"3299","anabolictrio","90035","RaoulDuke32","xanax","100"
"11876","Paracelsus ","148228","livespd","tramadol","100"
"72408","Mr Fish","90006","Ghetto_Chem","mdma","100"
"4495","vhalin","111239","whocaresdude91","oxycontin","99"
"69047","lease25","197129","soso","methadone","99"
"8569","johnnyvoid","32482","curious1","peyote","99"
"111239","whocaresdude91","156304","PillMan","oxycontin","99"
"80015","southern girl","111239","whocaresdude91","oxycontin","99"
"1","Alfa","48119","Jasim ","tramadol","99"
"28015","riaahacker","197129","soso","methadone","99"
"6201","SkUnKaDeLiC","197129","soso","methadone","99"
"3451","Softrat","8016","chillinwill","salvia divinorum","99"
"1842","nymphetamine","3451","Softrat","salvia divinorum","99"
"48119","Jasim ","148228","livespd","tramadol","99"
"35486","NeuroChi","197129","soso","methadone","99"
"16320","psycholic","32482","curious1","peyote","99"
"9","Freedom of Mind","80015","southern girl","codeine","99"
"28899","Esmerelda","197129","soso","methadone","99"
"3451","Softrat","14069","Drugaddict","salvia divinorum","99"
"1842","nymphetamine","111239","whocaresdude91","oxycontin","99"
"105712","boy_char","197129","soso","methadone","99"
"64012","timkanu","80015","southern girl","codeine","99"
"48119","Jasim ","201049","ak2Ut","tramadol","99"
"9","Freedom of Mind","191210","PainCA","hydrocodone","99"
"170641","jimmym321","197129","soso","methadone","99"
"1281","mmk271","197129","soso","methadone","99"
"32482","curious1","40688","69Ron","peyote","99"
"4495","vhalin","191210","PainCA","hydrocodone","99"
"54214","Zoidberg","197129","soso","methadone","99"
"81101","source","197129","soso","methadone","99"
"1023","btoddw2","80015","southern girl","codeine","99"
"57031","rhcpeppers1234","80015","southern girl","codeine","99"
"118772","Mr_Spiffy","197129","soso","methadone","99"
"48119","Jasim ","256377","detoxin momma","tramadol","99"
"194301","rosielee","197129","soso","methadone","99"
"1842","nymphetamine","48119","Jasim ","tramadol","99"
"46865","dyingtomorrow","111239","whocaresdude91","oxycontin","99"
"134323","Roll1N","191210","PainCA","hydrocodone","99"
"1752","Gurnie","3451","Softrat","salvia divinorum","99"
"3375","MrJim","111239","whocaresdude91","oxycontin","99"
"197129","soso","251918","Iezegrim","methadone","99"
"48119","Jasim ","156304","PillMan","tramadol","99"
"7946","788.4","80015","southern girl","codeine","99"
"1842","nymphetamine","197129","soso","methadone","99"
"63028","Smirnoff","80015","southern girl","codeine","99"
"197129","soso","218660","Jerms81","methadone","99"
"79947","TheBigBadWolf","197129","soso","methadone","99"
"48119","Jasim ","63028","Smirnoff","tramadol","99"
"9904","Benzeneringz","48119","Jasim ","tramadol","99"
"1842","nymphetamine","80015","southern girl","codeine","99"
"16700","beena","197129","soso","methadone","99"
"7303","pankreeas ","111239","whocaresdude91","oxycontin","99"
"1","Alfa","3451","Softrat","salvia divinorum","99"
"4910","Fantasian","80015","southern girl","codeine","99"
"42579","cabal","80015","southern girl","codeine","99"
"27864","G_nome","197129","soso","methadone","99"
"197129","soso","198055","yem69420","methadone","99"
"80015","southern girl","83387","PrincessJo x","codeine","99"
"1595","Curtains","197129","soso","methadone","99"
"28015","riaahacker","48119","Jasim ","tramadol","99"
"2418","Phungushead","197129","soso","methadone","99"
"80015","southern girl","197129","soso","methadone","99"
"58307","missparkles ","80015","southern girl","codeine","99"
"1842","nymphetamine","191210","PainCA","hydrocodone","99"
"3375","MrJim","80015","southern girl","codeine","99"
"197129","soso","273791","Roaddoggy","methadone","99"
"80015","southern girl","118772","Mr_Spiffy","codeine","99"
"156304","PillMan","191210","PainCA","hydrocodone","99"
"201","fnord","3451","Softrat","salvia divinorum","99"
"11876","Paracelsus ","48119","Jasim ","tramadol","99"
"56","Hollywood ","191210","PainCA","hydrocodone","99"
"1","Alfa","32482","curious1","peyote","99"
"111239","whocaresdude91","135119","pup555","oxycontin","99"
"63028","Smirnoff","111239","whocaresdude91","oxycontin","99"
"46446","EyesOfTheWorld","197129","soso","methadone","99"
"45618","cannabis-sam","48119","Jasim ","tramadol","99"
"3451","Softrat","90006","Ghetto_Chem","salvia divinorum","99"
"61180","Helene ","80015","southern girl","codeine","99"
"45618","cannabis-sam","197129","soso","methadone","99"
"35486","NeuroChi","80015","southern girl","codeine","99"
"65726","ellavader","111239","whocaresdude91","oxycontin","99"
"111239","whocaresdude91","211963","WoodyCA","oxycontin","99"
"45599","On The Nod","197129","soso","methadone","99"
"16489","baron samedi","197129","soso","methadone","99"
"127014","MikePatton","197129","soso","methadone","99"
"77229","reckoner","80015","southern girl","codeine","99"
"3299","anabolictrio","191210","PainCA","hydrocodone","99"
"118772","Mr_Spiffy","191210","PainCA","hydrocodone","99"
"46865","dyingtomorrow","197129","soso","methadone","99"
"3451","Softrat","13210","Ben12345","salvia divinorum","99"
"1753","kailey_elise ","197129","soso","methadone","99"
"28899","Esmerelda","111239","whocaresdude91","oxycontin","99"
"102420","spicybrainsgirl","197129","soso","methadone","99"
"2418","Phungushead","48119","Jasim ","tramadol","99"
"4910","Fantasian","197129","soso","methadone","99"
"1833","scyrusurcys","3451","Softrat","salvia divinorum","99"
"58307","missparkles ","197129","soso","methadone","99"
"16345","IkBenDeMan","197129","soso","methadone","99"
"48119","Jasim ","111239","whocaresdude91","tramadol","99"
"38632","PilL FreaK","48119","Jasim ","tramadol","99"
"3451","Softrat","3565","amd6568","salvia divinorum","99"
"28015","riaahacker","191210","PainCA","hydrocodone","99"
"76984","LostControl","111239","whocaresdude91","oxycontin","99"
"45599","On The Nod","80015","southern girl","codeine","99"
"15","Sammi","3451","Softrat","salvia divinorum","99"
"4495","vhalin","80015","southern girl","codeine","99"
"48119","Jasim ","96636","Mersann","tramadol","99"
"56","Hollywood ","80015","southern girl","codeine","99"
"28899","Esmerelda","80015","southern girl","codeine","99"
"28015","riaahacker","80015","southern girl","codeine","99"
"35486","NeuroChi","191210","PainCA","hydrocodone","99"
"56","Hollywood ","48119","Jasim ","tramadol","99"
"32482","curious1","54108","Alexander_Praves","peyote","99"
"48119","Jasim ","180313","out_there","tramadol","99"
"7946","788.4","197129","soso","methadone","99"
"102420","spicybrainsgirl","111239","whocaresdude91","oxycontin","99"
"16345","IkBenDeMan","191210","PainCA","hydrocodone","99"
"115136","trdofbeingtrd","197129","soso","methadone","99"
"63028","Smirnoff","197129","soso","methadone","99"
"197129","soso","236416","lyoness","methadone","99"
"48119","Jasim ","127014","MikePatton","tramadol","99"
"1684","CABS205","80015","southern girl","codeine","99"
"35486","NeuroChi","48119","Jasim ","tramadol","99"
"41143","RoboCodeine7610","48119","Jasim ","tramadol","99"
"108860","Pain Hurts","111239","whocaresdude91","oxycontin","99"
"180932","gal68","191210","PainCA","hydrocodone","99"
"197129","soso","268087","Pbnjesse","methadone","99"
"9","Freedom of Mind","48119","Jasim ","tramadol","99"
"80015","southern girl","80751","AnrBjotk","codeine","99"
"1224","markdahman","80015","southern girl","codeine","99"
"28015","riaahacker","111239","whocaresdude91","oxycontin","99"
"191210","PainCA","198055","yem69420","hydrocodone","99"
"2112","QGdoxl ","80015","southern girl","codeine","99"
"50001","GutterPhenomenon69","197129","soso","methadone","99"
"197129","soso","230750","MoreGutzThanGlory","methadone","99"
"80015","southern girl","180313","out_there","codeine","99"
"181260","Kitts","197129","soso","methadone","99"
"4495","vhalin","48119","Jasim ","tramadol","99"
"56","Hollywood ","111239","whocaresdude91","oxycontin","99"
"9904","Benzeneringz","197129","soso","methadone","99"
"111239","whocaresdude91","218660","Jerms81","oxycontin","99"
"164373","mar1ne","191210","PainCA","hydrocodone","99"
"15232","Tortoise","80015","southern girl","codeine","99"
"18965","beentheredonethatagain","197129","soso","methadone","99"
"197129","soso","202594","headfull0fstars","methadone","99"
"100767","missinglfe","197129","soso","methadone","99"
"80015","southern girl","100767","missinglfe","codeine","99"
"62096","Cooki ","197129","soso","methadone","99"
"40282","Razorbladekiss","80015","southern girl","codeine","99"
"45618","cannabis-sam","191210","PainCA","hydrocodone","99"
"112582","tryinmybest","197129","soso","methadone","99"
"102824","natey7","197129","soso","methadone","99"
"45583","Synesthesiac","66561","Curiouscat22","mephedrone","98"
"1","Alfa","72408","Mr Fish","shroom","98"
"1964","enquirewithin ","72408","Mr Fish","mephedrone","98"
"1526","Cuberun ","1842","nymphetamine","diphenhydramine","98"
"66561","Curiouscat22","70276","tripolar","mephedrone","98"
"53567","buzzman","66561","Curiouscat22","mephedrone","98"
"4495","vhalin","66561","Curiouscat22","mephedrone","98"
"930","searcher","72408","Mr Fish","shroom","98"
"770","rolexparts","63028","Smirnoff","tramadol","98"
"57308","BoyInTheCountry","66561","Curiouscat22","mephedrone","98"
"1842","nymphetamine","72408","Mr Fish","shroom","98"
"1","Alfa","72408","Mr Fish","psilocybin","98"
"35486","NeuroChi","72408","Mr Fish","shroom","98"
"66561","Curiouscat22","124017","LoveNwar","mephedrone","98"
"2822","fastandbulbous","66561","Curiouscat22","mephedrone","98"
"4495","vhalin","72408","Mr Fish","psilocybin","98"
"62077","WTF O_o","72408","Mr Fish","mephedrone","98"
"770","rolexparts","38632","PilL FreaK","tramadol","98"
"3471","Potassium Kid","66561","Curiouscat22","mephedrone","98"
"770","rolexparts","11876","Paracelsus ","tramadol","98"
"28015","riaahacker","66561","Curiouscat22","mephedrone","98"
"1526","Cuberun ","37097","jok3r","diphenhydramine","98"
"63391","Tamis","72408","Mr Fish","mephedrone","98"
"55332","LowCrawl To Freedom","66561","Curiouscat22","mephedrone","98"
"8016","chillinwill","66561","Curiouscat22","mephedrone","98"
"770","rolexparts","2418","Phungushead","tramadol","98"
"5750","pharmapsyche","66561","Curiouscat22","mephedrone","98"
"54108","Alexander_Praves","72408","Mr Fish","shroom","98"
"56","Hollywood ","770","rolexparts","tramadol","98"
"57101","Terrapinzflyer ","72408","Mr Fish","psilocybin","98"
"770","rolexparts","148228","livespd","tramadol","98"
"1526","Cuberun ","124017","LoveNwar","diphenhydramine","98"
"1868","Paderas","72408","Mr Fish","shroom","98"
"72408","Mr Fish","127014","MikePatton","shroom","98"
"4092","trptamene ","66561","Curiouscat22","mephedrone","98"
"1526","Cuberun ","72408","Mr Fish","mephedrone","98"
"4969","kaide","72408","Mr Fish","psilocybin","98"
"770","rolexparts","201049","ak2Ut","tramadol","98"
"1526","Cuberun ","1684","CABS205","diphenhydramine","98"
"3732","Diphenhydramine","72408","Mr Fish","shroom","98"
"1842","nymphetamine","72408","Mr Fish","mephedrone","98"
"72408","Mr Fish","74620","methuselah969","mephedrone","98"
"38813","waffles","72408","Mr Fish","shroom","98"
"153","blaze","66561","Curiouscat22","mephedrone","98"
"50050","Gradient","72408","Mr Fish","mephedrone","98"
"57101","Terrapinzflyer ","72408","Mr Fish","mephedrone","98"
"2610","brainwaxd","72408","Mr Fish","shroom","98"
"9","Freedom of Mind","770","rolexparts","tramadol","98"
"770","rolexparts","41143","RoboCodeine7610","tramadol","98"
"1526","Cuberun ","202594","headfull0fstars","diphenhydramine","98"
"68044","fanyovsky","72408","Mr Fish","mephedrone","98"
"72408","Mr Fish","96636","Mersann","mephedrone","98"
"62508","Makesmefeelbig","72408","Mr Fish","mephedrone","98"
"63028","Smirnoff","72408","Mr Fish","shroom","98"
"70276","tripolar","72408","Mr Fish","mephedrone","98"
"1526","Cuberun ","1808","xxgaretjaxx","diphenhydramine","98"
"770","rolexparts","180313","out_there","tramadol","98"
"1868","Paderas","72408","Mr Fish","mephedrone","98"
"20109","imyourlittlebare","66561","Curiouscat22","mephedrone","98"
"1526","Cuberun ","4495","vhalin","diphenhydramine","98"
"1","Alfa","66561","Curiouscat22","mephedrone","98"
"770","rolexparts","45618","cannabis-sam","tramadol","98"
"11411","supremedan","72408","Mr Fish","mephedrone","98"
"4495","vhalin","72408","Mr Fish","shroom","98"
"1964","enquirewithin ","66561","Curiouscat22","mephedrone","98"
"4969","kaide","72408","Mr Fish","shroom","98"
"1526","Cuberun ","13189","augentier ","diphenhydramine","98"
"1","Alfa","770","rolexparts","tramadol","98"
"66561","Curiouscat22","68044","fanyovsky","mephedrone","98"
"770","rolexparts","4495","vhalin","tramadol","98"
"45583","Synesthesiac","72408","Mr Fish","mephedrone","98"
"1595","Curtains","72408","Mr Fish","psilocybin","98"
"1526","Cuberun ","46865","dyingtomorrow","diphenhydramine","98"
"66561","Curiouscat22","74620","methuselah969","mephedrone","98"
"53567","buzzman","72408","Mr Fish","mephedrone","98"
"4495","vhalin","72408","Mr Fish","mephedrone","98"
"62077","WTF O_o","66561","Curiouscat22","mephedrone","98"
"770","rolexparts","28015","riaahacker","tramadol","98"
"57308","BoyInTheCountry","72408","Mr Fish","mephedrone","98"
"770","rolexparts","48119","Jasim ","tramadol","98"
"66561","Curiouscat22","96636","Mersann","mephedrone","98"
"63391","Tamis","66561","Curiouscat22","mephedrone","98"
"2822","fastandbulbous","72408","Mr Fish","mephedrone","98"
"770","rolexparts","1842","nymphetamine","tramadol","98"
"1868","Paderas","72408","Mr Fish","psilocybin","98"
"3471","Potassium Kid","72408","Mr Fish","mephedrone","98"
"770","rolexparts","9904","Benzeneringz","tramadol","98"
"28015","riaahacker","72408","Mr Fish","mephedrone","98"
"539","stndguy","72408","Mr Fish","shroom","98"
"1526","Cuberun ","13765","Nacumen","diphenhydramine","98"
"55332","LowCrawl To Freedom","72408","Mr Fish","mephedrone","98"
"8016","chillinwill","72408","Mr Fish","mephedrone","98"
"770","rolexparts","35486","NeuroChi","tramadol","98"
"14069","Drugaddict","72408","Mr Fish","shroom","98"
"5750","pharmapsyche","72408","Mr Fish","mephedrone","98"
"1526","Cuberun ","66561","Curiouscat22","mephedrone","98"
"770","rolexparts","111239","whocaresdude91","tramadol","98"
"1526","Cuberun ","8569","johnnyvoid","diphenhydramine","98"
"2418","Phungushead","72408","Mr Fish","psilocybin","98"
"1842","nymphetamine","66561","Curiouscat22","mephedrone","98"
"2679","mariecurie","72408","Mr Fish","psilocybin","98"
"72408","Mr Fish","74627","SwiftyyFlintt","psilocybin","98"
"4092","trptamene ","72408","Mr Fish","mephedrone","98"
"50050","Gradient","66561","Curiouscat22","mephedrone","98"
"57101","Terrapinzflyer ","66561","Curiouscat22","mephedrone","98"
"2066","~lostgurl~ ","72408","Mr Fish","shroom","98"
"770","rolexparts","96636","Mersann","tramadol","98"
"1526","Cuberun ","4969","kaide","diphenhydramine","98"
"45618","cannabis-sam","72408","Mr Fish","shroom","98"
"72408","Mr Fish","124017","LoveNwar","mephedrone","98"
"539","stndguy","72408","Mr Fish","psilocybin","98"
"62508","Makesmefeelbig","66561","Curiouscat22","mephedrone","98"
"1526","Cuberun ","7303","pankreeas ","diphenhydramine","98"
"153","blaze","72408","Mr Fish","mephedrone","98"
"770","rolexparts","256377","detoxin momma","tramadol","98"
"1562","soer","72408","Mr Fish","shroom","98"
"1868","Paderas","66561","Curiouscat22","mephedrone","98"
"1526","Cuberun ","127014","MikePatton","diphenhydramine","98"
"1806","betty_bupe","72408","Mr Fish","shroom","98"
"10467","WrtngCocaineTutorial","72408","Mr Fish","shroom","98"
"770","rolexparts","156304","PillMan","tramadol","98"
"1808","xxgaretjaxx","72408","Mr Fish","shroom","98"
"11411","supremedan","66561","Curiouscat22","mephedrone","98"
"20109","imyourlittlebare","72408","Mr Fish","mephedrone","98"
"1526","Cuberun ","63028","Smirnoff","diphenhydramine","98"
"66561","Curiouscat22","72408","Mr Fish","mephedrone","98"
"15","Sammi","72408","Mr Fish","shroom","98"
"1","Alfa","72408","Mr Fish","mephedrone","98"
"770","rolexparts","127014","MikePatton","tramadol","98"
"1595","Curtains","72408","Mr Fish","shroom","98"
"62255","CrookieMonster","118772","Mr_Spiffy","oxycodone","97"
"135","sands of time","207089","stressedgirl","kratom","97"
"45599","On The Nod","62255","CrookieMonster","methadone","97"
"16489","baron samedi","62255","CrookieMonster","methadone","97"
"207089","stressedgirl","273791","Roaddoggy","kratom","97"
"46865","dyingtomorrow","62255","CrookieMonster","methadone","97"
"1753","kailey_elise ","62255","CrookieMonster","methadone","97"
"28899","Esmerelda","62255","CrookieMonster","oxycontin","97"
"124709","zildjiangirl","218660","Jerms81","oxycodone","97"
"4910","Fantasian","62255","CrookieMonster","methadone","97"
"7946","788.4","62255","CrookieMonster","oxycodone","97"
"62255","CrookieMonster","170641","jimmym321","methadone","97"
"58307","missparkles ","62255","CrookieMonster","methadone","97"
"16345","IkBenDeMan","62255","CrookieMonster","methadone","97"
"207089","stressedgirl","294051","Jungledog","kratom","97"
"9904","Benzeneringz","62255","CrookieMonster","oxycodone","97"
"157358","CrispCold","207089","stressedgirl","kratom","97"
"20234","ianzombie ","207089","stressedgirl","kratom","97"
"35591","AACrazy2892","124709","zildjiangirl","oxycodone","97"
"62255","CrookieMonster","180313","out_there","oxycodone","97"
"62255","CrookieMonster","124709","zildjiangirl","oxycodone","97"
"4490","DJ-666","14989","SubSonic7","acetone","97"
"56","Hollywood ","124709","zildjiangirl","oxycodone","97"
"124709","zildjiangirl","280861","Hydroxyout","oxycodone","97"
"62255","CrookieMonster","273791","Roaddoggy","methadone","97"
"4495","vhalin","124709","zildjiangirl","oxycodone","97"
"14989","SubSonic7","40688","69Ron","acetone","97"
"401","peggs16","108546","reef88","clonazepam","97"
"62255","CrookieMonster","294051","Jungledog","oxycodone","97"
"835","Thegreatone","14989","SubSonic7","acetone","97"
"62255","CrookieMonster","74627","SwiftyyFlintt","oxycodone","97"
"124709","zildjiangirl","220080","Lunaciel","oxycodone","97"
"62255","CrookieMonster","118772","Mr_Spiffy","methadone","97"
"115136","trdofbeingtrd","207089","stressedgirl","kratom","97"
"74627","SwiftyyFlintt","108546","reef88","clonazepam","97"
"102420","spicybrainsgirl","207089","stressedgirl","kratom","97"
"62255","CrookieMonster","111239","whocaresdude91","oxycontin","97"
"7946","788.4","62255","CrookieMonster","methadone","97"
"62255","CrookieMonster","251918","Iezegrim","methadone","97"
"62255","CrookieMonster","135119","pup555","oxycodone","97"
"124709","zildjiangirl","156304","PillMan","oxycodone","97"
"3413","radiometer ","207089","stressedgirl","kratom","97"
"62255","CrookieMonster","100767","missinglfe","methadone","97"
"62255","CrookieMonster","218660","Jerms81","oxycontin","97"
"1842","nymphetamine","124709","zildjiangirl","oxycodone","97"
"9781","cutiepie","62255","CrookieMonster","oxycodone","97"
"35486","NeuroChi","62255","CrookieMonster","oxycodone","97"
"62255","CrookieMonster","236416","lyoness","methadone","97"
"62255","CrookieMonster","65726","ellavader","oxycodone","97"
"118772","Mr_Spiffy","124709","zildjiangirl","oxycodone","97"
"124709","zildjiangirl","294051","Jungledog","oxycodone","97"
"62255","CrookieMonster","102824","natey7","methadone","97"
"46865","dyingtomorrow","124709","zildjiangirl","oxycodone","97"
"62255","CrookieMonster","65726","ellavader","oxycontin","97"
"1","Alfa","207089","stressedgirl","kratom","97"
"62255","CrookieMonster","69047","lease25","methadone","97"
"2539","Beltane","108546","reef88","clonazepam","97"
"62255","CrookieMonster","207982","tryinghard","oxycodone","97"
"28015","riaahacker","62255","CrookieMonster","oxycontin","97"
"207089","stressedgirl","291968","servo75","kratom","97"
"40911","rawbeer","207089","stressedgirl","kratom","97"
"90006","Ghetto_Chem","207089","stressedgirl","kratom","97"
"50001","GutterPhenomenon69","62255","CrookieMonster","methadone","97"
"62255","CrookieMonster","63028","Smirnoff","methadone","97"
"130","Woodman ","62255","CrookieMonster","acetone","97"
"62255","CrookieMonster","156304","PillMan","oxycontin","97"
"391","leanbaby","62255","CrookieMonster","acetone","97"
"62048","war209","124709","zildjiangirl","oxycodone","97"
"45599","On The Nod","62255","CrookieMonster","oxycodone","97"
"108860","Pain Hurts","124709","zildjiangirl","oxycodone","97"
"56","Hollywood ","62255","CrookieMonster","oxycontin","97"
"3375","MrJim","62255","CrookieMonster","oxycodone","97"
"62255","CrookieMonster","105712","boy_char","methadone","97"
"2418","Phungushead","124709","zildjiangirl","oxycodone","97"
"62255","CrookieMonster","220080","Lunaciel","oxycodone","97"
"9904","Benzeneringz","62255","CrookieMonster","methadone","97"
"83387","PrincessJo x","124709","zildjiangirl","oxycodone","97"
"4333","Benga ","14989","SubSonic7","acetone","97"
"207089","stressedgirl","275604","snowdrop","kratom","97"
"62255","CrookieMonster","202594","headfull0fstars","methadone","97"
"14541","laws0n","124709","zildjiangirl","oxycodone","97"
"2418","Phungushead","108546","reef88","clonazepam","97"
"18965","beentheredonethatagain","62255","CrookieMonster","methadone","97"
"4777","IHrtHalucingens","108546","reef88","clonazepam","97"
"62255","CrookieMonster","211963","WoodyCA","oxycontin","97"
"7303","pankreeas ","62255","CrookieMonster","oxycodone","97"
"62096","Cooki ","62255","CrookieMonster","methadone","97"
"103726","seaturtle","207089","stressedgirl","kratom","97"
"108546","reef88","180313","out_there","clonazepam","97"
"2763","bogumil","207089","stressedgirl","kratom","97"
"9904","Benzeneringz","108546","reef88","clonazepam","97"
"62255","CrookieMonster","198055","yem69420","methadone","97"
"6201","SkUnKaDeLiC","62255","CrookieMonster","methadone","97"
"62255","CrookieMonster","68194","baZING","oxycodone","97"
"4495","vhalin","62255","CrookieMonster","oxycontin","97"
"207089","stressedgirl","275468","Openmymind","kratom","97"
"46865","dyingtomorrow","207089","stressedgirl","kratom","97"
"127014","MikePatton","207089","stressedgirl","kratom","97"
"9","Freedom of Mind","108546","reef88","clonazepam","97"
"11411","supremedan","62255","CrookieMonster","oxycodone","97"
"2822","fastandbulbous","207089","stressedgirl","kratom","97"
"28015","riaahacker","62255","CrookieMonster","methadone","97"
"62255","CrookieMonster","63028","Smirnoff","oxycontin","97"
"117995","dreamy","207089","stressedgirl","kratom","97"
"7946","788.4","124709","zildjiangirl","oxycodone","97"
"62255","CrookieMonster","102420","spicybrainsgirl","methadone","97"
"63028","Smirnoff","108546","reef88","clonazepam","97"
"56","Hollywood ","108546","reef88","clonazepam","97"
"35486","NeuroChi","62255","CrookieMonster","methadone","97"
"207089","stressedgirl","273439","marathonmel7","kratom","97"
"9904","Benzeneringz","124709","zildjiangirl","oxycodone","97"
"91040","Dankfish","207089","stressedgirl","kratom","97"
"68194","baZING","124709","zildjiangirl","oxycodone","97"
"28899","Esmerelda","62255","CrookieMonster","methadone","97"
"62255","CrookieMonster","156304","PillMan","oxycodone","97"
"124709","zildjiangirl","135119","pup555","oxycodone","97"
"1842","nymphetamine","62255","CrookieMonster","oxycontin","97"
"62255","CrookieMonster","79947","TheBigBadWolf","methadone","97"
"1964","enquirewithin ","207089","stressedgirl","kratom","97"
"14989","SubSonic7","62255","CrookieMonster","acetone","97"
"156304","PillMan","207089","stressedgirl","kratom","97"
"1281","mmk271","62255","CrookieMonster","methadone","97"
"35591","AACrazy2892","62255","CrookieMonster","oxycodone","97"
"62255","CrookieMonster","63028","Smirnoff","oxycodone","97"
"62255","CrookieMonster","80015","southern girl","oxycodone","97"
"4490","DJ-666","62255","CrookieMonster","acetone","97"
"56","Hollywood ","62255","CrookieMonster","oxycodone","97"
"54214","Zoidberg","62255","CrookieMonster","methadone","97"
"124709","zildjiangirl","207982","tryinghard","oxycodone","97"
"62255","CrookieMonster","81101","source","methadone","97"
"4495","vhalin","62255","CrookieMonster","oxycodone","97"
"118772","Mr_Spiffy","207089","stressedgirl","kratom","97"
"46865","dyingtomorrow","62255","CrookieMonster","oxycontin","97"
"1521","Smarthead","207089","stressedgirl","kratom","97"
"155253","MachoManSavage","207089","stressedgirl","kratom","97"
"74033","TheSweetPea","207089","stressedgirl","kratom","97"
"62255","CrookieMonster","197129","soso","methadone","97"
"835","Thegreatone","62255","CrookieMonster","acetone","97"
"62255","CrookieMonster","218660","Jerms81","oxycodone","97"
"13344","drewcil","207089","stressedgirl","kratom","97"
"124709","zildjiangirl","211963","WoodyCA","oxycodone","97"
"62255","CrookieMonster","181260","Kitts","methadone","97"
"3375","MrJim","62255","CrookieMonster","oxycontin","97"
"62255","CrookieMonster","80015","southern girl","oxycontin","97"
"1239","Nicaine","207089","stressedgirl","kratom","97"
"6201","SkUnKaDeLiC","108546","reef88","clonazepam","97"
"9781","cutiepie","124709","zildjiangirl","oxycodone","97"
"1842","nymphetamine","62255","CrookieMonster","methadone","97"
"35486","NeuroChi","124709","zildjiangirl","oxycodone","97"
"62255","CrookieMonster","80015","southern girl","methadone","97"
"62255","CrookieMonster","83387","PrincessJo x","oxycodone","97"
"28015","riaahacker","207089","stressedgirl","kratom","97"
"124709","zildjiangirl","180313","out_there","oxycodone","97"
"62255","CrookieMonster","194301","rosielee","methadone","97"
"62255","CrookieMonster","135119","pup555","oxycontin","97"
"1842","nymphetamine","62255","CrookieMonster","oxycodone","97"
"80015","southern girl","124709","zildjiangirl","oxycodone","97"
"4495","vhalin","207089","stressedgirl","kratom","97"
"62255","CrookieMonster","218660","Jerms81","methadone","97"
"62255","CrookieMonster","280861","Hydroxyout","oxycodone","97"
"16700","beena","62255","CrookieMonster","methadone","97"
"7303","pankreeas ","62255","CrookieMonster","oxycontin","97"
"45509","REDSOXFAN","207089","stressedgirl","kratom","97"
"62255","CrookieMonster","127014","MikePatton","methadone","97"
"130","Woodman ","14989","SubSonic7","acetone","97"
"27864","G_nome","62255","CrookieMonster","methadone","97"
"35486","NeuroChi","207089","stressedgirl","kratom","97"
"1595","Curtains","62255","CrookieMonster","methadone","97"
"40688","69Ron","62255","CrookieMonster","acetone","97"
"46865","dyingtomorrow","62255","CrookieMonster","oxycodone","97"
"62255","CrookieMonster","76984","LostControl","oxycontin","97"
"63028","Smirnoff","124709","zildjiangirl","oxycodone","97"
"391","leanbaby","14989","SubSonic7","acetone","97"
"45599","On The Nod","124709","zildjiangirl","oxycodone","97"
"3375","MrJim","124709","zildjiangirl","oxycodone","97"
"62255","CrookieMonster","112582","tryinmybest","methadone","97"
"62255","CrookieMonster","108860","Pain Hurts","oxycodone","97"
"2418","Phungushead","62255","CrookieMonster","methadone","97"
"207089","stressedgirl","212335","Calyspical","kratom","97"
"62255","CrookieMonster","115136","trdofbeingtrd","methadone","97"
"62255","CrookieMonster","102420","spicybrainsgirl","oxycontin","97"
"7303","pankreeas ","124709","zildjiangirl","oxycodone","97"
"74627","SwiftyyFlintt","124709","zildjiangirl","oxycodone","97"
"62048","war209","62255","CrookieMonster","oxycodone","97"
"108546","reef88","230750","MoreGutzThanGlory","clonazepam","97"
"5733","Jatelka ","108546","reef88","clonazepam","97"
"62255","CrookieMonster","268087","Pbnjesse","methadone","97"
"2418","Phungushead","62255","CrookieMonster","oxycodone","97"
"62255","CrookieMonster","211963","WoodyCA","oxycodone","97"
"4333","Benga ","62255","CrookieMonster","acetone","97"
"207089","stressedgirl","234642","SuperCaesarKratomSalad","kratom","97"
"11411","supremedan","124709","zildjiangirl","oxycodone","97"
"10410","DXMBunny","207089","stressedgirl","kratom","97"
"46446","EyesOfTheWorld","62255","CrookieMonster","methadone","97"
"14541","laws0n","62255","CrookieMonster","oxycodone","97"
"1842","nymphetamine","207089","stressedgirl","kratom","97"
"65726","ellavader","124709","zildjiangirl","oxycodone","97"
"62255","CrookieMonster","108860","Pain Hurts","oxycontin","97"
"45618","cannabis-sam","62255","CrookieMonster","methadone","97"
"1714","magicmaster141","108546","reef88","clonazepam","97"
"108546","reef88","202594","headfull0fstars","clonazepam","97"
"3167","bubaloo","108546","reef88","clonazepam","97"
"2418","Phungushead","207089","stressedgirl","kratom","97"
"62255","CrookieMonster","230750","MoreGutzThanGlory","methadone","97"
"10410","DXMBunny","43332","enhancion01","dxm","96"
"743","madman3l6","151909","dopefromie","xanax","96"
"616","HellsEmbrace","856","str8ballin","xanax","96"
"21513","HorseBucket","45618","cannabis-sam","adderall","96"
"1455","Carbine","157358","CrispCold","kratom","96"
"1455","Carbine","90006","Ghetto_Chem","kratom","96"
"17821","lulz ","91040","Dankfish","kratom","96"
"102420","spicybrainsgirl","151909","dopefromie","xanax","96"
"313","RoboCop ","156304","PillMan","dextromethorphan","96"
"616","HellsEmbrace","41143","RoboCodeine7610","xanax","96"
"10410","DXMBunny","28015","riaahacker","dxm","96"
"4495","vhalin","151909","dopefromie","xanax","96"
"10410","DXMBunny","127711","Zhekarius","dxm","96"
"1964","enquirewithin ","17821","lulz ","kratom","96"
"8671","Richard_smoker","156304","PillMan","dextromethorphan","96"
"616","HellsEmbrace","45618","cannabis-sam","xanax","96"
"21513","HorseBucket","127014","MikePatton","adderall","96"
"11411","supremedan","151909","dopefromie","xanax","96"
"1455","Carbine","13344","drewcil","kratom","96"
"1455","Carbine","46865","dyingtomorrow","kratom","96"
"46889","port 21","156304","PillMan","dextromethorphan","96"
"657","distilla_truant","10410","DXMBunny","dxm","96"
"17821","lulz ","156304","PillMan","kratom","96"
"28899","Esmerelda","151909","dopefromie","xanax","96"
"35486","NeuroChi","151909","dopefromie","xanax","96"
"616","HellsEmbrace","1753","kailey_elise ","xanax","96"
"110776","PowerfulMedicine","156304","PillMan","dextromethorphan","96"
"1521","Smarthead","17821","lulz ","kratom","96"
"17821","lulz ","207089","stressedgirl","kratom","96"
"616","HellsEmbrace","1808","xxgaretjaxx","xanax","96"
"21513","HorseBucket","115136","trdofbeingtrd","adderall","96"
"9","Freedom of Mind","21513","HorseBucket","adderall","96"
"1455","Carbine","273791","Roaddoggy","kratom","96"
"10410","DXMBunny","45258","motter28218","dxm","96"
"1455","Carbine","1964","enquirewithin ","kratom","96"
"41143","RoboCodeine7610","151909","dopefromie","xanax","96"
"13344","drewcil","17821","lulz ","kratom","96"
"17821","lulz ","20234","ianzombie ","kratom","96"
"401","peggs16","616","HellsEmbrace","xanax","96"
"4495","vhalin","21513","HorseBucket","adderall","96"
"10663","fizzle","21513","HorseBucket","adderall","96"
"616","HellsEmbrace","156304","PillMan","xanax","96"
"21513","HorseBucket","122777","addersloth","adderall","96"
"9858","jesusfreak666er","10410","DXMBunny","dxm","96"
"1455","Carbine","207089","stressedgirl","kratom","96"
"1239","Nicaine","1455","Carbine","kratom","96"
"1","Alfa","151909","dopefromie","xanax","96"
"17821","lulz ","291968","servo75","kratom","96"
"616","HellsEmbrace","63028","Smirnoff","xanax","96"
"21513","HorseBucket","71487","robotripper","adderall","96"
"1455","Carbine","273439","marathonmel7","kratom","96"
"10410","DXMBunny","21315","Graduisic","dxm","96"
"1455","Carbine","91040","Dankfish","kratom","96"
"17821","lulz ","118772","Mr_Spiffy","kratom","96"
"616","HellsEmbrace","297036","supermono","xanax","96"
"1842","nymphetamine","21513","HorseBucket","adderall","96"
"21513","HorseBucket","59051","Priapism9","adderall","96"
"5866","RealGanjaMan ","10410","DXMBunny","dxm","96"
"2418","Phungushead","151909","dopefromie","xanax","96"
"1455","Carbine","1521","Smarthead","kratom","96"
"3780","Kradle","156304","PillMan","dextromethorphan","96"
"313","RoboCop ","10410","DXMBunny","dxm","96"
"17821","lulz ","117995","dreamy","kratom","96"
"616","HellsEmbrace","28015","riaahacker","xanax","96"
"4495","vhalin","17821","lulz ","kratom","96"
"151909","dopefromie","168933","KCIUB","xanax","96"
"28015","riaahacker","151909","dopefromie","xanax","96"
"1","Alfa","17821","lulz ","kratom","96"
"1455","Carbine","1842","nymphetamine","kratom","96"
"10410","DXMBunny","44584","Rightnow289","dxm","96"
"17821","lulz ","127014","MikePatton","kratom","96"
"616","HellsEmbrace","102420","spicybrainsgirl","xanax","96"
"21513","HorseBucket","46446","EyesOfTheWorld","adderall","96"
"1455","Carbine","275468","Openmymind","kratom","96"
"1455","Carbine","2822","fastandbulbous","kratom","96"
"7946","788.4","151909","dopefromie","xanax","96"
"1868","Paderas","21513","HorseBucket","adderall","96"
"17821","lulz ","74033","TheSweetPea","kratom","96"
"616","HellsEmbrace","1842","nymphetamine","xanax","96"
"151909","dopefromie","297036","supermono","xanax","96"
"1455","Carbine","2418","Phungushead","kratom","96"
"10410","DXMBunny","98407","phenythylamine","dxm","96"
"17821","lulz ","28015","riaahacker","kratom","96"
"56","Hollywood ","616","HellsEmbrace","xanax","96"
"616","HellsEmbrace","3167","bubaloo","xanax","96"
"21513","HorseBucket","65638","Pieces Mended","adderall","96"
"1455","Carbine","155253","MachoManSavage","kratom","96"
"1455","Carbine","117995","dreamy","kratom","96"
"69047","lease25","151909","dopefromie","xanax","96"
"17821","lulz ","90006","Ghetto_Chem","kratom","96"
"616","HellsEmbrace","2418","Phungushead","xanax","96"
"151909","dopefromie","273439","marathonmel7","xanax","96"
"9858","jesusfreak666er","21513","HorseBucket","adderall","96"
"616","HellsEmbrace","90035","RaoulDuke32","xanax","96"
"10410","DXMBunny","156304","PillMan","dxm","96"
"1714","magicmaster141","151909","dopefromie","xanax","96"
"45618","cannabis-sam","151909","dopefromie","xanax","96"
"17821","lulz ","294051","Jungledog","kratom","96"
"616","HellsEmbrace","7946","788.4","xanax","96"
"10410","DXMBunny","17821","lulz ","kratom","96"
"21513","HorseBucket","45728","Gappa","adderall","96"
"1455","Carbine","20234","ianzombie ","kratom","96"
"1","Alfa","21513","HorseBucket","adderall","96"
"1455","Carbine","74033","TheSweetPea","kratom","96"
"1842","nymphetamine","17821","lulz ","kratom","96"
"2418","Phungushead","10410","DXMBunny","dxm","96"
"9","Freedom of Mind","156304","PillMan","dextromethorphan","96"
"6201","SkUnKaDeLiC","17821","lulz ","bromazepam","96"
"17821","lulz ","46865","dyingtomorrow","kratom","96"
"3423","mopsie ","5750","pharmapsyche","viagra","96"
"3299","anabolictrio","151909","dopefromie","xanax","96"
"2418","Phungushead","17821","lulz ","kratom","96"
"616","HellsEmbrace","168933","KCIUB","xanax","96"
"10410","DXMBunny","46889","port 21","dxm","96"
"10410","DXMBunny","11876","Paracelsus ","dxm","96"
"135","sands of time","1455","Carbine","kratom","96"
"48762","brandon561","151909","dopefromie","xanax","96"
"3565","amd6568","156304","PillMan","dextromethorphan","96"
"17821","lulz ","180313","out_there","bromazepam","96"
"1935","duchy ","3423","mopsie ","viagra","96"
"616","HellsEmbrace","743","madman3l6","xanax","96"
"21513","HorseBucket","46865","dyingtomorrow","adderall","96"
"90035","RaoulDuke32","151909","dopefromie","xanax","96"
"1455","Carbine","118772","Mr_Spiffy","kratom","96"
"1455","Carbine","234642","SuperCaesarKratomSalad","kratom","96"
"17821","lulz ","115136","trdofbeingtrd","kratom","96"
"3423","mopsie ","127014","MikePatton","viagra","96"
"616","HellsEmbrace","9904","Benzeneringz","xanax","96"
"10410","DXMBunny","202594","headfull0fstars","dxm","96"
"10410","DXMBunny","11835","El Calico Loco","dxm","96"
"1753","kailey_elise ","151909","dopefromie","xanax","96"
"737","RARFE ","21513","HorseBucket","adderall","96"
"616","HellsEmbrace","3299","anabolictrio","xanax","96"
"21513","HorseBucket","202594","headfull0fstars","adderall","96"
"28015","riaahacker","156304","PillMan","dextromethorphan","96"
"1455","Carbine","127014","MikePatton","kratom","96"
"1455","Carbine","40911","rawbeer","kratom","96"
"65726","ellavader","151909","dopefromie","xanax","96"
"5750","pharmapsyche","21513","HorseBucket","adderall","96"
"17821","lulz ","275468","Openmymind","kratom","96"
"108546","reef88","151909","dopefromie","xanax","96"
"616","HellsEmbrace","108546","reef88","xanax","96"
"657","distilla_truant","156304","PillMan","dextromethorphan","96"
"10410","DXMBunny","17829","LookingForHer","dxm","96"
"616","HellsEmbrace","1213","Psilocybe S.","xanax","96"
"21513","HorseBucket","63028","Smirnoff","adderall","96"
"1455","Carbine","4495","vhalin","kratom","96"
"1455","Carbine","102420","spicybrainsgirl","kratom","96"
"1023","btoddw2","21513","HorseBucket","adderall","96"
"17821","lulz ","155253","MachoManSavage","kratom","96"
"401","peggs16","151909","dopefromie","xanax","96"
"616","HellsEmbrace","11411","supremedan","xanax","96"
"1213","Psilocybe S.","151909","dopefromie","xanax","96"
"56","Hollywood ","21513","HorseBucket","adderall","96"
"1455","Carbine","17821","lulz ","kratom","96"
"1239","Nicaine","17821","lulz ","kratom","96"
"3565","amd6568","10410","DXMBunny","dxm","96"
"17821","lulz ","45509","REDSOXFAN","kratom","96"
"616","HellsEmbrace","4495","vhalin","xanax","96"
"21513","HorseBucket","28015","riaahacker","adderall","96"
"1455","Carbine","28015","riaahacker","kratom","96"
"10410","DXMBunny","116985","Chug Chug Chug","dxm","96"
"1455","Carbine","115136","trdofbeingtrd","kratom","96"
"17821","lulz ","103726","seaturtle","kratom","96"
"3413","radiometer ","17821","lulz ","kratom","96"
"616","HellsEmbrace","48762","brandon561","xanax","96"
"21513","HorseBucket","107312","FinnishPharmer","adderall","96"
"1455","Carbine","45509","REDSOXFAN","kratom","96"
"1","Alfa","616","HellsEmbrace","xanax","96"
"17821","lulz ","212335","Calyspical","kratom","96"
"616","HellsEmbrace","6201","SkUnKaDeLiC","xanax","96"
"21513","HorseBucket","35486","NeuroChi","adderall","96"
"856","str8ballin","151909","dopefromie","xanax","96"
"595","globalloon","156304","PillMan","dextromethorphan","96"
"1455","Carbine","294051","Jungledog","kratom","96"
"10410","DXMBunny","110776","PowerfulMedicine","dxm","96"
"1455","Carbine","3413","radiometer ","kratom","96"
"17821","lulz ","157358","CrispCold","kratom","96"
"9904","Benzeneringz","151909","dopefromie","xanax","96"
"616","HellsEmbrace","46446","EyesOfTheWorld","xanax","96"
"21513","HorseBucket","36571","boots12","adderall","96"
"1455","Carbine","291968","servo75","kratom","96"
"1753","kailey_elise ","21513","HorseBucket","adderall","96"
"17821","lulz ","275604","snowdrop","kratom","96"
"616","HellsEmbrace","273439","marathonmel7","xanax","96"
"151909","dopefromie","156304","PillMan","xanax","96"
"1","Alfa","1455","Carbine","kratom","96"
"1455","Carbine","35486","NeuroChi","kratom","96"
"3167","bubaloo","151909","dopefromie","xanax","96"
"10410","DXMBunny","18724","AirO","dxm","96"
"2167","hard2core","156304","PillMan","dextromethorphan","96"
"17821","lulz ","273791","Roaddoggy","kratom","96"
"56","Hollywood ","151909","dopefromie","xanax","96"
"616","HellsEmbrace","211963","WoodyCA","xanax","96"
"3780","Kradle","10410","DXMBunny","dxm","96"
"21513","HorseBucket","54993","Rise against","adderall","96"
"1455","Carbine","156304","PillMan","kratom","96"
"1455","Carbine","212335","Calyspical","kratom","96"
"17821","lulz ","234642","SuperCaesarKratomSalad","kratom","96"
"616","HellsEmbrace","35486","NeuroChi","xanax","96"
"8671","Richard_smoker","10410","DXMBunny","dxm","96"
"151909","dopefromie","211963","WoodyCA","xanax","96"
"616","HellsEmbrace","151909","dopefromie","xanax","96"
"10410","DXMBunny","75764","lololsolid","dxm","96"
"46446","EyesOfTheWorld","151909","dopefromie","xanax","96"
"17821","lulz ","273439","marathonmel7","kratom","96"
"2167","hard2core","10410","DXMBunny","dxm","96"
"616","HellsEmbrace","1714","magicmaster141","xanax","96"
"21513","HorseBucket","127455","BitterSweet","adderall","96"
"1455","Carbine","2763","bogumil","kratom","96"
"1455","Carbine","275604","snowdrop","kratom","96"
"17821","lulz ","40911","rawbeer","kratom","96"
"6201","SkUnKaDeLiC","151909","dopefromie","xanax","96"
"63028","Smirnoff","151909","dopefromie","xanax","96"
"2763","bogumil","17821","lulz ","kratom","96"
"9","Freedom of Mind","10410","DXMBunny","dxm","96"
"616","HellsEmbrace","65726","ellavader","xanax","96"
"10410","DXMBunny","161625","mrcowman","dxm","96"
"10410","DXMBunny","198587","Zeldarocks","dxm","96"
"135","sands of time","17821","lulz ","kratom","96"
"17821","lulz ","35486","NeuroChi","kratom","96"
"616","HellsEmbrace","28899","Esmerelda","xanax","96"
"2822","fastandbulbous","17821","lulz ","kratom","96"
"21513","HorseBucket","56520","Christian1122","adderall","96"
"1455","Carbine","103726","seaturtle","kratom","96"
"1808","xxgaretjaxx","151909","dopefromie","xanax","96"
"1455","Carbine","10410","DXMBunny","kratom","96"
"9","Freedom of Mind","17821","lulz ","bromazepam","96"
"17821","lulz ","102420","spicybrainsgirl","kratom","96"
"2200","par excellence.","10410","DXMBunny","dxm","96"
"3423","mopsie ","10467","WrtngCocaineTutorial","viagra","96"
"410","Sitbcknchill ","21513","HorseBucket","adderall","96"
"616","HellsEmbrace","69047","lease25","xanax","96"
"1842","nymphetamine","151909","dopefromie","xanax","96"
"10410","DXMBunny","180313","out_there","dxm","96"
"14475","upperdecker","65638","Pieces Mended","adderall","95"
"737","RARFE ","14475","upperdecker","adderall","95"
"2103","panchovilla","2763","bogumil","kratom","95"
"25867","HomerSimpson","127014","MikePatton","tramadol","95"
"6052","KomodoMK","48207","wiredchild","mdma","95"
"48207","wiredchild","59051","Priapism9","mdma","95"
"43332","enhancion01","186846","dude on acid","dxm","95"
"62342","dabears528","67133","User-126494","mdma","95"
"180313","out_there","186846","dude on acid","dxm","95"
"657","distilla_truant","186846","dude on acid","dxm","95"
"5750","pharmapsyche","14475","upperdecker","adderall","95"
"655","mc-lean","62342","dabears528","mdma","95"
"111239","whocaresdude91","116985","Chug Chug Chug","dxm","95"
"5750","pharmapsyche","62342","dabears528","mdma","95"
"1806","betty_bupe","48207","wiredchild","mdma","95"
"2418","Phungushead","25867","HomerSimpson","tramadol","95"
"60","Sick Jack","48207","wiredchild","mdma","95"
"17829","LookingForHer","186846","dude on acid","dxm","95"
"2709","risexagainst","62342","dabears528","mdma","95"
"2103","panchovilla","117995","dreamy","kratom","95"
"1562","soer","48207","wiredchild","mdma","95"
"55332","LowCrawl To Freedom","62342","dabears528","mdma","95"
"48207","wiredchild","72408","Mr Fish","mdma","95"
"46865","dyingtomorrow","62342","dabears528","mdma","95"
"14475","upperdecker","45728","Gappa","adderall","95"
"770","rolexparts","25867","HomerSimpson","tramadol","95"
"56","Hollywood ","48207","wiredchild","mdma","95"
"2103","panchovilla","103726","seaturtle","kratom","95"
"11876","Paracelsus ","186846","dude on acid","dxm","95"
"44584","Rightnow289","186846","dude on acid","dxm","95"
"7303","pankreeas ","62342","dabears528","mdma","95"
"7946","788.4","62342","dabears528","mdma","95"
"25867","HomerSimpson","28015","riaahacker","tramadol","95"
"48207","wiredchild","127014","MikePatton","mdma","95"
"62342","dabears528","119102","roastlamb123","mdma","95"
"1023","btoddw2","14475","upperdecker","adderall","95"
"35486","NeuroChi","48207","wiredchild","mdma","95"
"111239","whocaresdude91","161625","mrcowman","dxm","95"
"32247","Lettish","48207","wiredchild","mdma","95"
"57101","Terrapinzflyer ","62342","dabears528","mdma","95"
"2103","panchovilla","74033","TheSweetPea","kratom","95"
"56","Hollywood ","14475","upperdecker","adderall","95"
"9858","jesusfreak666er","186846","dude on acid","dxm","95"
"1411","umich","62342","dabears528","mdma","95"
"1455","Carbine","2103","panchovilla","kratom","95"
"48207","wiredchild","105372","frost458","mdma","95"
"1239","Nicaine","2103","panchovilla","kratom","95"
"14475","upperdecker","46865","dyingtomorrow","adderall","95"
"3565","amd6568","111239","whocaresdude91","dxm","95"
"41207","NeuroMD","48207","wiredchild","mdma","95"
"2103","panchovilla","157358","CrispCold","kratom","95"
"9351","M3th","48207","wiredchild","mdma","95"
"25867","HomerSimpson","35486","NeuroChi","tramadol","95"
"98407","phenythylamine","186846","dude on acid","dxm","95"
"48207","wiredchild","63028","Smirnoff","mdma","95"
"62342","dabears528","83387","PrincessJo x","mdma","95"
"161625","mrcowman","186846","dude on acid","dxm","95"
"1595","Curtains","62342","dabears528","mdma","95"
"111239","whocaresdude91","202594","headfull0fstars","dxm","95"
"3345","Unsolved","48207","wiredchild","mdma","95"
"2103","panchovilla","234642","SuperCaesarKratomSalad","kratom","95"
"5866","RealGanjaMan ","186846","dude on acid","dxm","95"
"3732","Diphenhydramine","48207","wiredchild","mdma","95"
"1915","curve","48207","wiredchild","mdma","95"
"48207","wiredchild","67133","User-126494","mdma","95"
"46889","port 21","186846","dude on acid","dxm","95"
"14475","upperdecker","202594","headfull0fstars","adderall","95"
"313","RoboCop ","186846","dude on acid","dxm","95"
"21315","Graduisic","186846","dude on acid","dxm","95"
"5733","Jatelka ","62342","dabears528","mdma","95"
"2103","panchovilla","13344","drewcil","kratom","95"
"54214","Zoidberg","62342","dabears528","mdma","95"
"186846","dude on acid","202594","headfull0fstars","dxm","95"
"75764","lololsolid","111239","whocaresdude91","dxm","95"
"25867","HomerSimpson","148228","livespd","tramadol","95"
"62342","dabears528","124017","LoveNwar","mdma","95"
"10467","WrtngCocaineTutorial","48207","wiredchild","mdma","95"
"4910","Fantasian","62342","dabears528","mdma","95"
"2281","billyloner ","48207","wiredchild","mdma","95"
"1832","opiumjade7","48207","wiredchild","mdma","95"
"156304","PillMan","186846","dude on acid","dxm","95"
"6294","astenu","48207","wiredchild","mdma","95"
"2103","panchovilla","40911","rawbeer","kratom","95"
"1842","nymphetamine","48207","wiredchild","mdma","95"
"11835","El Calico Loco","186846","dude on acid","dxm","95"
"4495","vhalin","48207","wiredchild","mdma","95"
"1753","kailey_elise ","14475","upperdecker","adderall","95"
"48207","wiredchild","57031","rhcpeppers1234","mdma","95"
"539","stndguy","62342","dabears528","mdma","95"
"45618","cannabis-sam","62342","dabears528","mdma","95"
"11411","supremedan","48207","wiredchild","mdma","95"
"14475","upperdecker","63028","Smirnoff","adderall","95"
"1935","duchy ","62342","dabears528","mdma","95"
"2418","Phungushead","48207","wiredchild","mdma","95"
"2271","polloloco001 ","48207","wiredchild","mdma","95"
"2103","panchovilla","273791","Roaddoggy","kratom","95"
"127711","Zhekarius","186846","dude on acid","dxm","95"
"25867","HomerSimpson","201049","ak2Ut","tramadol","95"
"62342","dabears528","180313","out_there","mdma","95"
"14475","upperdecker","21513","HorseBucket","adderall","95"
"297","UglyInfidel","62342","dabears528","mdma","95"
"54108","Alexander_Praves","62342","dabears528","mdma","95"
"45583","Synesthesiac","48207","wiredchild","mdma","95"
"2103","panchovilla","102420","spicybrainsgirl","kratom","95"
"3780","Kradle","111239","whocaresdude91","dxm","95"
"2610","brainwaxd","48207","wiredchild","mdma","95"
"4490","DJ-666","62342","dabears528","mdma","95"
"110776","PowerfulMedicine","111239","whocaresdude91","dxm","95"
"1","Alfa","62342","dabears528","mdma","95"
"48207","wiredchild","79297","bostonnew","mdma","95"
"14475","upperdecker","28015","riaahacker","adderall","95"
"35993","Greenport","48207","wiredchild","mdma","95"
"2103","panchovilla","273439","marathonmel7","kratom","95"
"8671","Richard_smoker","111239","whocaresdude91","dxm","95"
"25867","HomerSimpson","41143","RoboCodeine7610","tramadol","95"
"1868","Paderas","62342","dabears528","mdma","95"
"62342","dabears528","63028","Smirnoff","mdma","95"
"15832","JapanHorrorUncut","48207","wiredchild","mdma","95"
"45258","motter28218","111239","whocaresdude91","dxm","95"
"14475","upperdecker","107312","FinnishPharmer","adderall","95"
"2167","hard2core","111239","whocaresdude91","dxm","95"
"18724","AirO","186846","dude on acid","dxm","95"
"2103","panchovilla","91040","Dankfish","kratom","95"
"48207","wiredchild","96636","Mersann","mdma","95"
"14475","upperdecker","35486","NeuroChi","adderall","95"
"2418","Phungushead","186846","dude on acid","dxm","95"
"2103","panchovilla","35486","NeuroChi","kratom","95"
"4495","vhalin","25867","HomerSimpson","tramadol","95"
"9","Freedom of Mind","111239","whocaresdude91","dxm","95"
"2103","panchovilla","207089","stressedgirl","kratom","95"
"28015","riaahacker","186846","dude on acid","dxm","95"
"10410","DXMBunny","111239","whocaresdude91","dxm","95"
"135","sands of time","2103","panchovilla","kratom","95"
"19028","RochiWizz","62342","dabears528","mdma","95"
"14475","upperdecker","36571","boots12","adderall","95"
"2103","panchovilla","275468","Openmymind","kratom","95"
"4218","TheLight01","48207","wiredchild","mdma","95"
"9654","gib","62342","dabears528","mdma","95"
"37112","ihavequestions","48207","wiredchild","mdma","95"
"25867","HomerSimpson","180313","out_there","tramadol","95"
"15564","Le Junk","62342","dabears528","mdma","95"
"48207","wiredchild","124017","LoveNwar","mdma","95"
"62","BA","62342","dabears528","mdma","95"
"62342","dabears528","72408","Mr Fish","mdma","95"
"2200","par excellence.","111239","whocaresdude91","dxm","95"
"111239","whocaresdude91","186846","dude on acid","dxm","95"
"410","Sitbcknchill ","14475","upperdecker","adderall","95"
"2103","panchovilla","291968","servo75","kratom","95"
"6482","psychedelaholic","62342","dabears528","mdma","95"
"14475","upperdecker","54993","Rise against","adderall","95"
"2577","Stingray_313 ","62342","dabears528","mdma","95"
"2103","panchovilla","155253","MachoManSavage","kratom","95"
"75","Leo.","62342","dabears528","mdma","95"
"422","1933","62342","dabears528","mdma","95"
"25867","HomerSimpson","45618","cannabis-sam","tramadol","95"
"788","mdve2","62342","dabears528","mdma","95"
"2239","skilld","62342","dabears528","mdma","95"
"48207","wiredchild","180313","out_there","mdma","95"
"62342","dabears528","105372","frost458","mdma","95"
"655","mc-lean","48207","wiredchild","mdma","95"
"111239","whocaresdude91","127711","Zhekarius","dxm","95"
"5750","pharmapsyche","48207","wiredchild","mdma","95"
"1239","Nicaine","50325","Dellzz","gabapentin","95"
"2709","risexagainst","48207","wiredchild","mdma","95"
"2103","panchovilla","212335","Calyspical","kratom","95"
"1964","enquirewithin ","2103","panchovilla","kratom","95"
"48207","wiredchild","62342","dabears528","mdma","95"
"46865","dyingtomorrow","48207","wiredchild","mdma","95"
"14475","upperdecker","127455","BitterSweet","adderall","95"
"2103","panchovilla","20234","ianzombie ","kratom","95"
"7303","pankreeas ","48207","wiredchild","mdma","95"
"25867","HomerSimpson","63028","Smirnoff","tramadol","95"
"6052","KomodoMK","62342","dabears528","mdma","95"
"48207","wiredchild","54108","Alexander_Praves","mdma","95"
"43332","enhancion01","111239","whocaresdude91","dxm","95"
"62342","dabears528","129304","Dankitydankness","mdma","95"
"657","distilla_truant","111239","whocaresdude91","dxm","95"
"111239","whocaresdude91","156304","PillMan","dxm","95"
"1806","betty_bupe","62342","dabears528","mdma","95"
"60","Sick Jack","62342","dabears528","mdma","95"
"17829","LookingForHer","111239","whocaresdude91","dxm","95"
"2103","panchovilla","275604","snowdrop","kratom","95"
"7946","788.4","48207","wiredchild","mdma","95"
"57031","rhcpeppers1234","62342","dabears528","mdma","95"
"1411","umich","48207","wiredchild","mdma","95"
"48207","wiredchild","74627","SwiftyyFlintt","mdma","95"
"14475","upperdecker","56520","Christian1122","adderall","95"
"1521","Smarthead","2103","panchovilla","kratom","95"
"3565","amd6568","186846","dude on acid","dxm","95"
"56","Hollywood ","62342","dabears528","mdma","95"
"2103","panchovilla","118772","Mr_Spiffy","kratom","95"
"11876","Paracelsus ","111239","whocaresdude91","dxm","95"
"44584","Rightnow289","111239","whocaresdude91","dxm","95"
"9","Freedom of Mind","14475","upperdecker","adderall","95"
"25867","HomerSimpson","38632","PilL FreaK","tramadol","95"
"1562","soer","62342","dabears528","mdma","95"
"48207","wiredchild","57101","Terrapinzflyer ","mdma","95"
"62342","dabears528","79297","bostonnew","mdma","95"
"1595","Curtains","48207","wiredchild","mdma","95"
"35486","NeuroChi","62342","dabears528","mdma","95"
"111239","whocaresdude91","180313","out_there","dxm","95"
"4495","vhalin","14475","upperdecker","adderall","95"
"32247","Lettish","62342","dabears528","mdma","95"
"10663","fizzle","14475","upperdecker","adderall","95"
"59051","Priapism9","62342","dabears528","mdma","95"
"2103","panchovilla","10410","DXMBunny","kratom","95"
"56","Hollywood ","25867","HomerSimpson","tramadol","95"
"9858","jesusfreak666er","111239","whocaresdude91","dxm","95"
"48207","wiredchild","55332","LowCrawl To Freedom","mdma","95"
"14475","upperdecker","45618","cannabis-sam","adderall","95"
"1842","nymphetamine","25867","HomerSimpson","tramadol","95"
"5733","Jatelka ","48207","wiredchild","mdma","95"
"41207","NeuroMD","62342","dabears528","mdma","95"
"2103","panchovilla","127014","MikePatton","kratom","95"
"9351","M3th","62342","dabears528","mdma","95"
"186846","dude on acid","198587","Zeldarocks","dxm","95"
"75764","lololsolid","186846","dude on acid","dxm","95"
"98407","phenythylamine","111239","whocaresdude91","dxm","95"
"25867","HomerSimpson","48119","Jasim ","tramadol","95"
"62342","dabears528","96636","Mersann","mdma","95"
"4910","Fantasian","48207","wiredchild","mdma","95"
"3345","Unsolved","62342","dabears528","mdma","95"
"2103","panchovilla","90006","Ghetto_Chem","kratom","95"
"1842","nymphetamine","14475","upperdecker","adderall","95"
"5866","RealGanjaMan ","111239","whocaresdude91","dxm","95"
"3732","Diphenhydramine","62342","dabears528","mdma","95"
"1915","curve","62342","dabears528","mdma","95"
"48207","wiredchild","129304","Dankitydankness","mdma","95"
"539","stndguy","48207","wiredchild","mdma","95"
"45618","cannabis-sam","48207","wiredchild","mdma","95"
"46889","port 21","111239","whocaresdude91","dxm","95"
"14475","upperdecker","127014","MikePatton","adderall","95"
"1935","duchy ","48207","wiredchild","mdma","95"
"313","RoboCop ","111239","whocaresdude91","dxm","95"
"21315","Graduisic","111239","whocaresdude91","dxm","95"
"2103","panchovilla","4495","vhalin","kratom","95"
"1","Alfa","2103","panchovilla","kratom","95"
"25867","HomerSimpson","111239","whocaresdude91","tramadol","95"
"62342","dabears528","90006","Ghetto_Chem","mdma","95"
"10467","WrtngCocaineTutorial","62342","dabears528","mdma","95"
"2281","billyloner ","62342","dabears528","mdma","95"
"1832","opiumjade7","62342","dabears528","mdma","95"
"297","UglyInfidel","48207","wiredchild","mdma","95"
"6294","astenu","62342","dabears528","mdma","95"
"2103","panchovilla","46865","dyingtomorrow","kratom","95"
"3780","Kradle","186846","dude on acid","dxm","95"
"1842","nymphetamine","62342","dabears528","mdma","95"
"11835","El Calico Loco","111239","whocaresdude91","dxm","95"
"9904","Benzeneringz","25867","HomerSimpson","tramadol","95"
"4490","DJ-666","48207","wiredchild","mdma","95"
"4495","vhalin","62342","dabears528","mdma","95"
"9","Freedom of Mind","25867","HomerSimpson","tramadol","95"
"110776","PowerfulMedicine","186846","dude on acid","dxm","95"
"1","Alfa","48207","wiredchild","mdma","95"
"48207","wiredchild","119102","roastlamb123","mdma","95"
"11411","supremedan","62342","dabears528","mdma","95"
"14475","upperdecker","115136","trdofbeingtrd","adderall","95"
"2418","Phungushead","62342","dabears528","mdma","95"
"2271","polloloco001 ","62342","dabears528","mdma","95"
"1868","Paderas","14475","upperdecker","adderall","95"
"2103","panchovilla","28015","riaahacker","kratom","95"
"8671","Richard_smoker","186846","dude on acid","dxm","95"
"25867","HomerSimpson","96636","Mersann","tramadol","95"
"1868","Paderas","48207","wiredchild","mdma","95"
"62342","dabears528","127014","MikePatton","mdma","95"
"45258","motter28218","186846","dude on acid","dxm","95"
"14475","upperdecker","122777","addersloth","adderall","95"
"2167","hard2core","186846","dude on acid","dxm","95"
"45583","Synesthesiac","62342","dabears528","mdma","95"
"2103","panchovilla","115136","trdofbeingtrd","kratom","95"
"2610","brainwaxd","62342","dabears528","mdma","95"
"48207","wiredchild","83387","PrincessJo x","mdma","95"
"14475","upperdecker","71487","robotripper","adderall","95"
"35993","Greenport","62342","dabears528","mdma","95"
"2103","panchovilla","294051","Jungledog","kratom","95"
"116985","Chug Chug Chug","186846","dude on acid","dxm","95"
"9","Freedom of Mind","186846","dude on acid","dxm","95"
"9858","jesusfreak666er","14475","upperdecker","adderall","95"
"2103","panchovilla","17821","lulz ","kratom","95"
"10410","DXMBunny","186846","dude on acid","dxm","95"
"15832","JapanHorrorUncut","62342","dabears528","mdma","95"
"19028","RochiWizz","48207","wiredchild","mdma","95"
"14475","upperdecker","59051","Priapism9","adderall","95"
"18724","AirO","111239","whocaresdude91","dxm","95"
"2103","panchovilla","3413","radiometer ","kratom","95"
"9654","gib","48207","wiredchild","mdma","95"
"1","Alfa","14475","upperdecker","adderall","95"
"25867","HomerSimpson","256377","detoxin momma","tramadol","95"
"15564","Le Junk","48207","wiredchild","mdma","95"
"1842","nymphetamine","2103","panchovilla","kratom","95"
"48207","wiredchild","54214","Zoidberg","mdma","95"
"62","BA","48207","wiredchild","mdma","95"
"2418","Phungushead","111239","whocaresdude91","dxm","95"
"2200","par excellence.","186846","dude on acid","dxm","95"
"2103","panchovilla","2418","Phungushead","kratom","95"
"11876","Paracelsus ","25867","HomerSimpson","tramadol","95"
"2103","panchovilla","45509","REDSOXFAN","kratom","95"
"28015","riaahacker","111239","whocaresdude91","dxm","95"
"6482","psychedelaholic","48207","wiredchild","mdma","95"
"14475","upperdecker","46446","EyesOfTheWorld","adderall","95"
"2577","Stingray_313 ","48207","wiredchild","mdma","95"
"2103","panchovilla","156304","PillMan","kratom","95"
"1","Alfa","25867","HomerSimpson","tramadol","95"
"75","Leo.","48207","wiredchild","mdma","95"
"4218","TheLight01","62342","dabears528","mdma","95"
"422","1933","48207","wiredchild","mdma","95"
"37112","ihavequestions","62342","dabears528","mdma","95"
"9","Freedom of Mind","50325","Dellzz","gabapentin","95"
"25867","HomerSimpson","156304","PillMan","tramadol","95"
"788","mdve2","48207","wiredchild","mdma","95"
"2239","skilld","48207","wiredchild","mdma","95"
"48207","wiredchild","90006","Ghetto_Chem","mdma","95"
"62342","dabears528","74627","SwiftyyFlintt","mdma","95"
"111239","whocaresdude91","198587","Zeldarocks","dxm","95"
"2103","panchovilla","2822","fastandbulbous","kratom","95"
"1964","enquirewithin ","111060","FenixDelta753","kratom","94"
"86","allen","1329","khonsu13","morphine","94"
"4910","Fantasian","46446","EyesOfTheWorld","morphine","94"
"91040","Dankfish","111060","FenixDelta753","kratom","94"
"2679","mariecurie","3732","Diphenhydramine","shroom","94"
"35486","NeuroChi","49209","Dreamland","adderall","94"
"1868","Paderas","46446","EyesOfTheWorld","morphine","94"
"1112","hh339 ","1842","nymphetamine","methylphenidate","94"
"3299","anabolictrio","115136","trdofbeingtrd","hydrocodone","94"
"86","allen","57031","rhcpeppers1234","mdma","94"
"56","Hollywood ","86","allen","morphine","94"
"1842","nymphetamine","46446","EyesOfTheWorld","morphine","94"
"65748","Phenoxide","72408","Mr Fish","mephedrone","94"
"86","allen","102420","spicybrainsgirl","morphine","94"
"62077","WTF O_o","65748","Phenoxide","mephedrone","94"
"86","allen","54108","Alexander_Praves","mdma","94"
"7946","788.4","46446","EyesOfTheWorld","morphine","94"
"46446","EyesOfTheWorld","180313","out_there","morphine","94"
"86","allen","5750","pharmapsyche","mdma","94"
"9","Freedom of Mind","86","allen","morphine","94"
"111060","FenixDelta753","118772","Mr_Spiffy","kratom","94"
"86","allen","1411","umich","mdma","94"
"86","allen","1842","nymphetamine","morphine","94"
"9654","gib","10467","WrtngCocaineTutorial","viagra","94"
"1521","Smarthead","111060","FenixDelta753","kratom","94"
"350","Bojangles","401","peggs16","klonopin","94"
"63391","Tamis","65748","Phenoxide","mephedrone","94"
"86","allen","119102","roastlamb123","mdma","94"
"9","Freedom of Mind","49209","Dreamland","adderall","94"
"65748","Phenoxide","70276","tripolar","mephedrone","94"
"28015","riaahacker","115136","trdofbeingtrd","hydrocodone","94"
"49209","Dreamland","122777","addersloth","adderall","94"
"86","allen","7946","788.4","morphine","94"
"86","allen","127014","MikePatton","mdma","94"
"46446","EyesOfTheWorld","63028","Smirnoff","morphine","94"
"4495","vhalin","49209","Dreamland","adderall","94"
"86","allen","19028","RochiWizz","mdma","94"
"10663","fizzle","49209","Dreamland","adderall","94"
"111060","FenixDelta753","127014","MikePatton","kratom","94"
"86","allen","655","mc-lean","mdma","94"
"86","allen","35486","NeuroChi","morphine","94"
"539","stndguy","2679","mariecurie","shroom","94"
"350","Bojangles","2539","Beltane","klonopin","94"
"86","allen","11411","supremedan","mdma","94"
"35486","NeuroChi","115136","trdofbeingtrd","hydrocodone","94"
"74033","TheSweetPea","111060","FenixDelta753","kratom","94"
"65748","Phenoxide","124017","LoveNwar","mephedrone","94"
"49209","Dreamland","59051","Priapism9","adderall","94"
"86","allen","18769","samuraigecko","morphine","94"
"86","allen","4910","Fantasian","mdma","94"
"3413","radiometer ","111060","FenixDelta753","kratom","94"
"86","allen","90006","Ghetto_Chem","mdma","94"
"111060","FenixDelta753","273439","marathonmel7","kratom","94"
"1842","nymphetamine","49209","Dreamland","adderall","94"
"86","allen","67133","User-126494","mdma","94"
"1526","Cuberun ","65748","Phenoxide","mephedrone","94"
"350","Bojangles","28015","riaahacker","klonopin","94"
"86","allen","2239","skilld","mdma","94"
"16345","IkBenDeMan","115136","trdofbeingtrd","hydrocodone","94"
"1","Alfa","111060","FenixDelta753","kratom","94"
"3299","anabolictrio","46446","EyesOfTheWorld","morphine","94"
"49209","Dreamland","65638","Pieces Mended","adderall","94"
"1842","nymphetamine","65748","Phenoxide","mephedrone","94"
"86","allen","28899","Esmerelda","morphine","94"
"28015","riaahacker","111060","FenixDelta753","kratom","94"
"86","allen","539","stndguy","mdma","94"
"2679","mariecurie","14069","Drugaddict","shroom","94"
"86","allen","2709","risexagainst","mdma","94"
"7303","pankreeas ","46446","EyesOfTheWorld","morphine","94"
"86","allen","297","UglyInfidel","mdma","94"
"50050","Gradient","65748","Phenoxide","mephedrone","94"
"57101","Terrapinzflyer ","65748","Phenoxide","mephedrone","94"
"1","Alfa","86","allen","mdma","94"
"1","Alfa","86","allen","morphine","94"
"2066","~lostgurl~ ","2679","mariecurie","shroom","94"
"1868","Paderas","49209","Dreamland","adderall","94"
"86","allen","79297","bostonnew","mdma","94"
"1","Alfa","350","Bojangles","klonopin","94"
"111060","FenixDelta753","291968","servo75","kratom","94"
"49209","Dreamland","56520","Christian1122","adderall","94"
"86","allen","118772","Mr_Spiffy","morphine","94"
"86","allen","1868","Paderas","mdma","94"
"62508","Makesmefeelbig","65748","Phenoxide","mephedrone","94"
"2679","mariecurie","10467","WrtngCocaineTutorial","shroom","94"
"86","allen","4218","TheLight01","mdma","94"
"45509","REDSOXFAN","111060","FenixDelta753","kratom","94"
"1112","hh339 ","55332","LowCrawl To Freedom","methylphenidate","94"
"86","allen","129304","Dankitydankness","mdma","94"
"35486","NeuroChi","111060","FenixDelta753","kratom","94"
"1","Alfa","1112","hh339 ","methylphenidate","94"
"115136","trdofbeingtrd","191210","PainCA","hydrocodone","94"
"86","allen","80015","southern girl","morphine","94"
"86","allen","10467","WrtngCocaineTutorial","mdma","94"
"86","allen","6482","psychedelaholic","mdma","94"
"9858","jesusfreak666er","49209","Dreamland","adderall","94"
"2103","panchovilla","111060","FenixDelta753","kratom","94"
"111060","FenixDelta753","117995","dreamy","kratom","94"
"86","allen","48207","wiredchild","mdma","94"
"49209","Dreamland","127014","MikePatton","adderall","94"
"86","allen","45599","On The Nod","morphine","94"
"1562","soer","2679","mariecurie","shroom","94"
"86","allen","1562","soer","mdma","94"
"1868","Paderas","65748","Phenoxide","mephedrone","94"
"2679","mariecurie","45618","cannabis-sam","shroom","94"
"1112","hh339 ","41143","RoboCodeine7610","methylphenidate","94"
"1806","betty_bupe","2679","mariecurie","shroom","94"
"86","allen","1935","duchy ","mdma","94"
"1","Alfa","49209","Dreamland","adderall","94"
"1842","nymphetamine","111060","FenixDelta753","kratom","94"
"115136","trdofbeingtrd","198055","yem69420","hydrocodone","94"
"62","BA","86","allen","mdma","94"
"86","allen","42579","cabal","morphine","94"
"86","allen","6052","KomodoMK","mdma","94"
"2763","bogumil","111060","FenixDelta753","kratom","94"
"46446","EyesOfTheWorld","80015","southern girl","morphine","94"
"86","allen","2281","billyloner ","mdma","94"
"1808","xxgaretjaxx","2679","mariecurie","shroom","94"
"111060","FenixDelta753","234642","SuperCaesarKratomSalad","kratom","94"
"86","allen","72408","Mr Fish","mdma","94"
"49209","Dreamland","115136","trdofbeingtrd","adderall","94"
"11411","supremedan","65748","Phenoxide","mephedrone","94"
"86","allen","4495","vhalin","morphine","94"
"86","allen","1842","nymphetamine","mdma","94"
"2679","mariecurie","127014","MikePatton","shroom","94"
"75","Leo.","86","allen","mdma","94"
"2822","fastandbulbous","111060","FenixDelta753","kratom","94"
"1112","hh339 ","11411","supremedan","methylphenidate","94"
"86","allen","9351","M3th","mdma","94"
"15","Sammi","2679","mariecurie","shroom","94"
"115136","trdofbeingtrd","118772","Mr_Spiffy","hydrocodone","94"
"86","allen","11411","supremedan","morphine","94"
"1595","Curtains","2679","mariecurie","shroom","94"
"86","allen","59051","Priapism9","mdma","94"
"46446","EyesOfTheWorld","156304","PillMan","morphine","94"
"86","allen","96636","Mersann","mdma","94"
"45618","cannabis-sam","115136","trdofbeingtrd","hydrocodone","94"
"111060","FenixDelta753","275468","Openmymind","kratom","94"
"86","allen","37112","ihavequestions","mdma","94"
"65748","Phenoxide","66561","Curiouscat22","mephedrone","94"
"86","allen","1868","Paderas","morphine","94"
"45583","Synesthesiac","65748","Phenoxide","mephedrone","94"
"1","Alfa","2679","mariecurie","shroom","94"
"86","allen","2418","Phungushead","mdma","94"
"737","RARFE ","49209","Dreamland","adderall","94"
"2679","mariecurie","63028","Smirnoff","shroom","94"
"1112","hh339 ","46865","dyingtomorrow","methylphenidate","94"
"86","allen","4490","DJ-666","mdma","94"
"56","Hollywood ","46446","EyesOfTheWorld","morphine","94"
"115136","trdofbeingtrd","156304","PillMan","hydrocodone","94"
"86","allen","179359","uberhigh","morphine","94"
"53567","buzzman","65748","Phenoxide","mephedrone","94"
"4495","vhalin","65748","Phenoxide","mephedrone","94"
"930","searcher","2679","mariecurie","shroom","94"
"5750","pharmapsyche","49209","Dreamland","adderall","94"
"86","allen","1595","Curtains","mdma","94"
"5750","pharmapsyche","9654","gib","viagra","94"
"46446","EyesOfTheWorld","102420","spicybrainsgirl","morphine","94"
"86","allen","124017","LoveNwar","mdma","94"
"60","Sick Jack","86","allen","mdma","94"
"9","Freedom of Mind","46446","EyesOfTheWorld","morphine","94"
"57308","BoyInTheCountry","65748","Phenoxide","mephedrone","94"
"111060","FenixDelta753","155253","MachoManSavage","kratom","94"
"86","allen","6294","astenu","mdma","94"
"86","allen","28015","riaahacker","morphine","94"
"1842","nymphetamine","2679","mariecurie","shroom","94"
"2679","mariecurie","35486","NeuroChi","shroom","94"
"20234","ianzombie ","111060","FenixDelta753","kratom","94"
"56","Hollywood ","86","allen","mdma","94"
"1112","hh339 ","2418","Phungushead","methylphenidate","94"
"86","allen","2577","Stingray_313 ","mdma","94"
"45728","Gappa","49209","Dreamland","adderall","94"
"2822","fastandbulbous","65748","Phenoxide","mephedrone","94"
"65748","Phenoxide","68044","fanyovsky","mephedrone","94"
"28899","Esmerelda","46446","EyesOfTheWorld","morphine","94"
"86","allen","19028","RochiWizz","morphine","94"
"1023","btoddw2","49209","Dreamland","adderall","94"
"86","allen","7303","pankreeas ","mdma","94"
"46446","EyesOfTheWorld","118772","Mr_Spiffy","morphine","94"
"86","allen","15832","JapanHorrorUncut","mdma","94"
"111060","FenixDelta753","157358","CrispCold","kratom","94"
"86","allen","105372","frost458","mdma","94"
"18769","samuraigecko","46446","EyesOfTheWorld","morphine","94"
"56","Hollywood ","49209","Dreamland","adderall","94"
"86","allen","46865","dyingtomorrow","morphine","94"
"1455","Carbine","111060","FenixDelta753","kratom","94"
"9","Freedom of Mind","115136","trdofbeingtrd","hydrocodone","94"
"1239","Nicaine","111060","FenixDelta753","kratom","94"
"9654","gib","127014","MikePatton","viagra","94"
"3471","Potassium Kid","65748","Phenoxide","mephedrone","94"
"17821","lulz ","111060","FenixDelta753","kratom","94"
"28015","riaahacker","65748","Phenoxide","mephedrone","94"
"350","Bojangles","156304","PillMan","klonopin","94"
"86","allen","2271","polloloco001 ","mdma","94"
"65748","Phenoxide","74620","methuselah969","mephedrone","94"
"49209","Dreamland","107312","FinnishPharmer","adderall","94"
"4495","vhalin","115136","trdofbeingtrd","hydrocodone","94"
"86","allen","4910","Fantasian","morphine","94"
"55332","LowCrawl To Freedom","65748","Phenoxide","mephedrone","94"
"8016","chillinwill","65748","Phenoxide","mephedrone","94"
"13344","drewcil","111060","FenixDelta753","kratom","94"
"86","allen","4495","vhalin","mdma","94"
"5750","pharmapsyche","65748","Phenoxide","mephedrone","94"
"46446","EyesOfTheWorld","46865","dyingtomorrow","morphine","94"
"86","allen","7946","788.4","mdma","94"
"111060","FenixDelta753","273791","Roaddoggy","kratom","94"
"21513","HorseBucket","49209","Dreamland","adderall","94"
"86","allen","55332","LowCrawl To Freedom","mdma","94"
"86","allen","2418","Phungushead","morphine","94"
"102420","spicybrainsgirl","111060","FenixDelta753","kratom","94"
"19028","RochiWizz","46446","EyesOfTheWorld","morphine","94"
"350","Bojangles","1714","magicmaster141","klonopin","94"
"86","allen","32247","Lettish","mdma","94"
"1868","Paderas","2679","mariecurie","shroom","94"
"65748","Phenoxide","96636","Mersann","mephedrone","94"
"49209","Dreamland","54993","Rise against","adderall","94"
"86","allen","5010","snapper ","morphine","94"
"86","allen","57101","Terrapinzflyer ","mdma","94"
"2679","mariecurie","72408","Mr Fish","shroom","94"
"86","allen","15564","Le Junk","mdma","94"
"4092","trptamene ","65748","Phenoxide","mephedrone","94"
"111060","FenixDelta753","294051","Jungledog","kratom","94"
"86","allen","1832","opiumjade7","mdma","94"
"1","Alfa","46446","EyesOfTheWorld","morphine","94"
"1753","kailey_elise ","49209","Dreamland","adderall","94"
"28015","riaahacker","49209","Dreamland","adderall","94"
"4495","vhalin","111060","FenixDelta753","kratom","94"
"86","allen","46865","dyingtomorrow","mdma","94"
"111060","FenixDelta753","207089","stressedgirl","kratom","94"
"49209","Dreamland","127455","BitterSweet","adderall","94"
"86","allen","180313","out_there","morphine","94"
"86","allen","63028","Smirnoff","mdma","94"
"14475","upperdecker","49209","Dreamland","adderall","94"
"2679","mariecurie","38813","waffles","shroom","94"
"4495","vhalin","46446","EyesOfTheWorld","morphine","94"
"46446","EyesOfTheWorld","49209","Dreamland","adderall","94"
"46865","dyingtomorrow","49209","Dreamland","adderall","94"
"86","allen","788","mdve2","mdma","94"
"45618","cannabis-sam","49209","Dreamland","adderall","94"
"2418","Phungushead","46446","EyesOfTheWorld","morphine","94"
"153","blaze","65748","Phenoxide","mephedrone","94"
"1112","hh339 ","21513","HorseBucket","methylphenidate","94"
"86","allen","41207","NeuroMD","mdma","94"
"2610","brainwaxd","2679","mariecurie","shroom","94"
"86","allen","46446","EyesOfTheWorld","morphine","94"
"45599","On The Nod","46446","EyesOfTheWorld","morphine","94"
"86","allen","1915","curve","mdma","94"
"111060","FenixDelta753","212335","Calyspical","kratom","94"
"49209","Dreamland","202594","headfull0fstars","adderall","94"
"86","allen","3299","anabolictrio","morphine","94"
"86","allen","3732","Diphenhydramine","mdma","94"
"2679","mariecurie","4969","kaide","shroom","94"
"40911","rawbeer","111060","FenixDelta753","kratom","94"
"86","allen","180313","out_there","mdma","94"
"90006","Ghetto_Chem","111060","FenixDelta753","kratom","94"
"1112","hh339 ","68194","baZING","methylphenidate","94"
"36571","boots12","49209","Dreamland","adderall","94"
"86","allen","5733","Jatelka ","mdma","94"
"115136","trdofbeingtrd","134323","Roll1N","hydrocodone","94"
"11411","supremedan","46446","EyesOfTheWorld","morphine","94"
"86","allen","54214","Zoidberg","morphine","94"
"86","allen","45618","cannabis-sam","mdma","94"
"86","allen","83387","PrincessJo x","mdma","94"
"111060","FenixDelta753","275604","snowdrop","kratom","94"
"86","allen","62342","dabears528","mdma","94"
"49209","Dreamland","63028","Smirnoff","adderall","94"
"135","sands of time","111060","FenixDelta753","kratom","94"
"86","allen","7303","pankreeas ","morphine","94"
"35486","NeuroChi","46446","EyesOfTheWorld","morphine","94"
"86","allen","2610","brainwaxd","mdma","94"
"1329","khonsu13","46446","EyesOfTheWorld","morphine","94"
"2679","mariecurie","54108","Alexander_Praves","shroom","94"
"20109","imyourlittlebare","65748","Phenoxide","mephedrone","94"
"1842","nymphetamine","115136","trdofbeingtrd","hydrocodone","94"
"10410","DXMBunny","111060","FenixDelta753","kratom","94"
"1112","hh339 ","57031","rhcpeppers1234","methylphenidate","94"
"86","allen","35993","Greenport","mdma","94"
"16345","IkBenDeMan","46446","EyesOfTheWorld","morphine","94"
"115136","trdofbeingtrd","180932","gal68","hydrocodone","94"
"86","allen","16345","IkBenDeMan","morphine","94"
"1","Alfa","65748","Phenoxide","mephedrone","94"
"103726","seaturtle","111060","FenixDelta753","kratom","94"
"86","allen","1806","betty_bupe","mdma","94"
"46446","EyesOfTheWorld","54214","Zoidberg","morphine","94"
"3423","mopsie ","9654","gib","viagra","94"
"410","Sitbcknchill ","49209","Dreamland","adderall","94"
"86","allen","45583","Synesthesiac","mdma","94"
"2418","Phungushead","111060","FenixDelta753","kratom","94"
"56","Hollywood ","115136","trdofbeingtrd","hydrocodone","94"
"111060","FenixDelta753","115136","trdofbeingtrd","kratom","94"
"86","allen","9654","gib","mdma","94"
"49209","Dreamland","71487","robotripper","adderall","94"
"86","allen","63028","Smirnoff","morphine","94"
"86","allen","35486","NeuroChi","mdma","94"
"1935","duchy ","9654","gib","viagra","94"
"2679","mariecurie","4495","vhalin","shroom","94"
"46865","dyingtomorrow","111060","FenixDelta753","kratom","94"
"1964","enquirewithin ","65748","Phenoxide","mephedrone","94"
"1112","hh339 ","19028","RochiWizz","methylphenidate","94"
"86","allen","422","1933","mdma","94"
"5010","snapper ","46446","EyesOfTheWorld","morphine","94"
"28015","riaahacker","46446","EyesOfTheWorld","morphine","94"
"115136","trdofbeingtrd","164373","mar1ne","hydrocodone","94"
"86","allen","156304","PillMan","morphine","94"
"86","allen","3345","Unsolved","mdma","94"
"46446","EyesOfTheWorld","179359","uberhigh","morphine","94"
"86","allen","54214","Zoidberg","mdma","94"
"111060","FenixDelta753","156304","PillMan","kratom","94"
"86","allen","74627","SwiftyyFlintt","mdma","94"
"42579","cabal","46446","EyesOfTheWorld","morphine","94"
"3353","legalize!","62342","dabears528","mdma","93"
"1562","soer","3353","legalize!","mdma","93"
"84250","MonarchX","118772","Mr_Spiffy","morphine","93"
"48207","wiredchild","92109","psychedelia","mdma","93"
"46865","dyingtomorrow","92109","psychedelia","mdma","93"
"1222","kyndfolk","156304","PillMan","oxycodone","93"
"34899","malsat ","291968","servo75","kratom","93"
"1521","Smarthead","34899","malsat ","kratom","93"
"2903","Muirner","44584","Rightnow289","dxm","93"
"20234","ianzombie ","53567","buzzman","kratom","93"
"1222","kyndfolk","9904","Benzeneringz","oxycodone","93"
"56","Hollywood ","92109","psychedelia","mdma","93"
"3353","legalize!","15564","Le Junk","mdma","93"
"254999","cbabycee","280861","Hydroxyout","subutex","93"
"7303","pankreeas ","92109","psychedelia","mdma","93"
"28899","Esmerelda","84250","MonarchX","morphine","93"
"34899","malsat ","157358","CrispCold","kratom","93"
"2903","Muirner","46889","port 21","dextromethorphan","93"
"2903","Muirner","111239","whocaresdude91","dxm","93"
"1222","kyndfolk","63028","Smirnoff","oxycontin","93"
"7946","788.4","92109","psychedelia","mdma","93"
"3353","legalize!","11411","supremedan","mdma","93"
"657","distilla_truant","2903","Muirner","dextromethorphan","93"
"18769","samuraigecko","84250","MonarchX","morphine","93"
"53567","buzzman","90006","Ghetto_Chem","kratom","93"
"3353","legalize!","9654","gib","mdma","93"
"64462","blink1989","77229","reckoner","codeine","93"
"57031","rhcpeppers1234","92109","psychedelia","mdma","93"
"1411","umich","92109","psychedelia","mdma","93"
"1455","Carbine","53567","buzzman","kratom","93"
"1222","kyndfolk","180313","out_there","oxycodone","93"
"34899","malsat ","117995","dreamy","kratom","93"
"1239","Nicaine","53567","buzzman","kratom","93"
"2903","Muirner","3565","amd6568","dxm","93"
"1222","kyndfolk","9781","cutiepie","oxycodone","93"
"17821","lulz ","53567","buzzman","kratom","93"
"3353","legalize!","180313","out_there","mdma","93"
"1222","kyndfolk","62255","CrookieMonster","oxycontin","93"
"9","Freedom of Mind","9046","Lehendakari ","ghb","93"
"34899","malsat ","273791","Roaddoggy","kratom","93"
"2903","Muirner","28015","riaahacker","dextromethorphan","93"
"13344","drewcil","53567","buzzman","kratom","93"
"1595","Curtains","92109","psychedelia","mdma","93"
"1222","kyndfolk","135119","pup555","oxycodone","93"
"45599","On The Nod","64462","blink1989","codeine","93"
"2903","Muirner","198587","Zeldarocks","dxm","93"
"3413","radiometer ","34899","malsat ","kratom","93"
"1222","kyndfolk","1842","nymphetamine","oxycontin","93"
"3345","Unsolved","3353","legalize!","mdma","93"
"59051","Priapism9","92109","psychedelia","mdma","93"
"4495","vhalin","64462","blink1989","codeine","93"
"3353","legalize!","46865","dyingtomorrow","mdma","93"
"53567","buzzman","115136","trdofbeingtrd","kratom","93"
"1915","curve","3353","legalize!","mdma","93"
"64462","blink1989","83387","PrincessJo x","codeine","93"
"1222","kyndfolk","63028","Smirnoff","oxycodone","93"
"34899","malsat ","74033","TheSweetPea","kratom","93"
"2903","Muirner","75764","lololsolid","dxm","93"
"56","Hollywood ","64462","blink1989","codeine","93"
"28899","Esmerelda","64462","blink1989","codeine","93"
"19028","RochiWizz","84250","MonarchX","morphine","93"
"5733","Jatelka ","92109","psychedelia","mdma","93"
"3353","legalize!","45618","cannabis-sam","mdma","93"
"28015","riaahacker","64462","blink1989","codeine","93"
"1222","kyndfolk","80015","southern girl","oxycontin","93"
"1","Alfa","34899","malsat ","kratom","93"
"3353","legalize!","74627","SwiftyyFlintt","mdma","93"
"34899","malsat ","294051","Jungledog","kratom","93"
"4910","Fantasian","92109","psychedelia","mdma","93"
"92109","psychedelia","129304","Dankitydankness","mdma","93"
"2281","billyloner ","3353","legalize!","mdma","93"
"1832","opiumjade7","3353","legalize!","mdma","93"
"28015","riaahacker","34899","malsat ","kratom","93"
"1222","kyndfolk","65726","ellavader","oxycodone","93"
"2903","Muirner","11876","Paracelsus ","dxm","93"
"3353","legalize!","6482","psychedelaholic","mdma","93"
"1842","nymphetamine","3353","legalize!","mdma","93"
"53567","buzzman","275468","Openmymind","kratom","93"
"64462","blink1989","118772","Mr_Spiffy","codeine","93"
"1","Alfa","3353","legalize!","mdma","93"
"1","Alfa","84250","MonarchX","morphine","93"
"539","stndguy","92109","psychedelia","mdma","93"
"45618","cannabis-sam","92109","psychedelia","mdma","93"
"1222","kyndfolk","1842","nymphetamine","oxycodone","93"
"34899","malsat ","90006","Ghetto_Chem","kratom","93"
"1935","duchy ","92109","psychedelia","mdma","93"
"2903","Muirner","161625","mrcowman","dxm","93"
"2418","Phungushead","3353","legalize!","mdma","93"
"2271","polloloco001 ","3353","legalize!","mdma","93"
"4495","vhalin","53567","buzzman","kratom","93"
"3353","legalize!","59051","Priapism9","mdma","93"
"595","globalloon","2903","Muirner","dextromethorphan","93"
"1222","kyndfolk","135119","pup555","oxycontin","93"
"46865","dyingtomorrow","254999","cbabycee","subutex","93"
"79297","bostonnew","92109","psychedelia","mdma","93"
"72408","Mr Fish","92109","psychedelia","mdma","93"
"3353","legalize!","105372","frost458","mdma","93"
"9046","Lehendakari ","10467","WrtngCocaineTutorial","ghb","93"
"92109","psychedelia","96636","Mersann","mdma","93"
"80015","southern girl","84250","MonarchX","morphine","93"
"1222","kyndfolk","45599","On The Nod","oxycodone","93"
"297","UglyInfidel","92109","psychedelia","mdma","93"
"2903","Muirner","43332","enhancion01","dxm","93"
"4495","vhalin","84250","MonarchX","morphine","93"
"2418","Phungushead","84250","MonarchX","morphine","93"
"3353","legalize!","45583","Synesthesiac","mdma","93"
"53567","buzzman","155253","MachoManSavage","kratom","93"
"2610","brainwaxd","3353","legalize!","mdma","93"
"4490","DJ-666","92109","psychedelia","mdma","93"
"1","Alfa","9046","Lehendakari ","ghb","93"
"1222","kyndfolk","35486","NeuroChi","oxycodone","93"
"34899","malsat ","46865","dyingtomorrow","kratom","93"
"86","allen","84250","MonarchX","morphine","93"
"2903","Muirner","180313","out_there","dxm","93"
"45599","On The Nod","84250","MonarchX","morphine","93"
"3353","legalize!","7303","pankreeas ","mdma","93"
"1222","kyndfolk","76984","LostControl","oxycontin","93"
"1684","CABS205","64462","blink1989","codeine","93"
"2103","panchovilla","34899","malsat ","kratom","93"
"3353","legalize!","67133","User-126494","mdma","93"
"86","allen","3353","legalize!","mdma","93"
"1868","Paderas","92109","psychedelia","mdma","93"
"9046","Lehendakari ","13022","MrG","ghb","93"
"92109","psychedelia","180313","out_there","mdma","93"
"2167","hard2core","2903","Muirner","dextromethorphan","93"
"1222","kyndfolk","108860","Pain Hurts","oxycodone","93"
"2903","Muirner","127711","Zhekarius","dxm","93"
"2167","hard2core","2903","Muirner","dxm","93"
"1222","kyndfolk","124709","zildjiangirl","oxycodone","93"
"83387","PrincessJo x","92109","psychedelia","mdma","93"
"3353","legalize!","54214","Zoidberg","mdma","93"
"53567","buzzman","118772","Mr_Spiffy","kratom","93"
"53567","buzzman","207089","stressedgirl","kratom","93"
"1842","nymphetamine","34899","malsat ","kratom","93"
"1224","markdahman","64462","blink1989","codeine","93"
"11411","supremedan","84250","MonarchX","morphine","93"
"34899","malsat ","115136","trdofbeingtrd","kratom","93"
"62","BA","3353","legalize!","mdma","93"
"2903","Muirner","202594","headfull0fstars","dxm","93"
"40911","rawbeer","53567","buzzman","kratom","93"
"1842","nymphetamine","9046","Lehendakari ","ghb","93"
"2763","bogumil","34899","malsat ","kratom","93"
"3353","legalize!","4495","vhalin","mdma","93"
"9","Freedom of Mind","2903","Muirner","dxm","93"
"1222","kyndfolk","102420","spicybrainsgirl","oxycontin","93"
"105712","boy_char","254999","cbabycee","subutex","93"
"3353","legalize!","129304","Dankitydankness","mdma","93"
"3413","radiometer ","9046","Lehendakari ","ghb","93"
"9046","Lehendakari ","180313","out_there","ghb","93"
"135","sands of time","53567","buzzman","kratom","93"
"74627","SwiftyyFlintt","92109","psychedelia","mdma","93"
"35486","NeuroChi","84250","MonarchX","morphine","93"
"1329","khonsu13","84250","MonarchX","morphine","93"
"19028","RochiWizz","92109","psychedelia","mdma","93"
"1222","kyndfolk","211963","WoodyCA","oxycodone","93"
"2903","Muirner","3780","Kradle","dxm","93"
"211963","WoodyCA","254999","cbabycee","subutex","93"
"2112","QGdoxl ","64462","blink1989","codeine","93"
"1222","kyndfolk","80015","southern girl","oxycodone","93"
"10410","DXMBunny","53567","buzzman","kratom","93"
"75","Leo.","3353","legalize!","mdma","93"
"2822","fastandbulbous","34899","malsat ","kratom","93"
"3353","legalize!","5750","pharmapsyche","mdma","93"
"53567","buzzman","127014","MikePatton","kratom","93"
"9654","gib","92109","psychedelia","mdma","93"
"16345","IkBenDeMan","84250","MonarchX","morphine","93"
"15564","Le Junk","92109","psychedelia","mdma","93"
"34899","malsat ","275468","Openmymind","kratom","93"
"54214","Zoidberg","84250","MonarchX","morphine","93"
"2200","par excellence.","2903","Muirner","dxm","93"
"3353","legalize!","57101","Terrapinzflyer ","mdma","93"
"1222","kyndfolk","3375","MrJim","oxycontin","93"
"2418","Phungushead","53567","buzzman","kratom","93"
"3353","legalize!","35993","Greenport","mdma","93"
"53567","buzzman","212335","Calyspical","kratom","93"
"84250","MonarchX","179359","uberhigh","morphine","93"
"6482","psychedelaholic","92109","psychedelia","mdma","93"
"46865","dyingtomorrow","84250","MonarchX","morphine","93"
"1222","kyndfolk","7946","788.4","oxycodone","93"
"34899","malsat ","111060","FenixDelta753","kratom","93"
"46865","dyingtomorrow","53567","buzzman","kratom","93"
"2903","Muirner","116985","Chug Chug Chug","dxm","93"
"1222","kyndfolk","74627","SwiftyyFlintt","oxycodone","93"
"2577","Stingray_313 ","92109","psychedelia","mdma","93"
"3353","legalize!","19028","RochiWizz","mdma","93"
"15232","Tortoise","64462","blink1989","codeine","93"
"53567","buzzman","273439","marathonmel7","kratom","93"
"422","1933","92109","psychedelia","mdma","93"
"5010","snapper ","84250","MonarchX","morphine","93"
"788","mdve2","92109","psychedelia","mdma","93"
"28015","riaahacker","84250","MonarchX","morphine","93"
"2239","skilld","92109","psychedelia","mdma","93"
"34899","malsat ","155253","MachoManSavage","kratom","93"
"2903","Muirner","3780","Kradle","dextromethorphan","93"
"655","mc-lean","3353","legalize!","mdma","93"
"40282","Razorbladekiss","64462","blink1989","codeine","93"
"3353","legalize!","3732","Diphenhydramine","mdma","93"
"67133","User-126494","92109","psychedelia","mdma","93"
"1222","kyndfolk","28899","Esmerelda","oxycontin","93"
"60","Sick Jack","3353","legalize!","mdma","93"
"2709","risexagainst","3353","legalize!","mdma","93"
"3353","legalize!","4490","DJ-666","mdma","93"
"90006","Ghetto_Chem","92109","psychedelia","mdma","93"
"53567","buzzman","275604","snowdrop","kratom","93"
"42579","cabal","84250","MonarchX","morphine","93"
"3353","legalize!","48207","wiredchild","mdma","93"
"1964","enquirewithin ","53567","buzzman","kratom","93"
"84250","MonarchX","180313","out_there","morphine","93"
"4910","Fantasian","84250","MonarchX","morphine","93"
"1222","kyndfolk","118772","Mr_Spiffy","oxycodone","93"
"34899","malsat ","45509","REDSOXFAN","kratom","93"
"2903","Muirner","110776","PowerfulMedicine","dxm","93"
"20234","ianzombie ","34899","malsat ","kratom","93"
"1222","kyndfolk","218660","Jerms81","oxycodone","93"
"56","Hollywood ","3353","legalize!","mdma","93"
"1868","Paderas","84250","MonarchX","morphine","93"
"3353","legalize!","90006","Ghetto_Chem","mdma","93"
"254999","cbabycee","268087","Pbnjesse","subutex","93"
"1842","nymphetamine","84250","MonarchX","morphine","93"
"6052","KomodoMK","92109","psychedelia","mdma","93"
"34899","malsat ","118772","Mr_Spiffy","kratom","93"
"657","distilla_truant","2903","Muirner","dxm","93"
"2903","Muirner","3565","amd6568","dextromethorphan","93"
"63028","Smirnoff","92109","psychedelia","mdma","93"
"7946","788.4","84250","MonarchX","morphine","93"
"2903","Muirner","186846","dude on acid","dxm","93"
"1806","betty_bupe","92109","psychedelia","mdma","93"
"9019","Forthesevenlakes","254999","cbabycee","subutex","93"
"1222","kyndfolk","4495","vhalin","oxycontin","93"
"313","RoboCop ","2903","Muirner","dextromethorphan","93"
"3353","legalize!","119102","roastlamb123","mdma","93"
"53567","buzzman","234642","SuperCaesarKratomSalad","kratom","93"
"3353","legalize!","72408","Mr Fish","mdma","93"
"1562","soer","92109","psychedelia","mdma","93"
"55332","LowCrawl To Freedom","92109","psychedelia","mdma","93"
"64462","blink1989","80015","southern girl","codeine","93"
"1411","umich","3353","legalize!","mdma","93"
"1455","Carbine","34899","malsat ","kratom","93"
"1222","kyndfolk","7303","pankreeas ","oxycodone","93"
"34899","malsat ","212335","Calyspical","kratom","93"
"1239","Nicaine","34899","malsat ","kratom","93"
"1521","Smarthead","53567","buzzman","kratom","93"
"2903","Muirner","18724","AirO","dxm","93"
"1222","kyndfolk","35591","AACrazy2892","oxycodone","93"
"3353","legalize!","4218","TheLight01","mdma","93"
"9","Freedom of Mind","64462","blink1989","codeine","93"
"34899","malsat ","127014","MikePatton","kratom","93"
"2903","Muirner","8671","Richard_smoker","dextromethorphan","93"
"13344","drewcil","34899","malsat ","kratom","93"
"56","Hollywood ","1222","kyndfolk","oxycodone","93"
"1595","Curtains","3353","legalize!","mdma","93"
"1222","kyndfolk","11411","supremedan","oxycodone","93"
"35486","NeuroChi","92109","psychedelia","mdma","93"
"32247","Lettish","92109","psychedelia","mdma","93"
"2903","Muirner","10410","DXMBunny","dxm","93"
"17821","lulz ","34899","malsat ","kratom","93"
"1222","kyndfolk","28015","riaahacker","oxycontin","93"
"57101","Terrapinzflyer ","92109","psychedelia","mdma","93"
"64012","timkanu","64462","blink1989","codeine","93"
"3353","legalize!","32247","Lettish","mdma","93"
"53567","buzzman","102420","spicybrainsgirl","kratom","93"
"64462","blink1989","80751","AnrBjotk","codeine","93"
"1222","kyndfolk","4495","vhalin","oxycodone","93"
"34899","malsat ","275604","snowdrop","kratom","93"
"2903","Muirner","98407","phenythylamine","dxm","93"
"41207","NeuroMD","92109","psychedelia","mdma","93"
"3353","legalize!","10467","WrtngCocaineTutorial","mdma","93"
"1222","kyndfolk","111239","whocaresdude91","oxycontin","93"
"9351","M3th","92109","psychedelia","mdma","93"
"3353","legalize!","37112","ihavequestions","mdma","93"
"34899","malsat ","273439","marathonmel7","kratom","93"
"45599","On The Nod","254999","cbabycee","subutex","93"
"92109","psychedelia","105372","frost458","mdma","93"
"3299","anabolictrio","254999","cbabycee","subutex","93"
"1222","kyndfolk","83387","PrincessJo x","oxycodone","93"
"2903","Muirner","9858","jesusfreak666er","dxm","93"
"3413","radiometer ","53567","buzzman","kratom","93"
"1222","kyndfolk","46865","dyingtomorrow","oxycontin","93"
"1023","btoddw2","64462","blink1989","codeine","93"
"3345","Unsolved","92109","psychedelia","mdma","93"
"3353","legalize!","79297","bostonnew","mdma","93"
"3732","Diphenhydramine","92109","psychedelia","mdma","93"
"53567","buzzman","91040","Dankfish","kratom","93"
"1915","curve","92109","psychedelia","mdma","93"
"57031","rhcpeppers1234","64462","blink1989","codeine","93"
"64462","blink1989","180313","out_there","codeine","93"
"539","stndguy","3353","legalize!","mdma","93"
"1222","kyndfolk","294051","Jungledog","oxycodone","93"
"34899","malsat ","234642","SuperCaesarKratomSalad","kratom","93"
"1935","duchy ","3353","legalize!","mdma","93"
"2903","Muirner","156304","PillMan","dxm","93"
"313","RoboCop ","2903","Muirner","dxm","93"
"4495","vhalin","34899","malsat ","kratom","93"
"3353","legalize!","6052","KomodoMK","mdma","93"
"54214","Zoidberg","92109","psychedelia","mdma","93"
"1222","kyndfolk","218660","Jerms81","oxycontin","93"
"1","Alfa","53567","buzzman","kratom","93"
"3299","anabolictrio","84250","MonarchX","morphine","93"
"3353","legalize!","6294","astenu","mdma","93"
"34899","malsat ","35486","NeuroChi","kratom","93"
"10467","WrtngCocaineTutorial","92109","psychedelia","mdma","93"
"92109","psychedelia","119102","roastlamb123","mdma","93"
"2281","billyloner ","92109","psychedelia","mdma","93"
"1832","opiumjade7","92109","psychedelia","mdma","93"
"28015","riaahacker","53567","buzzman","kratom","93"
"1222","kyndfolk","280861","Hydroxyout","oxycodone","93"
"297","UglyInfidel","3353","legalize!","mdma","93"
"2903","Muirner","5866","RealGanjaMan ","dxm","93"
"7303","pankreeas ","84250","MonarchX","morphine","93"
"6294","astenu","92109","psychedelia","mdma","93"
"3353","legalize!","83387","PrincessJo x","mdma","93"
"1842","nymphetamine","92109","psychedelia","mdma","93"
"53567","buzzman","156304","PillMan","kratom","93"
"64462","blink1989","100767","missinglfe","codeine","93"
"4495","vhalin","92109","psychedelia","mdma","93"
"1","Alfa","92109","psychedelia","mdma","93"
"1222","kyndfolk","46865","dyingtomorrow","oxycodone","93"
"11411","supremedan","92109","psychedelia","mdma","93"
"34899","malsat ","40911","rawbeer","kratom","93"
"2903","Muirner","46889","port 21","dxm","93"
"2418","Phungushead","92109","psychedelia","mdma","93"
"7946","788.4","64462","blink1989","codeine","93"
"2271","polloloco001 ","92109","psychedelia","mdma","93"
"35486","NeuroChi","254999","cbabycee","subutex","93"
"3353","legalize!","54108","Alexander_Praves","mdma","93"
"1222","kyndfolk","65726","ellavader","oxycontin","93"
"3353","legalize!","55332","LowCrawl To Freedom","mdma","93"
"63028","Smirnoff","64462","blink1989","codeine","93"
"1868","Paderas","3353","legalize!","mdma","93"
"9046","Lehendakari ","156304","PillMan","ghb","93"
"92109","psychedelia","124017","LoveNwar","mdma","93"
"1222","kyndfolk","207982","tryinghard","oxycodone","93"
"2903","Muirner","11835","El Calico Loco","dxm","93"
"54108","Alexander_Praves","92109","psychedelia","mdma","93"
"45583","Synesthesiac","92109","psychedelia","mdma","93"
"45509","REDSOXFAN","53567","buzzman","kratom","93"
"3353","legalize!","96636","Mersann","mdma","93"
"53567","buzzman","103726","seaturtle","kratom","93"
"2610","brainwaxd","92109","psychedelia","mdma","93"
"53567","buzzman","111060","FenixDelta753","kratom","93"
"35486","NeuroChi","53567","buzzman","kratom","93"
"1222","kyndfolk","2418","Phungushead","oxycodone","93"
"34899","malsat ","102420","spicybrainsgirl","kratom","93"
"2903","Muirner","8671","Richard_smoker","dxm","93"
"35993","Greenport","92109","psychedelia","mdma","93"
"3353","legalize!","127014","MikePatton","mdma","93"
"1222","kyndfolk","156304","PillMan","oxycontin","93"
"2103","panchovilla","53567","buzzman","kratom","93"
"3353","legalize!","41207","NeuroMD","mdma","93"
"86","allen","92109","psychedelia","mdma","93"
"1842","nymphetamine","64462","blink1989","codeine","93"
"9046","Lehendakari ","96636","Mersann","ghb","93"
"135","sands of time","34899","malsat ","kratom","93"
"15832","JapanHorrorUncut","92109","psychedelia","mdma","93"
"92109","psychedelia","127014","MikePatton","mdma","93"
"1222","kyndfolk","220080","Lunaciel","oxycodone","93"
"2903","Muirner","17829","LookingForHer","dxm","93"
"102420","spicybrainsgirl","254999","cbabycee","subutex","93"
"1222","kyndfolk","62255","CrookieMonster","oxycodone","93"
"10410","DXMBunny","34899","malsat ","kratom","93"
"3353","legalize!","124017","LoveNwar","mdma","93"
"4910","Fantasian","64462","blink1989","codeine","93"
"53567","buzzman","157358","CrispCold","kratom","93"
"42579","cabal","64462","blink1989","codeine","93"
"1842","nymphetamine","53567","buzzman","kratom","93"
"34899","malsat ","91040","Dankfish","kratom","93"
"62","BA","92109","psychedelia","mdma","93"
"2418","Phungushead","2903","Muirner","dxm","93"
"2903","Muirner","28015","riaahacker","dxm","93"
"2763","bogumil","53567","buzzman","kratom","93"
"46446","EyesOfTheWorld","84250","MonarchX","morphine","93"
"56","Hollywood ","1222","kyndfolk","oxycontin","93"
"3353","legalize!","4910","Fantasian","mdma","93"
"1222","kyndfolk","211963","WoodyCA","oxycontin","93"
"2418","Phungushead","34899","malsat ","kratom","93"
"3353","legalize!","5733","Jatelka ","mdma","93"
"53567","buzzman","291968","servo75","kratom","93"
"788","mdve2","3353","legalize!","mdma","93"
"3423","mopsie ","9046","Lehendakari ","ghb","93"
"9046","Lehendakari ","42985","EducatedUser408","ghb","93"
"84250","MonarchX","156304","PillMan","morphine","93"
"1222","kyndfolk","3375","MrJim","oxycodone","93"
"34899","malsat ","53567","buzzman","kratom","93"
"2903","Muirner","45258","motter28218","dxm","93"
"1222","kyndfolk","62048","war209","oxycodone","93"
"2577","Stingray_313 ","3353","legalize!","mdma","93"
"58307","missparkles ","64462","blink1989","codeine","93"
"75","Leo.","92109","psychedelia","mdma","93"
"2822","fastandbulbous","53567","buzzman","kratom","93"
"3375","MrJim","64462","blink1989","codeine","93"
"3353","legalize!","15832","JapanHorrorUncut","mdma","93"
"53567","buzzman","273791","Roaddoggy","kratom","93"
"4218","TheLight01","92109","psychedelia","mdma","93"
"422","1933","3353","legalize!","mdma","93"
"37112","ihavequestions","92109","psychedelia","mdma","93"
"2239","skilld","3353","legalize!","mdma","93"
"34899","malsat ","156304","PillMan","kratom","93"
"62342","dabears528","92109","psychedelia","mdma","93"
"2903","Muirner","156304","PillMan","dextromethorphan","93"
"9","Freedom of Mind","2903","Muirner","dextromethorphan","93"
"3353","legalize!","63028","Smirnoff","mdma","93"
"1222","kyndfolk","108860","Pain Hurts","oxycontin","93"
"3353","legalize!","9351","M3th","mdma","93"
"53567","buzzman","117995","dreamy","kratom","93"
"3353","legalize!","92109","psychedelia","mdma","93"
"63028","Smirnoff","84250","MonarchX","morphine","93"
"1964","enquirewithin ","34899","malsat ","kratom","93"
"84250","MonarchX","102420","spicybrainsgirl","morphine","93"
"1222","kyndfolk","68194","baZING","oxycodone","93"
"34899","malsat ","207089","stressedgirl","kratom","93"
"2903","Muirner","21315","Graduisic","dxm","93"
"1222","kyndfolk","14541","laws0n","oxycodone","93"
"3353","legalize!","7946","788.4","mdma","93"
"53567","buzzman","294051","Jungledog","kratom","93"
"56","Hollywood ","84250","MonarchX","morphine","93"
"61180","Helene ","64462","blink1989","codeine","93"
"34899","malsat ","103726","seaturtle","kratom","93"
"2903","Muirner","110776","PowerfulMedicine","dextromethorphan","93"
"655","mc-lean","92109","psychedelia","mdma","93"
"35486","NeuroChi","64462","blink1989","codeine","93"
"5750","pharmapsyche","92109","psychedelia","mdma","93"
"3353","legalize!","35486","NeuroChi","mdma","93"
"1806","betty_bupe","3353","legalize!","mdma","93"
"1222","kyndfolk","7303","pankreeas ","oxycontin","93"
"60","Sick Jack","92109","psychedelia","mdma","93"
"9","Freedom of Mind","84250","MonarchX","morphine","93"
"1935","duchy ","9046","Lehendakari ","ghb","93"
"2709","risexagainst","92109","psychedelia","mdma","93"
"3353","legalize!","57031","rhcpeppers1234","mdma","93"
"53567","buzzman","74033","TheSweetPea","kratom","93"
"2575","IvoryQueen","54214","Zoidberg","mdma","92"
"1842","nymphetamine","6482","psychedelaholic","shroom","92"
"16345","IkBenDeMan","48845","youdontknow","methadone","92"
"50030","Lippmannk1","58307","missparkles ","oxycodone","92"
"1411","umich","2575","IvoryQueen","mdma","92"
"1455","Carbine","226122","ericmst18","kratom","92"
"35486","NeuroChi","50030","Lippmannk1","methadone","92"
"9904","Benzeneringz","50030","Lippmannk1","oxycodone","92"
"1239","Nicaine","226122","ericmst18","kratom","92"
"68194","baZING","207202","Nefret","oxycodone","92"
"6482","psychedelaholic","72408","Mr Fish","shroom","92"
"50030","Lippmannk1","263706","Ellen042","loperamide","92"
"84250","MonarchX","108860","Pain Hurts","oxycodone","92"
"11411","supremedan","19253","0utrider","methylphenidate","92"
"58307","missparkles ","74627","SwiftyyFlintt","oxycodone","92"
"50030","Lippmannk1","63028","Smirnoff","morphine","92"
"9","Freedom of Mind","79810","(emily)","adderall","92"
"35591","AACrazy2892","58307","missparkles ","oxycodone","92"
"48845","youdontknow","50001","GutterPhenomenon69","methadone","92"
"212335","Calyspical","226122","ericmst18","kratom","92"
"28899","Esmerelda","50030","Lippmannk1","methadone","92"
"45728","Gappa","105372","frost458","adderall","92"
"2822","fastandbulbous","6482","psychedelaholic","mephedrone","92"
"56","Hollywood ","105372","frost458","adderall","92"
"49209","Dreamland","79810","(emily)","adderall","92"
"62255","CrookieMonster","84250","MonarchX","oxycodone","92"
"2575","IvoryQueen","5733","Jatelka ","mdma","92"
"6482","psychedelaholic","124017","LoveNwar","mephedrone","92"
"13344","drewcil","226122","ericmst18","kratom","92"
"2418","Phungushead","19253","0utrider","methylphenidate","92"
"1023","btoddw2","105372","frost458","adderall","92"
"56","Hollywood ","50030","Lippmannk1","oxycodone","92"
"1595","Curtains","2575","IvoryQueen","mdma","92"
"111239","whocaresdude91","180313","out_there","morphine","92"
"45599","On The Nod","105372","frost458","ritalin","92"
"71487","robotripper","105372","frost458","adderall","92"
"4495","vhalin","79810","(emily)","adderall","92"
"17821","lulz ","226122","ericmst18","kratom","92"
"61180","Helene ","111239","whocaresdude91","morphine","92"
"1842","nymphetamine","207202","Nefret","oxycontin","92"
"50030","Lippmannk1","58307","missparkles ","methadone","92"
"48845","youdontknow","118772","Mr_Spiffy","methadone","92"
"10663","fizzle","79810","(emily)","adderall","92"
"4495","vhalin","58307","missparkles ","oxycodone","92"
"2575","IvoryQueen","7303","pankreeas ","mdma","92"
"50030","Lippmannk1","156304","PillMan","oxycodone","92"
"79810","(emily)","202594","headfull0fstars","adderall","92"
"2575","IvoryQueen","5750","pharmapsyche","mdma","92"
"50030","Lippmannk1","62255","CrookieMonster","oxycodone","92"
"156304","PillMan","226122","ericmst18","kratom","92"
"6482","psychedelaholic","38813","waffles","shroom","92"
"3471","Potassium Kid","6482","psychedelaholic","mephedrone","92"
"50030","Lippmannk1","273791","Roaddoggy","loperamide","92"
"84250","MonarchX","211963","WoodyCA","oxycodone","92"
"19028","RochiWizz","61180","Helene ","morphine","92"
"1281","mmk271","50030","Lippmannk1","methadone","92"
"58307","missparkles ","135119","pup555","oxycodone","92"
"50030","Lippmannk1","197129","soso","methadone","92"
"48845","youdontknow","236416","lyoness","methadone","92"
"3299","anabolictrio","111239","whocaresdude91","morphine","92"
"2575","IvoryQueen","9351","M3th","mdma","92"
"6482","psychedelaholic","57308","BoyInTheCountry","mephedrone","92"
"76984","LostControl","207202","Nefret","oxycontin","92"
"5750","pharmapsyche","6482","psychedelaholic","mephedrone","92"
"61180","Helene ","80015","southern girl","morphine","92"
"50030","Lippmannk1","273791","Roaddoggy","methadone","92"
"7303","pankreeas ","111239","whocaresdude91","morphine","92"
"48845","youdontknow","100767","missinglfe","methadone","92"
"1842","nymphetamine","79810","(emily)","adderall","92"
"21513","HorseBucket","105372","frost458","adderall","92"
"2575","IvoryQueen","4495","vhalin","mdma","92"
"118772","Mr_Spiffy","226122","ericmst18","kratom","92"
"50030","Lippmannk1","63028","Smirnoff","oxycodone","92"
"79810","(emily)","115136","trdofbeingtrd","adderall","92"
"2575","IvoryQueen","19028","RochiWizz","mdma","92"
"50030","Lippmannk1","62048","war209","oxycodone","92"
"102420","spicybrainsgirl","226122","ericmst18","kratom","92"
"1","Alfa","61180","Helene ","morphine","92"
"65638","Pieces Mended","105372","frost458","adderall","92"
"539","stndguy","2575","IvoryQueen","mdma","92"
"7946","788.4","48845","youdontknow","methadone","92"
"2575","IvoryQueen","92109","psychedelia","mdma","92"
"1935","duchy ","2575","IvoryQueen","mdma","92"
"46865","dyingtomorrow","207202","Nefret","oxycontin","92"
"6482","psychedelaholic","45618","cannabis-sam","shroom","92"
"1842","nymphetamine","84250","MonarchX","oxycodone","92"
"105372","frost458","111239","whocaresdude91","ritalin","92"
"9781","cutiepie","207202","Nefret","oxycodone","92"
"84250","MonarchX","156304","PillMan","oxycodone","92"
"4495","vhalin","226122","ericmst18","kratom","92"
"58307","missparkles ","65726","ellavader","oxycodone","92"
"155253","MachoManSavage","226122","ericmst18","kratom","92"
"50030","Lippmannk1","80015","southern girl","methadone","92"
"48845","youdontknow","69047","lease25","methadone","92"
"35486","NeuroChi","207202","Nefret","oxycodone","92"
"1868","Paderas","6482","psychedelaholic","shroom","92"
"3299","anabolictrio","50030","Lippmannk1","morphine","92"
"2575","IvoryQueen","57031","rhcpeppers1234","mdma","92"
"6482","psychedelaholic","96636","Mersann","mephedrone","92"
"1842","nymphetamine","111239","whocaresdude91","fentanyl","92"
"297","UglyInfidel","2575","IvoryQueen","mdma","92"
"2679","mariecurie","6482","psychedelaholic","shroom","92"
"12819","blinkKDX","111239","whocaresdude91","fentanyl","92"
"4495","vhalin","61180","Helene ","morphine","92"
"61180","Helene ","179359","uberhigh","morphine","92"
"1222","kyndfolk","84250","MonarchX","oxycodone","92"
"2418","Phungushead","61180","Helene ","morphine","92"
"50030","Lippmannk1","118772","Mr_Spiffy","methadone","92"
"7303","pankreeas ","50030","Lippmannk1","morphine","92"
"48845","youdontknow","102824","natey7","methadone","92"
"4092","trptamene ","6482","psychedelaholic","mephedrone","92"
"2575","IvoryQueen","57101","Terrapinzflyer ","mdma","92"
"41143","RoboCodeine7610","105372","frost458","ritalin","92"
"3375","MrJim","207202","Nefret","oxycontin","92"
"226122","ericmst18","275604","snowdrop","kratom","92"
"3375","MrJim","111239","whocaresdude91","fentanyl","92"
"50030","Lippmannk1","218660","Jerms81","oxycodone","92"
"1753","kailey_elise ","105372","frost458","adderall","92"
"46865","dyingtomorrow","84250","MonarchX","oxycodone","92"
"2575","IvoryQueen","62342","dabears528","mdma","92"
"86","allen","61180","Helene ","morphine","92"
"6482","psychedelaholic","127014","MikePatton","shroom","92"
"1842","nymphetamine","58307","missparkles ","oxycodone","92"
"102420","spicybrainsgirl","207202","Nefret","oxycontin","92"
"105372","frost458","122777","addersloth","adderall","92"
"28015","riaahacker","105372","frost458","adderall","92"
"1868","Paderas","79810","(emily)","adderall","92"
"9781","cutiepie","50030","Lippmannk1","oxycodone","92"
"84250","MonarchX","294051","Jungledog","oxycodone","92"
"45599","On The Nod","61180","Helene ","morphine","92"
"1842","nymphetamine","50030","Lippmannk1","methadone","92"
"58307","missparkles ","207982","tryinghard","oxycodone","92"
"50030","Lippmannk1","236416","lyoness","methadone","92"
"48845","youdontknow","105712","boy_char","methadone","92"
"63028","Smirnoff","79810","(emily)","adderall","92"
"35486","NeuroChi","50030","Lippmannk1","oxycodone","92"
"111060","FenixDelta753","226122","ericmst18","kratom","92"
"2575","IvoryQueen","90006","Ghetto_Chem","mdma","92"
"883","apoch22","105372","frost458","ritalin","92"
"1868","Paderas","2575","IvoryQueen","mdma","92"
"2575","IvoryQueen","119102","roastlamb123","mdma","92"
"135119","pup555","207202","Nefret","oxycodone","92"
"6482","psychedelaholic","53567","buzzman","mephedrone","92"
"14475","upperdecker","105372","frost458","adderall","92"
"46446","EyesOfTheWorld","105372","frost458","adderall","92"
"61180","Helene ","180313","out_there","morphine","92"
"46865","dyingtomorrow","105372","frost458","adderall","92"
"45618","cannabis-sam","105372","frost458","adderall","92"
"1222","kyndfolk","58307","missparkles ","oxycodone","92"
"50030","Lippmannk1","100767","missinglfe","methadone","92"
"48845","youdontknow","63028","Smirnoff","methadone","92"
"45509","REDSOXFAN","226122","ericmst18","kratom","92"
"153","blaze","6482","psychedelaholic","mephedrone","92"
"1112","hh339 ","19253","0utrider","methylphenidate","92"
"2575","IvoryQueen","3732","Diphenhydramine","mdma","92"
"1842","nymphetamine","105372","frost458","ritalin","92"
"50030","Lippmannk1","61180","Helene ","morphine","92"
"226122","ericmst18","275468","Openmymind","kratom","92"
"2418","Phungushead","84250","MonarchX","oxycodone","92"
"53567","buzzman","226122","ericmst18","kratom","92"
"2610","brainwaxd","6482","psychedelaholic","shroom","92"
"1180","Creeping Death ","31536","dcrn","melatonin","92"
"50030","Lippmannk1","83387","PrincessJo x","oxycodone","92"
"35486","NeuroChi","226122","ericmst18","kratom","92"
"46865","dyingtomorrow","58307","missparkles ","oxycodone","92"
"2575","IvoryQueen","9654","gib","mdma","92"
"54993","Rise against","105372","frost458","adderall","92"
"6482","psychedelaholic","35486","NeuroChi","shroom","92"
"105372","frost458","127455","BitterSweet","adderall","92"
"207202","Nefret","211963","WoodyCA","oxycontin","92"
"80015","southern girl","207202","Nefret","oxycodone","92"
"45599","On The Nod","207202","Nefret","oxycodone","92"
"135119","pup555","207202","Nefret","oxycontin","92"
"46446","EyesOfTheWorld","111239","whocaresdude91","morphine","92"
"58307","missparkles ","220080","Lunaciel","oxycodone","92"
"9858","jesusfreak666er","79810","(emily)","adderall","92"
"50030","Lippmannk1","69047","lease25","methadone","92"
"3375","MrJim","207202","Nefret","oxycodone","92"
"48845","youdontknow","198055","yem69420","methadone","92"
"2575","IvoryQueen","2709","risexagainst","mdma","92"
"1","Alfa","79810","(emily)","adderall","92"
"108860","Pain Hurts","207202","Nefret","oxycontin","92"
"2575","IvoryQueen","32247","Lettish","mdma","92"
"135","sands of time","226122","ericmst18","kratom","92"
"6482","psychedelaholic","62508","Makesmefeelbig","mephedrone","92"
"35486","NeuroChi","61180","Helene ","morphine","92"
"11411","supremedan","61180","Helene ","morphine","92"
"1329","khonsu13","61180","Helene ","morphine","92"
"16700","beena","50030","Lippmannk1","methadone","92"
"61180","Helene ","63028","Smirnoff","morphine","92"
"7303","pankreeas ","207202","Nefret","oxycontin","92"
"50030","Lippmannk1","102824","natey7","methadone","92"
"59051","Priapism9","105372","frost458","adderall","92"
"48845","youdontknow","202594","headfull0fstars","methadone","92"
"90006","Ghetto_Chem","226122","ericmst18","kratom","92"
"10410","DXMBunny","226122","ericmst18","kratom","92"
"36571","boots12","105372","frost458","adderall","92"
"2575","IvoryQueen","35486","NeuroChi","mdma","92"
"50030","Lippmannk1","80015","southern girl","morphine","92"
"14541","laws0n","84250","MonarchX","oxycodone","92"
"226122","ericmst18","273439","marathonmel7","kratom","92"
"27864","G_nome","50030","Lippmannk1","methadone","92"
"50030","Lippmannk1","280861","Hydroxyout","oxycodone","92"
"16345","IkBenDeMan","61180","Helene ","morphine","92"
"56520","Christian1122","105372","frost458","adderall","92"
"1595","Curtains","50030","Lippmannk1","methadone","92"
"63028","Smirnoff","207202","Nefret","oxycodone","92"
"2575","IvoryQueen","74627","SwiftyyFlintt","mdma","92"
"6482","psychedelaholic","66561","Curiouscat22","mephedrone","92"
"7303","pankreeas ","207202","Nefret","oxycodone","92"
"62048","war209","84250","MonarchX","oxycodone","92"
"105372","frost458","127014","MikePatton","adderall","92"
"207202","Nefret","280861","Hydroxyout","oxycodone","92"
"54214","Zoidberg","111239","whocaresdude91","morphine","92"
"45599","On The Nod","50030","Lippmannk1","oxycodone","92"
"39479","thebige","111239","whocaresdude91","fentanyl","92"
"46446","EyesOfTheWorld","50030","Lippmannk1","morphine","92"
"56","Hollywood ","207202","Nefret","oxycontin","92"
"58307","missparkles ","68194","baZING","oxycodone","92"
"50030","Lippmannk1","105712","boy_char","methadone","92"
"3375","MrJim","50030","Lippmannk1","oxycodone","92"
"48845","youdontknow","230750","MoreGutzThanGlory","methadone","92"
"2418","Phungushead","226122","ericmst18","kratom","92"
"2575","IvoryQueen","180313","out_there","mdma","92"
"2418","Phungushead","58307","missparkles ","oxycodone","92"
"5010","snapper ","61180","Helene ","morphine","92"
"788","mdve2","2575","IvoryQueen","mdma","92"
"9904","Benzeneringz","48845","youdontknow","methadone","92"
"83387","PrincessJo x","84250","MonarchX","oxycodone","92"
"2575","IvoryQueen","79297","bostonnew","mdma","92"
"84250","MonarchX","111239","whocaresdude91","morphine","92"
"35486","NeuroChi","111239","whocaresdude91","fentanyl","92"
"6482","psychedelaholic","57101","Terrapinzflyer ","mephedrone","92"
"2418","Phungushead","50030","Lippmannk1","methadone","92"
"46865","dyingtomorrow","61180","Helene ","morphine","92"
"34899","malsat ","226122","ericmst18","kratom","92"
"19253","0utrider","55332","LowCrawl To Freedom","methylphenidate","92"
"11411","supremedan","207202","Nefret","oxycodone","92"
"50030","Lippmannk1","63028","Smirnoff","methadone","92"
"84250","MonarchX","124709","zildjiangirl","oxycodone","92"
"1842","nymphetamine","19253","0utrider","methylphenidate","92"
"58307","missparkles ","207202","Nefret","oxycodone","92"
"50030","Lippmannk1","156304","PillMan","morphine","92"
"14541","laws0n","58307","missparkles ","oxycodone","92"
"48845","youdontknow","50030","Lippmannk1","methadone","92"
"56","Hollywood ","111239","whocaresdude91","morphine","92"
"18965","beentheredonethatagain","48845","youdontknow","methadone","92"
"422","1933","2575","IvoryQueen","mdma","92"
"50030","Lippmannk1","108860","Pain Hurts","oxycodone","92"
"28015","riaahacker","61180","Helene ","morphine","92"
"2239","skilld","2575","IvoryQueen","mdma","92"
"2575","IvoryQueen","105372","frost458","mdma","92"
"6482","psychedelaholic","55332","LowCrawl To Freedom","mephedrone","92"
"7303","pankreeas ","50030","Lippmannk1","oxycodone","92"
"74627","SwiftyyFlintt","207202","Nefret","oxycodone","92"
"1","Alfa","6482","psychedelaholic","mephedrone","92"
"16700","beena","111239","whocaresdude91","fentanyl","92"
"103726","seaturtle","226122","ericmst18","kratom","92"
"207202","Nefret","220080","Lunaciel","oxycodone","92"
"410","Sitbcknchill ","105372","frost458","adderall","92"
"58307","missparkles ","156304","PillMan","oxycodone","92"
"50030","Lippmannk1","198055","yem69420","methadone","92"
"48845","youdontknow","170641","jimmym321","methadone","92"
"9","Freedom of Mind","111239","whocaresdude91","morphine","92"
"7946","788.4","84250","MonarchX","oxycodone","92"
"156304","PillMan","207202","Nefret","oxycodone","92"
"2575","IvoryQueen","45618","cannabis-sam","mdma","92"
"156304","PillMan","207202","Nefret","oxycontin","92"
"42579","cabal","61180","Helene ","morphine","92"
"6201","SkUnKaDeLiC","48845","youdontknow","methadone","92"
"63028","Smirnoff","111239","whocaresdude91","morphine","92"
"2575","IvoryQueen","83387","PrincessJo x","mdma","92"
"1964","enquirewithin ","226122","ericmst18","kratom","92"
"6482","psychedelaholic","8016","chillinwill","mephedrone","92"
"111239","whocaresdude91","207202","Nefret","oxycontin","92"
"4910","Fantasian","61180","Helene ","morphine","92"
"9904","Benzeneringz","84250","MonarchX","oxycodone","92"
"737","RARFE ","79810","(emily)","adderall","92"
"1964","enquirewithin ","6482","psychedelaholic","mephedrone","92"
"19253","0utrider","41143","RoboCodeine7610","methylphenidate","92"
"11411","supremedan","50030","Lippmannk1","oxycodone","92"
"50030","Lippmannk1","202594","headfull0fstars","methadone","92"
"84250","MonarchX","135119","pup555","oxycodone","92"
"1868","Paderas","61180","Helene ","morphine","92"
"56","Hollywood ","111239","whocaresdude91","fentanyl","92"
"46446","EyesOfTheWorld","50030","Lippmannk1","methadone","92"
"58307","missparkles ","62255","CrookieMonster","oxycodone","92"
"50030","Lippmannk1","102420","spicybrainsgirl","morphine","92"
"48845","youdontknow","197129","soso","methadone","92"
"28015","riaahacker","48845","youdontknow","methadone","92"
"56","Hollywood ","50030","Lippmannk1","morphine","92"
"1842","nymphetamine","61180","Helene ","morphine","92"
"3146","Nahbus ","105372","frost458","ritalin","92"
"79810","(emily)","122777","addersloth","adderall","92"
"28899","Esmerelda","111239","whocaresdude91","morphine","92"
"65726","ellavader","207202","Nefret","oxycodone","92"
"2575","IvoryQueen","67133","User-126494","mdma","92"
"45618","cannabis-sam","50030","Lippmannk1","methadone","92"
"6482","psychedelaholic","68044","fanyovsky","mephedrone","92"
"5750","pharmapsyche","79810","(emily)","adderall","92"
"56","Hollywood ","84250","MonarchX","oxycodone","92"
"207202","Nefret","294051","Jungledog","oxycodone","92"
"7946","788.4","61180","Helene ","morphine","92"
"3299","anabolictrio","111239","whocaresdude91","fentanyl","92"
"180313","out_there","207202","Nefret","oxycodone","92"
"58307","missparkles ","63028","Smirnoff","oxycodone","92"
"1806","betty_bupe","2575","IvoryQueen","mdma","92"
"50030","Lippmannk1","230750","MoreGutzThanGlory","methadone","92"
"48845","youdontknow","79947","TheBigBadWolf","methadone","92"
"9","Freedom of Mind","50030","Lippmannk1","morphine","92"
"7946","788.4","58307","missparkles ","oxycodone","92"
"2575","IvoryQueen","59051","Priapism9","mdma","92"
"18769","samuraigecko","111239","whocaresdude91","morphine","92"
"50030","Lippmannk1","211963","WoodyCA","oxycodone","92"
"1562","soer","2575","IvoryQueen","mdma","92"
"2575","IvoryQueen","96636","Mersann","mdma","92"
"1112","hh339 ","105372","frost458","ritalin","92"
"50030","Lippmannk1","207202","Nefret","oxycodone","92"
"44584","Rightnow289","105372","frost458","ritalin","92"
"35486","NeuroChi","48845","youdontknow","methadone","92"
"45599","On The Nod","50030","Lippmannk1","methadone","92"
"16489","baron samedi","50030","Lippmannk1","methadone","92"
"9904","Benzeneringz","58307","missparkles ","oxycodone","92"
"91040","Dankfish","226122","ericmst18","kratom","92"
"68194","baZING","84250","MonarchX","oxycodone","92"
"1521","Smarthead","226122","ericmst18","kratom","92"
"19253","0utrider","46865","dyingtomorrow","methylphenidate","92"
"50030","Lippmannk1","309595","gbread","loperamide","92"
"84250","MonarchX","207982","tryinghard","oxycodone","92"
"80015","southern girl","207202","Nefret","oxycontin","92"
"35486","NeuroChi","105372","frost458","adderall","92"
"58307","missparkles ","62048","war209","oxycodone","92"
"50030","Lippmannk1","118772","Mr_Spiffy","morphine","92"
"35591","AACrazy2892","207202","Nefret","oxycodone","92"
"48845","youdontknow","80015","southern girl","methadone","92"
"28899","Esmerelda","48845","youdontknow","methadone","92"
"45728","Gappa","79810","(emily)","adderall","92"
"46865","dyingtomorrow","50030","Lippmannk1","methadone","92"
"79810","(emily)","127455","BitterSweet","adderall","92"
"56","Hollywood ","79810","(emily)","adderall","92"
"28899","Esmerelda","50030","Lippmannk1","morphine","92"
"1753","kailey_elise ","50030","Lippmannk1","methadone","92"
"2575","IvoryQueen","129304","Dankitydankness","mdma","92"
"28899","Esmerelda","207202","Nefret","oxycontin","92"
"6482","psychedelaholic","74620","methuselah969","mephedrone","92"
"1023","btoddw2","79810","(emily)","adderall","92"
"56","Hollywood ","58307","missparkles ","oxycodone","92"
"111239","whocaresdude91","179359","uberhigh","morphine","92"
"124709","zildjiangirl","207202","Nefret","oxycodone","92"
"71487","robotripper","79810","(emily)","adderall","92"
"4910","Fantasian","50030","Lippmannk1","methadone","92"
"50030","Lippmannk1","170641","jimmym321","methadone","92"
"48845","youdontknow","81101","source","methadone","92"
"4495","vhalin","207202","Nefret","oxycodone","92"
"2575","IvoryQueen","54108","Alexander_Praves","mdma","92"
"18769","samuraigecko","50030","Lippmannk1","morphine","92"
"50030","Lippmannk1","118772","Mr_Spiffy","oxycodone","92"
"2575","IvoryQueen","124017","LoveNwar","mdma","92"
"16345","IkBenDeMan","50030","Lippmannk1","methadone","92"
"50030","Lippmannk1","124709","zildjiangirl","oxycodone","92"
"157358","CrispCold","226122","ericmst18","kratom","92"
"6482","psychedelaholic","14069","Drugaddict","shroom","92"
"50030","Lippmannk1","207202","Nefret","loperamide","92"
"84250","MonarchX","220080","Lunaciel","oxycodone","92"
"19028","RochiWizz","111239","whocaresdude91","morphine","92"
"1281","mmk271","48845","youdontknow","methadone","92"
"58307","missparkles ","218660","Jerms81","oxycodone","92"
"1222","kyndfolk","207202","Nefret","oxycontin","92"
"50030","Lippmannk1","62255","CrookieMonster","methadone","92"
"9","Freedom of Mind","105372","frost458","adderall","92"
"35591","AACrazy2892","50030","Lippmannk1","oxycodone","92"
"48845","youdontknow","54214","Zoidberg","methadone","92"
"49209","Dreamland","105372","frost458","adderall","92"
"62255","CrookieMonster","207202","Nefret","oxycodone","92"
"2575","IvoryQueen","35993","Greenport","mdma","92"
"6482","psychedelaholic","11411","supremedan","mephedrone","92"
"111239","whocaresdude91","118772","Mr_Spiffy","morphine","92"
"4495","vhalin","105372","frost458","adderall","92"
"21513","HorseBucket","105372","frost458","ritalin","92"
"3413","radiometer ","226122","ericmst18","kratom","92"
"61180","Helene ","84250","MonarchX","morphine","92"
"50030","Lippmannk1","79947","TheBigBadWolf","methadone","92"
"48845","youdontknow","181260","Kitts","methadone","92"
"10663","fizzle","105372","frost458","adderall","92"
"21513","HorseBucket","79810","(emily)","adderall","92"
"4495","vhalin","50030","Lippmannk1","oxycodone","92"
"2575","IvoryQueen","127014","MikePatton","mdma","92"
"50030","Lippmannk1","180313","out_there","oxycodone","92"
"1915","curve","2575","IvoryQueen","mdma","92"
"79810","(emily)","127014","MikePatton","adderall","92"
"2575","IvoryQueen","15832","JapanHorrorUncut","mdma","92"
"50030","Lippmannk1","80015","southern girl","oxycodone","92"
"1","Alfa","111239","whocaresdude91","morphine","92"
"65638","Pieces Mended","79810","(emily)","adderall","92"
"2575","IvoryQueen","3353","legalize!","mdma","92"
"6482","psychedelaholic","10467","WrtngCocaineTutorial","shroom","92"
"50030","Lippmannk1","294051","Jungledog","loperamide","92"
"9781","cutiepie","84250","MonarchX","oxycodone","92"
"84250","MonarchX","118772","Mr_Spiffy","oxycodone","92"
"19028","RochiWizz","50030","Lippmannk1","morphine","92"
"539","stndguy","6482","psychedelaholic","shroom","92"
"58307","missparkles ","83387","PrincessJo x","oxycodone","92"
"50030","Lippmannk1","251918","Iezegrim","methadone","92"
"48845","youdontknow","218660","Jerms81","methadone","92"
"1","Alfa","226122","ericmst18","kratom","92"
"74033","TheSweetPea","226122","ericmst18","kratom","92"
"35486","NeuroChi","84250","MonarchX","oxycodone","92"
"3299","anabolictrio","61180","Helene ","morphine","92"
"2575","IvoryQueen","4490","DJ-666","mdma","92"
"2281","billyloner ","2575","IvoryQueen","mdma","92"
"6482","psychedelaholic","62077","WTF O_o","mephedrone","92"
"1832","opiumjade7","2575","IvoryQueen","mdma","92"
"28015","riaahacker","226122","ericmst18","kratom","92"
"19028","RochiWizz","19253","0utrider","methylphenidate","92"
"4264","will","111239","whocaresdude91","fentanyl","92"
"4495","vhalin","111239","whocaresdude91","morphine","92"
"61180","Helene ","156304","PillMan","morphine","92"
"2418","Phungushead","111239","whocaresdude91","morphine","92"
"50030","Lippmannk1","81101","source","methadone","92"
"7303","pankreeas ","61180","Helene ","morphine","92"
"48845","youdontknow","194301","rosielee","methadone","92"
"1842","nymphetamine","105372","frost458","adderall","92"
"1842","nymphetamine","2575","IvoryQueen","mdma","92"
"2575","IvoryQueen","4910","Fantasian","mdma","92"
"50030","Lippmannk1","294051","Jungledog","oxycodone","92"
"1526","Cuberun ","6482","psychedelaholic","mephedrone","92"
"226122","ericmst18","291968","servo75","kratom","92"
"2575","IvoryQueen","7946","788.4","mdma","92"
"50030","Lippmannk1","74627","SwiftyyFlintt","oxycodone","92"
"115136","trdofbeingtrd","226122","ericmst18","kratom","92"
"1","Alfa","2575","IvoryQueen","mdma","92"
"1","Alfa","50030","Lippmannk1","morphine","92"
"1753","kailey_elise ","79810","(emily)","adderall","92"
"62255","CrookieMonster","207202","Nefret","oxycontin","92"
"7946","788.4","50030","Lippmannk1","methadone","92"
"2575","IvoryQueen","48207","wiredchild","mdma","92"
"86","allen","111239","whocaresdude91","morphine","92"
"6482","psychedelaholic","54108","Alexander_Praves","shroom","92"
"1842","nymphetamine","207202","Nefret","oxycodone","92"
"2418","Phungushead","2575","IvoryQueen","mdma","92"
"105372","frost458","122372","PatrickEngle","ritalin","92"
"28015","riaahacker","79810","(emily)","adderall","92"
"2271","polloloco001 ","2575","IvoryQueen","mdma","92"
"9781","cutiepie","58307","missparkles ","oxycodone","92"
"84250","MonarchX","180313","out_there","oxycodone","92"
"45599","On The Nod","111239","whocaresdude91","morphine","92"
"1842","nymphetamine","48845","youdontknow","methadone","92"
"58307","missparkles ","280861","Hydroxyout","oxycodone","92"
"50030","Lippmannk1","54214","Zoidberg","methadone","92"
"48845","youdontknow","112582","tryinmybest","methadone","92"
"35486","NeuroChi","58307","missparkles ","oxycodone","92"
"1842","nymphetamine","6482","psychedelaholic","mephedrone","92"
"2575","IvoryQueen","2577","Stingray_313 ","mdma","92"
"6482","psychedelaholic","50050","Gradient","mephedrone","92"
"80015","southern girl","111239","whocaresdude91","morphine","92"
"14475","upperdecker","79810","(emily)","adderall","92"
"4495","vhalin","50030","Lippmannk1","morphine","92"
"46446","EyesOfTheWorld","79810","(emily)","adderall","92"
"61180","Helene ","102420","spicybrainsgirl","morphine","92"
"46865","dyingtomorrow","79810","(emily)","adderall","92"
"45618","cannabis-sam","79810","(emily)","adderall","92"
"1222","kyndfolk","207202","Nefret","oxycodone","92"
"2418","Phungushead","50030","Lippmannk1","morphine","92"
"50030","Lippmannk1","181260","Kitts","methadone","92"
"48845","youdontknow","127014","MikePatton","methadone","92"
"5750","pharmapsyche","105372","frost458","ritalin","92"
"2575","IvoryQueen","63028","Smirnoff","mdma","92"
"50030","Lippmannk1","111239","whocaresdude91","morphine","92"
"226122","ericmst18","234642","SuperCaesarKratomSalad","kratom","92"
"50030","Lippmannk1","135119","pup555","oxycodone","92"
"46865","dyingtomorrow","207202","Nefret","oxycodone","92"
"2575","IvoryQueen","72408","Mr Fish","mdma","92"
"86","allen","50030","Lippmannk1","morphine","92"
"54993","Rise against","79810","(emily)","adderall","92"
"6482","psychedelaholic","63028","Smirnoff","shroom","92"
"1842","nymphetamine","50030","Lippmannk1","oxycodone","92"
"2066","~lostgurl~ ","6482","psychedelaholic","shroom","92"
"105372","frost458","107312","FinnishPharmer","adderall","92"
"1868","Paderas","105372","frost458","adderall","92"
"207202","Nefret","218660","Jerms81","oxycontin","92"
"80015","southern girl","84250","MonarchX","oxycodone","92"
"45599","On The Nod","84250","MonarchX","oxycodone","92"
"45599","On The Nod","50030","Lippmannk1","morphine","92"
"58307","missparkles ","108860","Pain Hurts","oxycodone","92"
"50030","Lippmannk1","218660","Jerms81","methadone","92"
"3375","MrJim","84250","MonarchX","oxycodone","92"
"48845","youdontknow","268087","Pbnjesse","methadone","92"
"63028","Smirnoff","105372","frost458","adderall","92"
"2103","panchovilla","226122","ericmst18","kratom","92"
"2575","IvoryQueen","15564","Le Junk","mdma","92"
"86","allen","2575","IvoryQueen","mdma","92"
"3732","Diphenhydramine","6482","psychedelaholic","shroom","92"
"2575","IvoryQueen","11411","supremedan","mdma","92"
"118772","Mr_Spiffy","207202","Nefret","oxycodone","92"
"6482","psychedelaholic","20109","imyourlittlebare","mephedrone","92"
"35486","NeuroChi","111239","whocaresdude91","morphine","92"
"11411","supremedan","111239","whocaresdude91","morphine","92"
"1329","khonsu13","111239","whocaresdude91","morphine","92"
"16700","beena","48845","youdontknow","methadone","92"
"61180","Helene ","118772","Mr_Spiffy","morphine","92"
"1222","kyndfolk","50030","Lippmannk1","oxycodone","92"
"50030","Lippmannk1","194301","rosielee","methadone","92"
"59051","Priapism9","79810","(emily)","adderall","92"
"48845","youdontknow","115136","trdofbeingtrd","methadone","92"
"36571","boots12","79810","(emily)","adderall","92"
"2575","IvoryQueen","2610","brainwaxd","mdma","92"
"50030","Lippmannk1","84250","MonarchX","morphine","92"
"226122","ericmst18","273791","Roaddoggy","kratom","92"
"27864","G_nome","48845","youdontknow","methadone","92"
"50030","Lippmannk1","65726","ellavader","oxycodone","92"
"16345","IkBenDeMan","111239","whocaresdude91","morphine","92"
"56520","Christian1122","79810","(emily)","adderall","92"
"1595","Curtains","48845","youdontknow","methadone","92"
"1842","nymphetamine","226122","ericmst18","kratom","92"
"1","Alfa","19253","0utrider","methylphenidate","92"
"46865","dyingtomorrow","50030","Lippmannk1","oxycodone","92"
"62","BA","2575","IvoryQueen","mdma","92"
"4495","vhalin","105372","frost458","ritalin","92"
"63028","Smirnoff","84250","MonarchX","oxycodone","92"
"2575","IvoryQueen","37112","ihavequestions","mdma","92"
"6482","psychedelaholic","65748","Phenoxide","mephedrone","92"
"7303","pankreeas ","84250","MonarchX","oxycodone","92"
"105372","frost458","202594","headfull0fstars","adderall","92"
"207202","Nefret","218660","Jerms81","oxycodone","92"
"45599","On The Nod","58307","missparkles ","oxycodone","92"
"40911","rawbeer","226122","ericmst18","kratom","92"
"2763","bogumil","226122","ericmst18","kratom","92"
"46446","EyesOfTheWorld","61180","Helene ","morphine","92"
"46446","EyesOfTheWorld","111239","whocaresdude91","fentanyl","92"
"58307","missparkles ","211963","WoodyCA","oxycodone","92"
"9858","jesusfreak666er","105372","frost458","adderall","92"
"50030","Lippmannk1","112582","tryinmybest","methadone","92"
"3375","MrJim","58307","missparkles ","oxycodone","92"
"48845","youdontknow","62096","Cooki ","methadone","92"
"2575","IvoryQueen","4218","TheLight01","mdma","92"
"2418","Phungushead","207202","Nefret","oxycodone","92"
"5010","snapper ","111239","whocaresdude91","morphine","92"
"2575","IvoryQueen","46865","dyingtomorrow","mdma","92"
"6482","psychedelaholic","45583","Synesthesiac","mephedrone","92"
"28015","riaahacker","207202","Nefret","oxycontin","92"
"35486","NeuroChi","50030","Lippmannk1","morphine","92"
"2418","Phungushead","48845","youdontknow","methadone","92"
"11411","supremedan","50030","Lippmannk1","morphine","92"
"1562","soer","6482","psychedelaholic","shroom","92"
"1329","khonsu13","50030","Lippmannk1","morphine","92"
"46865","dyingtomorrow","111239","whocaresdude91","morphine","92"
"207089","stressedgirl","226122","ericmst18","kratom","92"
"1868","Paderas","6482","psychedelaholic","mephedrone","92"
"105372","frost458","115136","trdofbeingtrd","adderall","92"
"19253","0utrider","21513","HorseBucket","methylphenidate","92"
"11411","supremedan","84250","MonarchX","oxycodone","92"
"50030","Lippmannk1","127014","MikePatton","methadone","92"
"84250","MonarchX","207202","Nefret","oxycodone","92"
"50001","GutterPhenomenon69","50030","Lippmannk1","methadone","92"
"75","Leo.","2575","IvoryQueen","mdma","92"
"2822","fastandbulbous","226122","ericmst18","kratom","92"
"58307","missparkles ","84250","MonarchX","oxycodone","92"
"1806","betty_bupe","6482","psychedelaholic","shroom","92"
"50030","Lippmannk1","54214","Zoidberg","morphine","92"
"14541","laws0n","207202","Nefret","oxycodone","92"
"226122","ericmst18","294051","Jungledog","kratom","92"
"1","Alfa","105372","frost458","adderall","92"
"42579","cabal","111239","whocaresdude91","morphine","92"
"50030","Lippmannk1","207982","tryinghard","oxycodone","92"
"16345","IkBenDeMan","50030","Lippmannk1","morphine","92"
"28015","riaahacker","111239","whocaresdude91","morphine","92"
"2575","IvoryQueen","6294","astenu","mdma","92"
"6482","psychedelaholic","72408","Mr Fish","mephedrone","92"
"7303","pankreeas ","58307","missparkles ","oxycodone","92"
"74627","SwiftyyFlintt","84250","MonarchX","oxycodone","92"
"62048","war209","207202","Nefret","oxycodone","92"
"207202","Nefret","207982","tryinghard","oxycodone","92"
"54214","Zoidberg","61180","Helene ","morphine","92"
"108860","Pain Hurts","207202","Nefret","oxycodone","92"
"410","Sitbcknchill ","79810","(emily)","adderall","92"
"58307","missparkles ","118772","Mr_Spiffy","oxycodone","92"
"50030","Lippmannk1","268087","Pbnjesse","methadone","92"
"48845","youdontknow","102420","spicybrainsgirl","methadone","92"
"1808","xxgaretjaxx","6482","psychedelaholic","shroom","92"
"2575","IvoryQueen","10467","WrtngCocaineTutorial","mdma","92"
"2418","Phungushead","50030","Lippmannk1","oxycodone","92"
"1842","nymphetamine","111239","whocaresdude91","morphine","92"
"9904","Benzeneringz","50030","Lippmannk1","methadone","92"
"83387","PrincessJo x","207202","Nefret","oxycodone","92"
"2575","IvoryQueen","6482","psychedelaholic","mdma","92"
"6482","psychedelaholic","28015","riaahacker","mephedrone","92"
"856","str8ballin","105372","frost458","ritalin","92"
"4910","Fantasian","111239","whocaresdude91","morphine","92"
"46865","dyingtomorrow","50030","Lippmannk1","morphine","92"
"46865","dyingtomorrow","226122","ericmst18","kratom","92"
"19253","0utrider","68194","baZING","methylphenidate","92"
"11411","supremedan","58307","missparkles ","oxycodone","92"
"50030","Lippmannk1","115136","trdofbeingtrd","methadone","92"
"84250","MonarchX","218660","Jerms81","oxycodone","92"
"1868","Paderas","111239","whocaresdude91","morphine","92"
"46446","EyesOfTheWorld","48845","youdontknow","methadone","92"
"58307","missparkles ","124709","zildjiangirl","oxycodone","92"
"15","Sammi","6482","psychedelaholic","shroom","92"
"1684","CABS205","31536","dcrn","melatonin","92"
"50030","Lippmannk1","179359","uberhigh","morphine","92"
"14541","laws0n","50030","Lippmannk1","oxycodone","92"
"48845","youdontknow","62255","CrookieMonster","methadone","92"
"56","Hollywood ","61180","Helene ","morphine","92"
"18965","beentheredonethatagain","50030","Lippmannk1","methadone","92"
"5010","snapper ","50030","Lippmannk1","morphine","92"
"50030","Lippmannk1","220080","Lunaciel","oxycodone","92"
"79810","(emily)","105372","frost458","adderall","92"
"28015","riaahacker","50030","Lippmannk1","morphine","92"
"65726","ellavader","84250","MonarchX","oxycodone","92"
"2575","IvoryQueen","55332","LowCrawl To Freedom","mdma","92"
"45618","cannabis-sam","48845","youdontknow","methadone","92"
"6482","psychedelaholic","63391","Tamis","mephedrone","92"
"102420","spicybrainsgirl","111239","whocaresdude91","morphine","92"
"655","mc-lean","2575","IvoryQueen","mdma","92"
"207202","Nefret","211963","WoodyCA","oxycodone","92"
"7946","788.4","111239","whocaresdude91","morphine","92"
"58307","missparkles ","180313","out_there","oxycodone","92"
"60","Sick Jack","2575","IvoryQueen","mdma","92"
"50030","Lippmannk1","62096","Cooki ","methadone","92"
"48845","youdontknow","58307","missparkles ","methadone","92"
"35486","NeuroChi","105372","frost458","ritalin","92"
"9","Freedom of Mind","61180","Helene ","morphine","92"
"7946","788.4","207202","Nefret","oxycodone","92"
"2575","IvoryQueen","6052","KomodoMK","mdma","92"
"42579","cabal","50030","Lippmannk1","morphine","92"
"6201","SkUnKaDeLiC","50030","Lippmannk1","methadone","92"
"4495","vhalin","207202","Nefret","oxycontin","92"
"2575","IvoryQueen","45583","Synesthesiac","mdma","92"
"50030","Lippmannk1","84250","MonarchX","oxycodone","92"
"1","Alfa","6482","psychedelaholic","shroom","92"
"4910","Fantasian","50030","Lippmannk1","morphine","92"
"45599","On The Nod","48845","youdontknow","methadone","92"
"16489","baron samedi","48845","youdontknow","methadone","92"
"9904","Benzeneringz","207202","Nefret","oxycodone","92"
"4495","vhalin","6482","psychedelaholic","shroom","92"
"63028","Smirnoff","207202","Nefret","oxycontin","92"
"737","RARFE ","105372","frost458","adderall","92"
"1595","Curtains","6482","psychedelaholic","shroom","92"
"20234","ianzombie ","226122","ericmst18","kratom","92"
"4969","kaide","6482","psychedelaholic","shroom","92"
"19253","0utrider","57031","rhcpeppers1234","methylphenidate","92"
"127014","MikePatton","226122","ericmst18","kratom","92"
"50030","Lippmannk1","57024","textosteron","loperamide","92"
"28015","riaahacker","105372","frost458","ritalin","92"
"84250","MonarchX","280861","Hydroxyout","oxycodone","92"
"56","Hollywood ","2575","IvoryQueen","mdma","92"
"35486","NeuroChi","79810","(emily)","adderall","92"
"1868","Paderas","50030","Lippmannk1","morphine","92"
"3299","anabolictrio","31536","dcrn","melatonin","92"
"58307","missparkles ","80015","southern girl","oxycodone","92"
"50030","Lippmannk1","180313","out_there","morphine","92"
"16345","IkBenDeMan","50030","Lippmannk1","loperamide","92"
"35591","AACrazy2892","84250","MonarchX","oxycodone","92"
"48845","youdontknow","251918","Iezegrim","methadone","92"
"28015","riaahacker","50030","Lippmannk1","methadone","92"
"1842","nymphetamine","50030","Lippmannk1","morphine","92"
"46865","dyingtomorrow","48845","youdontknow","methadone","92"
"79810","(emily)","107312","FinnishPharmer","adderall","92"
"28899","Esmerelda","61180","Helene ","morphine","92"
"1753","kailey_elise ","48845","youdontknow","methadone","92"
"2575","IvoryQueen","41207","NeuroMD","mdma","92"
"4495","vhalin","6482","psychedelaholic","mephedrone","92"
"6482","psychedelaholic","70276","tripolar","mephedrone","92"
"930","searcher","6482","psychedelaholic","shroom","92"
"5750","pharmapsyche","105372","frost458","adderall","92"
"56","Hollywood ","207202","Nefret","oxycodone","92"
"111239","whocaresdude91","156304","PillMan","morphine","92"
"7946","788.4","50030","Lippmannk1","morphine","92"
"58307","missparkles ","294051","Jungledog","oxycodone","92"
"117995","dreamy","226122","ericmst18","kratom","92"
"4910","Fantasian","48845","youdontknow","methadone","92"
"50030","Lippmannk1","102420","spicybrainsgirl","methadone","92"
"48845","youdontknow","273791","Roaddoggy","methadone","92"
"7946","788.4","50030","Lippmannk1","oxycodone","92"
"65726","ellavader","207202","Nefret","oxycontin","92"
"4495","vhalin","84250","MonarchX","oxycodone","92"
"2575","IvoryQueen","3345","Unsolved","mdma","92"
"18769","samuraigecko","61180","Helene ","morphine","92"
"50030","Lippmannk1","68194","baZING","oxycodone","92"
"3299","anabolictrio","65726","ellavader","naloxone","91"
"6785","WinterTree","7946","788.4","mdma","91"
"65726","ellavader","164373","mar1ne","hydrocodone","91"
"19028","RochiWizz","65726","ellavader","morphine","91"
"28015","riaahacker","65726","ellavader","dextromethorphan","91"
"6785","WinterTree","35993","Greenport","mdma","91"
"65726","ellavader","84250","MonarchX","morphine","91"
"2539","Beltane","65726","ellavader","hydromorphone","91"
"1915","curve","6785","WinterTree","mdma","91"
"6785","WinterTree","15564","Le Junk","mdma","91"
"1","Alfa","65726","ellavader","morphine","91"
"9","Freedom of Mind","65726","ellavader","hydrocodone","91"
"2575","IvoryQueen","6785","WinterTree","mdma","91"
"65726","ellavader","111239","whocaresdude91","fentanyl","91"
"4495","vhalin","65726","ellavader","hydrocodone","91"
"2281","billyloner ","6785","WinterTree","mdma","91"
"1832","opiumjade7","6785","WinterTree","mdma","91"
"6785","WinterTree","57031","rhcpeppers1234","mdma","91"
"4264","will","65726","ellavader","fentanyl","91"
"4495","vhalin","65726","ellavader","morphine","91"
"65726","ellavader","156304","PillMan","morphine","91"
"2418","Phungushead","65726","ellavader","morphine","91"
"11411","supremedan","65726","ellavader","hydromorphone","91"
"1842","nymphetamine","6785","WinterTree","mdma","91"
"3732","Diphenhydramine","6785","WinterTree","mdma","91"
"6785","WinterTree","10467","WrtngCocaineTutorial","mdma","91"
"1","Alfa","6785","WinterTree","mdma","91"
"86","allen","65726","ellavader","morphine","91"
"2418","Phungushead","6785","WinterTree","mdma","91"
"65726","ellavader","110776","PowerfulMedicine","dextromethorphan","91"
"2271","polloloco001 ","6785","WinterTree","mdma","91"
"45599","On The Nod","65726","ellavader","morphine","91"
"1023","btoddw2","65726","ellavader","promethazine","91"
"45599","On The Nod","65726","ellavader","hydromorphone","91"
"6785","WinterTree","11411","supremedan","mdma","91"
"65726","ellavader","102420","spicybrainsgirl","morphine","91"
"6294","astenu","6785","WinterTree","mdma","91"
"50030","Lippmannk1","65726","ellavader","morphine","91"
"86","allen","6785","WinterTree","mdma","91"
"4495","vhalin","6785","WinterTree","mdma","91"
"6785","WinterTree","59051","Priapism9","mdma","91"
"6785","WinterTree","48207","wiredchild","mdma","91"
"7946","788.4","65726","ellavader","lithium","91"
"65726","ellavader","69047","lease25","suboxone","91"
"6785","WinterTree","46865","dyingtomorrow","mdma","91"
"35486","NeuroChi","65726","ellavader","morphine","91"
"11411","supremedan","65726","ellavader","morphine","91"
"1329","khonsu13","65726","ellavader","morphine","91"
"65726","ellavader","118772","Mr_Spiffy","morphine","91"
"16345","IkBenDeMan","65726","ellavader","morphine","91"
"6785","WinterTree","7303","pankreeas ","mdma","91"
"62","BA","6785","WinterTree","mdma","91"
"6785","WinterTree","72408","Mr Fish","mdma","91"
"46446","EyesOfTheWorld","65726","ellavader","fentanyl","91"
"65726","ellavader","268087","Pbnjesse","suboxone","91"
"5010","snapper ","65726","ellavader","morphine","91"
"6785","WinterTree","83387","PrincessJo x","mdma","91"
"9","Freedom of Mind","65726","ellavader","hydromorphone","91"
"46865","dyingtomorrow","65726","ellavader","morphine","91"
"65726","ellavader","118772","Mr_Spiffy","hydromorphone","91"
"75","Leo.","6785","WinterTree","mdma","91"
"42579","cabal","65726","ellavader","morphine","91"
"6785","WinterTree","57101","Terrapinzflyer ","mdma","91"
"28015","riaahacker","65726","ellavader","morphine","91"
"6785","WinterTree","37112","ihavequestions","mdma","91"
"65726","ellavader","102420","spicybrainsgirl","suboxone","91"
"1842","nymphetamine","65726","ellavader","morphine","91"
"6785","WinterTree","96636","Mersann","mdma","91"
"1684","CABS205","65726","ellavader","promethazine","91"
"4910","Fantasian","65726","ellavader","morphine","91"
"65726","ellavader","191210","PainCA","hydrocodone","91"
"2577","Stingray_313 ","6785","WinterTree","mdma","91"
"1842","nymphetamine","65726","ellavader","hydrocodone","91"
"1868","Paderas","65726","ellavader","morphine","91"
"4218","TheLight01","6785","WinterTree","mdma","91"
"6785","WinterTree","35486","NeuroChi","mdma","91"
"2903","Muirner","65726","ellavader","dextromethorphan","91"
"9","Freedom of Mind","65726","ellavader","dextromethorphan","91"
"6785","WinterTree","105372","frost458","mdma","91"
"655","mc-lean","6785","WinterTree","mdma","91"
"7946","788.4","65726","ellavader","morphine","91"
"65726","ellavader","90006","Ghetto_Chem","suboxone","91"
"60","Sick Jack","6785","WinterTree","mdma","91"
"56","Hollywood ","65726","ellavader","hydrocodone","91"
"3353","legalize!","6785","WinterTree","mdma","91"
"6785","WinterTree","124017","LoveNwar","mdma","91"
"65726","ellavader","198055","yem69420","hydrocodone","91"
"56","Hollywood ","6785","WinterTree","mdma","91"
"6785","WinterTree","67133","User-126494","mdma","91"
"5750","pharmapsyche","6785","WinterTree","mdma","91"
"65726","ellavader","115136","trdofbeingtrd","suboxone","91"
"45599","On The Nod","65726","ellavader","suboxone","91"
"6785","WinterTree","19028","RochiWizz","mdma","91"
"1411","umich","6785","WinterTree","mdma","91"
"65726","ellavader","118772","Mr_Spiffy","hydrocodone","91"
"54214","Zoidberg","65726","ellavader","suboxone","91"
"3299","anabolictrio","65726","ellavader","hydrocodone","91"
"46865","dyingtomorrow","65726","ellavader","hydromorphone","91"
"6785","WinterTree","129304","Dankitydankness","mdma","91"
"1595","Curtains","6785","WinterTree","mdma","91"
"61180","Helene ","65726","ellavader","morphine","91"
"65726","ellavader","111239","whocaresdude91","morphine","91"
"657","distilla_truant","65726","ellavader","dextromethorphan","91"
"3299","anabolictrio","65726","ellavader","morphine","91"
"6785","WinterTree","90006","Ghetto_Chem","mdma","91"
"8671","Richard_smoker","65726","ellavader","dextromethorphan","91"
"65726","ellavader","156304","PillMan","hydrocodone","91"
"28015","riaahacker","65726","ellavader","hydrocodone","91"
"46889","port 21","65726","ellavader","dextromethorphan","91"
"6785","WinterTree","9351","M3th","mdma","91"
"65726","ellavader","80015","southern girl","morphine","91"
"7303","pankreeas ","65726","ellavader","morphine","91"
"3345","Unsolved","6785","WinterTree","mdma","91"
"6785","WinterTree","180313","out_there","mdma","91"
"539","stndguy","6785","WinterTree","mdma","91"
"1935","duchy ","6785","WinterTree","mdma","91"
"65726","ellavader","156304","PillMan","dextromethorphan","91"
"5733","Jatelka ","6785","WinterTree","mdma","91"
"46957","Ilsa ","65726","ellavader","suboxone","91"
"35486","NeuroChi","65726","ellavader","hydrocodone","91"
"4910","Fantasian","6785","WinterTree","mdma","91"
"6785","WinterTree","119102","roastlamb123","mdma","91"
"1842","nymphetamine","65726","ellavader","fentanyl","91"
"297","UglyInfidel","6785","WinterTree","mdma","91"
"12819","blinkKDX","65726","ellavader","fentanyl","91"
"65726","ellavader","179359","uberhigh","morphine","91"
"3375","MrJim","65726","ellavader","fentanyl","91"
"6785","WinterTree","45618","cannabis-sam","mdma","91"
"6785","WinterTree","92109","psychedelia","mdma","91"
"595","globalloon","65726","ellavader","dextromethorphan","91"
"16345","IkBenDeMan","65726","ellavader","hydrocodone","91"
"46446","EyesOfTheWorld","65726","ellavader","suboxone","91"
"9019","Forthesevenlakes","65726","ellavader","suboxone","91"
"1868","Paderas","6785","WinterTree","mdma","91"
"6785","WinterTree","32247","Lettish","mdma","91"
"46865","dyingtomorrow","65726","ellavader","suboxone","91"
"65726","ellavader","180313","out_there","morphine","91"
"35486","NeuroChi","65726","ellavader","suboxone","91"
"2610","brainwaxd","6785","WinterTree","mdma","91"
"4490","DJ-666","6785","WinterTree","mdma","91"
"6785","WinterTree","54108","Alexander_Praves","mdma","91"
"3780","Kradle","65726","ellavader","dextromethorphan","91"
"6785","WinterTree","62342","dabears528","mdma","91"
"46446","EyesOfTheWorld","65726","ellavader","morphine","91"
"65726","ellavader","105712","boy_char","suboxone","91"
"6785","WinterTree","79297","bostonnew","mdma","91"
"2167","hard2core","65726","ellavader","dextromethorphan","91"
"65726","ellavader","83387","PrincessJo x","hydromorphone","91"
"6785","WinterTree","127014","MikePatton","mdma","91"
"6785","WinterTree","9654","gib","mdma","91"
"54214","Zoidberg","65726","ellavader","morphine","91"
"39479","thebige","65726","ellavader","fentanyl","91"
"65726","ellavader","201049","ak2Ut","suboxone","91"
"788","mdve2","6785","WinterTree","mdma","91"
"35486","NeuroChi","65726","ellavader","fentanyl","91"
"6785","WinterTree","45583","Synesthesiac","mdma","91"
"65726","ellavader","115136","trdofbeingtrd","hydrocodone","91"
"56","Hollywood ","65726","ellavader","morphine","91"
"422","1933","6785","WinterTree","mdma","91"
"856","str8ballin","65726","ellavader","lithium","91"
"6785","WinterTree","63028","Smirnoff","mdma","91"
"2239","skilld","6785","WinterTree","mdma","91"
"6785","WinterTree","74627","SwiftyyFlintt","mdma","91"
"16700","beena","65726","ellavader","fentanyl","91"
"65726","ellavader","211963","WoodyCA","suboxone","91"
"9","Freedom of Mind","65726","ellavader","morphine","91"
"63028","Smirnoff","65726","ellavader","morphine","91"
"6785","WinterTree","54214","Zoidberg","mdma","91"
"6482","psychedelaholic","6785","WinterTree","mdma","91"
"65726","ellavader","134323","Roll1N","hydrocodone","91"
"56","Hollywood ","65726","ellavader","fentanyl","91"
"28899","Esmerelda","65726","ellavader","morphine","91"
"4495","vhalin","65726","ellavader","hydromorphone","91"
"3299","anabolictrio","65726","ellavader","suboxone","91"
"6785","WinterTree","55332","LowCrawl To Freedom","mdma","91"
"3299","anabolictrio","65726","ellavader","fentanyl","91"
"1806","betty_bupe","6785","WinterTree","mdma","91"
"65726","ellavader","118772","Mr_Spiffy","suboxone","91"
"45618","cannabis-sam","65726","ellavader","hydrocodone","91"
"2709","risexagainst","6785","WinterTree","mdma","91"
"18769","samuraigecko","65726","ellavader","morphine","91"
"6052","KomodoMK","6785","WinterTree","mdma","91"
"1562","soer","6785","WinterTree","mdma","91"
"3375","MrJim","65726","ellavader","hydromorphone","91"
"6785","WinterTree","15832","JapanHorrorUncut","mdma","91"
"3565","amd6568","65726","ellavader","dextromethorphan","91"
"65726","ellavader","180932","gal68","hydrocodone","91"
"297","UglyInfidel","65726","ellavader","lithium","91"
"6785","WinterTree","41207","NeuroMD","mdma","91"
"65726","ellavader","69047","lease25","promethazine","91"
"313","RoboCop ","65726","ellavader","dextromethorphan","91"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment