## <center> Introduction</center> If you feel like trusting your keys to external sites is not a great way to curate content, I've got a 35 dollar lifetime solution for you. Not that many people know that steemit curation bots can even be built on your mobile phones, since singing transactions takes little to no computational power. <center>https://i.imgur.com/fD12skM.png</center> In this tutorial, I'll be showing you how to set up a curation bot on a small arm processor machine, that takes up little to no power, so you can run it with almost no running costs. The specific machine that I'm going to use is __Raspberry Pi 2 Model B__ however the same process applies to any other Raspberry Pi models, Arduino, BeagleBone or any other device that can run linux. ## <center> Needed programs/files/accessories</center> __Raspberry Pi__ - https://www.amazon.com/Raspberry-Pi-RASP-PI-3-Model-Motherboard/dp/B01CD5VC92 ------- __Wifi dongle__ - https://www.amazon.com/FotoFo-USB-WiFi-Adapter-Raspberry/dp/B01I191N48 -------- __Micro SD card__ - https://www.amazon.com/SanDisk-microSD-High-Capacity-microSDHC/dp/B00488G6P8 --- __Micro SD card reader__ - https://www.amazon.com/IOGEAR-MicroSD-Reader-Writer-GFR204SD/dp/B0046TJG1U --- __A copy of raspian(any other linux based operating system will work as well)__ - https://www.raspberrypi.org/downloads/raspbian/ Make sure to download the pixel version. If you have larger than 8gb sd card I'd reccommend Ubuntu mate located here - https://ubuntu-mate.org/raspberry-pi/ You might even consider rokos OS if you want to stake your favorite altcoins meantime - http://rokos.space/core.html ---- __SDFormatter__ - https://www.sdcard.org/downloads/formatter_4/index.html ---- __etcher__ - https://etcher.io/ ---- __Bitwise SSH client__ - https://www.bitvise.com/ssh-client-download --- ### <center> Step by step tutorial </center> ### 1. Format the Micro SD card Get and install __SDFormatter__, when that is done insert your Micro SD card to the reader, open up SDFormatter and make sure format size adjustment is swiched on. Then format the SD card. <center>http://imgur.com/DlD8EYz.gif</center> ### 2. Burn raspbian on the SD card We're going to use Etcher for this process. Burning the image on the SD card is fairly simple and straight forward. <center>https://i.imgur.com/2K9NDwS.gif</center> ### 3. Install raspbian on your raspberry pi and log into your wifi Installing rasbian is done automatically, you just have to wait until it boots up. After it's done booting, just log into your wifi and write down your local ip for the device. You'll be using this ip to ssh into the device. <center>https://i.imgur.com/sE9Eleh.jpg</center> ### 4. SSH into your raspberry with bitvise <center>https://i.imgur.com/AkQBOL0.png</center> The default username is : __pi__ The default password is: __raspberry__ ### 6. Install piston and all other prerequisites bitvise will open up a terminal along with a ftp tunnel, paste the following commands into the terminal to install piston ##### Install screen sudo apt-get install screen ##### Install python with all piston the prerequisites sudo apt-get install python3 sudo apt-get install python3-dev sudo apt-get install python3-pip sudo apt-get install git make automake cmake g++ libssl-dev autoconf libtool sudo apt-get install libboost-thread-dev libboost-date-time-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-signals-dev libboost-serialization-dev libboost-chrono-dev libboost-test-dev libboost-context-dev libboost-locale-dev libboost-coroutine-dev libboost-iostreams-dev sudo apt-get install doxygen perl libreadline-dev libncurses5-dev ##### install piston sudo pip3 install steem-piston Just paste all of theese commands into your terminal one by one to intsall piston with all of the prerequisites ### 7. Compile the curation bot script Make a new folder on your desktop called bot, then create 2 files in that folder called bot.py and votelist.txt so it would look like this <center>https://i.imgur.com/Vr2fb4M.png</center> You can just create 2 text files and rename the extensions to get the .py extension. ##### Edit the bot.py file and paste the following code inside: from steem.steem import Steem from steem.steem import BroadcastingError import threading import time import random import csv my_subscriptions = [] with open('votelist.txt', mode='r') as infile: reader = csv.reader(infile) for rows in reader: v = rows[0] my_subscriptions.append(v) # accounts and passwords account = ["account_goes_here"] posting_key = ["password_goes_here"] # delay in seconds when the bot votes vote_delay = random.randrange(1200,1800) upvote_history = [] def feed(): print("Waiting for new posts by %s\n\n\nGo Oprah!\nGo Winfrey!" % my_subscriptions) steem = Steem(wif=posting_key[0]) for comment in steem.stream_comments(): if comment.author in my_subscriptions: # Comments don't have titles. This is how we can know if we have a post or a comment. if len(comment.title) > 0: # check if we already upvoted this. Sometimes the feed will give duplicates. if comment.identifier in upvote_history: continue print("New post by @%s %s" % (comment.author, url_builder(comment))) workerThread = threading.Thread(name=comment.identifier, target=worker, args=(comment,)) workerThread.start() def url_builder(comment): return "https://steemit.com/%s/%s" % (comment.category, comment.identifier) def worker(worker_comment): time.sleep(vote_delay) try: for (k,v) in enumerate(account): worker_steem = Steem(wif=posting_key[k]) upvote_comment = worker_steem.get_content(worker_comment.identifier) # vote weight 100 full power vote -100 full power flag upvote_comment.vote(100, v) print("@%s====> ^Upvoted^" % upvote_comment.author) upvote_history.append(upvote_comment.identifier) except BroadcastingError as e: print("@%s<- failed" % upvote_comment.author) print(str(e)) if __name__ == "__main__": while True: try: feed() except (KeyboardInterrupt, SystemExit): print("Quitting...") break except Exception as e: traceback.print_exc() print("### Exception Occurred: Restarting...") ### 8. Add your account to the curation bot, also modify the the settings add your account to "your_account_goes_here" add your password to "your_password_goes_here" ##### you can also add multiple account by seperating the accounts and keys with a comma like so: account = ["account1", "account2"] posting_key = ["key1", "key2"] ##### You can modify the delay when the bot votes by altering this line (in seconds) vote_delay = random.randrange(1200,1800) ##### You can also modify the vote weight by altering this line (100 being full power and -100 being full power flag) upvote_comment.vote(100, v) ### 9. Add users to the curation list open up your votelist.txt and add users you want to vote on, each line contains a new user for the bot to vote on ##### So the list would go like so ubg fyrstikken furion contentjunkie xeroc steempowertwins ### 10. Move the files from your desktop to raspberry After you're done adding accounts to your curation list just via bitvise ftp tunnel like so <center>http://imgur.com/krE86Go.gif</center> ### 11. Run your bot To run your bot, you first need to navigate to the bots folder ##### you do that by typing cd bot ##### then you need to run your bot screen python3 bot.py By using that command you're attaching the python script to a screen. So you can close your terminal and log out. ##### Each time you want to know how the bot is doing you type screen -r <center>https://i.imgur.com/Nh6fKBr.png</center> If you want to detach the screen use keyboard shortcut ctrl+a+d If you want to close the script use keyboard shortcut ctrl+c ---- Big thanks to @fyrstikken for releasing the source code for the winfrey bot. You can find the original code for the winfrey bot here: https://steemit.com/socialist-bot/@fyrstikken/the-anonymous-winfrey-bot-upvotes-for-everyone-download-here-easy-steps-for-n00bs Also if you have any questions regarding setting up your own bot, just ask in the comments or contact @ubg in rocket chat. Also a huge thanks to @noganoo for providing me the piston prerequisites.
author | ubg |
---|---|
permlink | how-to-set-up-a-curation-bot-on-raspberry-pi |
category | raspberry |
json_metadata | {"tags":["raspberry","pi","curation","bot"],"users":["fyrstikken","ubg","noganoo"],"image":["https://i.imgur.com/fD12skM.png","http://imgur.com/DlD8EYz.gif","https://i.imgur.com/2K9NDwS.gif","https://i.imgur.com/sE9Eleh.jpg","https://i.imgur.com/AkQBOL0.png","https://i.imgur.com/Vr2fb4M.png","http://imgur.com/krE86Go.gif","https://i.imgur.com/Nh6fKBr.png"],"links":["https://www.amazon.com/Raspberry-Pi-RASP-PI-3-Model-Motherboard/dp/B01CD5VC92","https://www.amazon.com/FotoFo-USB-WiFi-Adapter-Raspberry/dp/B01I191N48","https://www.amazon.com/SanDisk-microSD-High-Capacity-microSDHC/dp/B00488G6P8","https://www.amazon.com/IOGEAR-MicroSD-Reader-Writer-GFR204SD/dp/B0046TJG1U","https://www.raspberrypi.org/downloads/raspbian/","https://ubuntu-mate.org/raspberry-pi/","http://rokos.space/core.html","https://www.sdcard.org/downloads/formatter_4/index.html","https://etcher.io/","https://www.bitvise.com/ssh-client-download","https://steemit.com/socialist-bot/@fyrstikken/the-anonymous-winfrey-bot-upvotes-for-everyone-download-here-easy-steps-for-n00bs"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-01-11 21:13:54 |
last_update | 2017-01-26 20:23:33 |
depth | 0 |
children | 70 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 36.314 HBD |
curator_payout_value | 10.352 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,388 |
author_reputation | 5,237,585,248,428 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,223,433 |
net_rshares | 89,421,566,867,354 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steempty | 0 | 7,258,122,737,085 | 100% | ||
berniesanders | 0 | 17,185,251,863,895 | 100% | ||
penambang | 0 | 52,842,996,640 | 100% | ||
nextgenwitness | 0 | 111,755,895,571 | 100% | ||
fuzzyvest | 0 | 4,926,403,956,673 | 100% | ||
justin | 0 | 373,557,255,176 | 100% | ||
abit | 0 | 27,087,913,481,809 | 100% | ||
nextgencrypto | 0 | 5,452,006,015,834 | 100% | ||
rossco99 | 0 | 270,919,408,653 | 50% | ||
boy | 0 | 4,451,590,019 | 100% | ||
xeroc | 0 | 468,406,382,513 | 50% | ||
bue-witness | 0 | 5,420,448,066 | 100% | ||
bunny | 0 | 878,020,226 | 100% | ||
bue | 0 | 85,320,594,975 | 100% | ||
steemservices | 0 | 274,696,031,812 | 100% | ||
mini | 0 | 2,382,268,203 | 100% | ||
moon | 0 | 303,000,466 | 100% | ||
lovejoy | 0 | 126,461,799,855 | 50% | ||
au1nethyb1 | 0 | 1,250,082,935,017 | 50% | ||
pfunk | 0 | 1,168,797,278,911 | 100% | ||
pairmike | 0 | 49,845,563,789 | 100% | ||
pheonike | 0 | 41,707,037,047 | 50% | ||
healthcare | 0 | 891,530,297 | 100% | ||
daniel.pan | 0 | 1,407,445,019 | 100% | ||
hcf27 | 0 | 5,679,275,392 | 100% | ||
helen.tan | 0 | 409,376,597 | 100% | ||
acidsun | 0 | 26,734,185,620 | 50% | ||
instructor2121 | 0 | 52,258,714,833 | 100% | ||
klye | 0 | 161,465,843,137 | 100% | ||
kevinwong | 0 | 1,047,154,162,416 | 100% | ||
murh | 0 | 1,902,965,920 | 13% | ||
alyssas | 0 | 43,010,905,062 | 100% | ||
blakemiles84 | 0 | 92,258,281,998 | 50% | ||
theshell | 0 | 34,155,684,006 | 50% | ||
drinkzya | 0 | 30,231,324,348 | 100% | ||
noganoo | 0 | 33,591,775,576 | 100% | ||
applecrisp | 0 | 4,093,835,344 | 100% | ||
stellabelle | 0 | 1,730,861,783,147 | 100% | ||
ratel | 0 | 20,245,882,172 | 100% | ||
thecryptodrive | 0 | 134,601,280,166 | 100% | ||
fjccoin | 0 | 4,769,877,415 | 100% | ||
arisa | 0 | 5,155,664,892 | 100% | ||
michaelx | 0 | 9,518,629,942 | 50% | ||
proglobyte | 0 | 1,925,080,845 | 50% | ||
grandpere | 0 | 40,160,817,809 | 80% | ||
albertogm | 0 | 20,334,303,183 | 100% | ||
seth-krings | 0 | 8,415,739,339 | 100% | ||
crok | 0 | 4,506,976,344 | 100% | ||
christoph3 | 0 | 5,876,572,937 | 100% | ||
technology | 0 | 26,720,275,101 | 100% | ||
jparty | 0 | 16,903,162,799 | 100% | ||
tyler-fletcher | 0 | 4,282,456,404 | 100% | ||
razvanelulmarin | 0 | 79,629,386,836 | 100% | ||
fyrstikken | 0 | 54,606,274,218 | 2% | ||
clement | 0 | 12,237,269,837 | 100% | ||
isteemit | 0 | 63,468,795,645 | 100% | ||
skapaneas | 0 | 17,145,042,437 | 100% | ||
auction | 0 | 4,093,645,146 | 100% | ||
venuspcs | 0 | 72,402,045,014 | 100% | ||
sgtechservices | 0 | 11,974,229,647 | 100% | ||
michaellamden68 | 0 | 2,027,817,534 | 100% | ||
thebatchman | 0 | 1,117,025,015 | 4% | ||
artem-sokoloff | 0 | 0 | 100% | ||
matt-a | 0 | 0 | 100% | ||
stranger27 | 0 | 6,134,073,380 | 60% | ||
coderabbitcrypto | 0 | 8,711,435,243 | 100% | ||
ausbitbank | 0 | 61,497,547,462 | 100% | ||
mrwang | 0 | 53,199,886,152 | 100% | ||
vl248 | 0 | 10,786,005,168 | 100% | ||
jesta | 0 | 1,821,922,391,576 | 100% | ||
bitland | 0 | 870,657,848 | 22% | ||
danielkt | 0 | 1,359,037,743 | 100% | ||
jaycobbell | 0 | 11,065,792,605 | 100% | ||
mapipaz | 0 | 0 | 100% | ||
condra | 0 | 45,498,591,123 | 100% | ||
raymondspeaks | 0 | 6,025,477,247 | 100% | ||
bycz | 0 | 15,588,085,236 | 100% | ||
thebatchman1 | 0 | 69,190,249 | 4% | ||
krystle | 0 | 18,913,946,771 | 100% | ||
inertia | 0 | 167,123,295,002 | 100% | ||
arcange | 0 | 62,719,874,335 | 100% | ||
lichtblick | 0 | 106,996,518,276 | 100% | ||
cryptojoy.com | 0 | 1,610,008,591 | 100% | ||
fiona777 | 0 | 4,003,601,480 | 100% | ||
phenom | 0 | 14,293,594,632 | 100% | ||
mynameisbrian | 0 | 72,352,547,776 | 100% | ||
rschenk | 0 | 131,939,090 | 100% | ||
ubg | 0 | 22,147,365,401 | 100% | ||
bones | 0 | 2,352,982,568 | 100% | ||
bola | 0 | 0 | 100% | ||
deanliu | 0 | 73,642,554,113 | 100% | ||
zaebars | 0 | 88,236,681,796 | 100% | ||
kottai | 0 | 336,824,118 | 100% | ||
raymonjohnstone | 0 | 1,884,033,901 | 50% | ||
jedau | 0 | 4,589,003,521 | 100% | ||
sokoloffa | 0 | 3,626,466,284 | 100% | ||
social | 0 | 807,980,780 | 100% | ||
prufarchy | 0 | 114,390,337,877 | 100% | ||
papa-pepper | 0 | 191,586,270,544 | 100% | ||
lemooljiang | 0 | 51,106,622,173 | 100% | ||
kooshikoo | 0 | 11,800,763,301 | 50% | ||
brianphobos | 0 | 36,087,164,144 | 100% | ||
tygergamer | 0 | 13,800,768,561 | 100% | ||
bkkshadow | 0 | 57,625,173,491 | 100% | ||
fabien | 0 | 732,366,698,518 | 100% | ||
williambanks | 0 | 122,066,958,680 | 100% | ||
jed78 | 0 | 9,353,113,078 | 100% | ||
steemdrive | 0 | 103,762,797,428 | 100% | ||
gomeravibz | 0 | 23,924,587,365 | 50% | ||
proglobyte-m1 | 0 | 2,052,373,997 | 30% | ||
craigslist | 0 | 604,606,621 | 100% | ||
felixxx | 0 | 63,183,148,766 | 100% | ||
tingaling | 0 | 1,725,554,706 | 25% | ||
twinner | 0 | 1,178,731,292,734 | 100% | ||
always1success | 0 | 6,352,841,735 | 100% | ||
toxichan | 0 | 7,766,408,996 | 100% | ||
brendio | 0 | 35,690,986,289 | 60% | ||
germansailor | 0 | 1,152,579,654 | 100% | ||
achim86 | 0 | 0 | 100% | ||
glitterfart | 0 | 3,559,303,309,730 | 100% | ||
stephen.king989 | 0 | 13,183,832,489 | 50% | ||
kurtbeil | 0 | 42,077,652,595 | 50% | ||
steemleak | 0 | 6,140,264,737 | 100% | ||
shiri | 0 | 1,470,735,484 | 100% | ||
ipumba | 0 | 5,169,212,260 | 100% | ||
d3nv3r | 0 | 2,850,963,723 | 100% | ||
dolov | 0 | 1,588,420,823 | 70% | ||
bigsambucca | 0 | 719,810,032 | 100% | ||
steemradio | 0 | 1,000,194,758 | 100% | ||
future24 | 0 | 26,134,152,241 | 40% | ||
lexmagnus | 0 | 61,810,748 | 100% | ||
cmorton | 0 | 1,270,350,587 | 25% | ||
vegascomic | 0 | 14,401,483,133 | 100% | ||
lightsplasher | 0 | 60,867,844,247 | 100% | ||
sarita | 0 | 0 | 100% | ||
zentat | 0 | 2,347,665,368 | 50% | ||
orwellnightmare | 0 | 83,859,574 | 100% | ||
nextgen622 | 0 | 485,783,259 | 1% | ||
razberrijam | 0 | 629,687,891 | 100% | ||
rubenalexander | 0 | 34,432,344,392 | 100% | ||
gardoz32 | 0 | 18,527,082,623 | 100% | ||
cryptoblu | 0 | 101,173,333 | 100% | ||
virtualgrowth | 0 | 3,163,945,889 | 10% | ||
jayfox | 0 | 4,320,123,394 | 100% | ||
seadroo22 | 0 | 3,698,529,294 | 100% | ||
dollarvigilante | 0 | 1,181,402,904,961 | 100% | ||
anotherjoe | 0 | 173,819,124,662 | 100% | ||
serejandmyself | 0 | 239,841,586,765 | 100% | ||
mindfreak | 0 | 26,837,002,004 | 100% | ||
awgbibb | 0 | 6,185,786,464 | 100% | ||
neptun | 0 | 122,573,310,900 | 50% | ||
steevc | 0 | 18,613,851,254 | 100% | ||
mrlogic | 0 | 17,152,827,832 | 100% | ||
barrycooper | 0 | 159,949,980,958 | 100% | ||
generation.easy | 0 | 15,745,883,798 | 100% | ||
sethlinson | 0 | 16,532,354,768 | 100% | ||
hilarski | 0 | 168,688,963,912 | 100% | ||
craigwilliamz | 0 | 8,285,874,973 | 100% | ||
slorunner | 0 | 0 | 100% | ||
imag1ne | 0 | 2,665,178,145 | 50% | ||
shadowspub | 0 | 7,056,837,409 | 50% | ||
leno4ek | 0 | 2,201,227,282 | 100% | ||
onlyvoluntary | 0 | 3,293,580,089 | 100% | ||
steembriefing | 0 | 1,285,611,813 | 20% | ||
escapeamericanow | 0 | 3,417,954,601 | 100% | ||
nulliusinverba | 0 | 5,168,827,177 | 100% | ||
runridefly | 0 | 9,842,885,517 | 37% | ||
barrydutton | 0 | 25,493,388,329 | 100% | ||
danfix | 0 | 0 | 100% | ||
mikehere | 0 | 22,098,117,131 | 100% | ||
richardcrill | 0 | 66,992,152,233 | 100% | ||
xanoxt | 0 | 38,499,547,217 | 100% | ||
titusfrost | 0 | 17,881,772,978 | 100% | ||
maryfromsochi | 0 | 4,670,182,266 | 100% | ||
thecyclist | 0 | 1,870,965,649,402 | 100% | ||
zettar | 0 | 1,571,805,289 | 100% | ||
bluehorseshoe | 0 | 22,036,801,098 | 100% | ||
woodendart | 0 | 0 | 100% | ||
kiwideb | 0 | 43,711,125,211 | 100% | ||
renzoarg | 0 | 10,655,529,992 | 100% | ||
finleyexp | 0 | 1,501,930,372 | 100% | ||
dexter-k | 0 | 62,351,007,104 | 100% | ||
charlieshrem | 0 | 1,668,587,616,063 | 100% | ||
tracemayer | 0 | 27,623,373,691 | 100% | ||
burnin | 0 | 11,645,104,374 | 100% | ||
z3r0d4yz | 0 | 914,506,764 | 100% | ||
bitcoinparadise | 0 | 8,780,476,517 | 100% | ||
ballinconscious | 0 | 9,635,256,713 | 100% | ||
rigaronib | 0 | 108,982,583,665 | 100% | ||
rynow | 0 | 34,200,126,085 | 100% | ||
oksano4ka | 0 | 0 | 100% | ||
pickoum | 0 | 21,255,042,498 | 100% | ||
develcuy | 0 | 5,304,256,439 | 100% | ||
meerkat | 0 | 1,151,866,159 | 21% | ||
thefinanceguy | 0 | 13,035,827,512 | 100% | ||
teemsteem | 0 | 94,902,054 | 100% | ||
thegame | 0 | 574,946,324 | 10% | ||
haphazard-hstead | 0 | 23,075,430,228 | 100% | ||
fortinbuff | 0 | 10,187,679,852 | 100% | ||
steembets | 0 | 525,978,611 | 10% | ||
luzcypher | 0 | 74,118,710,498 | 100% | ||
grisha-danunaher | 0 | 12,379,994,525 | 60% | ||
dylanhobalart | 0 | 4,568,378,184 | 100% | ||
steemint | 0 | 1,762,633,475 | 25% | ||
killbis | 0 | 6,247,551,393 | 100% | ||
siniceku | 0 | 11,887,555,181 | 100% | ||
rusteemitblog | 0 | 10,041,429,533 | 100% | ||
michaelstobiersk | 0 | 32,507,589,602 | 100% | ||
cbd | 0 | 183,470,413 | 100% | ||
lydon.sipe | 0 | 17,051,483,824 | 100% | ||
gamer00 | 0 | 75,772,719,829 | 100% | ||
expat | 0 | 97,231,769 | 100% | ||
steemtrail | 0 | 20,436,010,740 | 100% | ||
miqdad | 0 | 140,456,248 | 100% | ||
steemtruth | 0 | 88,663,556,620 | 100% | ||
paulocouto | 0 | 739,614,026 | 100% | ||
nonameslefttouse | 0 | 61,330,822,647 | 100% | ||
unhorsepower777 | 0 | 13,312,952,256 | 100% | ||
tdv.witness | 0 | 26,515,438,577 | 100% | ||
mokluc | 0 | 44,271,278,745 | 100% | ||
ianboil | 0 | 3,155,198,776 | 100% | ||
olga.maslievich | 0 | 0 | 100% | ||
jessamynorchard | 0 | 16,524,121,513 | 100% | ||
steemspeak | 0 | 222,776,844 | 2% | ||
fyrst-witness | 0 | 340,417,376 | 2% | ||
sstefan | 0 | 2,085,976,849 | 20% | ||
joshuaatiemo | 0 | 0 | 100% | ||
bugavi | 0 | 0 | 100% | ||
garvofe | 0 | 5,137,278,770 | 100% | ||
jmehta | 0 | 0 | 100% | ||
steemland.com | 0 | 525,533,575 | 10% | ||
expatembassy | 0 | 90,982,855 | 100% | ||
xer | 0 | 1,470,106,943 | 21% | ||
sqube | 0 | 5,903,393,321 | 3% | ||
gardening-trail | 0 | 1,840,803,920 | 100% | ||
business-trail | 0 | 962,682,105 | 100% | ||
crypto-trail | 0 | 348,721,770 | 100% | ||
chessminator | 0 | 122,041,983 | 100% | ||
foraging-trail | 0 | 1,131,361,393 | 100% | ||
nikflossus | 0 | 42,995,345,351 | 100% | ||
soonsilchicken | 0 | 51,923,094 | 100% | ||
baerdric | 0 | 24,316,924,793 | 100% | ||
steempredict | 0 | 630,273,637 | 100% | ||
teukumukhlis | 0 | 2,349,805,511 | 100% | ||
alex1983ch | 0 | 4,340,284,619 | 100% | ||
technovedanta | 0 | 22,737,550,854 | 100% | ||
steemprentice | 0 | 5,642,032,342 | 10% | ||
reisman | 0 | 2,400,806,159 | 100% | ||
jumaidafajar | 0 | 5,076,364,743 | 100% | ||
illbeyourfriend | 0 | 38,523,328,058 | 100% | ||
engagement | 0 | 2,915,718,036,328 | 100% | ||
bigtakosensei | 0 | 0 | 100% | ||
taskmanager | 0 | 50,305,916,877 | 100% | ||
seablue | 0 | 4,023,092,198 | 50% | ||
timm | 0 | 301,871,319 | 100% | ||
cardboard | 0 | 1,927,701,443 | 30% | ||
richq11 | 0 | 4,439,365,465 | 66% | ||
anthonyadavisii | 0 | 0 | 100% | ||
cryptofreedom | 0 | 3,453,162,025 | 100% | ||
tonicbbleking | 0 | 748,397,376 | 100% | ||
meysam | 0 | 4,820,998,983 | 100% | ||
pizzagate-trail | 0 | 2,226,301,153 | 100% | ||
codydeeds | 0 | 5,531,219,355 | 100% | ||
dxrafi | 0 | 700,885,273 | 100% | ||
steemit.news | 0 | 1,083,114,923 | 100% | ||
simply1moore | 0 | 1,610,958,505 | 100% | ||
throughtheglass | 0 | 3,665,160,938 | 70% | ||
tamersameeh | 0 | 491,647,452 | 100% | ||
pitterpatter | 0 | 0 | 100% | ||
sumthnfrumnuthn | 0 | 3,348,581,544 | 100% | ||
saturndh | 0 | 949,966,885 | 100% | ||
steemnews.online | 0 | 779,239,346 | 100% | ||
sydesjokes | 0 | 0 | 100% | ||
bbkoopsta | 0 | 522,941,931 | 100% | ||
personz | 0 | 6,701,042,156 | 100% | ||
standpoint | 0 | 213,289,914 | 100% | ||
michaeladamparis | 0 | 10,870,453,959 | 100% | ||
chanca | 0 | 0 | 100% | ||
richa.proffy | 0 | 423,380,939 | 100% | ||
triddin | 0 | 29,067,639,541 | 50% | ||
cryptocash | 0 | 240,829,188 | 100% | ||
internutter | 0 | 2,627,180,495 | 40% | ||
barvon | 0 | 0 | 100% | ||
fiction-trail | 0 | 1,759,047,961 | 100% | ||
djsonic | 0 | 0 | 100% | ||
nik69 | 0 | 101,325,298 | 100% | ||
carduran | 0 | 0 | 100% | ||
automaton | 0 | 591,053,979 | 100% | ||
the-steem-store | 0 | 428,019,808 | 100% | ||
poetry-trail | 0 | 600,693,892 | 100% | ||
paleo-trail | 0 | 447,858,068 | 100% | ||
msmrz | 0 | 417,377,882 | 100% | ||
goldfinger | 0 | 417,324,188 | 100% | ||
mbahjambrong | 0 | 417,317,798 | 100% | ||
kalemandra | 0 | 350,545,271 | 100% | ||
steem-munich | 0 | 312,902,651 | 100% | ||
rizkiavonna | 0 | 0 | 50% | ||
rogeer | 0 | 0 | 100% | ||
vegaiq | 0 | 0 | 100% | ||
fahmiauliasfr | 0 | 0 | 100% | ||
radiv | 0 | 0 | 100% | ||
masyl | 0 | 0 | 100% | ||
varwarking | 0 | 0 | 100% | ||
richie0 | 0 | 0 | 100% | ||
artpoet | 0 | 0 | 100% | ||
bewot87 | 0 | 0 | 100% | ||
suheimi45 | 0 | 0 | 100% | ||
herades | 0 | 0 | 100% | ||
evimeria | 0 | 0 | 100% | ||
maxvespia9 | 0 | 0 | 100% | ||
kuttmargo | 0 | 0 | 100% | ||
mona1 | 0 | 0 | 100% | ||
anwarabdullah | 0 | 0 | 100% | ||
lattitude | 0 | 0 | 100% | ||
adam-xsmit | 0 | 0 | 100% | ||
zyepto | 0 | 0 | 100% | ||
kostiayatsuk | 0 | 0 | 100% | ||
inna-yatsuk | 0 | 0 | 100% | ||
agustiansyah | 0 | 0 | 100% | ||
businesswri | 0 | 0 | 100% | ||
fajaragamaza | 0 | 0 | 100% | ||
victorandy | 0 | 0 | 100% | ||
boxmining | 0 | 0 | 100% | ||
muhammadrizal | 0 | 0 | 100% | ||
selected | 0 | 0 | 100% | ||
pepe.maya | 0 | 0 | 100% | ||
andilorenzo | 0 | 0 | 100% | ||
tinachung | 0 | 0 | 100% | ||
fityan | 0 | 0 | 100% | ||
photowebgear | 0 | 0 | 100% | ||
anthonydouglas | 0 | 0 | 100% | ||
hare-anunnaki | 0 | 0 | 100% | ||
carloserp2000 | 0 | 0 | 100% | ||
giovis | 0 | 0 | 100% | ||
bat-junior | 0 | 0 | 100% | ||
bladder777 | 0 | 0 | 100% | ||
alexsam986 | 0 | 0 | 100% | ||
vitorferreira | 0 | 0 | 100% | ||
kebin | 0 | 0 | 100% | ||
urmokas | 0 | 0 | 100% | ||
biggi | 0 | 0 | 100% | ||
bemo | 0 | 0 | 100% | ||
thegreatomski | 0 | 0 | 100% | ||
fadhlo | 0 | 0 | 100% | ||
faras | 0 | 0 | 100% | ||
nristen | 0 | 0 | 100% | ||
deveerei | 0 | 0 | 100% | ||
rustacoin | 0 | 0 | 100% | ||
gregario | 0 | 0 | 100% | ||
panknil | 0 | 0 | 100% | ||
sa1nt | 0 | 0 | 100% | ||
fibonacco | 0 | 0 | 100% | ||
tarbz | 0 | 0 | 100% | ||
pushing.truth | 0 | 0 | 100% | ||
bosmob | 0 | 0 | 100% | ||
grazie | 0 | 0 | 100% | ||
clara-andriessen | 0 | 0 | 100% | ||
kriste | 0 | 0 | 100% | ||
jaider | 0 | 0 | 100% | ||
steemy-stu | 0 | 0 | 100% | ||
jaimeji | 0 | 0 | 100% | ||
zafarynl | 0 | 0 | 100% | ||
loleli29 | 0 | 0 | 100% | ||
mardha | 0 | 0 | 100% | ||
filipbabok | 0 | 0 | 100% | ||
peterveronika | 0 | 0 | 100% | ||
darogaro | 0 | 0 | 100% | ||
nzbluestone | 0 | 0 | 100% | ||
rewaabasheer | 0 | 0 | 100% | ||
cryptonia | 0 | 0 | 100% | ||
gluk73 | 0 | 0 | 100% | ||
hercules85 | 0 | 0 | 100% | ||
crypto570 | 0 | 0 | 100% | ||
jezmacher | 0 | 0 | 100% | ||
umerfarooq | 0 | 0 | 100% | ||
viku8194 | 0 | 0 | 100% | ||
pakram | 0 | 0 | 100% | ||
ai-crypto-tech | 0 | 0 | 100% | ||
mazda07 | 0 | 0 | 100% | ||
adrianus123 | 0 | 0 | 100% | ||
smm11 | 0 | 0 | 100% | ||
l1htne | 0 | 0 | 100% | ||
drbill | 0 | 0 | 100% | ||
sunsetcruise | 0 | 0 | 100% | ||
joseplaza | 0 | 0 | 100% | ||
baknaffek | 0 | 0 | 100% | ||
oep | 0 | 0 | 100% | ||
geebee14 | 0 | 0 | 100% | ||
ryansatterlee | 0 | 0 | 100% | ||
siihaabuur | 0 | 0 | 100% | ||
kert | 0 | 0 | 100% | ||
cantfindf13 | 0 | 0 | 100% | ||
xris.barney | 0 | 0 | 100% | ||
rizvy | 0 | 0 | 100% | ||
gamer132 | 0 | 0 | 100% | ||
liquidgunz | 0 | 0 | 100% | ||
nopenotagain | 0 | 0 | 100% | ||
matthias0136 | 0 | 0 | 100% | ||
steelhearth | 0 | 0 | 100% | ||
raulstana | 0 | 0 | 100% | ||
rgodoy777 | 0 | 0 | 100% | ||
ayushc | 0 | 0 | 100% | ||
borissenko | 0 | 0 | 100% | ||
ibu568 | 0 | 0 | 100% |
Thanks for the detailed tutorial!
author | applecrisp |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t221119454z |
category | raspberry |
json_metadata | {"tags":["raspberry"]} |
created | 2017-01-11 22:11:12 |
last_update | 2017-01-11 22:25:21 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 2,828,526,129,552 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,223,883 |
net_rshares | 3,187,326,690 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tomino | 0 | 3,187,326,690 | 1% |
Great tutorial, I loved the part about the marshmallow pie.
author | appz |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170204t052845309z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-02-04 09:29:15 |
last_update | 2017-02-04 09:29:15 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 23,841,868,426 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,419,434 |
net_rshares | -619,851,995,631 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
noganoo | 0 | -24,723,043,242 | -100% | ||
survival | 0 | -359,372,967 | -100% | ||
arisa | 0 | -4,079,354,097 | -100% | ||
seth-krings | 0 | -5,328,133,269 | -100% | ||
technology | 0 | -16,885,702,756 | -100% | ||
auction | 0 | -2,599,439,664 | -100% | ||
snowden | 0 | -270,636,692 | -100% | ||
hemp | 0 | -1,690,464,209 | -100% | ||
flowers | 0 | -171,890,738 | -100% | ||
coins | 0 | -115,967,854 | -100% | ||
charts | 0 | -115,100,828 | -100% | ||
vape | 0 | -115,100,828 | -100% | ||
soda | 0 | -115,100,828 | -100% | ||
social | 0 | -156,027,939 | -100% | ||
whalepool | 0 | -122,099,103 | -100% | ||
chocolates | 0 | -115,044,053 | -100% | ||
cigarettes | 0 | -114,147,267 | -100% | ||
coding | 0 | -113,922,146 | -100% | ||
hack | 0 | -113,922,115 | -100% | ||
traveling | 0 | -113,922,115 | -100% | ||
exotic | 0 | -64,006,202 | -100% | ||
riosparada | 0 | -30,511,051,385 | -100% | ||
bigsambucca | 0 | -340,819,540 | -100% | ||
diamonds | 0 | -88,699,299 | -100% | ||
future | 0 | -61,500,018 | -100% | ||
scripture | 0 | -59,814,704 | -100% | ||
juice | 0 | -59,814,704 | -100% | ||
warez | 0 | -59,814,704 | -100% | ||
archives | 0 | -59,814,704 | -100% | ||
survivalist | 0 | -58,238,872 | -100% | ||
hardware | 0 | -58,234,174 | -100% | ||
lottery | 0 | -58,208,335 | -100% | ||
recycling | 0 | -58,208,322 | -100% | ||
manufacturing | 0 | -58,184,157 | -100% | ||
plastics | 0 | -58,184,143 | -100% | ||
slorunner | 0 | 0 | -100% | ||
celestial | 0 | 451,918,952 | 100% | ||
dinosaurs | 0 | -55,379,808 | -100% | ||
hacks | 0 | -55,379,808 | -100% | ||
mining | 0 | -51,963,249 | -100% | ||
mine | 0 | -51,963,249 | -100% | ||
proverbs | 0 | -333,903,034 | -100% | ||
its | 0 | -154,956,724 | -100% | ||
cbd | 0 | -183,480,846 | -100% | ||
junk | 0 | -183,470,405 | -100% | ||
hug | 0 | -183,499,364 | -100% | ||
bearcub | 0 | -184,146,847 | -100% | ||
cyberpunk | 0 | -183,499,331 | -100% | ||
blackmarket | 0 | -186,030,485 | -100% | ||
gifts | 0 | -187,595,661 | -100% | ||
int | 0 | -182,750,639 | -100% | ||
child | 0 | -581,413,291 | -100% | ||
mug | 0 | -581,220,522 | -100% | ||
ilk | 0 | -581,120,781 | -100% | ||
jug | 0 | -581,102,845 | -100% | ||
urn | 0 | -581,058,677 | -100% | ||
dat | 0 | -581,022,315 | -100% | ||
qua | 0 | -580,943,851 | -100% | ||
dye | 0 | -580,864,035 | -100% | ||
lob | 0 | -579,879,312 | -100% | ||
leg | 0 | -579,849,706 | -100% | ||
hid | 0 | -579,728,389 | -100% | ||
mow | 0 | -579,671,686 | -100% | ||
saw | 0 | -579,567,565 | -100% | ||
mop | 0 | -579,462,551 | -100% | ||
wee | 0 | -579,347,638 | -100% | ||
wok | 0 | -579,305,457 | -100% | ||
ply | 0 | -579,287,436 | -100% | ||
neu | 0 | -579,163,141 | -100% | ||
sow | 0 | -579,144,626 | -100% | ||
hop | 0 | -579,121,049 | -100% | ||
tup | 0 | -579,102,177 | -100% | ||
tow | 0 | -579,016,831 | -100% | ||
hat | 0 | -579,005,418 | -100% | ||
ish | 0 | -578,985,766 | -100% | ||
hic | 0 | -578,937,066 | -100% | ||
yay | 0 | -578,926,508 | -100% | ||
nay | 0 | -578,906,068 | -100% | ||
soh | 0 | -578,626,116 | -100% | ||
fah | 0 | -578,604,068 | -100% | ||
lah | 0 | -578,586,797 | -100% | ||
yob | 0 | -578,579,694 | -100% | ||
inn | 0 | -578,541,564 | -100% | ||
olf | 0 | -578,490,550 | -100% | ||
omy | 0 | -578,467,671 | -100% | ||
par | 0 | -578,412,158 | -100% | ||
sac | 0 | -578,358,126 | -100% | ||
fur | 0 | -578,328,115 | -100% | ||
pes | 0 | -578,320,462 | -100% | ||
yew | 0 | -578,289,664 | -100% | ||
zho | 0 | -578,249,917 | -100% | ||
vum | 0 | -578,230,879 | -100% | ||
pus | 0 | -578,194,228 | -100% | ||
gad | 0 | -578,105,944 | -100% | ||
wig | 0 | -578,087,774 | -100% | ||
yea | 0 | -578,051,729 | -100% | ||
leu | 0 | -578,034,355 | -100% | ||
hir | 0 | -578,015,689 | -100% | ||
svo | 0 | -577,955,012 | -100% | ||
lav | 0 | -577,937,841 | -100% | ||
haw | 0 | -577,919,652 | -100% | ||
children | 0 | -585,810,720 | -100% | ||
ref | 0 | -574,469,309 | -100% | ||
cud | 0 | -574,432,663 | -100% | ||
otp | 0 | -574,406,662 | -100% | ||
jig | 0 | -574,372,051 | -100% | ||
lye | 0 | -574,353,101 | -100% | ||
pew | 0 | -574,318,756 | -100% | ||
yip | 0 | -574,118,403 | -100% | ||
zig | 0 | -574,061,434 | -100% | ||
evilbot | 0 | -569,304,065 | -100% | ||
pta | 0 | -569,268,427 | -100% | ||
zag | 0 | -569,246,582 | -100% | ||
pec | 0 | -568,951,886 | -100% | ||
waw | 0 | -568,931,300 | -100% | ||
vau | 0 | -568,912,315 | -100% | ||
irk | 0 | -568,846,770 | -100% | ||
mon | 0 | -568,829,427 | -100% | ||
ley | 0 | -568,807,953 | -100% | ||
dau | 0 | -568,744,959 | -100% | ||
exy | 0 | -568,721,885 | -100% | ||
lox | 0 | -568,694,105 | -100% | ||
nid | 0 | -568,677,739 | -100% | ||
gal | 0 | -568,624,266 | -100% | ||
jog | 0 | -568,588,699 | -100% | ||
opt | 0 | -568,577,303 | -100% | ||
wem | 0 | -568,560,389 | -100% | ||
tug | 0 | -568,524,647 | -100% | ||
ubgs | 0 | -568,505,381 | -100% | ||
lulzsec | 0 | -586,244,671 | -100% | ||
acidus | 0 | -568,427,600 | -100% | ||
elventroll | 0 | -555,058,530 | -100% | ||
elven.troll | 0 | -552,025,270 | -100% | ||
guild | 0 | -548,040,116 | -100% | ||
brilliant | 0 | -547,996,596 | -100% | ||
calm | 0 | -547,971,825 | -100% | ||
classy | 0 | -547,842,435 | -100% | ||
alluring | 0 | -547,764,757 | -100% | ||
charming | 0 | -547,731,062 | -100% | ||
magnetic | 0 | -547,681,455 | -100% | ||
gildar | 0 | -486,058,620 | -100% | ||
winning | 0 | -536,311,980 | -100% | ||
worthwhile | 0 | -534,545,469 | -100% | ||
deluxe | 0 | -534,482,060 | -100% | ||
tune | 0 | -534,296,642 | -100% | ||
vocal | 0 | -534,255,952 | -100% | ||
strong | 0 | -534,226,403 | -100% | ||
polite | 0 | -534,235,836 | -100% | ||
favorite | 0 | -534,194,045 | -100% | ||
productive | 0 | -534,164,366 | -100% | ||
heavy | 0 | -534,163,426 | -100% | ||
gilded | 0 | -534,121,462 | -100% | ||
warm | 0 | -534,107,585 | -100% | ||
welcome | 0 | -532,771,116 | -100% | ||
sublime | 0 | -532,728,046 | -100% | ||
excellent | 0 | -532,718,613 | -100% | ||
glorious | 0 | -532,647,125 | -100% | ||
silly | 0 | -532,646,325 | -100% | ||
passionate | 0 | -532,631,937 | -100% | ||
fireandbrimstone | 0 | -532,615,108 | -100% | ||
insane | 0 | -532,614,791 | -100% | ||
heavenly | 0 | -532,600,620 | -100% | ||
splendid | 0 | -532,596,757 | -100% | ||
tawnie | 0 | -532,582,564 | -100% | ||
skilled | 0 | -532,571,392 | -100% | ||
cougar | 0 | -532,537,174 | -100% | ||
great | 0 | -532,531,467 | -100% | ||
skillful | 0 | -532,513,675 | -100% | ||
keen | 0 | -532,513,000 | -100% | ||
acceptable | 0 | -532,486,652 | -100% | ||
left | 0 | -532,485,121 | -100% | ||
fake | 0 | -532,446,178 | -100% | ||
advantage | 0 | -532,445,514 | -100% | ||
greatest | 0 | -532,444,771 | -100% | ||
theft | 0 | -532,410,923 | -100% | ||
prestige | 0 | -532,394,782 | -100% | ||
satisfying | 0 | -532,380,297 | -100% | ||
godly | 0 | -532,344,443 | -100% | ||
tanks | 0 | -532,325,685 | -100% | ||
mild | 0 | -532,303,891 | -100% | ||
moral | 0 | -532,089,220 | -100% | ||
wise | 0 | -532,088,411 | -100% | ||
suit | 0 | -532,022,232 | -100% | ||
ready | 0 | -532,005,440 | -100% | ||
clean | 0 | -532,014,884 | -100% | ||
hot-dog | 0 | -531,970,097 | -100% | ||
honored | 0 | -531,936,210 | -100% | ||
valued | 0 | -531,935,075 | -100% | ||
reserved | 0 | -528,822,948 | -100% | ||
stable | 0 | -528,738,246 | -100% | ||
civilized | 0 | -528,737,381 | -100% | ||
liked | 0 | -528,720,587 | -100% | ||
flavor | 0 | -528,701,595 | -100% | ||
insert | 0 | -528,683,483 | -100% | ||
altar | 0 | -528,662,411 | -100% | ||
shrine | 0 | -528,644,267 | -100% | ||
fandom | 0 | -528,617,299 | -100% | ||
church | 0 | -528,615,437 | -100% | ||
h8d | 0 | -528,601,900 | -100% | ||
select | 0 | -528,600,182 | -100% | ||
minister | 0 | -528,584,851 | -100% | ||
skill | 0 | -528,569,143 | -100% | ||
devoted | 0 | -528,568,944 | -100% | ||
cover | 0 | -528,529,208 | -100% | ||
port | 0 | -528,502,974 | -100% | ||
ship | 0 | -528,502,509 | -100% | ||
model | 0 | -528,469,728 | -100% | ||
yatch | 0 | -528,479,572 | -100% | ||
dear | 0 | -528,458,806 | -100% | ||
harbor | 0 | -528,438,221 | -100% | ||
hole | 0 | -528,436,437 | -100% | ||
booty | 0 | -528,419,976 | -100% | ||
mansion | 0 | -528,401,131 | -100% | ||
tower | 0 | -528,384,959 | -100% | ||
crib | 0 | -528,383,785 | -100% | ||
accept | 0 | -528,311,974 | -100% | ||
trick | 0 | -528,321,752 | -100% | ||
waiting | 0 | -528,320,091 | -100% | ||
cloak | 0 | -528,267,353 | -100% | ||
hour | 0 | -528,265,626 | -100% | ||
picture | 0 | -528,264,574 | -100% | ||
hideout | 0 | -528,256,521 | -100% | ||
tunnel | 0 | -528,230,813 | -100% | ||
room | 0 | -528,230,149 | -100% | ||
replica | 0 | -528,201,090 | -100% | ||
theme | 0 | -528,198,854 | -100% | ||
defend | 0 | -528,178,945 | -100% | ||
shield | 0 | -528,175,657 | -100% | ||
wrap | 0 | -528,163,290 | -100% | ||
prize | 0 | -528,164,923 | -100% | ||
paired | 0 | -528,144,939 | -100% | ||
singular | 0 | -528,144,142 | -100% | ||
motor | 0 | -528,100,880 | -100% | ||
vehicle | 0 | -528,100,084 | -100% | ||
ticker | 0 | -528,080,657 | -100% | ||
floppy | 0 | -528,031,324 | -100% | ||
router | 0 | -528,029,620 | -100% | ||
vcr | 0 | -527,992,780 | -100% | ||
robotic | 0 | -527,991,851 | -100% | ||
bubbles | 0 | -527,914,717 | -100% | ||
buttercup | 0 | -527,934,487 | -100% | ||
bosom | 0 | -527,911,030 | -100% | ||
psyche | 0 | -526,636,940 | -100% | ||
ground | 0 | -526,646,723 | -100% | ||
being | 0 | -526,635,697 | -100% | ||
emotion | 0 | -526,645,546 | -100% | ||
riven | 0 | -526,616,758 | -100% | ||
swain | 0 | -526,614,450 | -100% | ||
karthus | 0 | -526,591,360 | -100% | ||
swans | 0 | -526,568,505 | -100% | ||
projectile | 0 | -526,567,076 | -100% | ||
bolt | 0 | -526,566,219 | -100% | ||
plane | 0 | -526,565,240 | -100% | ||
woodpecker | 0 | -526,537,551 | -100% | ||
gull | 0 | -526,534,595 | -100% | ||
bowl | 0 | -526,533,034 | -100% | ||
milkyway | 0 | -526,532,374 | -100% | ||
toucan | 0 | -526,530,869 | -100% | ||
hummingbird | 0 | -526,501,942 | -100% | ||
humming | 0 | -526,500,897 | -100% | ||
sand | 0 | -526,499,656 | -100% | ||
bulbul | 0 | -526,495,489 | -100% | ||
invoker | 0 | -526,478,062 | -100% | ||
neutral | 0 | -526,477,007 | -100% | ||
oat | 0 | -526,476,414 | -100% | ||
dirt | 0 | -526,474,898 | -100% | ||
soil | 0 | -526,474,173 | -100% | ||
glue | 0 | -526,461,194 | -100% | ||
mushrooms | 0 | -526,446,769 | -100% | ||
relaxed | 0 | -526,445,406 | -100% | ||
involved | 0 | -526,430,739 | -100% | ||
gentle | 0 | -526,420,771 | -100% | ||
friendship | 0 | -526,418,673 | -100% | ||
piety | 0 | -526,391,386 | -100% | ||
lust | 0 | -526,390,727 | -100% | ||
delight | 0 | -526,389,749 | -100% | ||
airplane | 0 | -526,114,907 | -100% | ||
spaceship | 0 | -526,113,788 | -100% | ||
relic | 0 | -526,111,111 | -100% | ||
sorrow | 0 | -526,094,136 | -100% | ||
hate | 0 | -526,093,478 | -100% | ||
playing | 0 | -526,088,311 | -100% | ||
lovin | 0 | -526,081,003 | -100% | ||
fingers | 0 | -526,051,789 | -100% | ||
seaman | 0 | -526,051,273 | -100% | ||
blessing | 0 | -526,049,396 | -100% | ||
dearest | 0 | -526,026,274 | -100% | ||
latvia | 0 | -526,027,862 | -100% | ||
fond | 0 | -526,007,978 | -100% | ||
pesant | 0 | -526,001,375 | -100% | ||
spirited | 0 | -526,000,455 | -100% | ||
eager | 0 | -525,977,432 | -100% | ||
agility | 0 | -525,976,709 | -100% | ||
firm | 0 | -525,959,712 | -100% | ||
work | 0 | -525,955,478 | -100% | ||
venture | 0 | -525,910,825 | -100% | ||
hazard | 0 | -525,899,218 | -100% | ||
heroic | 0 | -525,897,837 | -100% | ||
stunt | 0 | -524,647,767 | -100% | ||
deed | 0 | -524,644,413 | -100% | ||
risk | 0 | -524,643,492 | -100% | ||
flurry | 0 | -524,632,695 | -100% | ||
speculate | 0 | -524,606,267 | -100% | ||
minions | 0 | -524,601,253 | -100% | ||
servers | 0 | -524,596,925 | -100% | ||
waiter | 0 | -524,587,000 | -100% | ||
hoster | 0 | -524,585,179 | -100% | ||
follow | 0 | -524,581,669 | -100% | ||
waitress | 0 | -524,579,180 | -100% | ||
fans | 0 | -524,562,843 | -100% | ||
follower | 0 | -524,541,081 | -100% | ||
ventilator | 0 | -524,538,952 | -100% | ||
backed | 0 | -524,536,661 | -100% | ||
alturist | 0 | -524,514,470 | -100% | ||
wake | 0 | -524,513,363 | -100% | ||
whisper | 0 | -524,511,674 | -100% | ||
sniff | 0 | -524,493,728 | -100% | ||
junkie | 0 | -524,491,711 | -100% | ||
turbine | 0 | -524,490,922 | -100% | ||
turbo | 0 | -524,490,012 | -100% | ||
activity | 0 | -524,476,750 | -100% | ||
tanel | 0 | -524,460,768 | -100% | ||
specialist | 0 | -524,403,333 | -100% | ||
that | 0 | -524,365,847 | -100% | ||
rookie | 0 | -524,353,565 | -100% | ||
nurse | 0 | -524,343,682 | -100% | ||
commander | 0 | -524,328,588 | -100% | ||
l3l | 0 | -524,293,285 | -100% | ||
f0x | 0 | -524,290,426 | -100% | ||
b0t | 0 | -524,274,896 | -100% | ||
b1t | 0 | -524,272,355 | -100% | ||
h0t | 0 | -524,247,824 | -100% | ||
eg0 | 0 | -524,218,871 | -100% | ||
c0p | 0 | -419,247,306 | -100% | ||
m00 | 0 | -419,246,010 | -100% | ||
ac3 | 0 | -419,220,923 | -100% | ||
tw0 | 0 | -419,205,415 | -100% | ||
s0n | 0 | -419,193,800 | -100% | ||
a1r | 0 | -419,193,007 | -100% | ||
tamersameeh | 0 | -460,612,481 | -100% | ||
w0w | 0 | -418,207,297 | -100% | ||
uz1 | 0 | -522,755,738 | -100% | ||
b0b | 0 | -522,754,603 | -100% | ||
c0m | 0 | -522,752,599 | -100% | ||
n3d | 0 | -418,176,871 | -100% | ||
t0d | 0 | -522,717,630 | -100% | ||
m0m | 0 | -418,165,332 | -100% | ||
p00 | 0 | -522,695,386 | -100% | ||
f00 | 0 | -418,157,353 | -100% | ||
k1d | 0 | -418,137,892 | -100% | ||
l0w | 0 | -418,102,399 | -100% | ||
l0v3 | 0 | -522,624,289 | -100% | ||
l0ve | 0 | -418,083,297 | -100% | ||
d00 | 0 | -418,070,996 | -100% | ||
e00 | 0 | -522,598,665 | -100% | ||
follow-up | 0 | -418,043,993 | -100% | ||
x0x0 | 0 | -418,040,717 | -100% | ||
unlimited | 0 | -418,021,787 | -100% | ||
l1e | 0 | -418,032,122 | -100% | ||
b0ss | 0 | -418,031,662 | -100% | ||
og-kush | 0 | -418,031,656 | -100% | ||
ch1na | 0 | -418,020,919 | -100% | ||
executive | 0 | -418,020,904 | -100% | ||
hearts | 0 | -418,031,065 | -100% | ||
pr1ze | 0 | -418,030,932 | -100% | ||
whiz | 0 | -418,030,711 | -100% | ||
i-heart-you | 0 | -418,020,068 | -100% | ||
wub | 0 | -418,040,928 | -100% | ||
adopt | 0 | -418,019,930 | -100% | ||
dispute | 0 | -418,019,921 | -100% | ||
admire | 0 | -418,030,353 | -100% | ||
prefer | 0 | -418,019,755 | -100% | ||
take | 0 | -418,019,746 | -100% | ||
g3t | 0 | -418,019,389 | -100% | ||
healer | 0 | -418,019,216 | -100% | ||
enchanter | 0 | -418,019,169 | -100% | ||
fountain | 0 | -418,018,987 | -100% | ||
fortuneteller | 0 | -418,029,307 | -100% | ||
medium | 0 | -418,018,857 | -100% | ||
necromancer | 0 | -418,028,681 | -100% | ||
sorcerer | 0 | -418,018,227 | -100% | ||
magician | 0 | -418,018,219 | -100% | ||
beam | 0 | -418,018,128 | -100% | ||
feds | 0 | -418,018,107 | -100% | ||
f1sh | 0 | -418,028,542 | -100% | ||
reader | 0 | -418,028,310 | -100% | ||
mystical | 0 | -418,028,118 | -100% | ||
magical | 0 | -418,017,669 | -100% | ||
pokerface | 0 | -418,027,821 | -100% | ||
readme | 0 | -418,014,836 | -100% | ||
skim | 0 | -418,004,382 | -100% | ||
scan | 0 | -418,025,248 | -100% | ||
inspect | 0 | -418,014,800 | -100% | ||
herald | 0 | -418,014,788 | -100% | ||
speak | 0 | -418,014,274 | -100% | ||
survey | 0 | -418,003,808 | -100% | ||
size | 0 | -418,003,567 | -100% | ||
understand | 0 | -418,013,951 | -100% | ||
megabook | 0 | -418,003,312 | -100% | ||
solve | 0 | -418,003,307 | -100% | ||
channel | 0 | -418,013,709 | -100% | ||
prayers | 0 | -418,003,067 | -100% | ||
smite | 0 | -418,002,731 | -100% | ||
chivalry | 0 | -418,002,491 | -100% | ||
charge | 0 | -418,002,481 | -100% | ||
enjoyment | 0 | -418,002,327 | -100% | ||
push | 0 | -418,012,746 | -100% | ||
pull | 0 | -418,002,292 | -100% | ||
defence | 0 | -418,002,145 | -100% | ||
points | 0 | -418,001,990 | -100% | ||
level | 0 | -418,012,432 | -100% | ||
crit | 0 | -480,450,397 | -100% | ||
quest | 0 | -418,012,253 | -100% | ||
grandmaster | 0 | -418,011,652 | -100% | ||
tr0ll | 0 | -418,011,621 | -100% | ||
pikacu | 0 | -418,011,417 | -100% | ||
mussolini | 0 | -418,011,388 | -100% | ||
sto | 0 | -418,011,383 | -100% | ||
sir.isaac.newton | 0 | -418,000,921 | -100% | ||
civilization | 0 | -418,000,668 | -100% | ||
grain | 0 | -418,011,087 | -100% | ||
h1p | 0 | -418,011,079 | -100% | ||
hip-hop | 0 | -418,000,196 | -100% | ||
minute | 0 | -418,010,634 | -100% | ||
first-class | 0 | -418,010,360 | -100% | ||
gifted | 0 | -418,010,333 | -100% | ||
adm1n | 0 | -417,999,701 | -100% | ||
backer | 0 | -417,996,992 | -100% | ||
casin0 | 0 | -417,996,984 | -100% | ||
cas1no | 0 | -417,986,535 | -100% | ||
found | 0 | -417,996,962 | -100% | ||
keygen | 0 | -417,986,507 | -100% | ||
factor | 0 | -417,986,040 | -100% | ||
trojan | 0 | -417,996,266 | -100% | ||
tidy | 0 | -417,985,816 | -100% | ||
addicted-to-you | 0 | -417,985,323 | -100% | ||
youre-awesome | 0 | -417,985,063 | -100% | ||
roses-are-red | 0 | -417,985,035 | -100% | ||
better-half | 0 | -417,995,336 | -100% | ||
week | 0 | -417,994,911 | -100% | ||
year | 0 | -417,984,461 | -100% | ||
carjack | 0 | -417,984,238 | -100% | ||
whip | 0 | -417,983,807 | -100% | ||
priest | 0 | -417,983,795 | -100% | ||
textbook | 0 | -417,983,586 | -100% | ||
sawbones | 0 | -417,982,987 | -100% | ||
bluff | 0 | -417,982,837 | -100% | ||
wheels | 0 | -417,982,823 | -100% | ||
honestly | 0 | -417,993,030 | -100% | ||
motto | 0 | -417,992,765 | -100% | ||
growl | 0 | -417,992,753 | -100% | ||
sharper | 0 | -417,992,746 | -100% | ||
scrub | 0 | -417,982,134 | -100% | ||
paint | 0 | -417,992,159 | -100% | ||
soak | 0 | -417,981,703 | -100% | ||
layer | 0 | -417,991,950 | -100% | ||
well-kept | 0 | -417,981,470 | -100% | ||
viruoso | 0 | -417,966,056 | -100% | ||
versed | 0 | -417,966,034 | -100% | ||
there | 0 | -417,965,843 | -100% | ||
tops | 0 | -417,976,265 | -100% | ||
hitman | 0 | -417,975,864 | -100% | ||
apostle | 0 | -417,965,232 | -100% | ||
gautama | 0 | -417,975,664 | -100% | ||
lineman | 0 | -417,965,107 | -100% | ||
cement | 0 | -417,975,220 | -100% | ||
horn | 0 | -417,964,770 | -100% | ||
a1m | 0 | -417,975,198 | -100% | ||
kosher | 0 | -417,975,182 | -100% | ||
shitsngiggles | 0 | -417,975,151 | -100% | ||
winspiral | 0 | -417,964,704 | -100% | ||
h1gh | 0 | -417,964,615 | -100% | ||
abug | 0 | -417,964,153 | -100% | ||
lesser | 0 | -417,963,980 | -100% | ||
captive | 0 | -417,963,972 | -100% | ||
ideal | 0 | -417,963,827 | -100% | ||
swell | 0 | -417,973,999 | -100% | ||
wise-man | 0 | -417,973,775 | -100% | ||
merch | 0 | -417,973,753 | -100% | ||
ranks | 0 | -417,944,286 | -100% | ||
botnetwork | 0 | -417,944,278 | -100% | ||
b0tn3t | 0 | -417,944,257 | -100% | ||
dwarf | 0 | -417,954,613 | -100% | ||
dragonborn | 0 | -417,944,170 | -100% | ||
legolas | 0 | -417,943,960 | -100% | ||
gimli | 0 | -417,943,950 | -100% | ||
bromir | 0 | -417,943,944 | -100% | ||
figwit | 0 | -417,943,517 | -100% | ||
helm | 0 | -417,943,498 | -100% | ||
horns | 0 | -417,953,816 | -100% | ||
plate | 0 | -417,943,372 | -100% | ||
megaton | 0 | -417,943,236 | -100% | ||
hobbit | 0 | -417,943,201 | -100% | ||
r2-d2 | 0 | -417,942,721 | -100% | ||
optimus | 0 | -417,953,083 | -100% | ||
rayman | 0 | -417,952,769 | -100% | ||
worm | 0 | -417,942,322 | -100% | ||
g00gl3 | 0 | -417,941,571 | -100% | ||
oo7 | 0 | -417,941,564 | -100% | ||
snare | 0 | -417,951,946 | -100% | ||
incentive | 0 | -417,940,940 | -100% | ||
protection | 0 | -417,940,426 | -100% | ||
snowfall | 0 | -417,950,850 | -100% | ||
groot | 0 | -417,931,675 | -100% | ||
vendetta | 0 | -417,941,798 | -100% | ||
the.godfather | 0 | -417,931,187 | -100% | ||
obi-wan | 0 | -417,941,609 | -100% | ||
nightcrawler | 0 | -417,941,502 | -100% | ||
t-800 | 0 | -417,941,161 | -100% | ||
bride | 0 | -417,941,144 | -100% | ||
pac.man | 0 | -417,930,348 | -100% | ||
haunted | 0 | -417,940,779 | -100% | ||
millie | 0 | -417,940,252 | -100% | ||
littlemy | 0 | -417,929,448 | -100% | ||
moominmamma | 0 | -417,928,996 | -100% | ||
moominpappa | 0 | -417,939,432 | -100% | ||
starfire | 0 | -417,928,866 | -100% | ||
sylvester | 0 | -417,939,295 | -100% | ||
speedy | 0 | -417,939,282 | -100% | ||
gonzales | 0 | -417,939,019 | -100% | ||
dexters | 0 | -417,928,374 | -100% | ||
laboratory | 0 | -417,928,038 | -100% | ||
doubledecker | 0 | -417,938,458 | -100% | ||
pomegranate | 0 | -417,927,779 | -100% | ||
fearless | 0 | -417,927,645 | -100% | ||
goodyear | 0 | -417,927,604 | -100% | ||
clementine | 0 | -417,927,155 | -100% | ||
garlic | 0 | -417,927,110 | -100% | ||
catnip | 0 | -417,927,068 | -100% | ||
tomato | 0 | -417,927,050 | -100% | ||
peppermint | 0 | -417,927,032 | -100% | ||
spearmint | 0 | -417,937,463 | -100% | ||
lemongrass | 0 | -417,923,715 | -100% | ||
poet-tree | 0 | -417,923,666 | -100% | ||
cedar | 0 | -417,933,360 | -100% | ||
fortitude | 0 | -417,933,343 | -100% | ||
fairness | 0 | -417,922,767 | -100% | ||
rep | 0 | -417,922,538 | -100% | ||
character | 0 | -417,932,959 | -100% | ||
repute | 0 | -417,922,035 | -100% | ||
palace | 0 | -417,922,006 | -100% | ||
chateau | 0 | -417,921,990 | -100% | ||
fort | 0 | -417,932,411 | -100% | ||
stormtrooper | 0 | -417,921,750 | -100% | ||
stronghold | 0 | -417,932,178 | -100% | ||
hold | 0 | -417,921,725 | -100% | ||
keep | 0 | -417,921,716 | -100% | ||
wall-e | 0 | -417,932,122 | -100% | ||
wordshop | 0 | -417,921,433 | -100% | ||
ed-209 | 0 | -417,921,412 | -100% | ||
joyful | 0 | -417,921,353 | -100% | ||
bouncer | 0 | -417,920,433 | -100% | ||
vital | 0 | -417,920,421 | -100% | ||
fitting | 0 | -417,930,851 | -100% | ||
paddle | 0 | -417,920,388 | -100% | ||
ballista | 0 | -417,920,375 | -100% | ||
shadowline | 0 | -417,930,709 | -100% | ||
e30 | 0 | -417,920,218 | -100% | ||
e46 | 0 | -417,919,791 | -100% | ||
e60 | 0 | -417,930,229 | -100% | ||
f-1 | 0 | -417,919,779 | -100% | ||
e38 | 0 | -417,913,235 | -100% | ||
f01 | 0 | -417,913,039 | -100% | ||
f02 | 0 | -417,913,033 | -100% | ||
f03 | 0 | -417,923,468 | -100% | ||
f10 | 0 | -417,923,460 | -100% | ||
f12 | 0 | -417,922,878 | -100% | ||
f15 | 0 | -417,912,427 | -100% | ||
f21 | 0 | -417,912,153 | -100% | ||
f20 | 0 | -417,912,149 | -100% | ||
f22 | 0 | -417,912,147 | -100% | ||
f23 | 0 | -417,911,966 | -100% | ||
f30 | 0 | -417,911,957 | -100% | ||
e70 | 0 | -417,922,279 | -100% | ||
f45 | 0 | -417,921,764 | -100% | ||
f46 | 0 | -417,911,318 | -100% | ||
e12 | 0 | -417,921,368 | -100% | ||
e23 | 0 | -417,910,918 | -100% | ||
shiny | 0 | -417,910,512 | -100% | ||
chest | 0 | -417,910,503 | -100% | ||
l00t | 0 | -417,920,730 | -100% | ||
dunk | 0 | -417,920,491 | -100% | ||
flood | 0 | -417,909,364 | -100% | ||
virtue | 0 | -417,909,358 | -100% | ||
sustain | 0 | -417,919,483 | -100% | ||
invite | 0 | -417,792,422 | -100% | ||
south-park | 0 | -417,792,412 | -100% | ||
breakfest | 0 | -417,786,330 | -100% | ||
button | 0 | -417,786,033 | -100% | ||
western | 0 | -417,786,031 | -100% | ||
oldie | 0 | -417,796,472 | -100% | ||
station | 0 | -417,786,024 | -100% | ||
kite | 0 | -417,796,254 | -100% | ||
pipe | 0 | -417,785,803 | -100% | ||
educators | 0 | -417,785,340 | -100% | ||
banner | 0 | -417,785,338 | -100% | ||
forums | 0 | -417,785,336 | -100% | ||
curry | 0 | -417,784,658 | -100% | ||
eyes | 0 | -417,795,097 | -100% | ||
dot.dot | 0 | -417,795,096 | -100% | ||
curve | 0 | -417,795,094 | -100% | ||
ebook | 0 | -417,784,225 | -100% | ||
colossus | 0 | -417,784,222 | -100% | ||
bogus | 0 | -417,794,269 | -100% | ||
venom | 0 | -417,783,826 | -100% | ||
velociraptor | 0 | -417,783,826 | -100% | ||
phenomenon | 0 | -417,783,825 | -100% | ||
smazing | 0 | -417,794,267 | -100% | ||
radii | 0 | -417,783,822 | -100% | ||
aureate | 0 | -417,794,263 | -100% | ||
exile | 0 | -417,783,609 | -100% | ||
inside | 0 | -417,783,609 | -100% | ||
outside | 0 | -417,783,608 | -100% | ||
agelast | 0 | -417,794,049 | -100% | ||
augment | 0 | -417,783,607 | -100% | ||
nuance | 0 | -417,794,048 | -100% | ||
pseudo | 0 | -417,783,604 | -100% | ||
ichor | 0 | -417,783,292 | -100% | ||
at0m | 0 | -417,793,733 | -100% | ||
plethora | 0 | -417,783,289 | -100% | ||
obverse | 0 | -3,164,757,530 | -100% | ||
paragon | 0 | -417,783,279 | -100% | ||
nummy | 0 | -417,793,713 | -100% | ||
bomber | 0 | -417,782,865 | -100% | ||
shocker | 0 | -417,782,864 | -100% | ||
bump | 0 | -417,793,305 | -100% | ||
yuu | 0 | -417,782,863 | -100% | ||
theropods | 0 | -417,793,303 | -100% | ||
wyvern | 0 | -417,782,859 | -100% | ||
firefighter | 0 | -417,782,434 | -100% | ||
pii | 0 | -417,782,432 | -100% | ||
genii | 0 | -417,782,431 | -100% | ||
ghetto | 0 | -417,781,892 | -100% | ||
doodlesack | 0 | -417,792,334 | -100% | ||
warlord | 0 | -417,781,891 | -100% | ||
sough | 0 | -417,781,890 | -100% | ||
shaders | 0 | -417,781,719 | -100% | ||
polygon | 0 | -417,781,717 | -100% | ||
shader | 0 | -417,792,159 | -100% | ||
pavilion | 0 | -417,781,714 | -100% | ||
forver | 0 | -417,781,371 | -100% | ||
vivify | 0 | -417,781,369 | -100% | ||
amazeballs | 0 | -417,791,810 | -100% | ||
buz | 0 | -417,781,366 | -100% | ||
f0g | 0 | -417,791,554 | -100% | ||
anthem | 0 | -417,781,067 | -100% | ||
somber | 0 | -417,791,508 | -100% | ||
snape | 0 | -417,781,065 | -100% | ||
vengance | 0 | -417,781,064 | -100% | ||
snowing | 0 | -417,779,864 | -100% | ||
with | 0 | -417,748,982 | -100% | ||
from | 0 | -417,748,977 | -100% | ||
have | 0 | -417,748,970 | -100% | ||
some | 0 | -417,748,613 | -100% | ||
make | 0 | -417,748,611 | -100% | ||
come | 0 | -417,748,407 | -100% | ||
other | 0 | -417,748,407 | -100% | ||
cold | 0 | -417,748,406 | -100% | ||
than | 0 | -417,748,405 | -100% | ||
over | 0 | -417,748,082 | -100% | ||
thing | 0 | -417,748,081 | -100% | ||
after | 0 | -417,748,079 | -100% | ||
need | 0 | -417,747,782 | -100% | ||
state | 0 | -417,747,781 | -100% | ||
leaves | 0 | -417,747,780 | -100% | ||
really | 0 | -417,747,778 | -100% | ||
leave | 0 | -417,747,777 | -100% | ||
group | 0 | -417,747,538 | -100% | ||
show | 0 | -417,747,538 | -100% | ||
company | 0 | -417,747,537 | -100% | ||
such | 0 | -417,747,536 | -100% | ||
program | 0 | -417,747,535 | -100% | ||
country | 0 | -417,747,530 | -100% | ||
part | 0 | -417,747,519 | -100% | ||
father | 0 | -417,747,157 | -100% | ||
often | 0 | -417,747,156 | -100% | ||
service | 0 | -417,747,155 | -100% | ||
move | 0 | -417,747,154 | -100% | ||
political | 0 | -417,746,860 | -100% | ||
included | 0 | -417,746,860 | -100% | ||
names | 0 | -417,746,858 | -100% | ||
mr-president | 0 | -417,746,857 | -100% | ||
later | 0 | -417,746,856 | -100% | ||
winners | 0 | -417,746,852 | -100% | ||
anything | 0 | -417,746,501 | -100% | ||
parent | 0 | -417,746,499 | -100% | ||
levels | 0 | -417,746,499 | -100% | ||
together | 0 | -417,746,497 | -100% | ||
growing | 0 | -417,746,221 | -100% | ||
result | 0 | -417,746,220 | -100% | ||
hangover | 0 | -417,746,219 | -100% | ||
noon | 0 | -417,746,217 | -100% | ||
force | 0 | -417,745,885 | -100% | ||
remember | 0 | -417,745,884 | -100% | ||
expect | 0 | -417,745,646 | -100% | ||
expected | 0 | -417,745,646 | -100% | ||
plan | 0 | -417,745,645 | -100% | ||
senpai | 0 | -417,745,644 | -100% | ||
nation | 0 | -417,745,643 | -100% | ||
interest | 0 | -417,745,642 | -100% | ||
homie | 0 | -417,745,369 | -100% | ||
suggestion | 0 | -417,745,368 | -100% | ||
role | 0 | -417,745,026 | -100% | ||
economic | 0 | -417,745,025 | -100% | ||
return | 0 | -417,745,024 | -100% | ||
effort | 0 | -417,744,651 | -100% | ||
road | 0 | -417,744,650 | -100% | ||
views | 0 | -417,744,649 | -100% | ||
possible | 0 | -417,744,648 | -100% | ||
finally | 0 | -417,744,646 | -100% | ||
town | 0 | -417,744,644 | -100% | ||
explain | 0 | -417,744,637 | -100% | ||
thank | 0 | -417,744,333 | -100% | ||
season | 0 | -417,744,332 | -100% | ||
society | 0 | -417,744,330 | -100% | ||
pick | 0 | -417,744,012 | -100% | ||
wear | 0 | -417,744,011 | -100% | ||
everyone | 0 | -417,744,010 | -100% | ||
official | 0 | -417,744,007 | -100% | ||
couple | 0 | -417,743,683 | -100% | ||
product | 0 | -417,743,679 | -100% | ||
image | 0 | -417,743,676 | -100% | ||
broker | 0 | -417,743,319 | -100% | ||
catch | 0 | -417,743,026 | -100% | ||
hundred | 0 | -417,743,024 | -100% | ||
attention | 0 | -417,743,023 | -100% | ||
likely | 0 | -417,743,022 | -100% | ||
opportunity | 0 | -417,742,722 | -100% | ||
letter | 0 | -417,742,721 | -100% | ||
floor | 0 | -417,742,720 | -100% | ||
thermite | 0 | -417,742,718 | -100% | ||
material | 0 | -417,742,332 | -100% | ||
defences | 0 | -417,742,331 | -100% | ||
involve | 0 | -417,742,328 | -100% | ||
quickly | 0 | -417,731,027 | -100% | ||
fight | 0 | -417,731,026 | -100% | ||
past | 0 | -417,731,025 | -100% | ||
drop | 0 | -417,730,705 | -100% | ||
colors | 0 | -417,730,704 | -100% | ||
n0s | 0 | -417,730,703 | -100% | ||
common | 0 | -417,730,703 | -100% | ||
race | 0 | -417,730,702 | -100% | ||
shared | 0 | -417,730,701 | -100% | ||
pages | 0 | -417,730,701 | -100% | ||
respond | 0 | -417,730,476 | -100% | ||
articles | 0 | -417,730,476 | -100% | ||
decade | 0 | -417,730,474 | -100% | ||
career | 0 | -417,729,904 | -100% | ||
t-v | 0 | -417,729,903 | -100% | ||
u-s-a | 0 | -417,729,902 | -100% | ||
r-e | 0 | -417,729,900 | -100% | ||
meet | 0 | -417,729,635 | -100% | ||
meeting | 0 | -417,729,635 | -100% | ||
i-f | 0 | -417,729,633 | -100% | ||
training | 0 | -417,729,276 | -100% | ||
feelings | 0 | -417,729,275 | -100% | ||
hook | 0 | -417,729,274 | -100% | ||
p-m | 0 | -417,729,273 | -100% | ||
skiller | 0 | -417,729,272 | -100% | ||
guesses | 0 | -417,728,490 | -100% | ||
seats | 0 | -417,728,489 | -100% | ||
visit | 0 | -417,728,487 | -100% | ||
legal | 0 | -417,728,465 | -100% | ||
popularity | 0 | -417,728,075 | -100% | ||
statement | 0 | -417,728,074 | -100% | ||
tradition | 0 | -417,728,073 | -100% | ||
reveal | 0 | -417,727,670 | -100% | ||
camera | 0 | -417,727,667 | -100% | ||
shake | 0 | -417,727,666 | -100% | ||
treat | 0 | -417,727,660 | -100% | ||
evening | 0 | -417,727,278 | -100% | ||
mention | 0 | -417,727,278 | -100% | ||
painting | 0 | -417,727,276 | -100% | ||
middle | 0 | -417,727,274 | -100% | ||
detail | 0 | -417,727,268 | -100% | ||
yard | 0 | -417,727,143 | -100% | ||
newspaper | 0 | -417,726,927 | -100% | ||
audience | 0 | -417,726,927 | -100% | ||
majority | 0 | -417,726,926 | -100% | ||
born | 0 | -417,726,925 | -100% | ||
fastest | 0 | -417,726,925 | -100% | ||
magazine | 0 | -417,726,924 | -100% | ||
safety | 0 | -417,726,608 | -100% | ||
trooper | 0 | -417,726,607 | -100% | ||
income | 0 | -417,726,606 | -100% | ||
originality | 0 | -417,726,601 | -100% | ||
labor | 0 | -417,726,290 | -100% | ||
experience | 0 | -417,726,289 | -100% | ||
variety | 0 | -417,726,288 | -100% | ||
feature | 0 | -417,726,285 | -100% | ||
flawed | 0 | -417,725,848 | -100% | ||
weekend | 0 | -417,725,848 | -100% | ||
battle | 0 | -417,725,847 | -100% | ||
afternoon | 0 | -417,725,843 | -100% | ||
dozen | 0 | -417,725,843 | -100% | ||
attempt | 0 | -417,725,475 | -100% | ||
a-u | 0 | -417,725,475 | -100% | ||
strength | 0 | -417,725,474 | -100% | ||
village | 0 | -417,725,473 | -100% | ||
apartment | 0 | -417,725,468 | -100% | ||
order | 0 | -417,725,064 | -100% | ||
feed | 0 | -417,725,063 | -100% | ||
operator | 0 | -417,725,062 | -100% | ||
folk | 0 | -417,725,057 | -100% | ||
survive | 0 | -417,725,057 | -100% | ||
document | 0 | -417,724,637 | -100% | ||
shoe | 0 | -417,724,635 | -100% | ||
extend | 0 | -417,724,635 | -100% | ||
native | 0 | -417,724,634 | -100% | ||
following | 0 | -417,724,308 | -100% | ||
train | 0 | -417,724,307 | -100% | ||
tulips | 0 | -417,724,307 | -100% | ||
academic | 0 | -417,724,304 | -100% | ||
trains | 0 | -417,723,946 | -100% | ||
lots | 0 | -417,723,945 | -100% | ||
expand | 0 | -417,723,944 | -100% | ||
expression | 0 | -417,723,932 | -100% | ||
perfection | 0 | -417,686,025 | -100% | ||
planets | 0 | -417,685,402 | -100% | ||
purrfection | 0 | -417,685,400 | -100% | ||
kittycat | 0 | -417,684,979 | -100% | ||
sugary | 0 | -417,684,977 | -100% | ||
bearhug | 0 | -417,684,976 | -100% | ||
bearhugs | 0 | -417,684,811 | -100% | ||
limit | 0 | -417,684,811 | -100% | ||
profits | 0 | -417,684,810 | -100% | ||
kitteh | 0 | -417,674,339 | -100% | ||
mewment | 0 | -417,674,338 | -100% | ||
movement | 0 | -417,674,337 | -100% | ||
persuasive | 0 | -417,674,331 | -100% | ||
clap | 0 | -417,674,077 | -100% | ||
ruff | 0 | -417,674,073 | -100% | ||
moot | 0 | -417,673,886 | -100% | ||
outcome | 0 | -417,673,670 | -100% | ||
sheet | 0 | -417,673,668 | -100% | ||
branch | 0 | -417,673,668 | -100% | ||
relief | 0 | -417,673,667 | -100% | ||
late | 0 | -417,673,665 | -100% | ||
used | 0 | -417,673,654 | -100% | ||
meanwhile | 0 | -417,673,434 | -100% | ||
tooth | 0 | -417,673,433 | -100% | ||
tear | 0 | -417,673,432 | -100% | ||
pour | 0 | -417,673,432 | -100% | ||
range | 0 | -417,673,431 | -100% | ||
stretch | 0 | -417,672,960 | -100% | ||
volume | 0 | -417,672,959 | -100% | ||
surprise | 0 | -417,672,958 | -100% | ||
industrial | 0 | -417,672,957 | -100% | ||
everywhere | 0 | -417,672,599 | -100% | ||
multiply | 0 | -417,672,598 | -100% | ||
overall | 0 | -417,672,596 | -100% | ||
divide | 0 | -417,672,593 | -100% | ||
route | 0 | -417,672,241 | -100% | ||
multiple | 0 | -417,672,240 | -100% | ||
essential | 0 | -417,672,240 | -100% | ||
tied | 0 | -417,672,239 | -100% | ||
upper | 0 | -417,672,237 | -100% | ||
resolution | 0 | -417,671,919 | -100% | ||
increase | 0 | -417,671,917 | -100% | ||
beside | 0 | -417,671,916 | -100% | ||
proud | 0 | -417,671,914 | -100% | ||
increased | 0 | -417,671,643 | -100% | ||
increasing | 0 | -417,671,642 | -100% | ||
masses | 0 | -417,671,637 | -100% | ||
noise | 0 | -417,671,332 | -100% | ||
unusual | 0 | -417,671,330 | -100% | ||
useful | 0 | -417,671,329 | -100% | ||
succeed | 0 | -417,671,328 | -100% | ||
plenty | 0 | -417,671,321 | -100% | ||
beetle | 0 | -417,670,907 | -100% | ||
approval | 0 | -417,670,907 | -100% | ||
list | 0 | -417,670,905 | -100% | ||
knock | 0 | -417,670,904 | -100% | ||
suspect | 0 | -417,670,615 | -100% | ||
request | 0 | -417,670,615 | -100% | ||
dramatic | 0 | -417,670,614 | -100% | ||
emotions | 0 | -417,670,613 | -100% | ||
priority | 0 | -417,670,612 | -100% | ||
marker | 0 | -417,669,979 | -100% | ||
recover | 0 | -417,669,978 | -100% | ||
agenda | 0 | -417,669,961 | -100% | ||
roof | 0 | -417,669,960 | -100% | ||
shout | 0 | -417,669,715 | -100% | ||
existing | 0 | -417,669,712 | -100% | ||
exist | 0 | -417,669,711 | -100% | ||
chips | 0 | -417,669,358 | -100% | ||
bend | 0 | -417,669,302 | -100% | ||
shall | 0 | -417,669,086 | -100% | ||
muffins | 0 | -417,668,582 | -100% | ||
twinkles | 0 | -417,668,568 | -100% | ||
steemwinners | 0 | -417,667,691 | -100% | ||
h-p | 0 | -417,667,689 | -100% | ||
formal | 0 | -417,667,334 | -100% | ||
pose | 0 | -417,666,740 | -100% | ||
poses | 0 | -417,666,739 | -100% | ||
p0t | 0 | -417,666,460 | -100% | ||
tale | 0 | -417,666,458 | -100% | ||
m-y | 0 | -417,666,458 | -100% | ||
mines | 0 | -417,665,991 | -100% | ||
knife | 0 | -417,665,803 | -100% | ||
potatoes | 0 | -417,665,802 | -100% | ||
offline | 0 | -417,665,608 | -100% | ||
dust | 0 | -417,665,468 | -100% | ||
v-s | 0 | -417,665,462 | -100% | ||
intense | 0 | -417,665,152 | -100% | ||
employer | 0 | -417,665,151 | -100% | ||
shock | 0 | -417,664,928 | -100% | ||
retire | 0 | -417,664,927 | -100% | ||
competitive | 0 | -417,652,533 | -100% | ||
habits | 0 | -417,652,532 | -100% | ||
parking | 0 | -417,652,318 | -100% | ||
symbols | 0 | -417,652,316 | -100% | ||
entry | 0 | -417,652,315 | -100% | ||
prospect | 0 | -417,652,313 | -100% | ||
traders | 0 | -417,651,989 | -100% | ||
makers | 0 | -417,651,989 | -100% | ||
boots | 0 | -417,651,988 | -100% | ||
illustrate | 0 | -417,651,986 | -100% | ||
creatures | 0 | -417,651,721 | -100% | ||
usual | 0 | -417,651,720 | -100% | ||
equality | 0 | -417,651,715 | -100% | ||
breakfast | 0 | -417,651,516 | -100% | ||
so-called | 0 | -417,651,515 | -100% | ||
twins | 0 | -417,651,513 | -100% | ||
commands | 0 | -417,651,512 | -100% | ||
toss | 0 | -417,651,245 | -100% | ||
spoon | 0 | -417,651,244 | -100% | ||
tablespoon | 0 | -417,651,214 | -100% | ||
crucial | 0 | -417,650,913 | -100% | ||
dimension | 0 | -417,650,912 | -100% | ||
fellow | 0 | -417,650,911 | -100% | ||
teaspoon | 0 | -417,650,910 | -100% | ||
bury | 0 | -417,650,905 | -100% | ||
mixture | 0 | -417,650,898 | -100% | ||
teenager | 0 | -417,650,706 | -100% | ||
flags | 0 | -417,650,705 | -100% | ||
watched | 0 | -417,650,705 | -100% | ||
watches | 0 | -417,650,473 | -100% | ||
m00n | 0 | -417,650,473 | -100% | ||
slips | 0 | -417,650,472 | -100% | ||
soon | 0 | -417,650,470 | -100% | ||
straight | 0 | -417,650,469 | -100% | ||
historic | 0 | -417,650,289 | -100% | ||
poem | 0 | -417,650,286 | -100% | ||
apparent | 0 | -417,650,281 | -100% | ||
drawing | 0 | -417,649,970 | -100% | ||
concert | 0 | -417,649,940 | -100% | ||
comments | 0 | -417,649,572 | -100% | ||
prison | 0 | -417,649,571 | -100% | ||
historian | 0 | -417,649,570 | -100% | ||
p0p | 0 | -417,649,343 | -100% | ||
quietly | 0 | -417,649,341 | -100% | ||
onions | 0 | -417,649,075 | -100% | ||
routine | 0 | -417,649,074 | -100% | ||
awards | 0 | -417,649,073 | -100% | ||
snap | 0 | -417,648,862 | -100% | ||
dreaming | 0 | -417,648,861 | -100% | ||
normally | 0 | -417,648,861 | -100% | ||
ingredient | 0 | -417,648,859 | -100% | ||
gears | 0 | -417,648,858 | -100% | ||
sweep | 0 | -417,648,552 | -100% | ||
chemical | 0 | -417,648,552 | -100% | ||
drama | 0 | -417,648,550 | -100% | ||
lawsuit | 0 | -417,648,243 | -100% | ||
cheek | 0 | -417,648,243 | -100% | ||
string | 0 | -417,648,241 | -100% | ||
tissue | 0 | -417,648,240 | -100% | ||
virus | 0 | -417,647,519 | -100% | ||
spokesman | 0 | -417,647,518 | -100% | ||
senator | 0 | -417,646,963 | -100% | ||
paused | 0 | -417,646,963 | -100% | ||
guarantee | 0 | -417,646,961 | -100% | ||
reflection | 0 | -417,646,959 | -100% | ||
detect | 0 | -417,646,958 | -100% | ||
remote | 0 | -417,646,955 | -100% | ||
journal | 0 | -417,646,775 | -100% | ||
imply | 0 | -417,646,775 | -100% | ||
similarity | 0 | -417,646,773 | -100% | ||
surprising | 0 | -417,646,771 | -100% | ||
laffn | 0 | -417,645,849 | -100% | ||
naturally | 0 | -417,645,846 | -100% | ||
crowdsource | 0 | -417,645,828 | -100% | ||
mutual | 0 | -417,645,802 | -100% | ||
crowdsourcing | 0 | -417,645,795 | -100% | ||
frozen | 0 | -417,645,193 | -100% | ||
baked | 0 | -417,645,192 | -100% | ||
crowd-sourcing | 0 | -417,645,158 | -100% | ||
slow-motion | 0 | -417,645,152 | -100% | ||
j0y | 0 | -417,644,118 | -100% | ||
counter | 0 | -417,644,117 | -100% | ||
tire | 0 | -417,643,911 | -100% | ||
skater | 0 | -417,643,903 | -100% | ||
proof | 0 | -417,643,652 | -100% | ||
h-q | 0 | -417,643,650 | -100% | ||
you-are-special | 0 | -417,643,623 | -100% | ||
tongue | 0 | -417,630,201 | -100% | ||
license | 0 | -417,630,200 | -100% | ||
squeeze | 0 | -417,630,198 | -100% | ||
masked | 0 | -417,630,197 | -100% | ||
appeal | 0 | -417,630,196 | -100% |
Good info!
author | automaton |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170116t192459313z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-16 19:25:00 |
last_update | 2017-01-16 19:25:00 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 27,720,183,397,461 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,263,367 |
net_rshares | 0 |
I want to cry...😢 So proud of you @ubg 😋
author | bitcoinparadise |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t081527664z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"users":["ubg"],"app":"steemit/0.1"} |
created | 2017-01-12 08:15:21 |
last_update | 2017-01-12 08:15:21 |
depth | 1 |
children | 1 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 52,935,636,369,082 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,226,888 |
net_rshares | 22,499,371,968 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ubg | 0 | 22,499,371,968 | 100% |
💗
author | ubg |
---|---|
permlink | re-bitcoinparadise-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t163131529z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-12 16:31:30 |
last_update | 2017-01-12 16:31:30 |
depth | 2 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1 |
author_reputation | 5,237,585,248,428 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,229,527 |
net_rshares | 0 |
Nice job and I have all the parts needed.
author | bluehorseshoe |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t003118272z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-12 00:31:27 |
last_update | 2017-01-12 00:31:27 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 9,766,510,656,462 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,224,797 |
net_rshares | 0 |
That is boss level! Just think.....that little Raspberry Pi could curate and probably stake some other coins at the same time. I'm not going to have time for the project but I think it would be cool if someone built a miniature DIY Tesla power wall and had a solar panel hooked up and ran a setup like this just to curate and stake coins.
author | brianphobos |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t021948029z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-12 02:19:48 |
last_update | 2017-01-12 02:19:48 |
depth | 1 |
children | 1 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 340 |
author_reputation | 170,786,814,308,277 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,225,353 |
net_rshares | 1,175,520,443,196 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wang | 0 | 150,646,156,576 | 1% | ||
kevinwong | 0 | 1,024,874,286,620 | 100% |
Yea, you can run rokos to stake the coins at the same time http://rokos.space/core.html
author | ubg |
---|---|
permlink | re-brianphobos-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t022201335z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"links":["http://rokos.space/core.html"],"app":"steemit/0.1"} |
created | 2017-01-12 02:22:00 |
last_update | 2017-01-12 02:22:00 |
depth | 2 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 5,237,585,248,428 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,225,361 |
net_rshares | 1,178,707,769,886 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wang | 0 | 150,646,156,576 | 1% | ||
kevinwong | 0 | 1,024,874,286,620 | 100% | ||
tomino | 0 | 3,187,326,690 | 1% |
This is dope, I have a Pi 2B sitting around collecting dust. Time to put that joint back to work.
author | csakura |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170915t193230185z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-09-15 19:32:54 |
last_update | 2017-09-15 19:32:54 |
depth | 1 |
children | 0 |
last_payout | 2017-09-22 19:32:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 221,537,266,844 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,996,844 |
net_rshares | 0 |
Hi @ubg does this project is still working ? I do everything what you show in this article , but when I go to step 11 and I am writing commend "screen python3 bot.py" to run this bot, but it doesn't work. Tell me, do I need to use ssh bitvise, or can I enter these commands directly from step 6 in the raspbberry terminal, without using ssh bitvise from windows?
author | gamemylife |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180519t110110584z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-19 11:01:12 |
last_update | 2018-05-19 11:01:12 |
depth | 1 |
children | 1 |
last_payout | 2018-05-26 11:01:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 365 |
author_reputation | 108,236,609,368 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,527,548 |
net_rshares | 0 |
@ubg when I am entering the commad " screen python3 bot.py" in raspberry pi3 terminal it shows me " screen is terminating" and nothing goes on ? Tell me what should I do ?
author | gamemylife |
---|---|
permlink | re-gamemylife-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180519t111720403z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-19 11:17:21 |
last_update | 2018-05-19 11:17:21 |
depth | 2 |
children | 0 |
last_payout | 2018-05-26 11:17:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 172 |
author_reputation | 108,236,609,368 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,529,408 |
net_rshares | 0 |
Amazing! )))))))))
author | gluk73 |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170926t212749898z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-09-26 21:27:48 |
last_update | 2017-09-26 21:27:48 |
depth | 1 |
children | 0 |
last_payout | 2017-10-03 21:27:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 229,362,718 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,022,574 |
net_rshares | 0 |
This is so exciting. But I am completely lost. From my first reading I get this card is similar to an Arduino. So here goes my first question: Can I use an old Arduino card for this purpose, with these instructions? I bought one once, and almost never used it. I did some childish tests with a breadboard. Second question: Can I use a computer instead of a usb card like these? Why is this type of hardtware required? Or is it just that it is cheaper than a computer? Thank you very much for the article and for any comments on simpler stuff I can read, more elementary things to get started. And excuse the silly questions :-)
author | gregario |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170711t222127489z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-07-11 22:20:33 |
last_update | 2017-07-11 22:27:06 |
depth | 1 |
children | 0 |
last_payout | 2017-07-18 22:20:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 631 |
author_reputation | 2,753,780,591,955 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,161,388 |
net_rshares | 0 |
I have an issue. The BroadcastingError will no import. Not sure what the problem is. I did this with the latest version of steem-piston. Could be that's broken now in the latest version. Traceback (most recent call last): File "bot.py", line 9, in module from steem.steem import BroadcastingError ImportError: cannot import name 'BroadcastingError'
author | grey580 |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t165407897z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-02-05 16:54:09 |
last_update | 2017-02-05 16:54:09 |
depth | 1 |
children | 4 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 349 |
author_reputation | 11,869,709,267,081 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,429,628 |
net_rshares | 0 |
instead of installing steem-piston, you may try to install python-steem with the following command: # pip3 install steem==0.3.1 I found that the 0.4 version of steem-piston broke all of my scripts, now I download version 0.3.1 of python steem. That does the job for me.
author | ubg |
---|---|
permlink | re-grey580-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t182335051z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-02-05 18:23:27 |
last_update | 2017-02-05 18:23:27 |
depth | 2 |
children | 3 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 273 |
author_reputation | 5,237,585,248,428 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,430,333 |
net_rshares | 18,646,648,779 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
grey580 | 0 | 18,646,648,779 | 100% |
do you suggest uninstalling steem-piston?
author | grey580 |
---|---|
permlink | re-ubg-re-grey580-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t182815400z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-02-05 18:28:15 |
last_update | 2017-02-05 18:28:15 |
depth | 3 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 11,869,709,267,081 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,430,362 |
net_rshares | 0 |
hrmm..... had to uninstall the version I had of steem to get it to work. pip3 uninstall steem=0.4.3 i think It's working noow
author | grey580 |
---|---|
permlink | re-ubg-re-grey580-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170205t183239635z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-02-05 18:32:39 |
last_update | 2017-02-05 18:35:30 |
depth | 3 |
children | 1 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 11,869,709,267,081 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,430,379 |
net_rshares | 0 |
Amazing information. Thank you for sharing it with us.
author | jessamynorchard |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t005929538z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-12 00:59:30 |
last_update | 2017-01-12 00:59:30 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 64,672,452,021,015 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,224,950 |
net_rshares | 0 |
I need your help.. :( I cant connect to my rasperry pi 3 model b via SSH and i dont know why.
author | justfunny |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170910t151850744z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-09-10 15:19:24 |
last_update | 2017-09-10 15:19:24 |
depth | 1 |
children | 0 |
last_payout | 2017-09-17 15:19:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | 173,388,233 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,465,460 |
net_rshares | 0 |
This is great! :)
author | lovejoy |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t221149789z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-13 22:11:51 |
last_update | 2017-01-13 22:11:51 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 53,556,731,007,030 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,240,135 |
net_rshares | 0 |
Good idea, I have to try this, I've got Raspberry Pi 3 , really good information for me, cause I am new on steemit :)
author | maronfive5x |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180515t065626237z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"community":"busy","app":"busy/2.4.0"} |
created | 2018-05-15 06:56:27 |
last_update | 2018-05-15 06:56:27 |
depth | 1 |
children | 0 |
last_payout | 2018-05-22 06:56:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 997,005,199,942 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 55,774,529 |
net_rshares | 0 |
I am getting index out of range at line 14 of the bot scrip V = rows[0] ??
author | matrixdweller |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t191003178z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-13 19:10:15 |
last_update | 2017-01-13 19:26:57 |
depth | 1 |
children | 4 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | -29,653,420,748,873 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,238,715 |
net_rshares | 28,736,087,490 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
matrixdweller | 0 | 28,736,087,490 | 100% |
Try fyrstikkens original script, or felixes updated one. see if those work. https://steemit.com/socialist-bot/@fyrstikken/the-anonymous-winfrey-bot-upvotes-for-everyone-download-here-easy-steps-for-n00bs https://steemit.com/piston/@felixxx/learning-python-with-steem-the-winfrey-bot Hit me up on rocket chat, I'm @ubg there
author | ubg |
---|---|
permlink | re-matrixdweller-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t193013411z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"links":["https://steemit.com/socialist-bot/@fyrstikken/the-anonymous-winfrey-bot-upvotes-for-everyone-download-here-easy-steps-for-n00bs","https://steemit.com/piston/@felixxx/learning-python-with-steem-the-winfrey-bot"],"app":"steemit/0.1","users":["ubg"]} |
created | 2017-01-13 19:30:15 |
last_update | 2017-01-13 19:31:48 |
depth | 2 |
children | 3 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 324 |
author_reputation | 5,237,585,248,428 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,238,881 |
net_rshares | 0 |
Just Fixed it by deleting the entire block of code related to the votelist and manually adding in top writers thanks for the feedback though and the awesome tutorial! Thanks to you I got this all done in under a day!
author | matrixdweller |
---|---|
permlink | re-ubg-re-matrixdweller-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t194312681z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-13 19:43:24 |
last_update | 2017-01-13 19:43:54 |
depth | 3 |
children | 2 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 216 |
author_reputation | -29,653,420,748,873 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,238,957 |
net_rshares | 0 |
I love this tutorial. ..I have a pi that im not using im going to try it out. Upvoted, followed, resteemed
author | mokluc |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t002544949z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-12 00:25:51 |
last_update | 2017-01-12 00:25:51 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 42,525,517,127,291 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,224,771 |
net_rshares | 0 |
Is this bot still a viable project? I haven't found any new posts on this . I love the idea and would love ti try it out if ut definitely still works.
author | rodthrower18 |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180118t061017429z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2018-01-18 06:10:21 |
last_update | 2018-01-18 06:10:21 |
depth | 1 |
children | 0 |
last_payout | 2018-01-25 06:10:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 150 |
author_reputation | 104,840,677,951 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,329,031 |
net_rshares | 0 |
Awesome, thanks!
author | rschenk |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t044246433z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-13 04:42:48 |
last_update | 2017-01-13 04:42:48 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 179,953,524,713 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,234,194 |
net_rshares | 0 |
WELL DONE SIR!
author | rustacoin |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170630t200709288z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-06-30 20:07:09 |
last_update | 2017-06-30 20:07:09 |
depth | 1 |
children | 0 |
last_payout | 2017-07-07 20:07:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 60,224,871,263 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 6,805,821 |
net_rshares | 0 |
<p>This post has been ranked within the top 80 most undervalued posts in the second half of Jan 11. We estimate that this post is undervalued by $5.98 as compared to a scenario in which every voter had an equal say.</p> <p>See the full rankings and details in <a href="https://steemit.com/curation/@screenname/the-daily-tribune-most-undervalued-posts-of-jan-11---part-ii">The Daily Tribune: Jan 11 - Part II</a>. You can also read about some of our methodology, data analysis and technical details in <a href="https://steemit.com/curation/@screenname/introducing-the-daily-tribune-most-undervalued-posts-of-nov-04---part-i">our initial post</a>.</p> <p>If you are the author and would prefer not to receive these comments, simply reply "Stop" to this comment.</p>
author | screenname |
---|---|
permlink | re-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t012515 |
category | raspberry |
json_metadata | "{"replyto": "@ubg/how-to-set-up-a-curation-bot-on-raspberry-pi"}" |
created | 2017-01-12 01:25:15 |
last_update | 2017-01-12 01:25:15 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 765 |
author_reputation | 46,276,338,038,330 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,225,104 |
net_rshares | 0 |
late reply :D i saw your bot upvoting my post :D and yeah i run kinda the same bot (i own raspberry pi B+ and raspberry pi 2 B+) both of them are capable of curating i think :) nice post :)
author | slorunner |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170419t183055764z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-04-19 18:30:57 |
last_update | 2017-04-19 18:30:57 |
depth | 1 |
children | 3 |
last_payout | 2017-04-26 18:30:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 189 |
author_reputation | 74,989,825,849 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,054,919 |
net_rshares | 0 |
Drphil?
author | ubg |
---|---|
permlink | re-slorunner-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170419t211353308z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-04-19 21:13:48 |
last_update | 2017-04-19 21:13:48 |
depth | 2 |
children | 2 |
last_payout | 2017-04-26 21:13:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 5,237,585,248,428 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,056,365 |
net_rshares | 0 |
?
author | slorunner |
---|---|
permlink | re-ubg-re-slorunner-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170422t114449752z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-04-22 11:44:57 |
last_update | 2017-04-22 11:44:57 |
depth | 3 |
children | 1 |
last_payout | 2017-04-29 11:44:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1 |
author_reputation | 74,989,825,849 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,080,640 |
net_rshares | 0 |
Carolina Reapers. Haha!
author | snake-plissken |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t220316205z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-23 22:04:54 |
last_update | 2017-01-23 22:04:54 |
depth | 1 |
children | 2 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.039 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 26,543,613,068 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,324,660 |
net_rshares | 992,304,019,944 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
noganoo | 0 | 24,889,896,164 | 100% | ||
gardening | 0 | 359,223,220 | 100% | ||
survival | 0 | 359,372,967 | 100% | ||
seth-krings | 0 | 5,157,883,782 | 100% | ||
technology | 0 | 16,346,830,464 | 100% | ||
jparty | 0 | 18,920,077,212 | 100% | ||
auction | 0 | 2,516,218,325 | 100% | ||
honey | 0 | 272,495,815 | 100% | ||
snowden | 0 | 270,636,692 | 100% | ||
farm | 0 | 116,496,818 | 100% | ||
hemp | 0 | 1,690,464,209 | 100% | ||
flowers | 0 | 171,890,738 | 100% | ||
coins | 0 | 115,967,854 | 100% | ||
sauce | 0 | 115,957,399 | 100% | ||
charts | 0 | 115,100,828 | 100% | ||
vape | 0 | 115,100,828 | 100% | ||
islam | 0 | 115,266,443 | 100% | ||
soda | 0 | 115,100,828 | 100% | ||
social | 0 | 822,111,005 | 100% | ||
steemchain | 0 | 147,269,948 | 100% | ||
whalepool | 0 | 122,099,103 | 100% | ||
chocolates | 0 | 115,044,053 | 100% | ||
spice | 0 | 114,147,267 | 100% | ||
cigarettes | 0 | 114,147,267 | 100% | ||
dabs | 0 | 114,147,267 | 100% | ||
coding | 0 | 113,922,146 | 100% | ||
hack | 0 | 113,922,115 | 100% | ||
traveling | 0 | 113,922,115 | 100% | ||
exotic | 0 | 64,006,202 | 100% | ||
tox | 0 | 567,398,403 | 100% | ||
cute | 0 | 189,476,408 | 100% | ||
berries | 0 | 61,529,559 | 100% | ||
diamonds | 0 | 88,699,299 | 100% | ||
candies | 0 | 61,529,559 | 100% | ||
evolution | 0 | 61,500,018 | 100% | ||
future | 0 | 61,500,018 | 100% | ||
creation | 0 | 61,500,003 | 100% | ||
scripture | 0 | 59,814,704 | 100% | ||
juice | 0 | 59,814,704 | 100% | ||
warez | 0 | 59,814,704 | 100% | ||
archives | 0 | 59,814,704 | 100% | ||
survivalist | 0 | 58,238,872 | 100% | ||
hardware | 0 | 58,234,174 | 100% | ||
nostalgia | 0 | 58,234,174 | 100% | ||
lottery | 0 | 58,208,335 | 100% | ||
glass | 0 | 58,208,335 | 100% | ||
fruit | 0 | 58,208,335 | 100% | ||
recycling | 0 | 58,208,322 | 100% | ||
revelation | 0 | 58,208,322 | 100% | ||
manufacturing | 0 | 58,184,157 | 100% | ||
how-to | 0 | 58,184,157 | 100% | ||
printing | 0 | 58,184,157 | 100% | ||
plastic | 0 | 58,184,157 | 100% | ||
plastics | 0 | 58,184,143 | 100% | ||
dinosaurs | 0 | 55,379,808 | 100% | ||
hacks | 0 | 55,379,808 | 100% | ||
steemit.asia | 0 | 51,963,260 | 100% | ||
flix | 0 | 51,963,260 | 100% | ||
swapman | 0 | 51,963,260 | 100% | ||
mining | 0 | 51,963,249 | 100% | ||
mine | 0 | 51,963,249 | 100% | ||
proverbs | 0 | 333,903,034 | 100% | ||
drinks | 0 | 158,273,729 | 100% | ||
storage | 0 | 186,766,185 | 100% | ||
its | 0 | 154,956,724 | 100% | ||
cbd | 0 | 183,480,846 | 100% | ||
junk | 0 | 183,470,405 | 100% | ||
hug | 0 | 183,499,364 | 100% | ||
bearcub | 0 | 184,146,847 | 100% | ||
cyberpunk | 0 | 183,499,331 | 100% | ||
keisha | 0 | 182,727,735 | 100% | ||
blackmarket | 0 | 186,030,485 | 100% | ||
gifts | 0 | 187,595,661 | 100% | ||
gift | 0 | 154,208,036 | 100% | ||
muffin | 0 | 154,208,038 | 100% | ||
int | 0 | 182,750,639 | 100% | ||
child | 0 | 581,413,291 | 100% | ||
rag | 0 | 581,216,477 | 100% | ||
mug | 0 | 581,220,522 | 100% | ||
yam | 0 | 581,169,618 | 100% | ||
ilk | 0 | 581,120,781 | 100% | ||
jug | 0 | 581,102,845 | 100% | ||
urn | 0 | 581,058,677 | 100% | ||
dat | 0 | 581,022,315 | 100% | ||
toe | 0 | 580,967,381 | 100% | ||
qua | 0 | 580,943,851 | 100% | ||
rue | 0 | 580,885,080 | 100% | ||
dye | 0 | 580,864,035 | 100% | ||
leg | 0 | 579,849,706 | 100% | ||
hid | 0 | 579,728,389 | 100% | ||
oar | 0 | 579,694,831 | 100% | ||
mow | 0 | 579,671,686 | 100% | ||
rid | 0 | 579,627,031 | 100% | ||
saw | 0 | 579,567,565 | 100% | ||
dew | 0 | 579,537,025 | 100% | ||
mop | 0 | 579,462,551 | 100% | ||
jeg | 0 | 579,454,263 | 100% | ||
wee | 0 | 579,347,638 | 100% | ||
rot | 0 | 579,323,864 | 100% | ||
wok | 0 | 579,305,457 | 100% | ||
ply | 0 | 579,287,436 | 100% | ||
pun | 0 | 579,259,463 | 100% | ||
ohm | 0 | 579,234,057 | 100% | ||
paw | 0 | 579,188,378 | 100% | ||
wag | 0 | 579,181,793 | 100% | ||
neu | 0 | 579,163,141 | 100% | ||
sow | 0 | 579,144,626 | 100% | ||
hop | 0 | 579,121,049 | 100% | ||
tup | 0 | 579,102,177 | 100% | ||
peg | 0 | 579,084,331 | 100% | ||
noh | 0 | 579,055,844 | 100% | ||
yeh | 0 | 579,048,522 | 100% | ||
tow | 0 | 579,016,831 | 100% | ||
hat | 0 | 579,005,418 | 100% | ||
ish | 0 | 578,985,766 | 100% | ||
dir | 0 | 578,965,706 | 100% | ||
hic | 0 | 578,937,066 | 100% | ||
yay | 0 | 578,926,508 | 100% | ||
nay | 0 | 578,906,068 | 100% | ||
keg | 0 | 578,737,200 | 100% | ||
soh | 0 | 578,626,116 | 100% | ||
fah | 0 | 578,604,068 | 100% | ||
lah | 0 | 578,586,797 | 100% | ||
yob | 0 | 578,579,694 | 100% | ||
inn | 0 | 578,541,564 | 100% | ||
olf | 0 | 578,490,550 | 100% | ||
omy | 0 | 578,467,671 | 100% | ||
pad | 0 | 578,448,478 | 100% | ||
par | 0 | 578,412,158 | 100% | ||
sac | 0 | 578,358,126 | 100% | ||
fur | 0 | 578,328,115 | 100% | ||
pes | 0 | 578,320,462 | 100% | ||
yew | 0 | 578,289,664 | 100% | ||
zho | 0 | 578,249,917 | 100% | ||
vum | 0 | 578,230,879 | 100% | ||
rye | 0 | 578,212,584 | 100% | ||
pus | 0 | 578,194,228 | 100% | ||
wey | 0 | 578,173,801 | 100% | ||
tey | 0 | 578,144,183 | 100% | ||
teh | 0 | 578,127,347 | 100% | ||
gad | 0 | 578,105,944 | 100% | ||
wig | 0 | 578,087,774 | 100% | ||
rig | 0 | 578,070,613 | 100% | ||
yea | 0 | 578,051,729 | 100% | ||
leu | 0 | 578,034,355 | 100% | ||
hir | 0 | 578,015,689 | 100% | ||
wif | 0 | 577,990,767 | 100% | ||
wid | 0 | 577,973,309 | 100% | ||
svo | 0 | 577,955,012 | 100% | ||
lav | 0 | 577,937,841 | 100% | ||
haw | 0 | 577,919,652 | 100% | ||
children | 0 | 585,810,720 | 100% | ||
djs | 0 | 595,523,068 | 100% | ||
ssd | 0 | 577,863,565 | 100% | ||
ref | 0 | 574,469,309 | 100% | ||
bey | 0 | 574,449,688 | 100% | ||
cud | 0 | 574,432,663 | 100% | ||
hod | 0 | 574,414,692 | 100% | ||
otp | 0 | 574,406,662 | 100% | ||
jig | 0 | 574,372,051 | 100% | ||
lye | 0 | 574,353,101 | 100% | ||
oft | 0 | 574,335,127 | 100% | ||
pew | 0 | 574,318,756 | 100% | ||
pug | 0 | 574,302,385 | 100% | ||
yip | 0 | 574,118,403 | 100% | ||
tog | 0 | 574,078,694 | 100% | ||
zig | 0 | 574,061,434 | 100% | ||
evilbot | 0 | 569,304,065 | 100% | ||
pta | 0 | 569,268,427 | 100% | ||
zag | 0 | 569,246,582 | 100% | ||
esh | 0 | 568,983,953 | 100% | ||
pec | 0 | 568,951,886 | 100% | ||
waw | 0 | 568,931,300 | 100% | ||
vau | 0 | 568,912,315 | 100% | ||
kaf | 0 | 568,894,102 | 100% | ||
qat | 0 | 568,871,036 | 100% | ||
irk | 0 | 568,846,770 | 100% | ||
mon | 0 | 568,829,427 | 100% | ||
ley | 0 | 568,807,953 | 100% | ||
hum | 0 | 568,785,681 | 100% | ||
meh | 0 | 568,764,270 | 100% | ||
dau | 0 | 568,744,959 | 100% | ||
taa | 0 | 568,728,408 | 100% | ||
exy | 0 | 568,721,885 | 100% | ||
lox | 0 | 568,694,105 | 100% | ||
nid | 0 | 568,677,739 | 100% | ||
meu | 0 | 568,660,670 | 100% | ||
pud | 0 | 568,642,798 | 100% | ||
gal | 0 | 568,624,266 | 100% | ||
jog | 0 | 568,588,699 | 100% | ||
opt | 0 | 568,577,303 | 100% | ||
wem | 0 | 568,560,389 | 100% | ||
tug | 0 | 568,524,647 | 100% | ||
ubgs | 0 | 568,505,381 | 100% | ||
lulzsec | 0 | 586,244,671 | 100% | ||
weev | 0 | 580,712,486 | 100% | ||
acidus | 0 | 568,427,600 | 100% | ||
geohot | 0 | 570,915,121 | 100% | ||
bugs-bunny | 0 | 555,149,061 | 100% | ||
hatmug | 0 | 555,090,511 | 100% | ||
elventroll | 0 | 555,058,530 | 100% | ||
elven.troll | 0 | 552,025,270 | 100% | ||
ilive | 0 | 551,070,241 | 100% | ||
guild | 0 | 548,040,116 | 100% | ||
accurate | 0 | 548,022,952 | 100% | ||
brilliant | 0 | 547,996,596 | 100% | ||
calm | 0 | 547,971,825 | 100% | ||
classy | 0 | 547,842,435 | 100% | ||
sour | 0 | 547,797,099 | 100% | ||
loved | 0 | 547,788,699 | 100% | ||
alluring | 0 | 547,764,757 | 100% | ||
adorable | 0 | 547,748,741 | 100% | ||
charming | 0 | 547,731,062 | 100% | ||
irresistible | 0 | 547,712,003 | 100% | ||
magnetic | 0 | 547,681,455 | 100% | ||
holy | 0 | 547,658,059 | 100% | ||
neat | 0 | 536,425,078 | 100% | ||
winning | 0 | 536,311,980 | 100% | ||
worthwhile | 0 | 534,545,469 | 100% | ||
cheer | 0 | 534,519,972 | 100% | ||
deluxe | 0 | 534,482,060 | 100% | ||
soaked | 0 | 534,461,518 | 100% | ||
tender | 0 | 534,403,938 | 100% | ||
tune | 0 | 534,296,642 | 100% | ||
vocal | 0 | 534,255,952 | 100% | ||
melodic | 0 | 534,254,943 | 100% | ||
strong | 0 | 534,226,403 | 100% | ||
polite | 0 | 534,235,836 | 100% | ||
favorite | 0 | 534,194,045 | 100% | ||
valuable | 0 | 534,192,900 | 100% | ||
productive | 0 | 534,164,366 | 100% | ||
heavy | 0 | 534,163,426 | 100% | ||
gilded | 0 | 534,121,462 | 100% | ||
loaded | 0 | 534,130,828 | 100% | ||
effective | 0 | 534,109,953 | 100% | ||
warm | 0 | 534,107,585 | 100% | ||
caring | 0 | 534,087,322 | 100% | ||
feast | 0 | 534,072,311 | 100% | ||
welcome | 0 | 532,771,116 | 100% | ||
sticky | 0 | 532,751,006 | 100% | ||
sublime | 0 | 532,728,046 | 100% | ||
excellent | 0 | 532,718,613 | 100% | ||
glorious | 0 | 532,647,125 | 100% | ||
silly | 0 | 532,646,325 | 100% | ||
heart | 0 | 532,632,140 | 100% | ||
passionate | 0 | 532,631,937 | 100% | ||
fireandbrimstone | 0 | 532,615,108 | 100% | ||
insane | 0 | 532,614,791 | 100% | ||
heavenly | 0 | 532,600,620 | 100% | ||
splendid | 0 | 532,596,757 | 100% | ||
superior | 0 | 532,595,417 | 100% | ||
tawnie | 0 | 532,582,564 | 100% | ||
reputable | 0 | 532,571,932 | 100% | ||
skilled | 0 | 532,571,392 | 100% | ||
cougar | 0 | 532,537,174 | 100% | ||
great | 0 | 532,531,467 | 100% | ||
a-ok | 0 | 532,540,988 | 100% | ||
snake-plissken | 0 | 532,516,802 | 100% | ||
skillful | 0 | 532,513,675 | 100% | ||
keen | 0 | 532,513,000 | 100% | ||
steemville | 0 | 532,500,418 | 100% | ||
worthy | 0 | 532,489,151 | 100% | ||
acceptable | 0 | 532,486,652 | 100% | ||
left | 0 | 532,485,121 | 100% | ||
tinder | 0 | 532,473,676 | 100% | ||
fake | 0 | 532,446,178 | 100% | ||
advantage | 0 | 532,445,514 | 100% | ||
greatest | 0 | 532,444,771 | 100% | ||
theft | 0 | 532,410,923 | 100% | ||
clever | 0 | 532,410,112 | 100% | ||
gain | 0 | 532,409,122 | 100% | ||
prestige | 0 | 532,394,782 | 100% | ||
comfort | 0 | 532,394,647 | 100% | ||
lucker | 0 | 532,381,490 | 100% | ||
satisfying | 0 | 532,380,297 | 100% | ||
spin | 0 | 532,358,736 | 100% | ||
accepted | 0 | 532,361,593 | 100% | ||
robin.hood | 0 | 532,359,928 | 100% | ||
pokie | 0 | 532,341,045 | 100% | ||
godly | 0 | 532,344,443 | 100% | ||
stake | 0 | 532,342,891 | 100% | ||
tanks | 0 | 532,325,685 | 100% | ||
extra | 0 | 532,304,296 | 100% | ||
mild | 0 | 532,303,891 | 100% | ||
honor | 0 | 532,090,018 | 100% | ||
moral | 0 | 532,089,220 | 100% | ||
wise | 0 | 532,088,411 | 100% | ||
even | 0 | 532,073,773 | 100% | ||
dynamite | 0 | 532,073,571 | 100% | ||
circlejerk | 0 | 532,055,740 | 100% | ||
helpful | 0 | 532,064,971 | 100% | ||
suit | 0 | 532,022,232 | 100% | ||
ready | 0 | 532,005,440 | 100% | ||
clean | 0 | 532,014,884 | 100% | ||
harmless | 0 | 531,984,875 | 100% | ||
wholesome | 0 | 531,984,740 | 100% | ||
hot-dog | 0 | 531,970,097 | 100% | ||
adored | 0 | 531,969,692 | 100% | ||
privileged | 0 | 531,950,760 | 100% | ||
fortunate | 0 | 531,949,760 | 100% | ||
honored | 0 | 531,936,210 | 100% | ||
valued | 0 | 531,935,075 | 100% | ||
reserved | 0 | 528,822,948 | 100% | ||
proper | 0 | 528,820,496 | 100% | ||
stable | 0 | 528,738,246 | 100% | ||
civilized | 0 | 528,737,381 | 100% | ||
sweetheart | 0 | 528,721,784 | 100% | ||
liked | 0 | 528,720,587 | 100% | ||
flavor | 0 | 528,701,595 | 100% | ||
insert | 0 | 528,683,483 | 100% | ||
delete | 0 | 528,682,685 | 100% | ||
control | 0 | 528,664,252 | 100% | ||
altar | 0 | 528,662,411 | 100% | ||
shrine | 0 | 528,644,267 | 100% | ||
temple | 0 | 528,643,868 | 100% | ||
fandom | 0 | 528,617,299 | 100% | ||
church | 0 | 528,615,437 | 100% | ||
h8d | 0 | 528,601,900 | 100% | ||
select | 0 | 528,600,182 | 100% | ||
minister | 0 | 528,584,851 | 100% | ||
worship | 0 | 528,583,654 | 100% | ||
skill | 0 | 528,569,143 | 100% | ||
devoted | 0 | 528,568,944 | 100% | ||
flat | 0 | 528,530,604 | 100% | ||
co-op | 0 | 528,530,138 | 100% | ||
cover | 0 | 528,529,208 | 100% | ||
port | 0 | 528,502,974 | 100% | ||
ship | 0 | 528,502,509 | 100% | ||
model | 0 | 528,469,728 | 100% | ||
yatch | 0 | 528,479,572 | 100% | ||
zone | 0 | 528,478,197 | 100% | ||
dear | 0 | 528,458,806 | 100% | ||
leet | 0 | 528,457,876 | 100% | ||
challanger | 0 | 528,455,914 | 100% | ||
harbor | 0 | 528,438,221 | 100% | ||
shelter | 0 | 528,437,158 | 100% | ||
hole | 0 | 528,436,437 | 100% | ||
pride | 0 | 528,421,039 | 100% | ||
booty | 0 | 528,419,976 | 100% | ||
icon | 0 | 528,418,801 | 100% | ||
cave | 0 | 528,401,464 | 100% | ||
study | 0 | 528,401,264 | 100% | ||
mansion | 0 | 528,401,131 | 100% | ||
tower | 0 | 528,384,959 | 100% | ||
crib | 0 | 528,383,785 | 100% | ||
shed | 0 | 528,382,554 | 100% | ||
accept | 0 | 528,311,974 | 100% | ||
trick | 0 | 528,321,752 | 100% | ||
waiting | 0 | 528,320,091 | 100% | ||
cloak | 0 | 528,267,353 | 100% | ||
hour | 0 | 528,265,626 | 100% | ||
picture | 0 | 528,264,574 | 100% | ||
hideout | 0 | 528,256,521 | 100% | ||
puppet | 0 | 528,244,826 | 100% | ||
copy | 0 | 528,244,295 | 100% | ||
lurker | 0 | 528,231,610 | 100% | ||
tunnel | 0 | 528,230,813 | 100% | ||
room | 0 | 528,230,149 | 100% | ||
figure | 0 | 528,202,065 | 100% | ||
replica | 0 | 528,201,090 | 100% | ||
split | 0 | 528,200,182 | 100% | ||
statue | 0 | 528,199,717 | 100% | ||
theme | 0 | 528,198,854 | 100% | ||
tent | 0 | 528,169,564 | 100% | ||
defend | 0 | 528,178,945 | 100% | ||
lodge | 0 | 528,176,842 | 100% | ||
shield | 0 | 528,175,657 | 100% | ||
wrap | 0 | 528,163,290 | 100% | ||
prize | 0 | 528,164,923 | 100% | ||
same | 0 | 528,146,664 | 100% | ||
dual | 0 | 528,145,602 | 100% | ||
paired | 0 | 528,144,939 | 100% | ||
singular | 0 | 528,144,142 | 100% | ||
binary | 0 | 528,141,830 | 100% | ||
plural | 0 | 528,122,014 | 100% | ||
machine | 0 | 528,108,284 | 100% | ||
analog | 0 | 528,117,399 | 100% | ||
processor | 0 | 528,117,266 | 100% | ||
motor | 0 | 528,100,880 | 100% | ||
vehicle | 0 | 528,100,084 | 100% | ||
calculation | 0 | 528,096,179 | 100% | ||
driven | 0 | 528,095,316 | 100% | ||
ticker | 0 | 528,080,657 | 100% | ||
floppy | 0 | 528,031,324 | 100% | ||
modem | 0 | 528,030,549 | 100% | ||
router | 0 | 528,029,620 | 100% | ||
electronic | 0 | 527,993,631 | 100% | ||
vcr | 0 | 527,992,780 | 100% | ||
robotic | 0 | 527,991,851 | 100% | ||
feeling | 0 | 527,989,861 | 100% | ||
intellect | 0 | 527,946,982 | 100% | ||
entity | 0 | 527,946,064 | 100% | ||
bubbles | 0 | 527,914,717 | 100% | ||
buttercup | 0 | 527,934,487 | 100% | ||
bosom | 0 | 527,911,030 | 100% | ||
psyche | 0 | 526,636,940 | 100% | ||
ground | 0 | 526,646,723 | 100% | ||
being | 0 | 526,635,697 | 100% | ||
emotion | 0 | 526,645,546 | 100% | ||
refuge | 0 | 526,619,330 | 100% | ||
riven | 0 | 526,616,758 | 100% | ||
swain | 0 | 526,614,450 | 100% | ||
karthus | 0 | 526,591,360 | 100% | ||
zezima | 0 | 526,590,711 | 100% | ||
elves | 0 | 526,569,231 | 100% | ||
swans | 0 | 526,568,505 | 100% | ||
projectile | 0 | 526,567,076 | 100% | ||
bolt | 0 | 526,566,219 | 100% | ||
plane | 0 | 526,565,240 | 100% | ||
woodpecker | 0 | 526,537,551 | 100% | ||
stork | 0 | 526,536,045 | 100% | ||
gull | 0 | 526,534,595 | 100% | ||
bowl | 0 | 526,533,034 | 100% | ||
milkyway | 0 | 526,532,374 | 100% | ||
toucan | 0 | 526,530,869 | 100% | ||
hummingbird | 0 | 526,501,942 | 100% | ||
humming | 0 | 526,500,897 | 100% | ||
sand | 0 | 526,499,656 | 100% | ||
kiw | 0 | 526,498,951 | 100% | ||
bul | 0 | 526,496,148 | 100% | ||
bulbul | 0 | 526,495,489 | 100% | ||
invoker | 0 | 526,478,062 | 100% | ||
neutral | 0 | 526,477,007 | 100% | ||
oat | 0 | 526,476,414 | 100% | ||
dirt | 0 | 526,474,898 | 100% | ||
soil | 0 | 526,474,173 | 100% | ||
glue | 0 | 526,461,194 | 100% | ||
turf | 0 | 526,448,669 | 100% | ||
land | 0 | 526,447,944 | 100% | ||
mushrooms | 0 | 526,446,769 | 100% | ||
relaxed | 0 | 526,445,406 | 100% | ||
active | 0 | 526,443,439 | 100% | ||
involved | 0 | 526,430,739 | 100% | ||
personal | 0 | 526,421,562 | 100% | ||
gentle | 0 | 526,420,771 | 100% | ||
affection | 0 | 526,419,332 | 100% | ||
friendship | 0 | 526,418,673 | 100% | ||
piety | 0 | 526,391,386 | 100% | ||
lust | 0 | 526,390,727 | 100% | ||
delight | 0 | 526,389,749 | 100% | ||
enjoy | 0 | 526,369,649 | 100% | ||
airplane | 0 | 526,114,907 | 100% | ||
shuttle | 0 | 526,114,380 | 100% | ||
spaceship | 0 | 526,113,788 | 100% | ||
fuel | 0 | 526,113,327 | 100% | ||
relic | 0 | 526,111,111 | 100% | ||
respect | 0 | 526,099,566 | 100% | ||
sorrow | 0 | 526,094,136 | 100% | ||
hate | 0 | 526,093,478 | 100% | ||
hearted | 0 | 526,091,767 | 100% | ||
playing | 0 | 526,088,311 | 100% | ||
lovin | 0 | 526,081,003 | 100% | ||
favor | 0 | 526,067,112 | 100% | ||
spot | 0 | 582,710,245 | 100% | ||
sympathy | 0 | 526,052,963 | 100% | ||
fingers | 0 | 526,051,789 | 100% | ||
seaman | 0 | 526,051,273 | 100% | ||
blessing | 0 | 526,049,396 | 100% | ||
dearest | 0 | 526,026,274 | 100% | ||
estonia | 0 | 543,040,134 | 100% | ||
piss | 0 | 526,020,810 | 100% | ||
latvia | 0 | 526,027,862 | 100% | ||
embrace | 0 | 526,025,525 | 100% | ||
adore | 0 | 526,022,651 | 100% | ||
fond | 0 | 526,007,978 | 100% | ||
rooster | 0 | 526,002,033 | 100% | ||
pesant | 0 | 526,001,375 | 100% | ||
spirited | 0 | 526,000,455 | 100% | ||
bold | 0 | 525,999,807 | 100% | ||
valiant | 0 | 525,978,090 | 100% | ||
eager | 0 | 525,977,432 | 100% | ||
agility | 0 | 525,976,709 | 100% | ||
firm | 0 | 525,959,712 | 100% | ||
puke | 0 | 525,957,178 | 100% | ||
work | 0 | 525,955,478 | 100% | ||
process | 0 | 525,953,329 | 100% | ||
hobby | 0 | 525,924,271 | 100% | ||
adventure | 0 | 525,923,351 | 100% | ||
venture | 0 | 525,910,825 | 100% | ||
mice | 0 | 525,920,291 | 100% | ||
wager | 0 | 525,899,876 | 100% | ||
hazard | 0 | 525,899,218 | 100% | ||
heroic | 0 | 525,897,837 | 100% | ||
idea | 0 | 524,648,556 | 100% | ||
stunt | 0 | 524,647,767 | 100% | ||
ball | 0 | 524,646,912 | 100% | ||
deed | 0 | 524,644,413 | 100% | ||
risk | 0 | 524,643,492 | 100% | ||
flurry | 0 | 524,632,695 | 100% | ||
speculate | 0 | 524,606,267 | 100% | ||
speculation | 0 | 524,615,282 | 100% | ||
hacked | 0 | 564,277,934 | 100% | ||
minions | 0 | 524,601,253 | 100% | ||
servers | 0 | 524,596,925 | 100% | ||
waiter | 0 | 524,587,000 | 100% | ||
hoster | 0 | 524,585,179 | 100% | ||
windmill | 0 | 524,582,524 | 100% | ||
follow | 0 | 524,581,669 | 100% | ||
waitress | 0 | 524,579,180 | 100% | ||
fans | 0 | 524,562,843 | 100% | ||
follower | 0 | 524,541,081 | 100% | ||
ventilator | 0 | 524,538,952 | 100% | ||
draft | 0 | 524,538,294 | 100% | ||
backed | 0 | 524,536,661 | 100% | ||
alturist | 0 | 524,514,470 | 100% | ||
wake | 0 | 524,513,363 | 100% | ||
promote | 0 | 524,512,529 | 100% | ||
whisper | 0 | 524,511,674 | 100% | ||
sniff | 0 | 524,493,728 | 100% | ||
junkie | 0 | 524,491,711 | 100% | ||
turbine | 0 | 524,490,922 | 100% | ||
turbo | 0 | 524,490,012 | 100% | ||
activity | 0 | 524,476,750 | 100% | ||
raimo | 0 | 524,461,426 | 100% | ||
tanel | 0 | 524,460,768 | 100% | ||
ats | 0 | 524,459,990 | 100% | ||
loyalty | 0 | 524,458,160 | 100% | ||
lungs | 0 | 524,404,495 | 100% | ||
specialist | 0 | 524,403,333 | 100% | ||
veteran | 0 | 524,402,544 | 100% | ||
type | 0 | 524,366,635 | 100% | ||
that | 0 | 524,365,847 | 100% | ||
rookie | 0 | 524,353,565 | 100% | ||
nurse | 0 | 524,343,682 | 100% | ||
squat | 0 | 524,341,261 | 100% | ||
medic | 0 | 524,339,104 | 100% | ||
commander | 0 | 524,328,588 | 100% | ||
l0l | 0 | 524,327,208 | 100% | ||
scholar | 0 | 524,313,758 | 100% | ||
l3l | 0 | 524,293,285 | 100% | ||
d0n | 0 | 524,292,497 | 100% | ||
f0x | 0 | 524,290,426 | 100% | ||
b0t | 0 | 524,274,896 | 100% | ||
b1t | 0 | 524,272,355 | 100% | ||
s3x | 0 | 524,249,183 | 100% | ||
g0d | 0 | 524,248,536 | 100% | ||
h0t | 0 | 524,247,824 | 100% | ||
d0g | 0 | 524,244,834 | 100% | ||
eg0 | 0 | 524,218,871 | 100% | ||
t3n | 0 | 419,271,112 | 100% | ||
c0p | 0 | 419,247,306 | 100% | ||
m00 | 0 | 419,246,010 | 100% | ||
s1x | 0 | 419,235,043 | 100% | ||
n3w | 0 | 419,231,821 | 100% | ||
ac3 | 0 | 419,220,923 | 100% | ||
m3n | 0 | 419,218,167 | 100% | ||
b0y | 0 | 419,207,147 | 100% | ||
tw0 | 0 | 419,205,415 | 100% | ||
l1t | 0 | 419,195,524 | 100% | ||
s0n | 0 | 419,193,800 | 100% | ||
a1r | 0 | 419,193,007 | 100% | ||
w0w | 0 | 418,207,297 | 100% | ||
uz1 | 0 | 522,755,738 | 100% | ||
b0b | 0 | 522,754,603 | 100% | ||
c0m | 0 | 522,752,599 | 100% | ||
f3w | 0 | 418,177,390 | 100% | ||
d0s | 0 | 418,167,100 | 100% | ||
n3d | 0 | 418,176,871 | 100% | ||
t0d | 0 | 522,717,630 | 100% | ||
m0m | 0 | 418,165,332 | 100% | ||
p00 | 0 | 522,695,386 | 100% | ||
z00 | 0 | 418,147,380 | 100% | ||
f00 | 0 | 418,157,353 | 100% | ||
k1d | 0 | 418,137,892 | 100% | ||
t0y | 0 | 418,137,475 | 100% | ||
j3w | 0 | 522,668,330 | 100% | ||
a00 | 0 | 418,108,682 | 100% | ||
b00 | 0 | 418,108,168 | 100% | ||
c00 | 0 | 418,097,368 | 100% | ||
l0w | 0 | 418,102,399 | 100% | ||
l0v3 | 0 | 522,624,289 | 100% | ||
l0ve | 0 | 418,083,297 | 100% | ||
d00 | 0 | 418,070,996 | 100% | ||
e00 | 0 | 522,598,665 | 100% | ||
ctrl | 0 | 418,069,543 | 100% | ||
follow-up | 0 | 418,043,993 | 100% | ||
yours | 0 | 418,053,312 | 100% | ||
w1n | 0 | 418,042,114 | 100% | ||
b0x | 0 | 418,041,592 | 100% | ||
x0x0 | 0 | 418,040,717 | 100% | ||
r3d | 0 | 418,022,020 | 100% | ||
f1n | 0 | 418,032,456 | 100% | ||
x0x | 0 | 418,022,008 | 100% | ||
oioi | 0 | 418,021,804 | 100% | ||
cuddle | 0 | 418,021,792 | 100% | ||
unlimited | 0 | 418,021,787 | 100% | ||
d1e | 0 | 418,021,687 | 100% | ||
l1e | 0 | 418,032,122 | 100% | ||
a55 | 0 | 418,032,049 | 100% | ||
followup | 0 | 418,021,376 | 100% | ||
gunshot | 0 | 418,031,812 | 100% | ||
ce0 | 0 | 418,021,362 | 100% | ||
w1zard | 0 | 418,021,223 | 100% | ||
b0ss | 0 | 418,031,662 | 100% | ||
og-kush | 0 | 418,031,656 | 100% | ||
attached | 0 | 418,020,934 | 100% | ||
ch1na | 0 | 418,020,919 | 100% | ||
executive | 0 | 418,020,904 | 100% | ||
h3art | 0 | 418,020,751 | 100% | ||
hearts | 0 | 418,031,065 | 100% | ||
pr1ze | 0 | 418,030,932 | 100% | ||
s0s | 0 | 418,020,469 | 100% | ||
elected | 0 | 418,020,454 | 100% | ||
whiz | 0 | 418,030,711 | 100% | ||
critic | 0 | 418,020,253 | 100% | ||
i-heart-you | 0 | 418,020,068 | 100% | ||
quack | 0 | 418,020,061 | 100% | ||
wub | 0 | 418,040,928 | 100% | ||
adopt | 0 | 418,019,930 | 100% | ||
dispute | 0 | 418,019,921 | 100% | ||
admire | 0 | 418,030,353 | 100% | ||
want | 0 | 418,030,209 | 100% | ||
prefer | 0 | 418,019,755 | 100% | ||
take | 0 | 418,019,746 | 100% | ||
obtain | 0 | 418,029,849 | 100% | ||
secure | 0 | 418,019,401 | 100% | ||
g3t | 0 | 418,019,389 | 100% | ||
subscribe | 0 | 418,019,383 | 100% | ||
uphold | 0 | 418,029,816 | 100% | ||
healer | 0 | 418,019,216 | 100% | ||
surgeon | 0 | 418,019,210 | 100% | ||
intern | 0 | 418,019,201 | 100% | ||
hypnotist | 0 | 418,019,175 | 100% | ||
enchanter | 0 | 418,019,169 | 100% | ||
fountain | 0 | 418,018,987 | 100% | ||
v0ice | 0 | 418,018,878 | 100% | ||
fortuneteller | 0 | 418,029,307 | 100% | ||
medium | 0 | 418,018,857 | 100% | ||
necromancer | 0 | 418,028,681 | 100% | ||
sorcerer | 0 | 418,018,227 | 100% | ||
magician | 0 | 418,018,219 | 100% | ||
beam | 0 | 418,018,128 | 100% | ||
feds | 0 | 418,018,107 | 100% | ||
f1sh | 0 | 418,028,542 | 100% | ||
reader | 0 | 418,028,310 | 100% | ||
druid | 0 | 418,028,298 | 100% | ||
diviner | 0 | 418,017,843 | 100% | ||
mystical | 0 | 418,028,118 | 100% | ||
magical | 0 | 418,017,669 | 100% | ||
puzzling | 0 | 418,028,094 | 100% | ||
vague | 0 | 418,017,405 | 100% | ||
pokerface | 0 | 418,027,821 | 100% | ||
readme | 0 | 418,014,836 | 100% | ||
skim | 0 | 418,004,382 | 100% | ||
scan | 0 | 418,025,248 | 100% | ||
inspect | 0 | 418,014,800 | 100% | ||
herald | 0 | 418,014,788 | 100% | ||
s33 | 0 | 418,004,247 | 100% | ||
prove | 0 | 418,014,437 | 100% | ||
promise | 0 | 418,003,987 | 100% | ||
shots | 0 | 418,003,969 | 100% | ||
speak | 0 | 418,014,274 | 100% | ||
survey | 0 | 418,003,808 | 100% | ||
size | 0 | 418,003,567 | 100% | ||
crystal-ball | 0 | 418,003,557 | 100% | ||
member-berries | 0 | 418,013,963 | 100% | ||
understand | 0 | 418,013,951 | 100% | ||
megabook | 0 | 418,003,312 | 100% | ||
solve | 0 | 418,003,307 | 100% | ||
deliver | 0 | 418,013,735 | 100% | ||
warn | 0 | 418,013,720 | 100% | ||
channel | 0 | 418,013,709 | 100% | ||
fondness | 0 | 418,013,697 | 100% | ||
prayers | 0 | 418,003,067 | 100% | ||
overcharge | 0 | 418,003,058 | 100% | ||
redemption | 0 | 418,013,489 | 100% | ||
smite | 0 | 418,002,731 | 100% | ||
retribution | 0 | 418,013,154 | 100% | ||
rigour | 0 | 418,002,696 | 100% | ||
augury | 0 | 418,002,502 | 100% | ||
skin | 0 | 418,012,939 | 100% | ||
chivalry | 0 | 418,002,491 | 100% | ||
charge | 0 | 418,002,481 | 100% | ||
enjoyment | 0 | 418,002,327 | 100% | ||
warming | 0 | 418,002,316 | 100% | ||
push | 0 | 418,012,746 | 100% | ||
pull | 0 | 418,002,292 | 100% | ||
defence | 0 | 418,002,145 | 100% | ||
poor | 0 | 418,012,576 | 100% | ||
mastery | 0 | 418,002,122 | 100% | ||
k3y | 0 | 418,002,112 | 100% | ||
damage | 0 | 418,012,445 | 100% | ||
points | 0 | 418,001,990 | 100% | ||
level | 0 | 418,012,432 | 100% | ||
crit | 0 | 480,450,397 | 100% | ||
whistle | 0 | 418,001,840 | 100% | ||
cooks | 0 | 418,012,260 | 100% | ||
quest | 0 | 418,012,253 | 100% | ||
goblin | 0 | 474,665,861 | 100% | ||
taste | 0 | 418,001,370 | 100% | ||
oomph | 0 | 418,001,356 | 100% | ||
s0ur | 0 | 418,011,774 | 100% | ||
grandmaster | 0 | 418,011,652 | 100% | ||
w1se | 0 | 418,001,193 | 100% | ||
tr0ll | 0 | 418,011,621 | 100% | ||
pikacu | 0 | 418,011,417 | 100% | ||
mussolini | 0 | 418,011,388 | 100% | ||
sto | 0 | 418,011,383 | 100% | ||
sir.isaac.newton | 0 | 418,000,921 | 100% | ||
civilization | 0 | 418,000,668 | 100% | ||
grain | 0 | 418,011,087 | 100% | ||
h1p | 0 | 418,011,079 | 100% | ||
oval | 0 | 418,010,820 | 100% | ||
b3rry | 0 | 418,000,366 | 100% | ||
current | 0 | 418,010,795 | 100% | ||
polished | 0 | 418,000,216 | 100% | ||
cleverbot | 0 | 418,010,646 | 100% | ||
hip-hop | 0 | 418,000,196 | 100% | ||
minute | 0 | 418,010,634 | 100% | ||
into | 0 | 418,000,173 | 100% | ||
love-you | 0 | 447,885,716 | 100% | ||
talented | 0 | 418,010,376 | 100% | ||
first-class | 0 | 418,010,360 | 100% | ||
thief | 0 | 418,010,351 | 100% | ||
gifted | 0 | 418,010,333 | 100% | ||
g00gle | 0 | 417,999,887 | 100% | ||
pickle | 0 | 435,947,833 | 100% | ||
wingman | 0 | 474,653,360 | 100% | ||
adm1n | 0 | 417,999,701 | 100% | ||
m0d | 0 | 418,010,142 | 100% | ||
inspector | 0 | 418,010,126 | 100% | ||
v1p | 0 | 418,010,107 | 100% | ||
backer | 0 | 417,996,992 | 100% | ||
casin0 | 0 | 417,996,984 | 100% | ||
cas1no | 0 | 417,986,535 | 100% | ||
cas1n0 | 0 | 417,996,965 | 100% | ||
found | 0 | 417,996,962 | 100% | ||
keygen | 0 | 417,986,507 | 100% | ||
unit | 0 | 417,986,309 | 100% | ||
unite | 0 | 417,986,304 | 100% | ||
division | 0 | 417,986,293 | 100% | ||
factor | 0 | 417,986,040 | 100% | ||
lovebot | 0 | 417,996,475 | 100% | ||
hint | 0 | 417,986,017 | 100% | ||
gam3 | 0 | 417,996,297 | 100% | ||
trojan | 0 | 417,996,266 | 100% | ||
tidy | 0 | 417,985,816 | 100% | ||
w3t | 0 | 417,996,107 | 100% | ||
k1ng | 0 | 417,995,780 | 100% | ||
addicted-to-you | 0 | 417,985,323 | 100% | ||
love-ya | 0 | 417,985,264 | 100% | ||
youre-amazing | 0 | 417,985,161 | 100% | ||
youre-awesome | 0 | 417,985,063 | 100% | ||
soulmate | 0 | 417,985,058 | 100% | ||
roses-are-red | 0 | 417,985,035 | 100% | ||
better-half | 0 | 417,995,336 | 100% | ||
violets-are-blue | 0 | 417,995,327 | 100% | ||
sugar-is-sweet | 0 | 417,984,491 | 100% | ||
week | 0 | 417,994,911 | 100% | ||
year | 0 | 417,984,461 | 100% | ||
c00l | 0 | 417,984,253 | 100% | ||
carjack | 0 | 417,984,238 | 100% | ||
helping | 0 | 417,984,229 | 100% | ||
russ1a | 0 | 417,983,814 | 100% | ||
whip | 0 | 417,983,807 | 100% | ||
priest | 0 | 417,983,795 | 100% | ||
t0p | 0 | 417,994,032 | 100% | ||
textbook | 0 | 417,983,586 | 100% | ||
patient | 0 | 417,993,977 | 100% | ||
sawbones | 0 | 417,982,987 | 100% | ||
simulated | 0 | 417,993,405 | 100% | ||
snickers | 0 | 417,982,958 | 100% | ||
bluff | 0 | 417,982,837 | 100% | ||
wheels | 0 | 417,982,823 | 100% | ||
honestly | 0 | 417,993,030 | 100% | ||
woo-hoo | 0 | 417,982,562 | 100% | ||
whine | 0 | 417,992,989 | 100% | ||
motto | 0 | 417,992,765 | 100% | ||
growl | 0 | 417,992,753 | 100% | ||
sharper | 0 | 417,992,746 | 100% | ||
shampoo | 0 | 417,992,579 | 100% | ||
scrub | 0 | 417,982,134 | 100% | ||
sponge | 0 | 417,982,122 | 100% | ||
shower | 0 | 417,992,164 | 100% | ||
paint | 0 | 417,992,159 | 100% | ||
soak | 0 | 417,981,703 | 100% | ||
tint | 0 | 417,981,554 | 100% | ||
layer | 0 | 417,991,950 | 100% | ||
well-kept | 0 | 417,981,470 | 100% | ||
viruoso | 0 | 417,966,056 | 100% | ||
virtuoso | 0 | 417,976,478 | 100% | ||
versed | 0 | 417,966,034 | 100% | ||
c00kie | 0 | 417,976,375 | 100% | ||
there | 0 | 417,965,843 | 100% | ||
solid | 0 | 417,965,837 | 100% | ||
tops | 0 | 417,976,265 | 100% | ||
j3t | 0 | 417,976,020 | 100% | ||
tinman | 0 | 449,845,930 | 100% | ||
tincan | 0 | 417,965,561 | 100% | ||
gunman | 0 | 417,965,429 | 100% | ||
hitman | 0 | 417,975,864 | 100% | ||
apostle | 0 | 417,965,232 | 100% | ||
gautama | 0 | 417,975,664 | 100% | ||
penman | 0 | 417,965,211 | 100% | ||
lineman | 0 | 417,965,107 | 100% | ||
botman | 0 | 417,975,543 | 100% | ||
clarion | 0 | 417,975,528 | 100% | ||
cement | 0 | 417,975,220 | 100% | ||
horn | 0 | 417,964,770 | 100% | ||
a1m | 0 | 417,975,198 | 100% | ||
kosher | 0 | 417,975,182 | 100% | ||
shitsngiggles | 0 | 417,975,151 | 100% | ||
winspiral | 0 | 417,964,704 | 100% | ||
h1gh | 0 | 417,964,615 | 100% | ||
catbus | 0 | 417,964,593 | 100% | ||
snorlax | 0 | 417,975,029 | 100% | ||
pichu | 0 | 417,964,382 | 100% | ||
mayor | 0 | 417,964,358 | 100% | ||
mayor.west | 0 | 417,964,355 | 100% | ||
familiar | 0 | 417,974,624 | 100% | ||
tilt | 0 | 417,964,168 | 100% | ||
abug | 0 | 417,964,153 | 100% | ||
lesser | 0 | 417,963,980 | 100% | ||
captive | 0 | 417,963,972 | 100% | ||
good-looking | 0 | 417,974,404 | 100% | ||
here | 0 | 417,963,847 | 100% | ||
ideal | 0 | 417,963,827 | 100% | ||
incredible | 0 | 417,963,809 | 100% | ||
lure | 0 | 417,963,578 | 100% | ||
swell | 0 | 417,973,999 | 100% | ||
unselfish | 0 | 417,963,548 | 100% | ||
ducky | 0 | 417,963,541 | 100% | ||
lul | 0 | 417,973,810 | 100% | ||
old-man | 0 | 417,973,782 | 100% | ||
wise-man | 0 | 417,973,775 | 100% | ||
merch | 0 | 417,973,753 | 100% | ||
ranks | 0 | 417,944,286 | 100% | ||
botnetwork | 0 | 417,944,278 | 100% | ||
b0tn3t | 0 | 417,944,257 | 100% | ||
dwarf | 0 | 417,954,613 | 100% | ||
dragonborn | 0 | 417,944,170 | 100% | ||
banhammer | 0 | 417,944,135 | 100% | ||
legolas | 0 | 417,943,960 | 100% | ||
gimli | 0 | 417,943,950 | 100% | ||
bromir | 0 | 417,943,944 | 100% | ||
arwen | 0 | 417,953,960 | 100% | ||
figwit | 0 | 417,943,517 | 100% | ||
helm | 0 | 417,943,498 | 100% | ||
horns | 0 | 417,953,816 | 100% | ||
plate | 0 | 417,943,372 | 100% | ||
megaton | 0 | 417,943,236 | 100% | ||
hobbit | 0 | 417,943,201 | 100% | ||
wohoo | 0 | 417,943,197 | 100% | ||
r2-d2 | 0 | 417,942,721 | 100% | ||
hood | 0 | 417,942,682 | 100% | ||
optimus | 0 | 417,953,083 | 100% | ||
rayman | 0 | 417,952,769 | 100% | ||
worm | 0 | 417,942,322 | 100% | ||
worms | 0 | 417,952,760 | 100% | ||
lara.croft | 0 | 417,942,144 | 100% | ||
boot | 0 | 417,942,064 | 100% | ||
g00gl3 | 0 | 417,941,571 | 100% | ||
oo7 | 0 | 417,941,564 | 100% | ||
snare | 0 | 417,951,946 | 100% | ||
juggle | 0 | 417,941,037 | 100% | ||
qu3st | 0 | 417,951,425 | 100% | ||
incentive | 0 | 417,940,940 | 100% | ||
corrupt | 0 | 417,950,873 | 100% | ||
protection | 0 | 417,940,426 | 100% | ||
snowfall | 0 | 417,950,850 | 100% | ||
groot | 0 | 417,931,675 | 100% | ||
gromit | 0 | 417,931,669 | 100% | ||
walk | 0 | 417,931,662 | 100% | ||
sleet | 0 | 417,941,815 | 100% | ||
vendetta | 0 | 417,941,798 | 100% | ||
star-lord | 0 | 417,941,780 | 100% | ||
the.godfather | 0 | 417,931,187 | 100% | ||
obi-wan | 0 | 417,941,609 | 100% | ||
goodfellas | 0 | 417,931,142 | 100% | ||
nightcrawler | 0 | 417,941,502 | 100% | ||
mockingbird | 0 | 417,931,035 | 100% | ||
y0da | 0 | 417,941,352 | 100% | ||
ghostbusters | 0 | 417,930,732 | 100% | ||
t-800 | 0 | 417,941,161 | 100% | ||
bride | 0 | 417,941,144 | 100% | ||
groom | 0 | 417,930,537 | 100% | ||
aragorn | 0 | 417,940,952 | 100% | ||
pirates | 0 | 417,930,506 | 100% | ||
pac.man | 0 | 417,930,348 | 100% | ||
ahoy | 0 | 417,940,786 | 100% | ||
haunted | 0 | 417,940,779 | 100% | ||
millie | 0 | 417,940,252 | 100% | ||
pippi | 0 | 417,940,236 | 100% | ||
almighty | 0 | 417,940,210 | 100% | ||
snufkin | 0 | 417,929,468 | 100% | ||
little-my | 0 | 417,929,454 | 100% | ||
littlemy | 0 | 417,929,448 | 100% | ||
moomintroll | 0 | 417,929,437 | 100% | ||
moominmamma | 0 | 417,928,996 | 100% | ||
moominpappa | 0 | 417,939,432 | 100% | ||
snork | 0 | 417,939,423 | 100% | ||
starfire | 0 | 417,928,866 | 100% | ||
sylvester | 0 | 417,939,295 | 100% | ||
speedy | 0 | 417,939,282 | 100% | ||
gonzales | 0 | 417,939,019 | 100% | ||
porky | 0 | 417,928,569 | 100% | ||
general.store | 0 | 417,939,004 | 100% | ||
daffy.duck | 0 | 417,938,854 | 100% | ||
k-9 | 0 | 417,938,845 | 100% | ||
dexters | 0 | 417,928,374 | 100% | ||
laboratory | 0 | 417,928,038 | 100% | ||
doubledecker | 0 | 417,938,458 | 100% | ||
cellphone | 0 | 417,938,443 | 100% | ||
rumcake | 0 | 417,938,229 | 100% | ||
pomegranate | 0 | 417,927,779 | 100% | ||
p1e | 0 | 417,927,774 | 100% | ||
fearless | 0 | 417,927,645 | 100% | ||
sprite | 0 | 417,927,632 | 100% | ||
goodyear | 0 | 417,927,604 | 100% | ||
clementine | 0 | 417,927,155 | 100% | ||
garlic | 0 | 417,927,110 | 100% | ||
catnip | 0 | 417,927,068 | 100% | ||
tomato | 0 | 417,927,050 | 100% | ||
peppermint | 0 | 417,927,032 | 100% | ||
spearmint | 0 | 417,937,463 | 100% | ||
oregano | 0 | 417,923,723 | 100% | ||
lemongrass | 0 | 417,923,715 | 100% | ||
poet-tree | 0 | 417,923,666 | 100% | ||
c-3po | 0 | 417,923,189 | 100% | ||
elowen | 0 | 417,923,175 | 100% | ||
wonderer | 0 | 417,922,931 | 100% | ||
cedar | 0 | 417,933,360 | 100% | ||
fortitude | 0 | 417,933,343 | 100% | ||
fairness | 0 | 417,922,767 | 100% | ||
rep | 0 | 417,922,538 | 100% | ||
position | 0 | 417,922,526 | 100% | ||
character | 0 | 417,932,959 | 100% | ||
politeness | 0 | 417,932,497 | 100% | ||
repute | 0 | 417,922,035 | 100% | ||
place | 0 | 417,932,453 | 100% | ||
palace | 0 | 417,922,006 | 100% | ||
chateau | 0 | 417,921,990 | 100% | ||
fort | 0 | 417,932,411 | 100% | ||
bb-8 | 0 | 417,932,197 | 100% | ||
stormtrooper | 0 | 417,921,750 | 100% | ||
stronghold | 0 | 417,932,178 | 100% | ||
hold | 0 | 417,921,725 | 100% | ||
keep | 0 | 417,921,716 | 100% | ||
wall-e | 0 | 417,932,122 | 100% | ||
tik-tok | 0 | 417,921,451 | 100% | ||
wordshop | 0 | 417,921,433 | 100% | ||
astar | 0 | 417,931,861 | 100% | ||
ed-209 | 0 | 417,921,412 | 100% | ||
joyful | 0 | 417,921,353 | 100% | ||
bouncer | 0 | 417,920,433 | 100% | ||
vital | 0 | 417,920,421 | 100% | ||
fitting | 0 | 417,930,851 | 100% | ||
paddle | 0 | 417,920,388 | 100% | ||
propeller | 0 | 417,930,818 | 100% | ||
ballista | 0 | 417,920,375 | 100% | ||
dirtless | 0 | 417,930,722 | 100% | ||
shadowline | 0 | 417,930,709 | 100% | ||
e28 | 0 | 417,920,218 | 100% | ||
e30 | 0 | 417,920,218 | 100% | ||
e34 | 0 | 417,930,391 | 100% | ||
e36 | 0 | 417,930,386 | 100% | ||
e32 | 0 | 417,919,939 | 100% | ||
e39 | 0 | 417,919,934 | 100% | ||
e46 | 0 | 417,919,791 | 100% | ||
e60 | 0 | 417,930,229 | 100% | ||
f-1 | 0 | 417,919,779 | 100% | ||
e61 | 0 | 417,923,704 | 100% | ||
e91 | 0 | 417,923,695 | 100% | ||
e38 | 0 | 417,913,235 | 100% | ||
e92 | 0 | 417,913,228 | 100% | ||
f01 | 0 | 417,913,039 | 100% | ||
f02 | 0 | 417,913,033 | 100% | ||
f03 | 0 | 417,923,468 | 100% | ||
f10 | 0 | 417,923,460 | 100% | ||
f11 | 0 | 417,922,884 | 100% | ||
f12 | 0 | 417,922,878 | 100% | ||
f13 | 0 | 417,922,874 | 100% | ||
f15 | 0 | 417,912,427 | 100% | ||
f16 | 0 | 417,922,605 | 100% | ||
f21 | 0 | 417,912,153 | 100% | ||
f20 | 0 | 417,912,149 | 100% | ||
f22 | 0 | 417,912,147 | 100% | ||
f23 | 0 | 417,911,966 | 100% | ||
f25 | 0 | 417,911,960 | 100% | ||
f30 | 0 | 417,911,957 | 100% | ||
f31 | 0 | 417,922,392 | 100% | ||
e70 | 0 | 417,922,279 | 100% | ||
f33 | 0 | 417,911,826 | 100% | ||
f32 | 0 | 417,922,263 | 100% | ||
f34 | 0 | 417,922,027 | 100% | ||
f35 | 0 | 417,922,004 | 100% | ||
f45 | 0 | 417,921,764 | 100% | ||
f46 | 0 | 417,911,318 | 100% | ||
iroc-z | 0 | 417,911,311 | 100% | ||
e12 | 0 | 417,921,368 | 100% | ||
e23 | 0 | 417,910,918 | 100% | ||
e21 | 0 | 417,910,914 | 100% | ||
e24 | 0 | 417,921,353 | 100% | ||
shiny | 0 | 417,910,512 | 100% | ||
chest | 0 | 417,910,503 | 100% | ||
l00t | 0 | 417,920,730 | 100% | ||
m-tech | 0 | 417,920,720 | 100% | ||
purifying | 0 | 417,920,699 | 100% | ||
captin | 0 | 417,910,068 | 100% | ||
dunk | 0 | 417,920,491 | 100% |
noganoo !cheetah ban
author | pfunk |
---|---|
permlink | re-snake-plissken-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051501260z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2018-02-26 05:14:30 |
last_update | 2018-02-26 05:14:30 |
depth | 2 |
children | 1 |
last_payout | 2018-03-05 05:14:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.748 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 221,632,045,904,452 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,505,767 |
net_rshares | 488,416,058,377 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfunk | 0 | 487,504,606,330 | 10% | ||
paulhallman | 0 | 911,452,047 | 10% |
Okay, I have banned @snake-plissken.
author | cheetah |
---|---|
permlink | cheetah-re-pfunkre-snake-plissken-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051501260z |
category | raspberry |
json_metadata | "" |
created | 2018-02-26 05:15:09 |
last_update | 2018-02-26 05:15:09 |
depth | 3 |
children | 0 |
last_payout | 2018-03-05 05:15:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 942,693,160,055,713 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,505,882 |
net_rshares | 0 |
Twist and shout!
author | spin |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t222252318z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-23 22:24:30 |
last_update | 2017-01-23 22:24:30 |
depth | 1 |
children | 3 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.039 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 15,556,352,216 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,324,804 |
net_rshares | 996,029,722,924 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
noganoo | 0 | 25,747,880,826 | 100% | ||
gardening | 0 | 359,223,220 | 100% | ||
survival | 0 | 359,372,967 | 100% | ||
seth-krings | 0 | 5,329,768,014 | 100% | ||
technology | 0 | 16,891,511,597 | 100% | ||
jparty | 0 | 19,381,218,622 | 100% | ||
auction | 0 | 2,600,085,808 | 100% | ||
honey | 0 | 272,495,815 | 100% | ||
snowden | 0 | 270,636,692 | 100% | ||
farm | 0 | 116,496,818 | 100% | ||
hemp | 0 | 1,690,464,209 | 100% | ||
flowers | 0 | 171,890,738 | 100% | ||
coins | 0 | 115,967,854 | 100% | ||
sauce | 0 | 115,957,399 | 100% | ||
charts | 0 | 115,100,828 | 100% | ||
vape | 0 | 115,100,828 | 100% | ||
islam | 0 | 115,266,443 | 100% | ||
soda | 0 | 115,100,828 | 100% | ||
social | 0 | 992,202,937 | 100% | ||
steemchain | 0 | 147,269,948 | 100% | ||
whalepool | 0 | 122,099,103 | 100% | ||
chocolates | 0 | 115,044,053 | 100% | ||
spice | 0 | 114,147,267 | 100% | ||
cigarettes | 0 | 114,147,267 | 100% | ||
dabs | 0 | 114,147,267 | 100% | ||
coding | 0 | 113,922,146 | 100% | ||
hack | 0 | 113,922,115 | 100% | ||
traveling | 0 | 113,922,115 | 100% | ||
exotic | 0 | 64,006,202 | 100% | ||
tox | 0 | 567,398,403 | 100% | ||
cute | 0 | 189,476,408 | 100% | ||
berries | 0 | 61,529,559 | 100% | ||
diamonds | 0 | 88,699,299 | 100% | ||
candies | 0 | 61,529,559 | 100% | ||
evolution | 0 | 61,500,018 | 100% | ||
future | 0 | 61,500,018 | 100% | ||
creation | 0 | 61,500,003 | 100% | ||
scripture | 0 | 59,814,704 | 100% | ||
juice | 0 | 59,814,704 | 100% | ||
warez | 0 | 59,814,704 | 100% | ||
archives | 0 | 59,814,704 | 100% | ||
survivalist | 0 | 58,238,872 | 100% | ||
hardware | 0 | 58,234,174 | 100% | ||
nostalgia | 0 | 58,234,174 | 100% | ||
lottery | 0 | 58,208,335 | 100% | ||
glass | 0 | 58,208,335 | 100% | ||
fruit | 0 | 58,208,335 | 100% | ||
recycling | 0 | 58,208,322 | 100% | ||
revelation | 0 | 58,208,322 | 100% | ||
manufacturing | 0 | 58,184,157 | 100% | ||
how-to | 0 | 58,184,157 | 100% | ||
printing | 0 | 58,184,157 | 100% | ||
plastic | 0 | 58,184,157 | 100% | ||
plastics | 0 | 58,184,143 | 100% | ||
dinosaurs | 0 | 55,379,808 | 100% | ||
hacks | 0 | 55,379,808 | 100% | ||
steemit.asia | 0 | 51,963,260 | 100% | ||
flix | 0 | 51,963,260 | 100% | ||
swapman | 0 | 51,963,260 | 100% | ||
mining | 0 | 51,963,249 | 100% | ||
mine | 0 | 51,963,249 | 100% | ||
proverbs | 0 | 333,903,034 | 100% | ||
drinks | 0 | 158,273,729 | 100% | ||
storage | 0 | 186,766,185 | 100% | ||
its | 0 | 154,956,724 | 100% | ||
cbd | 0 | 183,480,846 | 100% | ||
junk | 0 | 183,470,405 | 100% | ||
hug | 0 | 183,499,364 | 100% | ||
bearcub | 0 | 184,146,847 | 100% | ||
cyberpunk | 0 | 183,499,331 | 100% | ||
keisha | 0 | 182,727,735 | 100% | ||
blackmarket | 0 | 186,030,485 | 100% | ||
gifts | 0 | 187,595,661 | 100% | ||
gift | 0 | 154,208,036 | 100% | ||
muffin | 0 | 154,208,038 | 100% | ||
int | 0 | 182,750,639 | 100% | ||
child | 0 | 581,413,291 | 100% | ||
rag | 0 | 581,216,477 | 100% | ||
mug | 0 | 581,220,522 | 100% | ||
yam | 0 | 581,169,618 | 100% | ||
ilk | 0 | 581,120,781 | 100% | ||
jug | 0 | 581,102,845 | 100% | ||
urn | 0 | 581,058,677 | 100% | ||
dat | 0 | 581,022,315 | 100% | ||
toe | 0 | 580,967,381 | 100% | ||
qua | 0 | 580,943,851 | 100% | ||
rue | 0 | 580,885,080 | 100% | ||
dye | 0 | 580,864,035 | 100% | ||
lob | 0 | 579,879,312 | 100% | ||
leg | 0 | 579,849,706 | 100% | ||
hid | 0 | 579,728,389 | 100% | ||
oar | 0 | 579,694,831 | 100% | ||
mow | 0 | 579,671,686 | 100% | ||
rid | 0 | 579,627,031 | 100% | ||
saw | 0 | 579,567,565 | 100% | ||
dew | 0 | 579,537,025 | 100% | ||
mop | 0 | 579,462,551 | 100% | ||
jeg | 0 | 579,454,263 | 100% | ||
wee | 0 | 579,347,638 | 100% | ||
rot | 0 | 579,323,864 | 100% | ||
wok | 0 | 579,305,457 | 100% | ||
ply | 0 | 579,287,436 | 100% | ||
pun | 0 | 579,259,463 | 100% | ||
ohm | 0 | 579,234,057 | 100% | ||
paw | 0 | 579,188,378 | 100% | ||
wag | 0 | 579,181,793 | 100% | ||
neu | 0 | 579,163,141 | 100% | ||
sow | 0 | 579,144,626 | 100% | ||
hop | 0 | 579,121,049 | 100% | ||
tup | 0 | 579,102,177 | 100% | ||
peg | 0 | 579,084,331 | 100% | ||
noh | 0 | 579,055,844 | 100% | ||
yeh | 0 | 579,048,522 | 100% | ||
tow | 0 | 579,016,831 | 100% | ||
hat | 0 | 579,005,418 | 100% | ||
ish | 0 | 578,985,766 | 100% | ||
dir | 0 | 578,965,706 | 100% | ||
hic | 0 | 578,937,066 | 100% | ||
yay | 0 | 578,926,508 | 100% | ||
nay | 0 | 578,906,068 | 100% | ||
keg | 0 | 578,737,200 | 100% | ||
soh | 0 | 578,626,116 | 100% | ||
fah | 0 | 578,604,068 | 100% | ||
lah | 0 | 578,586,797 | 100% | ||
yob | 0 | 578,579,694 | 100% | ||
inn | 0 | 578,541,564 | 100% | ||
olf | 0 | 578,490,550 | 100% | ||
omy | 0 | 578,467,671 | 100% | ||
pad | 0 | 578,448,478 | 100% | ||
par | 0 | 578,412,158 | 100% | ||
sac | 0 | 578,358,126 | 100% | ||
fur | 0 | 578,328,115 | 100% | ||
pes | 0 | 578,320,462 | 100% | ||
yew | 0 | 578,289,664 | 100% | ||
zho | 0 | 578,249,917 | 100% | ||
vum | 0 | 578,230,879 | 100% | ||
rye | 0 | 578,212,584 | 100% | ||
pus | 0 | 578,194,228 | 100% | ||
wey | 0 | 578,173,801 | 100% | ||
tey | 0 | 578,144,183 | 100% | ||
teh | 0 | 578,127,347 | 100% | ||
gad | 0 | 578,105,944 | 100% | ||
wig | 0 | 578,087,774 | 100% | ||
rig | 0 | 578,070,613 | 100% | ||
yea | 0 | 578,051,729 | 100% | ||
leu | 0 | 578,034,355 | 100% | ||
hir | 0 | 578,015,689 | 100% | ||
wif | 0 | 577,990,767 | 100% | ||
wid | 0 | 577,973,309 | 100% | ||
svo | 0 | 577,955,012 | 100% | ||
lav | 0 | 577,937,841 | 100% | ||
haw | 0 | 577,919,652 | 100% | ||
children | 0 | 585,810,720 | 100% | ||
djs | 0 | 595,523,068 | 100% | ||
ssd | 0 | 577,863,565 | 100% | ||
ref | 0 | 574,469,309 | 100% | ||
bey | 0 | 574,449,688 | 100% | ||
cud | 0 | 574,432,663 | 100% | ||
hod | 0 | 574,414,692 | 100% | ||
otp | 0 | 574,406,662 | 100% | ||
jig | 0 | 574,372,051 | 100% | ||
lye | 0 | 574,353,101 | 100% | ||
oft | 0 | 574,335,127 | 100% | ||
pew | 0 | 574,318,756 | 100% | ||
pug | 0 | 574,302,385 | 100% | ||
yip | 0 | 574,118,403 | 100% | ||
tog | 0 | 574,078,694 | 100% | ||
zig | 0 | 574,061,434 | 100% | ||
evilbot | 0 | 569,304,065 | 100% | ||
pta | 0 | 569,268,427 | 100% | ||
zag | 0 | 569,246,582 | 100% | ||
esh | 0 | 568,983,953 | 100% | ||
pec | 0 | 568,951,886 | 100% | ||
waw | 0 | 568,931,300 | 100% | ||
vau | 0 | 568,912,315 | 100% | ||
kaf | 0 | 568,894,102 | 100% | ||
qat | 0 | 568,871,036 | 100% | ||
irk | 0 | 568,846,770 | 100% | ||
mon | 0 | 568,829,427 | 100% | ||
ley | 0 | 568,807,953 | 100% | ||
hum | 0 | 568,785,681 | 100% | ||
meh | 0 | 568,764,270 | 100% | ||
dau | 0 | 568,744,959 | 100% | ||
taa | 0 | 568,728,408 | 100% | ||
exy | 0 | 568,721,885 | 100% | ||
lox | 0 | 568,694,105 | 100% | ||
nid | 0 | 568,677,739 | 100% | ||
meu | 0 | 568,660,670 | 100% | ||
pud | 0 | 568,642,798 | 100% | ||
gal | 0 | 568,624,266 | 100% | ||
jog | 0 | 568,588,699 | 100% | ||
opt | 0 | 568,577,303 | 100% | ||
wem | 0 | 568,560,389 | 100% | ||
tug | 0 | 568,524,647 | 100% | ||
ubgs | 0 | 568,505,381 | 100% | ||
lulzsec | 0 | 586,244,671 | 100% | ||
weev | 0 | 580,712,486 | 100% | ||
acidus | 0 | 568,427,600 | 100% | ||
geohot | 0 | 570,915,121 | 100% | ||
bugs-bunny | 0 | 555,149,061 | 100% | ||
hatmug | 0 | 555,090,511 | 100% | ||
elventroll | 0 | 555,058,530 | 100% | ||
elven.troll | 0 | 552,025,270 | 100% | ||
ilive | 0 | 551,070,241 | 100% | ||
guild | 0 | 548,040,116 | 100% | ||
accurate | 0 | 548,022,952 | 100% | ||
brilliant | 0 | 547,996,596 | 100% | ||
calm | 0 | 547,971,825 | 100% | ||
classy | 0 | 547,842,435 | 100% | ||
sour | 0 | 547,797,099 | 100% | ||
loved | 0 | 547,788,699 | 100% | ||
alluring | 0 | 547,764,757 | 100% | ||
adorable | 0 | 547,748,741 | 100% | ||
charming | 0 | 547,731,062 | 100% | ||
irresistible | 0 | 547,712,003 | 100% | ||
magnetic | 0 | 547,681,455 | 100% | ||
holy | 0 | 547,658,059 | 100% | ||
neat | 0 | 536,425,078 | 100% | ||
winning | 0 | 536,311,980 | 100% | ||
worthwhile | 0 | 534,545,469 | 100% | ||
cheer | 0 | 534,519,972 | 100% | ||
deluxe | 0 | 534,482,060 | 100% | ||
soaked | 0 | 534,461,518 | 100% | ||
tender | 0 | 534,403,938 | 100% | ||
tune | 0 | 534,296,642 | 100% | ||
vocal | 0 | 534,255,952 | 100% | ||
melodic | 0 | 534,254,943 | 100% | ||
strong | 0 | 534,226,403 | 100% | ||
polite | 0 | 534,235,836 | 100% | ||
favorite | 0 | 534,194,045 | 100% | ||
valuable | 0 | 534,192,900 | 100% | ||
productive | 0 | 534,164,366 | 100% | ||
heavy | 0 | 534,163,426 | 100% | ||
gilded | 0 | 534,121,462 | 100% | ||
loaded | 0 | 534,130,828 | 100% | ||
effective | 0 | 534,109,953 | 100% | ||
warm | 0 | 534,107,585 | 100% | ||
caring | 0 | 534,087,322 | 100% | ||
feast | 0 | 534,072,311 | 100% | ||
welcome | 0 | 532,771,116 | 100% | ||
sticky | 0 | 532,751,006 | 100% | ||
sublime | 0 | 532,728,046 | 100% | ||
excellent | 0 | 532,718,613 | 100% | ||
glorious | 0 | 532,647,125 | 100% | ||
silly | 0 | 532,646,325 | 100% | ||
heart | 0 | 532,632,140 | 100% | ||
passionate | 0 | 532,631,937 | 100% | ||
fireandbrimstone | 0 | 532,615,108 | 100% | ||
insane | 0 | 532,614,791 | 100% | ||
heavenly | 0 | 532,600,620 | 100% | ||
splendid | 0 | 532,596,757 | 100% | ||
superior | 0 | 532,595,417 | 100% | ||
tawnie | 0 | 532,582,564 | 100% | ||
reputable | 0 | 532,571,932 | 100% | ||
skilled | 0 | 532,571,392 | 100% | ||
cougar | 0 | 532,537,174 | 100% | ||
great | 0 | 532,531,467 | 100% | ||
a-ok | 0 | 532,540,988 | 100% | ||
snake-plissken | 0 | 532,516,802 | 100% | ||
skillful | 0 | 532,513,675 | 100% | ||
keen | 0 | 532,513,000 | 100% | ||
steemville | 0 | 532,500,418 | 100% | ||
worthy | 0 | 532,489,151 | 100% | ||
acceptable | 0 | 532,486,652 | 100% | ||
left | 0 | 532,485,121 | 100% | ||
tinder | 0 | 532,473,676 | 100% | ||
fake | 0 | 532,446,178 | 100% | ||
advantage | 0 | 532,445,514 | 100% | ||
greatest | 0 | 532,444,771 | 100% | ||
theft | 0 | 532,410,923 | 100% | ||
clever | 0 | 532,410,112 | 100% | ||
gain | 0 | 532,409,122 | 100% | ||
prestige | 0 | 532,394,782 | 100% | ||
comfort | 0 | 532,394,647 | 100% | ||
lucker | 0 | 532,381,490 | 100% | ||
satisfying | 0 | 532,380,297 | 100% | ||
spin | 0 | 532,358,736 | 100% | ||
accepted | 0 | 532,361,593 | 100% | ||
robin.hood | 0 | 532,359,928 | 100% | ||
pokie | 0 | 532,341,045 | 100% | ||
godly | 0 | 532,344,443 | 100% | ||
stake | 0 | 532,342,891 | 100% | ||
tanks | 0 | 532,325,685 | 100% | ||
extra | 0 | 532,304,296 | 100% | ||
mild | 0 | 532,303,891 | 100% | ||
honor | 0 | 532,090,018 | 100% | ||
moral | 0 | 532,089,220 | 100% | ||
wise | 0 | 532,088,411 | 100% | ||
even | 0 | 532,073,773 | 100% | ||
dynamite | 0 | 532,073,571 | 100% | ||
circlejerk | 0 | 532,055,740 | 100% | ||
helpful | 0 | 532,064,971 | 100% | ||
suit | 0 | 532,022,232 | 100% | ||
ready | 0 | 532,005,440 | 100% | ||
clean | 0 | 532,014,884 | 100% | ||
harmless | 0 | 531,984,875 | 100% | ||
wholesome | 0 | 531,984,740 | 100% | ||
hot-dog | 0 | 531,970,097 | 100% | ||
adored | 0 | 531,969,692 | 100% | ||
privileged | 0 | 531,950,760 | 100% | ||
fortunate | 0 | 531,949,760 | 100% | ||
honored | 0 | 531,936,210 | 100% | ||
valued | 0 | 531,935,075 | 100% | ||
reserved | 0 | 528,822,948 | 100% | ||
proper | 0 | 528,820,496 | 100% | ||
stable | 0 | 528,738,246 | 100% | ||
civilized | 0 | 528,737,381 | 100% | ||
sweetheart | 0 | 528,721,784 | 100% | ||
liked | 0 | 528,720,587 | 100% | ||
flavor | 0 | 528,701,595 | 100% | ||
insert | 0 | 528,683,483 | 100% | ||
delete | 0 | 528,682,685 | 100% | ||
control | 0 | 528,664,252 | 100% | ||
altar | 0 | 528,662,411 | 100% | ||
shrine | 0 | 528,644,267 | 100% | ||
temple | 0 | 528,643,868 | 100% | ||
fandom | 0 | 528,617,299 | 100% | ||
church | 0 | 528,615,437 | 100% | ||
h8d | 0 | 528,601,900 | 100% | ||
select | 0 | 528,600,182 | 100% | ||
minister | 0 | 528,584,851 | 100% | ||
worship | 0 | 528,583,654 | 100% | ||
skill | 0 | 528,569,143 | 100% | ||
devoted | 0 | 528,568,944 | 100% | ||
flat | 0 | 528,530,604 | 100% | ||
co-op | 0 | 528,530,138 | 100% | ||
cover | 0 | 528,529,208 | 100% | ||
port | 0 | 528,502,974 | 100% | ||
ship | 0 | 528,502,509 | 100% | ||
model | 0 | 528,469,728 | 100% | ||
yatch | 0 | 528,479,572 | 100% | ||
zone | 0 | 528,478,197 | 100% | ||
dear | 0 | 528,458,806 | 100% | ||
leet | 0 | 528,457,876 | 100% | ||
challanger | 0 | 528,455,914 | 100% | ||
harbor | 0 | 528,438,221 | 100% | ||
shelter | 0 | 528,437,158 | 100% | ||
hole | 0 | 528,436,437 | 100% | ||
pride | 0 | 528,421,039 | 100% | ||
booty | 0 | 528,419,976 | 100% | ||
icon | 0 | 528,418,801 | 100% | ||
cave | 0 | 528,401,464 | 100% | ||
study | 0 | 528,401,264 | 100% | ||
mansion | 0 | 528,401,131 | 100% | ||
tower | 0 | 528,384,959 | 100% | ||
crib | 0 | 528,383,785 | 100% | ||
shed | 0 | 528,382,554 | 100% | ||
accept | 0 | 528,311,974 | 100% | ||
trick | 0 | 528,321,752 | 100% | ||
waiting | 0 | 528,320,091 | 100% | ||
cloak | 0 | 528,267,353 | 100% | ||
hour | 0 | 528,265,626 | 100% | ||
picture | 0 | 528,264,574 | 100% | ||
hideout | 0 | 528,256,521 | 100% | ||
puppet | 0 | 528,244,826 | 100% | ||
copy | 0 | 528,244,295 | 100% | ||
lurker | 0 | 528,231,610 | 100% | ||
tunnel | 0 | 528,230,813 | 100% | ||
room | 0 | 528,230,149 | 100% | ||
figure | 0 | 528,202,065 | 100% | ||
replica | 0 | 528,201,090 | 100% | ||
split | 0 | 528,200,182 | 100% | ||
statue | 0 | 528,199,717 | 100% | ||
theme | 0 | 528,198,854 | 100% | ||
tent | 0 | 528,169,564 | 100% | ||
defend | 0 | 528,178,945 | 100% | ||
lodge | 0 | 528,176,842 | 100% | ||
shield | 0 | 528,175,657 | 100% | ||
wrap | 0 | 528,163,290 | 100% | ||
prize | 0 | 528,164,923 | 100% | ||
same | 0 | 528,146,664 | 100% | ||
dual | 0 | 528,145,602 | 100% | ||
paired | 0 | 528,144,939 | 100% | ||
singular | 0 | 528,144,142 | 100% | ||
binary | 0 | 528,141,830 | 100% | ||
plural | 0 | 528,122,014 | 100% | ||
machine | 0 | 528,108,284 | 100% | ||
analog | 0 | 528,117,399 | 100% | ||
processor | 0 | 528,117,266 | 100% | ||
motor | 0 | 528,100,880 | 100% | ||
vehicle | 0 | 528,100,084 | 100% | ||
calculation | 0 | 528,096,179 | 100% | ||
driven | 0 | 528,095,316 | 100% | ||
ticker | 0 | 528,080,657 | 100% | ||
floppy | 0 | 528,031,324 | 100% | ||
modem | 0 | 528,030,549 | 100% | ||
router | 0 | 528,029,620 | 100% | ||
electronic | 0 | 527,993,631 | 100% | ||
vcr | 0 | 527,992,780 | 100% | ||
robotic | 0 | 527,991,851 | 100% | ||
feeling | 0 | 527,989,861 | 100% | ||
intellect | 0 | 527,946,982 | 100% | ||
entity | 0 | 527,946,064 | 100% | ||
bubbles | 0 | 527,914,717 | 100% | ||
buttercup | 0 | 527,934,487 | 100% | ||
bosom | 0 | 527,911,030 | 100% | ||
psyche | 0 | 526,636,940 | 100% | ||
ground | 0 | 526,646,723 | 100% | ||
being | 0 | 526,635,697 | 100% | ||
emotion | 0 | 526,645,546 | 100% | ||
refuge | 0 | 526,619,330 | 100% | ||
riven | 0 | 526,616,758 | 100% | ||
swain | 0 | 526,614,450 | 100% | ||
karthus | 0 | 526,591,360 | 100% | ||
zezima | 0 | 526,590,711 | 100% | ||
elves | 0 | 526,569,231 | 100% | ||
swans | 0 | 526,568,505 | 100% | ||
projectile | 0 | 526,567,076 | 100% | ||
bolt | 0 | 526,566,219 | 100% | ||
plane | 0 | 526,565,240 | 100% | ||
woodpecker | 0 | 526,537,551 | 100% | ||
stork | 0 | 526,536,045 | 100% | ||
gull | 0 | 526,534,595 | 100% | ||
bowl | 0 | 526,533,034 | 100% | ||
milkyway | 0 | 526,532,374 | 100% | ||
toucan | 0 | 526,530,869 | 100% | ||
hummingbird | 0 | 526,501,942 | 100% | ||
humming | 0 | 526,500,897 | 100% | ||
sand | 0 | 526,499,656 | 100% | ||
kiw | 0 | 526,498,951 | 100% | ||
bul | 0 | 526,496,148 | 100% | ||
bulbul | 0 | 526,495,489 | 100% | ||
invoker | 0 | 526,478,062 | 100% | ||
neutral | 0 | 526,477,007 | 100% | ||
oat | 0 | 526,476,414 | 100% | ||
dirt | 0 | 526,474,898 | 100% | ||
soil | 0 | 526,474,173 | 100% | ||
glue | 0 | 526,461,194 | 100% | ||
turf | 0 | 526,448,669 | 100% | ||
land | 0 | 526,447,944 | 100% | ||
mushrooms | 0 | 526,446,769 | 100% | ||
relaxed | 0 | 526,445,406 | 100% | ||
active | 0 | 526,443,439 | 100% | ||
involved | 0 | 526,430,739 | 100% | ||
personal | 0 | 526,421,562 | 100% | ||
gentle | 0 | 526,420,771 | 100% | ||
affection | 0 | 526,419,332 | 100% | ||
friendship | 0 | 526,418,673 | 100% | ||
piety | 0 | 526,391,386 | 100% | ||
lust | 0 | 526,390,727 | 100% | ||
delight | 0 | 526,389,749 | 100% | ||
enjoy | 0 | 526,369,649 | 100% | ||
airplane | 0 | 526,114,907 | 100% | ||
shuttle | 0 | 526,114,380 | 100% | ||
spaceship | 0 | 526,113,788 | 100% | ||
fuel | 0 | 526,113,327 | 100% | ||
relic | 0 | 526,111,111 | 100% | ||
respect | 0 | 526,099,566 | 100% | ||
sorrow | 0 | 526,094,136 | 100% | ||
hate | 0 | 526,093,478 | 100% | ||
hearted | 0 | 526,091,767 | 100% | ||
playing | 0 | 526,088,311 | 100% | ||
lovin | 0 | 526,081,003 | 100% | ||
favor | 0 | 526,067,112 | 100% | ||
spot | 0 | 582,710,245 | 100% | ||
sympathy | 0 | 526,052,963 | 100% | ||
fingers | 0 | 526,051,789 | 100% | ||
seaman | 0 | 526,051,273 | 100% | ||
blessing | 0 | 526,049,396 | 100% | ||
dearest | 0 | 526,026,274 | 100% | ||
estonia | 0 | 543,040,134 | 100% | ||
piss | 0 | 526,020,810 | 100% | ||
latvia | 0 | 526,027,862 | 100% | ||
embrace | 0 | 526,025,525 | 100% | ||
adore | 0 | 526,022,651 | 100% | ||
fond | 0 | 526,007,978 | 100% | ||
rooster | 0 | 526,002,033 | 100% | ||
pesant | 0 | 526,001,375 | 100% | ||
spirited | 0 | 526,000,455 | 100% | ||
bold | 0 | 525,999,807 | 100% | ||
valiant | 0 | 525,978,090 | 100% | ||
eager | 0 | 525,977,432 | 100% | ||
agility | 0 | 525,976,709 | 100% | ||
firm | 0 | 525,959,712 | 100% | ||
puke | 0 | 525,957,178 | 100% | ||
work | 0 | 525,955,478 | 100% | ||
process | 0 | 525,953,329 | 100% | ||
hobby | 0 | 525,924,271 | 100% | ||
adventure | 0 | 525,923,351 | 100% | ||
venture | 0 | 525,910,825 | 100% | ||
mice | 0 | 525,920,291 | 100% | ||
wager | 0 | 525,899,876 | 100% | ||
hazard | 0 | 525,899,218 | 100% | ||
heroic | 0 | 525,897,837 | 100% | ||
idea | 0 | 524,648,556 | 100% | ||
stunt | 0 | 524,647,767 | 100% | ||
ball | 0 | 524,646,912 | 100% | ||
deed | 0 | 524,644,413 | 100% | ||
risk | 0 | 524,643,492 | 100% | ||
flurry | 0 | 524,632,695 | 100% | ||
speculate | 0 | 524,606,267 | 100% | ||
speculation | 0 | 524,615,282 | 100% | ||
hacked | 0 | 564,277,934 | 100% | ||
minions | 0 | 524,601,253 | 100% | ||
servers | 0 | 524,596,925 | 100% | ||
waiter | 0 | 524,587,000 | 100% | ||
hoster | 0 | 524,585,179 | 100% | ||
windmill | 0 | 524,582,524 | 100% | ||
follow | 0 | 524,581,669 | 100% | ||
waitress | 0 | 524,579,180 | 100% | ||
fans | 0 | 524,562,843 | 100% | ||
follower | 0 | 524,541,081 | 100% | ||
ventilator | 0 | 524,538,952 | 100% | ||
draft | 0 | 524,538,294 | 100% | ||
backed | 0 | 524,536,661 | 100% | ||
alturist | 0 | 524,514,470 | 100% | ||
wake | 0 | 524,513,363 | 100% | ||
promote | 0 | 524,512,529 | 100% | ||
whisper | 0 | 524,511,674 | 100% | ||
sniff | 0 | 524,493,728 | 100% | ||
junkie | 0 | 524,491,711 | 100% | ||
turbine | 0 | 524,490,922 | 100% | ||
turbo | 0 | 524,490,012 | 100% | ||
activity | 0 | 524,476,750 | 100% | ||
raimo | 0 | 524,461,426 | 100% | ||
tanel | 0 | 524,460,768 | 100% | ||
ats | 0 | 524,459,990 | 100% | ||
loyalty | 0 | 524,458,160 | 100% | ||
lungs | 0 | 524,404,495 | 100% | ||
specialist | 0 | 524,403,333 | 100% | ||
veteran | 0 | 524,402,544 | 100% | ||
type | 0 | 524,366,635 | 100% | ||
that | 0 | 524,365,847 | 100% | ||
rookie | 0 | 524,353,565 | 100% | ||
nurse | 0 | 524,343,682 | 100% | ||
squat | 0 | 524,341,261 | 100% | ||
medic | 0 | 524,339,104 | 100% | ||
commander | 0 | 524,328,588 | 100% | ||
l0l | 0 | 524,327,208 | 100% | ||
scholar | 0 | 524,313,758 | 100% | ||
l3l | 0 | 524,293,285 | 100% | ||
d0n | 0 | 524,292,497 | 100% | ||
f0x | 0 | 524,290,426 | 100% | ||
b0t | 0 | 524,274,896 | 100% | ||
b1t | 0 | 524,272,355 | 100% | ||
s3x | 0 | 524,249,183 | 100% | ||
g0d | 0 | 524,248,536 | 100% | ||
h0t | 0 | 524,247,824 | 100% | ||
d0g | 0 | 524,244,834 | 100% | ||
eg0 | 0 | 524,218,871 | 100% | ||
t3n | 0 | 419,271,112 | 100% | ||
c0p | 0 | 419,247,306 | 100% | ||
m00 | 0 | 419,246,010 | 100% | ||
s1x | 0 | 419,235,043 | 100% | ||
n3w | 0 | 419,231,821 | 100% | ||
ac3 | 0 | 419,220,923 | 100% | ||
m3n | 0 | 419,218,167 | 100% | ||
b0y | 0 | 419,207,147 | 100% | ||
tw0 | 0 | 419,205,415 | 100% | ||
l1t | 0 | 419,195,524 | 100% | ||
s0n | 0 | 419,193,800 | 100% | ||
a1r | 0 | 419,193,007 | 100% | ||
w0w | 0 | 418,207,297 | 100% | ||
uz1 | 0 | 522,755,738 | 100% | ||
b0b | 0 | 522,754,603 | 100% | ||
c0m | 0 | 522,752,599 | 100% | ||
f3w | 0 | 418,177,390 | 100% | ||
d0s | 0 | 418,167,100 | 100% | ||
n3d | 0 | 418,176,871 | 100% | ||
t0d | 0 | 522,717,630 | 100% | ||
m0m | 0 | 418,165,332 | 100% | ||
p00 | 0 | 522,695,386 | 100% | ||
z00 | 0 | 418,147,380 | 100% | ||
f00 | 0 | 418,157,353 | 100% | ||
k1d | 0 | 418,137,892 | 100% | ||
t0y | 0 | 418,137,475 | 100% | ||
j3w | 0 | 522,668,330 | 100% | ||
a00 | 0 | 418,108,682 | 100% | ||
b00 | 0 | 418,108,168 | 100% | ||
c00 | 0 | 418,097,368 | 100% | ||
l0w | 0 | 418,102,399 | 100% | ||
l0v3 | 0 | 522,624,289 | 100% | ||
l0ve | 0 | 418,083,297 | 100% | ||
d00 | 0 | 418,070,996 | 100% | ||
e00 | 0 | 522,598,665 | 100% | ||
ctrl | 0 | 418,069,543 | 100% | ||
follow-up | 0 | 418,043,993 | 100% | ||
yours | 0 | 418,053,312 | 100% | ||
w1n | 0 | 418,042,114 | 100% | ||
b0x | 0 | 418,041,592 | 100% | ||
x0x0 | 0 | 418,040,717 | 100% | ||
r3d | 0 | 418,022,020 | 100% | ||
f1n | 0 | 418,032,456 | 100% | ||
x0x | 0 | 418,022,008 | 100% | ||
oioi | 0 | 418,021,804 | 100% | ||
cuddle | 0 | 418,021,792 | 100% | ||
unlimited | 0 | 418,021,787 | 100% | ||
d1e | 0 | 418,021,687 | 100% | ||
l1e | 0 | 418,032,122 | 100% | ||
a55 | 0 | 418,032,049 | 100% | ||
followup | 0 | 418,021,376 | 100% | ||
gunshot | 0 | 418,031,812 | 100% | ||
ce0 | 0 | 418,021,362 | 100% | ||
w1zard | 0 | 418,021,223 | 100% | ||
b0ss | 0 | 418,031,662 | 100% | ||
og-kush | 0 | 418,031,656 | 100% | ||
attached | 0 | 418,020,934 | 100% | ||
ch1na | 0 | 418,020,919 | 100% | ||
executive | 0 | 418,020,904 | 100% | ||
h3art | 0 | 418,020,751 | 100% | ||
hearts | 0 | 418,031,065 | 100% | ||
pr1ze | 0 | 418,030,932 | 100% | ||
s0s | 0 | 418,020,469 | 100% | ||
elected | 0 | 418,020,454 | 100% | ||
whiz | 0 | 418,030,711 | 100% | ||
critic | 0 | 418,020,253 | 100% | ||
i-heart-you | 0 | 418,020,068 | 100% | ||
quack | 0 | 418,020,061 | 100% | ||
wub | 0 | 418,040,928 | 100% | ||
adopt | 0 | 418,019,930 | 100% | ||
dispute | 0 | 418,019,921 | 100% | ||
admire | 0 | 418,030,353 | 100% | ||
want | 0 | 418,030,209 | 100% | ||
prefer | 0 | 418,019,755 | 100% | ||
take | 0 | 418,019,746 | 100% | ||
obtain | 0 | 418,029,849 | 100% | ||
secure | 0 | 418,019,401 | 100% | ||
g3t | 0 | 418,019,389 | 100% | ||
subscribe | 0 | 418,019,383 | 100% | ||
uphold | 0 | 418,029,816 | 100% | ||
healer | 0 | 418,019,216 | 100% | ||
surgeon | 0 | 418,019,210 | 100% | ||
intern | 0 | 418,019,201 | 100% | ||
hypnotist | 0 | 418,019,175 | 100% | ||
enchanter | 0 | 418,019,169 | 100% | ||
fountain | 0 | 418,018,987 | 100% | ||
v0ice | 0 | 418,018,878 | 100% | ||
fortuneteller | 0 | 418,029,307 | 100% | ||
medium | 0 | 418,018,857 | 100% | ||
necromancer | 0 | 418,028,681 | 100% | ||
sorcerer | 0 | 418,018,227 | 100% | ||
magician | 0 | 418,018,219 | 100% | ||
beam | 0 | 418,018,128 | 100% | ||
feds | 0 | 418,018,107 | 100% | ||
f1sh | 0 | 418,028,542 | 100% | ||
reader | 0 | 418,028,310 | 100% | ||
druid | 0 | 418,028,298 | 100% | ||
diviner | 0 | 418,017,843 | 100% | ||
mystical | 0 | 418,028,118 | 100% | ||
magical | 0 | 418,017,669 | 100% | ||
puzzling | 0 | 418,028,094 | 100% | ||
vague | 0 | 418,017,405 | 100% | ||
pokerface | 0 | 418,027,821 | 100% | ||
readme | 0 | 418,014,836 | 100% | ||
skim | 0 | 418,004,382 | 100% | ||
scan | 0 | 418,025,248 | 100% | ||
inspect | 0 | 418,014,800 | 100% | ||
herald | 0 | 418,014,788 | 100% | ||
s33 | 0 | 418,004,247 | 100% | ||
prove | 0 | 418,014,437 | 100% | ||
promise | 0 | 418,003,987 | 100% | ||
shots | 0 | 418,003,969 | 100% | ||
speak | 0 | 418,014,274 | 100% | ||
survey | 0 | 418,003,808 | 100% | ||
size | 0 | 418,003,567 | 100% | ||
crystal-ball | 0 | 418,003,557 | 100% | ||
member-berries | 0 | 418,013,963 | 100% | ||
understand | 0 | 418,013,951 | 100% | ||
megabook | 0 | 418,003,312 | 100% | ||
solve | 0 | 418,003,307 | 100% | ||
deliver | 0 | 418,013,735 | 100% | ||
warn | 0 | 418,013,720 | 100% | ||
channel | 0 | 418,013,709 | 100% | ||
fondness | 0 | 418,013,697 | 100% | ||
prayers | 0 | 418,003,067 | 100% | ||
overcharge | 0 | 418,003,058 | 100% | ||
redemption | 0 | 418,013,489 | 100% | ||
smite | 0 | 418,002,731 | 100% | ||
retribution | 0 | 418,013,154 | 100% | ||
rigour | 0 | 418,002,696 | 100% | ||
augury | 0 | 418,002,502 | 100% | ||
skin | 0 | 418,012,939 | 100% | ||
chivalry | 0 | 418,002,491 | 100% | ||
charge | 0 | 418,002,481 | 100% | ||
enjoyment | 0 | 418,002,327 | 100% | ||
warming | 0 | 418,002,316 | 100% | ||
push | 0 | 418,012,746 | 100% | ||
pull | 0 | 418,002,292 | 100% | ||
defence | 0 | 418,002,145 | 100% | ||
poor | 0 | 418,012,576 | 100% | ||
mastery | 0 | 418,002,122 | 100% | ||
k3y | 0 | 418,002,112 | 100% | ||
damage | 0 | 418,012,445 | 100% | ||
points | 0 | 418,001,990 | 100% | ||
level | 0 | 418,012,432 | 100% | ||
crit | 0 | 480,450,397 | 100% | ||
whistle | 0 | 418,001,840 | 100% | ||
cooks | 0 | 418,012,260 | 100% | ||
quest | 0 | 418,012,253 | 100% | ||
goblin | 0 | 474,665,861 | 100% | ||
taste | 0 | 418,001,370 | 100% | ||
oomph | 0 | 418,001,356 | 100% | ||
s0ur | 0 | 418,011,774 | 100% | ||
grandmaster | 0 | 418,011,652 | 100% | ||
w1se | 0 | 418,001,193 | 100% | ||
tr0ll | 0 | 418,011,621 | 100% | ||
pikacu | 0 | 418,011,417 | 100% | ||
mussolini | 0 | 418,011,388 | 100% | ||
sto | 0 | 418,011,383 | 100% | ||
sir.isaac.newton | 0 | 418,000,921 | 100% | ||
civilization | 0 | 418,000,668 | 100% | ||
grain | 0 | 418,011,087 | 100% | ||
h1p | 0 | 418,011,079 | 100% | ||
oval | 0 | 418,010,820 | 100% | ||
b3rry | 0 | 418,000,366 | 100% | ||
current | 0 | 418,010,795 | 100% | ||
polished | 0 | 418,000,216 | 100% | ||
cleverbot | 0 | 418,010,646 | 100% | ||
hip-hop | 0 | 418,000,196 | 100% | ||
minute | 0 | 418,010,634 | 100% | ||
into | 0 | 418,000,173 | 100% | ||
love-you | 0 | 447,885,716 | 100% | ||
talented | 0 | 418,010,376 | 100% | ||
first-class | 0 | 418,010,360 | 100% | ||
thief | 0 | 418,010,351 | 100% | ||
gifted | 0 | 418,010,333 | 100% | ||
g00gle | 0 | 417,999,887 | 100% | ||
pickle | 0 | 435,947,833 | 100% | ||
wingman | 0 | 474,653,360 | 100% | ||
adm1n | 0 | 417,999,701 | 100% | ||
m0d | 0 | 418,010,142 | 100% | ||
inspector | 0 | 418,010,126 | 100% | ||
v1p | 0 | 418,010,107 | 100% | ||
backer | 0 | 417,996,992 | 100% | ||
casin0 | 0 | 417,996,984 | 100% | ||
cas1no | 0 | 417,986,535 | 100% | ||
cas1n0 | 0 | 417,996,965 | 100% | ||
found | 0 | 417,996,962 | 100% | ||
keygen | 0 | 417,986,507 | 100% | ||
unit | 0 | 417,986,309 | 100% | ||
unite | 0 | 417,986,304 | 100% | ||
division | 0 | 417,986,293 | 100% | ||
factor | 0 | 417,986,040 | 100% | ||
lovebot | 0 | 417,996,475 | 100% | ||
hint | 0 | 417,986,017 | 100% | ||
gam3 | 0 | 417,996,297 | 100% | ||
trojan | 0 | 417,996,266 | 100% | ||
tidy | 0 | 417,985,816 | 100% | ||
w3t | 0 | 417,996,107 | 100% | ||
k1ng | 0 | 417,995,780 | 100% | ||
addicted-to-you | 0 | 417,985,323 | 100% | ||
love-ya | 0 | 417,985,264 | 100% | ||
youre-amazing | 0 | 417,985,161 | 100% | ||
youre-awesome | 0 | 417,985,063 | 100% | ||
soulmate | 0 | 417,985,058 | 100% | ||
roses-are-red | 0 | 417,985,035 | 100% | ||
better-half | 0 | 417,995,336 | 100% | ||
violets-are-blue | 0 | 417,995,327 | 100% | ||
sugar-is-sweet | 0 | 417,984,491 | 100% | ||
week | 0 | 417,994,911 | 100% | ||
year | 0 | 417,984,461 | 100% | ||
c00l | 0 | 417,984,253 | 100% | ||
carjack | 0 | 417,984,238 | 100% | ||
helping | 0 | 417,984,229 | 100% | ||
russ1a | 0 | 417,983,814 | 100% | ||
whip | 0 | 417,983,807 | 100% | ||
priest | 0 | 417,983,795 | 100% | ||
t0p | 0 | 417,994,032 | 100% | ||
textbook | 0 | 417,983,586 | 100% | ||
patient | 0 | 417,993,977 | 100% | ||
sawbones | 0 | 417,982,987 | 100% | ||
simulated | 0 | 417,993,405 | 100% | ||
snickers | 0 | 417,982,958 | 100% | ||
bluff | 0 | 417,982,837 | 100% | ||
wheels | 0 | 417,982,823 | 100% | ||
honestly | 0 | 417,993,030 | 100% | ||
woo-hoo | 0 | 417,982,562 | 100% | ||
whine | 0 | 417,992,989 | 100% | ||
motto | 0 | 417,992,765 | 100% | ||
growl | 0 | 417,992,753 | 100% | ||
sharper | 0 | 417,992,746 | 100% | ||
shampoo | 0 | 417,992,579 | 100% | ||
scrub | 0 | 417,982,134 | 100% | ||
sponge | 0 | 417,982,122 | 100% | ||
shower | 0 | 417,992,164 | 100% | ||
paint | 0 | 417,992,159 | 100% | ||
soak | 0 | 417,981,703 | 100% | ||
tint | 0 | 417,981,554 | 100% | ||
layer | 0 | 417,991,950 | 100% | ||
well-kept | 0 | 417,981,470 | 100% | ||
viruoso | 0 | 417,966,056 | 100% | ||
virtuoso | 0 | 417,976,478 | 100% | ||
versed | 0 | 417,966,034 | 100% | ||
c00kie | 0 | 417,976,375 | 100% | ||
there | 0 | 417,965,843 | 100% | ||
solid | 0 | 417,965,837 | 100% | ||
tops | 0 | 417,976,265 | 100% | ||
j3t | 0 | 417,976,020 | 100% | ||
tinman | 0 | 449,845,930 | 100% | ||
tincan | 0 | 417,965,561 | 100% | ||
gunman | 0 | 417,965,429 | 100% | ||
hitman | 0 | 417,975,864 | 100% | ||
apostle | 0 | 417,965,232 | 100% | ||
gautama | 0 | 417,975,664 | 100% | ||
penman | 0 | 417,965,211 | 100% | ||
lineman | 0 | 417,965,107 | 100% | ||
botman | 0 | 417,975,543 | 100% | ||
clarion | 0 | 417,975,528 | 100% | ||
cement | 0 | 417,975,220 | 100% | ||
horn | 0 | 417,964,770 | 100% | ||
a1m | 0 | 417,975,198 | 100% | ||
kosher | 0 | 417,975,182 | 100% | ||
shitsngiggles | 0 | 417,975,151 | 100% | ||
winspiral | 0 | 417,964,704 | 100% | ||
h1gh | 0 | 417,964,615 | 100% | ||
catbus | 0 | 417,964,593 | 100% | ||
snorlax | 0 | 417,975,029 | 100% | ||
pichu | 0 | 417,964,382 | 100% | ||
mayor | 0 | 417,964,358 | 100% | ||
mayor.west | 0 | 417,964,355 | 100% | ||
familiar | 0 | 417,974,624 | 100% | ||
tilt | 0 | 417,964,168 | 100% | ||
abug | 0 | 417,964,153 | 100% | ||
lesser | 0 | 417,963,980 | 100% | ||
captive | 0 | 417,963,972 | 100% | ||
good-looking | 0 | 417,974,404 | 100% | ||
here | 0 | 417,963,847 | 100% | ||
ideal | 0 | 417,963,827 | 100% | ||
incredible | 0 | 417,963,809 | 100% | ||
lure | 0 | 417,963,578 | 100% | ||
swell | 0 | 417,973,999 | 100% | ||
unselfish | 0 | 417,963,548 | 100% | ||
ducky | 0 | 417,963,541 | 100% | ||
lul | 0 | 417,973,810 | 100% | ||
old-man | 0 | 417,973,782 | 100% | ||
wise-man | 0 | 417,973,775 | 100% | ||
merch | 0 | 417,973,753 | 100% | ||
ranks | 0 | 417,944,286 | 100% | ||
botnetwork | 0 | 417,944,278 | 100% | ||
b0tn3t | 0 | 417,944,257 | 100% | ||
dwarf | 0 | 417,954,613 | 100% | ||
dragonborn | 0 | 417,944,170 | 100% | ||
banhammer | 0 | 417,944,135 | 100% | ||
legolas | 0 | 417,943,960 | 100% | ||
gimli | 0 | 417,943,950 | 100% | ||
bromir | 0 | 417,943,944 | 100% | ||
arwen | 0 | 417,953,960 | 100% | ||
figwit | 0 | 417,943,517 | 100% | ||
helm | 0 | 417,943,498 | 100% | ||
horns | 0 | 417,953,816 | 100% | ||
plate | 0 | 417,943,372 | 100% | ||
megaton | 0 | 417,943,236 | 100% | ||
hobbit | 0 | 417,943,201 | 100% | ||
wohoo | 0 | 417,943,197 | 100% | ||
r2-d2 | 0 | 417,942,721 | 100% | ||
hood | 0 | 417,942,682 | 100% | ||
optimus | 0 | 417,953,083 | 100% | ||
rayman | 0 | 417,952,769 | 100% | ||
worm | 0 | 417,942,322 | 100% | ||
worms | 0 | 417,952,760 | 100% | ||
lara.croft | 0 | 417,942,144 | 100% | ||
boot | 0 | 417,942,064 | 100% | ||
g00gl3 | 0 | 417,941,571 | 100% | ||
oo7 | 0 | 417,941,564 | 100% | ||
snare | 0 | 417,951,946 | 100% | ||
juggle | 0 | 417,941,037 | 100% | ||
qu3st | 0 | 417,951,425 | 100% | ||
incentive | 0 | 417,940,940 | 100% | ||
corrupt | 0 | 417,950,873 | 100% | ||
protection | 0 | 417,940,426 | 100% | ||
snowfall | 0 | 417,950,850 | 100% | ||
groot | 0 | 417,931,675 | 100% | ||
gromit | 0 | 417,931,669 | 100% | ||
walk | 0 | 417,931,662 | 100% | ||
sleet | 0 | 417,941,815 | 100% | ||
vendetta | 0 | 417,941,798 | 100% | ||
star-lord | 0 | 417,941,780 | 100% | ||
the.godfather | 0 | 417,931,187 | 100% | ||
obi-wan | 0 | 417,941,609 | 100% | ||
goodfellas | 0 | 417,931,142 | 100% | ||
nightcrawler | 0 | 417,941,502 | 100% | ||
mockingbird | 0 | 417,931,035 | 100% | ||
y0da | 0 | 417,941,352 | 100% | ||
ghostbusters | 0 | 417,930,732 | 100% | ||
t-800 | 0 | 417,941,161 | 100% | ||
bride | 0 | 417,941,144 | 100% | ||
groom | 0 | 417,930,537 | 100% | ||
aragorn | 0 | 417,940,952 | 100% | ||
pirates | 0 | 417,930,506 | 100% | ||
pac.man | 0 | 417,930,348 | 100% | ||
ahoy | 0 | 417,940,786 | 100% | ||
haunted | 0 | 417,940,779 | 100% | ||
millie | 0 | 417,940,252 | 100% | ||
pippi | 0 | 417,940,236 | 100% | ||
almighty | 0 | 417,940,210 | 100% | ||
snufkin | 0 | 417,929,468 | 100% | ||
little-my | 0 | 417,929,454 | 100% | ||
littlemy | 0 | 417,929,448 | 100% | ||
moomintroll | 0 | 417,929,437 | 100% | ||
moominmamma | 0 | 417,928,996 | 100% | ||
moominpappa | 0 | 417,939,432 | 100% | ||
snork | 0 | 417,939,423 | 100% | ||
starfire | 0 | 417,928,866 | 100% | ||
sylvester | 0 | 417,939,295 | 100% | ||
speedy | 0 | 417,939,282 | 100% | ||
gonzales | 0 | 417,939,019 | 100% | ||
porky | 0 | 417,928,569 | 100% | ||
general.store | 0 | 417,939,004 | 100% | ||
daffy.duck | 0 | 417,938,854 | 100% | ||
k-9 | 0 | 417,938,845 | 100% | ||
dexters | 0 | 417,928,374 | 100% | ||
laboratory | 0 | 417,928,038 | 100% | ||
doubledecker | 0 | 417,938,458 | 100% | ||
cellphone | 0 | 417,938,443 | 100% | ||
rumcake | 0 | 417,938,229 | 100% | ||
pomegranate | 0 | 417,927,779 | 100% | ||
p1e | 0 | 417,927,774 | 100% | ||
fearless | 0 | 417,927,645 | 100% | ||
sprite | 0 | 417,927,632 | 100% | ||
goodyear | 0 | 417,927,604 | 100% | ||
clementine | 0 | 417,927,155 | 100% | ||
garlic | 0 | 417,927,110 | 100% | ||
catnip | 0 | 417,927,068 | 100% | ||
tomato | 0 | 417,927,050 | 100% | ||
peppermint | 0 | 417,927,032 | 100% | ||
spearmint | 0 | 417,937,463 | 100% | ||
oregano | 0 | 417,923,723 | 100% | ||
lemongrass | 0 | 417,923,715 | 100% | ||
poet-tree | 0 | 417,923,666 | 100% | ||
c-3po | 0 | 417,923,189 | 100% | ||
elowen | 0 | 417,923,175 | 100% | ||
wonderer | 0 | 417,922,931 | 100% | ||
cedar | 0 | 417,933,360 | 100% | ||
fortitude | 0 | 417,933,343 | 100% | ||
fairness | 0 | 417,922,767 | 100% | ||
rep | 0 | 417,922,538 | 100% | ||
position | 0 | 417,922,526 | 100% | ||
character | 0 | 417,932,959 | 100% | ||
politeness | 0 | 417,932,497 | 100% | ||
repute | 0 | 417,922,035 | 100% | ||
place | 0 | 417,932,453 | 100% | ||
palace | 0 | 417,922,006 | 100% | ||
chateau | 0 | 417,921,990 | 100% | ||
fort | 0 | 417,932,411 | 100% | ||
bb-8 | 0 | 417,932,197 | 100% | ||
stormtrooper | 0 | 417,921,750 | 100% | ||
stronghold | 0 | 417,932,178 | 100% | ||
hold | 0 | 417,921,725 | 100% | ||
keep | 0 | 417,921,716 | 100% | ||
wall-e | 0 | 417,932,122 | 100% | ||
tik-tok | 0 | 417,921,451 | 100% | ||
wordshop | 0 | 417,921,433 | 100% | ||
astar | 0 | 417,931,861 | 100% | ||
ed-209 | 0 | 417,921,412 | 100% | ||
joyful | 0 | 417,921,353 | 100% | ||
bouncer | 0 | 417,920,433 | 100% | ||
vital | 0 | 417,920,421 | 100% | ||
fitting | 0 | 417,930,851 | 100% | ||
paddle | 0 | 417,920,388 | 100% | ||
propeller | 0 | 417,930,818 | 100% | ||
ballista | 0 | 417,920,375 | 100% | ||
dirtless | 0 | 417,930,722 | 100% | ||
shadowline | 0 | 417,930,709 | 100% | ||
e28 | 0 | 417,920,218 | 100% | ||
e30 | 0 | 417,920,218 | 100% | ||
e34 | 0 | 417,930,391 | 100% | ||
e36 | 0 | 417,930,386 | 100% | ||
e32 | 0 | 417,919,939 | 100% | ||
e39 | 0 | 417,919,934 | 100% | ||
e46 | 0 | 417,919,791 | 100% | ||
e60 | 0 | 417,930,229 | 100% | ||
f-1 | 0 | 417,919,779 | 100% | ||
e61 | 0 | 417,923,704 | 100% | ||
e91 | 0 | 417,923,695 | 100% | ||
e38 | 0 | 417,913,235 | 100% | ||
e92 | 0 | 417,913,228 | 100% | ||
f01 | 0 | 417,913,039 | 100% | ||
f02 | 0 | 417,913,033 | 100% | ||
f03 | 0 | 417,923,468 | 100% | ||
f10 | 0 | 417,923,460 | 100% | ||
f11 | 0 | 417,922,884 | 100% | ||
f12 | 0 | 417,922,878 | 100% | ||
f13 | 0 | 417,922,874 | 100% | ||
f15 | 0 | 417,912,427 | 100% | ||
f16 | 0 | 417,922,605 | 100% | ||
f21 | 0 | 417,912,153 | 100% | ||
f20 | 0 | 417,912,149 | 100% | ||
f22 | 0 | 417,912,147 | 100% | ||
f23 | 0 | 417,911,966 | 100% | ||
f25 | 0 | 417,911,960 | 100% | ||
f30 | 0 | 417,911,957 | 100% | ||
f31 | 0 | 417,922,392 | 100% | ||
e70 | 0 | 417,922,279 | 100% | ||
f33 | 0 | 417,911,826 | 100% | ||
f32 | 0 | 417,922,263 | 100% | ||
f34 | 0 | 417,922,027 | 100% | ||
f35 | 0 | 417,922,004 | 100% | ||
f45 | 0 | 417,921,764 | 100% | ||
f46 | 0 | 417,911,318 | 100% | ||
iroc-z | 0 | 417,911,311 | 100% | ||
e12 | 0 | 417,921,368 | 100% | ||
e23 | 0 | 417,910,918 | 100% | ||
e21 | 0 | 417,910,914 | 100% | ||
e24 | 0 | 417,921,353 | 100% | ||
shiny | 0 | 417,910,512 | 100% | ||
chest | 0 | 417,910,503 | 100% | ||
l00t | 0 | 417,920,730 | 100% | ||
m-tech | 0 | 417,920,720 | 100% | ||
purifying | 0 | 417,920,699 | 100% | ||
captin | 0 | 417,910,068 | 100% |
how the hell did you make 2000 accounts...
author | kingfisher |
---|---|
permlink | re-spin-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170922t190623851z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-09-22 19:06:24 |
last_update | 2017-09-22 19:06:24 |
depth | 2 |
children | 0 |
last_payout | 2017-09-29 19:06:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.217 HBD |
curator_payout_value | 0.070 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 4,767,345,866 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,644,630 |
net_rshares | 99,354,740,262 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 94,741,129,907 | 0.02% | ||
englishtchrivy | 0 | 4,613,610,355 | 1% |
noganoo !cheetah ban
author | pfunk |
---|---|
permlink | re-spin-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051347058z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2018-02-26 05:13:18 |
last_update | 2018-02-26 05:13:18 |
depth | 2 |
children | 1 |
last_payout | 2018-03-05 05:13:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.744 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 221,632,045,904,452 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,505,577 |
net_rshares | 488,415,309,084 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfunk | 0 | 487,503,857,037 | 10% | ||
paulhallman | 0 | 911,452,047 | 10% |
Okay, I have banned @spin.
author | cheetah |
---|---|
permlink | cheetah-re-pfunkre-spin-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051347058z |
category | raspberry |
json_metadata | "" |
created | 2018-02-26 05:13:45 |
last_update | 2018-02-26 05:13:45 |
depth | 3 |
children | 0 |
last_payout | 2018-03-05 05:13:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 942,693,160,055,713 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,505,650 |
net_rshares | 0 |
Hello @ubg, Congratulations! Your post has been chosen by the communities of SteemTrail as one of our top picks today. Also, as a selection for being a top pick today, you have been [awarded a TRAIL token for your participation](https://discord.gg/w4sdqkS) on our innovative platform...STEEM. [Please visit SteemTrail](https://discord.gg/w4sdqkS) to get instructions on how to claim your TRAIL token today. If you wish to [learn more about receiving additional TRAIL tokens and SteemTrail](https://discord.gg/w4sdqkS), stop by and chat with us. Happy TRAIL! http://i.imgur.com/vs9Ai7I.png
author | steemtrail |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t234035927z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"users":["ubg"],"image":["http://i.imgur.com/vs9Ai7I.png"],"links":["https://discord.gg/w4sdqkS"],"app":"steemit/0.1"} |
created | 2017-01-12 23:40:48 |
last_update | 2017-01-12 23:40:48 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.843 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 595 |
author_reputation | 263,209,530,304,931 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,232,660 |
net_rshares | 10,376,965,021,863 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fuzzyvest | 0 | 4,926,403,956,673 | 100% | ||
pairmike | 0 | 49,845,563,789 | 100% | ||
pheonike | 0 | 41,707,037,047 | 50% | ||
hcf27 | 0 | 5,679,275,392 | 100% | ||
acidsun | 0 | 26,734,185,620 | 50% | ||
instructor2121 | 0 | 52,258,714,833 | 100% | ||
drinkzya | 0 | 30,231,324,348 | 100% | ||
pangur-ban | 0 | 1,948,306,229 | 100% | ||
ratel | 0 | 20,245,882,172 | 100% | ||
thecryptodrive | 0 | 134,601,280,166 | 100% | ||
grandpere | 0 | 40,160,817,809 | 80% | ||
albertogm | 0 | 21,689,923,395 | 100% | ||
crok | 0 | 5,174,948,227 | 100% | ||
christoph3 | 0 | 5,876,572,937 | 100% | ||
tyler-fletcher | 0 | 4,282,456,404 | 100% | ||
razvanelulmarin | 0 | 79,629,386,836 | 100% | ||
clement | 0 | 12,237,269,837 | 100% | ||
isteemit | 0 | 63,468,795,645 | 100% | ||
skapaneas | 0 | 20,576,076,676 | 100% | ||
venuspcs | 0 | 72,402,045,014 | 100% | ||
sgtechservices | 0 | 11,974,229,647 | 100% | ||
stranger27 | 0 | 6,134,073,380 | 60% | ||
mrwang | 0 | 54,466,550,108 | 100% | ||
vl248 | 0 | 10,786,005,168 | 100% | ||
jaycobbell | 0 | 11,065,792,605 | 100% | ||
condra | 0 | 46,556,697,894 | 100% | ||
raymondspeaks | 0 | 6,025,477,247 | 100% | ||
arcange | 0 | 62,719,874,335 | 100% | ||
cryptojoy.com | 0 | 1,610,008,591 | 100% | ||
fiona777 | 0 | 4,003,601,480 | 100% | ||
phenom | 0 | 14,293,594,632 | 100% | ||
ubg | 0 | 22,537,319,690 | 100% | ||
bitcoiner | 0 | 50,056,038,673 | 100% | ||
jedau | 0 | 4,589,003,521 | 100% | ||
kooshikoo | 0 | 11,800,763,301 | 50% | ||
tygergamer | 0 | 13,800,768,561 | 100% | ||
jed78 | 0 | 9,353,113,078 | 100% | ||
steemdrive | 0 | 103,762,797,428 | 100% | ||
always1success | 0 | 6,352,841,735 | 100% | ||
stephen.king989 | 0 | 13,183,832,489 | 50% | ||
shiri | 0 | 1,470,735,484 | 100% | ||
d3nv3r | 0 | 2,850,963,723 | 100% | ||
dolov | 0 | 1,588,420,823 | 70% | ||
bigsambucca | 0 | 719,837,159 | 100% | ||
steemradio | 0 | 1,000,194,758 | 100% | ||
vegascomic | 0 | 14,401,483,133 | 100% | ||
nextgen622 | 0 | 485,783,259 | 1% | ||
cryptoblu | 0 | 101,173,333 | 100% | ||
jayfox | 0 | 4,320,123,394 | 100% | ||
seadroo22 | 0 | 3,698,529,294 | 100% | ||
dollarvigilante | 0 | 1,181,402,904,961 | 100% | ||
anotherjoe | 0 | 173,819,124,662 | 100% | ||
serejandmyself | 0 | 239,841,586,765 | 100% | ||
mrlogic | 0 | 17,152,827,832 | 100% | ||
barrycooper | 0 | 159,949,980,958 | 100% | ||
sethlinson | 0 | 16,532,354,768 | 100% | ||
hilarski | 0 | 168,688,963,912 | 100% | ||
imag1ne | 0 | 2,665,178,145 | 50% | ||
shadowspub | 0 | 7,056,837,409 | 50% | ||
leno4ek | 0 | 2,201,227,282 | 100% | ||
escapeamericanow | 0 | 3,417,954,601 | 100% | ||
nulliusinverba | 0 | 5,168,827,177 | 100% | ||
mikehere | 0 | 22,098,117,131 | 100% | ||
maryfromsochi | 0 | 4,799,909,551 | 100% | ||
zettar | 0 | 1,571,805,289 | 100% | ||
kiwideb | 0 | 43,711,125,211 | 100% | ||
renzoarg | 0 | 10,655,529,992 | 100% | ||
finleyexp | 0 | 1,501,930,372 | 100% | ||
dexter-k | 0 | 62,351,007,104 | 100% | ||
charlieshrem | 0 | 1,668,587,616,063 | 100% | ||
tracemayer | 0 | 27,623,373,691 | 100% | ||
burnin | 0 | 12,421,444,666 | 100% | ||
develcuy | 0 | 5,304,256,439 | 100% | ||
teemsteem | 0 | 94,902,054 | 100% | ||
haphazard-hstead | 0 | 23,075,430,228 | 100% | ||
fortinbuff | 0 | 10,187,679,852 | 100% | ||
luzcypher | 0 | 71,471,613,694 | 100% | ||
grisha-danunaher | 0 | 12,379,994,525 | 60% | ||
dylanhobalart | 0 | 4,421,011,146 | 100% | ||
killbis | 0 | 6,247,551,393 | 100% | ||
gamer00 | 0 | 79,380,944,583 | 100% | ||
expat | 0 | 97,231,769 | 100% | ||
steemtrail | 0 | 20,436,010,740 | 100% | ||
miqdad | 0 | 140,456,248 | 100% | ||
tdv.witness | 0 | 26,515,438,577 | 100% | ||
ianboil | 0 | 3,155,198,776 | 100% | ||
jessamynorchard | 0 | 16,831,499,664 | 100% | ||
garvofe | 0 | 5,137,278,770 | 100% | ||
expatembassy | 0 | 88,383,345 | 100% | ||
gardening-trail | 0 | 1,797,994,526 | 100% | ||
business-trail | 0 | 962,682,105 | 100% | ||
crypto-trail | 0 | 348,721,770 | 100% | ||
chessminator | 0 | 122,041,983 | 100% | ||
foraging-trail | 0 | 1,131,361,393 | 100% | ||
baerdric | 0 | 24,316,924,793 | 100% | ||
teukumukhlis | 0 | 2,349,805,511 | 100% | ||
alex1983ch | 0 | 4,340,284,619 | 100% | ||
technovedanta | 0 | 22,737,550,854 | 100% | ||
taskmanager | 0 | 50,305,916,877 | 100% | ||
seablue | 0 | 4,023,092,198 | 50% | ||
timm | 0 | 301,871,319 | 100% | ||
meysam | 0 | 4,820,998,983 | 100% | ||
pizzagate-trail | 0 | 2,226,301,153 | 100% | ||
codydeeds | 0 | 5,531,219,355 | 100% | ||
dxrafi | 0 | 678,282,331 | 100% | ||
steemit.news | 0 | 1,083,114,923 | 100% | ||
simply1moore | 0 | 1,610,958,505 | 100% | ||
throughtheglass | 0 | 3,665,160,938 | 70% | ||
tamersameeh | 0 | 491,736,135 | 100% | ||
steemnews.online | 0 | 756,320,542 | 100% | ||
standpoint | 0 | 213,289,914 | 100% | ||
michaeladamparis | 0 | 10,870,453,959 | 100% | ||
richa.proffy | 0 | 423,380,939 | 100% | ||
fiction-trail | 0 | 1,759,047,961 | 100% | ||
poetry-trail | 0 | 600,693,892 | 100% | ||
paleo-trail | 0 | 447,858,068 | 100% |
Legit.
author | steemville |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t221919677z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-23 22:21:00 |
last_update | 2017-01-23 22:21:00 |
depth | 1 |
children | 2 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.039 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 15,508,193,959 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,324,777 |
net_rshares | 992,947,594,392 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
noganoo | 0 | 24,031,577,197 | 100% | ||
gardening | 0 | 359,223,220 | 100% | ||
survival | 0 | 359,372,967 | 100% | ||
seth-krings | 0 | 5,157,865,024 | 100% | ||
technology | 0 | 16,346,730,422 | 100% | ||
jparty | 0 | 18,920,017,395 | 100% | ||
auction | 0 | 2,516,218,325 | 100% | ||
honey | 0 | 272,495,815 | 100% | ||
snowden | 0 | 270,636,692 | 100% | ||
farm | 0 | 116,496,818 | 100% | ||
hemp | 0 | 1,690,464,209 | 100% | ||
flowers | 0 | 171,890,738 | 100% | ||
coins | 0 | 115,967,854 | 100% | ||
sauce | 0 | 115,957,399 | 100% | ||
charts | 0 | 115,100,828 | 100% | ||
vape | 0 | 115,100,828 | 100% | ||
islam | 0 | 115,266,443 | 100% | ||
soda | 0 | 115,100,828 | 100% | ||
social | 0 | 907,156,971 | 100% | ||
steemchain | 0 | 147,269,948 | 100% | ||
whalepool | 0 | 122,099,103 | 100% | ||
chocolates | 0 | 115,044,053 | 100% | ||
spice | 0 | 114,147,267 | 100% | ||
cigarettes | 0 | 114,147,267 | 100% | ||
dabs | 0 | 114,147,267 | 100% | ||
coding | 0 | 113,922,146 | 100% | ||
hack | 0 | 113,922,115 | 100% | ||
traveling | 0 | 113,922,115 | 100% | ||
exotic | 0 | 64,006,202 | 100% | ||
tox | 0 | 567,398,403 | 100% | ||
cute | 0 | 189,476,408 | 100% | ||
berries | 0 | 61,529,559 | 100% | ||
diamonds | 0 | 88,699,299 | 100% | ||
candies | 0 | 61,529,559 | 100% | ||
evolution | 0 | 61,500,018 | 100% | ||
future | 0 | 61,500,018 | 100% | ||
creation | 0 | 61,500,003 | 100% | ||
scripture | 0 | 59,814,704 | 100% | ||
juice | 0 | 59,814,704 | 100% | ||
warez | 0 | 59,814,704 | 100% | ||
archives | 0 | 59,814,704 | 100% | ||
survivalist | 0 | 58,238,872 | 100% | ||
hardware | 0 | 58,234,174 | 100% | ||
nostalgia | 0 | 58,234,174 | 100% | ||
lottery | 0 | 58,208,335 | 100% | ||
glass | 0 | 58,208,335 | 100% | ||
fruit | 0 | 58,208,335 | 100% | ||
recycling | 0 | 58,208,322 | 100% | ||
revelation | 0 | 58,208,322 | 100% | ||
manufacturing | 0 | 58,184,157 | 100% | ||
how-to | 0 | 58,184,157 | 100% | ||
printing | 0 | 58,184,157 | 100% | ||
plastic | 0 | 58,184,157 | 100% | ||
plastics | 0 | 58,184,143 | 100% | ||
dinosaurs | 0 | 55,379,808 | 100% | ||
hacks | 0 | 55,379,808 | 100% | ||
steemit.asia | 0 | 51,963,260 | 100% | ||
flix | 0 | 51,963,260 | 100% | ||
swapman | 0 | 51,963,260 | 100% | ||
mining | 0 | 51,963,249 | 100% | ||
mine | 0 | 51,963,249 | 100% | ||
proverbs | 0 | 333,903,034 | 100% | ||
drinks | 0 | 158,273,729 | 100% | ||
storage | 0 | 186,766,185 | 100% | ||
its | 0 | 154,956,724 | 100% | ||
cbd | 0 | 183,480,846 | 100% | ||
junk | 0 | 183,470,405 | 100% | ||
hug | 0 | 183,499,364 | 100% | ||
bearcub | 0 | 184,146,847 | 100% | ||
cyberpunk | 0 | 183,499,331 | 100% | ||
keisha | 0 | 182,727,735 | 100% | ||
blackmarket | 0 | 186,030,485 | 100% | ||
gifts | 0 | 187,595,661 | 100% | ||
gift | 0 | 154,208,036 | 100% | ||
muffin | 0 | 154,208,038 | 100% | ||
int | 0 | 182,750,639 | 100% | ||
child | 0 | 581,413,291 | 100% | ||
rag | 0 | 581,216,477 | 100% | ||
mug | 0 | 581,220,522 | 100% | ||
yam | 0 | 581,169,618 | 100% | ||
ilk | 0 | 581,120,781 | 100% | ||
jug | 0 | 581,102,845 | 100% | ||
urn | 0 | 581,058,677 | 100% | ||
dat | 0 | 581,022,315 | 100% | ||
toe | 0 | 580,967,381 | 100% | ||
qua | 0 | 580,943,851 | 100% | ||
rue | 0 | 580,885,080 | 100% | ||
dye | 0 | 580,864,035 | 100% | ||
lob | 0 | 579,879,312 | 100% | ||
leg | 0 | 579,849,706 | 100% | ||
hid | 0 | 579,728,389 | 100% | ||
oar | 0 | 579,694,831 | 100% | ||
mow | 0 | 579,671,686 | 100% | ||
rid | 0 | 579,627,031 | 100% | ||
saw | 0 | 579,567,565 | 100% | ||
dew | 0 | 579,537,025 | 100% | ||
mop | 0 | 579,462,551 | 100% | ||
jeg | 0 | 579,454,263 | 100% | ||
wee | 0 | 579,347,638 | 100% | ||
rot | 0 | 579,323,864 | 100% | ||
wok | 0 | 579,305,457 | 100% | ||
ply | 0 | 579,287,436 | 100% | ||
pun | 0 | 579,259,463 | 100% | ||
ohm | 0 | 579,234,057 | 100% | ||
paw | 0 | 579,188,378 | 100% | ||
wag | 0 | 579,181,793 | 100% | ||
neu | 0 | 579,163,141 | 100% | ||
sow | 0 | 579,144,626 | 100% | ||
hop | 0 | 579,121,049 | 100% | ||
tup | 0 | 579,102,177 | 100% | ||
peg | 0 | 579,084,331 | 100% | ||
noh | 0 | 579,055,844 | 100% | ||
yeh | 0 | 579,048,522 | 100% | ||
tow | 0 | 579,016,831 | 100% | ||
hat | 0 | 579,005,418 | 100% | ||
ish | 0 | 578,985,766 | 100% | ||
dir | 0 | 578,965,706 | 100% | ||
hic | 0 | 578,937,066 | 100% | ||
yay | 0 | 578,926,508 | 100% | ||
nay | 0 | 578,906,068 | 100% | ||
keg | 0 | 578,737,200 | 100% | ||
soh | 0 | 578,626,116 | 100% | ||
fah | 0 | 578,604,068 | 100% | ||
lah | 0 | 578,586,797 | 100% | ||
yob | 0 | 578,579,694 | 100% | ||
inn | 0 | 578,541,564 | 100% | ||
olf | 0 | 578,490,550 | 100% | ||
omy | 0 | 578,467,671 | 100% | ||
pad | 0 | 578,448,478 | 100% | ||
par | 0 | 578,412,158 | 100% | ||
sac | 0 | 578,358,126 | 100% | ||
fur | 0 | 578,328,115 | 100% | ||
pes | 0 | 578,320,462 | 100% | ||
yew | 0 | 578,289,664 | 100% | ||
zho | 0 | 578,249,917 | 100% | ||
vum | 0 | 578,230,879 | 100% | ||
rye | 0 | 578,212,584 | 100% | ||
pus | 0 | 578,194,228 | 100% | ||
wey | 0 | 578,173,801 | 100% | ||
tey | 0 | 578,144,183 | 100% | ||
teh | 0 | 578,127,347 | 100% | ||
gad | 0 | 578,105,944 | 100% | ||
wig | 0 | 578,087,774 | 100% | ||
rig | 0 | 578,070,613 | 100% | ||
yea | 0 | 578,051,729 | 100% | ||
leu | 0 | 578,034,355 | 100% | ||
hir | 0 | 578,015,689 | 100% | ||
wif | 0 | 577,990,767 | 100% | ||
wid | 0 | 577,973,309 | 100% | ||
svo | 0 | 577,955,012 | 100% | ||
lav | 0 | 577,937,841 | 100% | ||
haw | 0 | 577,919,652 | 100% | ||
children | 0 | 585,810,720 | 100% | ||
djs | 0 | 595,523,068 | 100% | ||
ssd | 0 | 577,863,565 | 100% | ||
ref | 0 | 574,469,309 | 100% | ||
bey | 0 | 574,449,688 | 100% | ||
cud | 0 | 574,432,663 | 100% | ||
hod | 0 | 574,414,692 | 100% | ||
otp | 0 | 574,406,662 | 100% | ||
jig | 0 | 574,372,051 | 100% | ||
lye | 0 | 574,353,101 | 100% | ||
oft | 0 | 574,335,127 | 100% | ||
pew | 0 | 574,318,756 | 100% | ||
pug | 0 | 574,302,385 | 100% | ||
yip | 0 | 574,118,403 | 100% | ||
tog | 0 | 574,078,694 | 100% | ||
zig | 0 | 574,061,434 | 100% | ||
evilbot | 0 | 569,304,065 | 100% | ||
pta | 0 | 569,268,427 | 100% | ||
zag | 0 | 569,246,582 | 100% | ||
esh | 0 | 568,983,953 | 100% | ||
pec | 0 | 568,951,886 | 100% | ||
waw | 0 | 568,931,300 | 100% | ||
vau | 0 | 568,912,315 | 100% | ||
kaf | 0 | 568,894,102 | 100% | ||
qat | 0 | 568,871,036 | 100% | ||
irk | 0 | 568,846,770 | 100% | ||
mon | 0 | 568,829,427 | 100% | ||
ley | 0 | 568,807,953 | 100% | ||
hum | 0 | 568,785,681 | 100% | ||
meh | 0 | 568,764,270 | 100% | ||
dau | 0 | 568,744,959 | 100% | ||
taa | 0 | 568,728,408 | 100% | ||
exy | 0 | 568,721,885 | 100% | ||
lox | 0 | 568,694,105 | 100% | ||
nid | 0 | 568,677,739 | 100% | ||
meu | 0 | 568,660,670 | 100% | ||
pud | 0 | 568,642,798 | 100% | ||
gal | 0 | 568,624,266 | 100% | ||
jog | 0 | 568,588,699 | 100% | ||
opt | 0 | 568,577,303 | 100% | ||
wem | 0 | 568,560,389 | 100% | ||
tug | 0 | 568,524,647 | 100% | ||
ubgs | 0 | 568,505,381 | 100% | ||
lulzsec | 0 | 586,244,671 | 100% | ||
weev | 0 | 580,712,486 | 100% | ||
acidus | 0 | 568,427,600 | 100% | ||
geohot | 0 | 570,915,121 | 100% | ||
bugs-bunny | 0 | 555,149,061 | 100% | ||
hatmug | 0 | 555,090,511 | 100% | ||
elventroll | 0 | 555,058,530 | 100% | ||
elven.troll | 0 | 552,025,270 | 100% | ||
ilive | 0 | 551,070,241 | 100% | ||
guild | 0 | 548,040,116 | 100% | ||
accurate | 0 | 548,022,952 | 100% | ||
brilliant | 0 | 547,996,596 | 100% | ||
calm | 0 | 547,971,825 | 100% | ||
classy | 0 | 547,842,435 | 100% | ||
sour | 0 | 547,797,099 | 100% | ||
loved | 0 | 547,788,699 | 100% | ||
alluring | 0 | 547,764,757 | 100% | ||
adorable | 0 | 547,748,741 | 100% | ||
charming | 0 | 547,731,062 | 100% | ||
irresistible | 0 | 547,712,003 | 100% | ||
magnetic | 0 | 547,681,455 | 100% | ||
holy | 0 | 547,658,059 | 100% | ||
neat | 0 | 536,425,078 | 100% | ||
winning | 0 | 536,311,980 | 100% | ||
worthwhile | 0 | 534,545,469 | 100% | ||
cheer | 0 | 534,519,972 | 100% | ||
deluxe | 0 | 534,482,060 | 100% | ||
soaked | 0 | 534,461,518 | 100% | ||
tender | 0 | 534,403,938 | 100% | ||
tune | 0 | 534,296,642 | 100% | ||
vocal | 0 | 534,255,952 | 100% | ||
melodic | 0 | 534,254,943 | 100% | ||
strong | 0 | 534,226,403 | 100% | ||
polite | 0 | 534,235,836 | 100% | ||
favorite | 0 | 534,194,045 | 100% | ||
valuable | 0 | 534,192,900 | 100% | ||
productive | 0 | 534,164,366 | 100% | ||
heavy | 0 | 534,163,426 | 100% | ||
gilded | 0 | 534,121,462 | 100% | ||
loaded | 0 | 534,130,828 | 100% | ||
effective | 0 | 534,109,953 | 100% | ||
warm | 0 | 534,107,585 | 100% | ||
caring | 0 | 534,087,322 | 100% | ||
feast | 0 | 534,072,311 | 100% | ||
welcome | 0 | 532,771,116 | 100% | ||
sticky | 0 | 532,751,006 | 100% | ||
sublime | 0 | 532,728,046 | 100% | ||
excellent | 0 | 532,718,613 | 100% | ||
glorious | 0 | 532,647,125 | 100% | ||
silly | 0 | 532,646,325 | 100% | ||
heart | 0 | 532,632,140 | 100% | ||
passionate | 0 | 532,631,937 | 100% | ||
fireandbrimstone | 0 | 532,615,108 | 100% | ||
insane | 0 | 532,614,791 | 100% | ||
heavenly | 0 | 532,600,620 | 100% | ||
splendid | 0 | 532,596,757 | 100% | ||
superior | 0 | 532,595,417 | 100% | ||
tawnie | 0 | 532,582,564 | 100% | ||
reputable | 0 | 532,571,932 | 100% | ||
skilled | 0 | 532,571,392 | 100% | ||
cougar | 0 | 532,537,174 | 100% | ||
great | 0 | 532,531,467 | 100% | ||
a-ok | 0 | 532,540,988 | 100% | ||
snake-plissken | 0 | 532,516,802 | 100% | ||
skillful | 0 | 532,513,675 | 100% | ||
keen | 0 | 532,513,000 | 100% | ||
steemville | 0 | 532,500,418 | 100% | ||
worthy | 0 | 532,489,151 | 100% | ||
acceptable | 0 | 532,486,652 | 100% | ||
left | 0 | 532,485,121 | 100% | ||
tinder | 0 | 532,473,676 | 100% | ||
fake | 0 | 532,446,178 | 100% | ||
advantage | 0 | 532,445,514 | 100% | ||
greatest | 0 | 532,444,771 | 100% | ||
theft | 0 | 532,410,923 | 100% | ||
clever | 0 | 532,410,112 | 100% | ||
gain | 0 | 532,409,122 | 100% | ||
prestige | 0 | 532,394,782 | 100% | ||
comfort | 0 | 532,394,647 | 100% | ||
lucker | 0 | 532,381,490 | 100% | ||
satisfying | 0 | 532,380,297 | 100% | ||
spin | 0 | 532,358,736 | 100% | ||
accepted | 0 | 532,361,593 | 100% | ||
robin.hood | 0 | 532,359,928 | 100% | ||
pokie | 0 | 532,341,045 | 100% | ||
godly | 0 | 532,344,443 | 100% | ||
stake | 0 | 532,342,891 | 100% | ||
tanks | 0 | 532,325,685 | 100% | ||
extra | 0 | 532,304,296 | 100% | ||
mild | 0 | 532,303,891 | 100% | ||
honor | 0 | 532,090,018 | 100% | ||
moral | 0 | 532,089,220 | 100% | ||
wise | 0 | 532,088,411 | 100% | ||
even | 0 | 532,073,773 | 100% | ||
dynamite | 0 | 532,073,571 | 100% | ||
circlejerk | 0 | 532,055,740 | 100% | ||
helpful | 0 | 532,064,971 | 100% | ||
suit | 0 | 532,022,232 | 100% | ||
ready | 0 | 532,005,440 | 100% | ||
clean | 0 | 532,014,884 | 100% | ||
harmless | 0 | 531,984,875 | 100% | ||
wholesome | 0 | 531,984,740 | 100% | ||
hot-dog | 0 | 531,970,097 | 100% | ||
adored | 0 | 531,969,692 | 100% | ||
privileged | 0 | 531,950,760 | 100% | ||
fortunate | 0 | 531,949,760 | 100% | ||
honored | 0 | 531,936,210 | 100% | ||
valued | 0 | 531,935,075 | 100% | ||
reserved | 0 | 528,822,948 | 100% | ||
proper | 0 | 528,820,496 | 100% | ||
stable | 0 | 528,738,246 | 100% | ||
civilized | 0 | 528,737,381 | 100% | ||
sweetheart | 0 | 528,721,784 | 100% | ||
liked | 0 | 528,720,587 | 100% | ||
flavor | 0 | 528,701,595 | 100% | ||
insert | 0 | 528,683,483 | 100% | ||
delete | 0 | 528,682,685 | 100% | ||
control | 0 | 528,664,252 | 100% | ||
altar | 0 | 528,662,411 | 100% | ||
shrine | 0 | 528,644,267 | 100% | ||
temple | 0 | 528,643,868 | 100% | ||
fandom | 0 | 528,617,299 | 100% | ||
church | 0 | 528,615,437 | 100% | ||
h8d | 0 | 528,601,900 | 100% | ||
select | 0 | 528,600,182 | 100% | ||
minister | 0 | 528,584,851 | 100% | ||
worship | 0 | 528,583,654 | 100% | ||
skill | 0 | 528,569,143 | 100% | ||
devoted | 0 | 528,568,944 | 100% | ||
flat | 0 | 528,530,604 | 100% | ||
co-op | 0 | 528,530,138 | 100% | ||
cover | 0 | 528,529,208 | 100% | ||
port | 0 | 528,502,974 | 100% | ||
ship | 0 | 528,502,509 | 100% | ||
model | 0 | 528,469,728 | 100% | ||
yatch | 0 | 528,479,572 | 100% | ||
zone | 0 | 528,478,197 | 100% | ||
dear | 0 | 528,458,806 | 100% | ||
leet | 0 | 528,457,876 | 100% | ||
challanger | 0 | 528,455,914 | 100% | ||
harbor | 0 | 528,438,221 | 100% | ||
shelter | 0 | 528,437,158 | 100% | ||
hole | 0 | 528,436,437 | 100% | ||
pride | 0 | 528,421,039 | 100% | ||
booty | 0 | 528,419,976 | 100% | ||
icon | 0 | 528,418,801 | 100% | ||
cave | 0 | 528,401,464 | 100% | ||
study | 0 | 528,401,264 | 100% | ||
mansion | 0 | 528,401,131 | 100% | ||
tower | 0 | 528,384,959 | 100% | ||
crib | 0 | 528,383,785 | 100% | ||
shed | 0 | 528,382,554 | 100% | ||
accept | 0 | 528,311,974 | 100% | ||
trick | 0 | 528,321,752 | 100% | ||
waiting | 0 | 528,320,091 | 100% | ||
cloak | 0 | 528,267,353 | 100% | ||
hour | 0 | 528,265,626 | 100% | ||
picture | 0 | 528,264,574 | 100% | ||
hideout | 0 | 528,256,521 | 100% | ||
puppet | 0 | 528,244,826 | 100% | ||
copy | 0 | 528,244,295 | 100% | ||
lurker | 0 | 528,231,610 | 100% | ||
tunnel | 0 | 528,230,813 | 100% | ||
room | 0 | 528,230,149 | 100% | ||
figure | 0 | 528,202,065 | 100% | ||
replica | 0 | 528,201,090 | 100% | ||
split | 0 | 528,200,182 | 100% | ||
statue | 0 | 528,199,717 | 100% | ||
theme | 0 | 528,198,854 | 100% | ||
tent | 0 | 528,169,564 | 100% | ||
defend | 0 | 528,178,945 | 100% | ||
lodge | 0 | 528,176,842 | 100% | ||
shield | 0 | 528,175,657 | 100% | ||
wrap | 0 | 528,163,290 | 100% | ||
prize | 0 | 528,164,923 | 100% | ||
same | 0 | 528,146,664 | 100% | ||
dual | 0 | 528,145,602 | 100% | ||
paired | 0 | 528,144,939 | 100% | ||
singular | 0 | 528,144,142 | 100% | ||
binary | 0 | 528,141,830 | 100% | ||
plural | 0 | 528,122,014 | 100% | ||
machine | 0 | 528,108,284 | 100% | ||
analog | 0 | 528,117,399 | 100% | ||
processor | 0 | 528,117,266 | 100% | ||
motor | 0 | 528,100,880 | 100% | ||
vehicle | 0 | 528,100,084 | 100% | ||
calculation | 0 | 528,096,179 | 100% | ||
driven | 0 | 528,095,316 | 100% | ||
ticker | 0 | 528,080,657 | 100% | ||
floppy | 0 | 528,031,324 | 100% | ||
modem | 0 | 528,030,549 | 100% | ||
router | 0 | 528,029,620 | 100% | ||
electronic | 0 | 527,993,631 | 100% | ||
vcr | 0 | 527,992,780 | 100% | ||
robotic | 0 | 527,991,851 | 100% | ||
feeling | 0 | 527,989,861 | 100% | ||
intellect | 0 | 527,946,982 | 100% | ||
entity | 0 | 527,946,064 | 100% | ||
bubbles | 0 | 527,914,717 | 100% | ||
buttercup | 0 | 527,934,487 | 100% | ||
bosom | 0 | 527,911,030 | 100% | ||
psyche | 0 | 526,636,940 | 100% | ||
ground | 0 | 526,646,723 | 100% | ||
being | 0 | 526,635,697 | 100% | ||
emotion | 0 | 526,645,546 | 100% | ||
refuge | 0 | 526,619,330 | 100% | ||
riven | 0 | 526,616,758 | 100% | ||
swain | 0 | 526,614,450 | 100% | ||
karthus | 0 | 526,591,360 | 100% | ||
zezima | 0 | 526,590,711 | 100% | ||
elves | 0 | 526,569,231 | 100% | ||
swans | 0 | 526,568,505 | 100% | ||
projectile | 0 | 526,567,076 | 100% | ||
bolt | 0 | 526,566,219 | 100% | ||
plane | 0 | 526,565,240 | 100% | ||
woodpecker | 0 | 526,537,551 | 100% | ||
stork | 0 | 526,536,045 | 100% | ||
gull | 0 | 526,534,595 | 100% | ||
bowl | 0 | 526,533,034 | 100% | ||
milkyway | 0 | 526,532,374 | 100% | ||
toucan | 0 | 526,530,869 | 100% | ||
hummingbird | 0 | 526,501,942 | 100% | ||
humming | 0 | 526,500,897 | 100% | ||
sand | 0 | 526,499,656 | 100% | ||
kiw | 0 | 526,498,951 | 100% | ||
bul | 0 | 526,496,148 | 100% | ||
bulbul | 0 | 526,495,489 | 100% | ||
invoker | 0 | 526,478,062 | 100% | ||
neutral | 0 | 526,477,007 | 100% | ||
oat | 0 | 526,476,414 | 100% | ||
dirt | 0 | 526,474,898 | 100% | ||
soil | 0 | 526,474,173 | 100% | ||
glue | 0 | 526,461,194 | 100% | ||
turf | 0 | 526,448,669 | 100% | ||
land | 0 | 526,447,944 | 100% | ||
mushrooms | 0 | 526,446,769 | 100% | ||
relaxed | 0 | 526,445,406 | 100% | ||
active | 0 | 526,443,439 | 100% | ||
involved | 0 | 526,430,739 | 100% | ||
personal | 0 | 526,421,562 | 100% | ||
gentle | 0 | 526,420,771 | 100% | ||
affection | 0 | 526,419,332 | 100% | ||
friendship | 0 | 526,418,673 | 100% | ||
piety | 0 | 526,391,386 | 100% | ||
lust | 0 | 526,390,727 | 100% | ||
delight | 0 | 526,389,749 | 100% | ||
enjoy | 0 | 526,369,649 | 100% | ||
airplane | 0 | 526,114,907 | 100% | ||
shuttle | 0 | 526,114,380 | 100% | ||
spaceship | 0 | 526,113,788 | 100% | ||
fuel | 0 | 526,113,327 | 100% | ||
relic | 0 | 526,111,111 | 100% | ||
respect | 0 | 526,099,566 | 100% | ||
sorrow | 0 | 526,094,136 | 100% | ||
hate | 0 | 526,093,478 | 100% | ||
hearted | 0 | 526,091,767 | 100% | ||
playing | 0 | 526,088,311 | 100% | ||
lovin | 0 | 526,081,003 | 100% | ||
favor | 0 | 526,067,112 | 100% | ||
spot | 0 | 582,710,245 | 100% | ||
sympathy | 0 | 526,052,963 | 100% | ||
fingers | 0 | 526,051,789 | 100% | ||
seaman | 0 | 526,051,273 | 100% | ||
blessing | 0 | 526,049,396 | 100% | ||
dearest | 0 | 526,026,274 | 100% | ||
estonia | 0 | 543,040,134 | 100% | ||
piss | 0 | 526,020,810 | 100% | ||
latvia | 0 | 526,027,862 | 100% | ||
embrace | 0 | 526,025,525 | 100% | ||
adore | 0 | 526,022,651 | 100% | ||
fond | 0 | 526,007,978 | 100% | ||
rooster | 0 | 526,002,033 | 100% | ||
pesant | 0 | 526,001,375 | 100% | ||
spirited | 0 | 526,000,455 | 100% | ||
bold | 0 | 525,999,807 | 100% | ||
valiant | 0 | 525,978,090 | 100% | ||
eager | 0 | 525,977,432 | 100% | ||
agility | 0 | 525,976,709 | 100% | ||
firm | 0 | 525,959,712 | 100% | ||
puke | 0 | 525,957,178 | 100% | ||
work | 0 | 525,955,478 | 100% | ||
process | 0 | 525,953,329 | 100% | ||
hobby | 0 | 525,924,271 | 100% | ||
adventure | 0 | 525,923,351 | 100% | ||
venture | 0 | 525,910,825 | 100% | ||
mice | 0 | 525,920,291 | 100% | ||
wager | 0 | 525,899,876 | 100% | ||
hazard | 0 | 525,899,218 | 100% | ||
heroic | 0 | 525,897,837 | 100% | ||
idea | 0 | 524,648,556 | 100% | ||
stunt | 0 | 524,647,767 | 100% | ||
ball | 0 | 524,646,912 | 100% | ||
deed | 0 | 524,644,413 | 100% | ||
risk | 0 | 524,643,492 | 100% | ||
flurry | 0 | 524,632,695 | 100% | ||
speculate | 0 | 524,606,267 | 100% | ||
speculation | 0 | 524,615,282 | 100% | ||
hacked | 0 | 564,277,934 | 100% | ||
minions | 0 | 524,601,253 | 100% | ||
servers | 0 | 524,596,925 | 100% | ||
waiter | 0 | 524,587,000 | 100% | ||
hoster | 0 | 524,585,179 | 100% | ||
windmill | 0 | 524,582,524 | 100% | ||
follow | 0 | 524,581,669 | 100% | ||
waitress | 0 | 524,579,180 | 100% | ||
fans | 0 | 524,562,843 | 100% | ||
follower | 0 | 524,541,081 | 100% | ||
ventilator | 0 | 524,538,952 | 100% | ||
draft | 0 | 524,538,294 | 100% | ||
backed | 0 | 524,536,661 | 100% | ||
alturist | 0 | 524,514,470 | 100% | ||
wake | 0 | 524,513,363 | 100% | ||
promote | 0 | 524,512,529 | 100% | ||
whisper | 0 | 524,511,674 | 100% | ||
sniff | 0 | 524,493,728 | 100% | ||
junkie | 0 | 524,491,711 | 100% | ||
turbine | 0 | 524,490,922 | 100% | ||
turbo | 0 | 524,490,012 | 100% | ||
activity | 0 | 524,476,750 | 100% | ||
raimo | 0 | 524,461,426 | 100% | ||
tanel | 0 | 524,460,768 | 100% | ||
ats | 0 | 524,459,990 | 100% | ||
loyalty | 0 | 524,458,160 | 100% | ||
lungs | 0 | 524,404,495 | 100% | ||
specialist | 0 | 524,403,333 | 100% | ||
veteran | 0 | 524,402,544 | 100% | ||
type | 0 | 524,366,635 | 100% | ||
that | 0 | 524,365,847 | 100% | ||
rookie | 0 | 524,353,565 | 100% | ||
nurse | 0 | 524,343,682 | 100% | ||
squat | 0 | 524,341,261 | 100% | ||
medic | 0 | 524,339,104 | 100% | ||
commander | 0 | 524,328,588 | 100% | ||
l0l | 0 | 524,327,208 | 100% | ||
scholar | 0 | 524,313,758 | 100% | ||
l3l | 0 | 524,293,285 | 100% | ||
d0n | 0 | 524,292,497 | 100% | ||
f0x | 0 | 524,290,426 | 100% | ||
b0t | 0 | 524,274,896 | 100% | ||
b1t | 0 | 524,272,355 | 100% | ||
s3x | 0 | 524,249,183 | 100% | ||
g0d | 0 | 524,248,536 | 100% | ||
h0t | 0 | 524,247,824 | 100% | ||
d0g | 0 | 524,244,834 | 100% | ||
eg0 | 0 | 524,218,871 | 100% | ||
t3n | 0 | 419,271,112 | 100% | ||
c0p | 0 | 419,247,306 | 100% | ||
m00 | 0 | 419,246,010 | 100% | ||
s1x | 0 | 419,235,043 | 100% | ||
n3w | 0 | 419,231,821 | 100% | ||
ac3 | 0 | 419,220,923 | 100% | ||
m3n | 0 | 419,218,167 | 100% | ||
b0y | 0 | 419,207,147 | 100% | ||
tw0 | 0 | 419,205,415 | 100% | ||
l1t | 0 | 419,195,524 | 100% | ||
s0n | 0 | 419,193,800 | 100% | ||
a1r | 0 | 419,193,007 | 100% | ||
w0w | 0 | 418,207,297 | 100% | ||
uz1 | 0 | 522,755,738 | 100% | ||
b0b | 0 | 522,754,603 | 100% | ||
c0m | 0 | 522,752,599 | 100% | ||
f3w | 0 | 418,177,390 | 100% | ||
d0s | 0 | 418,167,100 | 100% | ||
n3d | 0 | 418,176,871 | 100% | ||
t0d | 0 | 522,717,630 | 100% | ||
m0m | 0 | 418,165,332 | 100% | ||
p00 | 0 | 522,695,386 | 100% | ||
z00 | 0 | 418,147,380 | 100% | ||
f00 | 0 | 418,157,353 | 100% | ||
k1d | 0 | 418,137,892 | 100% | ||
t0y | 0 | 418,137,475 | 100% | ||
j3w | 0 | 522,668,330 | 100% | ||
a00 | 0 | 418,108,682 | 100% | ||
b00 | 0 | 418,108,168 | 100% | ||
c00 | 0 | 418,097,368 | 100% | ||
l0w | 0 | 418,102,399 | 100% | ||
l0v3 | 0 | 522,624,289 | 100% | ||
l0ve | 0 | 418,083,297 | 100% | ||
d00 | 0 | 418,070,996 | 100% | ||
e00 | 0 | 522,598,665 | 100% | ||
ctrl | 0 | 418,069,543 | 100% | ||
follow-up | 0 | 418,043,993 | 100% | ||
yours | 0 | 418,053,312 | 100% | ||
w1n | 0 | 418,042,114 | 100% | ||
b0x | 0 | 418,041,592 | 100% | ||
x0x0 | 0 | 418,040,717 | 100% | ||
r3d | 0 | 418,022,020 | 100% | ||
f1n | 0 | 418,032,456 | 100% | ||
x0x | 0 | 418,022,008 | 100% | ||
oioi | 0 | 418,021,804 | 100% | ||
cuddle | 0 | 418,021,792 | 100% | ||
unlimited | 0 | 418,021,787 | 100% | ||
d1e | 0 | 418,021,687 | 100% | ||
l1e | 0 | 418,032,122 | 100% | ||
a55 | 0 | 418,032,049 | 100% | ||
followup | 0 | 418,021,376 | 100% | ||
gunshot | 0 | 418,031,812 | 100% | ||
ce0 | 0 | 418,021,362 | 100% | ||
w1zard | 0 | 418,021,223 | 100% | ||
b0ss | 0 | 418,031,662 | 100% | ||
og-kush | 0 | 418,031,656 | 100% | ||
attached | 0 | 418,020,934 | 100% | ||
ch1na | 0 | 418,020,919 | 100% | ||
executive | 0 | 418,020,904 | 100% | ||
h3art | 0 | 418,020,751 | 100% | ||
hearts | 0 | 418,031,065 | 100% | ||
pr1ze | 0 | 418,030,932 | 100% | ||
s0s | 0 | 418,020,469 | 100% | ||
elected | 0 | 418,020,454 | 100% | ||
whiz | 0 | 418,030,711 | 100% | ||
critic | 0 | 418,020,253 | 100% | ||
i-heart-you | 0 | 418,020,068 | 100% | ||
quack | 0 | 418,020,061 | 100% | ||
wub | 0 | 418,040,928 | 100% | ||
adopt | 0 | 418,019,930 | 100% | ||
dispute | 0 | 418,019,921 | 100% | ||
admire | 0 | 418,030,353 | 100% | ||
want | 0 | 418,030,209 | 100% | ||
prefer | 0 | 418,019,755 | 100% | ||
take | 0 | 418,019,746 | 100% | ||
obtain | 0 | 418,029,849 | 100% | ||
secure | 0 | 418,019,401 | 100% | ||
g3t | 0 | 418,019,389 | 100% | ||
subscribe | 0 | 418,019,383 | 100% | ||
uphold | 0 | 418,029,816 | 100% | ||
healer | 0 | 418,019,216 | 100% | ||
surgeon | 0 | 418,019,210 | 100% | ||
intern | 0 | 418,019,201 | 100% | ||
hypnotist | 0 | 418,019,175 | 100% | ||
enchanter | 0 | 418,019,169 | 100% | ||
fountain | 0 | 418,018,987 | 100% | ||
v0ice | 0 | 418,018,878 | 100% | ||
fortuneteller | 0 | 418,029,307 | 100% | ||
medium | 0 | 418,018,857 | 100% | ||
necromancer | 0 | 418,028,681 | 100% | ||
sorcerer | 0 | 418,018,227 | 100% | ||
magician | 0 | 418,018,219 | 100% | ||
beam | 0 | 418,018,128 | 100% | ||
feds | 0 | 418,018,107 | 100% | ||
f1sh | 0 | 418,028,542 | 100% | ||
reader | 0 | 418,028,310 | 100% | ||
druid | 0 | 418,028,298 | 100% | ||
diviner | 0 | 418,017,843 | 100% | ||
mystical | 0 | 418,028,118 | 100% | ||
magical | 0 | 418,017,669 | 100% | ||
puzzling | 0 | 418,028,094 | 100% | ||
vague | 0 | 418,017,405 | 100% | ||
pokerface | 0 | 418,027,821 | 100% | ||
readme | 0 | 418,014,836 | 100% | ||
skim | 0 | 418,004,382 | 100% | ||
scan | 0 | 418,025,248 | 100% | ||
inspect | 0 | 418,014,800 | 100% | ||
herald | 0 | 418,014,788 | 100% | ||
s33 | 0 | 418,004,247 | 100% | ||
prove | 0 | 418,014,437 | 100% | ||
promise | 0 | 418,003,987 | 100% | ||
shots | 0 | 418,003,969 | 100% | ||
speak | 0 | 418,014,274 | 100% | ||
survey | 0 | 418,003,808 | 100% | ||
size | 0 | 418,003,567 | 100% | ||
crystal-ball | 0 | 418,003,557 | 100% | ||
member-berries | 0 | 418,013,963 | 100% | ||
understand | 0 | 418,013,951 | 100% | ||
megabook | 0 | 418,003,312 | 100% | ||
solve | 0 | 418,003,307 | 100% | ||
deliver | 0 | 418,013,735 | 100% | ||
warn | 0 | 418,013,720 | 100% | ||
channel | 0 | 418,013,709 | 100% | ||
fondness | 0 | 418,013,697 | 100% | ||
prayers | 0 | 418,003,067 | 100% | ||
overcharge | 0 | 418,003,058 | 100% | ||
redemption | 0 | 418,013,489 | 100% | ||
smite | 0 | 418,002,731 | 100% | ||
retribution | 0 | 418,013,154 | 100% | ||
rigour | 0 | 418,002,696 | 100% | ||
augury | 0 | 418,002,502 | 100% | ||
skin | 0 | 418,012,939 | 100% | ||
chivalry | 0 | 418,002,491 | 100% | ||
charge | 0 | 418,002,481 | 100% | ||
enjoyment | 0 | 418,002,327 | 100% | ||
warming | 0 | 418,002,316 | 100% | ||
push | 0 | 418,012,746 | 100% | ||
pull | 0 | 418,002,292 | 100% | ||
defence | 0 | 418,002,145 | 100% | ||
poor | 0 | 418,012,576 | 100% | ||
mastery | 0 | 418,002,122 | 100% | ||
k3y | 0 | 418,002,112 | 100% | ||
damage | 0 | 418,012,445 | 100% | ||
points | 0 | 418,001,990 | 100% | ||
level | 0 | 418,012,432 | 100% | ||
crit | 0 | 480,450,397 | 100% | ||
whistle | 0 | 418,001,840 | 100% | ||
cooks | 0 | 418,012,260 | 100% | ||
quest | 0 | 418,012,253 | 100% | ||
goblin | 0 | 474,665,861 | 100% | ||
taste | 0 | 418,001,370 | 100% | ||
oomph | 0 | 418,001,356 | 100% | ||
s0ur | 0 | 418,011,774 | 100% | ||
grandmaster | 0 | 418,011,652 | 100% | ||
w1se | 0 | 418,001,193 | 100% | ||
tr0ll | 0 | 418,011,621 | 100% | ||
pikacu | 0 | 418,011,417 | 100% | ||
mussolini | 0 | 418,011,388 | 100% | ||
sto | 0 | 418,011,383 | 100% | ||
sir.isaac.newton | 0 | 418,000,921 | 100% | ||
civilization | 0 | 418,000,668 | 100% | ||
grain | 0 | 418,011,087 | 100% | ||
h1p | 0 | 418,011,079 | 100% | ||
oval | 0 | 418,010,820 | 100% | ||
b3rry | 0 | 418,000,366 | 100% | ||
current | 0 | 418,010,795 | 100% | ||
polished | 0 | 418,000,216 | 100% | ||
cleverbot | 0 | 418,010,646 | 100% | ||
hip-hop | 0 | 418,000,196 | 100% | ||
minute | 0 | 418,010,634 | 100% | ||
into | 0 | 418,000,173 | 100% | ||
love-you | 0 | 447,885,716 | 100% | ||
talented | 0 | 418,010,376 | 100% | ||
first-class | 0 | 418,010,360 | 100% | ||
thief | 0 | 418,010,351 | 100% | ||
gifted | 0 | 418,010,333 | 100% | ||
g00gle | 0 | 417,999,887 | 100% | ||
pickle | 0 | 435,947,833 | 100% | ||
wingman | 0 | 474,653,360 | 100% | ||
adm1n | 0 | 417,999,701 | 100% | ||
m0d | 0 | 418,010,142 | 100% | ||
inspector | 0 | 418,010,126 | 100% | ||
v1p | 0 | 418,010,107 | 100% | ||
backer | 0 | 417,996,992 | 100% | ||
casin0 | 0 | 417,996,984 | 100% | ||
cas1no | 0 | 417,986,535 | 100% | ||
cas1n0 | 0 | 417,996,965 | 100% | ||
found | 0 | 417,996,962 | 100% | ||
keygen | 0 | 417,986,507 | 100% | ||
unit | 0 | 417,986,309 | 100% | ||
unite | 0 | 417,986,304 | 100% | ||
division | 0 | 417,986,293 | 100% | ||
factor | 0 | 417,986,040 | 100% | ||
lovebot | 0 | 417,996,475 | 100% | ||
hint | 0 | 417,986,017 | 100% | ||
gam3 | 0 | 417,996,297 | 100% | ||
trojan | 0 | 417,996,266 | 100% | ||
tidy | 0 | 417,985,816 | 100% | ||
w3t | 0 | 417,996,107 | 100% | ||
k1ng | 0 | 417,995,780 | 100% | ||
addicted-to-you | 0 | 417,985,323 | 100% | ||
love-ya | 0 | 417,985,264 | 100% | ||
youre-amazing | 0 | 417,985,161 | 100% | ||
youre-awesome | 0 | 417,985,063 | 100% | ||
soulmate | 0 | 417,985,058 | 100% | ||
roses-are-red | 0 | 417,985,035 | 100% | ||
better-half | 0 | 417,995,336 | 100% | ||
violets-are-blue | 0 | 417,995,327 | 100% | ||
sugar-is-sweet | 0 | 417,984,491 | 100% | ||
week | 0 | 417,994,911 | 100% | ||
year | 0 | 417,984,461 | 100% | ||
c00l | 0 | 417,984,253 | 100% | ||
carjack | 0 | 417,984,238 | 100% | ||
helping | 0 | 417,984,229 | 100% | ||
russ1a | 0 | 417,983,814 | 100% | ||
whip | 0 | 417,983,807 | 100% | ||
priest | 0 | 417,983,795 | 100% | ||
t0p | 0 | 417,994,032 | 100% | ||
textbook | 0 | 417,983,586 | 100% | ||
patient | 0 | 417,993,977 | 100% | ||
sawbones | 0 | 417,982,987 | 100% | ||
simulated | 0 | 417,993,405 | 100% | ||
snickers | 0 | 417,982,958 | 100% | ||
bluff | 0 | 417,982,837 | 100% | ||
wheels | 0 | 417,982,823 | 100% | ||
honestly | 0 | 417,993,030 | 100% | ||
woo-hoo | 0 | 417,982,562 | 100% | ||
whine | 0 | 417,992,989 | 100% | ||
motto | 0 | 417,992,765 | 100% | ||
growl | 0 | 417,992,753 | 100% | ||
sharper | 0 | 417,992,746 | 100% | ||
shampoo | 0 | 417,992,579 | 100% | ||
scrub | 0 | 417,982,134 | 100% | ||
sponge | 0 | 417,982,122 | 100% | ||
shower | 0 | 417,992,164 | 100% | ||
paint | 0 | 417,992,159 | 100% | ||
soak | 0 | 417,981,703 | 100% | ||
tint | 0 | 417,981,554 | 100% | ||
layer | 0 | 417,991,950 | 100% | ||
well-kept | 0 | 417,981,470 | 100% | ||
viruoso | 0 | 417,966,056 | 100% | ||
virtuoso | 0 | 417,976,478 | 100% | ||
versed | 0 | 417,966,034 | 100% | ||
c00kie | 0 | 417,976,375 | 100% | ||
there | 0 | 417,965,843 | 100% | ||
solid | 0 | 417,965,837 | 100% | ||
tops | 0 | 417,976,265 | 100% | ||
j3t | 0 | 417,976,020 | 100% | ||
tinman | 0 | 449,845,930 | 100% | ||
tincan | 0 | 417,965,561 | 100% | ||
gunman | 0 | 417,965,429 | 100% | ||
hitman | 0 | 417,975,864 | 100% | ||
apostle | 0 | 417,965,232 | 100% | ||
gautama | 0 | 417,975,664 | 100% | ||
penman | 0 | 417,965,211 | 100% | ||
lineman | 0 | 417,965,107 | 100% | ||
botman | 0 | 417,975,543 | 100% | ||
clarion | 0 | 417,975,528 | 100% | ||
cement | 0 | 417,975,220 | 100% | ||
horn | 0 | 417,964,770 | 100% | ||
a1m | 0 | 417,975,198 | 100% | ||
kosher | 0 | 417,975,182 | 100% | ||
shitsngiggles | 0 | 417,975,151 | 100% | ||
winspiral | 0 | 417,964,704 | 100% | ||
h1gh | 0 | 417,964,615 | 100% | ||
catbus | 0 | 417,964,593 | 100% | ||
snorlax | 0 | 417,975,029 | 100% | ||
pichu | 0 | 417,964,382 | 100% | ||
mayor | 0 | 417,964,358 | 100% | ||
mayor.west | 0 | 417,964,355 | 100% | ||
familiar | 0 | 417,974,624 | 100% | ||
tilt | 0 | 417,964,168 | 100% | ||
abug | 0 | 417,964,153 | 100% | ||
lesser | 0 | 417,963,980 | 100% | ||
captive | 0 | 417,963,972 | 100% | ||
good-looking | 0 | 417,974,404 | 100% | ||
here | 0 | 417,963,847 | 100% | ||
ideal | 0 | 417,963,827 | 100% | ||
incredible | 0 | 417,963,809 | 100% | ||
lure | 0 | 417,963,578 | 100% | ||
swell | 0 | 417,973,999 | 100% | ||
unselfish | 0 | 417,963,548 | 100% | ||
ducky | 0 | 417,963,541 | 100% | ||
lul | 0 | 417,973,810 | 100% | ||
old-man | 0 | 417,973,782 | 100% | ||
wise-man | 0 | 417,973,775 | 100% | ||
merch | 0 | 417,973,753 | 100% | ||
ranks | 0 | 417,944,286 | 100% | ||
botnetwork | 0 | 417,944,278 | 100% | ||
b0tn3t | 0 | 417,944,257 | 100% | ||
dwarf | 0 | 417,954,613 | 100% | ||
dragonborn | 0 | 417,944,170 | 100% | ||
banhammer | 0 | 417,944,135 | 100% | ||
legolas | 0 | 417,943,960 | 100% | ||
gimli | 0 | 417,943,950 | 100% | ||
bromir | 0 | 417,943,944 | 100% | ||
arwen | 0 | 417,953,960 | 100% | ||
figwit | 0 | 417,943,517 | 100% | ||
helm | 0 | 417,943,498 | 100% | ||
horns | 0 | 417,953,816 | 100% | ||
plate | 0 | 417,943,372 | 100% | ||
megaton | 0 | 417,943,236 | 100% | ||
hobbit | 0 | 417,943,201 | 100% | ||
wohoo | 0 | 417,943,197 | 100% | ||
r2-d2 | 0 | 417,942,721 | 100% | ||
hood | 0 | 417,942,682 | 100% | ||
optimus | 0 | 417,953,083 | 100% | ||
rayman | 0 | 417,952,769 | 100% | ||
worm | 0 | 417,942,322 | 100% | ||
worms | 0 | 417,952,760 | 100% | ||
lara.croft | 0 | 417,942,144 | 100% | ||
boot | 0 | 417,942,064 | 100% | ||
g00gl3 | 0 | 417,941,571 | 100% | ||
oo7 | 0 | 417,941,564 | 100% | ||
snare | 0 | 417,951,946 | 100% | ||
juggle | 0 | 417,941,037 | 100% | ||
qu3st | 0 | 417,951,425 | 100% | ||
incentive | 0 | 417,940,940 | 100% | ||
corrupt | 0 | 417,950,873 | 100% | ||
protection | 0 | 417,940,426 | 100% | ||
snowfall | 0 | 417,950,850 | 100% | ||
groot | 0 | 417,931,675 | 100% | ||
gromit | 0 | 417,931,669 | 100% | ||
walk | 0 | 417,931,662 | 100% | ||
sleet | 0 | 417,941,815 | 100% | ||
vendetta | 0 | 417,941,798 | 100% | ||
star-lord | 0 | 417,941,780 | 100% | ||
the.godfather | 0 | 417,931,187 | 100% | ||
obi-wan | 0 | 417,941,609 | 100% | ||
goodfellas | 0 | 417,931,142 | 100% | ||
nightcrawler | 0 | 417,941,502 | 100% | ||
mockingbird | 0 | 417,931,035 | 100% | ||
y0da | 0 | 417,941,352 | 100% | ||
ghostbusters | 0 | 417,930,732 | 100% | ||
t-800 | 0 | 417,941,161 | 100% | ||
bride | 0 | 417,941,144 | 100% | ||
groom | 0 | 417,930,537 | 100% | ||
aragorn | 0 | 417,940,952 | 100% | ||
pirates | 0 | 417,930,506 | 100% | ||
pac.man | 0 | 417,930,348 | 100% | ||
ahoy | 0 | 417,940,786 | 100% | ||
haunted | 0 | 417,940,779 | 100% | ||
millie | 0 | 417,940,252 | 100% | ||
pippi | 0 | 417,940,236 | 100% | ||
almighty | 0 | 417,940,210 | 100% | ||
snufkin | 0 | 417,929,468 | 100% | ||
little-my | 0 | 417,929,454 | 100% | ||
littlemy | 0 | 417,929,448 | 100% | ||
moomintroll | 0 | 417,929,437 | 100% | ||
moominmamma | 0 | 417,928,996 | 100% | ||
moominpappa | 0 | 417,939,432 | 100% | ||
snork | 0 | 417,939,423 | 100% | ||
starfire | 0 | 417,928,866 | 100% | ||
sylvester | 0 | 417,939,295 | 100% | ||
speedy | 0 | 417,939,282 | 100% | ||
gonzales | 0 | 417,939,019 | 100% | ||
porky | 0 | 417,928,569 | 100% | ||
general.store | 0 | 417,939,004 | 100% | ||
daffy.duck | 0 | 417,938,854 | 100% | ||
k-9 | 0 | 417,938,845 | 100% | ||
dexters | 0 | 417,928,374 | 100% | ||
laboratory | 0 | 417,928,038 | 100% | ||
doubledecker | 0 | 417,938,458 | 100% | ||
cellphone | 0 | 417,938,443 | 100% | ||
rumcake | 0 | 417,938,229 | 100% | ||
pomegranate | 0 | 417,927,779 | 100% | ||
p1e | 0 | 417,927,774 | 100% | ||
fearless | 0 | 417,927,645 | 100% | ||
sprite | 0 | 417,927,632 | 100% | ||
goodyear | 0 | 417,927,604 | 100% | ||
clementine | 0 | 417,927,155 | 100% | ||
garlic | 0 | 417,927,110 | 100% | ||
catnip | 0 | 417,927,068 | 100% | ||
tomato | 0 | 417,927,050 | 100% | ||
peppermint | 0 | 417,927,032 | 100% | ||
spearmint | 0 | 417,937,463 | 100% | ||
oregano | 0 | 417,923,723 | 100% | ||
lemongrass | 0 | 417,923,715 | 100% | ||
poet-tree | 0 | 417,923,666 | 100% | ||
c-3po | 0 | 417,923,189 | 100% | ||
elowen | 0 | 417,923,175 | 100% | ||
wonderer | 0 | 417,922,931 | 100% | ||
cedar | 0 | 417,933,360 | 100% | ||
fortitude | 0 | 417,933,343 | 100% | ||
fairness | 0 | 417,922,767 | 100% | ||
rep | 0 | 417,922,538 | 100% | ||
position | 0 | 417,922,526 | 100% | ||
character | 0 | 417,932,959 | 100% | ||
politeness | 0 | 417,932,497 | 100% | ||
repute | 0 | 417,922,035 | 100% | ||
place | 0 | 417,932,453 | 100% | ||
palace | 0 | 417,922,006 | 100% | ||
chateau | 0 | 417,921,990 | 100% | ||
fort | 0 | 417,932,411 | 100% | ||
bb-8 | 0 | 417,932,197 | 100% | ||
stormtrooper | 0 | 417,921,750 | 100% | ||
stronghold | 0 | 417,932,178 | 100% | ||
hold | 0 | 417,921,725 | 100% | ||
keep | 0 | 417,921,716 | 100% | ||
wall-e | 0 | 417,932,122 | 100% | ||
tik-tok | 0 | 417,921,451 | 100% | ||
wordshop | 0 | 417,921,433 | 100% | ||
astar | 0 | 417,931,861 | 100% | ||
ed-209 | 0 | 417,921,412 | 100% | ||
joyful | 0 | 417,921,353 | 100% | ||
bouncer | 0 | 417,920,433 | 100% | ||
vital | 0 | 417,920,421 | 100% | ||
fitting | 0 | 417,930,851 | 100% | ||
paddle | 0 | 417,920,388 | 100% | ||
propeller | 0 | 417,930,818 | 100% | ||
ballista | 0 | 417,920,375 | 100% | ||
dirtless | 0 | 417,930,722 | 100% | ||
shadowline | 0 | 417,930,709 | 100% | ||
e28 | 0 | 417,920,218 | 100% | ||
e30 | 0 | 417,920,218 | 100% | ||
e34 | 0 | 417,930,391 | 100% | ||
e36 | 0 | 417,930,386 | 100% | ||
e32 | 0 | 417,919,939 | 100% | ||
e39 | 0 | 417,919,934 | 100% | ||
e46 | 0 | 417,919,791 | 100% | ||
e60 | 0 | 417,930,229 | 100% | ||
f-1 | 0 | 417,919,779 | 100% | ||
e61 | 0 | 417,923,704 | 100% | ||
e91 | 0 | 417,923,695 | 100% | ||
e38 | 0 | 417,913,235 | 100% | ||
e92 | 0 | 417,913,228 | 100% | ||
f01 | 0 | 417,913,039 | 100% | ||
f02 | 0 | 417,913,033 | 100% | ||
f03 | 0 | 417,923,468 | 100% | ||
f10 | 0 | 417,923,460 | 100% | ||
f11 | 0 | 417,922,884 | 100% | ||
f12 | 0 | 417,922,878 | 100% | ||
f13 | 0 | 417,922,874 | 100% | ||
f15 | 0 | 417,912,427 | 100% | ||
f16 | 0 | 417,922,605 | 100% | ||
f21 | 0 | 417,912,153 | 100% | ||
f20 | 0 | 417,912,149 | 100% | ||
f22 | 0 | 417,912,147 | 100% | ||
f23 | 0 | 417,911,966 | 100% | ||
f25 | 0 | 417,911,960 | 100% | ||
f30 | 0 | 417,911,957 | 100% | ||
f31 | 0 | 417,922,392 | 100% | ||
e70 | 0 | 417,922,279 | 100% | ||
f33 | 0 | 417,911,826 | 100% | ||
f32 | 0 | 417,922,263 | 100% | ||
f34 | 0 | 417,922,027 | 100% | ||
f35 | 0 | 417,922,004 | 100% | ||
f45 | 0 | 417,921,764 | 100% | ||
f46 | 0 | 417,911,318 | 100% | ||
iroc-z | 0 | 417,911,311 | 100% | ||
e12 | 0 | 417,921,368 | 100% | ||
e23 | 0 | 417,910,918 | 100% | ||
e21 | 0 | 417,910,914 | 100% | ||
e24 | 0 | 417,921,353 | 100% | ||
shiny | 0 | 417,910,512 | 100% | ||
chest | 0 | 417,910,503 | 100% | ||
l00t | 0 | 417,920,730 | 100% | ||
m-tech | 0 | 417,920,720 | 100% | ||
purifying | 0 | 417,920,699 | 100% | ||
captin | 0 | 417,910,068 | 100% |
noganoo !cheetah ban
author | pfunk |
---|---|
permlink | re-steemville-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051432464z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2018-02-26 05:14:03 |
last_update | 2018-02-26 05:14:03 |
depth | 2 |
children | 1 |
last_payout | 2018-03-05 05:14:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.748 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 221,632,045,904,452 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,505,693 |
net_rshares | 488,416,058,377 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfunk | 0 | 487,504,606,330 | 10% | ||
paulhallman | 0 | 911,452,047 | 10% |
Okay, I have banned @steemville.
author | cheetah |
---|---|
permlink | cheetah-re-pfunkre-steemville-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051432464z |
category | raspberry |
json_metadata | "" |
created | 2018-02-26 05:14:48 |
last_update | 2018-02-26 05:14:48 |
depth | 3 |
children | 0 |
last_payout | 2018-03-05 05:14:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 32 |
author_reputation | 942,693,160,055,713 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,505,819 |
net_rshares | 0 |
I'll be trying this with my Pi Zero. I plan to have that showing my notifications for Steemit on a scrolling LED display. I'll publish the code for that when I do. I'll put it on Github. Can use a separate file for passwords so they don't get shared in the code.
author | steevc |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t144537282z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-13 14:45:36 |
last_update | 2017-01-13 14:45:36 |
depth | 1 |
children | 1 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 262 |
author_reputation | 1,375,204,661,664,046 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,236,889 |
net_rshares | 3,762,048,439 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
matrixdweller | 0 | 574,721,749 | 1% | ||
tomino | 0 | 3,187,326,690 | 1% |
Try Felixes updated script, he has accounts and passwords separated from the code. https://steemit.com/piston/@felixxx/learning-python-with-steem-the-winfrey-bot
author | ubg |
---|---|
permlink | re-steevc-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t193050631z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"links":["https://steemit.com/piston/@felixxx/learning-python-with-steem-the-winfrey-bot"],"app":"steemit/0.1"} |
created | 2017-01-13 19:30:51 |
last_update | 2017-01-13 19:30:51 |
depth | 2 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 161 |
author_reputation | 5,237,585,248,428 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,238,884 |
net_rshares | 14,223,532,593 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 11,036,205,903 | 50% | ||
tomino | 0 | 3,187,326,690 | 1% |
this is an amazing tutorial.
author | stellabelle |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t222632093z |
category | raspberry |
json_metadata | {"tags":["raspberry"]} |
created | 2017-01-11 22:26:30 |
last_update | 2017-01-11 22:26:30 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 516,061,669,130,124 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,223,984 |
net_rshares | 0 |
author | stellabelle |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t223313224z |
category | raspberry |
json_metadata | {"tags":["raspberry"]} |
created | 2017-01-11 22:33:12 |
last_update | 2017-01-11 22:33:12 |
depth | 1 |
children | 4 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.027 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 516,061,669,130,124 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,224,035 |
net_rshares | 1,210,011,420,564 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wang | 0 | 150,646,156,576 | 1% | ||
kevinwong | 0 | 1,024,874,286,620 | 100% | ||
roelandp | 0 | 34,490,977,368 | 1% |
author | ubg |
---|---|
permlink | re-stellabelle-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t223811546z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-11 22:38:12 |
last_update | 2017-01-11 22:43:45 |
depth | 2 |
children | 3 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 81 |
author_reputation | 5,237,585,248,428 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,224,079 |
net_rshares | 1,175,520,443,196 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wang | 0 | 150,646,156,576 | 1% | ||
kevinwong | 0 | 1,024,874,286,620 | 100% |
what about the other steps? Hmm....when I decide to tackle this, how can i reach you? are you in steemit chat a lot?
author | stellabelle |
---|---|
permlink | re-ubg-re-stellabelle-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t225305025z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-11 22:53:03 |
last_update | 2017-01-11 22:53:03 |
depth | 3 |
children | 2 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 116 |
author_reputation | 516,061,669,130,124 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,224,182 |
net_rshares | 0 |
wait, so i have to be running linux, right? it won't work with a mac?
author | stellabelle |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t223559676z |
category | raspberry |
json_metadata | {"tags":["raspberry"]} |
created | 2017-01-11 22:36:00 |
last_update | 2017-01-11 22:36:00 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 516,061,669,130,124 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,224,056 |
net_rshares | 0 |
look at you! you got some whale love!
author | stellabelle |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170112t190816789z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-12 19:08:15 |
last_update | 2017-01-12 19:08:15 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 516,061,669,130,124 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,230,667 |
net_rshares | 0 |
dude, there are problems with that piston. Does this code still works? I wrote a different bot in python with the selenium framework(browser automation framework).
author | tai-euler |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170818t221802090z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-08-18 22:15:09 |
last_update | 2017-08-18 22:15:09 |
depth | 1 |
children | 0 |
last_payout | 2017-08-25 22:15:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 163 |
author_reputation | 923,685,730,441 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,213,262 |
net_rshares | 10,442,629,537 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tai-euler | 0 | 10,442,629,537 | 100% |
Fine and good.
author | tawnie |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t213642761z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-23 21:38:21 |
last_update | 2017-01-23 21:38:21 |
depth | 1 |
children | 2 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.039 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 15,511,642,077 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,324,438 |
net_rshares | 993,168,273,906 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
noganoo | 0 | 24,890,017,047 | 100% | ||
gardening | 0 | 359,223,220 | 100% | ||
survival | 0 | 359,372,967 | 100% | ||
seth-krings | 0 | 5,329,819,702 | 100% | ||
technology | 0 | 16,346,867,979 | 100% | ||
jparty | 0 | 18,920,128,483 | 100% | ||
auction | 0 | 2,600,098,730 | 100% | ||
honey | 0 | 272,495,815 | 100% | ||
snowden | 0 | 270,636,692 | 100% | ||
farm | 0 | 116,496,818 | 100% | ||
hemp | 0 | 1,690,464,209 | 100% | ||
flowers | 0 | 171,890,738 | 100% | ||
coins | 0 | 115,967,854 | 100% | ||
sauce | 0 | 115,957,399 | 100% | ||
charts | 0 | 115,100,828 | 100% | ||
vape | 0 | 115,100,828 | 100% | ||
islam | 0 | 115,266,443 | 100% | ||
soda | 0 | 115,100,828 | 100% | ||
social | 0 | 850,459,661 | 100% | ||
steemchain | 0 | 147,269,948 | 100% | ||
whalepool | 0 | 122,099,103 | 100% | ||
chocolates | 0 | 115,044,053 | 100% | ||
spice | 0 | 114,147,267 | 100% | ||
cigarettes | 0 | 114,147,267 | 100% | ||
dabs | 0 | 114,147,267 | 100% | ||
coding | 0 | 113,922,146 | 100% | ||
hack | 0 | 113,922,115 | 100% | ||
traveling | 0 | 113,922,115 | 100% | ||
exotic | 0 | 64,006,202 | 100% | ||
tox | 0 | 567,398,403 | 100% | ||
cute | 0 | 189,476,408 | 100% | ||
berries | 0 | 61,529,559 | 100% | ||
diamonds | 0 | 88,699,299 | 100% | ||
candies | 0 | 61,529,559 | 100% | ||
evolution | 0 | 61,500,018 | 100% | ||
future | 0 | 61,500,018 | 100% | ||
creation | 0 | 61,500,003 | 100% | ||
scripture | 0 | 59,814,704 | 100% | ||
juice | 0 | 59,814,704 | 100% | ||
warez | 0 | 59,814,704 | 100% | ||
archives | 0 | 59,814,704 | 100% | ||
survivalist | 0 | 58,238,872 | 100% | ||
hardware | 0 | 58,234,174 | 100% | ||
nostalgia | 0 | 58,234,174 | 100% | ||
lottery | 0 | 58,208,335 | 100% | ||
glass | 0 | 58,208,335 | 100% | ||
fruit | 0 | 58,208,335 | 100% | ||
recycling | 0 | 58,208,322 | 100% | ||
revelation | 0 | 58,208,322 | 100% | ||
manufacturing | 0 | 58,184,157 | 100% | ||
how-to | 0 | 58,184,157 | 100% | ||
printing | 0 | 58,184,157 | 100% | ||
plastic | 0 | 58,184,157 | 100% | ||
plastics | 0 | 58,184,143 | 100% | ||
dinosaurs | 0 | 55,379,808 | 100% | ||
hacks | 0 | 55,379,808 | 100% | ||
steemit.asia | 0 | 51,963,260 | 100% | ||
flix | 0 | 51,963,260 | 100% | ||
swapman | 0 | 51,963,260 | 100% | ||
mining | 0 | 51,963,249 | 100% | ||
mine | 0 | 51,963,249 | 100% | ||
proverbs | 0 | 333,903,034 | 100% | ||
drinks | 0 | 158,273,729 | 100% | ||
storage | 0 | 186,766,185 | 100% | ||
its | 0 | 154,956,724 | 100% | ||
cbd | 0 | 183,480,846 | 100% | ||
junk | 0 | 183,470,405 | 100% | ||
hug | 0 | 183,499,364 | 100% | ||
bearcub | 0 | 184,146,847 | 100% | ||
cyberpunk | 0 | 183,499,331 | 100% | ||
keisha | 0 | 182,727,735 | 100% | ||
blackmarket | 0 | 186,030,485 | 100% | ||
gifts | 0 | 187,595,661 | 100% | ||
gift | 0 | 154,208,036 | 100% | ||
muffin | 0 | 154,208,038 | 100% | ||
int | 0 | 182,750,639 | 100% | ||
child | 0 | 581,413,291 | 100% | ||
rag | 0 | 581,216,477 | 100% | ||
mug | 0 | 581,220,522 | 100% | ||
yam | 0 | 581,169,618 | 100% | ||
ilk | 0 | 581,120,781 | 100% | ||
jug | 0 | 581,102,845 | 100% | ||
urn | 0 | 581,058,677 | 100% | ||
dat | 0 | 581,022,315 | 100% | ||
toe | 0 | 580,967,381 | 100% | ||
qua | 0 | 580,943,851 | 100% | ||
rue | 0 | 580,885,080 | 100% | ||
dye | 0 | 580,864,035 | 100% | ||
lob | 0 | 579,879,312 | 100% | ||
leg | 0 | 579,849,706 | 100% | ||
hid | 0 | 579,728,389 | 100% | ||
oar | 0 | 579,694,831 | 100% | ||
mow | 0 | 579,671,686 | 100% | ||
rid | 0 | 579,627,031 | 100% | ||
saw | 0 | 579,567,565 | 100% | ||
dew | 0 | 579,537,025 | 100% | ||
mop | 0 | 579,462,551 | 100% | ||
jeg | 0 | 579,454,263 | 100% | ||
wee | 0 | 579,347,638 | 100% | ||
rot | 0 | 579,323,864 | 100% | ||
wok | 0 | 579,305,457 | 100% | ||
ply | 0 | 579,287,436 | 100% | ||
pun | 0 | 579,259,463 | 100% | ||
ohm | 0 | 579,234,057 | 100% | ||
paw | 0 | 579,188,378 | 100% | ||
wag | 0 | 579,181,793 | 100% | ||
neu | 0 | 579,163,141 | 100% | ||
sow | 0 | 579,144,626 | 100% | ||
hop | 0 | 579,121,049 | 100% | ||
tup | 0 | 579,102,177 | 100% | ||
peg | 0 | 579,084,331 | 100% | ||
noh | 0 | 579,055,844 | 100% | ||
yeh | 0 | 579,048,522 | 100% | ||
tow | 0 | 579,016,831 | 100% | ||
hat | 0 | 579,005,418 | 100% | ||
ish | 0 | 578,985,766 | 100% | ||
dir | 0 | 578,965,706 | 100% | ||
hic | 0 | 578,937,066 | 100% | ||
yay | 0 | 578,926,508 | 100% | ||
nay | 0 | 578,906,068 | 100% | ||
keg | 0 | 578,737,200 | 100% | ||
soh | 0 | 578,626,116 | 100% | ||
fah | 0 | 578,604,068 | 100% | ||
lah | 0 | 578,586,797 | 100% | ||
yob | 0 | 578,579,694 | 100% | ||
inn | 0 | 578,541,564 | 100% | ||
olf | 0 | 578,490,550 | 100% | ||
omy | 0 | 578,467,671 | 100% | ||
pad | 0 | 578,448,478 | 100% | ||
par | 0 | 578,412,158 | 100% | ||
sac | 0 | 578,358,126 | 100% | ||
fur | 0 | 578,328,115 | 100% | ||
pes | 0 | 578,320,462 | 100% | ||
yew | 0 | 578,289,664 | 100% | ||
zho | 0 | 578,249,917 | 100% | ||
vum | 0 | 578,230,879 | 100% | ||
rye | 0 | 578,212,584 | 100% | ||
pus | 0 | 578,194,228 | 100% | ||
wey | 0 | 578,173,801 | 100% | ||
tey | 0 | 578,144,183 | 100% | ||
teh | 0 | 578,127,347 | 100% | ||
gad | 0 | 578,105,944 | 100% | ||
wig | 0 | 578,087,774 | 100% | ||
rig | 0 | 578,070,613 | 100% | ||
yea | 0 | 578,051,729 | 100% | ||
leu | 0 | 578,034,355 | 100% | ||
hir | 0 | 578,015,689 | 100% | ||
wif | 0 | 577,990,767 | 100% | ||
wid | 0 | 577,973,309 | 100% | ||
svo | 0 | 577,955,012 | 100% | ||
lav | 0 | 577,937,841 | 100% | ||
haw | 0 | 577,919,652 | 100% | ||
children | 0 | 585,810,720 | 100% | ||
djs | 0 | 595,523,068 | 100% | ||
ssd | 0 | 577,863,565 | 100% | ||
ref | 0 | 574,469,309 | 100% | ||
bey | 0 | 574,449,688 | 100% | ||
cud | 0 | 574,432,663 | 100% | ||
hod | 0 | 574,414,692 | 100% | ||
otp | 0 | 574,406,662 | 100% | ||
jig | 0 | 574,372,051 | 100% | ||
lye | 0 | 574,353,101 | 100% | ||
oft | 0 | 574,335,127 | 100% | ||
pew | 0 | 574,318,756 | 100% | ||
pug | 0 | 574,302,385 | 100% | ||
yip | 0 | 574,118,403 | 100% | ||
tog | 0 | 574,078,694 | 100% | ||
zig | 0 | 574,061,434 | 100% | ||
evilbot | 0 | 569,304,065 | 100% | ||
pta | 0 | 569,268,427 | 100% | ||
zag | 0 | 569,246,582 | 100% | ||
esh | 0 | 568,983,953 | 100% | ||
pec | 0 | 568,951,886 | 100% | ||
waw | 0 | 568,931,300 | 100% | ||
vau | 0 | 568,912,315 | 100% | ||
kaf | 0 | 568,894,102 | 100% | ||
qat | 0 | 568,871,036 | 100% | ||
irk | 0 | 568,846,770 | 100% | ||
mon | 0 | 568,829,427 | 100% | ||
ley | 0 | 568,807,953 | 100% | ||
hum | 0 | 568,785,681 | 100% | ||
meh | 0 | 568,764,270 | 100% | ||
dau | 0 | 568,744,959 | 100% | ||
taa | 0 | 568,728,408 | 100% | ||
exy | 0 | 568,721,885 | 100% | ||
lox | 0 | 568,694,105 | 100% | ||
nid | 0 | 568,677,739 | 100% | ||
meu | 0 | 568,660,670 | 100% | ||
pud | 0 | 568,642,798 | 100% | ||
gal | 0 | 568,624,266 | 100% | ||
jog | 0 | 568,588,699 | 100% | ||
opt | 0 | 568,577,303 | 100% | ||
wem | 0 | 568,560,389 | 100% | ||
tug | 0 | 568,524,647 | 100% | ||
ubgs | 0 | 568,505,381 | 100% | ||
lulzsec | 0 | 586,244,671 | 100% | ||
weev | 0 | 580,712,486 | 100% | ||
acidus | 0 | 568,427,600 | 100% | ||
geohot | 0 | 570,915,121 | 100% | ||
bugs-bunny | 0 | 555,149,061 | 100% | ||
hatmug | 0 | 555,090,511 | 100% | ||
elventroll | 0 | 555,058,530 | 100% | ||
elven.troll | 0 | 552,025,270 | 100% | ||
ilive | 0 | 551,070,241 | 100% | ||
guild | 0 | 548,040,116 | 100% | ||
accurate | 0 | 548,022,952 | 100% | ||
brilliant | 0 | 547,996,596 | 100% | ||
calm | 0 | 547,971,825 | 100% | ||
classy | 0 | 547,842,435 | 100% | ||
sour | 0 | 547,797,099 | 100% | ||
loved | 0 | 547,788,699 | 100% | ||
alluring | 0 | 547,764,757 | 100% | ||
adorable | 0 | 547,748,741 | 100% | ||
charming | 0 | 547,731,062 | 100% | ||
irresistible | 0 | 547,712,003 | 100% | ||
magnetic | 0 | 547,681,455 | 100% | ||
holy | 0 | 547,658,059 | 100% | ||
neat | 0 | 536,425,078 | 100% | ||
winning | 0 | 536,311,980 | 100% | ||
worthwhile | 0 | 534,545,469 | 100% | ||
cheer | 0 | 534,519,972 | 100% | ||
deluxe | 0 | 534,482,060 | 100% | ||
soaked | 0 | 534,461,518 | 100% | ||
tender | 0 | 534,403,938 | 100% | ||
tune | 0 | 534,296,642 | 100% | ||
vocal | 0 | 534,255,952 | 100% | ||
melodic | 0 | 534,254,943 | 100% | ||
strong | 0 | 534,226,403 | 100% | ||
polite | 0 | 534,235,836 | 100% | ||
favorite | 0 | 534,194,045 | 100% | ||
valuable | 0 | 534,192,900 | 100% | ||
productive | 0 | 534,164,366 | 100% | ||
heavy | 0 | 534,163,426 | 100% | ||
gilded | 0 | 534,121,462 | 100% | ||
loaded | 0 | 534,130,828 | 100% | ||
effective | 0 | 534,109,953 | 100% | ||
warm | 0 | 534,107,585 | 100% | ||
caring | 0 | 534,087,322 | 100% | ||
feast | 0 | 534,072,311 | 100% | ||
welcome | 0 | 532,771,116 | 100% | ||
sticky | 0 | 532,751,006 | 100% | ||
sublime | 0 | 532,728,046 | 100% | ||
excellent | 0 | 532,718,613 | 100% | ||
glorious | 0 | 532,647,125 | 100% | ||
silly | 0 | 532,646,325 | 100% | ||
heart | 0 | 532,632,140 | 100% | ||
passionate | 0 | 532,631,937 | 100% | ||
fireandbrimstone | 0 | 532,615,108 | 100% | ||
insane | 0 | 532,614,791 | 100% | ||
heavenly | 0 | 532,600,620 | 100% | ||
splendid | 0 | 532,596,757 | 100% | ||
superior | 0 | 532,595,417 | 100% | ||
tawnie | 0 | 532,582,564 | 100% | ||
reputable | 0 | 532,571,932 | 100% | ||
skilled | 0 | 532,571,392 | 100% | ||
cougar | 0 | 532,537,174 | 100% | ||
great | 0 | 532,531,467 | 100% | ||
a-ok | 0 | 532,540,988 | 100% | ||
snake-plissken | 0 | 532,516,802 | 100% | ||
skillful | 0 | 532,513,675 | 100% | ||
keen | 0 | 532,513,000 | 100% | ||
steemville | 0 | 532,500,418 | 100% | ||
worthy | 0 | 532,489,151 | 100% | ||
acceptable | 0 | 532,486,652 | 100% | ||
left | 0 | 532,485,121 | 100% | ||
tinder | 0 | 532,473,676 | 100% | ||
fake | 0 | 532,446,178 | 100% | ||
advantage | 0 | 532,445,514 | 100% | ||
greatest | 0 | 532,444,771 | 100% | ||
theft | 0 | 532,410,923 | 100% | ||
clever | 0 | 532,410,112 | 100% | ||
gain | 0 | 532,409,122 | 100% | ||
prestige | 0 | 532,394,782 | 100% | ||
comfort | 0 | 532,394,647 | 100% | ||
lucker | 0 | 532,381,490 | 100% | ||
satisfying | 0 | 532,380,297 | 100% | ||
spin | 0 | 532,358,736 | 100% | ||
accepted | 0 | 532,361,593 | 100% | ||
robin.hood | 0 | 532,359,928 | 100% | ||
pokie | 0 | 532,341,045 | 100% | ||
godly | 0 | 532,344,443 | 100% | ||
stake | 0 | 532,342,891 | 100% | ||
tanks | 0 | 532,325,685 | 100% | ||
extra | 0 | 532,304,296 | 100% | ||
mild | 0 | 532,303,891 | 100% | ||
honor | 0 | 532,090,018 | 100% | ||
moral | 0 | 532,089,220 | 100% | ||
wise | 0 | 532,088,411 | 100% | ||
even | 0 | 532,073,773 | 100% | ||
dynamite | 0 | 532,073,571 | 100% | ||
circlejerk | 0 | 532,055,740 | 100% | ||
helpful | 0 | 532,064,971 | 100% | ||
suit | 0 | 532,022,232 | 100% | ||
ready | 0 | 532,005,440 | 100% | ||
clean | 0 | 532,014,884 | 100% | ||
harmless | 0 | 531,984,875 | 100% | ||
wholesome | 0 | 531,984,740 | 100% | ||
hot-dog | 0 | 531,970,097 | 100% | ||
adored | 0 | 531,969,692 | 100% | ||
privileged | 0 | 531,950,760 | 100% | ||
fortunate | 0 | 531,949,760 | 100% | ||
honored | 0 | 531,936,210 | 100% | ||
valued | 0 | 531,935,075 | 100% | ||
reserved | 0 | 528,822,948 | 100% | ||
proper | 0 | 528,820,496 | 100% | ||
stable | 0 | 528,738,246 | 100% | ||
civilized | 0 | 528,737,381 | 100% | ||
sweetheart | 0 | 528,721,784 | 100% | ||
liked | 0 | 528,720,587 | 100% | ||
flavor | 0 | 528,701,595 | 100% | ||
insert | 0 | 528,683,483 | 100% | ||
delete | 0 | 528,682,685 | 100% | ||
control | 0 | 528,664,252 | 100% | ||
altar | 0 | 528,662,411 | 100% | ||
shrine | 0 | 528,644,267 | 100% | ||
temple | 0 | 528,643,868 | 100% | ||
fandom | 0 | 528,617,299 | 100% | ||
church | 0 | 528,615,437 | 100% | ||
h8d | 0 | 528,601,900 | 100% | ||
select | 0 | 528,600,182 | 100% | ||
minister | 0 | 528,584,851 | 100% | ||
worship | 0 | 528,583,654 | 100% | ||
skill | 0 | 528,569,143 | 100% | ||
devoted | 0 | 528,568,944 | 100% | ||
flat | 0 | 528,530,604 | 100% | ||
co-op | 0 | 528,530,138 | 100% | ||
cover | 0 | 528,529,208 | 100% | ||
port | 0 | 528,502,974 | 100% | ||
ship | 0 | 528,502,509 | 100% | ||
model | 0 | 528,469,728 | 100% | ||
yatch | 0 | 528,479,572 | 100% | ||
zone | 0 | 528,478,197 | 100% | ||
dear | 0 | 528,458,806 | 100% | ||
leet | 0 | 528,457,876 | 100% | ||
challanger | 0 | 528,455,914 | 100% | ||
harbor | 0 | 528,438,221 | 100% | ||
shelter | 0 | 528,437,158 | 100% | ||
hole | 0 | 528,436,437 | 100% | ||
pride | 0 | 528,421,039 | 100% | ||
booty | 0 | 528,419,976 | 100% | ||
icon | 0 | 528,418,801 | 100% | ||
cave | 0 | 528,401,464 | 100% | ||
study | 0 | 528,401,264 | 100% | ||
mansion | 0 | 528,401,131 | 100% | ||
tower | 0 | 528,384,959 | 100% | ||
crib | 0 | 528,383,785 | 100% | ||
shed | 0 | 528,382,554 | 100% | ||
accept | 0 | 528,311,974 | 100% | ||
trick | 0 | 528,321,752 | 100% | ||
waiting | 0 | 528,320,091 | 100% | ||
cloak | 0 | 528,267,353 | 100% | ||
hour | 0 | 528,265,626 | 100% | ||
picture | 0 | 528,264,574 | 100% | ||
hideout | 0 | 528,256,521 | 100% | ||
puppet | 0 | 528,244,826 | 100% | ||
copy | 0 | 528,244,295 | 100% | ||
lurker | 0 | 528,231,610 | 100% | ||
tunnel | 0 | 528,230,813 | 100% | ||
room | 0 | 528,230,149 | 100% | ||
figure | 0 | 528,202,065 | 100% | ||
replica | 0 | 528,201,090 | 100% | ||
split | 0 | 528,200,182 | 100% | ||
statue | 0 | 528,199,717 | 100% | ||
theme | 0 | 528,198,854 | 100% | ||
tent | 0 | 528,169,564 | 100% | ||
defend | 0 | 528,178,945 | 100% | ||
lodge | 0 | 528,176,842 | 100% | ||
shield | 0 | 528,175,657 | 100% | ||
wrap | 0 | 528,163,290 | 100% | ||
prize | 0 | 528,164,923 | 100% | ||
same | 0 | 528,146,664 | 100% | ||
dual | 0 | 528,145,602 | 100% | ||
paired | 0 | 528,144,939 | 100% | ||
singular | 0 | 528,144,142 | 100% | ||
binary | 0 | 528,141,830 | 100% | ||
plural | 0 | 528,122,014 | 100% | ||
machine | 0 | 528,108,284 | 100% | ||
analog | 0 | 528,117,399 | 100% | ||
processor | 0 | 528,117,266 | 100% | ||
motor | 0 | 528,100,880 | 100% | ||
vehicle | 0 | 528,100,084 | 100% | ||
calculation | 0 | 528,096,179 | 100% | ||
driven | 0 | 528,095,316 | 100% | ||
ticker | 0 | 528,080,657 | 100% | ||
floppy | 0 | 528,031,324 | 100% | ||
modem | 0 | 528,030,549 | 100% | ||
router | 0 | 528,029,620 | 100% | ||
electronic | 0 | 527,993,631 | 100% | ||
vcr | 0 | 527,992,780 | 100% | ||
robotic | 0 | 527,991,851 | 100% | ||
feeling | 0 | 527,989,861 | 100% | ||
intellect | 0 | 527,946,982 | 100% | ||
entity | 0 | 527,946,064 | 100% | ||
bubbles | 0 | 527,914,717 | 100% | ||
buttercup | 0 | 527,934,487 | 100% | ||
bosom | 0 | 527,911,030 | 100% | ||
psyche | 0 | 526,636,940 | 100% | ||
ground | 0 | 526,646,723 | 100% | ||
being | 0 | 526,635,697 | 100% | ||
emotion | 0 | 526,645,546 | 100% | ||
refuge | 0 | 526,619,330 | 100% | ||
riven | 0 | 526,616,758 | 100% | ||
swain | 0 | 526,614,450 | 100% | ||
karthus | 0 | 526,591,360 | 100% | ||
zezima | 0 | 526,590,711 | 100% | ||
elves | 0 | 526,569,231 | 100% | ||
swans | 0 | 526,568,505 | 100% | ||
projectile | 0 | 526,567,076 | 100% | ||
bolt | 0 | 526,566,219 | 100% | ||
plane | 0 | 526,565,240 | 100% | ||
woodpecker | 0 | 526,537,551 | 100% | ||
stork | 0 | 526,536,045 | 100% | ||
gull | 0 | 526,534,595 | 100% | ||
bowl | 0 | 526,533,034 | 100% | ||
milkyway | 0 | 526,532,374 | 100% | ||
toucan | 0 | 526,530,869 | 100% | ||
hummingbird | 0 | 526,501,942 | 100% | ||
humming | 0 | 526,500,897 | 100% | ||
sand | 0 | 526,499,656 | 100% | ||
kiw | 0 | 526,498,951 | 100% | ||
bul | 0 | 526,496,148 | 100% | ||
bulbul | 0 | 526,495,489 | 100% | ||
invoker | 0 | 526,478,062 | 100% | ||
neutral | 0 | 526,477,007 | 100% | ||
oat | 0 | 526,476,414 | 100% | ||
dirt | 0 | 526,474,898 | 100% | ||
soil | 0 | 526,474,173 | 100% | ||
glue | 0 | 526,461,194 | 100% | ||
turf | 0 | 526,448,669 | 100% | ||
land | 0 | 526,447,944 | 100% | ||
mushrooms | 0 | 526,446,769 | 100% | ||
relaxed | 0 | 526,445,406 | 100% | ||
active | 0 | 526,443,439 | 100% | ||
involved | 0 | 526,430,739 | 100% | ||
personal | 0 | 526,421,562 | 100% | ||
gentle | 0 | 526,420,771 | 100% | ||
affection | 0 | 526,419,332 | 100% | ||
friendship | 0 | 526,418,673 | 100% | ||
piety | 0 | 526,391,386 | 100% | ||
lust | 0 | 526,390,727 | 100% | ||
delight | 0 | 526,389,749 | 100% | ||
enjoy | 0 | 526,369,649 | 100% | ||
airplane | 0 | 526,114,907 | 100% | ||
shuttle | 0 | 526,114,380 | 100% | ||
spaceship | 0 | 526,113,788 | 100% | ||
fuel | 0 | 526,113,327 | 100% | ||
relic | 0 | 526,111,111 | 100% | ||
respect | 0 | 526,099,566 | 100% | ||
sorrow | 0 | 526,094,136 | 100% | ||
hate | 0 | 526,093,478 | 100% | ||
hearted | 0 | 526,091,767 | 100% | ||
playing | 0 | 526,088,311 | 100% | ||
lovin | 0 | 526,081,003 | 100% | ||
favor | 0 | 526,067,112 | 100% | ||
spot | 0 | 582,710,245 | 100% | ||
sympathy | 0 | 526,052,963 | 100% | ||
fingers | 0 | 526,051,789 | 100% | ||
seaman | 0 | 526,051,273 | 100% | ||
blessing | 0 | 526,049,396 | 100% | ||
dearest | 0 | 526,026,274 | 100% | ||
estonia | 0 | 543,040,134 | 100% | ||
piss | 0 | 526,020,810 | 100% | ||
latvia | 0 | 526,027,862 | 100% | ||
embrace | 0 | 526,025,525 | 100% | ||
adore | 0 | 526,022,651 | 100% | ||
fond | 0 | 526,007,978 | 100% | ||
rooster | 0 | 526,002,033 | 100% | ||
pesant | 0 | 526,001,375 | 100% | ||
spirited | 0 | 526,000,455 | 100% | ||
bold | 0 | 525,999,807 | 100% | ||
valiant | 0 | 525,978,090 | 100% | ||
eager | 0 | 525,977,432 | 100% | ||
agility | 0 | 525,976,709 | 100% | ||
firm | 0 | 525,959,712 | 100% | ||
puke | 0 | 525,957,178 | 100% | ||
work | 0 | 525,955,478 | 100% | ||
process | 0 | 525,953,329 | 100% | ||
hobby | 0 | 525,924,271 | 100% | ||
adventure | 0 | 525,923,351 | 100% | ||
venture | 0 | 525,910,825 | 100% | ||
mice | 0 | 525,920,291 | 100% | ||
wager | 0 | 525,899,876 | 100% | ||
hazard | 0 | 525,899,218 | 100% | ||
heroic | 0 | 525,897,837 | 100% | ||
idea | 0 | 524,648,556 | 100% | ||
stunt | 0 | 524,647,767 | 100% | ||
ball | 0 | 524,646,912 | 100% | ||
deed | 0 | 524,644,413 | 100% | ||
risk | 0 | 524,643,492 | 100% | ||
flurry | 0 | 524,632,695 | 100% | ||
speculate | 0 | 524,606,267 | 100% | ||
speculation | 0 | 524,615,282 | 100% | ||
hacked | 0 | 564,277,934 | 100% | ||
minions | 0 | 524,601,253 | 100% | ||
servers | 0 | 524,596,925 | 100% | ||
waiter | 0 | 524,587,000 | 100% | ||
hoster | 0 | 524,585,179 | 100% | ||
windmill | 0 | 524,582,524 | 100% | ||
follow | 0 | 524,581,669 | 100% | ||
waitress | 0 | 524,579,180 | 100% | ||
fans | 0 | 524,562,843 | 100% | ||
follower | 0 | 524,541,081 | 100% | ||
ventilator | 0 | 524,538,952 | 100% | ||
draft | 0 | 524,538,294 | 100% | ||
backed | 0 | 524,536,661 | 100% | ||
alturist | 0 | 524,514,470 | 100% | ||
wake | 0 | 524,513,363 | 100% | ||
promote | 0 | 524,512,529 | 100% | ||
whisper | 0 | 524,511,674 | 100% | ||
sniff | 0 | 524,493,728 | 100% | ||
junkie | 0 | 524,491,711 | 100% | ||
turbine | 0 | 524,490,922 | 100% | ||
turbo | 0 | 524,490,012 | 100% | ||
activity | 0 | 524,476,750 | 100% | ||
raimo | 0 | 524,461,426 | 100% | ||
tanel | 0 | 524,460,768 | 100% | ||
ats | 0 | 524,459,990 | 100% | ||
loyalty | 0 | 524,458,160 | 100% | ||
lungs | 0 | 524,404,495 | 100% | ||
specialist | 0 | 524,403,333 | 100% | ||
veteran | 0 | 524,402,544 | 100% | ||
type | 0 | 524,366,635 | 100% | ||
that | 0 | 524,365,847 | 100% | ||
rookie | 0 | 524,353,565 | 100% | ||
nurse | 0 | 524,343,682 | 100% | ||
squat | 0 | 524,341,261 | 100% | ||
medic | 0 | 524,339,104 | 100% | ||
commander | 0 | 524,328,588 | 100% | ||
l0l | 0 | 524,327,208 | 100% | ||
scholar | 0 | 524,313,758 | 100% | ||
l3l | 0 | 524,293,285 | 100% | ||
d0n | 0 | 524,292,497 | 100% | ||
f0x | 0 | 524,290,426 | 100% | ||
b0t | 0 | 524,274,896 | 100% | ||
b1t | 0 | 524,272,355 | 100% | ||
s3x | 0 | 524,249,183 | 100% | ||
g0d | 0 | 524,248,536 | 100% | ||
h0t | 0 | 524,247,824 | 100% | ||
d0g | 0 | 524,244,834 | 100% | ||
eg0 | 0 | 524,218,871 | 100% | ||
t3n | 0 | 419,271,112 | 100% | ||
c0p | 0 | 419,247,306 | 100% | ||
m00 | 0 | 419,246,010 | 100% | ||
s1x | 0 | 419,235,043 | 100% | ||
n3w | 0 | 419,231,821 | 100% | ||
ac3 | 0 | 419,220,923 | 100% | ||
m3n | 0 | 419,218,167 | 100% | ||
b0y | 0 | 419,207,147 | 100% | ||
tw0 | 0 | 419,205,415 | 100% | ||
l1t | 0 | 419,195,524 | 100% | ||
s0n | 0 | 419,193,800 | 100% | ||
a1r | 0 | 419,193,007 | 100% | ||
w0w | 0 | 418,207,297 | 100% | ||
uz1 | 0 | 522,755,738 | 100% | ||
b0b | 0 | 522,754,603 | 100% | ||
c0m | 0 | 522,752,599 | 100% | ||
f3w | 0 | 418,177,390 | 100% | ||
d0s | 0 | 418,167,100 | 100% | ||
n3d | 0 | 418,176,871 | 100% | ||
t0d | 0 | 522,717,630 | 100% | ||
m0m | 0 | 418,165,332 | 100% | ||
p00 | 0 | 522,695,386 | 100% | ||
z00 | 0 | 418,147,380 | 100% | ||
f00 | 0 | 418,157,353 | 100% | ||
k1d | 0 | 418,137,892 | 100% | ||
t0y | 0 | 418,137,475 | 100% | ||
j3w | 0 | 522,668,330 | 100% | ||
a00 | 0 | 418,108,682 | 100% | ||
b00 | 0 | 418,108,168 | 100% | ||
c00 | 0 | 418,097,368 | 100% | ||
l0w | 0 | 418,102,399 | 100% | ||
l0v3 | 0 | 522,624,289 | 100% | ||
l0ve | 0 | 418,083,297 | 100% | ||
d00 | 0 | 418,070,996 | 100% | ||
e00 | 0 | 522,598,665 | 100% | ||
ctrl | 0 | 418,069,543 | 100% | ||
follow-up | 0 | 418,043,993 | 100% | ||
yours | 0 | 418,053,312 | 100% | ||
w1n | 0 | 418,042,114 | 100% | ||
b0x | 0 | 418,041,592 | 100% | ||
x0x0 | 0 | 418,040,717 | 100% | ||
r3d | 0 | 418,022,020 | 100% | ||
f1n | 0 | 418,032,456 | 100% | ||
x0x | 0 | 418,022,008 | 100% | ||
oioi | 0 | 418,021,804 | 100% | ||
cuddle | 0 | 418,021,792 | 100% | ||
unlimited | 0 | 418,021,787 | 100% | ||
d1e | 0 | 418,021,687 | 100% | ||
l1e | 0 | 418,032,122 | 100% | ||
a55 | 0 | 418,032,049 | 100% | ||
followup | 0 | 418,021,376 | 100% | ||
gunshot | 0 | 418,031,812 | 100% | ||
ce0 | 0 | 418,021,362 | 100% | ||
w1zard | 0 | 418,021,223 | 100% | ||
b0ss | 0 | 418,031,662 | 100% | ||
og-kush | 0 | 418,031,656 | 100% | ||
attached | 0 | 418,020,934 | 100% | ||
ch1na | 0 | 418,020,919 | 100% | ||
executive | 0 | 418,020,904 | 100% | ||
h3art | 0 | 418,020,751 | 100% | ||
hearts | 0 | 418,031,065 | 100% | ||
pr1ze | 0 | 418,030,932 | 100% | ||
s0s | 0 | 418,020,469 | 100% | ||
elected | 0 | 418,020,454 | 100% | ||
whiz | 0 | 418,030,711 | 100% | ||
critic | 0 | 418,020,253 | 100% | ||
i-heart-you | 0 | 418,020,068 | 100% | ||
quack | 0 | 418,020,061 | 100% | ||
wub | 0 | 418,040,928 | 100% | ||
adopt | 0 | 418,019,930 | 100% | ||
dispute | 0 | 418,019,921 | 100% | ||
admire | 0 | 418,030,353 | 100% | ||
want | 0 | 418,030,209 | 100% | ||
prefer | 0 | 418,019,755 | 100% | ||
take | 0 | 418,019,746 | 100% | ||
obtain | 0 | 418,029,849 | 100% | ||
secure | 0 | 418,019,401 | 100% | ||
g3t | 0 | 418,019,389 | 100% | ||
subscribe | 0 | 418,019,383 | 100% | ||
uphold | 0 | 418,029,816 | 100% | ||
healer | 0 | 418,019,216 | 100% | ||
surgeon | 0 | 418,019,210 | 100% | ||
intern | 0 | 418,019,201 | 100% | ||
hypnotist | 0 | 418,019,175 | 100% | ||
enchanter | 0 | 418,019,169 | 100% | ||
fountain | 0 | 418,018,987 | 100% | ||
v0ice | 0 | 418,018,878 | 100% | ||
fortuneteller | 0 | 418,029,307 | 100% | ||
medium | 0 | 418,018,857 | 100% | ||
necromancer | 0 | 418,028,681 | 100% | ||
sorcerer | 0 | 418,018,227 | 100% | ||
magician | 0 | 418,018,219 | 100% | ||
beam | 0 | 418,018,128 | 100% | ||
feds | 0 | 418,018,107 | 100% | ||
f1sh | 0 | 418,028,542 | 100% | ||
reader | 0 | 418,028,310 | 100% | ||
druid | 0 | 418,028,298 | 100% | ||
diviner | 0 | 418,017,843 | 100% | ||
mystical | 0 | 418,028,118 | 100% | ||
magical | 0 | 418,017,669 | 100% | ||
puzzling | 0 | 418,028,094 | 100% | ||
vague | 0 | 418,017,405 | 100% | ||
pokerface | 0 | 418,027,821 | 100% | ||
readme | 0 | 418,014,836 | 100% | ||
skim | 0 | 418,004,382 | 100% | ||
scan | 0 | 418,025,248 | 100% | ||
inspect | 0 | 418,014,800 | 100% | ||
herald | 0 | 418,014,788 | 100% | ||
s33 | 0 | 418,004,247 | 100% | ||
prove | 0 | 418,014,437 | 100% | ||
promise | 0 | 418,003,987 | 100% | ||
shots | 0 | 418,003,969 | 100% | ||
speak | 0 | 418,014,274 | 100% | ||
survey | 0 | 418,003,808 | 100% | ||
size | 0 | 418,003,567 | 100% | ||
crystal-ball | 0 | 418,003,557 | 100% | ||
member-berries | 0 | 418,013,963 | 100% | ||
understand | 0 | 418,013,951 | 100% | ||
megabook | 0 | 418,003,312 | 100% | ||
solve | 0 | 418,003,307 | 100% | ||
deliver | 0 | 418,013,735 | 100% | ||
warn | 0 | 418,013,720 | 100% | ||
channel | 0 | 418,013,709 | 100% | ||
fondness | 0 | 418,013,697 | 100% | ||
prayers | 0 | 418,003,067 | 100% | ||
overcharge | 0 | 418,003,058 | 100% | ||
redemption | 0 | 418,013,489 | 100% | ||
smite | 0 | 418,002,731 | 100% | ||
retribution | 0 | 418,013,154 | 100% | ||
rigour | 0 | 418,002,696 | 100% | ||
augury | 0 | 418,002,502 | 100% | ||
skin | 0 | 418,012,939 | 100% | ||
chivalry | 0 | 418,002,491 | 100% | ||
charge | 0 | 418,002,481 | 100% | ||
enjoyment | 0 | 418,002,327 | 100% | ||
warming | 0 | 418,002,316 | 100% | ||
push | 0 | 418,012,746 | 100% | ||
pull | 0 | 418,002,292 | 100% | ||
defence | 0 | 418,002,145 | 100% | ||
poor | 0 | 418,012,576 | 100% | ||
mastery | 0 | 418,002,122 | 100% | ||
k3y | 0 | 418,002,112 | 100% | ||
damage | 0 | 418,012,445 | 100% | ||
points | 0 | 418,001,990 | 100% | ||
level | 0 | 418,012,432 | 100% | ||
crit | 0 | 480,450,397 | 100% | ||
whistle | 0 | 418,001,840 | 100% | ||
cooks | 0 | 418,012,260 | 100% | ||
quest | 0 | 418,012,253 | 100% | ||
goblin | 0 | 474,665,861 | 100% | ||
taste | 0 | 418,001,370 | 100% | ||
oomph | 0 | 418,001,356 | 100% | ||
s0ur | 0 | 418,011,774 | 100% | ||
grandmaster | 0 | 418,011,652 | 100% | ||
w1se | 0 | 418,001,193 | 100% | ||
tr0ll | 0 | 418,011,621 | 100% | ||
pikacu | 0 | 418,011,417 | 100% | ||
mussolini | 0 | 418,011,388 | 100% | ||
sto | 0 | 418,011,383 | 100% | ||
sir.isaac.newton | 0 | 418,000,921 | 100% | ||
civilization | 0 | 418,000,668 | 100% | ||
grain | 0 | 418,011,087 | 100% | ||
h1p | 0 | 418,011,079 | 100% | ||
oval | 0 | 418,010,820 | 100% | ||
b3rry | 0 | 418,000,366 | 100% | ||
current | 0 | 418,010,795 | 100% | ||
polished | 0 | 418,000,216 | 100% | ||
cleverbot | 0 | 418,010,646 | 100% | ||
hip-hop | 0 | 418,000,196 | 100% | ||
minute | 0 | 418,010,634 | 100% | ||
into | 0 | 418,000,173 | 100% | ||
love-you | 0 | 447,885,716 | 100% | ||
talented | 0 | 418,010,376 | 100% | ||
first-class | 0 | 418,010,360 | 100% | ||
thief | 0 | 418,010,351 | 100% | ||
gifted | 0 | 418,010,333 | 100% | ||
g00gle | 0 | 417,999,887 | 100% | ||
pickle | 0 | 435,947,833 | 100% | ||
wingman | 0 | 474,653,360 | 100% | ||
adm1n | 0 | 417,999,701 | 100% | ||
m0d | 0 | 418,010,142 | 100% | ||
inspector | 0 | 418,010,126 | 100% | ||
v1p | 0 | 418,010,107 | 100% | ||
backer | 0 | 417,996,992 | 100% | ||
casin0 | 0 | 417,996,984 | 100% | ||
cas1no | 0 | 417,986,535 | 100% | ||
cas1n0 | 0 | 417,996,965 | 100% | ||
found | 0 | 417,996,962 | 100% | ||
keygen | 0 | 417,986,507 | 100% | ||
unit | 0 | 417,986,309 | 100% | ||
unite | 0 | 417,986,304 | 100% | ||
division | 0 | 417,986,293 | 100% | ||
factor | 0 | 417,986,040 | 100% | ||
lovebot | 0 | 417,996,475 | 100% | ||
hint | 0 | 417,986,017 | 100% | ||
gam3 | 0 | 417,996,297 | 100% | ||
trojan | 0 | 417,996,266 | 100% | ||
tidy | 0 | 417,985,816 | 100% | ||
w3t | 0 | 417,996,107 | 100% | ||
k1ng | 0 | 417,995,780 | 100% | ||
addicted-to-you | 0 | 417,985,323 | 100% | ||
love-ya | 0 | 417,985,264 | 100% | ||
youre-amazing | 0 | 417,985,161 | 100% | ||
youre-awesome | 0 | 417,985,063 | 100% | ||
soulmate | 0 | 417,985,058 | 100% | ||
roses-are-red | 0 | 417,985,035 | 100% | ||
better-half | 0 | 417,995,336 | 100% | ||
violets-are-blue | 0 | 417,995,327 | 100% | ||
sugar-is-sweet | 0 | 417,984,491 | 100% | ||
week | 0 | 417,994,911 | 100% | ||
year | 0 | 417,984,461 | 100% | ||
c00l | 0 | 417,984,253 | 100% | ||
carjack | 0 | 417,984,238 | 100% | ||
helping | 0 | 417,984,229 | 100% | ||
russ1a | 0 | 417,983,814 | 100% | ||
whip | 0 | 417,983,807 | 100% | ||
priest | 0 | 417,983,795 | 100% | ||
t0p | 0 | 417,994,032 | 100% | ||
textbook | 0 | 417,983,586 | 100% | ||
patient | 0 | 417,993,977 | 100% | ||
sawbones | 0 | 417,982,987 | 100% | ||
simulated | 0 | 417,993,405 | 100% | ||
snickers | 0 | 417,982,958 | 100% | ||
bluff | 0 | 417,982,837 | 100% | ||
wheels | 0 | 417,982,823 | 100% | ||
honestly | 0 | 417,993,030 | 100% | ||
woo-hoo | 0 | 417,982,562 | 100% | ||
whine | 0 | 417,992,989 | 100% | ||
motto | 0 | 417,992,765 | 100% | ||
growl | 0 | 417,992,753 | 100% | ||
sharper | 0 | 417,992,746 | 100% | ||
shampoo | 0 | 417,992,579 | 100% | ||
scrub | 0 | 417,982,134 | 100% | ||
sponge | 0 | 417,982,122 | 100% | ||
shower | 0 | 417,992,164 | 100% | ||
paint | 0 | 417,992,159 | 100% | ||
soak | 0 | 417,981,703 | 100% | ||
tint | 0 | 417,981,554 | 100% | ||
layer | 0 | 417,991,950 | 100% | ||
well-kept | 0 | 417,981,470 | 100% | ||
viruoso | 0 | 417,966,056 | 100% | ||
virtuoso | 0 | 417,976,478 | 100% | ||
versed | 0 | 417,966,034 | 100% | ||
c00kie | 0 | 417,976,375 | 100% | ||
there | 0 | 417,965,843 | 100% | ||
solid | 0 | 417,965,837 | 100% | ||
tops | 0 | 417,976,265 | 100% | ||
j3t | 0 | 417,976,020 | 100% | ||
tinman | 0 | 449,845,930 | 100% | ||
tincan | 0 | 417,965,561 | 100% | ||
gunman | 0 | 417,965,429 | 100% | ||
hitman | 0 | 417,975,864 | 100% | ||
apostle | 0 | 417,965,232 | 100% | ||
gautama | 0 | 417,975,664 | 100% | ||
penman | 0 | 417,965,211 | 100% | ||
lineman | 0 | 417,965,107 | 100% | ||
botman | 0 | 417,975,543 | 100% | ||
clarion | 0 | 417,975,528 | 100% | ||
cement | 0 | 417,975,220 | 100% | ||
horn | 0 | 417,964,770 | 100% | ||
a1m | 0 | 417,975,198 | 100% | ||
kosher | 0 | 417,975,182 | 100% | ||
shitsngiggles | 0 | 417,975,151 | 100% | ||
winspiral | 0 | 417,964,704 | 100% | ||
h1gh | 0 | 417,964,615 | 100% | ||
catbus | 0 | 417,964,593 | 100% | ||
snorlax | 0 | 417,975,029 | 100% | ||
pichu | 0 | 417,964,382 | 100% | ||
mayor | 0 | 417,964,358 | 100% | ||
mayor.west | 0 | 417,964,355 | 100% | ||
familiar | 0 | 417,974,624 | 100% | ||
tilt | 0 | 417,964,168 | 100% | ||
abug | 0 | 417,964,153 | 100% | ||
lesser | 0 | 417,963,980 | 100% | ||
captive | 0 | 417,963,972 | 100% | ||
good-looking | 0 | 417,974,404 | 100% | ||
here | 0 | 417,963,847 | 100% | ||
ideal | 0 | 417,963,827 | 100% | ||
incredible | 0 | 417,963,809 | 100% | ||
lure | 0 | 417,963,578 | 100% | ||
swell | 0 | 417,973,999 | 100% | ||
unselfish | 0 | 417,963,548 | 100% | ||
ducky | 0 | 417,963,541 | 100% | ||
lul | 0 | 417,973,810 | 100% | ||
old-man | 0 | 417,973,782 | 100% | ||
wise-man | 0 | 417,973,775 | 100% | ||
merch | 0 | 417,973,753 | 100% | ||
ranks | 0 | 417,944,286 | 100% | ||
botnetwork | 0 | 417,944,278 | 100% | ||
b0tn3t | 0 | 417,944,257 | 100% | ||
dwarf | 0 | 417,954,613 | 100% | ||
dragonborn | 0 | 417,944,170 | 100% | ||
banhammer | 0 | 417,944,135 | 100% | ||
legolas | 0 | 417,943,960 | 100% | ||
gimli | 0 | 417,943,950 | 100% | ||
bromir | 0 | 417,943,944 | 100% | ||
arwen | 0 | 417,953,960 | 100% | ||
figwit | 0 | 417,943,517 | 100% | ||
helm | 0 | 417,943,498 | 100% | ||
horns | 0 | 417,953,816 | 100% | ||
plate | 0 | 417,943,372 | 100% | ||
megaton | 0 | 417,943,236 | 100% | ||
hobbit | 0 | 417,943,201 | 100% | ||
wohoo | 0 | 417,943,197 | 100% | ||
r2-d2 | 0 | 417,942,721 | 100% | ||
hood | 0 | 417,942,682 | 100% | ||
optimus | 0 | 417,953,083 | 100% | ||
rayman | 0 | 417,952,769 | 100% | ||
worm | 0 | 417,942,322 | 100% | ||
worms | 0 | 417,952,760 | 100% | ||
lara.croft | 0 | 417,942,144 | 100% | ||
boot | 0 | 417,942,064 | 100% | ||
g00gl3 | 0 | 417,941,571 | 100% | ||
oo7 | 0 | 417,941,564 | 100% | ||
snare | 0 | 417,951,946 | 100% | ||
juggle | 0 | 417,941,037 | 100% | ||
qu3st | 0 | 417,951,425 | 100% | ||
incentive | 0 | 417,940,940 | 100% | ||
corrupt | 0 | 417,950,873 | 100% | ||
protection | 0 | 417,940,426 | 100% | ||
snowfall | 0 | 417,950,850 | 100% | ||
groot | 0 | 417,931,675 | 100% | ||
gromit | 0 | 417,931,669 | 100% | ||
walk | 0 | 417,931,662 | 100% | ||
sleet | 0 | 417,941,815 | 100% | ||
vendetta | 0 | 417,941,798 | 100% | ||
star-lord | 0 | 417,941,780 | 100% | ||
the.godfather | 0 | 417,931,187 | 100% | ||
obi-wan | 0 | 417,941,609 | 100% | ||
goodfellas | 0 | 417,931,142 | 100% | ||
nightcrawler | 0 | 417,941,502 | 100% | ||
mockingbird | 0 | 417,931,035 | 100% | ||
y0da | 0 | 417,941,352 | 100% | ||
ghostbusters | 0 | 417,930,732 | 100% | ||
t-800 | 0 | 417,941,161 | 100% | ||
bride | 0 | 417,941,144 | 100% | ||
groom | 0 | 417,930,537 | 100% | ||
aragorn | 0 | 417,940,952 | 100% | ||
pirates | 0 | 417,930,506 | 100% | ||
pac.man | 0 | 417,930,348 | 100% | ||
ahoy | 0 | 417,940,786 | 100% | ||
haunted | 0 | 417,940,779 | 100% | ||
millie | 0 | 417,940,252 | 100% | ||
pippi | 0 | 417,940,236 | 100% | ||
almighty | 0 | 417,940,210 | 100% | ||
snufkin | 0 | 417,929,468 | 100% | ||
little-my | 0 | 417,929,454 | 100% | ||
littlemy | 0 | 417,929,448 | 100% | ||
moomintroll | 0 | 417,929,437 | 100% | ||
moominmamma | 0 | 417,928,996 | 100% | ||
moominpappa | 0 | 417,939,432 | 100% | ||
snork | 0 | 417,939,423 | 100% | ||
starfire | 0 | 417,928,866 | 100% | ||
sylvester | 0 | 417,939,295 | 100% | ||
speedy | 0 | 417,939,282 | 100% | ||
gonzales | 0 | 417,939,019 | 100% | ||
porky | 0 | 417,928,569 | 100% | ||
general.store | 0 | 417,939,004 | 100% | ||
daffy.duck | 0 | 417,938,854 | 100% | ||
k-9 | 0 | 417,938,845 | 100% | ||
dexters | 0 | 417,928,374 | 100% | ||
laboratory | 0 | 417,928,038 | 100% | ||
doubledecker | 0 | 417,938,458 | 100% | ||
cellphone | 0 | 417,938,443 | 100% | ||
rumcake | 0 | 417,938,229 | 100% | ||
pomegranate | 0 | 417,927,779 | 100% | ||
p1e | 0 | 417,927,774 | 100% | ||
fearless | 0 | 417,927,645 | 100% | ||
sprite | 0 | 417,927,632 | 100% | ||
goodyear | 0 | 417,927,604 | 100% | ||
clementine | 0 | 417,927,155 | 100% | ||
garlic | 0 | 417,927,110 | 100% | ||
catnip | 0 | 417,927,068 | 100% | ||
tomato | 0 | 417,927,050 | 100% | ||
peppermint | 0 | 417,927,032 | 100% | ||
spearmint | 0 | 417,937,463 | 100% | ||
oregano | 0 | 417,923,723 | 100% | ||
lemongrass | 0 | 417,923,715 | 100% | ||
poet-tree | 0 | 417,923,666 | 100% | ||
c-3po | 0 | 417,923,189 | 100% | ||
elowen | 0 | 417,923,175 | 100% | ||
wonderer | 0 | 417,922,931 | 100% | ||
cedar | 0 | 417,933,360 | 100% | ||
fortitude | 0 | 417,933,343 | 100% | ||
fairness | 0 | 417,922,767 | 100% | ||
rep | 0 | 417,922,538 | 100% | ||
position | 0 | 417,922,526 | 100% | ||
character | 0 | 417,932,959 | 100% | ||
politeness | 0 | 417,932,497 | 100% | ||
repute | 0 | 417,922,035 | 100% | ||
place | 0 | 417,932,453 | 100% | ||
palace | 0 | 417,922,006 | 100% | ||
chateau | 0 | 417,921,990 | 100% | ||
fort | 0 | 417,932,411 | 100% | ||
bb-8 | 0 | 417,932,197 | 100% | ||
stormtrooper | 0 | 417,921,750 | 100% | ||
stronghold | 0 | 417,932,178 | 100% | ||
hold | 0 | 417,921,725 | 100% | ||
keep | 0 | 417,921,716 | 100% | ||
wall-e | 0 | 417,932,122 | 100% | ||
tik-tok | 0 | 417,921,451 | 100% | ||
wordshop | 0 | 417,921,433 | 100% | ||
astar | 0 | 417,931,861 | 100% | ||
ed-209 | 0 | 417,921,412 | 100% | ||
joyful | 0 | 417,921,353 | 100% | ||
bouncer | 0 | 417,920,433 | 100% | ||
vital | 0 | 417,920,421 | 100% | ||
fitting | 0 | 417,930,851 | 100% | ||
paddle | 0 | 417,920,388 | 100% | ||
propeller | 0 | 417,930,818 | 100% | ||
ballista | 0 | 417,920,375 | 100% | ||
dirtless | 0 | 417,930,722 | 100% | ||
shadowline | 0 | 417,930,709 | 100% | ||
e28 | 0 | 417,920,218 | 100% | ||
e30 | 0 | 417,920,218 | 100% | ||
e34 | 0 | 417,930,391 | 100% | ||
e36 | 0 | 417,930,386 | 100% | ||
e32 | 0 | 417,919,939 | 100% | ||
e39 | 0 | 417,919,934 | 100% | ||
e46 | 0 | 417,919,791 | 100% | ||
e60 | 0 | 417,930,229 | 100% | ||
f-1 | 0 | 417,919,779 | 100% | ||
e61 | 0 | 417,923,704 | 100% | ||
e91 | 0 | 417,923,695 | 100% | ||
e38 | 0 | 417,913,235 | 100% | ||
e92 | 0 | 417,913,228 | 100% | ||
f01 | 0 | 417,913,039 | 100% | ||
f02 | 0 | 417,913,033 | 100% | ||
f03 | 0 | 417,923,468 | 100% | ||
f10 | 0 | 417,923,460 | 100% | ||
f11 | 0 | 417,922,884 | 100% | ||
f12 | 0 | 417,922,878 | 100% | ||
f13 | 0 | 417,922,874 | 100% | ||
f15 | 0 | 417,912,427 | 100% | ||
f16 | 0 | 417,922,605 | 100% | ||
f21 | 0 | 417,912,153 | 100% | ||
f20 | 0 | 417,912,149 | 100% | ||
f22 | 0 | 417,912,147 | 100% | ||
f23 | 0 | 417,911,966 | 100% | ||
f25 | 0 | 417,911,960 | 100% | ||
f30 | 0 | 417,911,957 | 100% | ||
f31 | 0 | 417,922,392 | 100% | ||
e70 | 0 | 417,922,279 | 100% | ||
f33 | 0 | 417,911,826 | 100% | ||
f32 | 0 | 417,922,263 | 100% | ||
f34 | 0 | 417,922,027 | 100% | ||
f35 | 0 | 417,922,004 | 100% | ||
f45 | 0 | 417,921,764 | 100% | ||
f46 | 0 | 417,911,318 | 100% | ||
iroc-z | 0 | 417,911,311 | 100% | ||
e12 | 0 | 417,921,368 | 100% | ||
e23 | 0 | 417,910,918 | 100% | ||
e21 | 0 | 417,910,914 | 100% | ||
e24 | 0 | 417,921,353 | 100% | ||
shiny | 0 | 417,910,512 | 100% | ||
chest | 0 | 417,910,503 | 100% | ||
l00t | 0 | 417,920,730 | 100% | ||
m-tech | 0 | 417,920,720 | 100% | ||
purifying | 0 | 417,920,699 | 100% | ||
captin | 0 | 417,910,068 | 100% |
noganoo !cheetah ban
author | pfunk |
---|---|
permlink | re-tawnie-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051521076z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2018-02-26 05:14:51 |
last_update | 2018-02-26 05:14:51 |
depth | 2 |
children | 1 |
last_payout | 2018-03-05 05:14:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.724 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 221,632,045,904,452 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,505,825 |
net_rshares | 488,417,556,963 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfunk | 0 | 487,506,104,916 | 10% | ||
paulhallman | 0 | 911,452,047 | 10% |
Okay, I have banned @tawnie.
author | cheetah |
---|---|
permlink | cheetah-re-pfunkre-tawnie-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051521076z |
category | raspberry |
json_metadata | "" |
created | 2018-02-26 05:15:51 |
last_update | 2018-02-26 05:15:51 |
depth | 3 |
children | 0 |
last_payout | 2018-03-05 05:15:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 942,693,160,055,713 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,506,003 |
net_rshares | 0 |
# Not only do I now follow you but would you like work? Thank you for posting such a helpful article. @The-Steem-Store
author | the-steem-store |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170114t022433879z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"users":["the-steem-store"],"app":"steemit/0.1"} |
created | 2017-01-14 02:24:33 |
last_update | 2017-01-14 02:24:33 |
depth | 1 |
children | 2 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 79,767,404,757 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,241,771 |
net_rshares | 0 |
What kind of work are you talking about?
author | ubg |
---|---|
permlink | re-the-steem-store-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170114t031344133z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-14 03:13:45 |
last_update | 2017-01-14 03:22:15 |
depth | 2 |
children | 1 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 5,237,585,248,428 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,241,987 |
net_rshares | 0 |
Making a bot to help automate a middleman service. The idea, would be to connect users who need things, to users who can ship them. After an arrangement is made, users can pay @The-Steem-Store in STEEM to receive their item after delivery. When payment to this account is made, the bot would make a post calling for the delivery of the goods. When the delivery is complete the payment will be past onto the user who delivered the goods. Sorry for the late response,
author | the-steem-store |
---|---|
permlink | re-ubg-re-the-steem-store-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170118t013252828z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"users":["the-steem-store"],"app":"steemit/0.1"} |
created | 2017-01-18 01:33:15 |
last_update | 2017-01-18 01:33:15 |
depth | 3 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 469 |
author_reputation | 79,767,404,757 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,275,405 |
net_rshares | 0 |
What a sizzling hot article.
author | tinder |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170121t222147924z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-23 22:23:27 |
last_update | 2017-01-23 22:23:27 |
depth | 1 |
children | 2 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.039 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 15,541,339,089 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,324,794 |
net_rshares | 995,068,882,653 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
noganoo | 0 | 24,889,618,132 | 100% | ||
gardening | 0 | 359,223,220 | 100% | ||
survival | 0 | 359,372,967 | 100% | ||
seth-krings | 0 | 5,329,787,397 | 100% | ||
technology | 0 | 16,891,595,592 | 100% | ||
jparty | 0 | 19,381,437,465 | 100% | ||
auction | 0 | 2,516,212,072 | 100% | ||
honey | 0 | 272,495,815 | 100% | ||
snowden | 0 | 270,636,692 | 100% | ||
farm | 0 | 116,496,818 | 100% | ||
hemp | 0 | 1,690,464,209 | 100% | ||
flowers | 0 | 171,890,738 | 100% | ||
coins | 0 | 115,967,854 | 100% | ||
sauce | 0 | 115,957,399 | 100% | ||
charts | 0 | 115,100,828 | 100% | ||
vape | 0 | 115,100,828 | 100% | ||
islam | 0 | 115,266,443 | 100% | ||
soda | 0 | 115,100,828 | 100% | ||
social | 0 | 992,202,937 | 100% | ||
steemchain | 0 | 147,269,948 | 100% | ||
whalepool | 0 | 122,099,103 | 100% | ||
chocolates | 0 | 115,044,053 | 100% | ||
spice | 0 | 114,147,267 | 100% | ||
cigarettes | 0 | 114,147,267 | 100% | ||
dabs | 0 | 114,147,267 | 100% | ||
coding | 0 | 113,922,146 | 100% | ||
hack | 0 | 113,922,115 | 100% | ||
traveling | 0 | 113,922,115 | 100% | ||
exotic | 0 | 64,006,202 | 100% | ||
tox | 0 | 567,398,403 | 100% | ||
cute | 0 | 189,476,408 | 100% | ||
berries | 0 | 61,529,559 | 100% | ||
diamonds | 0 | 88,699,299 | 100% | ||
candies | 0 | 61,529,559 | 100% | ||
evolution | 0 | 61,500,018 | 100% | ||
future | 0 | 61,500,018 | 100% | ||
creation | 0 | 61,500,003 | 100% | ||
scripture | 0 | 59,814,704 | 100% | ||
juice | 0 | 59,814,704 | 100% | ||
warez | 0 | 59,814,704 | 100% | ||
archives | 0 | 59,814,704 | 100% | ||
survivalist | 0 | 58,238,872 | 100% | ||
hardware | 0 | 58,234,174 | 100% | ||
nostalgia | 0 | 58,234,174 | 100% | ||
lottery | 0 | 58,208,335 | 100% | ||
glass | 0 | 58,208,335 | 100% | ||
fruit | 0 | 58,208,335 | 100% | ||
recycling | 0 | 58,208,322 | 100% | ||
revelation | 0 | 58,208,322 | 100% | ||
manufacturing | 0 | 58,184,157 | 100% | ||
how-to | 0 | 58,184,157 | 100% | ||
printing | 0 | 58,184,157 | 100% | ||
plastic | 0 | 58,184,157 | 100% | ||
plastics | 0 | 58,184,143 | 100% | ||
dinosaurs | 0 | 55,379,808 | 100% | ||
hacks | 0 | 55,379,808 | 100% | ||
steemit.asia | 0 | 51,963,260 | 100% | ||
flix | 0 | 51,963,260 | 100% | ||
swapman | 0 | 51,963,260 | 100% | ||
mining | 0 | 51,963,249 | 100% | ||
mine | 0 | 51,963,249 | 100% | ||
proverbs | 0 | 333,903,034 | 100% | ||
drinks | 0 | 158,273,729 | 100% | ||
storage | 0 | 186,766,185 | 100% | ||
its | 0 | 154,956,724 | 100% | ||
cbd | 0 | 183,480,846 | 100% | ||
junk | 0 | 183,470,405 | 100% | ||
hug | 0 | 183,499,364 | 100% | ||
bearcub | 0 | 184,146,847 | 100% | ||
cyberpunk | 0 | 183,499,331 | 100% | ||
keisha | 0 | 182,727,735 | 100% | ||
blackmarket | 0 | 186,030,485 | 100% | ||
gifts | 0 | 187,595,661 | 100% | ||
gift | 0 | 154,208,036 | 100% | ||
muffin | 0 | 154,208,038 | 100% | ||
int | 0 | 182,750,639 | 100% | ||
child | 0 | 581,413,291 | 100% | ||
rag | 0 | 581,216,477 | 100% | ||
mug | 0 | 581,220,522 | 100% | ||
yam | 0 | 581,169,618 | 100% | ||
ilk | 0 | 581,120,781 | 100% | ||
jug | 0 | 581,102,845 | 100% | ||
urn | 0 | 581,058,677 | 100% | ||
dat | 0 | 581,022,315 | 100% | ||
toe | 0 | 580,967,381 | 100% | ||
qua | 0 | 580,943,851 | 100% | ||
rue | 0 | 580,885,080 | 100% | ||
dye | 0 | 580,864,035 | 100% | ||
lob | 0 | 579,879,312 | 100% | ||
leg | 0 | 579,849,706 | 100% | ||
hid | 0 | 579,728,389 | 100% | ||
oar | 0 | 579,694,831 | 100% | ||
mow | 0 | 579,671,686 | 100% | ||
rid | 0 | 579,627,031 | 100% | ||
saw | 0 | 579,567,565 | 100% | ||
dew | 0 | 579,537,025 | 100% | ||
mop | 0 | 579,462,551 | 100% | ||
jeg | 0 | 579,454,263 | 100% | ||
wee | 0 | 579,347,638 | 100% | ||
rot | 0 | 579,323,864 | 100% | ||
wok | 0 | 579,305,457 | 100% | ||
ply | 0 | 579,287,436 | 100% | ||
pun | 0 | 579,259,463 | 100% | ||
ohm | 0 | 579,234,057 | 100% | ||
paw | 0 | 579,188,378 | 100% | ||
wag | 0 | 579,181,793 | 100% | ||
neu | 0 | 579,163,141 | 100% | ||
sow | 0 | 579,144,626 | 100% | ||
hop | 0 | 579,121,049 | 100% | ||
tup | 0 | 579,102,177 | 100% | ||
peg | 0 | 579,084,331 | 100% | ||
noh | 0 | 579,055,844 | 100% | ||
yeh | 0 | 579,048,522 | 100% | ||
tow | 0 | 579,016,831 | 100% | ||
hat | 0 | 579,005,418 | 100% | ||
ish | 0 | 578,985,766 | 100% | ||
dir | 0 | 578,965,706 | 100% | ||
hic | 0 | 578,937,066 | 100% | ||
yay | 0 | 578,926,508 | 100% | ||
nay | 0 | 578,906,068 | 100% | ||
keg | 0 | 578,737,200 | 100% | ||
soh | 0 | 578,626,116 | 100% | ||
fah | 0 | 578,604,068 | 100% | ||
lah | 0 | 578,586,797 | 100% | ||
yob | 0 | 578,579,694 | 100% | ||
inn | 0 | 578,541,564 | 100% | ||
olf | 0 | 578,490,550 | 100% | ||
omy | 0 | 578,467,671 | 100% | ||
pad | 0 | 578,448,478 | 100% | ||
par | 0 | 578,412,158 | 100% | ||
sac | 0 | 578,358,126 | 100% | ||
fur | 0 | 578,328,115 | 100% | ||
pes | 0 | 578,320,462 | 100% | ||
yew | 0 | 578,289,664 | 100% | ||
zho | 0 | 578,249,917 | 100% | ||
vum | 0 | 578,230,879 | 100% | ||
rye | 0 | 578,212,584 | 100% | ||
pus | 0 | 578,194,228 | 100% | ||
wey | 0 | 578,173,801 | 100% | ||
tey | 0 | 578,144,183 | 100% | ||
teh | 0 | 578,127,347 | 100% | ||
gad | 0 | 578,105,944 | 100% | ||
wig | 0 | 578,087,774 | 100% | ||
rig | 0 | 578,070,613 | 100% | ||
yea | 0 | 578,051,729 | 100% | ||
leu | 0 | 578,034,355 | 100% | ||
hir | 0 | 578,015,689 | 100% | ||
wif | 0 | 577,990,767 | 100% | ||
wid | 0 | 577,973,309 | 100% | ||
svo | 0 | 577,955,012 | 100% | ||
lav | 0 | 577,937,841 | 100% | ||
haw | 0 | 577,919,652 | 100% | ||
children | 0 | 585,810,720 | 100% | ||
djs | 0 | 595,523,068 | 100% | ||
ssd | 0 | 577,863,565 | 100% | ||
ref | 0 | 574,469,309 | 100% | ||
bey | 0 | 574,449,688 | 100% | ||
cud | 0 | 574,432,663 | 100% | ||
hod | 0 | 574,414,692 | 100% | ||
otp | 0 | 574,406,662 | 100% | ||
jig | 0 | 574,372,051 | 100% | ||
lye | 0 | 574,353,101 | 100% | ||
oft | 0 | 574,335,127 | 100% | ||
pew | 0 | 574,318,756 | 100% | ||
pug | 0 | 574,302,385 | 100% | ||
yip | 0 | 574,118,403 | 100% | ||
tog | 0 | 574,078,694 | 100% | ||
zig | 0 | 574,061,434 | 100% | ||
evilbot | 0 | 569,304,065 | 100% | ||
pta | 0 | 569,268,427 | 100% | ||
zag | 0 | 569,246,582 | 100% | ||
esh | 0 | 568,983,953 | 100% | ||
pec | 0 | 568,951,886 | 100% | ||
waw | 0 | 568,931,300 | 100% | ||
vau | 0 | 568,912,315 | 100% | ||
kaf | 0 | 568,894,102 | 100% | ||
qat | 0 | 568,871,036 | 100% | ||
irk | 0 | 568,846,770 | 100% | ||
mon | 0 | 568,829,427 | 100% | ||
ley | 0 | 568,807,953 | 100% | ||
hum | 0 | 568,785,681 | 100% | ||
meh | 0 | 568,764,270 | 100% | ||
dau | 0 | 568,744,959 | 100% | ||
taa | 0 | 568,728,408 | 100% | ||
exy | 0 | 568,721,885 | 100% | ||
lox | 0 | 568,694,105 | 100% | ||
nid | 0 | 568,677,739 | 100% | ||
meu | 0 | 568,660,670 | 100% | ||
pud | 0 | 568,642,798 | 100% | ||
gal | 0 | 568,624,266 | 100% | ||
jog | 0 | 568,588,699 | 100% | ||
opt | 0 | 568,577,303 | 100% | ||
wem | 0 | 568,560,389 | 100% | ||
tug | 0 | 568,524,647 | 100% | ||
ubgs | 0 | 568,505,381 | 100% | ||
lulzsec | 0 | 586,244,671 | 100% | ||
weev | 0 | 580,712,486 | 100% | ||
acidus | 0 | 568,427,600 | 100% | ||
geohot | 0 | 570,915,121 | 100% | ||
bugs-bunny | 0 | 555,149,061 | 100% | ||
hatmug | 0 | 555,090,511 | 100% | ||
elventroll | 0 | 555,058,530 | 100% | ||
elven.troll | 0 | 552,025,270 | 100% | ||
ilive | 0 | 551,070,241 | 100% | ||
guild | 0 | 548,040,116 | 100% | ||
accurate | 0 | 548,022,952 | 100% | ||
brilliant | 0 | 547,996,596 | 100% | ||
calm | 0 | 547,971,825 | 100% | ||
classy | 0 | 547,842,435 | 100% | ||
sour | 0 | 547,797,099 | 100% | ||
loved | 0 | 547,788,699 | 100% | ||
alluring | 0 | 547,764,757 | 100% | ||
adorable | 0 | 547,748,741 | 100% | ||
charming | 0 | 547,731,062 | 100% | ||
irresistible | 0 | 547,712,003 | 100% | ||
magnetic | 0 | 547,681,455 | 100% | ||
holy | 0 | 547,658,059 | 100% | ||
neat | 0 | 536,425,078 | 100% | ||
winning | 0 | 536,311,980 | 100% | ||
worthwhile | 0 | 534,545,469 | 100% | ||
cheer | 0 | 534,519,972 | 100% | ||
deluxe | 0 | 534,482,060 | 100% | ||
soaked | 0 | 534,461,518 | 100% | ||
tender | 0 | 534,403,938 | 100% | ||
tune | 0 | 534,296,642 | 100% | ||
vocal | 0 | 534,255,952 | 100% | ||
melodic | 0 | 534,254,943 | 100% | ||
strong | 0 | 534,226,403 | 100% | ||
polite | 0 | 534,235,836 | 100% | ||
favorite | 0 | 534,194,045 | 100% | ||
valuable | 0 | 534,192,900 | 100% | ||
productive | 0 | 534,164,366 | 100% | ||
heavy | 0 | 534,163,426 | 100% | ||
gilded | 0 | 534,121,462 | 100% | ||
loaded | 0 | 534,130,828 | 100% | ||
effective | 0 | 534,109,953 | 100% | ||
warm | 0 | 534,107,585 | 100% | ||
caring | 0 | 534,087,322 | 100% | ||
feast | 0 | 534,072,311 | 100% | ||
welcome | 0 | 532,771,116 | 100% | ||
sticky | 0 | 532,751,006 | 100% | ||
sublime | 0 | 532,728,046 | 100% | ||
excellent | 0 | 532,718,613 | 100% | ||
glorious | 0 | 532,647,125 | 100% | ||
silly | 0 | 532,646,325 | 100% | ||
heart | 0 | 532,632,140 | 100% | ||
passionate | 0 | 532,631,937 | 100% | ||
fireandbrimstone | 0 | 532,615,108 | 100% | ||
insane | 0 | 532,614,791 | 100% | ||
heavenly | 0 | 532,600,620 | 100% | ||
splendid | 0 | 532,596,757 | 100% | ||
superior | 0 | 532,595,417 | 100% | ||
tawnie | 0 | 532,582,564 | 100% | ||
reputable | 0 | 532,571,932 | 100% | ||
skilled | 0 | 532,571,392 | 100% | ||
cougar | 0 | 532,537,174 | 100% | ||
great | 0 | 532,531,467 | 100% | ||
a-ok | 0 | 532,540,988 | 100% | ||
snake-plissken | 0 | 532,516,802 | 100% | ||
skillful | 0 | 532,513,675 | 100% | ||
keen | 0 | 532,513,000 | 100% | ||
steemville | 0 | 532,500,418 | 100% | ||
worthy | 0 | 532,489,151 | 100% | ||
acceptable | 0 | 532,486,652 | 100% | ||
left | 0 | 532,485,121 | 100% | ||
tinder | 0 | 532,473,676 | 100% | ||
fake | 0 | 532,446,178 | 100% | ||
advantage | 0 | 532,445,514 | 100% | ||
greatest | 0 | 532,444,771 | 100% | ||
theft | 0 | 532,410,923 | 100% | ||
clever | 0 | 532,410,112 | 100% | ||
gain | 0 | 532,409,122 | 100% | ||
prestige | 0 | 532,394,782 | 100% | ||
comfort | 0 | 532,394,647 | 100% | ||
lucker | 0 | 532,381,490 | 100% | ||
satisfying | 0 | 532,380,297 | 100% | ||
spin | 0 | 532,358,736 | 100% | ||
accepted | 0 | 532,361,593 | 100% | ||
robin.hood | 0 | 532,359,928 | 100% | ||
pokie | 0 | 532,341,045 | 100% | ||
godly | 0 | 532,344,443 | 100% | ||
stake | 0 | 532,342,891 | 100% | ||
tanks | 0 | 532,325,685 | 100% | ||
extra | 0 | 532,304,296 | 100% | ||
mild | 0 | 532,303,891 | 100% | ||
honor | 0 | 532,090,018 | 100% | ||
moral | 0 | 532,089,220 | 100% | ||
wise | 0 | 532,088,411 | 100% | ||
even | 0 | 532,073,773 | 100% | ||
dynamite | 0 | 532,073,571 | 100% | ||
circlejerk | 0 | 532,055,740 | 100% | ||
helpful | 0 | 532,064,971 | 100% | ||
suit | 0 | 532,022,232 | 100% | ||
ready | 0 | 532,005,440 | 100% | ||
clean | 0 | 532,014,884 | 100% | ||
harmless | 0 | 531,984,875 | 100% | ||
wholesome | 0 | 531,984,740 | 100% | ||
hot-dog | 0 | 531,970,097 | 100% | ||
adored | 0 | 531,969,692 | 100% | ||
privileged | 0 | 531,950,760 | 100% | ||
fortunate | 0 | 531,949,760 | 100% | ||
honored | 0 | 531,936,210 | 100% | ||
valued | 0 | 531,935,075 | 100% | ||
reserved | 0 | 528,822,948 | 100% | ||
proper | 0 | 528,820,496 | 100% | ||
stable | 0 | 528,738,246 | 100% | ||
civilized | 0 | 528,737,381 | 100% | ||
sweetheart | 0 | 528,721,784 | 100% | ||
liked | 0 | 528,720,587 | 100% | ||
flavor | 0 | 528,701,595 | 100% | ||
insert | 0 | 528,683,483 | 100% | ||
delete | 0 | 528,682,685 | 100% | ||
control | 0 | 528,664,252 | 100% | ||
altar | 0 | 528,662,411 | 100% | ||
shrine | 0 | 528,644,267 | 100% | ||
temple | 0 | 528,643,868 | 100% | ||
fandom | 0 | 528,617,299 | 100% | ||
church | 0 | 528,615,437 | 100% | ||
h8d | 0 | 528,601,900 | 100% | ||
select | 0 | 528,600,182 | 100% | ||
minister | 0 | 528,584,851 | 100% | ||
worship | 0 | 528,583,654 | 100% | ||
skill | 0 | 528,569,143 | 100% | ||
devoted | 0 | 528,568,944 | 100% | ||
flat | 0 | 528,530,604 | 100% | ||
co-op | 0 | 528,530,138 | 100% | ||
cover | 0 | 528,529,208 | 100% | ||
port | 0 | 528,502,974 | 100% | ||
ship | 0 | 528,502,509 | 100% | ||
model | 0 | 528,469,728 | 100% | ||
yatch | 0 | 528,479,572 | 100% | ||
zone | 0 | 528,478,197 | 100% | ||
dear | 0 | 528,458,806 | 100% | ||
leet | 0 | 528,457,876 | 100% | ||
challanger | 0 | 528,455,914 | 100% | ||
harbor | 0 | 528,438,221 | 100% | ||
shelter | 0 | 528,437,158 | 100% | ||
hole | 0 | 528,436,437 | 100% | ||
pride | 0 | 528,421,039 | 100% | ||
booty | 0 | 528,419,976 | 100% | ||
icon | 0 | 528,418,801 | 100% | ||
cave | 0 | 528,401,464 | 100% | ||
study | 0 | 528,401,264 | 100% | ||
mansion | 0 | 528,401,131 | 100% | ||
tower | 0 | 528,384,959 | 100% | ||
crib | 0 | 528,383,785 | 100% | ||
shed | 0 | 528,382,554 | 100% | ||
accept | 0 | 528,311,974 | 100% | ||
trick | 0 | 528,321,752 | 100% | ||
waiting | 0 | 528,320,091 | 100% | ||
cloak | 0 | 528,267,353 | 100% | ||
hour | 0 | 528,265,626 | 100% | ||
picture | 0 | 528,264,574 | 100% | ||
hideout | 0 | 528,256,521 | 100% | ||
puppet | 0 | 528,244,826 | 100% | ||
copy | 0 | 528,244,295 | 100% | ||
lurker | 0 | 528,231,610 | 100% | ||
tunnel | 0 | 528,230,813 | 100% | ||
room | 0 | 528,230,149 | 100% | ||
figure | 0 | 528,202,065 | 100% | ||
replica | 0 | 528,201,090 | 100% | ||
split | 0 | 528,200,182 | 100% | ||
statue | 0 | 528,199,717 | 100% | ||
theme | 0 | 528,198,854 | 100% | ||
tent | 0 | 528,169,564 | 100% | ||
defend | 0 | 528,178,945 | 100% | ||
lodge | 0 | 528,176,842 | 100% | ||
shield | 0 | 528,175,657 | 100% | ||
wrap | 0 | 528,163,290 | 100% | ||
prize | 0 | 528,164,923 | 100% | ||
same | 0 | 528,146,664 | 100% | ||
dual | 0 | 528,145,602 | 100% | ||
paired | 0 | 528,144,939 | 100% | ||
singular | 0 | 528,144,142 | 100% | ||
binary | 0 | 528,141,830 | 100% | ||
plural | 0 | 528,122,014 | 100% | ||
machine | 0 | 528,108,284 | 100% | ||
analog | 0 | 528,117,399 | 100% | ||
processor | 0 | 528,117,266 | 100% | ||
motor | 0 | 528,100,880 | 100% | ||
vehicle | 0 | 528,100,084 | 100% | ||
calculation | 0 | 528,096,179 | 100% | ||
driven | 0 | 528,095,316 | 100% | ||
ticker | 0 | 528,080,657 | 100% | ||
floppy | 0 | 528,031,324 | 100% | ||
modem | 0 | 528,030,549 | 100% | ||
router | 0 | 528,029,620 | 100% | ||
electronic | 0 | 527,993,631 | 100% | ||
vcr | 0 | 527,992,780 | 100% | ||
robotic | 0 | 527,991,851 | 100% | ||
feeling | 0 | 527,989,861 | 100% | ||
intellect | 0 | 527,946,982 | 100% | ||
entity | 0 | 527,946,064 | 100% | ||
bubbles | 0 | 527,914,717 | 100% | ||
buttercup | 0 | 527,934,487 | 100% | ||
bosom | 0 | 527,911,030 | 100% | ||
psyche | 0 | 526,636,940 | 100% | ||
ground | 0 | 526,646,723 | 100% | ||
being | 0 | 526,635,697 | 100% | ||
emotion | 0 | 526,645,546 | 100% | ||
refuge | 0 | 526,619,330 | 100% | ||
riven | 0 | 526,616,758 | 100% | ||
swain | 0 | 526,614,450 | 100% | ||
karthus | 0 | 526,591,360 | 100% | ||
zezima | 0 | 526,590,711 | 100% | ||
elves | 0 | 526,569,231 | 100% | ||
swans | 0 | 526,568,505 | 100% | ||
projectile | 0 | 526,567,076 | 100% | ||
bolt | 0 | 526,566,219 | 100% | ||
plane | 0 | 526,565,240 | 100% | ||
woodpecker | 0 | 526,537,551 | 100% | ||
stork | 0 | 526,536,045 | 100% | ||
gull | 0 | 526,534,595 | 100% | ||
bowl | 0 | 526,533,034 | 100% | ||
milkyway | 0 | 526,532,374 | 100% | ||
toucan | 0 | 526,530,869 | 100% | ||
hummingbird | 0 | 526,501,942 | 100% | ||
humming | 0 | 526,500,897 | 100% | ||
sand | 0 | 526,499,656 | 100% | ||
kiw | 0 | 526,498,951 | 100% | ||
bul | 0 | 526,496,148 | 100% | ||
bulbul | 0 | 526,495,489 | 100% | ||
invoker | 0 | 526,478,062 | 100% | ||
neutral | 0 | 526,477,007 | 100% | ||
oat | 0 | 526,476,414 | 100% | ||
dirt | 0 | 526,474,898 | 100% | ||
soil | 0 | 526,474,173 | 100% | ||
glue | 0 | 526,461,194 | 100% | ||
turf | 0 | 526,448,669 | 100% | ||
land | 0 | 526,447,944 | 100% | ||
mushrooms | 0 | 526,446,769 | 100% | ||
relaxed | 0 | 526,445,406 | 100% | ||
active | 0 | 526,443,439 | 100% | ||
involved | 0 | 526,430,739 | 100% | ||
personal | 0 | 526,421,562 | 100% | ||
gentle | 0 | 526,420,771 | 100% | ||
affection | 0 | 526,419,332 | 100% | ||
friendship | 0 | 526,418,673 | 100% | ||
piety | 0 | 526,391,386 | 100% | ||
lust | 0 | 526,390,727 | 100% | ||
delight | 0 | 526,389,749 | 100% | ||
enjoy | 0 | 526,369,649 | 100% | ||
airplane | 0 | 526,114,907 | 100% | ||
shuttle | 0 | 526,114,380 | 100% | ||
spaceship | 0 | 526,113,788 | 100% | ||
fuel | 0 | 526,113,327 | 100% | ||
relic | 0 | 526,111,111 | 100% | ||
respect | 0 | 526,099,566 | 100% | ||
sorrow | 0 | 526,094,136 | 100% | ||
hate | 0 | 526,093,478 | 100% | ||
hearted | 0 | 526,091,767 | 100% | ||
playing | 0 | 526,088,311 | 100% | ||
lovin | 0 | 526,081,003 | 100% | ||
favor | 0 | 526,067,112 | 100% | ||
spot | 0 | 582,710,245 | 100% | ||
sympathy | 0 | 526,052,963 | 100% | ||
fingers | 0 | 526,051,789 | 100% | ||
seaman | 0 | 526,051,273 | 100% | ||
blessing | 0 | 526,049,396 | 100% | ||
dearest | 0 | 526,026,274 | 100% | ||
estonia | 0 | 543,040,134 | 100% | ||
piss | 0 | 526,020,810 | 100% | ||
latvia | 0 | 526,027,862 | 100% | ||
embrace | 0 | 526,025,525 | 100% | ||
adore | 0 | 526,022,651 | 100% | ||
fond | 0 | 526,007,978 | 100% | ||
rooster | 0 | 526,002,033 | 100% | ||
pesant | 0 | 526,001,375 | 100% | ||
spirited | 0 | 526,000,455 | 100% | ||
bold | 0 | 525,999,807 | 100% | ||
valiant | 0 | 525,978,090 | 100% | ||
eager | 0 | 525,977,432 | 100% | ||
agility | 0 | 525,976,709 | 100% | ||
firm | 0 | 525,959,712 | 100% | ||
puke | 0 | 525,957,178 | 100% | ||
work | 0 | 525,955,478 | 100% | ||
process | 0 | 525,953,329 | 100% | ||
hobby | 0 | 525,924,271 | 100% | ||
adventure | 0 | 525,923,351 | 100% | ||
venture | 0 | 525,910,825 | 100% | ||
mice | 0 | 525,920,291 | 100% | ||
wager | 0 | 525,899,876 | 100% | ||
hazard | 0 | 525,899,218 | 100% | ||
heroic | 0 | 525,897,837 | 100% | ||
idea | 0 | 524,648,556 | 100% | ||
stunt | 0 | 524,647,767 | 100% | ||
ball | 0 | 524,646,912 | 100% | ||
deed | 0 | 524,644,413 | 100% | ||
risk | 0 | 524,643,492 | 100% | ||
flurry | 0 | 524,632,695 | 100% | ||
speculate | 0 | 524,606,267 | 100% | ||
speculation | 0 | 524,615,282 | 100% | ||
hacked | 0 | 564,277,934 | 100% | ||
minions | 0 | 524,601,253 | 100% | ||
servers | 0 | 524,596,925 | 100% | ||
waiter | 0 | 524,587,000 | 100% | ||
hoster | 0 | 524,585,179 | 100% | ||
windmill | 0 | 524,582,524 | 100% | ||
follow | 0 | 524,581,669 | 100% | ||
waitress | 0 | 524,579,180 | 100% | ||
fans | 0 | 524,562,843 | 100% | ||
follower | 0 | 524,541,081 | 100% | ||
ventilator | 0 | 524,538,952 | 100% | ||
draft | 0 | 524,538,294 | 100% | ||
backed | 0 | 524,536,661 | 100% | ||
alturist | 0 | 524,514,470 | 100% | ||
wake | 0 | 524,513,363 | 100% | ||
promote | 0 | 524,512,529 | 100% | ||
whisper | 0 | 524,511,674 | 100% | ||
sniff | 0 | 524,493,728 | 100% | ||
junkie | 0 | 524,491,711 | 100% | ||
turbine | 0 | 524,490,922 | 100% | ||
turbo | 0 | 524,490,012 | 100% | ||
activity | 0 | 524,476,750 | 100% | ||
raimo | 0 | 524,461,426 | 100% | ||
tanel | 0 | 524,460,768 | 100% | ||
ats | 0 | 524,459,990 | 100% | ||
loyalty | 0 | 524,458,160 | 100% | ||
lungs | 0 | 524,404,495 | 100% | ||
specialist | 0 | 524,403,333 | 100% | ||
veteran | 0 | 524,402,544 | 100% | ||
type | 0 | 524,366,635 | 100% | ||
that | 0 | 524,365,847 | 100% | ||
rookie | 0 | 524,353,565 | 100% | ||
nurse | 0 | 524,343,682 | 100% | ||
squat | 0 | 524,341,261 | 100% | ||
medic | 0 | 524,339,104 | 100% | ||
commander | 0 | 524,328,588 | 100% | ||
l0l | 0 | 524,327,208 | 100% | ||
scholar | 0 | 524,313,758 | 100% | ||
l3l | 0 | 524,293,285 | 100% | ||
d0n | 0 | 524,292,497 | 100% | ||
f0x | 0 | 524,290,426 | 100% | ||
b0t | 0 | 524,274,896 | 100% | ||
b1t | 0 | 524,272,355 | 100% | ||
s3x | 0 | 524,249,183 | 100% | ||
g0d | 0 | 524,248,536 | 100% | ||
h0t | 0 | 524,247,824 | 100% | ||
d0g | 0 | 524,244,834 | 100% | ||
eg0 | 0 | 524,218,871 | 100% | ||
t3n | 0 | 419,271,112 | 100% | ||
c0p | 0 | 419,247,306 | 100% | ||
m00 | 0 | 419,246,010 | 100% | ||
s1x | 0 | 419,235,043 | 100% | ||
n3w | 0 | 419,231,821 | 100% | ||
ac3 | 0 | 419,220,923 | 100% | ||
m3n | 0 | 419,218,167 | 100% | ||
b0y | 0 | 419,207,147 | 100% | ||
tw0 | 0 | 419,205,415 | 100% | ||
l1t | 0 | 419,195,524 | 100% | ||
s0n | 0 | 419,193,800 | 100% | ||
a1r | 0 | 419,193,007 | 100% | ||
w0w | 0 | 418,207,297 | 100% | ||
uz1 | 0 | 522,755,738 | 100% | ||
b0b | 0 | 522,754,603 | 100% | ||
c0m | 0 | 522,752,599 | 100% | ||
f3w | 0 | 418,177,390 | 100% | ||
d0s | 0 | 418,167,100 | 100% | ||
n3d | 0 | 418,176,871 | 100% | ||
t0d | 0 | 522,717,630 | 100% | ||
m0m | 0 | 418,165,332 | 100% | ||
p00 | 0 | 522,695,386 | 100% | ||
z00 | 0 | 418,147,380 | 100% | ||
f00 | 0 | 418,157,353 | 100% | ||
k1d | 0 | 418,137,892 | 100% | ||
t0y | 0 | 418,137,475 | 100% | ||
j3w | 0 | 522,668,330 | 100% | ||
a00 | 0 | 418,108,682 | 100% | ||
b00 | 0 | 418,108,168 | 100% | ||
c00 | 0 | 418,097,368 | 100% | ||
l0w | 0 | 418,102,399 | 100% | ||
l0v3 | 0 | 522,624,289 | 100% | ||
l0ve | 0 | 418,083,297 | 100% | ||
d00 | 0 | 418,070,996 | 100% | ||
e00 | 0 | 522,598,665 | 100% | ||
ctrl | 0 | 418,069,543 | 100% | ||
follow-up | 0 | 418,043,993 | 100% | ||
yours | 0 | 418,053,312 | 100% | ||
w1n | 0 | 418,042,114 | 100% | ||
b0x | 0 | 418,041,592 | 100% | ||
x0x0 | 0 | 418,040,717 | 100% | ||
r3d | 0 | 418,022,020 | 100% | ||
f1n | 0 | 418,032,456 | 100% | ||
x0x | 0 | 418,022,008 | 100% | ||
oioi | 0 | 418,021,804 | 100% | ||
cuddle | 0 | 418,021,792 | 100% | ||
unlimited | 0 | 418,021,787 | 100% | ||
d1e | 0 | 418,021,687 | 100% | ||
l1e | 0 | 418,032,122 | 100% | ||
a55 | 0 | 418,032,049 | 100% | ||
followup | 0 | 418,021,376 | 100% | ||
gunshot | 0 | 418,031,812 | 100% | ||
ce0 | 0 | 418,021,362 | 100% | ||
w1zard | 0 | 418,021,223 | 100% | ||
b0ss | 0 | 418,031,662 | 100% | ||
og-kush | 0 | 418,031,656 | 100% | ||
attached | 0 | 418,020,934 | 100% | ||
ch1na | 0 | 418,020,919 | 100% | ||
executive | 0 | 418,020,904 | 100% | ||
h3art | 0 | 418,020,751 | 100% | ||
hearts | 0 | 418,031,065 | 100% | ||
pr1ze | 0 | 418,030,932 | 100% | ||
s0s | 0 | 418,020,469 | 100% | ||
elected | 0 | 418,020,454 | 100% | ||
whiz | 0 | 418,030,711 | 100% | ||
critic | 0 | 418,020,253 | 100% | ||
i-heart-you | 0 | 418,020,068 | 100% | ||
quack | 0 | 418,020,061 | 100% | ||
wub | 0 | 418,040,928 | 100% | ||
adopt | 0 | 418,019,930 | 100% | ||
dispute | 0 | 418,019,921 | 100% | ||
admire | 0 | 418,030,353 | 100% | ||
want | 0 | 418,030,209 | 100% | ||
prefer | 0 | 418,019,755 | 100% | ||
take | 0 | 418,019,746 | 100% | ||
obtain | 0 | 418,029,849 | 100% | ||
secure | 0 | 418,019,401 | 100% | ||
g3t | 0 | 418,019,389 | 100% | ||
subscribe | 0 | 418,019,383 | 100% | ||
uphold | 0 | 418,029,816 | 100% | ||
healer | 0 | 418,019,216 | 100% | ||
surgeon | 0 | 418,019,210 | 100% | ||
intern | 0 | 418,019,201 | 100% | ||
hypnotist | 0 | 418,019,175 | 100% | ||
enchanter | 0 | 418,019,169 | 100% | ||
fountain | 0 | 418,018,987 | 100% | ||
v0ice | 0 | 418,018,878 | 100% | ||
fortuneteller | 0 | 418,029,307 | 100% | ||
medium | 0 | 418,018,857 | 100% | ||
necromancer | 0 | 418,028,681 | 100% | ||
sorcerer | 0 | 418,018,227 | 100% | ||
magician | 0 | 418,018,219 | 100% | ||
beam | 0 | 418,018,128 | 100% | ||
feds | 0 | 418,018,107 | 100% | ||
f1sh | 0 | 418,028,542 | 100% | ||
reader | 0 | 418,028,310 | 100% | ||
druid | 0 | 418,028,298 | 100% | ||
diviner | 0 | 418,017,843 | 100% | ||
mystical | 0 | 418,028,118 | 100% | ||
magical | 0 | 418,017,669 | 100% | ||
puzzling | 0 | 418,028,094 | 100% | ||
vague | 0 | 418,017,405 | 100% | ||
pokerface | 0 | 418,027,821 | 100% | ||
readme | 0 | 418,014,836 | 100% | ||
skim | 0 | 418,004,382 | 100% | ||
scan | 0 | 418,025,248 | 100% | ||
inspect | 0 | 418,014,800 | 100% | ||
herald | 0 | 418,014,788 | 100% | ||
s33 | 0 | 418,004,247 | 100% | ||
prove | 0 | 418,014,437 | 100% | ||
promise | 0 | 418,003,987 | 100% | ||
shots | 0 | 418,003,969 | 100% | ||
speak | 0 | 418,014,274 | 100% | ||
survey | 0 | 418,003,808 | 100% | ||
size | 0 | 418,003,567 | 100% | ||
crystal-ball | 0 | 418,003,557 | 100% | ||
member-berries | 0 | 418,013,963 | 100% | ||
understand | 0 | 418,013,951 | 100% | ||
megabook | 0 | 418,003,312 | 100% | ||
solve | 0 | 418,003,307 | 100% | ||
deliver | 0 | 418,013,735 | 100% | ||
warn | 0 | 418,013,720 | 100% | ||
channel | 0 | 418,013,709 | 100% | ||
fondness | 0 | 418,013,697 | 100% | ||
prayers | 0 | 418,003,067 | 100% | ||
overcharge | 0 | 418,003,058 | 100% | ||
redemption | 0 | 418,013,489 | 100% | ||
smite | 0 | 418,002,731 | 100% | ||
retribution | 0 | 418,013,154 | 100% | ||
rigour | 0 | 418,002,696 | 100% | ||
augury | 0 | 418,002,502 | 100% | ||
skin | 0 | 418,012,939 | 100% | ||
chivalry | 0 | 418,002,491 | 100% | ||
charge | 0 | 418,002,481 | 100% | ||
enjoyment | 0 | 418,002,327 | 100% | ||
warming | 0 | 418,002,316 | 100% | ||
push | 0 | 418,012,746 | 100% | ||
pull | 0 | 418,002,292 | 100% | ||
defence | 0 | 418,002,145 | 100% | ||
poor | 0 | 418,012,576 | 100% | ||
mastery | 0 | 418,002,122 | 100% | ||
k3y | 0 | 418,002,112 | 100% | ||
damage | 0 | 418,012,445 | 100% | ||
points | 0 | 418,001,990 | 100% | ||
level | 0 | 418,012,432 | 100% | ||
crit | 0 | 480,450,397 | 100% | ||
whistle | 0 | 418,001,840 | 100% | ||
cooks | 0 | 418,012,260 | 100% | ||
quest | 0 | 418,012,253 | 100% | ||
goblin | 0 | 474,665,861 | 100% | ||
taste | 0 | 418,001,370 | 100% | ||
oomph | 0 | 418,001,356 | 100% | ||
s0ur | 0 | 418,011,774 | 100% | ||
grandmaster | 0 | 418,011,652 | 100% | ||
w1se | 0 | 418,001,193 | 100% | ||
tr0ll | 0 | 418,011,621 | 100% | ||
pikacu | 0 | 418,011,417 | 100% | ||
mussolini | 0 | 418,011,388 | 100% | ||
sto | 0 | 418,011,383 | 100% | ||
sir.isaac.newton | 0 | 418,000,921 | 100% | ||
civilization | 0 | 418,000,668 | 100% | ||
grain | 0 | 418,011,087 | 100% | ||
h1p | 0 | 418,011,079 | 100% | ||
oval | 0 | 418,010,820 | 100% | ||
b3rry | 0 | 418,000,366 | 100% | ||
current | 0 | 418,010,795 | 100% | ||
polished | 0 | 418,000,216 | 100% | ||
cleverbot | 0 | 418,010,646 | 100% | ||
hip-hop | 0 | 418,000,196 | 100% | ||
minute | 0 | 418,010,634 | 100% | ||
into | 0 | 418,000,173 | 100% | ||
love-you | 0 | 447,885,716 | 100% | ||
talented | 0 | 418,010,376 | 100% | ||
first-class | 0 | 418,010,360 | 100% | ||
thief | 0 | 418,010,351 | 100% | ||
gifted | 0 | 418,010,333 | 100% | ||
g00gle | 0 | 417,999,887 | 100% | ||
pickle | 0 | 435,947,833 | 100% | ||
wingman | 0 | 474,653,360 | 100% | ||
adm1n | 0 | 417,999,701 | 100% | ||
m0d | 0 | 418,010,142 | 100% | ||
inspector | 0 | 418,010,126 | 100% | ||
v1p | 0 | 418,010,107 | 100% | ||
backer | 0 | 417,996,992 | 100% | ||
casin0 | 0 | 417,996,984 | 100% | ||
cas1no | 0 | 417,986,535 | 100% | ||
cas1n0 | 0 | 417,996,965 | 100% | ||
found | 0 | 417,996,962 | 100% | ||
keygen | 0 | 417,986,507 | 100% | ||
unit | 0 | 417,986,309 | 100% | ||
unite | 0 | 417,986,304 | 100% | ||
division | 0 | 417,986,293 | 100% | ||
factor | 0 | 417,986,040 | 100% | ||
lovebot | 0 | 417,996,475 | 100% | ||
hint | 0 | 417,986,017 | 100% | ||
gam3 | 0 | 417,996,297 | 100% | ||
trojan | 0 | 417,996,266 | 100% | ||
tidy | 0 | 417,985,816 | 100% | ||
w3t | 0 | 417,996,107 | 100% | ||
k1ng | 0 | 417,995,780 | 100% | ||
addicted-to-you | 0 | 417,985,323 | 100% | ||
love-ya | 0 | 417,985,264 | 100% | ||
youre-amazing | 0 | 417,985,161 | 100% | ||
youre-awesome | 0 | 417,985,063 | 100% | ||
soulmate | 0 | 417,985,058 | 100% | ||
roses-are-red | 0 | 417,985,035 | 100% | ||
better-half | 0 | 417,995,336 | 100% | ||
violets-are-blue | 0 | 417,995,327 | 100% | ||
sugar-is-sweet | 0 | 417,984,491 | 100% | ||
week | 0 | 417,994,911 | 100% | ||
year | 0 | 417,984,461 | 100% | ||
c00l | 0 | 417,984,253 | 100% | ||
carjack | 0 | 417,984,238 | 100% | ||
helping | 0 | 417,984,229 | 100% | ||
russ1a | 0 | 417,983,814 | 100% | ||
whip | 0 | 417,983,807 | 100% | ||
priest | 0 | 417,983,795 | 100% | ||
t0p | 0 | 417,994,032 | 100% | ||
textbook | 0 | 417,983,586 | 100% | ||
patient | 0 | 417,993,977 | 100% | ||
sawbones | 0 | 417,982,987 | 100% | ||
simulated | 0 | 417,993,405 | 100% | ||
snickers | 0 | 417,982,958 | 100% | ||
bluff | 0 | 417,982,837 | 100% | ||
wheels | 0 | 417,982,823 | 100% | ||
honestly | 0 | 417,993,030 | 100% | ||
woo-hoo | 0 | 417,982,562 | 100% | ||
whine | 0 | 417,992,989 | 100% | ||
motto | 0 | 417,992,765 | 100% | ||
growl | 0 | 417,992,753 | 100% | ||
sharper | 0 | 417,992,746 | 100% | ||
shampoo | 0 | 417,992,579 | 100% | ||
scrub | 0 | 417,982,134 | 100% | ||
sponge | 0 | 417,982,122 | 100% | ||
shower | 0 | 417,992,164 | 100% | ||
paint | 0 | 417,992,159 | 100% | ||
soak | 0 | 417,981,703 | 100% | ||
tint | 0 | 417,981,554 | 100% | ||
layer | 0 | 417,991,950 | 100% | ||
well-kept | 0 | 417,981,470 | 100% | ||
viruoso | 0 | 417,966,056 | 100% | ||
virtuoso | 0 | 417,976,478 | 100% | ||
versed | 0 | 417,966,034 | 100% | ||
c00kie | 0 | 417,976,375 | 100% | ||
there | 0 | 417,965,843 | 100% | ||
solid | 0 | 417,965,837 | 100% | ||
tops | 0 | 417,976,265 | 100% | ||
j3t | 0 | 417,976,020 | 100% | ||
tinman | 0 | 449,845,930 | 100% | ||
tincan | 0 | 417,965,561 | 100% | ||
gunman | 0 | 417,965,429 | 100% | ||
hitman | 0 | 417,975,864 | 100% | ||
apostle | 0 | 417,965,232 | 100% | ||
gautama | 0 | 417,975,664 | 100% | ||
penman | 0 | 417,965,211 | 100% | ||
lineman | 0 | 417,965,107 | 100% | ||
botman | 0 | 417,975,543 | 100% | ||
clarion | 0 | 417,975,528 | 100% | ||
cement | 0 | 417,975,220 | 100% | ||
horn | 0 | 417,964,770 | 100% | ||
a1m | 0 | 417,975,198 | 100% | ||
kosher | 0 | 417,975,182 | 100% | ||
shitsngiggles | 0 | 417,975,151 | 100% | ||
winspiral | 0 | 417,964,704 | 100% | ||
h1gh | 0 | 417,964,615 | 100% | ||
catbus | 0 | 417,964,593 | 100% | ||
snorlax | 0 | 417,975,029 | 100% | ||
pichu | 0 | 417,964,382 | 100% | ||
mayor | 0 | 417,964,358 | 100% | ||
mayor.west | 0 | 417,964,355 | 100% | ||
familiar | 0 | 417,974,624 | 100% | ||
tilt | 0 | 417,964,168 | 100% | ||
abug | 0 | 417,964,153 | 100% | ||
lesser | 0 | 417,963,980 | 100% | ||
captive | 0 | 417,963,972 | 100% | ||
good-looking | 0 | 417,974,404 | 100% | ||
here | 0 | 417,963,847 | 100% | ||
ideal | 0 | 417,963,827 | 100% | ||
incredible | 0 | 417,963,809 | 100% | ||
lure | 0 | 417,963,578 | 100% | ||
swell | 0 | 417,973,999 | 100% | ||
unselfish | 0 | 417,963,548 | 100% | ||
ducky | 0 | 417,963,541 | 100% | ||
lul | 0 | 417,973,810 | 100% | ||
old-man | 0 | 417,973,782 | 100% | ||
wise-man | 0 | 417,973,775 | 100% | ||
merch | 0 | 417,973,753 | 100% | ||
ranks | 0 | 417,944,286 | 100% | ||
botnetwork | 0 | 417,944,278 | 100% | ||
b0tn3t | 0 | 417,944,257 | 100% | ||
dwarf | 0 | 417,954,613 | 100% | ||
dragonborn | 0 | 417,944,170 | 100% | ||
banhammer | 0 | 417,944,135 | 100% | ||
legolas | 0 | 417,943,960 | 100% | ||
gimli | 0 | 417,943,950 | 100% | ||
bromir | 0 | 417,943,944 | 100% | ||
arwen | 0 | 417,953,960 | 100% | ||
figwit | 0 | 417,943,517 | 100% | ||
helm | 0 | 417,943,498 | 100% | ||
horns | 0 | 417,953,816 | 100% | ||
plate | 0 | 417,943,372 | 100% | ||
megaton | 0 | 417,943,236 | 100% | ||
hobbit | 0 | 417,943,201 | 100% | ||
wohoo | 0 | 417,943,197 | 100% | ||
r2-d2 | 0 | 417,942,721 | 100% | ||
hood | 0 | 417,942,682 | 100% | ||
optimus | 0 | 417,953,083 | 100% | ||
rayman | 0 | 417,952,769 | 100% | ||
worm | 0 | 417,942,322 | 100% | ||
worms | 0 | 417,952,760 | 100% | ||
lara.croft | 0 | 417,942,144 | 100% | ||
boot | 0 | 417,942,064 | 100% | ||
g00gl3 | 0 | 417,941,571 | 100% | ||
oo7 | 0 | 417,941,564 | 100% | ||
snare | 0 | 417,951,946 | 100% | ||
juggle | 0 | 417,941,037 | 100% | ||
qu3st | 0 | 417,951,425 | 100% | ||
incentive | 0 | 417,940,940 | 100% | ||
corrupt | 0 | 417,950,873 | 100% | ||
protection | 0 | 417,940,426 | 100% | ||
snowfall | 0 | 417,950,850 | 100% | ||
groot | 0 | 417,931,675 | 100% | ||
gromit | 0 | 417,931,669 | 100% | ||
walk | 0 | 417,931,662 | 100% | ||
sleet | 0 | 417,941,815 | 100% | ||
vendetta | 0 | 417,941,798 | 100% | ||
star-lord | 0 | 417,941,780 | 100% | ||
the.godfather | 0 | 417,931,187 | 100% | ||
obi-wan | 0 | 417,941,609 | 100% | ||
goodfellas | 0 | 417,931,142 | 100% | ||
nightcrawler | 0 | 417,941,502 | 100% | ||
mockingbird | 0 | 417,931,035 | 100% | ||
y0da | 0 | 417,941,352 | 100% | ||
ghostbusters | 0 | 417,930,732 | 100% | ||
t-800 | 0 | 417,941,161 | 100% | ||
bride | 0 | 417,941,144 | 100% | ||
groom | 0 | 417,930,537 | 100% | ||
aragorn | 0 | 417,940,952 | 100% | ||
pirates | 0 | 417,930,506 | 100% | ||
pac.man | 0 | 417,930,348 | 100% | ||
ahoy | 0 | 417,940,786 | 100% | ||
haunted | 0 | 417,940,779 | 100% | ||
millie | 0 | 417,940,252 | 100% | ||
pippi | 0 | 417,940,236 | 100% | ||
almighty | 0 | 417,940,210 | 100% | ||
snufkin | 0 | 417,929,468 | 100% | ||
little-my | 0 | 417,929,454 | 100% | ||
littlemy | 0 | 417,929,448 | 100% | ||
moomintroll | 0 | 417,929,437 | 100% | ||
moominmamma | 0 | 417,928,996 | 100% | ||
moominpappa | 0 | 417,939,432 | 100% | ||
snork | 0 | 417,939,423 | 100% | ||
starfire | 0 | 417,928,866 | 100% | ||
sylvester | 0 | 417,939,295 | 100% | ||
speedy | 0 | 417,939,282 | 100% | ||
gonzales | 0 | 417,939,019 | 100% | ||
porky | 0 | 417,928,569 | 100% | ||
general.store | 0 | 417,939,004 | 100% | ||
daffy.duck | 0 | 417,938,854 | 100% | ||
k-9 | 0 | 417,938,845 | 100% | ||
dexters | 0 | 417,928,374 | 100% | ||
laboratory | 0 | 417,928,038 | 100% | ||
doubledecker | 0 | 417,938,458 | 100% | ||
cellphone | 0 | 417,938,443 | 100% | ||
rumcake | 0 | 417,938,229 | 100% | ||
pomegranate | 0 | 417,927,779 | 100% | ||
p1e | 0 | 417,927,774 | 100% | ||
fearless | 0 | 417,927,645 | 100% | ||
sprite | 0 | 417,927,632 | 100% | ||
goodyear | 0 | 417,927,604 | 100% | ||
clementine | 0 | 417,927,155 | 100% | ||
garlic | 0 | 417,927,110 | 100% | ||
catnip | 0 | 417,927,068 | 100% | ||
tomato | 0 | 417,927,050 | 100% | ||
peppermint | 0 | 417,927,032 | 100% | ||
spearmint | 0 | 417,937,463 | 100% | ||
oregano | 0 | 417,923,723 | 100% | ||
lemongrass | 0 | 417,923,715 | 100% | ||
poet-tree | 0 | 417,923,666 | 100% | ||
c-3po | 0 | 417,923,189 | 100% | ||
elowen | 0 | 417,923,175 | 100% | ||
wonderer | 0 | 417,922,931 | 100% | ||
cedar | 0 | 417,933,360 | 100% | ||
fortitude | 0 | 417,933,343 | 100% | ||
fairness | 0 | 417,922,767 | 100% | ||
rep | 0 | 417,922,538 | 100% | ||
position | 0 | 417,922,526 | 100% | ||
character | 0 | 417,932,959 | 100% | ||
politeness | 0 | 417,932,497 | 100% | ||
repute | 0 | 417,922,035 | 100% | ||
place | 0 | 417,932,453 | 100% | ||
palace | 0 | 417,922,006 | 100% | ||
chateau | 0 | 417,921,990 | 100% | ||
fort | 0 | 417,932,411 | 100% | ||
bb-8 | 0 | 417,932,197 | 100% | ||
stormtrooper | 0 | 417,921,750 | 100% | ||
stronghold | 0 | 417,932,178 | 100% | ||
hold | 0 | 417,921,725 | 100% | ||
keep | 0 | 417,921,716 | 100% | ||
wall-e | 0 | 417,932,122 | 100% | ||
tik-tok | 0 | 417,921,451 | 100% | ||
wordshop | 0 | 417,921,433 | 100% | ||
astar | 0 | 417,931,861 | 100% | ||
ed-209 | 0 | 417,921,412 | 100% | ||
joyful | 0 | 417,921,353 | 100% | ||
bouncer | 0 | 417,920,433 | 100% | ||
vital | 0 | 417,920,421 | 100% | ||
fitting | 0 | 417,930,851 | 100% | ||
paddle | 0 | 417,920,388 | 100% | ||
propeller | 0 | 417,930,818 | 100% | ||
ballista | 0 | 417,920,375 | 100% | ||
dirtless | 0 | 417,930,722 | 100% | ||
shadowline | 0 | 417,930,709 | 100% | ||
e28 | 0 | 417,920,218 | 100% | ||
e30 | 0 | 417,920,218 | 100% | ||
e34 | 0 | 417,930,391 | 100% | ||
e36 | 0 | 417,930,386 | 100% | ||
e32 | 0 | 417,919,939 | 100% | ||
e39 | 0 | 417,919,934 | 100% | ||
e46 | 0 | 417,919,791 | 100% | ||
e60 | 0 | 417,930,229 | 100% | ||
f-1 | 0 | 417,919,779 | 100% | ||
e61 | 0 | 417,923,704 | 100% | ||
e91 | 0 | 417,923,695 | 100% | ||
e38 | 0 | 417,913,235 | 100% | ||
e92 | 0 | 417,913,228 | 100% | ||
f01 | 0 | 417,913,039 | 100% | ||
f02 | 0 | 417,913,033 | 100% | ||
f03 | 0 | 417,923,468 | 100% | ||
f10 | 0 | 417,923,460 | 100% | ||
f11 | 0 | 417,922,884 | 100% | ||
f12 | 0 | 417,922,878 | 100% | ||
f13 | 0 | 417,922,874 | 100% | ||
f15 | 0 | 417,912,427 | 100% | ||
f16 | 0 | 417,922,605 | 100% | ||
f21 | 0 | 417,912,153 | 100% | ||
f20 | 0 | 417,912,149 | 100% | ||
f22 | 0 | 417,912,147 | 100% | ||
f23 | 0 | 417,911,966 | 100% | ||
f25 | 0 | 417,911,960 | 100% | ||
f30 | 0 | 417,911,957 | 100% | ||
f31 | 0 | 417,922,392 | 100% | ||
e70 | 0 | 417,922,279 | 100% | ||
f33 | 0 | 417,911,826 | 100% | ||
f32 | 0 | 417,922,263 | 100% | ||
f34 | 0 | 417,922,027 | 100% | ||
f35 | 0 | 417,922,004 | 100% | ||
f45 | 0 | 417,921,764 | 100% | ||
f46 | 0 | 417,911,318 | 100% | ||
iroc-z | 0 | 417,911,311 | 100% | ||
e12 | 0 | 417,921,368 | 100% | ||
e23 | 0 | 417,910,918 | 100% | ||
e21 | 0 | 417,910,914 | 100% | ||
e24 | 0 | 417,921,353 | 100% | ||
shiny | 0 | 417,910,512 | 100% | ||
chest | 0 | 417,910,503 | 100% | ||
l00t | 0 | 417,920,730 | 100% | ||
m-tech | 0 | 417,920,720 | 100% | ||
purifying | 0 | 417,920,699 | 100% | ||
captin | 0 | 417,910,068 | 100% |
noganoo !cheetah ban
author | pfunk |
---|---|
permlink | re-tinder-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051408811z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2018-02-26 05:13:39 |
last_update | 2018-02-26 05:13:39 |
depth | 2 |
children | 1 |
last_payout | 2018-03-05 05:13:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.748 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 221,632,045,904,452 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,505,628 |
net_rshares | 488,416,058,377 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfunk | 0 | 487,504,606,330 | 10% | ||
paulhallman | 0 | 911,452,047 | 10% |
Okay, I have banned @tinder.
author | cheetah |
---|---|
permlink | cheetah-re-pfunkre-tinder-re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180226t051408811z |
category | raspberry |
json_metadata | "" |
created | 2018-02-26 05:14:06 |
last_update | 2018-02-26 05:14:06 |
depth | 3 |
children | 0 |
last_payout | 2018-03-05 05:14:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 942,693,160,055,713 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,505,706 |
net_rshares | 0 |
I am getting this error pls help :( : Traceback (most recent call last): File "bot.py", line 1, in module from steem.steem import Steem
author | tomole |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20180228t223914819z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2018-02-28 22:39:15 |
last_update | 2018-02-28 22:39:15 |
depth | 1 |
children | 0 |
last_payout | 2018-03-07 22:39:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 142 |
author_reputation | 5,424,539,072 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 41,233,889 |
net_rshares | 583,964,862 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tomole | 0 | 583,964,862 | 100% |
Nice. :-)
author | xanoxt |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170111t211741255z |
category | raspberry |
json_metadata | {"tags":["raspberry"]} |
created | 2017-01-11 21:17:54 |
last_update | 2017-01-11 21:17:54 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 10,372,528,584,107 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,223,469 |
net_rshares | 0 |
Awesome!!
author | zentat |
---|---|
permlink | re-ubg-how-to-set-up-a-curation-bot-on-raspberry-pi-20170113t173816877z |
category | raspberry |
json_metadata | {"tags":["raspberry"],"app":"steemit/0.1"} |
created | 2017-01-13 17:38:15 |
last_update | 2017-01-13 17:38:15 |
depth | 1 |
children | 0 |
last_payout | 2017-02-12 15:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9 |
author_reputation | 2,980,385,569,111 |
root_title | "How to set up a curation bot on raspberry pi" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,238,081 |
net_rshares | 0 |