Bitcoin Forum
April 19, 2024, 11:51:19 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: My effort to find merit abusers  (Read 311 times)
mocacinno (OP)
Legendary
*
Offline Offline

Activity: 3360
Merit: 4917


https://merel.mobi => buy facemasks with BTC/LTC


View Profile WWW
September 25, 2018, 08:26:10 AM
Last edit: September 25, 2018, 09:16:08 AM by mocacinno
 #1

I used LoyceV's merit statistics:
https://bitcointalk.org/index.php?topic=3078328.new#new

And ran them trough this script:

Code:
#!/usr/bin/python
import time
import cfscrape
import re
from collections import Counter
#the unix timestamp on which Theymos declared the new rule about 1 merit minimum
timestamp_start = 1537157940
#a list of the complete merit history, reversed (oldest timestamp on top), tac merit.all.txt > merit.txt
filepath = 'merit.txt'
#database with the latest message received merit BEFORE the rule change...
db_received_merit_before_newrule = {}
#potential suspect senders
db_theusualsuspects_from = []
#potential suspect receivers
db_theusualsuspects_to = {}
print "everything intialised"
print "starting the parsing of " + filepath
with open(filepath) as fp:  
line = fp.readline()
linenumber = 0
while line:
linenumber += 1
line = fp.readline().strip()
parts = line.split()
try:
timestamp = int(parts[0])
amount = int(parts[1])
msg = str(parts[2])
from_uid = int(parts[3])
to_uid = int(parts[4])
#if the time of the merit exchange happened BEFORE the rule change,the user is whitelisted because he received merit BEFORE he knew he/she needed it to move past newbie
if timestamp < timestamp_start:
if to_uid not in db_received_merit_before_newrule:
db_received_merit_before_newrule[to_uid] = msg
else:
#only if the user never received merit BEFORE the rule change, and the merit amount was exactly 1
if to_uid not in db_received_merit_before_newrule and amount == 1:
print str(to_uid) + " was merited with 1 merit for the first time after " + str(timestamp_start) + "...Suspicious"
#keep the uid + latest msg for the potentially abusive sender for later analysis
db_theusualsuspects_from.append(from_uid)
#add the uid + latest message to the db to check
if to_uid not in db_theusualsuspects_to:
db_theusualsuspects_to[to_uid] = msg

except:
print "error in line " + str(linenumber) + "(" + line + ")"
print "ending the parsing of " + filepath

print "listing the most common +1 merit SENDERS to potential suspects since Theymos's rule change"
x = Counter(db_theusualsuspects_from)
print x.most_common()

print "getting all profiles and filtering out all jr members"
for suspect in db_theusualsuspects_to:
scraper = cfscrape.create_scraper()
html = scraper.get("https://bitcointalk.org/index.php?action=profile;u=" + str(suspect)).content
m = re.search('(<td>Jr. Member</td>)', html)
if m:
m2 = re.search('(<td>1</td>)', html)
if m2:
print str(suspect) + " " + m.group(0) + " " + db_theusualsuspects_to[suspect]
time.sleep(2)

The end result was the following list of suspicious merit senders (people that sent exactly 1 merit to a person that had never received a single merit before theymos's rule change):
Only senders that sent to >= 5 potential abusers were listed... I have a full list, but i don't want this to end in a witchhunt Wink

The format is pretty simple, it's a just listing the sender's UID and the number of times he/she sent exactly one merit to a person that had never received a merit before.

This list also includes potential merit sources, these merit sources aren't abusers... So please use your due diligence before asking any of these guys for an explanation!!!
Code:
[(965234, 58), (176605, 48), (218947, 45), (18321, 42), (24140, 39), (485194, 36), (236307, 29), (1441048, 23), (1000199, 19), (452769, 16), (1192397, 15), (676087, 14), (153634, 13), (183610, 13), (1424178, 12), (1059082, 10), (255170, 9), (359716, 9), (229393, 8), (2093373, 8), (158960, 8), (79608, 8), (376122, 8), (1005932, 7), (193087, 7), (533071, 7), (1582324, 7), (786044, 7), (841996, 6), (1616153, 6), (459836, 6), (900400, 6), (1740809, 5), (829330, 5), (667791, 5), (2005243, 5), (2074929, 5), (715090, 5), (1393657, 5), (897509, 5), (1333897, 5), (580327, 5), (2012071, 5), (383935, 5), (48075, 5), (1213491, 5), (1459592, 5), (898511, 5), (1777170, 5), (1226362, 5), (1230675, 5), (487418, 5)]

And here is the list of junior members that were demoted due to theymos's rule change, but got re-promoted after receiving EXACTLY 1 merit from another member after the rule change got them kicked from their rank.

The format is pretty simple: uid of the receiver, post+msg of the post that got him/her his/her merit he/she needed to re-promote to junior member:

Code:
1933314, 2956231.msg45663542
2367497, 4897638.msg45741344
2170897, 5032398.msg45887643
1695767, 4932273.msg45737052
1581081, 3606184.msg36546864
2252832, 2478112.msg45866842
1310753, 4415742.msg45737657
1318948, 2659060.msg43842897
2228269, 4856590.msg43780501
1204273, 2550211.msg27640894
1556530, 2161732.msg32649777
2097161, 5031580.msg45852922
1441848, 4426795.msg45023386
1081402, 5030399.msg45839854
2179138, 5030771.msg45825572
2146376, 2426793.msg45931122
1900620, 3866679.msg44116620
1867854, 3646900.msg36676236
1777746, 4720272.msg45864073
2146394, 4359454.msg45929564
2105435, 4703840.msg45479669
2105361, 4410616.msg39298956
2252905, 3138494.msg45880193
1949804, 5030366.msg45867999
2080901, 3296171.msg45653400
2359433, 5029650.msg45765762
2039955, 5027038.msg45569913
1095024, 2478219.msg25408317
2334882, 4529173.msg44490272
1704101, 3306046.msg45193789
2007213, 5032658.msg45867621
41142, 17240.msg2358433
1786049, 4139479.msg39625813
2359492, 5026576.msg45534511
1802437, 4705627.msg43335627
680134, 2431660.msg45431902
2195657, 2233985.msg45922679
1597643, 27349.msg27566327
1917132, 2887590.msg45534898
2171087, 4329788.msg40612922
2359509, 4462744.msg45819431
1442010, 2270382.msg45638454
1335520, 3179265.msg43828687
1695971, 4997711.msg45845901
2171123, 2552576.msg39508235
2367732, 5030786.msg45826061
2326773, 2223705.msg45659915
2171133, 1085285.msg39095907
1335559, 4371801.msg44994655
2171173, 3205002.msg45817392
1917227, 5029464.msg45871406
1524035, 3356752.msg38226374
770381, 2364098.msg41689016
1556814, 2997003.msg32696618
2294103, 4979492.msg45724672
2048350, 3111690.msg45840280
2269537, 4934272.msg45926265
1122675, 2656065.msg34985667
2163067, 5030897.msg45848311
2048384, 4938322.msg44831222
172428, 2036416.msg41623870
2109506, 4597562.msg41497175
2236814, 4984345.msg45930007
1884568, 5030815.msg45827349
2245018, 2852122.msg43601019
1360291, 4395857.msg45852404
2236839, 4691823.msg45825248
1524143, 2461615.msg28547294
2015669, 5025255.msg45632277
1761733, 4457541.msg43024381
1278420, 2296769.msg29741634
2310222, 5028582.msg45854782
1556952, 2464429.msg28271024
2179547, 5032422.msg45888444
1663463, 2454087.msg27949735
1786347, 2768082.msg45921292
1909234, 3283217.msg45801046
2212339, 5027618.msg45840386
1335800, 2909260.msg29917063
1761796, 5032340.msg45884627
1892869, 4888920.msg44980131
1737227, 4646581.msg43612172
2327052, 2783720.msg45826881
2269710, 2320660.msg45879535
1958420, 4449408.msg39770403
1532437, 2876236.msg29545523
1351770, 4425110.msg41138942
2269734, 5024735.msg45652517
2007591, 5030425.msg45812913
2067209, 5032273.msg45881432
2335294, 4386283.msg45842492
2024001, 5030953.msg45832315
2245193, 4648991.msg43207645
1933917, 4900599.msg45778103
2032226, 4802310.msg43317459
1399570, 4405242.msg44520516
1933936, 4491298.msg41656387
1393268, 5030685.msg45822428
2269813, 5031684.msg45810974
2196111, 4966481.msg45923280
2155156, 5030366.msg45822933
1523823, 4900599.msg45701325
2041285, 4414245.msg39302532
2359968, 4933409.msg45658759
1147564, 4875753.msg44321871
672438, 4439497.msg40739519
901819, 1624402.msg16331740
1802941, 3378636.msg45383041
1565379, 2637106.msg30169965
1614544, 2872471.msg35139161
1549015, 1450936.msg30654602
1770204, 5031791.msg29899678
1581793, 5032167.msg45877323
2089704, 4211287.msg45665885
1450751, 5031548.msg45860359
2360064, 4886322.msg45654013
2032392, 2998631.msg45865932
2032395, 2266186.msg45867505
1114896, 1006631.msg45813752
2269971, 5030088.msg45791289
2253590, 5033157.msg45921774
2245400, 3250995.msg43366329
1917744, 2977254.msg32740422
1970312, 5031000.msg45833925
1770294, 5030884.msg45830209
2188087, 2357298.msg45661043
1991480, 3251495.msg34168315
25401, 2431660.msg45688017
172861, 4616335.msg41681854
1549122, 2084712.msg30614094
1876805, 5030060.msg45841880
2147155, 4720272.msg45870571
2147161, 4720272.msg45868939
1827681, 5027515.msg45840893
2048868, 236982.msg44548278
1188710, 2374959.msg45588389
2130801, 4514557.msg43815659
1713011, 2038863.msg32885022
1549182, 2625888.msg30585169
1893250, 5030643.msg45830214
1262467, 3553679.msg44484142
1352588, 4401998.msg39209145
1409933, 3215844.msg41557148
2089872, 3509873.msg37948671
1680274, 3751351.msg45833168
1952580, 3048950.msg45312137
1647520, 2725682.msg45932355
2302883, 5030662.msg44234120
1213353, 2976243.msg45444714
2007996, 5006719.msg45360999
992199, 2969844.msg30513552
1434578, 2555367.msg45828911
1532883, 2768237.msg45600445
2122726, 5030497.msg45815581
2171884, 5032411.msg45888121
2073584, 4951367.msg44683980
1121107, 5033147.msg45921456
1983476, 4969540.msg45582138
2302968, 4696006.msg42920384
1877018, 2993663.msg45817281
2300762, 5029343.msg45811446
2180137, 4456234.msg39893058
2130994, 3266986.msg44296588
1778743, 2811143.msg31826973
1950786, 5032316.msg45883385
2200573, 5031595.msg45854281
1188943, 5030528.msg45816648
2327634, 4514887.msg45724264
2163796, 2044113.msg45825377
1934862, 5031675.msg45857181
1311833, 4695175.msg42489004
2245722, 4969157.msg44813922
1672297, 5031070.msg45836597
1811567, 2525508.msg45260948
1369201, 2452145.msg27714309
1860734, 5029917.msg45839768
1565824, 4643742.msg41967698
1721473, 3189648.msg41836923
1860739, 2876236.msg31721337
1936238, 3000510.msg45654769
2270358, 4750303.msg45548544
1549475, 2217696.msg30744651
1893548, 5030405.msg45849283
1721522, 3033806.msg39353588
1770688, 3802869.msg45724852
1311946, 5028829.msg45808249
2008271, 3249784.msg45339252
1721552, 2561466.msg44257954
2008273, 3735178.msg45636789
394451, 2431660.msg45792449
1844440, 5029574.msg45740727
1205469, 2216595.msg33276779
1541347, 5030598.msg45819362
2008300, 2750824.msg42960150
2188529, 3223136.msg43518579
1983734, 4518298.msg45301324
2008315, 2313004.msg42963023
2090238, 3376732.msg39063784
1549568, 2725224.msg30823454
1983745, 4494244.msg45554742
1942787, 5023878.msg45503894
165124, 2431660.msg45654911
2008327, 2705411.msg45826492
2303241, 4940199.msg45838859
2008339, 4968441.msg45829546
1549595, 5027498.msg45682943
1934625, 5024345.msg45654613
1140007, 5027038.msg45566556
2090546, 2946799.msg44665143
1279289, 3255079.msg45743713
1246661, 5028421.msg45671671
1099092, 5031013.msg45834404
1672537, 4440165.msg45923274
1402216, 3287490.msg45874060
2114926, 5031688.msg45857737
1287538, 2908035.msg31113743
2352505, 4976848.msg44887523
2008447, 2145646.msg43266269
2172318, 2810273.msg45163815
1361323, 2460953.msg30405638
1959340, 4572823.msg45825084
1369517, 2658656.msg45733871
2000305, 2818398.msg34660003
2237883, 3123719.msg45531140
2196924, 5031316.msg45844358
1918402, 2768036.msg34633658
1164741, 5030508.msg45823493
1271239, 3928810.msg45385779
2164168, 5030927.msg45835428
1320403, 4420925.msg39614046
1336794, 3374664.msg45600996
2336222, 3073480.msg45518283
2270716, 3311514.msg45866241
1074686, 5032940.msg45914166
2295305, 4931293.msg45848947
1263118, 4691079.msg42328832
1877521, 2546129.msg34283579
1263140, 3333890.msg39933801
1713702, 3244100.msg45709095
1992234, 4701909.msg42626811
2246194, 1874198.msg45822613
1263160, 4672423.msg42160042
1229484, 2767700.msg33453257
2049610, 5030508.msg45843153
1615443, 4435123.msg45856814
1869401, 1085285.msg39687182
2279009, 4423706.msg45314121
984684, 2940312.msg34492311
2197101, 2759477.msg45829315
1934962, 5030642.msg45820637
2344570, 2358246.msg45792705
1967740, 4554668.msg41022020
1959549, 2233985.msg45853998
2008281, 2093780.msg42906472
1820329, 5032012.msg45871831
1009327, 4923996.msg44346894
1992369, 1381669.msg45579901
2336447, 4853793.msg44945026
2328259, 4912383.msg45254213
2245106, 2578036.msg43380279
2082512, 2553856.msg39613725
1541844, 5030366.msg45871851
1320671, 5028097.msg45787516
2344677, 3441428.msg45934340
2115303, 5030927.msg45832687
2049768, 5027303.msg45576488
1935081, 4827269.msg43970526
1550073, 2796701.msg32044979
1828611, 2934332.msg45857921
1009429, 4693660.msg43004932
1337111, 3347524.msg42633749
1935136, 3676988.msg45697332
2303785, 5030927.msg42803122
1640235, 4525401.msg45932886
1874909, 4181211.msg43695869
1902389, 3528698.msg45749218
2156342, 2371832.msg45567378
2148151, 4261754.msg45231078
1861433, 3928810.msg45824376
1877829, 3204355.msg34113291
1836870, 2975625.msg44945808
2123598, 2208174.msg37776733
1877847, 4852296.msg45355749
1984346, 3396140.msg43757975
2090844, 4726508.msg45023331
1918821, 5030791.msg43106763
2140007, 4630659.msg45549087
411508, 938088.msg10286668
1959808, 2282775.msg42699456
1689475, 1608840.msg29027488
2254728, 2012867.msg43579053
2123659, 5030486.msg45879255
2361229, 4691823.msg45819246
2123670, 2208174.msg37941641
1976215, 2560854.msg45719927
1714080, 3109856.msg42564400
2361252, 3331782.msg45819645
2344873, 4703899.msg45483228
1877934, 4745160.msg45371800
1910716, 2549093.msg45516225
2107327, 3069748.msg45570815
2025749, 4776598.msg45810421
2148314, 5030950.msg45833257
1222622, 4559042.msg41087024
2156513, 4934272.msg45596433
1953463, 4478258.msg45701735
2050044, 3740024.msg45935298
2263041, 5030860.msg45829024
1853448, 2827915.msg45851702
2123785, 1727283.msg38609872
1370143, 3770735.msg37138505
1214497, 3290541.msg34334076
1726237, 4995911.msg45464806
989444, 5034103.msg45967516
1132585, 750446.msg32934546
2140228, 4435123.msg45608459
2164811, 4938703.msg45825022
1779431, 4878317.msg44208055
2197587, 2207367.msg45706553
1968216, 3267102.msg34047592
2164838, 3251187.msg45829347
1997658, 3765347.msg37106837
2328696, 4910795.msg44228206
2099321, 4550914.msg41400836
1345664, 5000044.msg45847240
2123909, 4558052.msg42724579
1271951, 4395857.msg45776948
1075365, 2768036.msg42956180
2123947, 5026410.msg45555119
1288364, 3676988.msg44453187
2132141, 4184779.msg45525701
1558706, 2601269.msg27284623
1476793, 2197936.msg29232422
1951938, 4821618.msg43648968
2222297, 2497217.msg45864178
2042093, 2791504.msg41645798
2050287, 2818398.msg45879178
1255670, 4670414.msg45497427
1984764, 2572702.msg45633249
2132221, 5027297.msg45803962
1558782, 2145894.msg28272034
10500, 5031755.msg45861469
1214726, 3396313.msg44286754
1214730, 2897311.msg33358088
2328846, 3556253.msg45823333
2042128, 4899128.msg44182977
1984789, 1874180.msg45828020
1273699, 3646900.msg45479526
2328861, 3829035.msg45882696
2328862, 2818398.msg45820137
1378625, 3322798.msg34718279
1558856, 1374902.msg27285958
2165069, 3123719.msg45825106
2238800, 5019819.msg45288471
1838137, 1054513.msg39012342
2132312, 2978832.msg42946856
1575260, 1530672.msg27974190
1894757, 5027348.msg45579405
2066792, 4790721.msg45867875
1870908, 5032060.msg45873782
1870186, 1006631.msg45861239
2042219, 2260251.msg42101404
2206060, 5033791.msg45950879
2042227, 3160994.msg43515890
305528, 1084311.msg11565846
2042236, 4612714.msg43730122
1657215, 4900599.msg45878826
1436050, 3040825.msg33485192
2156949, 5033447.msg45932961
1313186, 2968104.msg44861573
2361764, 5033561.msg45937875
2320819, 2668578.msg45783026
1911222, 4821618.msg45103766
1821113, 2855484.msg44796487
2124221, 4613511.msg42622254
1665474, 2910835.msg45859915
timeout for suspect 1173969 so his/her profile wasn't parsed
1264086, 4892721.msg44052284
1649118, 4468667.msg45931393
1804774, 2775525.msg45204905
1698280, 4875891.msg44124137
1452524, 2866208.msg45962624
2157039, 3162635.msg43276857
2189817, 3207935.msg45717353
1231367, 5033070.msg37554377
2328557, 3716790.msg45829697
1870348, 4727905.msg42735396
2042383, 4417594.msg45933243
1260634, 5025434.msg45773009
1518132, 996518.msg45286150
1174071, 3369250.msg41062598
2089397, 3018233.msg44614838
1854018, 4568096.msg45748502
2239056, 4814543.msg45840025
1223249, 3072984.msg35033933
2083410, 4795153.msg45259596
timeout for suspect 1223251 so his/her profile wasn't parsed
1903191, 5005033.msg45457636
1559139, 2752909.msg28274421
2083430, 4555277.msg41037282
2058859, 4762751.msg45921185
2099824, 4936101.msg44569127
2153577, 4254325.msg38488989
1051264, 5030980.msg45833352
1051271, 5031411.msg45849581
1665672, 4803874.msg45595226
2091657, 3928810.msg45559599
1739408, 5030366.msg45816643
1968787, 3478671.msg36118585
1297044, 2266186.msg45927142
1075861, 5031503.msg45850915
1100449, 4830411.msg43885809
1362595, 5030755.msg45824709
2263740, 5030366.msg45830524
2173630, 4974717.msg45872099
150212, 5030402.msg45861137
1772233, 3344383.msg45476023
1626575, 2811262.msg28790228
1698528, 5031028.msg45834906
936685, 5030366.msg45824294
1230615, 5032342.msg45884962
1592064, 2816296.msg30459396
1796869, 4963945.msg45822789
1968902, 3398469.msg35584739
2173703, 4862219.msg45187008
1772297, 3043993.msg43633241
805642, 3399299.msg45236326
1993490, 3327425.msg42342081
1968915, 2439743.msg33821882
1575722, 5027630.msg45725457
1511901, 5024872.msg45834512
1608498, 3922106.msg45314697
215865, 4439497.msg44234229
1444669, 2214333.msg45373695
1583934, 3004216.msg30938592
936769, 4771067.msg43236961
1870660, 4266620.msg45818564
2083655, 4720272.msg45875890
1698641, 4789615.msg43538650
2042706, 5030515.msg45816284
2042713, 5030907.msg45831011
1526620, 1577307.msg31327528
2042726, 4597403.msg43295506
2157416, 5026295.msg45520005
1559401, 2759721.msg28296886
1895278, 5030564.msg45819603
1858019, 2763253.msg45046055
2009973, 4138967.msg45599120
2222969, 5030366.msg45857805
11130, 4385957.msg45851063
1207166, 5030201.msg45805800
150404, 5028014.msg45860974
2182037, 5030927.msg45835500
1543067, 2658097.msg28624337
2182049, 2852122.msg45729237
2280356, 4957779.msg44679664
289713, 4406397.msg41697331
1199026, 4925004.msg45913088
1207227, 2534826.msg25884457
1125317, 5030508.msg45825821
1928148, 2686945.msg45824981
1403869, 2578124.msg30735749
1919973, 4647248.msg45760549
2190314, 5030927.msg45835785
1977329, 2815596.msg44907722
1543158, 4503790.msg45830056
1944575, 5032358.msg45886249
1854479, 2820637.msg45848491
1969171, 5030724.msg45823688
2092056, 3331950.msg45018684
1843717, 4521409.msg45599057
2092070, 4904552.msg45808423
2051117, 5030088.msg45850602
1535022, 2209579.msg28602069
2042933, 4968824.msg44805465
2239545, 4554209.msg41017061
1805372, 3037985.msg35588678
1485895, 5030127.msg45859842
1985620, 5031684.msg36431037
1772653, 3255144.msg45040556
2288752, 4872939.msg45695042
1698933, 4934767.msg45770476
1764488, 5016151.msg45253326
1043598, 1474880.msg22778251
1985687, 5031791.msg33767687
2247837, 2942080.msg43850751
1830050, 4970873.msg44825122
2190500, 5032317.msg45883387
2092198, 2897956.msg45829000
1961131, 3047578.msg42841240
2256045, 3153024.msg45577591
2299763, 5029471.msg45874239
1903797, 2254435.msg43739341
1682615, 5012142.msg45858030
1207483, 4868904.msg45737447
1985729, 5031791.msg33768164
1461442, 2977748.msg45886914
1862857, 4482923.msg44796277
2133213, 5015243.msg45247796
1805539, 5027467.msg45740424
2034918, 5025973.msg45671579
2010344, 4557470.msg45732468
150770, 5027213.msg45837332
1756407, 3219557.msg33508100
1264892, 4999948.msg45406769
1371395, 2207470.msg45516572
1686998, 5032014.msg45878271
1994019, 5030923.msg45831208
2067678, 5006583.msg45951839
1518906, 4577570.msg45727508
2305341, 2065186.msg45322964
1101121, 2692155.msg45820831
2036282, 1474880.msg36565947
1174884, 5027665.msg45942078
1723750, 2773175.msg43008244
36230, 3385342.msg35658515
1576334, 5031638.msg45860796
1183140, 4565705.msg43347646
1183150, 2126521.msg45874353
2035123, 5020811.msg45626067
1183158, 5030374.msg45878067
2272695, 5026583.msg45623793
511424, 1051997.msg11398296
1985988, 4566068.msg41148569
2362833, 4966536.msg44788072
1822174, 2992065.msg30853171
1248741, 5031870.msg45886748
1822188, 2850192.msg30842800
2299816, 4929103.msg45478264
1887737, 3679364.msg36878060
1969661, 3470923.msg36058463
1822207, 2660246.msg30842857
2280964, 5032100.msg45878019
2092549, 3094854.msg45478861
1248785, 5029901.msg45888798
1945110, 4726508.msg42886427
1633818, 5032109.msg45875539
2313756, 1006631.msg45866253
1822244, 2847977.msg30851074
347685, 5027303.msg45609087
1756715, 5028298.msg45722725
1166894, 3068651.msg45940829
1719560, 2540667.msg45676258
1822265, 2962406.msg30853717
2231872, 5030189.msg45797384
1502785, 684090.msg45442953
1494594, 570886.msg45912565
1822279, 2855942.msg30026678
2035281, 4886322.msg45076160
1896019, 4752776.msg45708458
2272855, 1828834.msg45640466
1928793, 5030508.msg45824050
2363014, 3440763.msg45784116
1265288, 5032188.msg45880704
2188658, 5026184.msg45513370
2125459, 5025147.msg45936042
1527448, 3751351.msg45850775
1240731, 2910101.msg32151141
1773222, 4743172.msg45834903
1076907, 3322527.msg45903105
1814196, 4479439.msg43030782
1388215, 2238864.msg30479603
1076927, 2205836.msg44978521
1945293, 4726508.msg45073108
1437397, 4949266.msg45407870
2125531, 5033207.msg45935611
1740512, 5033389.msg45931000
1478391, 3272345.msg45861379
1232636, 2962453.msg45760069
1863426, 5025262.msg45854543
2215687, 5030927.msg45835936
2330381, 5033798.msg45879752
2043676, 5030366.msg45841728
2010922, 4434156.msg45735366
1234909, 3167421.msg39938391
1855282, 5024345.msg45554998
2281269, 2976307.msg42457544
364342, 599299.msg8252634
2068292, 5031165.msg45839408
2199367, 5033213.msg45923401
2363216, 5029465.msg45752280
1273691, 4692955.msg43400886
2166627, 5032376.msg45886360
1781613, 3072109.msg45704035
2224010, 4663269.msg45316338
2299885, 4812757.msg43417390
1847194, 4323682.msg39372029
1249179, 5030438.msg45813627
1904541, 4483014.msg45542619
913342, 3835841.msg45782344
1814465, 2813013.msg30972158
1617227, 4661881.msg45859267
1503176, 4843279.msg45751186
1847242, 4795181.msg45781981
1814527, 4856382.msg45557428
1570816, 4655240.msg45459154
1970185, 5030927.msg42562338
1372172, 2683530.msg45814219
1306657, 2765341.msg38002189
2330664, 3035694.msg45933275
1978414, 5032212.msg45879229
1511472, 4584807.msg45205182
2035778, 5031937.msg45873042
1271305, 4555802.msg43601779
1683527, 4628653.msg45382459
1765451, 5033307.msg45939564
1831000, 5032016.msg45872028
2306138, 5031724.msg45884142
2150497, 3897485.msg39325479
372845, 952083.msg10794796
1265782, 3095196.msg39993693
2125945, 5026410.msg45678598
1929350, 5029189.msg45847465
1642632, 2768237.msg45811234
2125961, 2744370.msg44025959
1929355, 4979079.msg45786985
2191504, 2572702.msg44004472
1618070, 5027800.msg45849898
1593500, 2323532.msg44937562
1929384, 3272395.msg45711811
1855664, 3199556.msg45755774
1331390, 2675018.msg27331188
2183364, 3128698.msg45826722
1544391, 4711217.msg45953072
1719765, 5031223.msg45842041
1757428, 4969149.msg44825861
1904914, 5032474.msg45890197
1544469, 2246828.msg42970919
2093346, 4709404.msg45515399
1618213, 3734099.msg42242469
1618221, 3117951.msg45807837
1233219, 4945986.msg45351134
2052421, 3223133.msg42934867
2339169, 5026051.msg45592144
2355560, 5033863.msg45961954
1782126, 4912913.msg44254155
1544565, 2207926.msg29570147
1945982, 4726508.msg44132035
2077055, 3567496.msg40737810
1249666, 4395857.msg45858217
2077059, 4619387.msg42438728
2281861, 4456814.msg42522509
2208149, 4832485.msg43606947
1839520, 2878134.msg38486386
1659312, 4807472.msg45744834
1978819, 5032922.msg45913083
1536463, 4909218.msg44555673
2306516, 1605453.msg45885879
1554510, 2361173.msg44879711
1315293, 4638376.msg41921709
1307138, 5030366.msg45827997
2052612, 5031936.msg45889042
2241037, 5029917.msg45830313
1700370, 2572702.msg42751203
2167315, 5032387.msg45886998
1978905, 753252.msg44080829
2060828, 5024099.msg45359941
12834, 4931293.msg45845942
1454627, 5000679.msg45636712
2265637, 5031042.msg45858806
2257446, 5030897.msg45845324
2308188, 4933253.msg45795628
1823278, 4168696.msg45609433
1082120, 5030797.msg45855118
1323572, 5031936.msg45867662
1094197, 2768036.msg28332295
2126410, 4901699.msg45839699
2190775, 4868320.msg43853444
1897037, 3123327.msg32392063
1888846, 5030508.msg45839938
2093652, 5033143.msg45931177
1733210, 4503790.msg45833515
1978974, 4901699.msg45837237
1782377, 2881418.msg29612199
2208367, 1345817.msg45518797
2007827, 3365339.msg35494235
1290877, 5031147.msg45838832
1233541, 5033275.msg36738367
2060937, 4769127.msg43157882
2167440, 5028934.msg45690903
21139, 5030198.msg45865991
1053336, 5030552.msg45887156
2201241, 2285758.msg45911974
1872669, 4988524.msg45002192
29369, 2431660.msg45655106
2052805, 2998631.msg44481189
13001, 5028819.msg45850502
2167498, 4180289.msg45805976
1962701, 3035556.msg35974168
2216658, 4899128.msg45556095
1897186, 4406450.msg44930920
2144379, 3309250.msg44041536
1872613, 3205017.msg43735505
2208486, 2345337.msg45930788
1790696, 3133471.msg45562263
1782515, 2683530.msg45830675
1356532, 4657351.msg42243508
1454839, 4090477.msg45719397
1209082, 5031409.msg45847695
2028287, 5030201.msg45800715
1965526, 4722721.msg42662079
1028870, 1984207.msg20215030
1938196, 5024623.msg45852254
1897244, 3127816.msg43722924
1028893, 3397571.msg43192178
1028897, 1923060.msg21670317
1987365, 3271759.msg34155228
1458993, 2758661.msg36344807
1487665, 4395857.msg45812359
1315647, 2214251.msg45824972
2020162, 4659296.msg42138380
1913668, 5029412.msg45738864
1986021, 5031674.msg45857153
1897319, 3211502.msg35250945
1987438, 3325465.msg34839068
2118511, 2512755.msg45825846
1135476, 5007014.msg45306849
1831810, 4890831.msg45719551
1995652, 3121420.msg42566627
2205848, 3864013.msg45923099
1037205, 3021063.msg31077295
1430428, 2259255.msg44920242
1430460, 2552460.msg45212624
2036681, 3205018.msg45683086
2298834, 5031389.msg45847158
2315223, 1820209.msg45466209
1971165, 2659318.msg41292549
2094062, 4578881.msg44741653
1192962, 4478258.msg45578144
1848326, 5031192.msg45840162
2192402, 4942334.msg44537280
1750040, 4575703.msg42894534
1348636, 4722786.msg45660309
1872932, 4937027.msg45594709
2143273, 5032100.msg45880183
1692714, 4187820.msg38954107
2323510, 4779705.msg45842163
1774647, 4983918.msg45064397
1678858, 1381323.msg45923421
2061379, 5032088.msg45892987
1692740, 4662193.msg45321338
2356302, 5026312.msg45867312
1258582, 4823941.msg44937687
1471583, 4711217.msg45776325
2012258, 5032288.msg45881963
1766502, 3157522.msg32638652
1594475, 5031956.msg45937243
2315372, 4312938.msg44772138
1209472, 2195033.msg33309114
1864846, 5027467.msg45700987
1864859, 5027467.msg45828419
1455262, 2110026.msg45761792
1324192, 2086077.msg27091194
99185, 2768036.msg29437710
1324202, 2898756.msg32243986
2012331, 5024872.msg45430525
1930413, 3739439.msg45461147
1832112, 3653546.msg45359440
1946802, 3825564.msg37331244
1479859, 2768036.msg29453286
1676480, 4619602.msg41712793
2200769, 5030499.msg45816881
1946829, 4629486.msg45205915
1386701, 4453897.msg45810593
2290898, 2431660.msg45790418
1209559, 2207225.msg22994147
1455325, 3309485.msg45615257
2159844, 4518298.msg45878046
1250536, 5026992.msg45873274
2233586, 5030201.msg45802588
2077946, 5032624.msg38769670
2200835, 5030373.msg45856531
1447193, 5030366.msg45836870
1930543, 1715457.msg34695147
1897786, 5012142.msg45781340
2061635, 4541561.msg43734552
1865034, 2658656.msg35863083
1209677, 4885841.msg45865557
1265209, 4969540.msg44875451
1897816, 5030443.msg45844378
1873252, 4488922.msg45802985
2332007, 5030455.msg45817853
1447280, 5030366.msg45827280
1873278, 3300315.msg45374361
1667989, 2269952.msg45587805
2258305, 4577107.msg45170117
1774989, 2940654.msg30253926
2258324, 3328788.msg45171521
349599, 3081580.msg45636545
1643940, 4966397.msg44805563
2258346, 3455104.msg45132153
1242549, 4503790.msg45124508
1783233, 2019276.msg45817223
1971651, 2454859.msg42322485
2104909, 4980076.msg44913727
2020824, 5031652.msg45856279
2020831, 4401998.msg42402443
1807843, 2910835.msg45822321
1545702, 628413.msg34091921
1725927, 3219887.msg33547037
2217451, 4514535.msg42788060
1209837, 3535259.msg45671307
2086382, 5030564.msg45825484
2164989, 5030244.msg45825152
2274807, 5025858.msg45600772
1627644, 5030374.msg45829853
1857021, 4508123.msg45704862
1873417, 5032369.msg45885927
1816085, 4837693.msg43639756
1889814, 4985549.msg45174937
1455641, 5030374.msg45820210
1873434, 5032373.msg45886233
1365537, 5031333.msg45952788
1185319, 4963873.msg44763790
1807912, 2671586.msg31113624
1750577, 2259960.msg29548831
2328842, 4598186.msg45826379
2078284, 4917439.msg45161101
1431126, 2871620.msg45575040
1898076, 2954678.msg45238627
1627743, 2035348.msg45152299
2266720, 5031549.msg45852048
1971809, 3406560.msg35667281
2258534, 5013965.msg45317155
1504872, 5011940.msg45224319
1398383, 996518.msg45860861
2045560, 4405242.msg44896317
2094713, 5031578.msg45852883
1583381, 2801501.msg45882434
2094734, 4899548.msg45891653
1840788, 2778024.msg30498645
2217622, 3033187.msg45554194
1832605, 2716106.msg30223283
153251, 306471.msg3287908
2258604, 2750649.msg45865889
2062000, 4525894.msg42015856
1095353, 4494244.msg44671310
2217662, 2374959.msg45782868
1701570, 4430716.msg45761046
1808070, 5030508.msg45819008
2250445, 5032375.msg45886332
1627858, 3396140.msg45562882
2258653, 5029434.msg45821687
2258655, 3207935.msg45954485
2307818, 3189648.msg45778460
1332974, 4564194.msg43770102
2275058, 5018627.msg45723998
2258678, 4666479.msg45865268
1185529, 4961058.msg44728574
1873668, 4359454.msg45928713
2266896, 5030884.msg45829785
1160989, 5032705.msg45818454
1546016, 3363885.msg35241224
1808200, 5009068.msg45933691
2275139, 4327310.msg45829973
1914737, 4481334.msg43718900
1742707, 3840811.msg37419902
1030008, 5030366.msg45892275
1234812, 2765175.msg29675486
2209668, 5024216.msg45827352
1357707, 4967274.msg45919026
1931169, 4607816.msg45519168
1251235, 1411291.msg42769717
1988520, 2205836.msg45225760
2168759, 2260292.msg45811599
366541, 2769633.msg36747029
2144210, 4395857.msg45911558
2299864, 2829644.msg45442643
1292252, 3797101.msg42184193
1795385, 4330150.msg45873307
1832931, 4726508.msg43972908
1988589, 2479043.msg33590214
1447918, 3053008.msg39360541
1234927, 2818404.msg42769454
1538032, 2768036.msg28295235
1529843, 5030201.msg45801485
1464308, 2586332.msg45759558
2193404, 4699536.msg45818478
2275328, 2439743.msg45820973
2062678, 5033798.msg41339644
1611793, 4577226.msg41326851
1882134, 4460964.msg40775272
1464344, 4312938.msg45761267
2242586, 5028842.msg45713099
1988636, 5025499.msg45783848
2308128, 1356957.msg45498119
2005026, 4955190.msg44749304
1726513, 3378636.msg45655719
2193465, 5030897.msg45849471
2144323, 5030601.msg45819421
1972299, 3243191.msg37387827
2127949, 4984714.msg45939179
2062414, 3182991.msg43659550
1824849, 5033656.msg45942424
1833045, 4795544.msg44124797
1112154, 4905736.msg45357264
1464412, 4752172.msg44942894
1898595, 5032458.msg45919596
1071209, 418382.msg45891565
2267243, 5025057.msg45644167
1128571, 2975525.msg33121033
2283644, 5027402.msg45582141
1710206, 4782257.msg43176020
2152579, 5029391.msg45867836
1439878, 628413.msg43453123
1774615, 2552297.msg31019787
1292434, 3128698.msg45700141
1636502, 2852906.msg29319859
2062488, 3037985.msg35552515
1054878, 2227640.msg23002761
1235103, 2247523.msg44476231
2300077, 2620951.msg45560859
2078904, 4752035.msg45934375
1382587, 3296320.msg44834087
1448131, 2591718.msg41455815
2193610, 3309485.msg45428461
190841, 230141.msg4922513
1210592, 5032232.msg45880065
1997027, 4437016.msg45313144
1349862, 2790913.msg42983023
1931495, 5032972.msg45961261
2159657, 5026760.msg45543906
2029828, 1529197.msg39894771
2038026, 5032695.msg45913096
1497366, 4410555.msg45779990
1833244, 4932886.msg45221567
2005280, 4834926.msg45720216
1874227, 2964037.msg31582679
1972538, 5028870.msg45885345
2005307, 4502617.msg45002721
1956167, 5031920.msg45867072
2005324, 5030499.msg45857076
2185554, 5003427.msg45582017
1710419, 2969844.msg30514561
1816918, 4282315.msg42875516
1866086, 2855923.msg30853394
1988971, 2439743.msg33549342
1853842, 2946799.msg32451105
1415539, 2580912.msg26304362
1866100, 2855923.msg30849728
2324872, 5027630.msg45932825
1866126, 2998025.msg30851443
1948047, 4283355.msg38567451
1284503, 3114418.msg33249728
1455172, 3394176.msg45720559
2275738, 3283217.msg45854828
1866147, 3250468.msg34810258
1825204, 4723360.msg42675823
1980872, 3928810.msg45814542
1912567, 2343085.msg45161971
1391052, 2846485.msg29281104
1853858, 3352978.msg45870268
1808846, 4815243.msg45583870
1391055, 2894635.msg29872024
1792464, 4721495.msg43327987
2163791, 3797101.msg45825182
2202079, 5030366.msg45816366
1579491, 5031217.msg45841066
1391077, 1219161.msg26581535
2030061, 4510089.msg41085871
2226676, 4929967.msg44414372
1743350, 2391756.msg40049227
1391100, 4794966.msg45794243
1759744, 5031035.msg45835108
2324994, 4622790.msg43417759
1939977, 4742854.msg43068814
2177551, 145591.msg45825071
1948183, 2760766.msg44757056
2341406, 4313999.msg45934041
2112036, 5025255.msg45591013
72232, 2431660.msg45687710
1980971, 2207367.msg45325592
1997375, 5030366.msg45822693
1251905, 5028844.msg45705936
1382978, 5025255.msg45564553
2169414, 4431181.msg39556734
2021959, 3180502.msg34380638
2357836, 3308124.msg45734762
1391188, 5028683.msg45673019
1964633, 2780825.msg35442121
1358430, 5000635.msg45232780
2013791, 4429335.msg41109248
1414246, 5027630.msg45598936
1931878, 5030508.msg45823559
2030188, 3479211.msg41915196
1710707, 5030366.msg45851279
2185847, 4781042.msg45335434
1817217, 2941450.msg30216861
1556246, 4667821.msg45358843
1391240, 3135692.msg32478338
2341519, 1006631.msg45860778
1809046, 5032812.msg44604244
1759896, 2966127.msg36288285
1850009, 5026737.msg45765277
1907356, 2810273.msg40857217
2218659, 5030662.msg45323828
2292389, 2801760.msg43205576
2122865, 5031351.msg45845894
2202287, 5025436.msg45742789
2030258, 5025499.msg45586523
1401971, 5030482.msg45814892
1948340, 5033224.msg45923797
2276021, 2345337.msg43833998
2292407, 5031696.msg45859611
1555128, 2519501.msg27254335
1710801, 3108278.msg37337037
1546975, 2140840.msg30228349
1235691, 5031762.msg45873131
1342194, 2969382.msg45888915
1153785, 4724743.msg42696264
1391355, 5033043.msg45922355
1334017, 5030366.msg45826134
1751810, 4720272.msg45875210
1579782, 2847924.msg43330207
1915666, 1771456.msg45784140
2235161, 5032553.msg45893323
1817375, 5031272.msg45842778
1317667, 2168104.msg25516854
1784613, 2527579.msg29830274
1882920, 4968378.msg45090432
1989420, 3365339.msg35500008
2177839, 5027126.msg45565628
2087730, 5032109.msg45877664
1751866, 5031108.msg45837733
1915707, 4722925.msg42680405
2201860, 1085285.msg41325777
1694536, 5029481.msg45730090
2349897, 4818464.msg45640773
1669967, 4956367.msg44958803
2330425, 4924349.msg44352676
1563485, 4932599.msg44506974
1661797, 4885858.msg45754220
1948524, 2998631.msg45930912
1235834, 5028667.msg45853099
1555328, 2759002.msg28204032
1760133, 4568096.msg45403853
2210699, 4687372.msg45551013
2128785, 5031681.msg45857490
1833874, 4726508.msg42886434
1989536, 4416030.msg45776413
1932205, 4982784.msg44952559
2300853, 5028241.msg45782473
1899477, 5030366.msg45820109
1817565, 3387382.msg41422944
1580009, 4746104.msg45567385
2350065, 2137802.msg45657921
2309106, 4711217.msg43280590
1555444, 2559414.msg28204733
2333699, 4854014.msg43756303
1850373, 3200930.msg41939808
1792513, 4568096.msg45670084
2022417, 2159615.msg45702375
1498131, 4787729.msg44936108
1850396, 4807008.msg45869912
2006045, 3043993.msg41399068
1760289, 4796322.msg44041688
1793883, 2035348.msg45771133
2079788, 5030201.msg45801594
1842222, 5030127.msg45802705
1178672, 4820477.msg45042089
1948728, 2658656.msg45515936
2112573, 5032262.msg45880995
1825858, 4748512.msg45558344
1956947, 1300525.msg45861882
1555559, 2618511.msg28205190
1694824, 3092722.msg32052645
1055858, 4731084.msg42751986
1875062, 2567248.msg31064014
1858688, 4931157.msg45854121
2358405, 5024445.msg45383958
2358411, 5024423.msg45384491
1547404, 388964.msg29236558
1842318, 4837625.msg43796575
1653917, 2771194.msg28338377
2173469, 2426866.msg45370356
1342642, 5031282.msg45843004
1465523, 1006631.msg44850187
1686710, 2207367.msg45531573
2008266, 4540977.msg45472005
2096329, 5030373.msg45811828
1965259, 2252159.msg45117248
1670371, 4779838.msg45928172
2103848, 3399383.msg45962579
2024659, 2805113.msg37087231
2161916, 4974364.msg44995687
2161924, 3928810.msg45862968
1946005, 5029372.msg45825189
1318156, 42465.msg44923790
1828056, 3262456.msg37656781
1074393, 5031850.msg45864500
2309402, 2013627.msg44747183
2227488, 5030385.msg45826682
2284842, 232519.msg45437031
2008285, 2769633.msg42907186
1981747, 2704531.msg44705396
1847178, 4797667.msg45770401
2030914, 5028582.msg45891418
2096455, 5033111.msg45920141
1973586, 3162153.msg33391429
2129235, 5024676.msg45469041
156901, 4917815.msg44775401
2309474, 4700898.msg45926657
1580408, 4211287.msg45614945
2252156, 4720272.msg45876462
1776193, 5030927.msg45835295
2203022, 3154602.msg45922856
1335193, 3591488.msg43269697
1310106, 4929033.msg44402157
1711520, 2797031.msg29876049
2357830, 5032353.msg45885436
1891754, 3211015.msg33951165
2080171, 2478406.msg39085251
1899958, 5030872.msg45829325
1637819, 5029189.msg45848970
1547718, 2093792.msg30338359
1760718, 5031956.msg45879387
2096591, 2765341.msg45348100
1867221, 2999519.msg30849443
1424854, 5025081.msg45459175
1981913, 3535259.msg44247040
2317790, 4886018.msg45305060
1498593, 4695175.msg45832417
1271035, 4529009.msg45802199
2317796, 2269952.msg45623986
1867239, 3432061.msg45767777
1392105, 4503790.msg45620892
1261040, 2836328.msg31912160
2080249, 4597128.msg45853420
1596927, 2818404.msg45836072
1582336, 5030662.msg45816857
220679, 2431660.msg45654366
1310217, 3378636.msg45849913
1670666, 4859045.msg43794747
1981975, 3027866.msg41622128
1424920, 1006631.msg45860966
2303236, 3062733.msg45854814
2162203, 4416963.msg45284454
1932842, 2976243.msg45515544
1555039, 1329125.msg44897060
1547853, 2571481.msg29025488
1261146, 5031584.msg45876425
1580637, 4692213.msg45782275
1261152, 5032624.msg45885205
2055782, 4899128.msg44284592
1900135, 5030499.msg45872538
1580657, 2149150.msg27769962
1850996, 2916700.msg45414972
1285749, 4980450.msg45911124
2145910, 5030508.msg45816660
1318521, 4779838.msg44668526
1777274, 5030374.msg45913529
1072765, 5031223.msg45849863
2014852, 4644963.msg43778029
1547933, 1178264.msg30663247
1670824, 4911710.msg44238522
2249899, 5031575.msg45852768
2309816, 4457232.msg45720031
2055878, 4624783.msg44874437
1769162, 5030366.msg45824108
2309836, 5030682.msg45846469
2146007, 3214257.msg44606484
2039514, 4744419.msg45802818
2055902, 3321571.msg44092427
2055913, 4560783.msg42852848
1082663, 2818350.msg45915771
1285884, 3189648.msg45785038
1539855, 5029191.msg45747179
2055958, 4558052.msg42647890
1720090, 5029992.msg45778874
2293531, 1831620.msg44902546
2252574, 4754927.msg44880347
2293539, 4422068.msg44866922
1960583, 5030487.msg45815062
2293548, 3017154.msg45216547
2047792, 5025096.msg45933913
2252595, 4901699.msg45880817
2293558, 4705627.msg45138416
2293560, 5031240.msg45841839
1695545, 5031901.msg45839762
696129, 5030028.msg45804385
1335108, 3591488.msg45094541
32587, 37166.msg467135
1785678, 5031977.msg45882299
2056023, 2791504.msg41826991
122713, 3351690.msg38979929
1933147, 4421275.msg39417456
2367328, 4968680.msg45690313
1884010, 4600366.msg43652251
1752950, 5033275.msg31130954
1384314, 4825821.msg43542912
1720191, 4899128.msg44928600
1482644, 2698909.msg45867101
1294230, 3649779.msg36779118
2285465, 2910880.msg45872742
1828185, 4571447.msg41208358
2301856, 4996323.msg45817585
2080673, 4470057.msg40969929
1695659, 3070239.msg45827205
2260913, 4815243.msg45583959
1703860, 1184641.msg29724774
1318838, 5031042.msg45891069
1073080, 4931798.msg44498201
1549642, 2235351.msg44586736
1556416, 2088809.msg28268797
1515457, 1085285.msg26970346
1335234, 3659425.msg45472070
1867724, 5030443.msg45843043
1570125, 2709889.msg27713315
1957845, 5028141.msg45825478
1949656, 3535259.msg42211504
2293721, 5005602.msg45585192
1195995, 4720272.msg42621386
1138670, 4886322.msg45720846

Now, i urge everybody to thread with caution... There are numerous reasons why somebody could have gotten a merit. This list is a list of POTENTIAL abusers, but everybody on this list should be treasted as innocent untill proven guilty

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
"In a nutshell, the network works like a distributed timestamp server, stamping the first transaction to spend a coin. It takes advantage of the nature of information being easy to spread but hard to stifle." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713570679
Hero Member
*
Offline Offline

Posts: 1713570679

View Profile Personal Message (Offline)

Ignore
1713570679
Reply with quote  #2

1713570679
Report to moderator
1713570679
Hero Member
*
Offline Offline

Posts: 1713570679

View Profile Personal Message (Offline)

Ignore
1713570679
Reply with quote  #2

1713570679
Report to moderator
mocacinno (OP)
Legendary
*
Offline Offline

Activity: 3360
Merit: 4917


https://merel.mobi => buy facemasks with BTC/LTC


View Profile WWW
September 25, 2018, 08:26:27 AM
 #2

reserved, in case the list in the OP grows so large i can't get everything in a single post...

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
Little Mouse
Legendary
*
Offline Offline

Activity: 2030
Merit: 1974


Marketing Campaign Manager |Telegram ID- @LT_Mouse


View Profile WWW
September 25, 2018, 08:22:30 PM
 #3

From the above list, I randomly took 5 uid and checked.

2 users received merits from nick777 who was tagged abusing merit after the new system. Merited posts are from local board where people can easily abuse.

2 users received merits from sergio red which seems also an abuse to me. He sent both at 4 minutes different on September 19th. I checked the users local time and all of the three are from same zone. Seems they are alt from sergio. Again, the posts he merited, was not worthy in my opinion. It may vary in others opinion though.

The 5th one got merit from someone which seemed fair. It was also in local board, I translated the topic. It was something like, "ETH will be pumped soon." or something like that which was also not worthy actually, imo.

From the above list, I can assume that 80% of those are abusing merit system. Now, it's time we had some proof so that DT can paint them with their reward.

██████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
██████████████████████
.SHUFFLE.COM..███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
█████████████████████
████████████████████
██████████████████████
████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
██████████████████████
██████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
.
...Next Generation Crypto Casino...
Veleor
Legendary
*
Offline Offline

Activity: 1484
Merit: 1653


Rêlêå§ê ¥ðµr MïñÐ


View Profile WWW
October 05, 2018, 08:19:11 PM
Merited by mocacinno (1)
 #4

The format is pretty simple: uid of the receiver, post+msg of the post that got him/her his/her merit he/she needed to re-promote to junior member
I have looked through the links and have found 19 cases when merit were given to bounty reports.


                                             Bounty Reports                                                        Merit From

https://bitcointalk.org/index.php?topic=5012142.msg45858030#msg45858030 [archive]      Aivaryamal
https://bitcointalk.org/index.php?topic=4776598.msg45810421#msg45810421 [archive]      btcgainer24724
https://bitcointalk.org/index.php?topic=4797667.msg45770401#msg45770401 [archive]      cacucacok91
https://bitcointalk.org/index.php?topic=3250468.msg34810258#msg34810258 [archive]      Capradina
https://bitcointalk.org/index.php?topic=4518298.msg45301324#msg45301324 [archive]      cryptocollecter55
https://bitcointalk.org/index.php?topic=4565705.msg43347646#msg43347646 [archive]      daihaxenia
https://bitcointalk.org/index.php?topic=5000635.msg45232780#msg45232780 [archive]      daihaxenia
https://bitcointalk.org/index.php?topic=4577570.msg45727508#msg45727508 [archive]      daihaxenia
https://bitcointalk.org/index.php?topic=5012142.msg45781340#msg45781340 [archive]      Igorluis
https://bitcointalk.org/index.php?topic=4518298.msg45878046#msg45878046 [archive]      kalunomics
https://bitcointalk.org/index.php?topic=4796322.msg44041688#msg44041688 [archive]      luckybit1
https://bitcointalk.org/index.php?topic=4667821.msg45358843#msg45358843 [archive]      luioanh
https://bitcointalk.org/index.php?topic=4430716.msg45761046#msg45761046 [archive]      M.S.I
https://bitcointalk.org/index.php?topic=4622790.msg43417759#msg43417759 [archive]      nick777
https://bitcointalk.org/index.php?topic=4995911.msg45464806#msg45464806 [archive]      Partisson
https://bitcointalk.org/index.php?topic=4885858.msg45754220#msg45754220 [archive]      SakuraBSL
https://bitcointalk.org/index.php?topic=5027303.msg45609087#msg45609087 [archive]      Teguh_vod
https://bitcointalk.org/index.php?topic=4843279.msg45751186#msg45751186 [archive]      waru
https://bitcointalk.org/index.php?topic=5025436.msg45742789#msg45742789 [archive]      Wilkinson

Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!