From 6443c7f1d80c130a58b11abde55894afb640b439 Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Thu, 8 Jul 2010 11:26:16 +0300 Subject: [PATCH 01/93] Update version to 0.20 --- packaging/debian/changelog | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/packaging/debian/changelog b/packaging/debian/changelog index e95fd1c5..ee15782a 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,9 @@ +free-poker-tools (0.20-1) unstable; urgency=low + + * 0.20 release + + -- Mika Bostrom Thu, 08 Jul 2010 11:25:36 +0300 + free-poker-tools (0.20~git20100630) unstable; urgency=low * Snapshot release diff --git a/setup.py b/setup.py index 46703f06..11ee46dd 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ from distutils.core import setup setup(name = 'fpdb', description = 'Free Poker Database', - version = '0.12', + version = '0.20', author = 'FPDB team', author_email = 'fpdb-main@lists.sourceforge.net', packages = ['fpdb'], From 7ed40cdb5a797c25f445d7069239cb812cbf8301 Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Thu, 8 Jul 2010 11:27:57 +0300 Subject: [PATCH 02/93] File 'THANKS.txt' has been removed from tree --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index 11ee46dd..f5865893 100644 --- a/setup.py +++ b/setup.py @@ -27,8 +27,6 @@ setup(name = 'fpdb', packages = ['fpdb'], package_dir = { 'fpdb' : 'pyfpdb' }, data_files = [ - ('/usr/share/doc/python-fpdb', - ['THANKS.txt']), ('/usr/share/pixmaps', ['gfx/fpdb-icon.png', 'gfx/fpdb-icon2.png', 'gfx/fpdb-cards.png' From 701a30249aa71f518f7997d7a68a7fbf79dcc6fe Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Thu, 8 Jul 2010 21:29:18 +0300 Subject: [PATCH 03/93] Ubuntu/Debian do not have pythonX symlinks --- pyfpdb/HUD_main.pyw | 2 +- pyfpdb/fpdb.pyw | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index e1704d29..e42f0eb2 100755 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python # -*- coding: utf-8 -*- # Copyright 2008-2010, Ray E. Barker diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index debbaefc..c1b215db 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/python # -*- coding: utf-8 -*- #Copyright 2008-2010 Steffen Schaumburg From 2808f71f7e71c5c00add386ebbab31980b023fa9 Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Thu, 8 Jul 2010 21:32:57 +0300 Subject: [PATCH 04/93] Bump changelog and version for new upload --- packaging/debian/changelog | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packaging/debian/changelog b/packaging/debian/changelog index ee15782a..ed531b28 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,10 @@ +free-poker-tools (0.20-2) unstable; urgency=low + + * Fix executable script shebangs: there is no /usr/bin/python2 (nor + /usr/bin/python3) symlink on Debian or Ubuntu + + -- Mika Bostrom Thu, 08 Jul 2010 21:29:40 +0300 + free-poker-tools (0.20-1) unstable; urgency=low * 0.20 release From 73b7729530db1b5f2c5192218b1afe37a1a6a005 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sun, 18 Jul 2010 16:17:40 +0100 Subject: [PATCH 05/93] quit no longer needed now importer cache is being cleared (may need to clear auto import player cache as well?) --- pyfpdb/fpdb.pyw | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 8cd8b129..5c720c80 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -555,15 +555,6 @@ class fpdb: #else: # for other dbs use same connection as holds global lock # self.fdb_lock.fdb.recreate_tables() - # TODO: figure out why this seems to be necessary - dia_restart = gtk.MessageDialog(parent=self.window, flags=0, type=gtk.MESSAGE_WARNING, - buttons=(gtk.BUTTONS_OK), message_format="Restart fpdb") - diastring = "Fpdb now needs to close. Please restart it." - dia_restart.format_secondary_text(diastring) - - dia_restart.run() - dia_restart.destroy() - self.quit(None, None) elif response == gtk.RESPONSE_NO: self.release_global_lock() print 'User cancelled recreating tables' From 2a0fbcca4c790f004c9d28cdaaa1fe03f9a82129 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sun, 18 Jul 2010 16:21:27 +0100 Subject: [PATCH 06/93] clear auto import player cache when re-creating db --- pyfpdb/fpdb.pyw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 5c720c80..9022db8b 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -547,9 +547,9 @@ class fpdb: # self.release_global_lock() # lock_released = True self.db.recreate_tables() - # find any guibulkimport windows and clear player cache: + # find any guibulkimport/guiautoimport windows and clear player cache: for t in self.threads: - if isinstance(t, GuiBulkImport.GuiBulkImport): + if isinstance(t, GuiBulkImport.GuiBulkImport) or isinstance(t, GuiAutoImport.GuiAutoImport): t.importer.database.resetPlayerIDs() self.release_global_lock() #else: From 61fb3df6950275ce32a981549f9e7b416de62ebe Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Mon, 19 Jul 2010 21:36:45 +0100 Subject: [PATCH 07/93] some work on guidatabase and turn it on --- pyfpdb/Configuration.py | 19 ++++- pyfpdb/GuiDatabase.py | 185 ++++++++++++++++++++++++++++++++++------ pyfpdb/fpdb.pyw | 12 ++- pyfpdb/logging.conf | 8 +- 4 files changed, 193 insertions(+), 31 deletions(-) diff --git a/pyfpdb/Configuration.py b/pyfpdb/Configuration.py index b5e3e76f..03858760 100755 --- a/pyfpdb/Configuration.py +++ b/pyfpdb/Configuration.py @@ -357,6 +357,7 @@ class Game: class Database: def __init__(self, node): self.db_name = node.getAttribute("db_name") + self.db_desc = node.getAttribute("db_desc") self.db_server = node.getAttribute("db_server").lower() self.db_ip = node.getAttribute("db_ip") self.db_user = node.getAttribute("db_user") @@ -817,6 +818,9 @@ class Config: try: db['db-databaseName'] = name except: pass + try: db['db-desc'] = self.supported_databases[name].db_desc + except: pass + try: db['db-host'] = self.supported_databases[name].db_ip except: pass @@ -834,20 +838,29 @@ class Config: return db def set_db_parameters(self, db_name = 'fpdb', db_ip = None, db_user = None, - db_pass = None, db_server = None): + db_pass = None, db_desc = None, db_server = None, + default = "False"): db_node = self.get_db_node(db_name) + default = default.lower() + defaultb = string_to_bool(default, False) if db_node != None: + if db_desc is not None: db_node.setAttribute("db_desc", db_desc) if db_ip is not None: db_node.setAttribute("db_ip", db_ip) if db_user is not None: db_node.setAttribute("db_user", db_user) if db_pass is not None: db_node.setAttribute("db_pass", db_pass) if db_server is not None: db_node.setAttribute("db_server", db_server) - if db_type is not None: db_node.setAttribute("db_type", db_type) + if defaultb: db_node.setAttribute("default", default) + elif db_node.hasAttribute("default"): + db_node.removeAttribute("default") if self.supported_databases.has_key(db_name): + if db_desc is not None: self.supported_databases[db_name].dp_desc = db_desc if db_ip is not None: self.supported_databases[db_name].dp_ip = db_ip if db_user is not None: self.supported_databases[db_name].dp_user = db_user if db_pass is not None: self.supported_databases[db_name].dp_pass = db_pass if db_server is not None: self.supported_databases[db_name].dp_server = db_server - if db_type is not None: self.supported_databases[db_name].dp_type = db_type + self.supported_databases[db_name].db_selected = defaultb + if defaultb: + self.db_selected = db_name return def get_backend(self, name): diff --git a/pyfpdb/GuiDatabase.py b/pyfpdb/GuiDatabase.py index 418910cf..a808c7df 100755 --- a/pyfpdb/GuiDatabase.py +++ b/pyfpdb/GuiDatabase.py @@ -33,17 +33,32 @@ log = logging.getLogger("maintdbs") import Exceptions import Database +import SQL class GuiDatabase: + # columns in liststore: + MODEL_DBMS = 0 + MODEL_NAME = 1 + MODEL_DESC = 2 + MODEL_USER = 3 + MODEL_PASS = 4 + MODEL_HOST = 5 + MODEL_DFLT = 6 + MODEL_DFLTIC = 7 + MODEL_STATUS = 8 + MODEL_STATIC = 9 + + # columns in listview: COL_DBMS = 0 COL_NAME = 1 COL_DESC = 2 COL_USER = 3 COL_PASS = 4 COL_HOST = 5 - COL_ICON = 6 + COL_DFLT = 6 + COL_ICON = 7 def __init__(self, config, mainwin, dia): self.config = config @@ -56,9 +71,9 @@ class GuiDatabase: #gtk.Widget.set_size_request(self.vbox, 700, 400); # list of databases in self.config.supported_databases: - self.liststore = gtk.ListStore(str, str, str, str - ,str, str, str, str) #object, gtk.gdk.Pixbuf) - # dbms, name, comment, user, pass, ip, status(, icon?) + self.liststore = gtk.ListStore(str, str, str, str, str + ,str, str, str, str, str) + # dbms, name, comment, user, passwd, host, "", default_icon, status, icon # this is how to add a filter: # # # Creation of the filter, from the model @@ -70,11 +85,12 @@ class GuiDatabase: self.listview = gtk.TreeView(model=self.liststore) self.listview.set_grid_lines(gtk.TREE_VIEW_GRID_LINES_NONE) self.listcols = [] + self.changes = False - scrolledwindow = gtk.ScrolledWindow() - scrolledwindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) - scrolledwindow.add(self.listview) - self.vbox.pack_start(scrolledwindow, expand=True, fill=True, padding=0) + self.scrolledwindow = gtk.ScrolledWindow() + self.scrolledwindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) + self.scrolledwindow.add(self.listview) + self.vbox.pack_start(self.scrolledwindow, expand=True, fill=True, padding=0) refreshbutton = gtk.Button("Refresh") refreshbutton.connect("clicked", self.refresh, None) @@ -87,18 +103,28 @@ class GuiDatabase: col = self.addTextColumn("Username", 3, True) col = self.addTextColumn("Password", 4, True) col = self.addTextColumn("Host", 5, True) - col = self.addTextObjColumn("", 6) + col = self.addTextObjColumn("Default", 6, 6) + col = self.addTextObjColumn("Status", 7, 8) + + #self.listview.get_selection().set_mode(gtk.SELECTION_SINGLE) + #self.listview.get_selection().connect("changed", self.on_selection_changed) + self.listview.add_events(gtk.gdk.BUTTON_PRESS_MASK) + self.listview.connect('button_press_event', self.selectTest) self.loadDbs() - self.dia.connect('response', self.dialog_response_cb) + #self.dia.connect('response', self.dialog_response_cb) except: err = traceback.extract_tb(sys.exc_info()[2])[-1] print 'guidbmaint: '+ err[2] + "(" + str(err[1]) + "): " + str(sys.exc_info()[1]) def dialog_response_cb(self, dialog, response_id): # this is called whether close button is pressed or window is closed + log.info('dialog_response_cb: response_id='+str(response_id)) + #if self.changes: + # self.config.save() dialog.destroy() + return(response_id) def get_dialog(self): @@ -125,6 +151,7 @@ class GuiDatabase: def edited_cb(self, cell, path, new_text, user_data): liststore, col = user_data + log.info('edited_cb: col = '+str(col)) valid = True name = self.liststore[path][self.COL_NAME] @@ -138,10 +165,11 @@ class GuiDatabase: self.config.set_db_parameters( db_server = self.liststore[path][self.COL_DBMS] , db_name = name + , db_desc = self.liststore[path][self.COL_DESC] , db_ip = self.liststore[path][self.COL_HOST] , db_user = self.liststore[path][self.COL_USER] , db_pass = self.liststore[path][self.COL_PASS] ) - + self.changes = True return def check_new_name(self, path, new_text): @@ -152,38 +180,73 @@ class GuiDatabase: #TODO: popup an error message telling user names must be unique return name_ok - def addTextObjColumn(self, title, n): + def addTextObjColumn(self, title, viewcol, storecol, editable=False): col = gtk.TreeViewColumn(title) self.listview.append_column(col) cRenderT = gtk.CellRendererText() cRenderT.set_property("wrap-mode", pango.WRAP_WORD_CHAR) col.pack_start(cRenderT, False) - col.add_attribute(cRenderT, 'text', n) + col.add_attribute(cRenderT, 'text', storecol) cRenderP = gtk.CellRendererPixbuf() - col.pack_start(cRenderP, False) - col.add_attribute(cRenderP, 'stock-id', n+1) + col.pack_start(cRenderP, True) + col.add_attribute(cRenderP, 'stock-id', storecol+1) col.set_max_width(1000) col.set_spacing(0) # no effect self.listcols.append(col) - #col.set_clickable(True) - #col.connect("clicked", self.sortCols, p) + + col.set_clickable(True) + col.connect("clicked", self.sortCols, viewcol) return(col) + def selectTest(self, widget, event): + if event.button == 1: # and event.type == gtk.gdk._2BUTTON_PRESS: + pthinfo = self.listview.get_path_at_pos( int(event.x), int(event.y) ) + if pthinfo is not None: + path, col, cellx, celly = pthinfo + row = path[0] + if col == self.listcols[self.COL_DFLT]: + if self.liststore[row][self.MODEL_STATUS] == 'ok' and self.liststore[row][self.MODEL_DFLTIC] is None: + self.setDefaultDB(row) + + def setDefaultDB(self, row): + print "set new defaultdb:", row, self.liststore[row][self.MODEL_NAME] + for r in xrange(len(self.liststore)): + if r == row: + self.liststore[r][self.MODEL_DFLTIC] = gtk.STOCK_APPLY + default = "True" + else: + self.liststore[r][self.MODEL_DFLTIC] = None + default = "False" + + self.config.set_db_parameters( db_server = self.liststore[r][self.COL_DBMS] + , db_name = self.liststore[r][self.COL_NAME] + , db_desc = self.liststore[r][self.COL_DESC] + , db_ip = self.liststore[r][self.COL_HOST] + , db_user = self.liststore[r][self.COL_USER] + , db_pass = self.liststore[r][self.COL_PASS] + , default = default + ) + self.changes = True + return + + def loadDbs(self): self.liststore.clear() - self.listcols = [] - self.dbs = [] # list of tuples: (dbms, name, comment, user, passwd, host, status, icon) + #self.listcols = [] + dia = self.info_box2(None, 'Testing database connections ... ', "", False, False) + while gtk.events_pending(): + gtk.mainiteration() try: - # want to fill: dbms, name, comment, user, passwd, host, status(, icon?) + # want to fill: dbms, name, comment, user, passwd, host, default, status, icon for name in self.config.supported_databases: #db_ip/db_user/db_pass/db_server dbms = self.config.supported_databases[name].db_server # mysql/postgresql/sqlite dbms_num = self.config.get_backend(dbms) # 2 / 3 / 4 - comment = "" + comment = self.config.supported_databases[name].db_desc if dbms == 'sqlite': user = "" passwd = "" @@ -191,22 +254,30 @@ class GuiDatabase: user = self.config.supported_databases[name].db_user passwd = self.config.supported_databases[name].db_pass host = self.config.supported_databases[name].db_ip + default = (name == self.config.db_selected) + default_icon = None + if default: default_icon = gtk.STOCK_APPLY status = "" icon = None err_msg = "" - db = Database.Database(self.config, sql = None, autoconnect = False) + sql = SQL.Sql(db_server=dbms) + db = Database.Database(self.config, sql = sql, autoconnect = False) # try to connect to db, set status and err_msg if it fails try: # is creating empty db for sqlite ... mod db.py further? # add noDbTables flag to db.py? + log.debug("loaddbs: trying to connect to: %s/%s, %s, %s/%s" % (str(dbms_num),dbms,name,user,passwd)) db.connect(backend=dbms_num, host=host, database=name, user=user, password=passwd, create=False) if db.connected: + log.debug(" connected ok") status = 'ok' icon = gtk.STOCK_APPLY if db.wrongDbVersion: status = 'old' icon = gtk.STOCK_INFO + else: + log.debug(" not connected but no exception") except Exceptions.FpdbMySQLAccessDenied: err_msg = "MySQL Server reports: Access denied. Are your permissions set correctly?" status = "failed" @@ -230,13 +301,17 @@ class GuiDatabase: + err[2] + "(" + str(err[1]) + "): " + str(sys.exc_info()[1]) ) status = "failed" icon = gtk.STOCK_CANCEL + if err_msg: + log.info( 'db connection to '+str(dbms_num)+','+host+','+name+','+user+','+passwd+' failed: ' + + err_msg ) b = gtk.Button(name) b.show() - iter = self.liststore.append( (dbms, name, comment, user, passwd, host, status, icon) ) + iter = self.liststore.append( (dbms, name, comment, user, passwd, host, "", default_icon, status, icon) ) + self.info_box2(dia[0], "finished.", "", False, True) self.listview.show() - scrolledwindow.show() + self.scrolledwindow.show() self.vbox.show() self.dia.set_focus(self.listview) @@ -249,13 +324,16 @@ class GuiDatabase: def sortCols(self, col, n): try: + log.info('sortcols n='+str(n)) if not col.get_sort_indicator() or col.get_sort_order() == gtk.SORT_ASCENDING: col.set_sort_order(gtk.SORT_DESCENDING) else: col.set_sort_order(gtk.SORT_ASCENDING) self.liststore.set_sort_column_id(n, col.get_sort_order()) #self.liststore.set_sort_func(n, self.sortnums, (n,grid)) + log.info('sortcols len(listcols)='+str(len(self.listcols))) for i in xrange(len(self.listcols)): + log.info('sortcols i='+str(i)) self.listcols[i].set_sort_indicator(False) self.listcols[n].set_sort_indicator(True) # use this listcols[col].set_sort_indicator(True) @@ -264,10 +342,69 @@ class GuiDatabase: err = traceback.extract_tb(sys.exc_info()[2]) print "***sortCols error: " + str(sys.exc_info()[1]) print "\n".join( [e[0]+':'+str(e[1])+" "+e[2] for e in err] ) + log.info('sortCols error: ' + str(sys.exc_info()) ) def refresh(self, widget, data): self.loadDbs() + def info_box(self, dia, str1, str2, run, destroy): + if dia is None: + #if run: + btns = gtk.BUTTONS_NONE + btns = gtk.BUTTONS_OK + dia = gtk.MessageDialog( parent=self.main_window, flags=gtk.DIALOG_DESTROY_WITH_PARENT + , type=gtk.MESSAGE_INFO, buttons=(btns), message_format=str1 ) + # try to remove buttons! + # (main message is in inverse video if no buttons, so try removing them after + # creating dialog) + # NO! message just goes back to inverse video :-( use info_box2 instead + for c in dia.vbox.get_children(): + if isinstance(c, gtk.HButtonBox): + for d in c.get_children(): + log.info('child: '+str(d)+' is a '+str(d.__class__)) + if isinstance(d, gtk.Button): + log.info('removing button '+str(d)) + c.remove(d) + if str2: + dia.format_secondary_text(str2) + else: + dia.set_markup(str1) + if str2: + dia.format_secondary_text(str2) + dia.show() + response = None + if run: response = dia.run() + if destroy: dia.destroy() + return (dia, response) + + def info_box2(self, dia, str1, str2, run, destroy): + if dia is None: + # create dialog and add icon and label + btns = (gtk.BUTTONS_OK) + btns = None + # messagedialog puts text in inverse colors if no buttons are displayed?? + #dia = gtk.MessageDialog( parent=self.main_window, flags=gtk.DIALOG_DESTROY_WITH_PARENT + # , type=gtk.MESSAGE_INFO, buttons=(btns), message_format=str1 ) + dia = gtk.Dialog( parent=self.main_window, flags=gtk.DIALOG_DESTROY_WITH_PARENT + , title="" ) # , buttons=btns + vbox = dia.vbox + + h = gtk.HBox(False, 2) + i = gtk.Image() + i.set_from_stock(gtk.STOCK_DIALOG_INFO, gtk.ICON_SIZE_DIALOG) + l = gtk.Label(str1) + h.pack_start(i, padding=5) + h.pack_start(l, padding=5) + vbox.pack_start(h) + else: + # add extra label + vbox = dia.vbox + vbox.pack_start( gtk.Label(str1) ) + dia.show_all() + response = None + if run: response = dia.run() + if destroy: dia.destroy() + return (dia, response) if __name__=="__main__": diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 9022db8b..af438304 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -306,8 +306,8 @@ class fpdb: dia.destroy() def dia_maintain_dbs(self, widget, data=None): - self.warning_box("Unimplemented: Maintain Databases") - return + #self.warning_box("Unimplemented: Maintain Databases") + #return if len(self.tab_names) == 1: if self.obtain_global_lock("dia_maintain_dbs"): # returns true if successful # only main tab has been opened, open dialog @@ -321,8 +321,14 @@ class fpdb: prefs = GuiDatabase.GuiDatabase(self.config, self.window, dia) response = dia.run() if response == gtk.RESPONSE_ACCEPT: + log.info('saving updated db data') # save updated config self.config.save() + self.load_profile() + for name in self.config.supported_databases: #db_ip/db_user/db_pass/db_server + log.info('fpdb: name,desc='+name+','+self.config.supported_databases[name].db_desc) + else: + log.info('guidb response was '+str(response)) self.release_global_lock() @@ -835,7 +841,7 @@ class fpdb: ('sessionstats', None, 'Session Stats', None, 'Session Stats', self.tab_session_stats), ('tableviewer', None, 'Poker_table Viewer (mostly obselete)', None, 'Poker_table Viewer (mostly obselete)', self.tab_table_viewer), ('database', None, '_Database'), - ('maintaindbs', None, '_Maintain Databases (todo)', None, 'Maintain Databases', self.dia_maintain_dbs), + ('maintaindbs', None, '_Maintain Databases', None, 'Maintain Databases', self.dia_maintain_dbs), ('createtabs', None, 'Create or Recreate _Tables', None, 'Create or Recreate Tables ', self.dia_recreate_tables), ('rebuildhudcache', None, 'Rebuild HUD Cache', None, 'Rebuild HUD Cache', self.dia_recreate_hudcache), ('rebuildindexes', None, 'Rebuild DB Indexes', None, 'Rebuild DB Indexes', self.dia_rebuild_indexes), diff --git a/pyfpdb/logging.conf b/pyfpdb/logging.conf index ecd74fcc..57a74008 100644 --- a/pyfpdb/logging.conf +++ b/pyfpdb/logging.conf @@ -1,5 +1,5 @@ [loggers] -keys=root,fpdb,logview,parser,importer,config,db,hud,filter +keys=root,fpdb,logview,parser,importer,config,db,hud,filter,maintdbs [handlers] keys=consoleHandler,rotatingFileHandler @@ -17,6 +17,12 @@ handlers=consoleHandler,rotatingFileHandler qualname=fpdb propagate=0 +[logger_maintdbs] +level=INFO +handlers=consoleHandler,rotatingFileHandler +qualname=maintdbs +propagate=0 + [logger_logview] level=INFO handlers=consoleHandler,rotatingFileHandler From 19d400c0b16f8c7b04866c0242f3925273906c50 Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Thu, 22 Jul 2010 08:48:05 +0300 Subject: [PATCH 08/93] Update changelog, release version --- packaging/debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packaging/debian/changelog b/packaging/debian/changelog index ee15782a..a514f898 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,9 @@ +free-poker-tools (0.20.1-1) unstable; urgency=low + + * 0.20.1 release + + -- Mika Bostrom Thu, 22 Jul 2010 08:47:39 +0300 + free-poker-tools (0.20-1) unstable; urgency=low * 0.20 release From 7063bc8905ee165978802bb79b46bea967596f51 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 22 Jul 2010 20:23:27 +0200 Subject: [PATCH 09/93] TOURNEY: stop it from creating new TT for each tourney --- pyfpdb/Database.py | 11 ++++++----- pyfpdb/SQL.py | 3 --- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 0337c3f1..685487bc 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1983,19 +1983,20 @@ class Database: (hand.tourNo, hand.siteId) ) result=cursor.fetchone() - print "result of fetching TT by number and site:",result + #print "result of fetching TT by number and site:",result if result: tourneyTypeId = result[0] else: # Check for an existing TTypeId that matches tourney info, if not found create it - print "info that we use to get TT by detail:", hand.siteId, hand.buyinCurrency, hand.buyin, hand.fee, hand.gametype['category'], hand.gametype['limitType'], hand.buyInChips, hand.isKO, hand.isRebuy, hand.isAddOn, hand.speed, hand.isShootout, hand.isMatrix, hand.added, hand.addedCurrency + #print "info that we use to get TT by detail:", hand.siteId, hand.buyinCurrency, hand.buyin, hand.fee, hand.gametype['category'], hand.gametype['limitType'], hand.isKO, hand.isRebuy, hand.isAddOn, hand.speed, hand.isShootout, hand.isMatrix + #print "the query:",self.sql.query['getTourneyTypeId'].replace('%s', self.sql.query['placeholder']) cursor.execute (self.sql.query['getTourneyTypeId'].replace('%s', self.sql.query['placeholder']), - (hand.siteId, hand.buyinCurrency, hand.buyin, hand.fee, hand.gametype['category'], hand.gametype['limitType'], hand.buyInChips, hand.isKO, - hand.isRebuy, hand.isAddOn, hand.speed, hand.isShootout, hand.isMatrix, hand.added, hand.addedCurrency) + (hand.siteId, hand.buyinCurrency, hand.buyin, hand.fee, hand.gametype['category'], hand.gametype['limitType'], hand.isKO, + hand.isRebuy, hand.isAddOn, hand.speed, hand.isShootout, hand.isMatrix) ) result=cursor.fetchone() - print "result of fetching TT by details:",result + #print "result of fetching TT by details:",result try: tourneyTypeId = result[0] diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index b0105da7..ad2b7df0 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -3692,15 +3692,12 @@ class Sql: AND fee=%s AND category=%s AND limitType=%s - AND buyInChips=%s AND knockout=%s AND rebuy=%s AND addOn=%s AND speed=%s AND shootout=%s AND matrix=%s - AND added=%s - AND addedCurrency=%s """ self.query['insertTourneyType'] = """INSERT INTO TourneyTypes From ad28168d02d20033d7ed00b99b5b52864e94c49d Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 22 Jul 2010 21:03:01 +0200 Subject: [PATCH 10/93] DB/TOUR: remove HandsPlayers.tourneyTypeId --- pyfpdb/Database.py | 5 +---- pyfpdb/DerivedStats.py | 2 -- pyfpdb/SQL.py | 24 +++++++++++++----------- 3 files changed, 14 insertions(+), 17 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 685487bc..c0115bd9 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -74,7 +74,7 @@ except ImportError: use_numpy = False -DB_VERSION = 136 +DB_VERSION = 137 # Variance created as sqlite has a bunch of undefined aggregate functions. @@ -147,7 +147,6 @@ class Database: {'tab':'Hands', 'col':'gametypeId', 'drop':0} , {'tab':'HandsPlayers', 'col':'handId', 'drop':0} , {'tab':'HandsPlayers', 'col':'playerId', 'drop':0} - , {'tab':'HandsPlayers', 'col':'tourneyTypeId', 'drop':0} , {'tab':'HandsPlayers', 'col':'tourneysPlayersId', 'drop':0} , {'tab':'HudCache', 'col':'gametypeId', 'drop':1} , {'tab':'HudCache', 'col':'playerId', 'drop':0} @@ -168,7 +167,6 @@ class Database: {'fktab':'Hands', 'fkcol':'gametypeId', 'rtab':'Gametypes', 'rcol':'id', 'drop':1} , {'fktab':'HandsPlayers', 'fkcol':'handId', 'rtab':'Hands', 'rcol':'id', 'drop':1} , {'fktab':'HandsPlayers', 'fkcol':'playerId', 'rtab':'Players', 'rcol':'id', 'drop':1} - , {'fktab':'HandsPlayers', 'fkcol':'tourneyTypeId', 'rtab':'TourneyTypes', 'rcol':'id', 'drop':1} , {'fktab':'HandsPlayers', 'fkcol':'tourneysPlayersId','rtab':'TourneysPlayers','rcol':'id', 'drop':1} , {'fktab':'HandsActions', 'fkcol':'handsPlayerId', 'rtab':'HandsPlayers', 'rcol':'id', 'drop':1} , {'fktab':'HudCache', 'fkcol':'gametypeId', 'rtab':'Gametypes', 'rcol':'id', 'drop':1} @@ -1641,7 +1639,6 @@ class Database: pdata[p]['street3Bets'], pdata[p]['street4Bets'], pdata[p]['position'], - pdata[p]['tourneyTypeId'], pdata[p]['tourneysPlayersIds'], pdata[p]['startCards'], pdata[p]['street0_3BChance'], diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 7aab6c98..f0f1f834 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -59,7 +59,6 @@ class DerivedStats(): self.handsplayers[player[1]]['foldSbToStealChance'] = False self.handsplayers[player[1]]['foldedSbToSteal'] = False self.handsplayers[player[1]]['foldedBbToSteal'] = False - self.handsplayers[player[1]]['tourneyTypeId'] = None for i in range(5): self.handsplayers[player[1]]['street%dCalls' % i] = 0 @@ -143,7 +142,6 @@ class DerivedStats(): self.handsplayers[player[1]]['startCash'] = int(100 * Decimal(player[2])) self.handsplayers[player[1]]['sitout'] = False #TODO: implement actual sitout detection if hand.gametype["type"]=="tour": - self.handsplayers[player[1]]['tourneyTypeId']=hand.tourneyTypeId self.handsplayers[player[1]]['tourneysPlayersIds'] = hand.tourneysPlayersIds[player[1]] else: self.handsplayers[player[1]]['tourneysPlayersIds'] = None diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index ad2b7df0..041ae981 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -560,7 +560,6 @@ class Sql: comment text, commentTs DATETIME, tourneysPlayersId BIGINT UNSIGNED, FOREIGN KEY (tourneysPlayersId) REFERENCES TourneysPlayers(id), - tourneyTypeId SMALLINT UNSIGNED, FOREIGN KEY (tourneyTypeId) REFERENCES TourneyTypes(id), wonWhenSeenStreet1 FLOAT, wonWhenSeenStreet2 FLOAT, @@ -677,7 +676,6 @@ class Sql: comment text, commentTs timestamp without time zone, tourneysPlayersId BIGINT, FOREIGN KEY (tourneysPlayersId) REFERENCES TourneysPlayers(id), - tourneyTypeId INT, FOREIGN KEY (tourneyTypeId) REFERENCES TourneyTypes(id), wonWhenSeenStreet1 FLOAT, wonWhenSeenStreet2 FLOAT, @@ -793,7 +791,6 @@ class Sql: comment TEXT, commentTs REAL, tourneysPlayersId INT, - tourneyTypeId INT, wonWhenSeenStreet1 REAL, wonWhenSeenStreet2 REAL, @@ -2989,7 +2986,7 @@ class Sql: when hp.position = '9' then 'E' else 'E' end AS hc_position - ,hp.tourneyTypeId + ,t.tourneyTypeId ,date_format(h.startTime, 'd%y%m%d') ,count(1) ,sum(wonWhenSeenStreet1) @@ -3063,12 +3060,14 @@ class Sql: ,sum(hp.street4Raises) FROM HandsPlayers hp INNER JOIN Hands h ON (h.id = hp.handId) + INNER JOIN TourneysPlayers tp ON (tp.id = hp.tourneysPlayersId) + INNER JOIN Tourneys t ON (t.id = tp.tourneyId) GROUP BY h.gametypeId ,hp.playerId ,h.seats ,hc_position - ,hp.tourneyTypeId + ,t.tourneyTypeId ,date_format(h.startTime, 'd%y%m%d') """ elif db_server == 'postgresql': @@ -3168,7 +3167,7 @@ class Sql: when hp.position = '9' then 'E' else 'E' end AS hc_position - ,hp.tourneyTypeId + ,t.tourneyTypeId ,'d' || to_char(h.startTime, 'YYMMDD') ,count(1) ,sum(wonWhenSeenStreet1) @@ -3242,12 +3241,14 @@ class Sql: ,sum(CAST(hp.street4Raises as integer)) FROM HandsPlayers hp INNER JOIN Hands h ON (h.id = hp.handId) + INNER JOIN TourneysPlayers tp ON (tp.id = hp.tourneysPlayersId) + INNER JOIN Tourneys t ON (t.id = tp.tourneyId) GROUP BY h.gametypeId ,hp.playerId ,h.seats ,hc_position - ,hp.tourneyTypeId + ,t.tourneyTypeId ,to_char(h.startTime, 'YYMMDD') """ else: # assume sqlite @@ -3347,7 +3348,7 @@ class Sql: when hp.position = '9' then 'E' else 'E' end AS hc_position - ,hp.tourneyTypeId + ,t.tourneyTypeId ,'d' || substr(strftime('%Y%m%d', h.startTime),3,7) ,count(1) ,sum(wonWhenSeenStreet1) @@ -3421,12 +3422,14 @@ class Sql: ,sum(CAST(hp.street4Raises as integer)) FROM HandsPlayers hp INNER JOIN Hands h ON (h.id = hp.handId) + INNER JOIN TourneysPlayers tp ON (tp.id = hp.tourneysPlayersId) + INNER JOIN Tourneys t ON (t.id = tp.tourneyId) GROUP BY h.gametypeId ,hp.playerId ,h.seats ,hc_position - ,hp.tourneyTypeId + ,t.tourneyTypeId ,'d' || substr(strftime('%Y%m%d', h.startTime),3,7) """ @@ -3858,7 +3861,6 @@ class Sql: street3Bets, street4Bets, position, - tourneyTypeId, tourneysPlayersId, startCards, street0_3BChance, @@ -3917,7 +3919,7 @@ class Sql: %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, - %s, %s + %s )""" ################################ From 61034680fea34862a2064646427cfcc05d08e3bf Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 22 Jul 2010 21:18:20 +0200 Subject: [PATCH 11/93] GUI: indicate that TPS is only for mysql right now --- pyfpdb/fpdb.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 098090b1..7e30870a 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -836,7 +836,7 @@ class fpdb: ('hudConfigurator', None, '_HUD Configurator', 'H', 'HUD Configurator', self.diaHudConfigurator), ('graphs', None, '_Graphs', 'G', 'Graphs', self.tabGraphViewer), ('ringplayerstats', None, 'Ring _Player Stats (tabulated view)', 'P', 'Ring Player Stats (tabulated view)', self.tab_ring_player_stats), - ('tourneyplayerstats', None, '_Tourney Player Stats (tabulated view)', 'T', 'Tourney Player Stats (tabulated view)', self.tab_tourney_player_stats), + ('tourneyplayerstats', None, '_Tourney Player Stats (tabulated view, mysql only)', 'T', 'Tourney Player Stats (tabulated view, mysql only)', self.tab_tourney_player_stats), ('posnstats', None, 'P_ositional Stats (tabulated view)', 'O', 'Positional Stats (tabulated view)', self.tab_positional_stats), ('sessionstats', None, 'Session Stats', None, 'Session Stats', self.tab_session_stats), ('tableviewer', None, 'Poker_table Viewer (mostly obselete)', None, 'Poker_table Viewer (mostly obselete)', self.tab_table_viewer), From 4eefd15175d54e81a57408345ec7dc5bb73c19a9 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 22 Jul 2010 21:18:55 +0200 Subject: [PATCH 12/93] GUI: update version for snapshot --- pyfpdb/fpdb.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 7e30870a..a51ef932 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -117,7 +117,7 @@ import Configuration import Exceptions import Stats -VERSION = "0.20.1 plus git" +VERSION = "0.20.901" class fpdb: From 9eba555fe560dbd68935852e886ce27b8e311cf2 Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Thu, 22 Jul 2010 23:33:34 +0300 Subject: [PATCH 13/93] Update changelog and version for snapshot --- packaging/debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packaging/debian/changelog b/packaging/debian/changelog index ca10f44a..acf61306 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,9 @@ +free-poker-tools (0.20.901-1) unstable; urgency=low + + * Snapshot release before oncoming 0.21 + + -- Mika Bostrom Thu, 22 Jul 2010 23:32:47 +0300 + free-poker-tools (0.20.1-1) unstable; urgency=low * 0.20.1 release From 3759af49023b1b956bb2273b1a0a55ff088acc01 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 22 Jul 2010 22:59:53 +0200 Subject: [PATCH 14/93] GUI: update version indicator to include "plus git" again --- pyfpdb/fpdb.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index a51ef932..67262ba7 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -117,7 +117,7 @@ import Configuration import Exceptions import Stats -VERSION = "0.20.901" +VERSION = "0.20.901 plus git" class fpdb: From dfca6312807714402b30efebcf5c11600fb884b3 Mon Sep 17 00:00:00 2001 From: gimick Date: Thu, 22 Jul 2010 22:21:46 +0100 Subject: [PATCH 15/93] py2exe script update --- pyfpdb/py2exe_setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/py2exe_setup.py b/pyfpdb/py2exe_setup.py index ac136cff..cf3084af 100644 --- a/pyfpdb/py2exe_setup.py +++ b/pyfpdb/py2exe_setup.py @@ -133,7 +133,7 @@ test_and_remove(dist_dir) setup( name = 'fpdb', description = 'Free Poker DataBase', - version = '0.20', + version = '0.20.901', windows = [ {'script': 'fpdb.pyw', "icon_resources": [(1, "../gfx/fpdb_large_icon.ico")]}, {'script': 'HUD_main.pyw', }, @@ -158,7 +158,7 @@ setup( # files in 2nd value in tuple are moved to dir named in 1st value #data_files updated for new locations of licences + readme nolonger exists - data_files = [('', ['HUD_config.xml.example', 'Cards01.png', 'logging.conf', '../agpl-3.0.txt', '../fdl-1.2.txt', '../THANKS.txt', '../readme.txt']) + data_files = [('', ['HUD_config.xml.example', 'Cards01.png', 'logging.conf', '../agpl-3.0.txt', '../fdl-1.2.txt', '../gpl-3.0.txt', '../gpl-2.0.txt', '../readme.txt']) ,(dist_dir, [r'..\run_fpdb.bat']) ,( dist_dir + r'\gfx', glob.glob(r'..\gfx\*.*') ) # line below has problem with fonts subdir ('not a regular file') From de8b9e89c54ba02f5ab0a1bbb37941d3761a4d1e Mon Sep 17 00:00:00 2001 From: steffen123 Date: Fri, 23 Jul 2010 02:07:49 +0200 Subject: [PATCH 16/93] FTP: fix import --- pyfpdb/FulltiltToFpdb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index 290f2f42..93b6fe00 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -203,9 +203,9 @@ class Fulltilt(HandHistoryConverter): hand.tablename = m.group('TABLE') try: - hand.starttime = datetime.datetime.strptime(m.group('DATETIME'), "%H:%M:%S ET - %Y/%m/%d") + hand.startTime = datetime.datetime.strptime(m.group('DATETIME'), "%H:%M:%S ET - %Y/%m/%d") except: - hand.starttime = datetime.datetime.strptime(m.group('DATETIME'), "%H:%M ET - %a, %B %d, %Y") + hand.startTime = datetime.datetime.strptime(m.group('DATETIME'), "%H:%M ET - %a, %B %d, %Y") hand.startTime = HandHistoryConverter.changeTimezone(hand.startTime, "ET", "UTC") From a2243c854202cd117a491f937f445780df3607fd Mon Sep 17 00:00:00 2001 From: steffen123 Date: Fri, 23 Jul 2010 03:55:45 +0200 Subject: [PATCH 17/93] EVERLEAF: remove comment about converting to ET - we do not want to do that! --- pyfpdb/EverleafToFpdb.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pyfpdb/EverleafToFpdb.py b/pyfpdb/EverleafToFpdb.py index b16980ed..32b22a93 100755 --- a/pyfpdb/EverleafToFpdb.py +++ b/pyfpdb/EverleafToFpdb.py @@ -152,7 +152,6 @@ or None if we fail to get the info """ # or : 2008/11/07 12:38:49 ET # Not getting it in my HH files yet, so using # 2008/11/10 3:58:52 ET - #TODO: Do conversion from GMT to ET #TODO: Need some date functions to convert to different timezones (Date::Manip for perl rocked for this) hand.startTime = datetime.datetime.strptime(m.group('DATETIME'), "%Y/%m/%d - %H:%M:%S") return From 7f25cf6da89ebe3f007b8a132574673dda303c1c Mon Sep 17 00:00:00 2001 From: steffen123 Date: Fri, 23 Jul 2010 04:00:25 +0200 Subject: [PATCH 18/93] DB: allow NULL for TT.currency/buyin/fee for when this info is not available --- pyfpdb/Database.py | 2 +- pyfpdb/SQL.py | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index c0115bd9..028097dd 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -74,7 +74,7 @@ except ImportError: use_numpy = False -DB_VERSION = 137 +DB_VERSION = 138 # Variance created as sqlite has a bunch of undefined aggregate functions. diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 041ae981..4a0bde21 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -392,9 +392,9 @@ class Sql: self.query['createTourneyTypesTable'] = """CREATE TABLE TourneyTypes ( id SMALLINT UNSIGNED AUTO_INCREMENT NOT NULL, PRIMARY KEY (id), siteId SMALLINT UNSIGNED NOT NULL, FOREIGN KEY (siteId) REFERENCES Sites(id), - currency varchar(4) NOT NULL, - buyIn INT NOT NULL, - fee INT NOT NULL, + currency varchar(4), + buyIn INT, + fee INT, category varchar(9) NOT NULL, limitType char(2) NOT NULL, buyInChips INT, @@ -423,9 +423,9 @@ class Sql: self.query['createTourneyTypesTable'] = """CREATE TABLE TourneyTypes ( id SERIAL, PRIMARY KEY (id), siteId INT NOT NULL, FOREIGN KEY (siteId) REFERENCES Sites(id), - currency varchar(4) NOT NULL, - buyin INT NOT NULL, - fee INT NOT NULL, + currency varchar(4), + buyin INT, + fee INT, category varchar(9), limitType char(2), buyInChips INT, @@ -453,9 +453,9 @@ class Sql: self.query['createTourneyTypesTable'] = """CREATE TABLE TourneyTypes ( id INTEGER PRIMARY KEY, siteId INT NOT NULL, - currency VARCHAR(4) NOT NULL, - buyin INT NOT NULL, - fee INT NOT NULL, + currency VARCHAR(4), + buyin INT, + fee INT, category TEXT, limitType TEXT, buyInChips INT, From 1f933563ee05422f3e42eaae67c65acda2fee532 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Fri, 23 Jul 2010 04:03:35 +0200 Subject: [PATCH 19/93] EVERLEAF: add comment where to get tourney info --- pyfpdb/EverleafToFpdb.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyfpdb/EverleafToFpdb.py b/pyfpdb/EverleafToFpdb.py index 32b22a93..a069d89c 100755 --- a/pyfpdb/EverleafToFpdb.py +++ b/pyfpdb/EverleafToFpdb.py @@ -146,6 +146,8 @@ or None if we fail to get the info """ tourno = t.group('TOURNO') hand.tourNo = tourno hand.tablename = t.group('TABLE') + #TODO we should fetch info including buyincurrency, buyin and fee from URL: + # https://www.poker4ever.com/tourney/%TOURNEY_NUMBER% # Believe Everleaf time is GMT/UTC, no transation necessary # Stars format (Nov 10 2008): 2008/11/07 12:38:49 CET [2008/11/07 7:38:49 ET] From 71df9b06ddd2cb174cea5cf13142a7392663cf4c Mon Sep 17 00:00:00 2001 From: steffen123 Date: Fri, 23 Jul 2010 04:45:57 +0200 Subject: [PATCH 20/93] HUD: make it work again after my previous overzealous removal of HP.TTid --- pyfpdb/DerivedStats.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index f0f1f834..7aab6c98 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -59,6 +59,7 @@ class DerivedStats(): self.handsplayers[player[1]]['foldSbToStealChance'] = False self.handsplayers[player[1]]['foldedSbToSteal'] = False self.handsplayers[player[1]]['foldedBbToSteal'] = False + self.handsplayers[player[1]]['tourneyTypeId'] = None for i in range(5): self.handsplayers[player[1]]['street%dCalls' % i] = 0 @@ -142,6 +143,7 @@ class DerivedStats(): self.handsplayers[player[1]]['startCash'] = int(100 * Decimal(player[2])) self.handsplayers[player[1]]['sitout'] = False #TODO: implement actual sitout detection if hand.gametype["type"]=="tour": + self.handsplayers[player[1]]['tourneyTypeId']=hand.tourneyTypeId self.handsplayers[player[1]]['tourneysPlayersIds'] = hand.tourneysPlayersIds[player[1]] else: self.handsplayers[player[1]]['tourneysPlayersIds'] = None From ff835a0427ba1173214a6f872eddbfda5a19af57 Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Sat, 24 Jul 2010 09:06:40 +0300 Subject: [PATCH 21/93] Update changelog for 0.20.902 snapshot --- packaging/debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packaging/debian/changelog b/packaging/debian/changelog index acf61306..0616ad0e 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,9 @@ +free-poker-tools (0.20.902-1) unstable; urgency=low + + * New snapshot release; .901 was broken for FTP + + -- Mika Bostrom Sat, 24 Jul 2010 09:05:57 +0300 + free-poker-tools (0.20.901-1) unstable; urgency=low * Snapshot release before oncoming 0.21 From 5b432bcd9962c48850b8270f9398d5ab0661fe87 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 15:48:19 +0200 Subject: [PATCH 22/93] GUI: remove obselete and broken table viewer --- pyfpdb/GuiTableViewer.py | 290 --------------------------------------- pyfpdb/fpdb.pyw | 10 -- 2 files changed, 300 deletions(-) delete mode 100644 pyfpdb/GuiTableViewer.py diff --git a/pyfpdb/GuiTableViewer.py b/pyfpdb/GuiTableViewer.py deleted file mode 100644 index 8086c0a0..00000000 --- a/pyfpdb/GuiTableViewer.py +++ /dev/null @@ -1,290 +0,0 @@ -#!/usr/bin/python -# -*- coding: utf-8 -*- - -#Copyright 2008-2010 Steffen Schaumburg -#This program is free software: you can redistribute it and/or modify -#it under the terms of the GNU Affero General Public License as published by -#the Free Software Foundation, version 3 of the License. -# -#This program is distributed in the hope that it will be useful, -#but WITHOUT ANY WARRANTY; without even the implied warranty of -#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -#GNU General Public License for more details. -# -#You should have received a copy of the GNU Affero General Public License -#along with this program. If not, see . -#In the "official" distribution you can find the license in agpl-3.0.txt. - -import threading -import pygtk -pygtk.require('2.0') -import gtk -import os - -import fpdb_import -from Exceptions import * - - -class GuiTableViewer (threading.Thread): - def hudDivide (self, a, b): - if b==0: - return "n/a" - else: - return str(int((a/float(b))*100))+"%" - #end def hudDivide - - def browse_clicked(self, widget, data): - """runs when user clicks browse on tv tab""" - #print "start of table_viewer.browser_clicked" - current_path=self.filename_tbuffer.get_text(self.filename_tbuffer.get_start_iter(), self.filename_tbuffer.get_end_iter()) - - dia_chooser = gtk.FileChooserDialog(title="Please choose the file for which you want to open the Table Viewer", - action=gtk.FILE_CHOOSER_ACTION_OPEN, - buttons=(gtk.STOCK_CANCEL,gtk.RESPONSE_CANCEL,gtk.STOCK_OPEN,gtk.RESPONSE_OK)) - #dia_chooser.set_current_folder(pathname) - dia_chooser.set_filename(current_path) - #dia_chooser.set_select_multiple(select_multiple) #not in tv, but want this in bulk import - - response = dia_chooser.run() - if response == gtk.RESPONSE_OK: - #print dia_chooser.get_filename(), 'selected' - self.filename_tbuffer.set_text(dia_chooser.get_filename()) - elif response == gtk.RESPONSE_CANCEL: - print 'Closed, no files selected' - dia_chooser.destroy() - #end def table_viewer.browse_clicked - - def prepare_data(self): - """prepares the data for display by refresh_clicked, returns a 2D array""" - #print "start of prepare_data" - arr=[] - #first prepare the header row - if (self.category=="holdem" or self.category=="omahahi" or self.category=="omahahilo"): - tmp=("Name", "HDs", "VPIP", "PFR", "PF3B", "ST") - - tmp+=("FS", "FB") - - tmp+=("CB", ) - - tmp+=("2B", "3B") - - tmp+=("AF", "FF", "AT", "FT", "AR", "FR") - - tmp+=("WtSD", "W$wsF", "W$SD") - else: - raise FpdbError("reimplement stud") - arr.append(tmp) - - #then the data rows - for player in range(len(self.player_names)): - tmp=[] - p_name = Charset.to_gui(self.player_names[player][0]) - tmp.append(p_name) - - seatCount=len(self.player_names) - if seatCount>=8: - minSeats,maxSeats=7,10 - elif seatCount==7: - minSeats,maxSeats=6,10 - elif seatCount==6 or seatCount==5: - minSeats,maxSeats=seatCount-1,seatCount+1 - elif seatCount==4: - minSeats,maxSeats=4,5 - elif seatCount==2 or seatCount==3: - minSeats,maxSeats=seatCount,seatCount - else: - FpdbError("invalid seatCount") - - self.cursor.execute("SELECT * FROM HudCache WHERE gametypeId=%s AND playerId=%s AND activeSeats>=%s AND activeSeats<=%s", (self.gametype_id, self.player_ids[player][0], minSeats, maxSeats)) - rows=self.cursor.fetchall() - - row=[] - for field_no in range(len(rows[0])): - row.append(rows[0][field_no]) - - for row_no in range(len(rows)): - if row_no==0: - pass - else: - for field_no in range(len(rows[row_no])): - if field_no<=3: - pass - else: - #print "in prep data, row_no:",row_no,"field_no:",field_no - row[field_no]+=rows[row_no][field_no] - - tmp.append(str(row[6]))#Hands - tmp.append(self.hudDivide(row[7],row[6])) #VPIP - tmp.append(self.hudDivide(row[8],row[6])) #PFR - tmp.append(self.hudDivide(row[10],row[9])+" ("+str(row[9])+")") #PF3B - - tmp.append(self.hudDivide(row[31],row[30])+" ("+str(row[30])+")") #ST - - tmp.append(self.hudDivide(row[35],row[34])+" ("+str(row[34])+")") #FS - tmp.append(self.hudDivide(row[33],row[32])+" ("+str(row[32])+")") #FB - - tmp.append(self.hudDivide(row[37],row[36])+" ("+str(row[36])+")") #CB - - tmp.append(self.hudDivide(row[39],row[38])+" ("+str(row[38])+")") #2B - tmp.append(self.hudDivide(row[41],row[40])+" ("+str(row[40])+")") #3B - - tmp.append(self.hudDivide(row[16],row[11])+" ("+str(row[11])+")") #AF - tmp.append(self.hudDivide(row[24],row[20])+" ("+str(row[20])+")") #FF - tmp.append(self.hudDivide(row[17],row[12])+" ("+str(row[12])+")") #AT - tmp.append(self.hudDivide(row[25],row[21])+" ("+str(row[21])+")") #FT - tmp.append(self.hudDivide(row[18],row[13])+" ("+str(row[13])+")") #AR - tmp.append(self.hudDivide(row[26],row[22])+" ("+str(row[22])+")") #FR - - tmp.append(self.hudDivide(row[15],row[11])) #WtSD - tmp.append(self.hudDivide(row[28],row[11])) #W$wSF - tmp.append(self.hudDivide(row[29],row[15])+" ("+str(row[15])+")") #W$@SD - - arr.append(tmp) - return arr - #end def table_viewer.prepare_data - - def refresh_clicked(self, widget, data): - """runs when user clicks refresh""" - #print "start of table_viewer.refresh_clicked" - arr=self.prepare_data() - - try: self.data_table.destroy() - except AttributeError: pass - self.data_table=gtk.Table(rows=len(arr), columns=len(arr[0]), homogeneous=False) - self.main_vbox.pack_start(self.data_table) - self.data_table.show() - - for row in range(len(arr)): - for column in range (len(arr[row])): - eventBox=gtk.EventBox() - new_label=gtk.Label(arr[row][column]) - if row%2==0: # - bg_col="white" - if column==0 or (column>=5 and column<=10): - bg_col="lightgrey" - else: - bg_col="lightgrey" - if column==0 or (column>=5 and column<=10): - bg_col="grey" - #style = eventBox.get_style() - #style.font.height=8 - #eventBox.set_style(style) - - eventBox.modify_bg(gtk.STATE_NORMAL, gtk.gdk.color_parse(bg_col)) - eventBox.add(new_label) - self.data_table.attach(child=eventBox, left_attach=column, right_attach=column+1, top_attach=row, bottom_attach=row+1) - eventBox.show() - new_label.show() - #end def table_viewer.refresh_clicked - - def read_names_clicked(self, widget, data): - """runs when user clicks read names""" - #print "start of table_viewer.read_names_clicked" - self.db.reconnect() - self.cursor=self.db.get_cursor() - #self.hands_id=self.last_read_hand_id - - self.cursor.execute("SELECT gametypeId FROM Hands WHERE id=%s", (self.hands_id, )) - self.gametype_id=self.cursor.fetchone()[0] - self.cursor.execute("SELECT category FROM Gametypes WHERE id=%s", (self.gametype_id, )) - self.category=self.cursor.fetchone()[0] - #print "self.gametype_id", self.gametype_id," category:", self.category, " self.hands_id:", self.hands_id - - self.cursor.execute("""SELECT DISTINCT Players.id FROM HandsPlayers - INNER JOIN Players ON HandsPlayers.playerId=Players.id - WHERE handId=%s""", (self.hands_id, )) - self.player_ids=self.cursor.fetchall() - #print "self.player_ids:",self.player_ids - - self.cursor.execute("""SELECT DISTINCT Players.name FROM HandsPlayers - INNER JOIN Players ON HandsPlayers.playerId=Players.id - WHERE handId=%s""", (self.hands_id, )) - self.player_names=self.cursor.fetchall() - #print "self.player_names:",self.player_names - #end def table_viewer.read_names_clicked - - def import_clicked(self, widget, data): - """runs when user clicks import""" - #print "start of table_viewer.import_clicked" - self.inputFile=self.filename_tbuffer.get_text(self.filename_tbuffer.get_start_iter(), self.filename_tbuffer.get_end_iter()) - - self.importer = fpdb_import.Importer(self, self.settings, self.config) - self.importer.setMinPrint(0) - self.importer.setQuiet(False) - self.importer.setFailOnError(False) - self.importer.setHandCount(0) - - self.importer.addImportFile(self.inputFile) - self.importer.runImport() - self.hands_id=self.importer.handsId - #end def table_viewer.import_clicked - - def all_clicked(self, widget, data): - """runs when user clicks all""" - #print "start of table_viewer.all_clicked" - self.import_clicked(widget, data) - self.read_names_clicked(widget, data) - self.refresh_clicked(widget, data) - #end def table_viewer.all_clicked - - def get_vbox(self): - """returns the vbox of this thread""" - return self.main_vbox - #end def get_vbox - - def __init__(self, db, settings, config=None, debug=True): - """Constructor for table_viewer""" - self.debug=debug - #print "start of table_viewer constructor" - self.db = db - self.cursor = db.get_cursor() - self.settings = settings - self.config = config - - self.main_vbox = gtk.VBox(False, 0) - self.main_vbox.show() - - self.settings_hbox = gtk.HBox(False, 0) - self.main_vbox.pack_end(self.settings_hbox, False, True, 0) - self.settings_hbox.show() - - self.filename_label = gtk.Label("Path of history file") - self.settings_hbox.pack_start(self.filename_label, False, False) - self.filename_label.show() - - self.filename_tbuffer=gtk.TextBuffer() - self.filename_tbuffer.set_text(self.settings['hud-defaultPath']) - self.filename_tview=gtk.TextView(self.filename_tbuffer) - self.settings_hbox.pack_start(self.filename_tview, True, True, padding=5) - self.filename_tview.show() - - self.browse_button=gtk.Button("Browse...") - self.browse_button.connect("clicked", self.browse_clicked, "Browse clicked") - self.settings_hbox.pack_start(self.browse_button, False, False) - self.browse_button.show() - - - self.button_hbox = gtk.HBox(False, 0) - self.main_vbox.pack_end(self.button_hbox, False, True, 0) - self.button_hbox.show() - - #self.import_button = gtk.Button("Import") - #self.import_button.connect("clicked", self.import_clicked, "Import clicked") - #self.button_hbox.add(self.import_button) - #self.import_button.show() - - #self.read_names_button = gtk.Button("Read Names") - #self.read_names_button.connect("clicked", self.read_names_clicked, "Read clicked") - #self.button_hbox.add(self.read_names_button) - #self.read_names_button.show() - - #self.refresh_button = gtk.Button("Show/Refresh data") - #self.refresh_button.connect("clicked", self.refresh_clicked, "Refresh clicked") - #self.button_hbox.add(self.refresh_button) - #self.refresh_button.show() - - self.all_button = gtk.Button("Import&Read&Refresh") - self.all_button.connect("clicked", self.all_clicked, "All clicked") - self.button_hbox.add(self.all_button) - self.all_button.show() - #end of table_viewer.__init__ diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 67262ba7..85519afc 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -107,7 +107,6 @@ import ImapFetcher import GuiRingPlayerStats import GuiTourneyPlayerStats import GuiPositionalStats -import GuiTableViewer import GuiAutoImport import GuiGraphViewer import GuiSessionViewer @@ -798,7 +797,6 @@ class fpdb: - @@ -839,7 +837,6 @@ class fpdb: ('tourneyplayerstats', None, '_Tourney Player Stats (tabulated view, mysql only)', 'T', 'Tourney Player Stats (tabulated view, mysql only)', self.tab_tourney_player_stats), ('posnstats', None, 'P_ositional Stats (tabulated view)', 'O', 'Positional Stats (tabulated view)', self.tab_positional_stats), ('sessionstats', None, 'Session Stats', None, 'Session Stats', self.tab_session_stats), - ('tableviewer', None, 'Poker_table Viewer (mostly obselete)', None, 'Poker_table Viewer (mostly obselete)', self.tab_table_viewer), ('database', None, '_Database'), ('maintaindbs', None, '_Maintain Databases', None, 'Maintain Databases', self.dia_maintain_dbs), ('createtabs', None, 'Create or Recreate _Tables', None, 'Create or Recreate Tables ', self.dia_recreate_tables), @@ -1068,13 +1065,6 @@ This program is free/libre open source software licensed partially under the AGP You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt and gpl-3.0.txt in the fpdb installation directory.""") self.add_and_display_tab(mh_tab, "Help") - def tab_table_viewer(self, widget, data=None): - """opens a table viewer tab""" - new_tv_thread = GuiTableViewer.GuiTableViewer(self.db, self.settings, self.config) - self.threads.append(new_tv_thread) - tv_tab = new_tv_thread.get_vbox() - self.add_and_display_tab(tv_tab, "Table Viewer") - def tabGraphViewer(self, widget, data=None): """opens a graph viewer tab""" new_gv_thread = GuiGraphViewer.GuiGraphViewer(self.sql, self.config, self.window) From e0b194ddf052ff9fc00209d1feae7bb3eb2bc7c1 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 17:43:47 +0200 Subject: [PATCH 23/93] minor cleanup --- pyfpdb/SQL.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 4a0bde21..59fa4378 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -2444,6 +2444,8 @@ class Sql: ) hprof2 on hprof2.gtId = stats.gtId order by stats.category, stats.limittype, stats.bigBlindDesc desc """ + #elif db_server == 'sqlite': #TODO + # self.query['playerStats'] = """ """ else: # assume postgres self.query['playerStats'] = """ SELECT upper(stats.limitType) || ' ' @@ -2547,8 +2549,6 @@ class Sql: ) hprof2 on hprof2.gtId = stats.gtId order by stats.base, stats.limittype, stats.bigBlindDesc desc """ - #elif db_server == 'sqlite': - # self.query['playerStats'] = """ """ if db_server == 'mysql': self.query['playerStatsByPosition'] = """ From 20ebd040c12e43b21b766e18677faf958fff63a8 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 18:16:46 +0200 Subject: [PATCH 24/93] remove some methods in TourneyFilters that are identical in Filters --- pyfpdb/TourneyFilters.py | 104 --------------------------------------- 1 file changed, 104 deletions(-) diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index 977c94ec..84f23e64 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -63,54 +63,6 @@ class TourneyFilters(Filters.Filters): self.make_filter() #end def __init__ - def __calendar_dialog(self, widget, entry): - d = gtk.Window(gtk.WINDOW_TOPLEVEL) - d.set_title('Pick a date') - - vb = gtk.VBox() - cal = gtk.Calendar() - vb.pack_start(cal, expand=False, padding=0) - - btn = gtk.Button('Done') - btn.connect('clicked', self.__get_date, cal, entry, d) - - vb.pack_start(btn, expand=False, padding=4) - - d.add(vb) - d.set_position(gtk.WIN_POS_MOUSE) - d.show_all() - #end def __calendar_dialog - - def __clear_dates(self, w): - self.start_date.set_text('') - self.end_date.set_text('') - #end def __clear_dates - - def __get_dates(self): - # self.day_start gives user's start of day in hours - offset = int(self.day_start * 3600) # calc day_start in seconds - - t1 = self.start_date.get_text() - t2 = self.end_date.get_text() - - if t1 == '': - t1 = '1970-01-02' - if t2 == '': - t2 = '2020-12-12' - - s1 = strptime(t1, "%Y-%m-%d") # make time_struct - s2 = strptime(t2, "%Y-%m-%d") - e1 = mktime(s1) + offset # s1 is localtime, but returned time since epoch is UTC, then add the - e2 = mktime(s2) + offset # s2 is localtime, but returned time since epoch is UTC - e2 = e2 + 24 * 3600 - 1 # date test is inclusive, so add 23h 59m 59s to e2 - - adj_t1 = strftime("%Y-%m-%d %H:%M:%S", gmtime(e1)) # make adjusted string including time - adj_t2 = strftime("%Y-%m-%d %H:%M:%S", gmtime(e2)) - log.info("t1="+t1+" adj_t1="+adj_t1+'.') - - return (adj_t1, adj_t2) - #end def __get_dates - def __refresh(self, widget, entry): for w in self.mainVBox.get_children(): w.destroy() @@ -200,54 +152,6 @@ class TourneyFilters(Filters.Filters): cb.set_active(True) #end def createTourneyTypeLine - def fillDateFrame(self, vbox): - # Hat tip to Mika Bostrom - calendar code comes from PokerStats - top_hbox = gtk.HBox(False, 0) - vbox.pack_start(top_hbox, False, False, 0) - lbl_title = gtk.Label(self.filterText['datestitle']) - lbl_title.set_alignment(xalign=0.0, yalign=0.5) - top_hbox.pack_start(lbl_title, expand=True, padding=3) - showb = gtk.Button(label="hide", stock=None, use_underline=True) - showb.set_alignment(xalign=1.0, yalign=0.5) - showb.connect('clicked', self.__toggle_box, 'dates') - top_hbox.pack_start(showb, expand=False, padding=1) - - vbox1 = gtk.VBox(False, 0) - vbox.pack_start(vbox1, False, False, 0) - self.boxes['dates'] = vbox1 - - hbox = gtk.HBox() - vbox1.pack_start(hbox, False, True, 0) - - lbl_start = gtk.Label('From:') - - btn_start = gtk.Button() - btn_start.set_image(gtk.image_new_from_stock(gtk.STOCK_INDEX, gtk.ICON_SIZE_BUTTON)) - btn_start.connect('clicked', self.__calendar_dialog, self.start_date) - - hbox.pack_start(lbl_start, expand=False, padding=3) - hbox.pack_start(btn_start, expand=False, padding=3) - hbox.pack_start(self.start_date, expand=False, padding=2) - - #New row for end date - hbox = gtk.HBox() - vbox1.pack_start(hbox, False, True, 0) - - lbl_end = gtk.Label(' To:') - btn_end = gtk.Button() - btn_end.set_image(gtk.image_new_from_stock(gtk.STOCK_INDEX, gtk.ICON_SIZE_BUTTON)) - btn_end.connect('clicked', self.__calendar_dialog, self.end_date) - - btn_clear = gtk.Button(label=' Clear Dates ') - btn_clear.connect('clicked', self.__clear_dates) - - hbox.pack_start(lbl_end, expand=False, padding=3) - hbox.pack_start(btn_end, expand=False, padding=3) - hbox.pack_start(self.end_date, expand=False, padding=2) - - hbox.pack_start(btn_clear, expand=False, padding=15) - #end def fillDateFrame - def fillPlayerFrame(self, vbox, display): top_hbox = gtk.HBox(False, 0) vbox.pack_start(top_hbox, False, False, 0) @@ -376,14 +280,6 @@ class TourneyFilters(Filters.Filters): log.info("No tourney types returned from database") #end def fillTourneyTypesFrame - def getDates(self): - return self.__get_dates() - #end def getDates - - def getHeroes(self): - return self.heroes - #end def getHeroes - def getNumTourneys(self): return self.numTourneys #end def getNumTourneys From c996a11ed6dbf129e1999f0d1602e8b193aaf746 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 18:17:25 +0200 Subject: [PATCH 25/93] move method from TourneyFilters to Filters --- pyfpdb/Filters.py | 4 ++++ pyfpdb/TourneyFilters.py | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index 06f43610..d6a78949 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -229,6 +229,10 @@ class Filters(threading.Thread): return self.numHands #end def getNumHands + def getNumTourneys(self): + return self.numTourneys + #end def getNumTourneys + def getSites(self): return self.sites #end def getSites diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index 84f23e64..7415a9d3 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -280,10 +280,6 @@ class TourneyFilters(Filters.Filters): log.info("No tourney types returned from database") #end def fillTourneyTypesFrame - def getNumTourneys(self): - return self.numTourneys - #end def getNumTourneys - def getSeats(self): if 'from' in self.sbSeats: self.seats['from'] = self.sbSeats['from'].get_value_as_int() From 84df9ad56710f5331224bb5d630c37784393ec2f Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 18:21:43 +0200 Subject: [PATCH 26/93] remove more duplicate methods from TourneyFilters --- pyfpdb/TourneyFilters.py | 62 ---------------------------------------- 1 file changed, 62 deletions(-) diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index 7415a9d3..4ff57897 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -138,13 +138,6 @@ class TourneyFilters(Filters.Filters): self.__set_hero_name(pname, site) #end def createPlayerLine - def createSiteLine(self, hbox, site): - cb = gtk.CheckButton(site) - cb.connect('clicked', self.__set_site_select, site) - cb.set_active(True) - hbox.pack_start(cb, False, False, 0) - #end def createSiteLine - def createTourneyTypeLine(self, hbox, tourneyType): cb = gtk.CheckButton(str(tourneyType)) cb.connect('clicked', self.__set_tourney_type_select, tourneyType) @@ -195,40 +188,6 @@ class TourneyFilters(Filters.Filters): top_hbox.pack_start(showb, expand=False, padding=1) #end def fillPlayerFrame - def fillSeatsFrame(self, vbox, display): - hbox = gtk.HBox(False, 0) - vbox.pack_start(hbox, False, False, 0) - lbl_title = gtk.Label(self.filterText['seatstitle']) - lbl_title.set_alignment(xalign=0.0, yalign=0.5) - hbox.pack_start(lbl_title, expand=True, padding=3) - showb = gtk.Button(label="hide", stock=None, use_underline=True) - showb.set_alignment(xalign=1.0, yalign=0.5) - showb.connect('clicked', self.__toggle_box, 'seats') - hbox.pack_start(showb, expand=False, padding=1) - - vbox1 = gtk.VBox(False, 0) - vbox.pack_start(vbox1, False, False, 0) - self.boxes['seats'] = vbox1 - - hbox = gtk.HBox(False, 0) - vbox1.pack_start(hbox, False, True, 0) - - lbl_from = gtk.Label(self.filterText['seatsbetween']) - lbl_to = gtk.Label(self.filterText['seatsand']) - adj1 = gtk.Adjustment(value=2, lower=2, upper=10, step_incr=1, page_incr=1, page_size=0) - sb1 = gtk.SpinButton(adjustment=adj1, climb_rate=0.0, digits=0) - adj2 = gtk.Adjustment(value=10, lower=2, upper=10, step_incr=1, page_incr=1, page_size=0) - sb2 = gtk.SpinButton(adjustment=adj2, climb_rate=0.0, digits=0) - - hbox.pack_start(lbl_from, expand=False, padding=3) - hbox.pack_start(sb1, False, False, 0) - hbox.pack_start(lbl_to, expand=False, padding=3) - hbox.pack_start(sb2, False, False, 0) - - self.sbSeats['from'] = sb1 - self.sbSeats['to'] = sb2 - #end def fillSeatsFrame - def fillSitesFrame(self, vbox): top_hbox = gtk.HBox(False, 0) top_hbox.show() @@ -280,31 +239,10 @@ class TourneyFilters(Filters.Filters): log.info("No tourney types returned from database") #end def fillTourneyTypesFrame - def getSeats(self): - if 'from' in self.sbSeats: - self.seats['from'] = self.sbSeats['from'].get_value_as_int() - if 'to' in self.sbSeats: - self.seats['to'] = self.sbSeats['to'].get_value_as_int() - return self.seats - #end def getSeats - - def getSiteIds(self): - return self.siteid - #end def getSiteIds - - def getSites(self): - return self.sites - #end def getSites - def getTourneyTypes(self): return self.tourneyTypes #end def getTourneyTypes - def get_vbox(self): - """returns the vbox of this thread""" - return self.mainVBox - #end def get_vbox - def make_filter(self): self.tourneyTypes = {} #self.tourneys = {} From 9006a7f45bff4b62c19a490f0ba7106f32238075 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 18:24:07 +0200 Subject: [PATCH 27/93] remove another dupe method from TourneyFilters --- pyfpdb/Filters.py | 1 + pyfpdb/TourneyFilters.py | 25 ------------------------- 2 files changed, 1 insertion(+), 25 deletions(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index d6a78949..fa0a504b 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -587,6 +587,7 @@ class Filters(threading.Thread): # self.siteid[site] = result[0][0] #else: # print "Either 0 or more than one site matched - EEK" + #end def fillSitesFrame def fillGamesFrame(self, vbox): top_hbox = gtk.HBox(False, 0) diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index 4ff57897..6c103dc8 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -188,31 +188,6 @@ class TourneyFilters(Filters.Filters): top_hbox.pack_start(showb, expand=False, padding=1) #end def fillPlayerFrame - def fillSitesFrame(self, vbox): - top_hbox = gtk.HBox(False, 0) - top_hbox.show() - vbox.pack_start(top_hbox, False, False, 0) - - lbl_title = gtk.Label(self.filterText['sitestitle']) - lbl_title.set_alignment(xalign=0.0, yalign=0.5) - top_hbox.pack_start(lbl_title, expand=True, padding=3) - - showb = gtk.Button(label="hide", stock=None, use_underline=True) - showb.set_alignment(xalign=1.0, yalign=0.5) - showb.connect('clicked', self.__toggle_box, 'sites') - showb.show() - top_hbox.pack_start(showb, expand=False, padding=1) - - vbox1 = gtk.VBox(False, 0) - self.boxes['sites'] = vbox1 - vbox.pack_start(vbox1, False, False, 0) - - for site in self.conf.get_supported_sites(): - hbox = gtk.HBox(False, 0) - vbox1.pack_start(hbox, False, True, 0) - self.createSiteLine(hbox, site) - #end def fillSitesFrame - def fillTourneyTypesFrame(self, vbox): top_hbox = gtk.HBox(False, 0) vbox.pack_start(top_hbox, False, False, 0) From 90c81cb4eeea806afc29ca31dd448dd65dee968f Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 18:25:27 +0200 Subject: [PATCH 28/93] move method from TF to F --- pyfpdb/Filters.py | 5 +++++ pyfpdb/TourneyFilters.py | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index fa0a504b..35ab96c3 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -237,8 +237,13 @@ class Filters(threading.Thread): return self.sites #end def getSites + def getTourneyTypes(self): + return self.tourneyTypes + #end def getTourneyTypes + def getGames(self): return self.games + #end def getGames def getSiteIds(self): return self.siteid diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index 6c103dc8..313a05fa 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -214,10 +214,6 @@ class TourneyFilters(Filters.Filters): log.info("No tourney types returned from database") #end def fillTourneyTypesFrame - def getTourneyTypes(self): - return self.tourneyTypes - #end def getTourneyTypes - def make_filter(self): self.tourneyTypes = {} #self.tourneys = {} From 9781cd1d87eb8886de834e41f7fc5489b188f798 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 18:31:35 +0200 Subject: [PATCH 29/93] yet more dupe removal from TourneyFilters --- pyfpdb/TourneyFilters.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index 313a05fa..0de12a5f 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -327,15 +327,4 @@ class TourneyFilters(Filters.Filters): # make sure any locks on db are released: self.db.rollback() #end def make_filter - - def registerButton2Name(self, title): - self.Button2.set_label(title) - self.label['button2'] = title - #end def registerButton2Name - - def registerButton2Callback(self, callback): - self.Button2.connect("clicked", callback, "clicked") - self.Button2.set_sensitive(True) - self.callback['button2'] = callback - #end def registerButton2Callback #end class TourneyFilters From c5ae1e785b5a8976ed0d693121663c557d82aba3 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 18:33:01 +0200 Subject: [PATCH 30/93] remove another method from TF - this was only an almost-dupe --- pyfpdb/Filters.py | 1 + pyfpdb/TourneyFilters.py | 26 -------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index 35ab96c3..dffcaa53 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -325,6 +325,7 @@ class Filters(threading.Thread): liststore.append(_nt) self.__set_hero_name(pname, site) + #end def createPlayerLine def __set_hero_name(self, w, site): _name = w.get_text() diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index 0de12a5f..5c6a144f 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -112,32 +112,6 @@ class TourneyFilters(Filters.Filters): widget.set_label("hide") #end def __toggle_box - def createPlayerLine(self, hbox, site, player): - log.debug('add:"%s"' % player) - label = gtk.Label(site +" id:") - hbox.pack_start(label, False, False, 3) - - pname = gtk.Entry() - pname.set_text(player) - pname.set_width_chars(20) - hbox.pack_start(pname, False, True, 0) - #pname.connect("changed", self.__set_hero_name, site) - - # Added EntryCompletion but maybe comboBoxEntry is more flexible? (e.g. multiple choices) - completion = gtk.EntryCompletion() - pname.set_completion(completion) - liststore = gtk.ListStore(gobject.TYPE_STRING) - completion.set_model(liststore) - completion.set_text_column(0) - names = self.db.get_player_names(self.conf, self.siteid[site]) # (config=self.conf, site_id=None, like_player_name="%") - for n in names: # list of single-element "tuples" - _n = Charset.to_gui(n[0]) - _nt = (_n, ) - liststore.append(_nt) - - self.__set_hero_name(pname, site) - #end def createPlayerLine - def createTourneyTypeLine(self, hbox, tourneyType): cb = gtk.CheckButton(str(tourneyType)) cb.connect('clicked', self.__set_tourney_type_select, tourneyType) From e006db3a2dc77063435045f6fe6ca5f8b6ac6b02 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 18:35:38 +0200 Subject: [PATCH 31/93] move 2 more methods from TourneyFilters to Filters --- pyfpdb/Filters.py | 14 ++++++++++++++ pyfpdb/TourneyFilters.py | 13 ------------- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index dffcaa53..f282baa6 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -348,6 +348,20 @@ class Filters(threading.Thread): cb.connect('clicked', self.__set_site_select, site) cb.set_active(True) hbox.pack_start(cb, False, False, 0) + #end def createSiteLine + + def __set_tourney_type_select(self, w, tourneyType): + #print w.get_active() + self.tourneyTypes[tourneyType] = w.get_active() + log.debug("self.tourney_types[%s] set to %s" %(tourneyType, self.tourneyTypes[tourneyType])) + #end def __set_tourney_type_select + + def createTourneyTypeLine(self, hbox, tourneyType): + cb = gtk.CheckButton(str(tourneyType)) + cb.connect('clicked', self.__set_tourney_type_select, tourneyType) + hbox.pack_start(cb, False, False, 0) + cb.set_active(True) + #end def createTourneyTypeLine def createGameLine(self, hbox, game): cb = gtk.CheckButton(game) diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index 5c6a144f..3a8fa542 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -97,12 +97,6 @@ class TourneyFilters(Filters.Filters): log.debug("self.sites[%s] set to %s" %(site, self.sites[site])) #end def __set_site_select - def __set_tourney_type_select(self, w, tourneyType): - #print w.get_active() - self.tourneyTypes[tourneyType] = w.get_active() - log.debug("self.tourney_types[%s] set to %s" %(tourneyType, self.tourneyTypes[tourneyType])) - #end def __set_tourney_type_select - def __toggle_box(self, widget, entry): if self.boxes[entry].props.visible: self.boxes[entry].hide() @@ -112,13 +106,6 @@ class TourneyFilters(Filters.Filters): widget.set_label("hide") #end def __toggle_box - def createTourneyTypeLine(self, hbox, tourneyType): - cb = gtk.CheckButton(str(tourneyType)) - cb.connect('clicked', self.__set_tourney_type_select, tourneyType) - hbox.pack_start(cb, False, False, 0) - cb.set_active(True) - #end def createTourneyTypeLine - def fillPlayerFrame(self, vbox, display): top_hbox = gtk.HBox(False, 0) vbox.pack_start(top_hbox, False, False, 0) From fd4e421ca38134fa4077d062ccbda29e503f64d9 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 18:41:51 +0200 Subject: [PATCH 32/93] remove another dupe from TourneyFilters --- pyfpdb/Filters.py | 1 + pyfpdb/TourneyFilters.py | 10 +--------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index f282baa6..e1d876d4 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -884,6 +884,7 @@ class Filters(threading.Thread): for w in self.mainVBox.get_children(): w.destroy() self.make_filter() + #end def __refresh def __toggle_box(self, widget, entry): if self.boxes[entry].props.visible: diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index 3a8fa542..d2bce0ab 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -63,20 +63,12 @@ class TourneyFilters(Filters.Filters): self.make_filter() #end def __init__ - def __refresh(self, widget, entry): + def __refresh(self, widget, entry): #identical with Filters for w in self.mainVBox.get_children(): w.destroy() self.make_filter() #end def __refresh - def __set_hero_name(self, w, site): - _name = w.get_text() - # get_text() returns a str but we want internal variables to be unicode: - _guiname = unicode(_name) - self.heroes[site] = _guiname - #log.debug("setting heroes[%s]: %s"%(site, self.heroes[site])) - #end def __set_hero_name - def __set_num_tourneys(self, w, val): try: self.numTourneys = int(w.get_text()) From 31aa76abc968a62ab3046f48bf9c60d65617dbfd Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 18:44:06 +0200 Subject: [PATCH 33/93] and another dupe from TourneyFilters.. --- pyfpdb/Filters.py | 1 + pyfpdb/TourneyFilters.py | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index e1d876d4..f743625e 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -529,6 +529,7 @@ class Filters(threading.Thread): #print "__set_seat_select: seat =", seat, "active =", w.get_active() self.seats[seat] = w.get_active() log.debug( "self.seats[%s] set to %s" %(seat, self.seats[seat]) ) + #end def __set_seat_select def __set_group_select(self, w, group): #print "__set_seat_select: seat =", seat, "active =", w.get_active() diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index d2bce0ab..39db47ad 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -77,12 +77,6 @@ class TourneyFilters(Filters.Filters): print "setting numTourneys:", self.numTourneys #end def __set_num_tourneys - def __set_seat_select(self, w, seat): - #print "__set_seat_select: seat =", seat, "active =", w.get_active() - self.seats[seat] = w.get_active() - log.debug( "self.seats[%s] set to %s" %(seat, self.seats[seat]) ) - #end def __set_seat_select - def __set_site_select(self, w, site): #print w.get_active() self.sites[site] = w.get_active() From 3f4c5d45e8e1b2691ee72600f37488fe5c520621 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 18:54:40 +0200 Subject: [PATCH 34/93] for fear of repeating myself, removed another dupe from TourneyFilters --- pyfpdb/Filters.py | 1 + pyfpdb/TourneyFilters.py | 8 +------- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index f743625e..045d8f42 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -381,6 +381,7 @@ class Filters(threading.Thread): #print w.get_active() self.sites[site] = w.get_active() log.debug("self.sites[%s] set to %s" %(site, self.sites[site])) + #end def __set_site_select def __set_game_select(self, w, game): #print w.get_active() diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index 39db47ad..dd639150 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -77,13 +77,7 @@ class TourneyFilters(Filters.Filters): print "setting numTourneys:", self.numTourneys #end def __set_num_tourneys - def __set_site_select(self, w, site): - #print w.get_active() - self.sites[site] = w.get_active() - log.debug("self.sites[%s] set to %s" %(site, self.sites[site])) - #end def __set_site_select - - def __toggle_box(self, widget, entry): + def __toggle_box(self, widget, entry): #identical with Filters if self.boxes[entry].props.visible: self.boxes[entry].hide() widget.set_label("show") From 0266a707ac6e1a5a30f71c17caaabce905dd41b7 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 19:07:14 +0200 Subject: [PATCH 35/93] move method from TourneyFilters to Filters --- pyfpdb/Filters.py | 26 ++++++++++++++++++++++++++ pyfpdb/TourneyFilters.py | 26 -------------------------- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index 045d8f42..076f07fe 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -611,6 +611,32 @@ class Filters(threading.Thread): # print "Either 0 or more than one site matched - EEK" #end def fillSitesFrame + def fillTourneyTypesFrame(self, vbox): + top_hbox = gtk.HBox(False, 0) + vbox.pack_start(top_hbox, False, False, 0) + lbl_title = gtk.Label(self.filterText['tourneyTypesTitle']) + lbl_title.set_alignment(xalign=0.0, yalign=0.5) + top_hbox.pack_start(lbl_title, expand=True, padding=3) + showb = gtk.Button(label="hide", stock=None, use_underline=True) + showb.set_alignment(xalign=1.0, yalign=0.5) + showb.connect('clicked', self.__toggle_box, 'tourneyTypes') + top_hbox.pack_start(showb, expand=False, padding=1) + + vbox1 = gtk.VBox(False, 0) + vbox.pack_start(vbox1, False, False, 0) + self.boxes['tourneyTypes'] = vbox1 + + result = self.db.getTourneyTypesIds() + if len(result) >= 1: + for line in result: + hbox = gtk.HBox(False, 0) + vbox1.pack_start(hbox, False, True, 0) + self.createTourneyTypeLine(hbox, line[0]) + else: + print "INFO: No tourney types returned from database" + log.info("No tourney types returned from database") + #end def fillTourneyTypesFrame + def fillGamesFrame(self, vbox): top_hbox = gtk.HBox(False, 0) vbox.pack_start(top_hbox, False, False, 0) diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index dd639150..bbc31944 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -129,32 +129,6 @@ class TourneyFilters(Filters.Filters): top_hbox.pack_start(showb, expand=False, padding=1) #end def fillPlayerFrame - def fillTourneyTypesFrame(self, vbox): - top_hbox = gtk.HBox(False, 0) - vbox.pack_start(top_hbox, False, False, 0) - lbl_title = gtk.Label(self.filterText['tourneyTypesTitle']) - lbl_title.set_alignment(xalign=0.0, yalign=0.5) - top_hbox.pack_start(lbl_title, expand=True, padding=3) - showb = gtk.Button(label="hide", stock=None, use_underline=True) - showb.set_alignment(xalign=1.0, yalign=0.5) - showb.connect('clicked', self.__toggle_box, 'tourneyTypes') - top_hbox.pack_start(showb, expand=False, padding=1) - - vbox1 = gtk.VBox(False, 0) - vbox.pack_start(vbox1, False, False, 0) - self.boxes['tourneyTypes'] = vbox1 - - result = self.db.getTourneyTypesIds() - if len(result) >= 1: - for line in result: - hbox = gtk.HBox(False, 0) - vbox1.pack_start(hbox, False, True, 0) - self.createTourneyTypeLine(hbox, line[0]) - else: - print "INFO: No tourney types returned from database" - log.info("No tourney types returned from database") - #end def fillTourneyTypesFrame - def make_filter(self): self.tourneyTypes = {} #self.tourneys = {} From acbe15fadd15fa35e9195e9df30bda48dcaa29f7 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 27 Jul 2010 19:14:23 +0200 Subject: [PATCH 36/93] remove another near-duplicate from TourneyFilters --- pyfpdb/Filters.py | 1 + pyfpdb/TourneyFilters.py | 43 ---------------------------------------- 2 files changed, 1 insertion(+), 43 deletions(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index 076f07fe..94bee25f 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -578,6 +578,7 @@ class Filters(threading.Thread): hbox.pack_start(phands, False, False, 0) phands.connect("changed", self.__set_num_hands, site) top_hbox.pack_start(showb, expand=False, padding=1) + #end def fillPlayerFrame def fillSitesFrame(self, vbox): top_hbox = gtk.HBox(False, 0) diff --git a/pyfpdb/TourneyFilters.py b/pyfpdb/TourneyFilters.py index bbc31944..774c64c7 100644 --- a/pyfpdb/TourneyFilters.py +++ b/pyfpdb/TourneyFilters.py @@ -86,49 +86,6 @@ class TourneyFilters(Filters.Filters): widget.set_label("hide") #end def __toggle_box - def fillPlayerFrame(self, vbox, display): - top_hbox = gtk.HBox(False, 0) - vbox.pack_start(top_hbox, False, False, 0) - lbl_title = gtk.Label(self.filterText['playerstitle']) - lbl_title.set_alignment(xalign=0.0, yalign=0.5) - top_hbox.pack_start(lbl_title, expand=True, padding=3) - showb = gtk.Button(label="refresh", stock=None, use_underline=True) - showb.set_alignment(xalign=1.0, yalign=0.5) - showb.connect('clicked', self.__refresh, 'players') - - vbox1 = gtk.VBox(False, 0) - vbox.pack_start(vbox1, False, False, 0) - self.boxes['players'] = vbox1 - - for site in self.conf.get_supported_sites(): - hBox = gtk.HBox(False, 0) - vbox1.pack_start(hBox, False, True, 0) - - player = self.conf.supported_sites[site].screen_name - _pname = Charset.to_gui(player) - self.createPlayerLine(hBox, site, _pname) - - hbox = gtk.HBox(False, 0) - vbox1.pack_start(hbox, False, False, 0) - #cb = gtk.CheckButton(self.filterText['groupsall']) - #cb.connect('clicked', self.__set_group_select, 'allplayers') - #hbox.pack_start(cb, False, False, 0) - #self.sbGroups['allplayers'] = cb - #self.groups['allplayers'] = False - - #lbl = gtk.Label('Min # Hands:') - #lbl.set_alignment(xalign=1.0, yalign=0.5) - #hbox.pack_start(lbl, expand=True, padding=3) - - #phands = gtk.Entry() - #phands.set_text('0') - #phands.set_width_chars(8) - #hbox.pack_start(phands, False, False, 0) - #phands.connect("changed", self.__set_num_hands, site) - - top_hbox.pack_start(showb, expand=False, padding=1) - #end def fillPlayerFrame - def make_filter(self): self.tourneyTypes = {} #self.tourneys = {} From 9c5581caf0b72ed4f6dd9add312e7124baddd6cb Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Tue, 27 Jul 2010 22:27:18 +0100 Subject: [PATCH 37/93] rename stealattempt fields to raisefirstin and derive accordingly --- pyfpdb/Database.py | 8 +- pyfpdb/DerivedStats.py | 19 ++-- pyfpdb/GuiRingPlayerStats.py | 1 + pyfpdb/SQL.py | 194 +++++++++++++++++++++++++---------- 4 files changed, 154 insertions(+), 68 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 028097dd..b2350a07 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1651,8 +1651,8 @@ class Database: pdata[p]['foldToOtherRaisedStreet2'], pdata[p]['foldToOtherRaisedStreet3'], pdata[p]['foldToOtherRaisedStreet4'], - pdata[p]['stealAttemptChance'], - pdata[p]['stealAttempted'], + pdata[p]['raiseFirstInChance'], + pdata[p]['raisedFirstIn'], pdata[p]['foldBbToStealChance'], pdata[p]['foldedBbToSteal'], pdata[p]['foldSbToStealChance'], @@ -1732,8 +1732,8 @@ class Database: if pdata[p]['foldToOtherRaisedStreet4']: line[21] = 1 line[22] = pdata[p]['wonWhenSeenStreet1'] line[23] = pdata[p]['wonAtSD'] - if pdata[p]['stealAttemptChance']: line[24] = 1 - if pdata[p]['stealAttempted']: line[25] = 1 + if pdata[p]['raiseFirstInChance']: line[24] = 1 + if pdata[p]['raisedFirstIn']: line[25] = 1 if pdata[p]['foldBbToStealChance']: line[26] = 1 if pdata[p]['foldedBbToSteal']: line[27] = 1 if pdata[p]['foldSbToStealChance']: line[28] = 1 diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 7aab6c98..e92bfeaa 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -53,8 +53,8 @@ class DerivedStats(): self.handsplayers[player[1]]['street0_3BDone'] = False self.handsplayers[player[1]]['street0_4BChance'] = False self.handsplayers[player[1]]['street0_4BDone'] = False - self.handsplayers[player[1]]['stealAttemptChance'] = False - self.handsplayers[player[1]]['stealAttempted'] = False + self.handsplayers[player[1]]['raiseFirstInChance'] = False + self.handsplayers[player[1]]['raisedFirstIn'] = False self.handsplayers[player[1]]['foldBbToStealChance'] = False self.handsplayers[player[1]]['foldSbToStealChance'] = False self.handsplayers[player[1]]['foldedSbToSteal'] = False @@ -315,13 +315,14 @@ class DerivedStats(): self.hands['street%dRaises' % i] = len(filter( lambda action: action[1] in ('raises','bets'), hand.actions[street])) def calcSteals(self, hand): - """Fills stealAttempt(Chance|ed, fold(Bb|Sb)ToSteal(Chance|) + """Fills raiseFirstInChance|raisedFirstIn, fold(Bb|Sb)ToSteal(Chance|) - Steal attempt - open raise on positions 1 0 S - i.e. MP3, CO, BU, SB + Steal attempt - open raise on positions 1 0 S - i.e. CO, BU, SB (note: I don't think PT2 counts SB steals in HU hands, maybe we shouldn't?) Fold to steal - folding blind after steal attemp wo any other callers or raisers """ steal_attempt = False + raised = False steal_positions = (1, 0, 'S') if hand.gametype['base'] == 'stud': steal_positions = (2, 1, 0) @@ -341,11 +342,13 @@ class DerivedStats(): if steal_attempt and act != 'folds': break - if posn in steal_positions and not steal_attempt: - self.handsplayers[pname]['stealAttemptChance'] = True + if not steal_attempt and not raised: # if posn in steal_positions and not steal_attempt: + self.handsplayers[pname]['raiseFirstInChance'] = True if act in ('bets', 'raises'): - self.handsplayers[pname]['stealAttempted'] = True - steal_attempt = True + self.handsplayers[pname]['raisedFirstIn'] = True + raised = True + if posn in steal_positions: + steal_attempt = True if act == 'calls': break diff --git a/pyfpdb/GuiRingPlayerStats.py b/pyfpdb/GuiRingPlayerStats.py index f7d32355..765dda54 100644 --- a/pyfpdb/GuiRingPlayerStats.py +++ b/pyfpdb/GuiRingPlayerStats.py @@ -101,6 +101,7 @@ class GuiRingPlayerStats (GuiPlayerStats.GuiPlayerStats): , ["aggfac", True, "AggFac", 1.0, "%2.2f", "str"] , ["aggfrq", True, "AggFreq", 1.0, "%3.1f", "str"] , ["conbet", True, "ContBet", 1.0, "%3.1f", "str"] + , ["rfi", True, "RFI", 1.0, "%3.1f", "str"] , ["steals", True, "Steals", 1.0, "%3.1f", "str"] , ["saw_f", True, "Saw_F", 1.0, "%3.1f", "str"] , ["sawsd", True, "SawSD", 1.0, "%3.1f", "str"] diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 59fa4378..fcebc5c9 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -598,8 +598,8 @@ class Sql: foldToOtherRaisedStreet3 BOOLEAN, foldToOtherRaisedStreet4 BOOLEAN, - stealAttemptChance BOOLEAN, - stealAttempted BOOLEAN, + raiseFirstInChance BOOLEAN, + raisedFirstIn BOOLEAN, foldBbToStealChance BOOLEAN, foldedBbToSteal BOOLEAN, foldSbToStealChance BOOLEAN, @@ -714,8 +714,8 @@ class Sql: foldToOtherRaisedStreet3 BOOLEAN, foldToOtherRaisedStreet4 BOOLEAN, - stealAttemptChance BOOLEAN, - stealAttempted BOOLEAN, + raiseFirstInChance BOOLEAN, + raisedFirstIn BOOLEAN, foldBbToStealChance BOOLEAN, foldedBbToSteal BOOLEAN, foldSbToStealChance BOOLEAN, @@ -829,8 +829,8 @@ class Sql: foldToOtherRaisedStreet3 INT, foldToOtherRaisedStreet4 INT, - stealAttemptChance INT, - stealAttempted INT, + raiseFirstInChance INT, + raisedFirstIn INT, foldBbToStealChance INT, foldedBbToSteal INT, foldSbToStealChance INT, @@ -1025,8 +1025,8 @@ class Sql: foldToOtherRaisedStreet3 INT, foldToOtherRaisedStreet4 INT, - stealAttemptChance INT, - stealAttempted INT, + raiseFirstInChance INT, + raisedFirstIn INT, foldBbToStealChance INT, foldedBbToSteal INT, foldSbToStealChance INT, @@ -1125,8 +1125,8 @@ class Sql: foldToOtherRaisedStreet3 INT, foldToOtherRaisedStreet4 INT, - stealAttemptChance INT, - stealAttempted INT, + raiseFirstInChance INT, + raisedFirstIn INT, foldBbToStealChance INT, foldedBbToSteal INT, foldSbToStealChance INT, @@ -1224,8 +1224,8 @@ class Sql: foldToOtherRaisedStreet3 INT, foldToOtherRaisedStreet4 INT, - stealAttemptChance INT, - stealAttempted INT, + raiseFirstInChance INT, + raisedFirstIn INT, foldBbToStealChance INT, foldedBbToSteal INT, foldSbToStealChance INT, @@ -1364,8 +1364,18 @@ class Sql: sum(hc.foldToOtherRaisedStreet4) AS f_freq_4, sum(hc.wonWhenSeenStreet1) AS w_w_s_1, sum(hc.wonAtSD) AS wmsd, - sum(hc.stealAttemptChance) AS steal_opp, - sum(hc.stealAttempted) AS steal, + sum(case hc.position + when 'S' then hc.raiseFirstInChance + when '0' then hc.raiseFirstInChance + when '1' then hc.raiseFirstInChance + else 0 + ) AS steal_opp, + sum(case hc.position + when 'S' then hc.raisedFirstIn + when '0' then hc.raisedFirstIn + when '1' then hc.raisedFirstIn + else 0 + ) AS steal, sum(hc.foldSbToStealChance) AS SBstolen, sum(hc.foldedSbToSteal) AS SBnotDef, sum(hc.foldBbToStealChance) AS BBstolen, @@ -1463,8 +1473,8 @@ class Sql: sum(hc.foldToOtherRaisedStreet4) AS f_freq_4, sum(hc.wonWhenSeenStreet1) AS w_w_s_1, sum(hc.wonAtSD) AS wmsd, - sum(hc.stealAttemptChance) AS steal_opp, - sum(hc.stealAttempted) AS steal, + sum(hc.raiseFirstInChance) AS steal_opp, + sum(hc.raisedFirstIn) AS steal, sum(hc.foldSbToStealChance) AS SBstolen, sum(hc.foldedSbToSteal) AS SBnotDef, sum(hc.foldBbToStealChance) AS BBstolen, @@ -1589,8 +1599,8 @@ class Sql: cast(hp2.foldToOtherRaisedStreet4 as integer) AS f_freq_4, cast(hp2.wonWhenSeenStreet1 as integer) AS w_w_s_1, cast(hp2.wonAtSD as integer) AS wmsd, - cast(hp2.stealAttemptChance as integer) AS steal_opp, - cast(hp2.stealAttempted as integer) AS steal, + cast(hp2.raiseFirstInChance as integer) AS steal_opp, + cast(hp2.raisedFirstIn as integer) AS steal, cast(hp2.foldSbToStealChance as integer) AS SBstolen, cast(hp2.foldedSbToSteal as integer) AS SBnotDef, cast(hp2.foldBbToStealChance as integer) AS BBstolen, @@ -1691,8 +1701,8 @@ class Sql: cast(hp2.foldToOtherRaisedStreet4 as integer) AS f_freq_4, cast(hp2.wonWhenSeenStreet1 as integer) AS w_w_s_1, cast(hp2.wonAtSD as integer) AS wmsd, - cast(hp2.stealAttemptChance as integer) AS steal_opp, - cast(hp2.stealAttempted as integer) AS steal, + cast(hp2.raiseFirstInChance as integer) AS steal_opp, + cast(hp2.raisedFirstIn as integer) AS steal, cast(hp2.foldSbToStealChance as integer) AS SBstolen, cast(hp2.foldedSbToSteal as integer) AS SBnotDef, cast(hp2.foldBbToStealChance as integer) AS BBstolen, @@ -1794,8 +1804,8 @@ class Sql: cast(hp2.foldToOtherRaisedStreet4 as integer) AS f_freq_4, cast(hp2.wonWhenSeenStreet1 as integer) AS w_w_s_1, cast(hp2.wonAtSD as integer) AS wmsd, - cast(hp2.stealAttemptChance as integer) AS steal_opp, - cast(hp2.stealAttempted as integer) AS steal, + cast(hp2.raiseFirstInChance as integer) AS steal_opp, + cast(hp2.raisedFirstIn as integer) AS steal, cast(hp2.foldSbToStealChance as integer) AS SBstolen, cast(hp2.foldedSbToSteal as integer) AS SBnotDef, cast(hp2.foldBbToStealChance as integer) AS BBstolen, @@ -2026,11 +2036,35 @@ class Sql: ,case when sum(cast(hp.street0_3Bchance as integer)) = 0 then -999 else 100.0*sum(cast(hp.street0_3Bdone as integer))/sum(cast(hp.street0_3Bchance as integer)) end AS pf3 - ,case when sum(cast(hp.stealattemptchance as integer)) = 0 then -999 - else 100.0*sum(cast(hp.stealattempted as integer))/sum(cast(hp.stealattemptchance as integer)) + ,case when sum(cast(hp.raiseFirstInChance as integer)) = 0 then -999 + else 100.0 * sum(cast(hp.raisedFirstIn as integer)) / + sum(cast(hp.raiseFirstInChance as integer)) + end AS rfi + ,case when sum(case hp.position + when 'S' then cast(hp.raiseFirstInChance as integer) + when '0' then cast(hp.raiseFirstInChance as integer) + when '1' then cast(hp.raiseFirstInChance as integer) + else 0 + end + ) = 0 then -999 + else 100.0 * + sum(case hp.position + when 'S' then cast(hp.raisedFirstIn as integer) + when '0' then cast(hp.raisedFirstIn as integer) + when '1' then cast(hp.raisedFirstIn as integer) + else 0 + end + ) / + sum(case hp.position + when 'S' then cast(hp.raiseFirstInChance as integer) + when '0' then cast(hp.raiseFirstInChance as integer) + when '1' then cast(hp.raiseFirstInChance as integer) + else 0 + end + ) end AS steals - ,100.0*sum(cast(hp.street1Seen as integer))/count(1) AS saw_f - ,100.0*sum(cast(hp.sawShowdown as integer))/count(1) AS sawsd + ,100.0*sum(cast(hp.street1Seen as integer))/count(1) AS saw_f + ,100.0*sum(cast(hp.sawShowdown as integer))/count(1) AS sawsd ,case when sum(cast(hp.street1Seen as integer)) = 0 then -999 else 100.0*sum(cast(hp.sawShowdown as integer))/sum(cast(hp.street1Seen as integer)) end AS wtsdwsf @@ -2123,8 +2157,32 @@ class Sql: ,case when sum(cast(hp.street0_3Bchance as integer)) = 0 then -999 else 100.0*sum(cast(hp.street0_3Bdone as integer))/sum(cast(hp.street0_3Bchance as integer)) end AS pf3 - ,case when sum(cast(hp.stealattemptchance as integer)) = 0 then -999 - else 100.0*sum(cast(hp.stealattempted as integer))/sum(cast(hp.stealattemptchance as integer)) + ,case when sum(cast(hp.raiseFirstInChance as integer)) = 0 then -999 + else 100.0 * sum(cast(hp.raisedFirstIn as integer)) / + sum(cast(hp.raiseFirstInChance as integer)) + end AS rfi + ,case when sum(case hp.position + when 'S' then cast(hp.raiseFirstInChance as integer) + when '0' then cast(hp.raiseFirstInChance as integer) + when '1' then cast(hp.raiseFirstInChance as integer) + else 0 + end + ) = 0 then -999 + else 100.0 * + sum(case hp.position + when 'S' then cast(hp.raisedFirstIn as integer) + when '0' then cast(hp.raisedFirstIn as integer) + when '1' then cast(hp.raisedFirstIn as integer) + else 0 + end + ) / + sum(case hp.position + when 'S' then cast(hp.raiseFirstInChance as integer) + when '0' then cast(hp.raiseFirstInChance as integer) + when '1' then cast(hp.raiseFirstInChance as integer) + else 0 + end + ) end AS steals ,100.0*sum(cast(hp.street1Seen as integer))/count(1) AS saw_f ,100.0*sum(cast(hp.sawShowdown as integer))/count(1) AS sawsd @@ -2221,8 +2279,32 @@ class Sql: ,case when sum(cast(hp.street0_3Bchance as integer)) = 0 then -999 else 100.0*sum(cast(hp.street0_3Bdone as integer))/sum(cast(hp.street0_3Bchance as integer)) end AS pf3 - ,case when sum(cast(hp.stealattemptchance as integer)) = 0 then -999 - else 100.0*sum(cast(hp.stealattempted as integer))/sum(cast(hp.stealattemptchance as integer)) + ,case when sum(cast(hp.raiseFirstInChance as integer)) = 0 then -999 + else 100.0 * sum(cast(hp.raisedFirstIn as integer)) / + sum(cast(hp.raiseFirstInChance as integer)) + end AS rfi + ,case when sum(case hp.position + when 'S' then cast(hp.raiseFirstInChance as integer) + when '0' then cast(hp.raiseFirstInChance as integer) + when '1' then cast(hp.raiseFirstInChance as integer) + else 0 + end + ) = 0 then -999 + else 100.0 * + sum(case hp.position + when 'S' then cast(hp.raisedFirstIn as integer) + when '0' then cast(hp.raisedFirstIn as integer) + when '1' then cast(hp.raisedFirstIn as integer) + else 0 + end + ) / + sum(case hp.position + when 'S' then cast(hp.raiseFirstInChance as integer) + when '0' then cast(hp.raiseFirstInChance as integer) + when '1' then cast(hp.raiseFirstInChance as integer) + else 0 + end + ) end AS steals ,100.0*sum(cast(hp.street1Seen as integer))/count(1) AS saw_f ,100.0*sum(cast(hp.sawShowdown as integer))/count(1) AS sawsd @@ -2380,8 +2462,8 @@ class Sql: ,case when sum(street0_3Bchance) = 0 then '0' else format(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),1) end AS pf3 - ,case when sum(stealattemptchance) = 0 then '-' - else format(100.0*sum(stealattempted)/sum(stealattemptchance),1) + ,case when sum(raiseFirstInChance) = 0 then '-' + else format(100.0*sum(raisedFirstIn)/sum(raiseFirstInChance),1) end AS steals ,format(100.0*sum(street1Seen)/sum(HDs),1) AS saw_f ,format(100.0*sum(sawShowdown)/sum(HDs),1) AS sawsd @@ -2485,8 +2567,8 @@ class Sql: ,case when sum(street0_3Bchance) = 0 then '0' else to_char(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),'90D0') end AS pf3 - ,case when sum(stealattemptchance) = 0 then '-' - else to_char(100.0*sum(stealattempted)/sum(stealattemptchance),'90D0') + ,case when sum(raiseFirstInChance) = 0 then '-' + else to_char(100.0*sum(raisedFirstIn)/sum(raiseFirstInChance),'90D0') end AS steals ,to_char(100.0*sum(street1Seen)/sum(HDs),'90D0') AS saw_f ,to_char(100.0*sum(sawShowdown)/sum(HDs),'90D0') AS sawsd @@ -2608,8 +2690,8 @@ class Sql: ,case when sum(street0_3Bchance) = 0 then '0' else format(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),1) end AS pf3 - ,case when sum(stealattemptchance) = 0 then '-' - else format(100.0*sum(stealattempted)/sum(stealattemptchance),1) + ,case when sum(raiseFirstInChance) = 0 then '-' + else format(100.0*sum(raisedFirstIn)/sum(raiseFirstInChance),1) end AS steals ,format(100.0*sum(street1Seen)/sum(HDs),1) AS saw_f ,format(100.0*sum(sawShowdown)/sum(HDs),1) AS sawsd @@ -2742,8 +2824,8 @@ class Sql: ,case when sum(street0_3Bchance) = 0 then '0' else to_char(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),'90D0') end AS pf3 - ,case when sum(stealattemptchance) = 0 then '-' - else to_char(100.0*sum(stealattempted)/sum(stealattemptchance),'90D0') + ,case when sum(raiseFirstInChance) = 0 then '-' + else to_char(100.0*sum(raisedFirstIn)/sum(raiseFirstInChance),'90D0') end AS steals ,to_char(round(100.0*sum(street1Seen)/sum(HDs)),'90D0') AS saw_f ,to_char(round(100.0*sum(sawShowdown)/sum(HDs)),'90D0') AS sawsd @@ -2922,8 +3004,8 @@ class Sql: ,foldToOtherRaisedStreet2 ,foldToOtherRaisedStreet3 ,foldToOtherRaisedStreet4 - ,stealAttemptChance - ,stealAttempted + ,raiseFirstInChance + ,raisedFirstIn ,foldBbToStealChance ,foldedBbToSteal ,foldSbToStealChance @@ -3012,8 +3094,8 @@ class Sql: ,sum(foldToOtherRaisedStreet2) ,sum(foldToOtherRaisedStreet3) ,sum(foldToOtherRaisedStreet4) - ,sum(stealAttemptChance) - ,sum(stealAttempted) + ,sum(raiseFirstInChance) + ,sum(raisedFirstIn) ,sum(foldBbToStealChance) ,sum(foldedBbToSteal) ,sum(foldSbToStealChance) @@ -3103,8 +3185,8 @@ class Sql: ,foldToOtherRaisedStreet2 ,foldToOtherRaisedStreet3 ,foldToOtherRaisedStreet4 - ,stealAttemptChance - ,stealAttempted + ,raiseFirstInChance + ,raisedFirstIn ,foldBbToStealChance ,foldedBbToSteal ,foldSbToStealChance @@ -3193,8 +3275,8 @@ class Sql: ,sum(CAST(foldToOtherRaisedStreet2 as integer)) ,sum(CAST(foldToOtherRaisedStreet3 as integer)) ,sum(CAST(foldToOtherRaisedStreet4 as integer)) - ,sum(CAST(stealAttemptChance as integer)) - ,sum(CAST(stealAttempted as integer)) + ,sum(CAST(raisedFirstInChance as integer)) + ,sum(CAST(raisedFirstIn as integer)) ,sum(CAST(foldBbToStealChance as integer)) ,sum(CAST(foldedBbToSteal as integer)) ,sum(CAST(foldSbToStealChance as integer)) @@ -3284,8 +3366,8 @@ class Sql: ,foldToOtherRaisedStreet2 ,foldToOtherRaisedStreet3 ,foldToOtherRaisedStreet4 - ,stealAttemptChance - ,stealAttempted + ,raiseFirstInChance + ,raisedFirstIn ,foldBbToStealChance ,foldedBbToSteal ,foldSbToStealChance @@ -3374,8 +3456,8 @@ class Sql: ,sum(CAST(foldToOtherRaisedStreet2 as integer)) ,sum(CAST(foldToOtherRaisedStreet3 as integer)) ,sum(CAST(foldToOtherRaisedStreet4 as integer)) - ,sum(CAST(stealAttemptChance as integer)) - ,sum(CAST(stealAttempted as integer)) + ,sum(CAST(raiseFirstInChance as integer)) + ,sum(CAST(raisedFirstIn as integer)) ,sum(CAST(foldBbToStealChance as integer)) ,sum(CAST(foldedBbToSteal as integer)) ,sum(CAST(foldSbToStealChance as integer)) @@ -3465,8 +3547,8 @@ class Sql: foldToOtherRaisedStreet4, wonWhenSeenStreet1, wonAtSD, - stealAttemptChance, - stealAttempted, + raiseFirstInChance, + raisedFirstIn, foldBbToStealChance, foldedBbToSteal, foldSbToStealChance, @@ -3554,8 +3636,8 @@ class Sql: foldToOtherRaisedStreet4=foldToOtherRaisedStreet4+%s, wonWhenSeenStreet1=wonWhenSeenStreet1+%s, wonAtSD=wonAtSD+%s, - stealAttemptChance=stealAttemptChance+%s, - stealAttempted=stealAttempted+%s, + raiseFirstInChance=raiseFirstInChance+%s, + raisedFirstIn=raisedFirstIn+%s, foldBbToStealChance=foldBbToStealChance+%s, foldedBbToSteal=foldedBbToSteal+%s, foldSbToStealChance=foldSbToStealChance+%s, @@ -3873,8 +3955,8 @@ class Sql: foldToOtherRaisedStreet2, foldToOtherRaisedStreet3, foldToOtherRaisedStreet4, - stealAttemptChance, - stealAttempted, + raiseFirstInChance, + raisedFirstIn, foldBbToStealChance, foldedBbToSteal, foldSbToStealChance, From d241ce9b48fc0b709362309aa63c6efea2973a56 Mon Sep 17 00:00:00 2001 From: Ferenc Erki Date: Sat, 17 Jul 2010 00:15:27 +0200 Subject: [PATCH 38/93] Added new stat: fold to steal Added new stat: fold to steal Signed-off-by: steffen123 --- pyfpdb/Stats.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index 72af0bb0..9bb6307c 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -350,6 +350,29 @@ def f_BB_steal(stat_dict, player): 'fBB_s=NA', '(0/0)', '% folded BB to steal') + +def f_steal(stat_dict, player): + """ Folded blind to steal.""" + stat = 0.0 + try: + folded_blind = stat_dict[player]['sbnotdef'] + stat_dict[player]['bbnotdef'] + blind_stolen = stat_dict[player]['sbstolen'] + stat_dict[player]['bbstolen'] + + stat = float(folded_blind)/float(blind_stolen) + return (stat, + '%3.1f' % (100*stat) + '%', + 'fB=%3.1f' % (100*stat) + '%', + 'fB_s=%3.1f' % (100*stat) + '%', + '(%d/%d)' % (folded_blind, blind_stolen), + '% folded blind to steal' + ) + except: + return (stat, + 'NA', + 'fB=NA', + 'fB_s=NA', + '(0/0)', + '% folded blind to steal') def three_B(stat_dict, player): """ Three bet preflop/3rd.""" @@ -777,6 +800,7 @@ if __name__== "__main__": #print "player = ", player, do_stat(stat_dict, player = player, stat = 'steal') #print "player = ", player, do_stat(stat_dict, player = player, stat = 'f_SB_steal') #print "player = ", player, do_stat(stat_dict, player = player, stat = 'f_BB_steal') + #print "player = ", player, do_stat(stat_dict, player = player, stat = 'f_steal') #print "player = ", player, do_stat(stat_dict, player = player, stat = 'three_B') #print "player = ", player, do_stat(stat_dict, player = player, stat = 'WMsF') #print "player = ", player, do_stat(stat_dict, player = player, stat = 'a_freq1') From ac728fffb21c3425e80d8618477db7c3ae676ece Mon Sep 17 00:00:00 2001 From: Worros Date: Thu, 29 Jul 2010 19:59:45 +0800 Subject: [PATCH 39/93] FTP and Timezone fix. Error reported with the following hand hostory from FTP France: Full Tilt Poker.fr Game #22632637058: Daily Euro (174599326), Table 3 - 10/20 - No Limit Hold'em - 20:15:39 CET - 2010/07/27 The existing FTP parser crashed on CET times. 1) Fixed parser to accept CET 2) Added timezone offset into HHC Not happy with TZ1/TZ2 solution. --- pyfpdb/FulltiltToFpdb.py | 19 ++++++++++++------- pyfpdb/HandHistoryConverter.py | 14 +++++++++----- 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index be566ef7..cfeb7de1 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -54,7 +54,7 @@ class Fulltilt(HandHistoryConverter): \$?(?P[.0-9]+)/\$?(?P[.0-9]+)\s(Ante\s\$?(?P[.0-9]+)\s)?-\s \$?(?P[.0-9]+\sCap\s)? (?P[a-zA-Z\/\'\s]+)\s-\s - (?P\d+:\d+:\d+\s\w+\s-\s\d+/\d+/\d+|\d+:\d+\s\w+\s-\s\w+\,\s\w+\s\d+\,\s\d+) + (?P\d+:\d+:\d+\s(?P\w+)\s-\s\d+/\d+/\d+|\d+:\d+\s(?P\w+)\s-\s\w+\,\s\w+\s\d+\,\s\d+) (?P\(partial\))?\n (?:.*?\n(?PHand\s\#(?P=HID)\shas\sbeen\scanceled))? ''', re.VERBOSE|re.DOTALL) @@ -201,13 +201,18 @@ class Fulltilt(HandHistoryConverter): return None hand.handid = m.group('HID') hand.tablename = m.group('TABLE') - - try: - hand.startTime = datetime.datetime.strptime(m.group('DATETIME'), "%H:%M:%S ET - %Y/%m/%d") - except: - hand.startTime = datetime.datetime.strptime(m.group('DATETIME'), "%H:%M ET - %a, %B %d, %Y") - hand.startTime = HandHistoryConverter.changeTimezone(hand.startTime, "ET", "UTC") + timezone = "ET" + if m.group('TZ1') == "CET" or m.group('TZ2') == "CET": + timezone = "CET" + try: + stringformat = "%H:%M:%S " + m.group('TZ1') + " - %Y/%m/%d" + hand.startTime = datetime.datetime.strptime(m.group('DATETIME'), stringformat) + except: + stringformat = "%H:%M " + m.group('TZ2') + " - %a, %B %d, %Y" + hand.startTime = datetime.datetime.strptime(m.group('DATETIME'), stringformat) + + hand.startTime = HandHistoryConverter.changeTimezone(hand.startTime, timezone, "UTC") if m.group("CANCELLED") or m.group("PARTIAL"): raise FpdbParseError(hid=m.group('HID')) diff --git a/pyfpdb/HandHistoryConverter.py b/pyfpdb/HandHistoryConverter.py index 4554c2e8..bfd71640 100644 --- a/pyfpdb/HandHistoryConverter.py +++ b/pyfpdb/HandHistoryConverter.py @@ -497,19 +497,23 @@ or None if we fail to get the info """ @staticmethod def changeTimezone(time, givenTimezone, wantedTimezone): + offest = datetime.timedelta(hours=0) if givenTimezone=="ET" and wantedTimezone=="UTC": # approximate rules for ET daylight savings time: if ( time.month == 12 # all of Dec or (time.month == 11 and time.day > 4) # and most of November or time.month < 3 # and all of Jan/Feb or (time.month == 3 and time.day < 11) ): # and 1st 10 days of March - offset = datetime.timedelta(hours=5) # are EST: assume 5 hour offset (ET without daylight saving) + offset = datetime.timedelta(hours=5) # are EST: assume 5 hour offset (ET without daylight saving) else: - offset = datetime.timedelta(hours=4) # rest is EDT: assume 4 hour offset (ET with daylight saving) - # adjust time into UTC: - time = time + offset + offset = datetime.timedelta(hours=4) # rest is EDT: assume 4 hour offset (ET with daylight saving) #print " tz = %s start = %s" % (tz, str(hand.starttime)) - return time + elif givenTimezone=="CET" and wantedTimezone=="UTC": + offset = datetime.timedelta(hours=1) + + # adjust time into UTC: + time = time + offset + return time #end @staticmethod def changeTimezone @staticmethod From 872bf2fa287626ed4b74764bd007596f011e9d84 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 29 Jul 2010 14:24:23 +0200 Subject: [PATCH 40/93] correct version number --- pyfpdb/fpdb.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 85519afc..cc050d07 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -116,7 +116,7 @@ import Configuration import Exceptions import Stats -VERSION = "0.20.901 plus git" +VERSION = "0.20.902 plus git" class fpdb: From 792a2aec4fa345fa47514b9d34411589af2cf84b Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 29 Jul 2010 16:18:05 +0200 Subject: [PATCH 41/93] finally fix the DST handling properly using pytz --- pyfpdb/HandHistoryConverter.py | 38 +++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/pyfpdb/HandHistoryConverter.py b/pyfpdb/HandHistoryConverter.py index bfd71640..658e7433 100644 --- a/pyfpdb/HandHistoryConverter.py +++ b/pyfpdb/HandHistoryConverter.py @@ -26,8 +26,11 @@ import codecs from decimal import Decimal import operator from xml.dom.minidom import Node + import time import datetime +from pytz import timezone +import pytz import logging # logging has been set up in fpdb.py or HUD_main.py, use their settings: @@ -497,23 +500,24 @@ or None if we fail to get the info """ @staticmethod def changeTimezone(time, givenTimezone, wantedTimezone): - offest = datetime.timedelta(hours=0) - if givenTimezone=="ET" and wantedTimezone=="UTC": - # approximate rules for ET daylight savings time: - if ( time.month == 12 # all of Dec - or (time.month == 11 and time.day > 4) # and most of November - or time.month < 3 # and all of Jan/Feb - or (time.month == 3 and time.day < 11) ): # and 1st 10 days of March - offset = datetime.timedelta(hours=5) # are EST: assume 5 hour offset (ET without daylight saving) - else: - offset = datetime.timedelta(hours=4) # rest is EDT: assume 4 hour offset (ET with daylight saving) - #print " tz = %s start = %s" % (tz, str(hand.starttime)) - elif givenTimezone=="CET" and wantedTimezone=="UTC": - offset = datetime.timedelta(hours=1) - - # adjust time into UTC: - time = time + offset - return time + #print "raw time:",time, "given TZ:", givenTimezone + if wantedTimezone=="UTC": + wantedTimezone = pytz.utc + else: + raise Error #TODO raise appropriate error + + if givenTimezone=="ET": + givenTimezone = timezone('US/Eastern') + elif givenTimezone=="CET": + givenTimezone = timezone('Europe/Berlin') + #Note: Daylight Saving Time is standardised across the EU so this should be fine + else: + raise Error #TODO raise appropriate error + + localisedTime = givenTimezone.localize(time) + utcTime = localisedTime.astimezone(wantedTimezone) + #print "utcTime:",utcTime + return utcTime #end @staticmethod def changeTimezone @staticmethod From a02d16841d5fd89b709ec382ed5c2b2db061e1c6 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 29 Jul 2010 16:45:17 +0200 Subject: [PATCH 42/93] clean up ebuilds --- ...uild => current_stable_and_testing.ebuild} | 0 packaging/gentoo/fpdb-0.20-r1.ebuild | 57 ------------------ packaging/gentoo/fpdb-0.20-r2.ebuild | 59 ------------------- 3 files changed, 116 deletions(-) rename packaging/gentoo/{fpdb-0.20.1.ebuild => current_stable_and_testing.ebuild} (100%) delete mode 100644 packaging/gentoo/fpdb-0.20-r1.ebuild delete mode 100644 packaging/gentoo/fpdb-0.20-r2.ebuild diff --git a/packaging/gentoo/fpdb-0.20.1.ebuild b/packaging/gentoo/current_stable_and_testing.ebuild similarity index 100% rename from packaging/gentoo/fpdb-0.20.1.ebuild rename to packaging/gentoo/current_stable_and_testing.ebuild diff --git a/packaging/gentoo/fpdb-0.20-r1.ebuild b/packaging/gentoo/fpdb-0.20-r1.ebuild deleted file mode 100644 index 988a90b1..00000000 --- a/packaging/gentoo/fpdb-0.20-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# created by Steffen Schaumburg, steffen@schaumburger.info - -EAPI="2" -NEED_PYTHON=2.5 - -#inherit distutils - -DESCRIPTION="A database program to track your online poker games" -HOMEPAGE="http://fpdb.sourceforge.net/" -#SRC_URI="mirror://sourceforge/fpdb/${MY_P}.tar.bz2" - -LICENSE="AGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -#note: this should work on other architectures too, please send me your experiences - -IUSE="graphing mysql postgres sqlite" -RDEPEND=" - mysql? ( virtual/mysql - dev-python/mysql-python ) - postgres? ( dev-db/postgresql-server - dev-python/psycopg ) - sqlite? ( dev-lang/python[sqlite] - dev-python/numpy ) - >=x11-libs/gtk+-2.10 - dev-python/pygtk - graphing? ( dev-python/numpy - dev-python/matplotlib[gtk] ) - dev-python/python-xlib" -DEPEND="${RDEPEND}" - -#src_install() { -# DIRINST="${D}usr/share/games/fpdb/" -# mkdir -p "${DIRINST}" -# cp -R * "${DIRINST}" || die -# -# DIRBIN="${D}usr/games/bin/" -# mkdir -p "${DIRBIN}" -# #echo "pathes" -# #echo "${DIRINST}pyfpdb/fpdb.py" -# #echo "${DIRBIN}fpdb.py" -# #echo -# echo "cd /usr/share/games/fpdb/pyfpdb/ && python fpdb.py" > "${DIRBIN}fpdb" || die -# chmod 755 "${DIRBIN}fpdb" || die -#} - -#src_test() { -#} - -pkg_postinst() { - elog "Fpdb's dependencies have been installed. Please visit fpdb.sourceforge.net" - elog "and download and unpack the archive.You can then start fpdb by running run_fpdb.py." - elog "Note that if you really want to use mysql or postgresql you will have to create" - elog "the database and user yourself and enter it into the fpdb config." -} diff --git a/packaging/gentoo/fpdb-0.20-r2.ebuild b/packaging/gentoo/fpdb-0.20-r2.ebuild deleted file mode 100644 index 2e04719e..00000000 --- a/packaging/gentoo/fpdb-0.20-r2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# created by Steffen Schaumburg, steffen@schaumburger.info - -EAPI="2" -NEED_PYTHON=2.5 - -DESCRIPTION="Fpdb is a free/open source tracker/HUD for use with online poker" -HOMEPAGE="http://fpdb.wiki.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz" - -LICENSE="AGPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -#note: this should work on other architectures too, please send me your experiences - -IUSE="graphing mysql postgres sqlite" -RDEPEND=" - mysql? ( virtual/mysql - dev-python/mysql-python ) - postgres? ( dev-db/postgresql-server - dev-python/psycopg ) - sqlite? ( dev-lang/python[sqlite] - dev-python/numpy ) - >=x11-libs/gtk+-2.10 - dev-python/pygtk - graphing? ( dev-python/numpy - dev-python/matplotlib[gtk] ) - dev-python/python-xlib" -DEPEND="${RDEPEND}" - -src_install() { - dodir /usr/share/games/fpdb - - exeinto /usr/share/games/fpdb - doexe run_fpdb.py - dosym /usr/share/games/fpdb/run_fpdb.py /usr/bin/fpdb - - insinto /usr/share/games/fpdb - doins readme.txt - - insinto /usr/share/games/fpdb/files - doins files/* - - insinto /usr/share/games/fpdb/gfx - doins gfx/* - - insinto /usr/share/games/fpdb/pyfpdb - doins pyfpdb/* - -# pyfpdb/regression-test-files dir is missing for now; cp -r ?? - -} - -pkg_postinst() { - elog "Note that if you really want to use mysql or postgresql you will have to create" - elog "the database and user yourself and enter it into the fpdb config." - elog "You can find the instructions on the project's website." -} From 2329128c91eb6fabbb5cfce896537a2983b18023 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 29 Jul 2010 16:46:32 +0200 Subject: [PATCH 43/93] courtesy of Ferki: fix archive format change, remove unnecessary echos --- packaging/gentoo/current_stable_and_testing.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/packaging/gentoo/current_stable_and_testing.ebuild b/packaging/gentoo/current_stable_and_testing.ebuild index a99e1bfe..d4dbba57 100644 --- a/packaging/gentoo/current_stable_and_testing.ebuild +++ b/packaging/gentoo/current_stable_and_testing.ebuild @@ -10,7 +10,7 @@ NEED_PYTHON=2.5 DESCRIPTION="A free/open source tracker/HUD for use with online poker" HOMEPAGE="http://fpdb.wiki.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz" +SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.bz2" LICENSE="AGPL-3" SLOT="0" @@ -53,9 +53,7 @@ src_install() { pkg_postinst() { games_pkg_postinst - echo - elog "Note that if you really want to use mysql or postgresql you will have to create" - elog "the database and user yourself and enter it into the fpdb config." + elog "Note that if you really want to use mysql or postgresql you will have to create" + elog "the database and user yourself and enter it into the fpdb config." elog "You can find the instructions on the project's website." - echo } From 5e67459c24366b8c2ea00594efcfd41a7074457d Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 29 Jul 2010 16:55:13 +0200 Subject: [PATCH 44/93] add readme for gentoo users, add pytz dependency --- packaging/gentoo/current_stable_and_testing.ebuild | 3 ++- packaging/gentoo/readme.txt | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 packaging/gentoo/readme.txt diff --git a/packaging/gentoo/current_stable_and_testing.ebuild b/packaging/gentoo/current_stable_and_testing.ebuild index d4dbba57..7a27feb0 100644 --- a/packaging/gentoo/current_stable_and_testing.ebuild +++ b/packaging/gentoo/current_stable_and_testing.ebuild @@ -29,7 +29,8 @@ RDEPEND=" dev-python/pygtk graph? ( dev-python/numpy dev-python/matplotlib[gtk] ) - dev-python/python-xlib" + dev-python/python-xlib + dev-python/pytz" DEPEND="${RDEPEND}" src_install() { diff --git a/packaging/gentoo/readme.txt b/packaging/gentoo/readme.txt new file mode 100644 index 00000000..66d3b452 --- /dev/null +++ b/packaging/gentoo/readme.txt @@ -0,0 +1,2 @@ +To use the ebuild please simply copy it into your local portage tree and rename it to fpdb-version.ebuild, for example fpdb-0.20.1.ebuild or fpdb-0.20.902.ebuild. +Here's a little howto on how to utilise 3rd party ebuilds such as this one: http://www.gentoo-wiki.info/HOWTO_Installing_3rd_Party_Ebuilds From de39d1cabfb906b223d1a160864a431a2bb6b90d Mon Sep 17 00:00:00 2001 From: Worros Date: Thu, 29 Jul 2010 22:57:57 +0800 Subject: [PATCH 45/93] Add all Timezones that Stars supports to TZ function All timezones outside of Australia I dodn't define for the moment. Still requires support for actually getting said timezone, but were on our way. --- pyfpdb/HandHistoryConverter.py | 44 ++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/pyfpdb/HandHistoryConverter.py b/pyfpdb/HandHistoryConverter.py index 658e7433..59ba90ef 100644 --- a/pyfpdb/HandHistoryConverter.py +++ b/pyfpdb/HandHistoryConverter.py @@ -511,6 +511,50 @@ or None if we fail to get the info """ elif givenTimezone=="CET": givenTimezone = timezone('Europe/Berlin') #Note: Daylight Saving Time is standardised across the EU so this should be fine + elif givenTimezone == 'HST': # Hawaiian Standard Time + pass + elif givenTimezone == 'AKT': # Alaska Time + pass + elif givenTimezone == 'PT': # Pacific Time + pass + elif givenTimezone == 'MT': # Mountain Time + pass + elif givenTimezone == 'CT': # Central Time + pass + elif givenTimezone == 'AT': # Atlantic Time + pass + elif givenTimezone == 'NT': # Newfoundland Time + pass + elif givenTimezone == 'ART': # Argentinian Time + pass + elif givenTimezone == 'BRT': # Brasilia Time + pass + elif givenTimezone == 'AKT': # Alaska Time + pass + elif givenTimezone == 'WET': # Western European Time + pass + elif givenTimezone == 'EET': # Eastern European Time + pass + elif givenTimezone == 'MSK': # Moscow Standard Time + pass + elif givenTimezone == 'IST': # India Standard Time + pass + elif givenTimezone == 'CCT': # China Coast Time + pass + elif givenTimezone == 'JST': # Japan Standard Time + pass + elif givenTimezone == 'AWST': # Australian Western Standard Time + givenTimezone = timezone('Australia/West') + elif givenTimezone == 'ACST': # Australian Central Standard Time + givenTimezone = timezone('Australia/Darwin') + elif givenTimezone == 'AEST': # Australian Eastern Standard Time + # Each State on the East Coast has different DSTs. + # Melbournce is out because I don't like AFL, Queensland doesn't have DST + # ACT is full of politicians and Tasmania will never notice. + # Using Sydney. + givenTimezone = timezone('Australia/Sydney') + elif givenTimezone == 'NZT': # New Zealand Time + pass else: raise Error #TODO raise appropriate error From 216c9f27146814ad5aae8de91af7bb49337f40df Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 29 Jul 2010 17:31:40 +0200 Subject: [PATCH 46/93] increase DB version for sqlcoder's recent DB change --- pyfpdb/Database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index b2350a07..500dfb0a 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -74,7 +74,7 @@ except ImportError: use_numpy = False -DB_VERSION = 138 +DB_VERSION = 139 # Variance created as sqlite has a bunch of undefined aggregate functions. From a11f4f61cd37b9f7092ec518909cb64ff70ab9e6 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 29 Jul 2010 17:27:07 -0400 Subject: [PATCH 47/93] store game currency --- pyfpdb/Database.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 500dfb0a..c84f4a04 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1822,7 +1822,7 @@ class Database: def getGameTypeId(self, siteid, game): c = self.get_cursor() #FIXME: Fixed for NL at the moment - c.execute(self.sql.query['getGametypeNL'], (siteid, game['type'], game['category'], game['limitType'], + c.execute(self.sql.query['getGametypeNL'], (siteid, game['type'], game['category'], game['limitType'], game['currency'], int(Decimal(game['sb'])*100), int(Decimal(game['bb'])*100))) tmp = c.fetchone() if (tmp == None): @@ -1831,7 +1831,7 @@ class Database: hilo = "s" elif game['category'] in ['razz','27_3draw','badugi']: hilo = "l" - tmp = self.insertGameTypes( (siteid, 'USD', game['type'], game['base'], game['category'], game['limitType'], hilo, + tmp = self.insertGameTypes( (siteid, game['currency'], game['type'], game['base'], game['category'], game['limitType'], hilo, int(Decimal(game['sb'])*100), int(Decimal(game['bb'])*100), 0, 0) ) #FIXME: recognise currency return tmp[0] From 4fa5ce2411e7160f8405b3bf921183adfc7aec6d Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 29 Jul 2010 17:27:36 -0400 Subject: [PATCH 48/93] sql.py change for storing currency --- pyfpdb/SQL.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index fcebc5c9..ae088b36 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -3741,6 +3741,7 @@ class Sql: AND type=%s AND category=%s AND limitType=%s + AND currency=%s AND smallBlind=%s AND bigBlind=%s """ From 981dcc632c44fab086b1d6e5df71bb369d0b5023 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 29 Jul 2010 17:52:19 -0400 Subject: [PATCH 49/93] everleaf euro support --- pyfpdb/EverleafToFpdb.py | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/pyfpdb/EverleafToFpdb.py b/pyfpdb/EverleafToFpdb.py index a069d89c..1fb4381a 100755 --- a/pyfpdb/EverleafToFpdb.py +++ b/pyfpdb/EverleafToFpdb.py @@ -34,9 +34,9 @@ class Everleaf(HandHistoryConverter): # Static regexes re_SplitHands = re.compile(r"\n\n\n+") re_TailSplitHands = re.compile(r"(\n\n\n+)") - re_GameInfo = re.compile(ur"^(Blinds )?(?P\$| €|)(?P[.0-9]+)/(?:\$| €)?(?P[.0-9]+) (?PNL|PL|) ?(?P(Hold\'em|Omaha|7 Card Stud))", re.MULTILINE) - #re.compile(ur"^(Blinds )?(?P\$| €|)(?P[.0-9]+)/(?:\$| €)?(?P[.0-9]+) (?PNL|PL|) (?P(Hold\'em|Omaha|7 Card Stud))", re.MULTILINE) - re_HandInfo = re.compile(ur".*#(?P[0-9]+)\n.*\n(Blinds )?(?:\$| €|)(?P[.0-9]+)/(?:\$| €|)(?P[.0-9]+) (?P.*) - (?P\d\d\d\d/\d\d/\d\d - \d\d:\d\d:\d\d)\nTable (?P.+$)", re.MULTILINE) + re_GameInfo = re.compile(ur"^(Blinds )?(?P[$€]?)(?P[.0-9]+)/(?:\$|€)?(?P[.0-9]+) (?PNL|PL|) ?(?P(Hold\'em|Omaha|7 Card Stud))", re.MULTILINE) + #re.compile(ur"^(Blinds )?(?P\$| €|)(?P[.0-9]+)/(?:\$| €)?(?P[.0-9]+) (?PNL|PL|) ?(?P(Hold\'em|Omaha|7 Card Stud))", re.MULTILINE) + re_HandInfo = re.compile(ur".*#(?P[0-9]+)\n.*\n(Blinds )?(?P[$€])?(?P[.0-9]+)/(?:[$€])?(?P[.0-9]+) (?P.*) - (?P\d\d\d\d/\d\d/\d\d - \d\d:\d\d:\d\d)\nTable (?P
.+$)", re.MULTILINE) re_Button = re.compile(ur"^Seat (?P
.*) \(Real Money\))?", re.MULTILINE) + re_HandInfo = re.compile(ur"^Stage #C?(?P[0-9]+): .*(?P\d\d\d\d-\d\d-\d\d \d\d:\d\d:\d\d).*\n(Table: (?P
.*) \(Real Money\))?", re.MULTILINE) re_TableFromFilename = re.compile(ur".*IHH([0-9]+) (?P
.*) -") # on HORSE STUD games, the table name isn't in the hand info! re_Button = re.compile(ur"Seat #(?P
.+$)", re.MULTILINE) re_Button = re.compile(ur"^Seat (?P
[0-9]+)\.txt") @@ -50,11 +50,11 @@ class Everleaf(HandHistoryConverter): self.compiledPlayers = players player_re = "(?P" + "|".join(map(re.escape, players)) + ")" logging.debug("player_re: "+ player_re) - self.re_PostSB = re.compile(ur"^%s: posts small blind \[(?:\$| €|) (?P[.0-9]+)" % player_re, re.MULTILINE) - self.re_PostBB = re.compile(ur"^%s: posts big blind \[(?:\$| €|) (?P[.0-9]+)" % player_re, re.MULTILINE) - self.re_PostBoth = re.compile(ur"^%s: posts both blinds \[(?:\$| €|) (?P[.0-9]+)" % player_re, re.MULTILINE) - self.re_Antes = re.compile(ur"^%s: posts ante \[(?:\$| €|) (?P[.0-9]+)" % player_re, re.MULTILINE) - self.re_BringIn = re.compile(ur"^%s posts bring-in (?:\$| €|)(?P[.0-9]+)\." % player_re, re.MULTILINE) + self.re_PostSB = re.compile(ur"^%s: posts small blind \[[$€]? (?P[.0-9]+)" % player_re, re.MULTILINE) + self.re_PostBB = re.compile(ur"^%s: posts big blind \[[$€]? (?P[.0-9]+)" % player_re, re.MULTILINE) + self.re_PostBoth = re.compile(ur"^%s: posts both blinds \[[$€]? (?P[.0-9]+)" % player_re, re.MULTILINE) + self.re_Antes = re.compile(ur"^%s: posts ante \[[$€]? (?P[.0-9]+)" % player_re, re.MULTILINE) + self.re_BringIn = re.compile(ur"^%s posts bring-in [$€]? (?P[.0-9]+)\." % player_re, re.MULTILINE) self.re_HeroCards = re.compile(ur"^Dealt to %s \[ (?P.*) \]" % player_re, re.MULTILINE) # ^%s(?P: bets| checks| raises| calls| folds)(\s\[(?:\$| €|) (?P[.,\d]+) (USD|EURO|Chips)\])? self.re_Action = re.compile(ur"^%s(?P: bets| checks| raises| calls| folds)(\s\[(?:[$€]?) (?P[.,\d]+)\s?(USD|EURO|Chips|)\])?" % player_re, re.MULTILINE) From 43de7a7141ed405ef33e94504a2bf83745fe194a Mon Sep 17 00:00:00 2001 From: Worros Date: Sun, 1 Aug 2010 01:17:33 +0800 Subject: [PATCH 57/93] DerivedStats: Fix sawShowdown for sitting out players in cash games --- pyfpdb/DerivedStats.py | 50 ++++++++++++++++-------------------------- 1 file changed, 19 insertions(+), 31 deletions(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index e92bfeaa..9a978d73 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python2 # -*- coding: utf-8 -*- #Copyright 2008-2010 Carl Gherardi @@ -53,14 +53,12 @@ class DerivedStats(): self.handsplayers[player[1]]['street0_3BDone'] = False self.handsplayers[player[1]]['street0_4BChance'] = False self.handsplayers[player[1]]['street0_4BDone'] = False - self.handsplayers[player[1]]['raiseFirstInChance'] = False - self.handsplayers[player[1]]['raisedFirstIn'] = False + self.handsplayers[player[1]]['stealAttemptChance'] = False + self.handsplayers[player[1]]['stealAttempted'] = False self.handsplayers[player[1]]['foldBbToStealChance'] = False self.handsplayers[player[1]]['foldSbToStealChance'] = False self.handsplayers[player[1]]['foldedSbToSteal'] = False self.handsplayers[player[1]]['foldedBbToSteal'] = False - self.handsplayers[player[1]]['tourneyTypeId'] = None - for i in range(5): self.handsplayers[player[1]]['street%dCalls' % i] = 0 self.handsplayers[player[1]]['street%dBets' % i] = 0 @@ -72,8 +70,9 @@ class DerivedStats(): self.handsplayers[player[1]]['street%dCheckCallRaiseDone' %i] = False self.handsplayers[player[1]]['otherRaisedStreet%d' %i] = False self.handsplayers[player[1]]['foldToOtherRaisedStreet%d' %i] = False - + #FIXME - Everything below this point is incomplete. + self.handsplayers[player[1]]['tourneyTypeId'] = 1 for i in range(1,5): self.handsplayers[player[1]]['foldToStreet%dCBChance' %i] = False self.handsplayers[player[1]]['foldToStreet%dCBDone' %i] = False @@ -98,12 +97,11 @@ class DerivedStats(): self.hands['tableName'] = hand.tablename self.hands['siteHandNo'] = hand.handid self.hands['gametypeId'] = None # Leave None, handled later after checking db - self.hands['startTime'] = hand.startTime # format this! + self.hands['handStart'] = hand.starttime # format this! self.hands['importTime'] = None self.hands['seats'] = self.countPlayers(hand) self.hands['maxSeats'] = hand.maxseats self.hands['texture'] = None # No calculation done for this yet. - self.hands['tourneyId'] = hand.tourneyId # This (i think...) is correct for both stud and flop games, as hand.board['street'] disappears, and # those values remain default in stud. @@ -141,12 +139,6 @@ class DerivedStats(): for player in hand.players: self.handsplayers[player[1]]['seatNo'] = player[0] self.handsplayers[player[1]]['startCash'] = int(100 * Decimal(player[2])) - self.handsplayers[player[1]]['sitout'] = False #TODO: implement actual sitout detection - if hand.gametype["type"]=="tour": - self.handsplayers[player[1]]['tourneyTypeId']=hand.tourneyTypeId - self.handsplayers[player[1]]['tourneysPlayersIds'] = hand.tourneysPlayersIds[player[1]] - else: - self.handsplayers[player[1]]['tourneysPlayersIds'] = None # XXX: enumerate(list, start=x) is python 2.6 syntax; 'start' #for i, street in enumerate(hand.actionStreets[2:], start=1): @@ -289,8 +281,11 @@ class DerivedStats(): # actions = hand.actions[hand.actionStreets[-1]] # print "p_actions:", self.pfba(actions), "p_folds:", self.pfba(actions, l=('folds',)), "alliners:", alliners # pas = set.union(self.pfba(actions) - self.pfba(actions, l=('folds',)), alliners) - - p_in = set(x[1] for x in hand.players) + + # hand.players includes people that are sitting out on some sites. + # Those that posted an ante should have been deal cards. + p_in = set([x[0] for x in hand.actions['BLINDSANTES']]) + for (i, street) in enumerate(hand.actionStreets): actions = hand.actions[street] p_in = p_in - self.pfba(actions, l=('folds',)) @@ -315,14 +310,13 @@ class DerivedStats(): self.hands['street%dRaises' % i] = len(filter( lambda action: action[1] in ('raises','bets'), hand.actions[street])) def calcSteals(self, hand): - """Fills raiseFirstInChance|raisedFirstIn, fold(Bb|Sb)ToSteal(Chance|) + """Fills stealAttempt(Chance|ed, fold(Bb|Sb)ToSteal(Chance|) - Steal attempt - open raise on positions 1 0 S - i.e. CO, BU, SB + Steal attempt - open raise on positions 1 0 S - i.e. MP3, CO, BU, SB (note: I don't think PT2 counts SB steals in HU hands, maybe we shouldn't?) Fold to steal - folding blind after steal attemp wo any other callers or raisers """ steal_attempt = False - raised = False steal_positions = (1, 0, 'S') if hand.gametype['base'] == 'stud': steal_positions = (2, 1, 0) @@ -342,13 +336,11 @@ class DerivedStats(): if steal_attempt and act != 'folds': break - if not steal_attempt and not raised: # if posn in steal_positions and not steal_attempt: - self.handsplayers[pname]['raiseFirstInChance'] = True + if posn in steal_positions and not steal_attempt: + self.handsplayers[pname]['stealAttemptChance'] = True if act in ('bets', 'raises'): - self.handsplayers[pname]['raisedFirstIn'] = True - raised = True - if posn in steal_positions: - steal_attempt = True + self.handsplayers[pname]['stealAttempted'] = True + steal_attempt = True if act == 'calls': break @@ -442,11 +434,6 @@ class DerivedStats(): self.handsplayers[player[1]]['street%sAggr' % i] = True else: self.handsplayers[player[1]]['street%sAggr' % i] = False - - if len(aggrers)>0 and i>0: - for playername in others: - self.handsplayers[playername]['otherRaisedStreet%s' % i] = True - #print "otherRaised detected on handid "+str(hand.handid)+" for "+playername+" on street "+str(i) if i > 0 and len(aggrers) > 0: for playername in others: @@ -466,7 +453,8 @@ class DerivedStats(): for act in hand.actions[hand.actionStreets[i+1]]: if act[1] in ('bets'): self.handsplayers[act[0]]['street%sBets' % i] = 1 + self.handsplayers[act[0]]['street%sBets' % i] - + + def folds(self, hand, i): for act in hand.actions[hand.actionStreets[i+1]]: if act[1] in ('folds'): From 832135054c55d93588a6d278dd9ea74dfa1b7724 Mon Sep 17 00:00:00 2001 From: Worros Date: Sun, 1 Aug 2010 02:07:12 +0800 Subject: [PATCH 58/93] Revert "DerivedStats: Fix sawShowdown for sitting out players in cash games" This reverts commit 43de7a7141ed405ef33e94504a2bf83745fe194a. --- pyfpdb/DerivedStats.py | 50 ++++++++++++++++++++++++++---------------- 1 file changed, 31 insertions(+), 19 deletions(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 9a978d73..e92bfeaa 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/python # -*- coding: utf-8 -*- #Copyright 2008-2010 Carl Gherardi @@ -53,12 +53,14 @@ class DerivedStats(): self.handsplayers[player[1]]['street0_3BDone'] = False self.handsplayers[player[1]]['street0_4BChance'] = False self.handsplayers[player[1]]['street0_4BDone'] = False - self.handsplayers[player[1]]['stealAttemptChance'] = False - self.handsplayers[player[1]]['stealAttempted'] = False + self.handsplayers[player[1]]['raiseFirstInChance'] = False + self.handsplayers[player[1]]['raisedFirstIn'] = False self.handsplayers[player[1]]['foldBbToStealChance'] = False self.handsplayers[player[1]]['foldSbToStealChance'] = False self.handsplayers[player[1]]['foldedSbToSteal'] = False self.handsplayers[player[1]]['foldedBbToSteal'] = False + self.handsplayers[player[1]]['tourneyTypeId'] = None + for i in range(5): self.handsplayers[player[1]]['street%dCalls' % i] = 0 self.handsplayers[player[1]]['street%dBets' % i] = 0 @@ -70,9 +72,8 @@ class DerivedStats(): self.handsplayers[player[1]]['street%dCheckCallRaiseDone' %i] = False self.handsplayers[player[1]]['otherRaisedStreet%d' %i] = False self.handsplayers[player[1]]['foldToOtherRaisedStreet%d' %i] = False - + #FIXME - Everything below this point is incomplete. - self.handsplayers[player[1]]['tourneyTypeId'] = 1 for i in range(1,5): self.handsplayers[player[1]]['foldToStreet%dCBChance' %i] = False self.handsplayers[player[1]]['foldToStreet%dCBDone' %i] = False @@ -97,11 +98,12 @@ class DerivedStats(): self.hands['tableName'] = hand.tablename self.hands['siteHandNo'] = hand.handid self.hands['gametypeId'] = None # Leave None, handled later after checking db - self.hands['handStart'] = hand.starttime # format this! + self.hands['startTime'] = hand.startTime # format this! self.hands['importTime'] = None self.hands['seats'] = self.countPlayers(hand) self.hands['maxSeats'] = hand.maxseats self.hands['texture'] = None # No calculation done for this yet. + self.hands['tourneyId'] = hand.tourneyId # This (i think...) is correct for both stud and flop games, as hand.board['street'] disappears, and # those values remain default in stud. @@ -139,6 +141,12 @@ class DerivedStats(): for player in hand.players: self.handsplayers[player[1]]['seatNo'] = player[0] self.handsplayers[player[1]]['startCash'] = int(100 * Decimal(player[2])) + self.handsplayers[player[1]]['sitout'] = False #TODO: implement actual sitout detection + if hand.gametype["type"]=="tour": + self.handsplayers[player[1]]['tourneyTypeId']=hand.tourneyTypeId + self.handsplayers[player[1]]['tourneysPlayersIds'] = hand.tourneysPlayersIds[player[1]] + else: + self.handsplayers[player[1]]['tourneysPlayersIds'] = None # XXX: enumerate(list, start=x) is python 2.6 syntax; 'start' #for i, street in enumerate(hand.actionStreets[2:], start=1): @@ -281,11 +289,8 @@ class DerivedStats(): # actions = hand.actions[hand.actionStreets[-1]] # print "p_actions:", self.pfba(actions), "p_folds:", self.pfba(actions, l=('folds',)), "alliners:", alliners # pas = set.union(self.pfba(actions) - self.pfba(actions, l=('folds',)), alliners) - - # hand.players includes people that are sitting out on some sites. - # Those that posted an ante should have been deal cards. - p_in = set([x[0] for x in hand.actions['BLINDSANTES']]) - + + p_in = set(x[1] for x in hand.players) for (i, street) in enumerate(hand.actionStreets): actions = hand.actions[street] p_in = p_in - self.pfba(actions, l=('folds',)) @@ -310,13 +315,14 @@ class DerivedStats(): self.hands['street%dRaises' % i] = len(filter( lambda action: action[1] in ('raises','bets'), hand.actions[street])) def calcSteals(self, hand): - """Fills stealAttempt(Chance|ed, fold(Bb|Sb)ToSteal(Chance|) + """Fills raiseFirstInChance|raisedFirstIn, fold(Bb|Sb)ToSteal(Chance|) - Steal attempt - open raise on positions 1 0 S - i.e. MP3, CO, BU, SB + Steal attempt - open raise on positions 1 0 S - i.e. CO, BU, SB (note: I don't think PT2 counts SB steals in HU hands, maybe we shouldn't?) Fold to steal - folding blind after steal attemp wo any other callers or raisers """ steal_attempt = False + raised = False steal_positions = (1, 0, 'S') if hand.gametype['base'] == 'stud': steal_positions = (2, 1, 0) @@ -336,11 +342,13 @@ class DerivedStats(): if steal_attempt and act != 'folds': break - if posn in steal_positions and not steal_attempt: - self.handsplayers[pname]['stealAttemptChance'] = True + if not steal_attempt and not raised: # if posn in steal_positions and not steal_attempt: + self.handsplayers[pname]['raiseFirstInChance'] = True if act in ('bets', 'raises'): - self.handsplayers[pname]['stealAttempted'] = True - steal_attempt = True + self.handsplayers[pname]['raisedFirstIn'] = True + raised = True + if posn in steal_positions: + steal_attempt = True if act == 'calls': break @@ -434,6 +442,11 @@ class DerivedStats(): self.handsplayers[player[1]]['street%sAggr' % i] = True else: self.handsplayers[player[1]]['street%sAggr' % i] = False + + if len(aggrers)>0 and i>0: + for playername in others: + self.handsplayers[playername]['otherRaisedStreet%s' % i] = True + #print "otherRaised detected on handid "+str(hand.handid)+" for "+playername+" on street "+str(i) if i > 0 and len(aggrers) > 0: for playername in others: @@ -453,8 +466,7 @@ class DerivedStats(): for act in hand.actions[hand.actionStreets[i+1]]: if act[1] in ('bets'): self.handsplayers[act[0]]['street%sBets' % i] = 1 + self.handsplayers[act[0]]['street%sBets' % i] - - + def folds(self, hand, i): for act in hand.actions[hand.actionStreets[i+1]]: if act[1] in ('folds'): From 14588b3bf91a548b5c79ce9eac102b79e092ab87 Mon Sep 17 00:00:00 2001 From: Worros Date: Sun, 1 Aug 2010 02:09:34 +0800 Subject: [PATCH 59/93] DerivedStats: Fix sawShowdown for sitting out players in cash games --- pyfpdb/DerivedStats.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index e92bfeaa..c81988e6 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -289,8 +289,10 @@ class DerivedStats(): # actions = hand.actions[hand.actionStreets[-1]] # print "p_actions:", self.pfba(actions), "p_folds:", self.pfba(actions, l=('folds',)), "alliners:", alliners # pas = set.union(self.pfba(actions) - self.pfba(actions, l=('folds',)), alliners) - - p_in = set(x[1] for x in hand.players) + + # hand.players includes people that are sitting out on some sites. + # Those that posted an ante should have been deal cards. + p_in = set([x[0] for x in hand.actions['BLINDSANTES']]) for (i, street) in enumerate(hand.actionStreets): actions = hand.actions[street] p_in = p_in - self.pfba(actions, l=('folds',)) From 4394cebbff69ae142abb292f220aaa576483daec Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sat, 31 Jul 2010 20:30:35 +0200 Subject: [PATCH 60/93] adapt ebuild to work with snapshots too --- ...d_testing.ebuild => current_stable.ebuild} | 0 packaging/gentoo/current_testing.ebuild | 60 +++++++++++++++++++ packaging/gentoo/readme.txt | 3 + 3 files changed, 63 insertions(+) rename packaging/gentoo/{current_stable_and_testing.ebuild => current_stable.ebuild} (100%) create mode 100644 packaging/gentoo/current_testing.ebuild diff --git a/packaging/gentoo/current_stable_and_testing.ebuild b/packaging/gentoo/current_stable.ebuild similarity index 100% rename from packaging/gentoo/current_stable_and_testing.ebuild rename to packaging/gentoo/current_stable.ebuild diff --git a/packaging/gentoo/current_testing.ebuild b/packaging/gentoo/current_testing.ebuild new file mode 100644 index 00000000..05483b62 --- /dev/null +++ b/packaging/gentoo/current_testing.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# created by Steffen Schaumburg, steffen@schaumburger.info + +inherit eutils +inherit games + +EAPI="2" +NEED_PYTHON=2.5 + +DESCRIPTION="A free/open source tracker/HUD for use with online poker" +HOMEPAGE="http://fpdb.wiki.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/Snapshots/${P}.tar.bz2" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +#note: this should work on other architectures too, please send me your experiences + +IUSE="graph mysql postgres sqlite" +RDEPEND=" + mysql? ( virtual/mysql + dev-python/mysql-python ) + postgres? ( dev-db/postgresql-server + dev-python/psycopg ) + sqlite? ( dev-lang/python[sqlite] + dev-python/numpy ) + >=x11-libs/gtk+-2.10 + dev-python/pygtk + graph? ( dev-python/numpy + dev-python/matplotlib[gtk] ) + dev-python/python-xlib + dev-python/pytz" +DEPEND="${RDEPEND}" + +src_install() { + insinto "${GAMES_DATADIR}"/${PN} + doins -r gfx + doins -r pyfpdb + doins readme.txt + + exeinto "${GAMES_DATADIR}"/${PN} + doexe run_fpdb.py + + dodir "${GAMES_BINDIR}" + dosym "${GAMES_DATADIR}"/${PN}/run_fpdb.py "${GAMES_BINDIR}"/${PN} + + newicon gfx/fpdb-icon.png ${PN}.png + make_desktop_entry ${PN} + + prepgamesdirs + fperms +x "${GAMES_DATADIR}"/${PN}/pyfpdb/*.pyw +} + +pkg_postinst() { + games_pkg_postinst + elog "Note that if you really want to use mysql or postgresql you will have to create" + elog "the database and user yourself and enter it into the fpdb config." + elog "You can find the instructions on the project's website." +} diff --git a/packaging/gentoo/readme.txt b/packaging/gentoo/readme.txt index 66d3b452..e8317e9d 100644 --- a/packaging/gentoo/readme.txt +++ b/packaging/gentoo/readme.txt @@ -1,2 +1,5 @@ +If you want to run a stable version please use current_stable.ebuild +If you want to run a testing version please use current_testing.ebuild + To use the ebuild please simply copy it into your local portage tree and rename it to fpdb-version.ebuild, for example fpdb-0.20.1.ebuild or fpdb-0.20.902.ebuild. Here's a little howto on how to utilise 3rd party ebuilds such as this one: http://www.gentoo-wiki.info/HOWTO_Installing_3rd_Party_Ebuilds From 66cbf49cdcc6059b4f8ae332393deaf72fff9b02 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sat, 31 Jul 2010 20:55:29 +0100 Subject: [PATCH 61/93] store column info for cash stats in config. Can now enhance gui to let user change column choices --- pyfpdb/Configuration.py | 44 ++++++++++++++++++++++++++ pyfpdb/GuiPrefs.py | 2 +- pyfpdb/GuiRingPlayerStats.py | 61 +++++++++++++++++++----------------- 3 files changed, 77 insertions(+), 30 deletions(-) diff --git a/pyfpdb/Configuration.py b/pyfpdb/Configuration.py index 03858760..27190022 100755 --- a/pyfpdb/Configuration.py +++ b/pyfpdb/Configuration.py @@ -500,6 +500,41 @@ class General(dict): s = s + " %s = %s\n" % (k, self[k]) return(s) +class GUICashStats(list): + """ + + ... + + """ + def __init__(self): + super(GUICashStats, self).__init__() + + def add_elements(self, node): + # is this needed? + for child in node.childNodes: + if child.nodeType == child.ELEMENT_NODE: + col_name, col_title, disp_all, disp_posn, field_format, field_type, xalignment=None, None, True, True, "%s", "str", 0.0 + + if child.hasAttribute('col_name'): col_name = child.getAttribute('col_name') + if child.hasAttribute('col_title'): col_title = child.getAttribute('col_title') + if child.hasAttribute('disp_all'): disp_all = string_to_bool(child.getAttribute('disp_all')) + if child.hasAttribute('disp_posn'): disp_posn = string_to_bool(child.getAttribute('disp_posn')) + if child.hasAttribute('field_format'): field_format = child.getAttribute('field_format') + if child.hasAttribute('field_type'): field_type = child.getAttribute('field_type') + try: + if child.hasAttribute('xalignment'): xalignment = float(child.getAttribute('xalignment')) + except ValueError: + print "bad number in xalignment was ignored" + log.info("bad number in xalignment was ignored") + + self.append( [col_name, col_title, disp_all, disp_posn, field_format, field_type, xalignment] ) + +# def __str__(self): +# s = "" +# for l in self: +# s = s + " %s = %s\n" % (k, self[k]) +# return(s) + class Config: def __init__(self, file = None, dbname = ''): # "file" is a path to an xml file with the fpdb/HUD configuration @@ -555,10 +590,14 @@ class Config: self.db_selected = None # database the user would like to use self.tv = None self.general = General() + self.gui_cash_stats = GUICashStats() for gen_node in doc.getElementsByTagName("general"): self.general.add_elements(node=gen_node) # add/overwrite elements in self.general + for gcs_node in doc.getElementsByTagName("gui_cash_stats"): + self.gui_cash_stats.add_elements(node=gcs_node) # add/overwrite elements in self.gui_cash_stats + # s_sites = doc.getElementsByTagName("supported_sites") for site_node in doc.getElementsByTagName("site"): site = Site(node = site_node) @@ -1146,6 +1185,9 @@ class Config: def get_general_params(self): return( self.general ) + def get_gui_cash_stat_params(self): + return( self.gui_cash_stats ) + if __name__== "__main__": c = Config() @@ -1219,6 +1261,8 @@ if __name__== "__main__": print "start up path = ", c.execution_path("") + print "gui_cash_stats =", c.gui_cash_stats + try: from xml.dom.ext import PrettyPrint for site_node in c.doc.getElementsByTagName("site"): diff --git a/pyfpdb/GuiPrefs.py b/pyfpdb/GuiPrefs.py index 15ae7338..c706e88c 100755 --- a/pyfpdb/GuiPrefs.py +++ b/pyfpdb/GuiPrefs.py @@ -95,7 +95,7 @@ class GuiPrefs: if node.hasAttributes(): for i in xrange(node.attributes.length): self.configStore.append( iter, [node, node.attributes.item(i).localName, node.attributes.item(i).value] ) - if node.attributes.item(i).localName in ('site_name', 'game_name', 'stat_name', 'name', 'db_server', 'site'): + if node.attributes.item(i).localName in ('site_name', 'game_name', 'stat_name', 'name', 'db_server', 'site', 'col_name'): name = " " + node.attributes.item(i).value if name != "": self.configStore.set_value(iter, 1, setting+name) diff --git a/pyfpdb/GuiRingPlayerStats.py b/pyfpdb/GuiRingPlayerStats.py index 30643720..67bfd246 100644 --- a/pyfpdb/GuiRingPlayerStats.py +++ b/pyfpdb/GuiRingPlayerStats.py @@ -31,7 +31,9 @@ import Filters import Charset import GuiPlayerStats -colalias,colshowsumm,colshowposn,colheading,colxalign,colformat,coltype = 0,1,2,3,4,5,6 +#colalias,colshowsumm,colshowposn,colheading,colxalign,colformat,coltype = 0,1,2,3,4,5,6 +#new order in config file: +colalias,colheading,colshowsumm,colshowposn,colformat,coltype,colxalign = 0,1,2,3,4,5,6 ranks = {'x':0, '2':2, '3':3, '4':4, '5':5, '6':6, '7':7, '8':8, '9':9, 'T':10, 'J':11, 'Q':12, 'K':13, 'A':14} class GuiRingPlayerStats (GuiPlayerStats.GuiPlayerStats): @@ -89,34 +91,35 @@ class GuiRingPlayerStats (GuiPlayerStats.GuiPlayerStats): # ToDo: create popup to adjust column config # columns to display, keys match column name returned by sql, values in tuple are: # is column displayed(summary then position), column heading, xalignment, formatting, celltype - self.columns = [ ["game", True, True, "Game", 0.0, "%s", "str"] - , ["hand", False, False, "Hand", 0.0, "%s", "str"] # true not allowed for this line - , ["plposition", False, False, "Posn", 1.0, "%s", "str"] # true not allowed for this line (set in code) - , ["pname", False, False, "Name", 0.0, "%s", "str"] # true not allowed for this line (set in code) - , ["n", True, True, "Hds", 1.0, "%1.0f", "str"] - , ["avgseats", False, False, "Seats", 1.0, "%3.1f", "str"] - , ["vpip", True, True, "VPIP", 1.0, "%3.1f", "str"] - , ["pfr", True, True, "PFR", 1.0, "%3.1f", "str"] - , ["pf3", True, True, "PF3", 1.0, "%3.1f", "str"] - , ["aggfac", True, True, "AggFac", 1.0, "%2.2f", "str"] - , ["aggfrq", True, True, "AggFreq", 1.0, "%3.1f", "str"] - , ["conbet", True, True, "ContBet", 1.0, "%3.1f", "str"] - , ["rfi", True, True, "RFI", 1.0, "%3.1f", "str"] - , ["steals", True, True, "Steals", 1.0, "%3.1f", "str"] - , ["saw_f", True, True, "Saw_F", 1.0, "%3.1f", "str"] - , ["sawsd", True, True, "SawSD", 1.0, "%3.1f", "str"] - , ["wtsdwsf", True, True, "WtSDwsF", 1.0, "%3.1f", "str"] - , ["wmsd", True, True, "W$SD", 1.0, "%3.1f", "str"] - , ["flafq", True, True, "FlAFq", 1.0, "%3.1f", "str"] - , ["tuafq", True, True, "TuAFq", 1.0, "%3.1f", "str"] - , ["rvafq", True, True, "RvAFq", 1.0, "%3.1f", "str"] - , ["pofafq", False, False, "PoFAFq", 1.0, "%3.1f", "str"] - , ["net", True, True, "Net($)", 1.0, "%6.2f", "cash"] - , ["bbper100", True, True, "bb/100", 1.0, "%4.2f", "str"] - , ["rake", True, True, "Rake($)", 1.0, "%6.2f", "cash"] - , ["bb100xr", True, True, "bbxr/100", 1.0, "%4.2f", "str"] - , ["variance", True, True, "Variance", 1.0, "%5.2f", "str"] - ] + self.columns = self.conf.get_gui_cash_stat_params() +# self.columns = [ ["game", True, True, "Game", 0.0, "%s", "str"] +# , ["hand", False, False, "Hand", 0.0, "%s", "str"] # initial setting ignored for this line (set in code) +# , ["plposition", False, False, "Posn", 1.0, "%s", "str"] # initial setting ignored for this line (set in code) +# , ["pname", False, False, "Name", 0.0, "%s", "str"] # initial setting ignored for this line (set in code) +# , ["n", True, True, "Hds", 1.0, "%1.0f", "str"] +# , ["avgseats", False, False, "Seats", 1.0, "%3.1f", "str"] +# , ["vpip", True, True, "VPIP", 1.0, "%3.1f", "str"] +# , ["pfr", True, True, "PFR", 1.0, "%3.1f", "str"] +# , ["pf3", True, True, "PF3", 1.0, "%3.1f", "str"] +# , ["aggfac", True, True, "AggFac", 1.0, "%2.2f", "str"] +# , ["aggfrq", True, True, "AggFreq", 1.0, "%3.1f", "str"] +# , ["conbet", True, True, "ContBet", 1.0, "%3.1f", "str"] +# , ["rfi", True, True, "RFI", 1.0, "%3.1f", "str"] +# , ["steals", True, True, "Steals", 1.0, "%3.1f", "str"] +# , ["saw_f", True, True, "Saw_F", 1.0, "%3.1f", "str"] +# , ["sawsd", True, True, "SawSD", 1.0, "%3.1f", "str"] +# , ["wtsdwsf", True, True, "WtSDwsF", 1.0, "%3.1f", "str"] +# , ["wmsd", True, True, "W$SD", 1.0, "%3.1f", "str"] +# , ["flafq", True, True, "FlAFq", 1.0, "%3.1f", "str"] +# , ["tuafq", True, True, "TuAFq", 1.0, "%3.1f", "str"] +# , ["rvafq", True, True, "RvAFq", 1.0, "%3.1f", "str"] +# , ["pofafq", False, False, "PoFAFq", 1.0, "%3.1f", "str"] +# , ["net", True, True, "Net($)", 1.0, "%6.2f", "cash"] +# , ["bbper100", True, True, "bb/100", 1.0, "%4.2f", "str"] +# , ["rake", True, True, "Rake($)", 1.0, "%6.2f", "cash"] +# , ["bb100xr", True, True, "bbxr/100", 1.0, "%4.2f", "str"] +# , ["variance", True, True, "Variance", 1.0, "%5.2f", "str"] +# ] # Detail filters: This holds the data used in the popup window, extra values are # added at the end of these lists during processing From c136f7a2dcab1809b2a243d8eb0252e70dbd2580 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sat, 31 Jul 2010 22:27:24 +0200 Subject: [PATCH 62/93] fix pgsql table creation --- pyfpdb/SQL.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index fcebc5c9..7ba5641b 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -146,8 +146,8 @@ class Sql: id BIGSERIAL, PRIMARY KEY (id), tourneysPlayerId INT NOT NULL, FOREIGN KEY (tourneysPlayerId) REFERENCES TourneysPlayers(id), playerId INT NOT NULL, FOREIGN KEY (playerId) REFERENCES Players(id), - buyInPercentage FLOAT UNSIGNED NOT NULL, - payOffPercentage FLOAT UNSIGNED NOT NULL)""" + buyInPercentage FLOAT NOT NULL, + payOffPercentage FLOAT NOT NULL)""" elif db_server == 'sqlite': self.query['createBackingsTable'] = """CREATE TABLE Backings ( id INTEGER PRIMARY KEY, From b4ff46ec4fe834e50c7843643e8a491263877322 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sat, 31 Jul 2010 22:31:55 +0200 Subject: [PATCH 63/93] fix typo in pgsql raiseFirstInChance --- pyfpdb/SQL.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 7ba5641b..06c6d648 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -3275,7 +3275,7 @@ class Sql: ,sum(CAST(foldToOtherRaisedStreet2 as integer)) ,sum(CAST(foldToOtherRaisedStreet3 as integer)) ,sum(CAST(foldToOtherRaisedStreet4 as integer)) - ,sum(CAST(raisedFirstInChance as integer)) + ,sum(CAST(raiseFirstInChance as integer)) ,sum(CAST(raisedFirstIn as integer)) ,sum(CAST(foldBbToStealChance as integer)) ,sum(CAST(foldedBbToSteal as integer)) From a3e55ba3f51b092cd973269761a90419e5390df3 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sat, 31 Jul 2010 21:38:52 +0100 Subject: [PATCH 64/93] smarten up names of displayed categories and settings --- pyfpdb/GuiPrefs.py | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/pyfpdb/GuiPrefs.py b/pyfpdb/GuiPrefs.py index c706e88c..b28f975d 100755 --- a/pyfpdb/GuiPrefs.py +++ b/pyfpdb/GuiPrefs.py @@ -26,6 +26,20 @@ import gobject import Configuration +rewrite = { 'general' : 'General', 'supported_databases' : 'Databases' + , 'import' : 'Import', 'hud_ui' : 'HUD' + , 'supported_sites' : 'Sites', 'supported_games' : 'Games' + , 'popup_windows' : 'Popup Windows', 'pu' : 'Window' + , 'pu_name' : 'Popup Name', 'pu_stat' : 'Stat' + , 'pu_stat_name' : 'Stat Name' + , 'aux_windows' : 'Auxiliary Windows', 'aw stud_mucked' : 'stud_mucked' + , 'aw mucked' : 'mucked', 'hhcs' : 'Hand History Converters' + , 'gui_cash_stats' : 'Ring Player Stats', 'field_type' : 'Field Type' + , 'col_title' : 'Column Heading', 'xalignment' : 'Left/Right Align' + , 'disp_all' : 'Show in Summaries', 'disp_posn' : 'Show in Position Stats' + , 'col_name' : 'Stat Name', 'field_format' : 'Format' + } + class GuiPrefs: def __init__(self, config, mainwin, dia, parentwin): @@ -78,6 +92,13 @@ class GuiPrefs: self.tree_box.show() self.dialog.show() + def rewriteText(self, s): + upd = False + if s in rewrite: + s = rewrite[s] + upd = True + return( (s,upd) ) + def addTreeRows(self, parent, node): if (node.nodeType == node.ELEMENT_NODE): (setting, value) = (node.nodeName, None) @@ -94,11 +115,15 @@ class GuiPrefs: iter = self.configStore.append( parent, [node, setting, value] ) if node.hasAttributes(): for i in xrange(node.attributes.length): - self.configStore.append( iter, [node, node.attributes.item(i).localName, node.attributes.item(i).value] ) + localName,updated = self.rewriteText( node.attributes.item(i).localName ) + self.configStore.append( iter, [node, localName, node.attributes.item(i).value] ) if node.attributes.item(i).localName in ('site_name', 'game_name', 'stat_name', 'name', 'db_server', 'site', 'col_name'): name = " " + node.attributes.item(i).value - if name != "": - self.configStore.set_value(iter, 1, setting+name) + + label,updated = self.rewriteText(setting+name) + if name != "" or updated: + self.configStore.set_value(iter, 1, label) + if node.hasChildNodes(): for elem in node.childNodes: self.addTreeRows(iter, elem) From e8d39711dd9d67746d384bf6eeb9e55388fd21bb Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Sat, 31 Jul 2010 17:24:06 -0400 Subject: [PATCH 65/93] fix from carl for wtsd, more tweaks to everleaf regexes --- pyfpdb/DerivedStats.py | 5 ++++- pyfpdb/EverleafToFpdb.py | 16 ++++++++-------- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index e92bfeaa..7778c956 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -290,7 +290,10 @@ class DerivedStats(): # print "p_actions:", self.pfba(actions), "p_folds:", self.pfba(actions, l=('folds',)), "alliners:", alliners # pas = set.union(self.pfba(actions) - self.pfba(actions, l=('folds',)), alliners) - p_in = set(x[1] for x in hand.players) + # hand.players includes people that are sitting out on some sites. + # Those that posted an ante should have been deal cards. + p_in = set([x[0] for x in hand.actions['BLINDSANTES']]) + for (i, street) in enumerate(hand.actionStreets): actions = hand.actions[street] p_in = p_in - self.pfba(actions, l=('folds',)) diff --git a/pyfpdb/EverleafToFpdb.py b/pyfpdb/EverleafToFpdb.py index 9da5966f..454f7e79 100755 --- a/pyfpdb/EverleafToFpdb.py +++ b/pyfpdb/EverleafToFpdb.py @@ -37,8 +37,8 @@ class Everleaf(HandHistoryConverter): re_GameInfo = re.compile(ur"^(Blinds )?(?P[$€]?)(?P[.0-9]+)/[$€]?(?P[.0-9]+) (?PNL|PL|) ?(?P(Hold\'em|Omaha|7 Card Stud))", re.MULTILINE) #re.compile(ur"^(Blinds )?(?P\$| €|)(?P[.0-9]+)/(?:\$| €)?(?P[.0-9]+) (?PNL|PL|) ?(?P(Hold\'em|Omaha|7 Card Stud))", re.MULTILINE) re_HandInfo = re.compile(ur".*#(?P[0-9]+)\n.*\n(Blinds )?(?P[$€])?(?P[.0-9]+)/(?:[$€])?(?P[.0-9]+) (?P.*) - (?P\d\d\d\d/\d\d/\d\d - \d\d:\d\d:\d\d)\nTable (?P
.+$)", re.MULTILINE) - re_Button = re.compile(ur"^Seat (?P
[0-9]+)\.txt") @@ -50,15 +50,15 @@ class Everleaf(HandHistoryConverter): self.compiledPlayers = players player_re = "(?P" + "|".join(map(re.escape, players)) + ")" logging.debug("player_re: "+ player_re) - self.re_PostSB = re.compile(ur"^%s: posts small blind \[[$€]? (?P[.0-9]+)" % player_re, re.MULTILINE) - self.re_PostBB = re.compile(ur"^%s: posts big blind \[[$€]? (?P[.0-9]+)" % player_re, re.MULTILINE) - self.re_PostBoth = re.compile(ur"^%s: posts both blinds \[[$€]? (?P[.0-9]+)" % player_re, re.MULTILINE) - self.re_Antes = re.compile(ur"^%s: posts ante \[[$€]? (?P[.0-9]+)" % player_re, re.MULTILINE) + self.re_PostSB = re.compile(ur"^%s: posts small blind \[[$€]? (?P[.0-9]+)\s.*\]$" % player_re, re.MULTILINE) + self.re_PostBB = re.compile(ur"^%s: posts big blind \[[$€]? (?P[.0-9]+)\s.*\]$" % player_re, re.MULTILINE) + self.re_PostBoth = re.compile(ur"^%s: posts both blinds \[[$€]? (?P[.0-9]+)\s.*\]$" % player_re, re.MULTILINE) + self.re_Antes = re.compile(ur"^%s: posts ante \[[$€]? (?P[.0-9]+)\s.*\]$" % player_re, re.MULTILINE) self.re_BringIn = re.compile(ur"^%s posts bring-in [$€]? (?P[.0-9]+)\." % player_re, re.MULTILINE) - self.re_HeroCards = re.compile(ur"^Dealt to %s \[ (?P.*) \]" % player_re, re.MULTILINE) + self.re_HeroCards = re.compile(ur"^Dealt to %s \[ (?P.*) \]$" % player_re, re.MULTILINE) # ^%s(?P: bets| checks| raises| calls| folds)(\s\[(?:\$| €|) (?P[.,\d]+) (USD|EURO|Chips)\])? self.re_Action = re.compile(ur"^%s(?P: bets| checks| raises| calls| folds)(\s\[(?:[$€]?) (?P[.,\d]+)\s?(USD|EURO|Chips|)\])?" % player_re, re.MULTILINE) - self.re_ShowdownAction = re.compile(ur"^%s shows \[ (?P.*) \]" % player_re, re.MULTILINE) + self.re_ShowdownAction = re.compile(ur"^%s shows \[ (?P.*) \]$" % player_re, re.MULTILINE) self.re_CollectPot = re.compile(ur"^%s wins (?:[$€]?)\s?(?P[.\d]+) (USD|EURO|chips)(.*?\[ (?P.*?) \])?" % player_re, re.MULTILINE) self.re_SitsOut = re.compile(ur"^%s sits out" % player_re, re.MULTILINE) From ed239668c0e19d228017f5c421faf4d4291ebae0 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sat, 31 Jul 2010 23:55:05 +0200 Subject: [PATCH 66/93] fix pgsql index and foreign key drops --- pyfpdb/Database.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 500dfb0a..2aea6790 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -951,6 +951,7 @@ class Database: # hmmm, tested by commenting out rollback in grapher. lock seems to work but # then drop still hangs :-( does work in some tests though?? # will leave code here for now pending further tests/enhancement ... + c.execute("BEGIN TRANSACTION") c.execute( "lock table %s in exclusive mode nowait" % (fk['fktab'],) ) #print "after lock, status:", c.statusmessage #print "alter table %s drop constraint %s_%s_fkey" % (fk['fktab'], fk['fktab'], fk['fkcol']) @@ -961,6 +962,7 @@ class Database: if "does not exist" not in str(sys.exc_value): print "warning: drop pg fk %s_%s_fkey failed: %s, continuing ..." \ % (fk['fktab'], fk['fkcol'], str(sys.exc_value).rstrip('\n') ) + c.execute("END TRANSACTION") except: print "warning: constraint %s_%s_fkey not dropped: %s, continuing ..." \ % (fk['fktab'],fk['fkcol'], str(sys.exc_value).rstrip('\n')) @@ -984,6 +986,7 @@ class Database: print "dropping pg index ", idx['tab'], idx['col'] try: # try to lock table to see if index drop will work: + c.execute("BEGIN TRANSACTION") c.execute( "lock table %s in exclusive mode nowait" % (idx['tab'],) ) #print "after lock, status:", c.statusmessage try: @@ -995,6 +998,7 @@ class Database: if "does not exist" not in str(sys.exc_value): print "warning: drop index %s_%s_idx failed: %s, continuing ..." \ % (idx['tab'],idx['col'], str(sys.exc_value).rstrip('\n')) + c.execute("END TRANSACTION") except: print "warning: index %s_%s_idx not dropped %s, continuing ..." \ % (idx['tab'],idx['col'], str(sys.exc_value).rstrip('\n')) From d3f99eec9b18324c63557e4688e0c8289ea46a8a Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Sun, 1 Aug 2010 03:05:35 -0400 Subject: [PATCH 67/93] call reposition_windows after doing a window move, so that the user doesn't need to hit the menu option to do it (reposition_windows manages to successfully move the hidden windows, whereas the original move doesn't, for some reason) --- pyfpdb/Hud.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyfpdb/Hud.py b/pyfpdb/Hud.py index 8d3d7d0c..a92682e7 100644 --- a/pyfpdb/Hud.py +++ b/pyfpdb/Hud.py @@ -469,6 +469,9 @@ class Hud: # While we're at it, fix the positions of mucked cards too for aux in self.aux_windows: aux.update_card_positions() + + self.reposition_windows() + # call reposition_windows, which apparently moves even hidden windows, where this function does not, even though they do the same thing, afaict return True From 5f2acf9fe658403a3277956d5d04ace2ddfdec95 Mon Sep 17 00:00:00 2001 From: gimick Date: Sun, 1 Aug 2010 23:51:33 +0100 Subject: [PATCH 68/93] py2exe: get pytz working; make script more restartable; update walkthrough --- .../windows/py2exeWalkthroughPython26.txt | 28 ++++++++- pyfpdb/py2exe_setup.py | 57 +++++++++++-------- 2 files changed, 60 insertions(+), 25 deletions(-) diff --git a/packaging/windows/py2exeWalkthroughPython26.txt b/packaging/windows/py2exeWalkthroughPython26.txt index e379cdae..b2221bc1 100644 --- a/packaging/windows/py2exeWalkthroughPython26.txt +++ b/packaging/windows/py2exeWalkthroughPython26.txt @@ -30,15 +30,41 @@ py2exe 0.6.9 ... http://sourceforge.net/projects/py2exe/files/py2exe/0.6.9/py2ex psycopg2 ... http://www.stickpeople.com/projects/python/win-psycopg/psycopg2-2.2.1.win32-py2.6-pg8.4.3-release.exe (Note: stickpeople is the offical repository, not a community build) + 1.2/ MySQL MySQL-python-1.2.3.win32-py2.6-fpdb0.20.exe ... http://www.mediafire.com/file/iodnnnznmj1/MySQL-python-1.2.3.win32-py2.6-fpdb0.20.exe -This is an intaller built from source by gimick. There are no official mysql-python2.6 build for windows. +This is an intaller built from source by gimick. There are no official mysql-python2.6 builds for windows. Community builds are also available from some developers. see www.codegood.com for example. +1.3/ pytz fixup to work in an executable package + +pytz needs runtime access to timezone definition files. pytz is hard-coded to search in the directory from which the pytz .py modules are being run. +In a py2exe package, this directory is actually a library.zip container file, so windows cannot find the timezone definitions, and will crash the app. + +We need to make a one-line change to pytz to search in the current working directory (which is not a container), and not the application directory. +The py2exe script copies the timezone datafiles into the package folder pyfpdb/zoneinfo. + +Thanks to Jeff Peck gmail.com> on the py2exe mailing list for documenting this problem and solution. + +1.3.1/ Navigate to C:\Python26\Lib\site-packages\pytz +1.3.2/ Edit __init__.py +1.3.3/ At line 55 replace the following line(s): + + filename = os.path.join(os.path.dirname(__file__), + 'zoneinfo', *name_parts) + +with this line: + + filename = os.path.join(os.getcwd(), 'zoneinfo', *name_parts) + +1.3.4/ Save and exit + + + Step 2 Setup GTK ----------------- diff --git a/pyfpdb/py2exe_setup.py b/pyfpdb/py2exe_setup.py index 1be0b437..42d22e21 100644 --- a/pyfpdb/py2exe_setup.py +++ b/pyfpdb/py2exe_setup.py @@ -72,6 +72,14 @@ Py2exe script for fpdb. import os import sys + +# get out now if parameter not passed +try: + sys.argv[1] <> "" +except: + print "A parameter is required, quitting now" + quit() + from distutils.core import setup import py2exe import glob @@ -82,7 +90,6 @@ from datetime import date origIsSystemDLL = py2exe.build_exe.isSystemDLL def isSystemDLL(pathname): - #VisC++ runtime msvcp71.dll removed; py2.6 needs msvcp90.dll which will not be distributed. #dwmapi appears to be vista-specific file, not XP if os.path.basename(pathname).lower() in ("dwmapi.dll"): return 0 @@ -97,7 +104,7 @@ def remove_tree(top): # could delete all your disk files. # sc: Nicked this from somewhere, added the if statement to try # make it a bit safer - if top in ('build','dist','gfx') and os.path.basename(os.getcwd()) == 'pyfpdb': + if top in ('build','dist','pyfpdb',dist_dirname) and os.path.basename(os.getcwd()) == 'pyfpdb': #print "removing directory '"+top+"' ..." for root, dirs, files in os.walk(top, topdown=False): for name in files: @@ -114,12 +121,6 @@ def test_and_remove(top): print "Unexpected file '"+top+"' found. Exiting." exit() -# remove build and dist dirs if they exist -test_and_remove('dist') -test_and_remove('build') -#test_and_remove('gfx') - - today = date.today().strftime('%Y%m%d') print "\n" + r"Output will be created in \pyfpdb\ and \fpdb_"+today+'\\' #print "Enter value for XXX (any length): ", # the comma means no newline @@ -128,7 +129,13 @@ dist_dirname = r'fpdb-' + today + '-exe' dist_dir = r'..\fpdb-' + today + '-exe' print -test_and_remove(dist_dir) +# remove build and dist dirs if they exist +test_and_remove('dist') +test_and_remove('build') +test_and_remove('pyfpdb') + +test_and_remove(dist_dirname) + setup( name = 'fpdb', @@ -142,7 +149,7 @@ setup( options = {'py2exe': { 'packages' : ['encodings', 'matplotlib'], - 'includes' : ['gio', 'cairo', 'pango', 'pangocairo', 'atk', 'gobject' + 'includes' : ['gio', 'cairo', 'pango', 'pangocairo', 'atk', 'gobject' ,'matplotlib.numerix.random_array' ,'AbsoluteToFpdb', 'BetfairToFpdb' ,'CarbonToFpdb', 'EverleafToFpdb' @@ -151,8 +158,8 @@ setup( ,'UltimateBetToFpdb', 'Win2dayToFpdb' ], 'excludes' : ['_tkagg', '_agg2', 'cocoaagg', 'fltkagg'], # surely we need this? '_gtkagg' - 'dll_excludes': ['libglade-2.0-0.dll', 'libgdk-win32-2.0-0.dll' - ,'libgobject-2.0-0.dll', 'msvcr90.dll', 'MSVCP90.dll', 'MSVCR90.dll','msvcr90.dll'], + 'dll_excludes': ['libglade-2.0-0.dll', 'libgdk-win32-2.0-0.dll', 'libgobject-2.0-0.dll' + , 'msvcr90.dll', 'MSVCP90.dll', 'MSVCR90.dll','msvcr90.dll'], # these are vis c / c++ runtimes, and must not be redistributed } }, @@ -166,25 +173,28 @@ setup( ] + matplotlib.get_py2exe_datafiles() ) - +# rename completed output package as pyfpdb os.rename('dist', 'pyfpdb') -# these instructions no longer needed: -#print '\n' + 'If py2exe was successful add the \\etc \\lib and \\share dirs ' -#print 'from your gtk dir to \\%s\\pyfpdb\\\n' % dist_dirname -#print 'Also copy libgobject-2.0-0.dll and libgdk-win32-2.0-0.dll from \\bin' -#print 'into there' +# pull pytz zoneinfo into pyfpdb package folder +src_dir = r'c:\python26\Lib\site-packages\pytz\zoneinfo' +src_dir = src_dir.replace('\\', '\\\\') +dest_dir = os.path.join(r'pyfpdb', 'zoneinfo') +shutil.copytree( src_dir, dest_dir ) +# shunt pyfpdb package over to the distribution folder dest = os.path.join(dist_dirname, 'pyfpdb') -#print "try renaming pyfpdb to", dest +# print "try renaming pyfpdb to", dest dest = dest.replace('\\', '\\\\') -#print "dest is now", dest +# print "dest is now", dest os.rename( 'pyfpdb', dest ) +# prompt for gtk location -print "Enter directory name for GTK (e.g. c:\code\gtk_2.14.7-20090119)\n: ", # the comma means no newline -gtk_dir = sys.stdin.readline().rstrip() - +gtk_dir = "" +while not os.path.exists(gtk_dir): + print "Enter directory name for GTK (e.g. c:\code\gtk_2.14.7-20090119)\n: ", # the comma means no newline + gtk_dir = sys.stdin.readline().rstrip() print "\ncopying files and dirs from ", gtk_dir, "to", dest.replace('\\\\', '\\'), "..." src = os.path.join(gtk_dir, 'bin', 'libgdk-win32-2.0-0.dll') @@ -195,7 +205,6 @@ src = os.path.join(gtk_dir, 'bin', 'libgobject-2.0-0.dll') src = src.replace('\\', '\\\\') shutil.copy( src, dest ) - src_dir = os.path.join(gtk_dir, 'etc') src_dir = src_dir.replace('\\', '\\\\') dest_dir = os.path.join(dest, 'etc') From 0c4ce1b655b9bfb072684e2355139493c27efb34 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 11:18:44 +0200 Subject: [PATCH 69/93] remove license menu entry as that info is in the about dialogue --- pyfpdb/fpdb.pyw | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index cc050d07..b875900f 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -810,7 +810,6 @@ class fpdb: - """ @@ -846,8 +845,7 @@ class fpdb: ('dumptofile', None, 'Dump Database to Textfile (takes ALOT of time)', None, 'Dump Database to Textfile (takes ALOT of time)', self.dia_dump_db), ('help', None, '_Help'), ('Logs', None, '_Log Messages', None, 'Log and Debug Messages', self.dia_logs), - ('About', None, 'A_bout', None, 'About the program', self.dia_about), - ('License', None, '_License and Copying (todo)', None, 'License and Copying', self.dia_licensing), + ('About', None, 'A_bout, License, Copying', None, 'About the program', self.dia_about), ]) actiongroup.get_action('Quit').set_property('short-label', '_Quit') From ddf69015cbad5d673f193d5e84cbe3f674286c30 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 11:53:02 +0200 Subject: [PATCH 70/93] add MIT license and notice --- mit.txt | 22 ++++++++++++++++++++++ pyfpdb/fpdb.pyw | 3 ++- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 mit.txt diff --git a/mit.txt b/mit.txt new file mode 100644 index 00000000..65b7bc8b --- /dev/null +++ b/mit.txt @@ -0,0 +1,22 @@ +This license applies to the pytz files distributed with fpdb's Windows installer + +Copyright (c) Stuart Bishop + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index b875900f..acf79c14 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -1060,7 +1060,8 @@ If you need help click on Contact - Get Help on our website. Please note that default.conf is no longer needed nor used, all configuration now happens in HUD_config.xml. This program is free/libre open source software licensed partially under the AGPL3, and partially under GPL2 or later. -You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt and gpl-3.0.txt in the fpdb installation directory.""") +The Windows installer package includes code licensed under the MIT license. +You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt, gpl-3.0.txt and mit.txt in the fpdb installation directory.""") self.add_and_display_tab(mh_tab, "Help") def tabGraphViewer(self, widget, data=None): From d3f75831745ffee3223d8e82272ae994a75d5e32 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 12:05:49 +0200 Subject: [PATCH 71/93] correct license info in about dialogue --- pyfpdb/fpdb.pyw | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index acf79c14..8231209d 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -228,13 +228,12 @@ class fpdb: self.quit(widget) def dia_about(self, widget, data=None): - #self.warning_box("About FPDB:\n\nFPDB was originally created by a guy named Steffen, sometime in 2008, \nand is mostly worked on these days by people named Eratosthenes, s0rrow, _mt, EricBlade, sqlcoder, and other strange people.\n\n", "ABOUT FPDB") dia = gtk.AboutDialog() dia.set_name("Free Poker Database (FPDB)") dia.set_version(VERSION) dia.set_copyright("Copyright 2008-2010, Steffen, Eratosthenes, Carl Gherardi, Eric Blade, _mt, sqlcoder, Bostik, and others") - dia.set_comments("") - dia.set_license("This program is licensed under the AGPL3, see agpl-3.0.txt in the fpdb installation directory") + dia.set_comments("You are free to change and distribute original or changed versions of fpdb within the rules set out by the license") + dia.set_license("Please see fpdb's start screen for license information") dia.set_website("http://fpdb.sourceforge.net/") dia.set_authors(['Steffen', 'Eratosthenes', 'Carl Gherardi', From 388097a41230fff3d342d7baa7c25269c4196d9f Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 13:35:20 +0200 Subject: [PATCH 72/93] fix import for non-KO tourneys --- pyfpdb/PokerStarsToFpdb.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index a45a9b4e..cdeeb74c 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -72,7 +72,7 @@ class PokerStars(HandHistoryConverter): (Tournament\s\# # open paren of tournament info (?P\d+),\s # here's how I plan to use LS - (?P(?P[%(LS)s\d\.]+)\+(?P[%(LS)s\d\.]+)?\+(?P[%(LS)s\d\.]+)\s?(?P%(LEGAL_ISO)s)|Freeroll)\s+)? + (?P(?P[%(LS)s\d\.]+)\+(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)\s?(?P%(LEGAL_ISO)s)|Freeroll)\s+)? # close paren of tournament info (?PHORSE|8\-Game|HOSE)?\s?\(? (?PHold\'em|Razz|RAZZ|7\sCard\sStud|7\sCard\sStud\sHi/Lo|Omaha|Omaha\sHi/Lo|Badugi|Triple\sDraw\s2\-7\sLowball|5\sCard\sDraw)\s @@ -251,11 +251,14 @@ class PokerStars(HandHistoryConverter): #FIXME: handle other currencies, FPP, play money raise FpdbParseError("failed to detect currency") - if hand.buyinCurrency=="USD" or hand.buyinCurrency=="EUR": + if hand.buyinCurrency!="PSFP": hand.buyin = int(100*Decimal(info['BIAMT'][1:])) - hand.fee = int(100*Decimal(info['BIRAKE'][1:])) + if info['BIRAKE']=="0": #we have a non-bounty game + hand.fee = int(100*Decimal(info['BOUNTY'][1:])) + else: + hand.fee = int(100*Decimal(info['BIRAKE'][1:])) # TODO: Bounty is in key 'BOUNTY' - elif hand.buyinCurrency=="PSFP": + else: hand.buyin = int(Decimal(info[key][0:-3])) hand.fee = 0 if key == 'LEVEL': From 7b3bee91469e2aab8db073f4530b6cf89894c771 Mon Sep 17 00:00:00 2001 From: gimick Date: Mon, 2 Aug 2010 12:36:42 +0100 Subject: [PATCH 73/93] py2exe : include mit.txt licence file --- pyfpdb/py2exe_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/py2exe_setup.py b/pyfpdb/py2exe_setup.py index 42d22e21..a836ed76 100644 --- a/pyfpdb/py2exe_setup.py +++ b/pyfpdb/py2exe_setup.py @@ -165,7 +165,7 @@ setup( # files in 2nd value in tuple are moved to dir named in 1st value #data_files updated for new locations of licences + readme nolonger exists - data_files = [('', ['HUD_config.xml.example', 'Cards01.png', 'logging.conf', '../agpl-3.0.txt', '../fdl-1.2.txt', '../gpl-3.0.txt', '../gpl-2.0.txt', '../readme.txt']) + data_files = [('', ['HUD_config.xml.example', 'Cards01.png', 'logging.conf', '../agpl-3.0.txt', '../fdl-1.2.txt', '../gpl-3.0.txt', '../gpl-2.0.txt', '../mit.txt', '../readme.txt']) ,(dist_dir, [r'..\run_fpdb.bat']) ,( dist_dir + r'\gfx', glob.glob(r'..\gfx\*.*') ) # line below has problem with fonts subdir ('not a regular file') From 9ad275e11c4bbf6d9c97cb6a3fa75ffa836a99de Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 13:53:50 +0200 Subject: [PATCH 74/93] recognise and store knockout and bounty --- pyfpdb/Database.py | 6 +++--- pyfpdb/Hand.py | 2 ++ pyfpdb/PokerStarsToFpdb.py | 3 ++- pyfpdb/SQL.py | 4 ++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 500dfb0a..e810d28a 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1990,7 +1990,7 @@ class Database: #print "the query:",self.sql.query['getTourneyTypeId'].replace('%s', self.sql.query['placeholder']) cursor.execute (self.sql.query['getTourneyTypeId'].replace('%s', self.sql.query['placeholder']), (hand.siteId, hand.buyinCurrency, hand.buyin, hand.fee, hand.gametype['category'], hand.gametype['limitType'], hand.isKO, - hand.isRebuy, hand.isAddOn, hand.speed, hand.isShootout, hand.isMatrix) + hand.isRebuy, hand.isAddOn, hand.speed, hand.isShootout, hand.isMatrix) #TODO: add koamount ) result=cursor.fetchone() #print "result of fetching TT by details:",result @@ -1999,8 +1999,8 @@ class Database: tourneyTypeId = result[0] except TypeError: #this means we need to create a new entry cursor.execute (self.sql.query['insertTourneyType'].replace('%s', self.sql.query['placeholder']), - (hand.siteId, hand.buyinCurrency, hand.buyin, hand.fee, hand.gametype['category'], hand.gametype['limitType'], hand.buyInChips, - hand.isKO, hand.isRebuy, + (hand.siteId, hand.buyinCurrency, hand.buyin, hand.fee, hand.gametype['category'], hand.gametype['limitType'], + hand.buyInChips, hand.isKO, hand.koBounty, hand.isRebuy, hand.isAddOn, hand.speed, hand.isShootout, hand.isMatrix, hand.added, hand.addedCurrency) ) tourneyTypeId = self.get_last_insert_id(cursor) diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index a1a6c5d8..e4965dab 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -83,6 +83,7 @@ class Hand(object): self.isRebuy = False self.isAddOn = False self.isKO = False + self.koBounty = None self.isMatrix = False self.isShootout = False self.added = None @@ -168,6 +169,7 @@ class Hand(object): ("IS REBUY", self.isRebuy), ("IS ADDON", self.isAddOn), ("IS KO", self.isKO), + ("KO BOUNTY", self.koBounty), ("IS MATRIX", self.isMatrix), ("IS SHOOTOUT", self.isShootout), ("TOURNEY COMMENT", self.tourneyComment), diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index cdeeb74c..28dbd219 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -257,7 +257,8 @@ class PokerStars(HandHistoryConverter): hand.fee = int(100*Decimal(info['BOUNTY'][1:])) else: hand.fee = int(100*Decimal(info['BIRAKE'][1:])) - # TODO: Bounty is in key 'BOUNTY' + hand.isKO = True + hand.koBounty = int(100*Decimal(info['BOUNTY'][1:])) else: hand.buyin = int(Decimal(info[key][0:-3])) hand.fee = 0 diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index fcebc5c9..8d9e5f1b 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -3786,9 +3786,9 @@ class Sql: """ self.query['insertTourneyType'] = """INSERT INTO TourneyTypes - (siteId, currency, buyin, fee, category, limitType, buyInChips, knockout, rebuy, + (siteId, currency, buyin, fee, category, limitType, buyInChips, knockout, koBounty, rebuy, addOn ,speed, shootout, matrix, added, addedCurrency) - VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) + VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) """ self.query['getTourneyByTourneyNo'] = """SELECT t.* From 57d9cc5665d9cff939e71736539cf628008dcf32 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 14:56:20 +0200 Subject: [PATCH 75/93] very dirty hack to work around bug in gameinfo regex missing last digit of second number --- pyfpdb/PokerStarsToFpdb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 28dbd219..573b8dfb 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -253,7 +253,8 @@ class PokerStars(HandHistoryConverter): if hand.buyinCurrency!="PSFP": hand.buyin = int(100*Decimal(info['BIAMT'][1:])) - if info['BIRAKE']=="0": #we have a non-bounty game + if info['BIRAKE'][0]!="$": #we have a non-bounty game + info['BOUNTY']=info['BOUNTY']+info['BIRAKE'] #TODO remove this dirty dirty hack by fixing regex hand.fee = int(100*Decimal(info['BOUNTY'][1:])) else: hand.fee = int(100*Decimal(info['BIRAKE'][1:])) From 9daadeb7f9f0ed85b95b2d8919602e99f5021a81 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 15:12:55 +0200 Subject: [PATCH 76/93] fix regex for FPP tourneys --- pyfpdb/PokerStarsToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 573b8dfb..dddb92a2 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -72,7 +72,7 @@ class PokerStars(HandHistoryConverter): (Tournament\s\# # open paren of tournament info (?P\d+),\s # here's how I plan to use LS - (?P(?P[%(LS)s\d\.]+)\+(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)\s?(?P%(LEGAL_ISO)s)|Freeroll)\s+)? + (?P(?P[%(LS)s\d\.]+)\+?(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)\s?(?P%(LEGAL_ISO)s)|Freeroll)\s+)? # close paren of tournament info (?PHORSE|8\-Game|HOSE)?\s?\(? (?PHold\'em|Razz|RAZZ|7\sCard\sStud|7\sCard\sStud\sHi/Lo|Omaha|Omaha\sHi/Lo|Badugi|Triple\sDraw\s2\-7\sLowball|5\sCard\sDraw)\s From 08959e3176d096b224203a2fd65b8dc13e830841 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 16:36:25 +0200 Subject: [PATCH 77/93] fix for 1FPP tourney --- pyfpdb/PokerStarsToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index dddb92a2..378d6615 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -72,7 +72,7 @@ class PokerStars(HandHistoryConverter): (Tournament\s\# # open paren of tournament info (?P\d+),\s # here's how I plan to use LS - (?P(?P[%(LS)s\d\.]+)\+?(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)\s?(?P%(LEGAL_ISO)s)|Freeroll)\s+)? + (?P(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)\s?(?P%(LEGAL_ISO)s)|Freeroll)\s+)? # close paren of tournament info (?PHORSE|8\-Game|HOSE)?\s?\(? (?PHold\'em|Razz|RAZZ|7\sCard\sStud|7\sCard\sStud\sHi/Lo|Omaha|Omaha\sHi/Lo|Badugi|Triple\sDraw\s2\-7\sLowball|5\sCard\sDraw)\s From ed3d6ac15a4e6d2d319a8d70b5da2414a2dd441b Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 16:46:46 +0200 Subject: [PATCH 78/93] fix so it works with old-style tourney header missing ISO currency code --- pyfpdb/PokerStarsToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 378d6615..1e71c39e 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -72,7 +72,7 @@ class PokerStars(HandHistoryConverter): (Tournament\s\# # open paren of tournament info (?P\d+),\s # here's how I plan to use LS - (?P(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)\s?(?P%(LEGAL_ISO)s)|Freeroll)\s+)? + (?P(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)\s?(?P%(LEGAL_ISO)s)?|Freeroll)\s+)? # close paren of tournament info (?PHORSE|8\-Game|HOSE)?\s?\(? (?PHold\'em|Razz|RAZZ|7\sCard\sStud|7\sCard\sStud\sHi/Lo|Omaha|Omaha\sHi/Lo|Badugi|Triple\sDraw\s2\-7\sLowball|5\sCard\sDraw)\s From 55214ad93474a9526859e95862a4c342c24b94da Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 22:35:00 +0200 Subject: [PATCH 79/93] slight change to make it easier for normals to understand the resulting filename --- packaging/windows/py2exeWalkthroughPython26.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/windows/py2exeWalkthroughPython26.txt b/packaging/windows/py2exeWalkthroughPython26.txt index b2221bc1..b023d80d 100644 --- a/packaging/windows/py2exeWalkthroughPython26.txt +++ b/packaging/windows/py2exeWalkthroughPython26.txt @@ -222,7 +222,7 @@ pyfpdb/share/man Step 12 rename folder --------------------- -Rename the folder to something meaningful to the community. If you have built for NoSSE, append noSSE to the directory name. +Rename the folder to something meaningful to the community. If you have built for NoSSE, append anyCPU to the directory name. Step 13 Compress to executable archive From 8b3131eb9eefeb0e1db5c522ba8a74037e7ff766 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 22:35:31 +0200 Subject: [PATCH 80/93] update GUI version to indicate git --- pyfpdb/fpdb.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index 0fb1ee37..d76eb62f 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -116,7 +116,7 @@ import Configuration import Exceptions import Stats -VERSION = "0.20.903" +VERSION = "0.20.903 plus git" class fpdb: From 7d70386c7ef8698b7d979cad1846f964c200b4a0 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Mon, 2 Aug 2010 22:37:00 +0200 Subject: [PATCH 81/93] remove two windows packaging files as they're superseded --- pyfpdb/makeexe.bat | 1 - pyfpdb/makeexe.py | 27 --------------------------- 2 files changed, 28 deletions(-) delete mode 100644 pyfpdb/makeexe.bat delete mode 100644 pyfpdb/makeexe.py diff --git a/pyfpdb/makeexe.bat b/pyfpdb/makeexe.bat deleted file mode 100644 index ddcdba7c..00000000 --- a/pyfpdb/makeexe.bat +++ /dev/null @@ -1 +0,0 @@ -python makeexe.py py2exe diff --git a/pyfpdb/makeexe.py b/pyfpdb/makeexe.py deleted file mode 100644 index 568b1939..00000000 --- a/pyfpdb/makeexe.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -#Copyright 2009-2010 Eric Blade -#This program is free software: you can redistribute it and/or modify -#it under the terms of the GNU Affero General Public License as published by -#the Free Software Foundation, version 3 of the License. -# -#This program is distributed in the hope that it will be useful, -#but WITHOUT ANY WARRANTY; without even the implied warranty of -#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -#GNU General Public License for more details. -# -#You should have received a copy of the GNU Affero General Public License -#along with this program. If not, see . -#In the "official" distribution you can find the license in agpl-3.0.txt. - -from distutils.core import setup -import py2exe -opts = { - 'py2exe': { - 'includes': "pango,atk,gobject", - } - } - -setup(name='Free Poker Database', version='0.12', console=[{"script":"fpdb.py"}]) - From 49d8e0055d63521e5c8153541ea4f11de806296a Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Mon, 2 Aug 2010 16:47:32 -0400 Subject: [PATCH 82/93] tweak cards shown regex --- pyfpdb/EverleafToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/EverleafToFpdb.py b/pyfpdb/EverleafToFpdb.py index 454f7e79..8bff1cdd 100755 --- a/pyfpdb/EverleafToFpdb.py +++ b/pyfpdb/EverleafToFpdb.py @@ -58,7 +58,7 @@ class Everleaf(HandHistoryConverter): self.re_HeroCards = re.compile(ur"^Dealt to %s \[ (?P.*) \]$" % player_re, re.MULTILINE) # ^%s(?P: bets| checks| raises| calls| folds)(\s\[(?:\$| €|) (?P[.,\d]+) (USD|EURO|Chips)\])? self.re_Action = re.compile(ur"^%s(?P: bets| checks| raises| calls| folds)(\s\[(?:[$€]?) (?P[.,\d]+)\s?(USD|EURO|Chips|)\])?" % player_re, re.MULTILINE) - self.re_ShowdownAction = re.compile(ur"^%s shows \[ (?P.*) \]$" % player_re, re.MULTILINE) + self.re_ShowdownAction = re.compile(ur"^%s shows \[ (?P.*) \]" % player_re, re.MULTILINE) self.re_CollectPot = re.compile(ur"^%s wins (?:[$€]?)\s?(?P[.\d]+) (USD|EURO|chips)(.*?\[ (?P.*?) \])?" % player_re, re.MULTILINE) self.re_SitsOut = re.compile(ur"^%s sits out" % player_re, re.MULTILINE) From 7cd9b767a7e42dd68a631cd942a5c87608f57536 Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Mon, 2 Aug 2010 17:33:18 -0400 Subject: [PATCH 83/93] add some missing stats to the default popup --- pyfpdb/HUD_config.xml.example | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyfpdb/HUD_config.xml.example b/pyfpdb/HUD_config.xml.example index 9ee17c1c..da257d1c 100644 --- a/pyfpdb/HUD_config.xml.example +++ b/pyfpdb/HUD_config.xml.example @@ -556,22 +556,26 @@ Left-Drag to Move" + + + + + - From 0c318df8ea1c9da5ab643eb7bc79edf0a7d89d5f Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Mon, 2 Aug 2010 17:50:19 -0400 Subject: [PATCH 84/93] fix comment on cbet stat --- pyfpdb/Stats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/Stats.py b/pyfpdb/Stats.py index 9bb6307c..74558da8 100755 --- a/pyfpdb/Stats.py +++ b/pyfpdb/Stats.py @@ -589,8 +589,8 @@ def agg_fact(stat_dict, player): def cbet(stat_dict, player): - """ Flop continuation bet.""" - """ Continuation bet % = (times made a continuation bet on the flop) * 100 / (number of opportunities to make a continuation bet on the flop) """ + """ Total continuation bet.""" + """ Continuation bet % = (times made a continuation bet on any street) * 100 / (number of opportunities to make a continuation bet on any street) """ stat = 0.0 try: From d20c82c2964444b70abea55ba813dc4cffb35d34 Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Tue, 3 Aug 2010 00:24:14 -0400 Subject: [PATCH 85/93] add preflop actors to blindsantes for determining who was in hand for wtsd calcs --- pyfpdb/DerivedStats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 7778c956..26e95394 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -292,7 +292,7 @@ class DerivedStats(): # hand.players includes people that are sitting out on some sites. # Those that posted an ante should have been deal cards. - p_in = set([x[0] for x in hand.actions['BLINDSANTES']]) + p_in = set([x[0] for x in hand.actions['BLINDSANTES']] + [x[0] for x in hand.actions['PREFLOP']]) for (i, street) in enumerate(hand.actionStreets): actions = hand.actions[street] From 2fd856d55bd93db87d23bead009dfd2c29e52d56 Mon Sep 17 00:00:00 2001 From: Worros Date: Tue, 3 Aug 2010 18:24:03 +0800 Subject: [PATCH 86/93] HHC: Shorten length of time hh file is open by 2 lines --- pyfpdb/HandHistoryConverter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/HandHistoryConverter.py b/pyfpdb/HandHistoryConverter.py index 59ba90ef..8faf5dfb 100644 --- a/pyfpdb/HandHistoryConverter.py +++ b/pyfpdb/HandHistoryConverter.py @@ -433,9 +433,9 @@ or None if we fail to get the info """ try: in_fh = codecs.open(self.in_path, 'r', kodec) whole_file = in_fh.read() + in_fh.close() self.obs = whole_file[self.index:] self.index = len(whole_file) - in_fh.close() break except: pass From 9329475298546c95993cb7578acb84c09d8a3d47 Mon Sep 17 00:00:00 2001 From: Worros Date: Tue, 3 Aug 2010 19:22:52 +0800 Subject: [PATCH 87/93] Stars: Take 42 on Tourney parsing Hopefully fix parsing for bounty and cash tourneys for good. FPP is probably still broken --- pyfpdb/PokerStarsToFpdb.py | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 1e71c39e..80d48b6b 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -72,7 +72,7 @@ class PokerStars(HandHistoryConverter): (Tournament\s\# # open paren of tournament info (?P\d+),\s # here's how I plan to use LS - (?P(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)\s?(?P%(LEGAL_ISO)s)?|Freeroll)\s+)? + (?P(?P[%(LS)s\d\.]+)?\+(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)?\s?(?P%(LEGAL_ISO)s)?|Freeroll)\s+)? # close paren of tournament info (?PHORSE|8\-Game|HOSE)?\s?\(? (?PHold\'em|Razz|RAZZ|7\sCard\sStud|7\sCard\sStud\sHi/Lo|Omaha|Omaha\sHi/Lo|Badugi|Triple\sDraw\s2\-7\sLowball|5\sCard\sDraw)\s @@ -252,14 +252,20 @@ class PokerStars(HandHistoryConverter): raise FpdbParseError("failed to detect currency") if hand.buyinCurrency!="PSFP": - hand.buyin = int(100*Decimal(info['BIAMT'][1:])) - if info['BIRAKE'][0]!="$": #we have a non-bounty game - info['BOUNTY']=info['BOUNTY']+info['BIRAKE'] #TODO remove this dirty dirty hack by fixing regex - hand.fee = int(100*Decimal(info['BOUNTY'][1:])) - else: - hand.fee = int(100*Decimal(info['BIRAKE'][1:])) - hand.isKO = True - hand.koBounty = int(100*Decimal(info['BOUNTY'][1:])) + if info['BOUNTY'] != None: + # There is a bounty, Which means we need to switch BOUNTY and BIRAKE values + tmp = info['BOUNTY'] + info['BOUNTY'] = info['BIRAKE'] + info['BIRAKE'] = tmp + info['BOUNTY'] = info['BOUNTY'].strip(u'$€') # Strip here where it isn't 'None' + hand.koBounty = int(100*Decimal(info['BOUNTY'])) + + info['BIAMT'] = info['BIAMT'].strip(u'$€') + info['BIRAKE'] = info['BIRAKE'].strip(u'$€') + + hand.buyin = int(100*Decimal(info['BIAMT'])) + hand.fee = int(100*Decimal(info['BIRAKE'])) + hand.isKO = True else: hand.buyin = int(Decimal(info[key][0:-3])) hand.fee = 0 From 53c796dddce18ddc3cca159103c73ddfac6fcf38 Mon Sep 17 00:00:00 2001 From: Worros Date: Tue, 3 Aug 2010 19:27:34 +0800 Subject: [PATCH 88/93] Importer: Add excetion handler to hud call. Had a report on the 2+2 thread that: File "C:\Documents and Settings\b\Desktop\fpdb\pyfpdb\GuiAutoImport.py", line 160, in do_import self.importer.runUpdated() File "C:\Documents and Settings\b\Desktop\fpdb\pyfpdb\fpdb_import.py", line 371, in runUpdated (stored, duplicates, partial, errors, ttime) = self.import_file_dict(self.database, file, self.filelist[file][0], self.filelist[file][1], None) File "C:\Documents and Settings\b\Desktop\fpdb\pyfpdb\fpdb_import.py", line 467, in import_file_dict print "fpdb_import: sending hand to hud", hand.dbid_hands, "pipe =", self.caller.pipe_to_hud IOError: [Errno 9] Bad file descriptor Was happening, which is a crash attempting to print self.caller.pipe_to_hud This patch doesn't fix the problem, but should give some indication in the log that it happened. --- pyfpdb/fpdb_import.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyfpdb/fpdb_import.py b/pyfpdb/fpdb_import.py index eeaa63ac..cbe87684 100755 --- a/pyfpdb/fpdb_import.py +++ b/pyfpdb/fpdb_import.py @@ -464,8 +464,11 @@ class Importer: #pipe the Hands.id out to the HUD for hid in to_hud: - print "fpdb_import: sending hand to hud", hand.dbid_hands, "pipe =", self.caller.pipe_to_hud - self.caller.pipe_to_hud.stdin.write("%s" % (hid) + os.linesep) + try: + print "fpdb_import: sending hand to hud", hand.dbid_hands, "pipe =", self.caller.pipe_to_hud + self.caller.pipe_to_hud.stdin.write("%s" % (hid) + os.linesep) + except IOError, e: + log.error("Failed to send hand to HUD: %s" % e) errors = getattr(hhc, 'numErrors') stored = getattr(hhc, 'numHands') From dc2b315a9f7078783ff9a71b55561560d66ff6da Mon Sep 17 00:00:00 2001 From: Worros Date: Tue, 3 Aug 2010 19:52:49 +0800 Subject: [PATCH 89/93] Stars: Fix FPP tourneys (maybe...) Also move hand.isKO to the correct place --- pyfpdb/PokerStarsToFpdb.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 80d48b6b..384f5082 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -72,7 +72,7 @@ class PokerStars(HandHistoryConverter): (Tournament\s\# # open paren of tournament info (?P\d+),\s # here's how I plan to use LS - (?P(?P[%(LS)s\d\.]+)?\+(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)?\s?(?P%(LEGAL_ISO)s)?|Freeroll)\s+)? + (?P(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)?\+?(?P[%(LS)s\d\.]+)?\s?(?P%(LEGAL_ISO)s)?|Freeroll)\s+)? # close paren of tournament info (?PHORSE|8\-Game|HOSE)?\s?\(? (?PHold\'em|Razz|RAZZ|7\sCard\sStud|7\sCard\sStud\sHi/Lo|Omaha|Omaha\sHi/Lo|Badugi|Triple\sDraw\s2\-7\sLowball|5\sCard\sDraw)\s @@ -250,6 +250,8 @@ class PokerStars(HandHistoryConverter): else: #FIXME: handle other currencies, FPP, play money raise FpdbParseError("failed to detect currency") + + info['BIAMT'] = info['BIAMT'].strip(u'$€FPP') if hand.buyinCurrency!="PSFP": if info['BOUNTY'] != None: @@ -259,15 +261,14 @@ class PokerStars(HandHistoryConverter): info['BIRAKE'] = tmp info['BOUNTY'] = info['BOUNTY'].strip(u'$€') # Strip here where it isn't 'None' hand.koBounty = int(100*Decimal(info['BOUNTY'])) + hand.isKO = True - info['BIAMT'] = info['BIAMT'].strip(u'$€') info['BIRAKE'] = info['BIRAKE'].strip(u'$€') hand.buyin = int(100*Decimal(info['BIAMT'])) hand.fee = int(100*Decimal(info['BIRAKE'])) - hand.isKO = True else: - hand.buyin = int(Decimal(info[key][0:-3])) + hand.buyin = int(Decimal(info['BIAMT'])) hand.fee = 0 if key == 'LEVEL': hand.level = info[key] From edd0d36aa7d9416809d5cced754ab0761f11644f Mon Sep 17 00:00:00 2001 From: Worros Date: Wed, 4 Aug 2010 02:10:44 +0800 Subject: [PATCH 90/93] Test file: NLHE-USD-MTT-1-KO.201008.txt $1.40 KO SnG from Stars. Worth noting that neither the HH nor the tournament summary contain any bounty information. The only place it was noted was in the individual tourney mailout "You have also received USD 1.25 in Knockout Bounties for this tournament. You won bounties for the following players: odotb, Yvbo, bumbastik7, gliberis, __DMN__54321" --- .../Stars/Flop/NLHE-USD-MTT-1-KO.201008.txt | 10384 ++++++++++++++++ 1 file changed, 10384 insertions(+) create mode 100644 pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-1-KO.201008.txt diff --git a/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-1-KO.201008.txt b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-1-KO.201008.txt new file mode 100644 index 00000000..e24e5423 --- /dev/null +++ b/pyfpdb/regression-test-files/tour/Stars/Flop/NLHE-USD-MTT-1-KO.201008.txt @@ -0,0 +1,10384 @@ +PokerStars Game #47653044623: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/08/03 10:57:43 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: g0ty4 (2000 in chips) +Seat 2: ruslan999588 (2000 in chips) +Seat 3: Buell XB12sl (2000 in chips) +Seat 4: seric1975 (2000 in chips) +Seat 5: svarcipapa (2000 in chips) +Seat 6: titasands (2000 in chips) +Seat 7: Gibsons66 (2000 in chips) +Seat 8: tanker175 (2000 in chips) +Seat 9: s0rrow (2000 in chips) +ruslan999588: posts small blind 10 +Buell XB12sl: posts big blind 20 +*** HOLE CARDS *** +Dealt to s0rrow [7h Qc] +seric1975: folds +svarcipapa: folds +titasands: folds +Gibsons66 has timed out +Gibsons66: folds +Gibsons66 is sitting out +tanker175: calls 20 +s0rrow: calls 20 +g0ty4: folds +ruslan999588: calls 10 +Buell XB12sl: checks +*** FLOP *** [8c 4h Qd] +ruslan999588: checks +Buell XB12sl: checks +tanker175: checks +s0rrow: bets 100 +ruslan999588: folds +Buell XB12sl: folds +tanker175: calls 100 +*** TURN *** [8c 4h Qd] [Jd] +tanker175: checks +s0rrow: checks +*** RIVER *** [8c 4h Qd Jd] [Ah] +tanker175: checks +s0rrow: checks +*** SHOW DOWN *** +tanker175: shows [Tc Qh] (a pair of Queens) +s0rrow: mucks hand +tanker175 collected 280 from pot +*** SUMMARY *** +Total pot 280 | Rake 0 +Board [8c 4h Qd Jd Ah] +Seat 1: g0ty4 (button) folded before Flop (didn't bet) +Seat 2: ruslan999588 (small blind) folded on the Flop +Seat 3: Buell XB12sl (big blind) folded on the Flop +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: svarcipapa folded before Flop (didn't bet) +Seat 6: titasands folded before Flop (didn't bet) +Seat 7: Gibsons66 folded before Flop (didn't bet) +Seat 8: tanker175 showed [Tc Qh] and won (280) with a pair of Queens +Seat 9: s0rrow mucked [7h Qc] + + + +PokerStars Game #47653087764: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/08/03 10:59:19 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: g0ty4 (2000 in chips) +Seat 2: ruslan999588 (1980 in chips) +Seat 3: Buell XB12sl (1980 in chips) +Seat 4: seric1975 (2000 in chips) +Seat 5: svarcipapa (2000 in chips) +Seat 6: titasands (2000 in chips) +Seat 7: Gibsons66 (2000 in chips) is sitting out +Seat 8: tanker175 (2160 in chips) +Seat 9: s0rrow (1880 in chips) +Buell XB12sl: posts small blind 10 +seric1975: posts big blind 20 +*** HOLE CARDS *** +Dealt to s0rrow [Ts Ad] +svarcipapa: folds +titasands is disconnected +titasands has timed out while disconnected +titasands: folds +Gibsons66: folds +titasands is sitting out +tanker175: folds +s0rrow: folds +g0ty4: folds +ruslan999588: calls 20 +Buell XB12sl: calls 10 +seric1975: checks +*** FLOP *** [Td 3h Tc] +Buell XB12sl: checks +seric1975: bets 60 +ruslan999588: calls 60 +Buell XB12sl: folds +*** TURN *** [Td 3h Tc] [Jd] +seric1975: bets 200 +ruslan999588: folds +Uncalled bet (200) returned to seric1975 +seric1975 collected 180 from pot +*** SUMMARY *** +Total pot 180 | Rake 0 +Board [Td 3h Tc Jd] +Seat 1: g0ty4 folded before Flop (didn't bet) +Seat 2: ruslan999588 (button) folded on the Turn +Seat 3: Buell XB12sl (small blind) folded on the Flop +Seat 4: seric1975 (big blind) collected (180) +Seat 5: svarcipapa folded before Flop (didn't bet) +Seat 6: titasands folded before Flop (didn't bet) +Seat 7: Gibsons66 folded before Flop (didn't bet) +Seat 8: tanker175 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653133668: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/08/03 11:00:54 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: g0ty4 (2000 in chips) +Seat 2: ruslan999588 (1900 in chips) +Seat 3: Buell XB12sl (1960 in chips) +Seat 4: seric1975 (2100 in chips) +Seat 5: svarcipapa (2000 in chips) +Seat 6: titasands (2000 in chips) is sitting out +Seat 7: Gibsons66 (2000 in chips) is sitting out +Seat 8: tanker175 (2160 in chips) +Seat 9: s0rrow (1880 in chips) +seric1975: posts small blind 10 +svarcipapa: posts big blind 20 +*** HOLE CARDS *** +Dealt to s0rrow [4s 4d] +titasands: folds +Gibsons66: folds +tanker175: calls 20 +s0rrow: raises 40 to 60 +g0ty4: folds +ruslan999588: calls 60 +Buell XB12sl: folds +seric1975: folds +svarcipapa: folds +tanker175: calls 40 +*** FLOP *** [Qc 2h 9c] +tanker175: checks +s0rrow: bets 120 +ruslan999588: folds +tanker175: calls 120 +*** TURN *** [Qc 2h 9c] [4h] +tanker175: checks +s0rrow: bets 280 +tanker175: calls 280 +*** RIVER *** [Qc 2h 9c 4h] [5h] +tanker175: checks +s0rrow: bets 1420 and is all-in +tanker175: folds +Uncalled bet (1420) returned to s0rrow +s0rrow collected 1010 from pot +*** SUMMARY *** +Total pot 1010 | Rake 0 +Board [Qc 2h 9c 4h 5h] +Seat 1: g0ty4 folded before Flop (didn't bet) +Seat 2: ruslan999588 folded on the Flop +Seat 3: Buell XB12sl (button) folded before Flop (didn't bet) +Seat 4: seric1975 (small blind) folded before Flop +Seat 5: svarcipapa (big blind) folded before Flop +Seat 6: titasands folded before Flop (didn't bet) +Seat 7: Gibsons66 folded before Flop (didn't bet) +Seat 8: tanker175 folded on the River +Seat 9: s0rrow collected (1010) + + + +PokerStars Game #47653174206: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/08/03 11:02:08 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: g0ty4 (2000 in chips) +Seat 2: ruslan999588 (1840 in chips) +Seat 3: Buell XB12sl (1960 in chips) +Seat 4: seric1975 (2090 in chips) +Seat 5: svarcipapa (1980 in chips) +Seat 6: titasands (2000 in chips) is sitting out +Seat 7: Gibsons66 (2000 in chips) is sitting out +Seat 8: tanker175 (1700 in chips) +Seat 9: s0rrow (2430 in chips) +svarcipapa: posts small blind 10 +titasands: posts big blind 20 +*** HOLE CARDS *** +Dealt to s0rrow [6c Qd] +Gibsons66: folds +tanker175: calls 20 +s0rrow: folds +g0ty4: folds +ruslan999588: calls 20 +Buell XB12sl: calls 20 +seric1975: raises 20 to 40 +svarcipapa: folds +titasands: folds +tanker175: calls 20 +ruslan999588: calls 20 +Buell XB12sl: calls 20 +*** FLOP *** [Ac 3d As] +tanker175: checks +ruslan999588: checks +Buell XB12sl: checks +seric1975: checks +*** TURN *** [Ac 3d As] [8c] +tanker175: checks +ruslan999588: checks +Buell XB12sl: checks +seric1975: checks +*** RIVER *** [Ac 3d As 8c] [Kc] +tanker175: checks +ruslan999588: checks +Buell XB12sl: bets 100 +seric1975: folds +tanker175: calls 100 +ruslan999588: folds +*** SHOW DOWN *** +Buell XB12sl: shows [Th Ad] (three of a kind, Aces) +tanker175: mucks hand +Buell XB12sl collected 390 from pot +*** SUMMARY *** +Total pot 390 | Rake 0 +Board [Ac 3d As 8c Kc] +Seat 1: g0ty4 folded before Flop (didn't bet) +Seat 2: ruslan999588 folded on the River +Seat 3: Buell XB12sl showed [Th Ad] and won (390) with three of a kind, Aces +Seat 4: seric1975 (button) folded on the River +Seat 5: svarcipapa (small blind) folded before Flop +Seat 6: titasands (big blind) folded before Flop +Seat 7: Gibsons66 folded before Flop (didn't bet) +Seat 8: tanker175 mucked [8s 7s] +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653219981: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/08/03 11:03:31 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: g0ty4 (2000 in chips) +Seat 2: ruslan999588 (1800 in chips) +Seat 3: Buell XB12sl (2210 in chips) +Seat 4: seric1975 (2050 in chips) +Seat 5: svarcipapa (1970 in chips) +Seat 6: titasands (1980 in chips) is sitting out +Seat 7: Gibsons66 (2000 in chips) is sitting out +Seat 8: tanker175 (1560 in chips) +Seat 9: s0rrow (2430 in chips) +titasands: posts small blind 10 +Gibsons66: posts big blind 20 +*** HOLE CARDS *** +Dealt to s0rrow [6c 8h] +tanker175: folds +s0rrow: folds +g0ty4: calls 20 +ruslan999588: calls 20 +Buell XB12sl: folds +seric1975: folds +svarcipapa: folds +titasands: folds +Gibsons66: folds +*** FLOP *** [3c 8c Ad] +g0ty4: checks +ruslan999588: checks +*** TURN *** [3c 8c Ad] [6h] +g0ty4: checks +ruslan999588: checks +*** RIVER *** [3c 8c Ad 6h] [4d] +g0ty4: checks +ruslan999588: checks +*** SHOW DOWN *** +g0ty4: shows [9s 9c] (a pair of Nines) +ruslan999588: shows [5d As] (a pair of Aces) +ruslan999588 collected 70 from pot +*** SUMMARY *** +Total pot 70 | Rake 0 +Board [3c 8c Ad 6h 4d] +Seat 1: g0ty4 showed [9s 9c] and lost with a pair of Nines +Seat 2: ruslan999588 showed [5d As] and won (70) with a pair of Aces +Seat 3: Buell XB12sl folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: svarcipapa (button) folded before Flop (didn't bet) +Seat 6: titasands (small blind) folded before Flop +Seat 7: Gibsons66 (big blind) folded before Flop +Seat 8: tanker175 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653246794: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/08/03 11:04:16 ET +Table '297808375 8' 9-max Seat #6 is the button +Seat 1: g0ty4 (1980 in chips) +Seat 2: ruslan999588 (1850 in chips) +Seat 3: Buell XB12sl (2210 in chips) +Seat 4: seric1975 (2050 in chips) +Seat 5: svarcipapa (1970 in chips) +Seat 6: titasands (1970 in chips) is sitting out +Seat 7: Gibsons66 (1980 in chips) is sitting out +Seat 8: tanker175 (1560 in chips) +Seat 9: s0rrow (2430 in chips) +Gibsons66: posts small blind 10 +tanker175: posts big blind 20 +*** HOLE CARDS *** +Dealt to s0rrow [4c 2s] +s0rrow: folds +g0ty4: folds +ruslan999588: folds +Buell XB12sl: calls 20 +seric1975: folds +svarcipapa: folds +titasands: folds +Gibsons66: folds +tanker175: checks +*** FLOP *** [8c Kd Ts] +tanker175: checks +Buell XB12sl: checks +*** TURN *** [8c Kd Ts] [5d] +tanker175: checks +Buell XB12sl: checks +*** RIVER *** [8c Kd Ts 5d] [8s] +tanker175: checks +Buell XB12sl: checks +*** SHOW DOWN *** +tanker175: shows [9d As] (a pair of Eights) +Buell XB12sl: shows [2h Ah] (a pair of Eights) +tanker175 collected 25 from pot +Buell XB12sl collected 25 from pot +*** SUMMARY *** +Total pot 50 | Rake 0 +Board [8c Kd Ts 5d 8s] +Seat 1: g0ty4 folded before Flop (didn't bet) +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: Buell XB12sl showed [2h Ah] and won (25) with a pair of Eights +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: svarcipapa folded before Flop (didn't bet) +Seat 6: titasands (button) folded before Flop (didn't bet) +Seat 7: Gibsons66 (small blind) folded before Flop +Seat 8: tanker175 (big blind) showed [9d As] and won (25) with a pair of Eights +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653271774: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/08/03 11:05:00 ET +Table '297808375 8' 9-max Seat #7 is the button +Seat 1: g0ty4 (1980 in chips) +Seat 2: ruslan999588 (1850 in chips) +Seat 3: Buell XB12sl (2215 in chips) +Seat 4: seric1975 (2050 in chips) +Seat 5: svarcipapa (1970 in chips) +Seat 6: titasands (1970 in chips) is sitting out +Seat 7: Gibsons66 (1970 in chips) is sitting out +Seat 8: tanker175 (1565 in chips) +Seat 9: s0rrow (2430 in chips) +tanker175: posts small blind 10 +s0rrow: posts big blind 20 +*** HOLE CARDS *** +Dealt to s0rrow [Tc 4h] +g0ty4: folds +ruslan999588: calls 20 +Buell XB12sl: folds +seric1975: folds +svarcipapa: calls 20 +titasands: folds +Gibsons66: folds +tanker175: calls 10 +s0rrow: checks +*** FLOP *** [Th 5s 5d] +tanker175: checks +s0rrow: checks +ruslan999588: checks +svarcipapa: checks +*** TURN *** [Th 5s 5d] [5h] +tanker175: checks +s0rrow: bets 40 +ruslan999588: folds +svarcipapa: folds +tanker175: folds +Uncalled bet (40) returned to s0rrow +s0rrow collected 80 from pot +*** SUMMARY *** +Total pot 80 | Rake 0 +Board [Th 5s 5d 5h] +Seat 1: g0ty4 folded before Flop (didn't bet) +Seat 2: ruslan999588 folded on the Turn +Seat 3: Buell XB12sl folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: svarcipapa folded on the Turn +Seat 6: titasands folded before Flop (didn't bet) +Seat 7: Gibsons66 (button) folded before Flop (didn't bet) +Seat 8: tanker175 (small blind) folded on the Turn +Seat 9: s0rrow (big blind) collected (80) + + + +PokerStars Game #47653306913: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/08/03 11:06:01 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: g0ty4 (1980 in chips) +Seat 2: ruslan999588 (1830 in chips) +Seat 3: Buell XB12sl (2215 in chips) +Seat 4: seric1975 (2050 in chips) +Seat 5: svarcipapa (1950 in chips) +Seat 7: Gibsons66 (1970 in chips) is sitting out +Seat 8: tanker175 (1545 in chips) +Seat 9: s0rrow (2490 in chips) +s0rrow: posts small blind 10 +g0ty4: posts big blind 20 +*** HOLE CARDS *** +Dealt to s0rrow [3s 9s] +ruslan999588: calls 20 +Buell XB12sl: folds +seric1975: folds +svarcipapa: folds +Gibsons66: folds +tanker175: folds +s0rrow: folds +g0ty4: checks +*** FLOP *** [Ks Jh Qd] +g0ty4: checks +ruslan999588: checks +*** TURN *** [Ks Jh Qd] [8c] +g0ty4: checks +ruslan999588: checks +*** RIVER *** [Ks Jh Qd 8c] [2h] +g0ty4: checks +ruslan999588: checks +*** SHOW DOWN *** +g0ty4: shows [9h 5c] (high card King) +ruslan999588: mucks hand +g0ty4 collected 50 from pot +*** SUMMARY *** +Total pot 50 | Rake 0 +Board [Ks Jh Qd 8c 2h] +Seat 1: g0ty4 (big blind) showed [9h 5c] and won (50) with high card King +Seat 2: ruslan999588 mucked [7d 3h] +Seat 3: Buell XB12sl folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: svarcipapa folded before Flop (didn't bet) +Seat 7: Gibsons66 folded before Flop (didn't bet) +Seat 8: tanker175 (button) folded before Flop (didn't bet) +Seat 9: s0rrow (small blind) folded before Flop + + + +PokerStars Game #47653329678: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/08/03 11:06:41 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: g0ty4 (2010 in chips) +Seat 2: ruslan999588 (1810 in chips) +Seat 3: Buell XB12sl (2215 in chips) +Seat 4: seric1975 (2050 in chips) +Seat 5: svarcipapa (1950 in chips) +Seat 7: Gibsons66 (1970 in chips) is sitting out +Seat 8: tanker175 (1545 in chips) +Seat 9: s0rrow (2480 in chips) +g0ty4: posts small blind 10 +ruslan999588: posts big blind 20 +*** HOLE CARDS *** +Dealt to s0rrow [Tc 9s] +Buell XB12sl: folds +seric1975: calls 20 +svarcipapa: folds +Gibsons66: folds +tanker175: folds +s0rrow: calls 20 +g0ty4: folds +ruslan999588: checks +*** FLOP *** [6s 7h 3s] +ruslan999588: checks +seric1975: checks +s0rrow: bets 60 +ruslan999588: calls 60 +seric1975: folds +*** TURN *** [6s 7h 3s] [2d] +ruslan999588: checks +ramones004 is connected +s0rrow: checks +*** RIVER *** [6s 7h 3s 2d] [3c] +ruslan999588: bets 100 +s0rrow: folds +Uncalled bet (100) returned to ruslan999588 +ruslan999588 collected 190 from pot +ruslan999588: doesn't show hand +*** SUMMARY *** +Total pot 190 | Rake 0 +Board [6s 7h 3s 2d 3c] +Seat 1: g0ty4 (small blind) folded before Flop +Seat 2: ruslan999588 (big blind) collected (190) +Seat 3: Buell XB12sl folded before Flop (didn't bet) +Seat 4: seric1975 folded on the Flop +Seat 5: svarcipapa folded before Flop (didn't bet) +Seat 7: Gibsons66 folded before Flop (didn't bet) +Seat 8: tanker175 folded before Flop (didn't bet) +Seat 9: s0rrow (button) folded on the River + + + +PokerStars Game #47653363889: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level I (10/20) - 2010/08/03 11:07:40 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: g0ty4 (2000 in chips) +Seat 2: ruslan999588 (1920 in chips) +Seat 3: Buell XB12sl (2215 in chips) +Seat 4: seric1975 (2030 in chips) +Seat 5: svarcipapa (1950 in chips) +Seat 6: ramones004 (2350 in chips) +Seat 7: Gibsons66 (1970 in chips) is sitting out +Seat 8: tanker175 (1545 in chips) +Seat 9: s0rrow (2400 in chips) +ruslan999588: posts small blind 10 +Buell XB12sl: posts big blind 20 +*** HOLE CARDS *** +Dealt to s0rrow [2h 6s] +seric1975: calls 20 +svarcipapa: folds +ramones004: folds +Gibsons66: folds +tanker175: calls 20 +s0rrow: folds +g0ty4: folds +ruslan999588: calls 10 +Buell XB12sl: checks +*** FLOP *** [Kd Kc 5s] +ruslan999588: checks +Buell XB12sl: checks +seric1975: checks +tanker175: checks +*** TURN *** [Kd Kc 5s] [Qh] +ruslan999588: checks +Gibsons66 has returned +Buell XB12sl: checks +seric1975: checks +tanker175: checks +*** RIVER *** [Kd Kc 5s Qh] [As] +ruslan999588: checks +Buell XB12sl: checks +seric1975: checks +tanker175: checks +*** SHOW DOWN *** +ruslan999588: shows [Jh 3h] (a pair of Kings) +Buell XB12sl: shows [7d Jd] (a pair of Kings) +seric1975: mucks hand +tanker175: shows [6d Ah] (two pair, Aces and Kings) +tanker175 collected 80 from pot +*** SUMMARY *** +Total pot 80 | Rake 0 +Board [Kd Kc 5s Qh As] +Seat 1: g0ty4 (button) folded before Flop (didn't bet) +Seat 2: ruslan999588 (small blind) showed [Jh 3h] and lost with a pair of Kings +Seat 3: Buell XB12sl (big blind) showed [7d Jd] and lost with a pair of Kings +Seat 4: seric1975 mucked [6h 4h] +Seat 5: svarcipapa folded before Flop (didn't bet) +Seat 6: ramones004 folded before Flop (didn't bet) +Seat 7: Gibsons66 folded before Flop (didn't bet) +Seat 8: tanker175 showed [6d Ah] and won (80) with two pair, Aces and Kings +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653409610: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level II (15/30) - 2010/08/03 11:09:00 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: g0ty4 (2000 in chips) +Seat 2: ruslan999588 (1900 in chips) +Seat 3: Buell XB12sl (2195 in chips) +Seat 4: seric1975 (2010 in chips) +Seat 5: svarcipapa (1950 in chips) +Seat 6: ramones004 (2350 in chips) +Seat 7: Gibsons66 (1970 in chips) +Seat 8: tanker175 (1605 in chips) +Seat 9: s0rrow (2400 in chips) +Buell XB12sl: posts small blind 15 +seric1975: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [5s 3h] +svarcipapa: folds +ramones004: raises 60 to 90 +Gibsons66: calls 90 +tanker175: folds +s0rrow: folds +g0ty4: folds +ruslan999588: calls 90 +Buell XB12sl: folds +seric1975: folds +*** FLOP *** [5d 3d Ac] +ramones004: bets 150 +Gibsons66: calls 150 +ruslan999588: folds +*** TURN *** [5d 3d Ac] [2s] +ramones004: checks +Gibsons66: bets 150 +ramones004: folds +Uncalled bet (150) returned to Gibsons66 +Gibsons66 collected 615 from pot +Gibsons66: doesn't show hand +*** SUMMARY *** +Total pot 615 | Rake 0 +Board [5d 3d Ac 2s] +Seat 1: g0ty4 folded before Flop (didn't bet) +Seat 2: ruslan999588 (button) folded on the Flop +Seat 3: Buell XB12sl (small blind) folded before Flop +Seat 4: seric1975 (big blind) folded before Flop +Seat 5: svarcipapa folded before Flop (didn't bet) +Seat 6: ramones004 folded on the Turn +Seat 7: Gibsons66 collected (615) +Seat 8: tanker175 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653441871: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level II (15/30) - 2010/08/03 11:09:56 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: g0ty4 (2000 in chips) +Seat 2: ruslan999588 (1810 in chips) +Seat 3: Buell XB12sl (2180 in chips) +Seat 4: seric1975 (1980 in chips) +Seat 5: svarcipapa (1950 in chips) +Seat 6: ramones004 (2110 in chips) +Seat 7: Gibsons66 (2345 in chips) +Seat 8: tanker175 (1605 in chips) +Seat 9: s0rrow (2400 in chips) +seric1975: posts small blind 15 +svarcipapa: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [3s Jh] +ramones004: calls 30 +Gibsons66: calls 30 +tanker175: folds +s0rrow: folds +g0ty4: folds +ruslan999588: calls 30 +Buell XB12sl: calls 30 +seric1975: calls 15 +svarcipapa: checks +*** FLOP *** [8h Jc 6s] +seric1975: checks +svarcipapa: checks +ramones004: checks +Gibsons66: checks +ruslan999588: checks +Buell XB12sl: checks +*** TURN *** [8h Jc 6s] [3h] +seric1975: checks +svarcipapa: checks +ramones004: checks +Gibsons66: checks +ruslan999588: checks +Buell XB12sl: checks +*** RIVER *** [8h Jc 6s 3h] [Td] +seric1975: checks +svarcipapa: checks +ramones004: checks +Gibsons66: bets 30 +ruslan999588: folds +Buell XB12sl: folds +seric1975: calls 30 +svarcipapa: folds +ramones004: calls 30 +*** SHOW DOWN *** +Gibsons66: shows [2s Tc] (a pair of Tens) +seric1975: mucks hand +ramones004: shows [Ts Ks] (a pair of Tens - King kicker) +ramones004 collected 270 from pot +*** SUMMARY *** +Total pot 270 | Rake 0 +Board [8h Jc 6s 3h Td] +Seat 1: g0ty4 folded before Flop (didn't bet) +Seat 2: ruslan999588 folded on the River +Seat 3: Buell XB12sl (button) folded on the River +Seat 4: seric1975 (small blind) mucked [8s Qs] +Seat 5: svarcipapa (big blind) folded on the River +Seat 6: ramones004 showed [Ts Ks] and won (270) with a pair of Tens +Seat 7: Gibsons66 showed [2s Tc] and lost with a pair of Tens +Seat 8: tanker175 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653523025: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level II (15/30) - 2010/08/03 11:12:17 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 2: ruslan999588 (1780 in chips) +Seat 3: Buell XB12sl (2150 in chips) +Seat 4: seric1975 (1920 in chips) +Seat 5: svarcipapa (1920 in chips) +Seat 6: ramones004 (2320 in chips) +Seat 7: Gibsons66 (2285 in chips) +Seat 8: tanker175 (1605 in chips) +Seat 9: s0rrow (2400 in chips) +svarcipapa: posts small blind 15 +ramones004: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [As Qd] +Gibsons66 has timed out +Gibsons66: folds +Gibsons66 is sitting out +tanker175: calls 30 +Gibsons66 has returned +s0rrow: raises 90 to 120 +ruslan999588: calls 120 +Buell XB12sl: folds +seric1975: folds +svarcipapa: folds +ramones004: folds +tanker175: calls 90 +*** FLOP *** [Qc Kh 4h] +tanker175: checks +s0rrow: checks +ruslan999588: checks +*** TURN *** [Qc Kh 4h] [5s] +tanker175: checks +s0rrow: bets 300 +ruslan999588: folds +tanker175: folds +Uncalled bet (300) returned to s0rrow +s0rrow collected 405 from pot +*** SUMMARY *** +Total pot 405 | Rake 0 +Board [Qc Kh 4h 5s] +Seat 2: ruslan999588 folded on the Turn +Seat 3: Buell XB12sl folded before Flop (didn't bet) +Seat 4: seric1975 (button) folded before Flop (didn't bet) +Seat 5: svarcipapa (small blind) folded before Flop +Seat 6: ramones004 (big blind) folded before Flop +Seat 7: Gibsons66 folded before Flop (didn't bet) +Seat 8: tanker175 folded on the Turn +Seat 9: s0rrow collected (405) + + + +PokerStars Game #47653567120: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level II (15/30) - 2010/08/03 11:13:33 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 2: ruslan999588 (1660 in chips) +Seat 3: Buell XB12sl (2150 in chips) +Seat 4: seric1975 (1920 in chips) +Seat 5: svarcipapa (1905 in chips) +Seat 6: ramones004 (2290 in chips) +Seat 7: Gibsons66 (2285 in chips) +Seat 8: tanker175 (1485 in chips) +Seat 9: s0rrow (2685 in chips) +ramones004: posts small blind 15 +Gibsons66: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [7s Js] +tanker175: folds +s0rrow: folds +ruslan999588: calls 30 +Buell XB12sl: folds +seric1975: raises 30 to 60 +svarcipapa: folds +ramones004: folds +Gibsons66: calls 30 +ruslan999588: calls 30 +*** FLOP *** [9h Jc 6s] +Gibsons66: checks +ruslan999588: checks +seric1975: bets 90 +Gibsons66: folds +ruslan999588: folds +Uncalled bet (90) returned to seric1975 +seric1975 collected 195 from pot +*** SUMMARY *** +Total pot 195 | Rake 0 +Board [9h Jc 6s] +Seat 2: ruslan999588 folded on the Flop +Seat 3: Buell XB12sl folded before Flop (didn't bet) +Seat 4: seric1975 collected (195) +Seat 5: svarcipapa (button) folded before Flop (didn't bet) +Seat 6: ramones004 (small blind) folded before Flop +Seat 7: Gibsons66 (big blind) folded on the Flop +Seat 8: tanker175 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653605176: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level II (15/30) - 2010/08/03 11:14:39 ET +Table '297808375 8' 9-max Seat #6 is the button +Seat 2: ruslan999588 (1600 in chips) +Seat 3: Buell XB12sl (2150 in chips) +Seat 4: seric1975 (2055 in chips) +Seat 5: svarcipapa (1905 in chips) +Seat 6: ramones004 (2275 in chips) +Seat 7: Gibsons66 (2225 in chips) +Seat 8: tanker175 (1485 in chips) +Seat 9: s0rrow (2685 in chips) +Gibsons66: posts small blind 15 +tanker175: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [As 6c] +s0rrow: folds +ruslan999588: calls 30 +Buell XB12sl: folds +seric1975: calls 30 +svarcipapa: calls 30 +ramones004: calls 30 +Gibsons66: calls 15 +tanker175: checks +*** FLOP *** [2h 5d 4c] +Gibsons66: bets 30 +tanker175: calls 30 +ruslan999588: calls 30 +seric1975: calls 30 +svarcipapa: calls 30 +ramones004: folds +*** TURN *** [2h 5d 4c] [4s] +Gibsons66: bets 30 +tanker175: calls 30 +ruslan999588: calls 30 +seric1975: calls 30 +svarcipapa: calls 30 +*** RIVER *** [2h 5d 4c 4s] [Js] +Gibsons66: checks +tanker175: checks +ruslan999588: checks +seric1975: bets 480 +svarcipapa: folds +Gibsons66: folds +tanker175: folds +ruslan999588: folds +Uncalled bet (480) returned to seric1975 +seric1975 collected 480 from pot +*** SUMMARY *** +Total pot 480 | Rake 0 +Board [2h 5d 4c 4s Js] +Seat 2: ruslan999588 folded on the River +Seat 3: Buell XB12sl folded before Flop (didn't bet) +Seat 4: seric1975 collected (480) +Seat 5: svarcipapa folded on the River +Seat 6: ramones004 (button) folded on the Flop +Seat 7: Gibsons66 (small blind) folded on the River +Seat 8: tanker175 (big blind) folded on the River +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653654718: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level II (15/30) - 2010/08/03 11:16:05 ET +Table '297808375 8' 9-max Seat #7 is the button +Seat 2: ruslan999588 (1510 in chips) +Seat 3: Buell XB12sl (2150 in chips) +Seat 4: seric1975 (2445 in chips) +Seat 5: svarcipapa (1815 in chips) +Seat 6: ramones004 (2245 in chips) +Seat 7: Gibsons66 (2135 in chips) +Seat 8: tanker175 (1395 in chips) +Seat 9: s0rrow (2685 in chips) +tanker175: posts small blind 15 +s0rrow: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [Ks 5d] +ruslan999588: calls 30 +Buell XB12sl: folds +seric1975: folds +svarcipapa: folds +ramones004: calls 30 +Gibsons66: folds +tanker175: calls 15 +s0rrow: checks +*** FLOP *** [Ah 8s 4d] +ZoRzA420 is connected +tanker175: checks +s0rrow: checks +ruslan999588: checks +ramones004: checks +*** TURN *** [Ah 8s 4d] [7c] +tanker175: checks +s0rrow: checks +ruslan999588: checks +ramones004: checks +*** RIVER *** [Ah 8s 4d 7c] [3c] +tanker175: checks +s0rrow: checks +ruslan999588: checks +ramones004: checks +*** SHOW DOWN *** +tanker175: shows [Qd 7h] (a pair of Sevens) +s0rrow: mucks hand +ruslan999588: mucks hand +ramones004: mucks hand +tanker175 collected 120 from pot +*** SUMMARY *** +Total pot 120 | Rake 0 +Board [Ah 8s 4d 7c 3c] +Seat 2: ruslan999588 mucked [9s 6d] +Seat 3: Buell XB12sl folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: svarcipapa folded before Flop (didn't bet) +Seat 6: ramones004 mucked [2h 2c] +Seat 7: Gibsons66 (button) folded before Flop (didn't bet) +Seat 8: tanker175 (small blind) showed [Qd 7h] and won (120) with a pair of Sevens +Seat 9: s0rrow (big blind) mucked [Ks 5d] + + + +PokerStars Game #47653692921: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level II (15/30) - 2010/08/03 11:17:10 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: ZoRzA420 (3690 in chips) +Seat 2: ruslan999588 (1480 in chips) +Seat 3: Buell XB12sl (2150 in chips) +Seat 4: seric1975 (2445 in chips) +Seat 5: svarcipapa (1815 in chips) +Seat 6: ramones004 (2215 in chips) +Seat 7: Gibsons66 (2135 in chips) +Seat 8: tanker175 (1485 in chips) +Seat 9: s0rrow (2655 in chips) +s0rrow: posts small blind 15 +ZoRzA420: posts big blind 30 +*** HOLE CARDS *** +Dealt to s0rrow [4c Ks] +ruslan999588: calls 30 +Buell XB12sl: folds +seric1975: folds +svarcipapa: folds +ramones004: calls 30 +Gibsons66: folds +tanker175: calls 30 +s0rrow: calls 15 +ZoRzA420: checks +*** FLOP *** [2h 8s 9d] +s0rrow: checks +ZoRzA420: bets 60 +ruslan999588: calls 60 +ramones004: folds +tanker175: folds +s0rrow: folds +*** TURN *** [2h 8s 9d] [7d] +ZoRzA420: bets 90 +ruslan999588: calls 90 +*** RIVER *** [2h 8s 9d 7d] [Js] +ZoRzA420: bets 150 +ruslan999588: folds +Uncalled bet (150) returned to ZoRzA420 +ZoRzA420 collected 450 from pot +ZoRzA420: doesn't show hand +*** SUMMARY *** +Total pot 450 | Rake 0 +Board [2h 8s 9d 7d Js] +Seat 1: ZoRzA420 (big blind) collected (450) +Seat 2: ruslan999588 folded on the River +Seat 3: Buell XB12sl folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: svarcipapa folded before Flop (didn't bet) +Seat 6: ramones004 folded on the Flop +Seat 7: Gibsons66 folded before Flop (didn't bet) +Seat 8: tanker175 (button) folded on the Flop +Seat 9: s0rrow (small blind) folded on the Flop + + + +PokerStars Game #47653736062: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level III (20/40) - 2010/08/03 11:18:25 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: ZoRzA420 (3960 in chips) +Seat 2: ruslan999588 (1300 in chips) +Seat 3: Buell XB12sl (2150 in chips) +Seat 4: seric1975 (2445 in chips) +Seat 5: svarcipapa (1815 in chips) +Seat 6: ramones004 (2185 in chips) +Seat 7: Gibsons66 (2135 in chips) +Seat 8: tanker175 (1455 in chips) +Seat 9: s0rrow (2625 in chips) +ZoRzA420: posts small blind 20 +ruslan999588: posts big blind 40 +*** HOLE CARDS *** +Dealt to s0rrow [Jd 3c] +Buell XB12sl: folds +seric1975: calls 40 +svarcipapa: folds +ramones004: folds +Gibsons66: calls 40 +tanker175: folds +s0rrow: folds +ZoRzA420: folds +ruslan999588: checks +*** FLOP *** [Qs 5d 9s] +ruslan999588: checks +seric1975: bets 120 +Gibsons66: folds +ruslan999588: calls 120 +*** TURN *** [Qs 5d 9s] [Ac] +ruslan999588: checks +seric1975: bets 360 +ruslan999588: folds +Uncalled bet (360) returned to seric1975 +seric1975 collected 380 from pot +*** SUMMARY *** +Total pot 380 | Rake 0 +Board [Qs 5d 9s Ac] +Seat 1: ZoRzA420 (small blind) folded before Flop +Seat 2: ruslan999588 (big blind) folded on the Turn +Seat 3: Buell XB12sl folded before Flop (didn't bet) +Seat 4: seric1975 collected (380) +Seat 5: svarcipapa folded before Flop (didn't bet) +Seat 6: ramones004 folded before Flop (didn't bet) +Seat 7: Gibsons66 folded on the Flop +Seat 8: tanker175 folded before Flop (didn't bet) +Seat 9: s0rrow (button) folded before Flop (didn't bet) + + + +PokerStars Game #47653777193: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level III (20/40) - 2010/08/03 11:19:36 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: ZoRzA420 (3940 in chips) +Seat 2: ruslan999588 (1140 in chips) +Seat 3: Buell XB12sl (2150 in chips) +Seat 4: seric1975 (2665 in chips) +Seat 5: svarcipapa (1815 in chips) +Seat 6: ramones004 (2185 in chips) +Seat 7: Gibsons66 (2095 in chips) +Seat 8: tanker175 (1455 in chips) +Seat 9: s0rrow (2625 in chips) +ruslan999588: posts small blind 20 +Buell XB12sl: posts big blind 40 +*** HOLE CARDS *** +Dealt to s0rrow [Tc 6s] +seric1975: folds +svarcipapa: raises 80 to 120 +ramones004: folds +Gibsons66: folds +tanker175: calls 120 +s0rrow: folds +ZoRzA420: calls 120 +ruslan999588: folds +Buell XB12sl: calls 80 +*** FLOP *** [Th 7s Js] +Buell XB12sl: checks +svarcipapa: checks +tanker175: checks +ZoRzA420: checks +*** TURN *** [Th 7s Js] [Jh] +Buell XB12sl: bets 40 +svarcipapa: folds +tanker175: folds +ZoRzA420: folds +Uncalled bet (40) returned to Buell XB12sl +Buell XB12sl collected 500 from pot +Buell XB12sl: doesn't show hand +*** SUMMARY *** +Total pot 500 | Rake 0 +Board [Th 7s Js Jh] +Seat 1: ZoRzA420 (button) folded on the Turn +Seat 2: ruslan999588 (small blind) folded before Flop +Seat 3: Buell XB12sl (big blind) collected (500) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: svarcipapa folded on the Turn +Seat 6: ramones004 folded before Flop (didn't bet) +Seat 7: Gibsons66 folded before Flop (didn't bet) +Seat 8: tanker175 folded on the Turn +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653820099: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level III (20/40) - 2010/08/03 11:20:50 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: ZoRzA420 (3820 in chips) +Seat 2: ruslan999588 (1120 in chips) +Seat 3: Buell XB12sl (2530 in chips) +Seat 4: seric1975 (2665 in chips) +Seat 5: svarcipapa (1695 in chips) +Seat 6: ramones004 (2185 in chips) +Seat 7: Gibsons66 (2095 in chips) +Seat 8: tanker175 (1335 in chips) +Seat 9: s0rrow (2625 in chips) +Buell XB12sl: posts small blind 20 +seric1975: posts big blind 40 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 3h] +svarcipapa: folds +ramones004: folds +Gibsons66: calls 40 +tanker175: folds +s0rrow: folds +ZoRzA420: folds +ruslan999588: calls 40 +Buell XB12sl: calls 20 +seric1975: checks +*** FLOP *** [2h Tc 2s] +Buell XB12sl: checks +seric1975: checks +Gibsons66: checks +ruslan999588: bets 80 +Buell XB12sl: folds +seric1975: folds +Gibsons66: calls 80 +*** TURN *** [2h Tc 2s] [Qd] +Gibsons66: checks +ruslan999588: bets 40 +Gibsons66: calls 40 +*** RIVER *** [2h Tc 2s Qd] [Jh] +Gibsons66: checks +ruslan999588: bets 960 and is all-in +Gibsons66: folds +Uncalled bet (960) returned to ruslan999588 +ruslan999588 collected 400 from pot +*** SUMMARY *** +Total pot 400 | Rake 0 +Board [2h Tc 2s Qd Jh] +Seat 1: ZoRzA420 folded before Flop (didn't bet) +Seat 2: ruslan999588 (button) collected (400) +Seat 3: Buell XB12sl (small blind) folded on the Flop +Seat 4: seric1975 (big blind) folded on the Flop +Seat 5: svarcipapa folded before Flop (didn't bet) +Seat 6: ramones004 folded before Flop (didn't bet) +Seat 7: Gibsons66 folded on the River +Seat 8: tanker175 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653867610: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level III (20/40) - 2010/08/03 11:22:10 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: ZoRzA420 (3820 in chips) +Seat 2: ruslan999588 (1360 in chips) +Seat 3: Buell XB12sl (2490 in chips) +Seat 4: seric1975 (2625 in chips) +Seat 5: svarcipapa (1695 in chips) +Seat 6: ramones004 (2185 in chips) +Seat 7: Gibsons66 (1935 in chips) +Seat 8: tanker175 (1335 in chips) +Seat 9: s0rrow (2625 in chips) +seric1975: posts small blind 20 +svarcipapa: posts big blind 40 +*** HOLE CARDS *** +Dealt to s0rrow [8c 4c] +ramones004: calls 40 +Gibsons66: folds +tanker175: folds +s0rrow: folds +ZoRzA420: folds +ruslan999588: calls 40 +Buell XB12sl: calls 40 +seric1975: calls 20 +svarcipapa: checks +*** FLOP *** [5s 2h As] +seric1975: checks +svarcipapa: checks +ramones004: checks +ruslan999588: checks +Buell XB12sl: checks +*** TURN *** [5s 2h As] [Tc] +seric1975: bets 120 +svarcipapa: folds +ramones004: folds +ruslan999588: calls 120 +Buell XB12sl: folds +*** RIVER *** [5s 2h As Tc] [7s] +seric1975: checks +ruslan999588: checks +*** SHOW DOWN *** +seric1975: shows [Ad 4h] (a pair of Aces) +ruslan999588: mucks hand +seric1975 collected 440 from pot +*** SUMMARY *** +Total pot 440 | Rake 0 +Board [5s 2h As Tc 7s] +Seat 1: ZoRzA420 folded before Flop (didn't bet) +Seat 2: ruslan999588 mucked [8s 3h] +Seat 3: Buell XB12sl (button) folded on the Turn +Seat 4: seric1975 (small blind) showed [Ad 4h] and won (440) with a pair of Aces +Seat 5: svarcipapa (big blind) folded on the Turn +Seat 6: ramones004 folded on the Turn +Seat 7: Gibsons66 folded before Flop (didn't bet) +Seat 8: tanker175 folded before Flop (didn't bet) +Seat 9: s0rrow folded before Flop (didn't bet) + + + +PokerStars Game #47653952453: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level III (20/40) - 2010/08/03 11:24:33 ET +Table '297808375 2' 9-max Seat #9 is the button +Seat 1: kosiarz72 (1135 in chips) +Seat 3: MexicanGamb (1775 in chips) +Seat 4: redviper131 (6370 in chips) +Seat 5: Georgy80 (3215 in chips) +Seat 6: s0rrow (2625 in chips) +Seat 7: ##terry##477 (3520 in chips) +Seat 8: MoIsonEx (5090 in chips) +Seat 9: hengchang (2910 in chips) +kosiarz72: posts small blind 20 +MexicanGamb: posts big blind 40 +*** HOLE CARDS *** +Dealt to s0rrow [Qc Qs] +redviper131: calls 40 +Georgy80: raises 60 to 100 +s0rrow: calls 100 +##terry##477: folds +MoIsonEx: folds +hengchang: folds +kosiarz72: calls 80 +MexicanGamb: folds +redviper131: calls 60 +*** FLOP *** [Qd 7s 7d] +kosiarz72: bets 40 +redviper131: folds +Georgy80: raises 140 to 180 +s0rrow: calls 180 +kosiarz72: calls 140 +*** TURN *** [Qd 7s 7d] [2d] +kosiarz72: checks +Georgy80: checks +s0rrow: checks +*** RIVER *** [Qd 7s 7d 2d] [2h] +kosiarz72: bets 120 +honza7601 is connected +Georgy80: folds +s0rrow: raises 920 to 1040 +kosiarz72: folds +Uncalled bet (920) returned to s0rrow +s0rrow collected 1220 from pot +*** SUMMARY *** +Total pot 1220 | Rake 0 +Board [Qd 7s 7d 2d 2h] +Seat 1: kosiarz72 (small blind) folded on the River +Seat 3: MexicanGamb (big blind) folded before Flop +Seat 4: redviper131 folded on the Flop +Seat 5: Georgy80 folded on the River +Seat 6: s0rrow collected (1220) +Seat 7: ##terry##477 folded before Flop (didn't bet) +Seat 8: MoIsonEx folded before Flop (didn't bet) +Seat 9: hengchang (button) folded before Flop (didn't bet) + + + +PokerStars Game #47654011118: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level III (20/40) - 2010/08/03 11:26:11 ET +Table '297808375 2' 9-max Seat #1 is the button +Seat 1: kosiarz72 (735 in chips) +Seat 2: honza7601 (185 in chips) out of hand (moved from another table into small blind) +Seat 3: MexicanGamb (1735 in chips) +Seat 4: redviper131 (6270 in chips) +Seat 5: Georgy80 (2935 in chips) +Seat 6: s0rrow (3445 in chips) +Seat 7: ##terry##477 (3520 in chips) +Seat 8: MoIsonEx (5090 in chips) +Seat 9: hengchang (2910 in chips) +MexicanGamb: posts small blind 20 +redviper131: posts big blind 40 +*** HOLE CARDS *** +Dealt to s0rrow [3d Qs] +Georgy80: folds +s0rrow: folds +##terry##477: folds +MoIsonEx: folds +hengchang: folds +kosiarz72: folds +MexicanGamb: raises 160 to 200 +redviper131: calls 160 +*** FLOP *** [9s 5h 7c] +MexicanGamb: checks +redviper131: bets 160 +MexicanGamb: calls 160 +*** TURN *** [9s 5h 7c] [7s] +MexicanGamb: checks +redviper131: bets 200 +MexicanGamb: calls 200 +*** RIVER *** [9s 5h 7c 7s] [Qd] +MexicanGamb: bets 375 +redviper131: calls 375 +*** SHOW DOWN *** +MexicanGamb: shows [Ks Ad] (a pair of Sevens) +redviper131: shows [Td 9c] (two pair, Nines and Sevens) +redviper131 collected 1870 from pot +*** SUMMARY *** +Total pot 1870 | Rake 0 +Board [9s 5h 7c 7s Qd] +Seat 1: kosiarz72 (button) folded before Flop (didn't bet) +Seat 3: MexicanGamb (small blind) showed [Ks Ad] and lost with a pair of Sevens +Seat 4: redviper131 (big blind) showed [Td 9c] and won (1870) with two pair, Nines and Sevens +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) +Seat 7: ##terry##477 folded before Flop (didn't bet) +Seat 8: MoIsonEx folded before Flop (didn't bet) +Seat 9: hengchang folded before Flop (didn't bet) + + + +PokerStars Game #47654056104: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level III (20/40) - 2010/08/03 11:27:27 ET +Table '297808375 2' 9-max Seat #3 is the button +Seat 1: kosiarz72 (735 in chips) +Seat 2: honza7601 (185 in chips) +Seat 3: MexicanGamb (800 in chips) +Seat 4: redviper131 (7205 in chips) +Seat 5: Georgy80 (2935 in chips) +Seat 6: s0rrow (3445 in chips) +Seat 7: ##terry##477 (3520 in chips) +Seat 8: MoIsonEx (5090 in chips) +Seat 9: hengchang (2910 in chips) +redviper131: posts small blind 20 +Georgy80: posts big blind 40 +*** HOLE CARDS *** +Dealt to s0rrow [Kc Qd] +s0rrow: raises 80 to 120 +##terry##477: folds +MoIsonEx: calls 120 +hengchang: folds +kosiarz72 has timed out +kosiarz72: folds +kosiarz72 is sitting out +honza7601: raises 65 to 185 and is all-in +MexicanGamb: folds +redviper131: folds +redviper131 is sitting out +Georgy80: folds +s0rrow: calls 65 +MoIsonEx: calls 65 +*** FLOP *** [Th 7s 4c] +s0rrow: checks +kosiarz72 has returned +MoIsonEx: checks +*** TURN *** [Th 7s 4c] [6d] +s0rrow: checks +MoIsonEx: checks +*** RIVER *** [Th 7s 4c 6d] [Ah] +s0rrow: checks +MoIsonEx: checks +*** SHOW DOWN *** +s0rrow: shows [Kc Qd] (high card Ace) +MoIsonEx: shows [3c 3h] (a pair of Threes) +honza7601: shows [Kd Ad] (a pair of Aces) +honza7601 collected 615 from pot +*** SUMMARY *** +Total pot 615 | Rake 0 +Board [Th 7s 4c 6d Ah] +Seat 1: kosiarz72 folded before Flop (didn't bet) +Seat 2: honza7601 showed [Kd Ad] and won (615) with a pair of Aces +Seat 3: MexicanGamb (button) folded before Flop (didn't bet) +Seat 4: redviper131 (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 6: s0rrow showed [Kc Qd] and lost with high card Ace +Seat 7: ##terry##477 folded before Flop (didn't bet) +Seat 8: MoIsonEx showed [3c 3h] and lost with a pair of Threes +Seat 9: hengchang folded before Flop (didn't bet) + + + +PokerStars Game #47654094729: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IV (25/50) - 2010/08/03 11:28:32 ET +Table '297808375 2' 9-max Seat #4 is the button +Seat 1: kosiarz72 (735 in chips) +Seat 2: honza7601 (615 in chips) +Seat 3: MexicanGamb (800 in chips) +Seat 4: redviper131 (7185 in chips) is sitting out +Seat 5: Georgy80 (2895 in chips) +Seat 6: s0rrow (3260 in chips) +Seat 7: ##terry##477 (3520 in chips) +Seat 8: MoIsonEx (4905 in chips) +Seat 9: hengchang (2910 in chips) +Georgy80: posts small blind 25 +s0rrow: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [5h 5s] +##terry##477: folds +MoIsonEx: folds +hengchang: calls 50 +kosiarz72: raises 50 to 100 +honza7601: calls 100 +MexicanGamb: folds +redviper131: folds +Georgy80: folds +s0rrow: calls 50 +hengchang: calls 50 +*** FLOP *** [9c 4d Qd] +s0rrow: checks +hengchang: checks +kosiarz72: bets 100 +honza7601: folds +s0rrow: folds +hengchang: folds +Uncalled bet (100) returned to kosiarz72 +kosiarz72 collected 425 from pot +*** SUMMARY *** +Total pot 425 | Rake 0 +Board [9c 4d Qd] +Seat 1: kosiarz72 collected (425) +Seat 2: honza7601 folded on the Flop +Seat 3: MexicanGamb folded before Flop (didn't bet) +Seat 4: redviper131 (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: s0rrow (big blind) folded on the Flop +Seat 7: ##terry##477 folded before Flop (didn't bet) +Seat 8: MoIsonEx folded before Flop (didn't bet) +Seat 9: hengchang folded on the Flop + + + +PokerStars Game #47654125122: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IV (25/50) - 2010/08/03 11:29:22 ET +Table '297808375 2' 9-max Seat #5 is the button +Seat 1: kosiarz72 (1060 in chips) +Seat 2: honza7601 (515 in chips) +Seat 3: MexicanGamb (800 in chips) +Seat 4: redviper131 (7185 in chips) is sitting out +Seat 5: Georgy80 (2870 in chips) +Seat 6: s0rrow (3160 in chips) +Seat 7: ##terry##477 (3520 in chips) +Seat 8: MoIsonEx (4905 in chips) +Seat 9: hengchang (2810 in chips) +s0rrow: posts small blind 25 +##terry##477: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [5c 6s] +MoIsonEx: folds +hengchang: folds +kosiarz72: calls 50 +honza7601: calls 50 +MexicanGamb: folds +redviper131: folds +Georgy80: folds +s0rrow: folds +##terry##477: checks +*** FLOP *** [Qs 2h 4c] +##terry##477: checks +kosiarz72: checks +honza7601: checks +*** TURN *** [Qs 2h 4c] [9d] +##terry##477: checks +kosiarz72: checks +honza7601: checks +*** RIVER *** [Qs 2h 4c 9d] [8h] +##terry##477: checks +kosiarz72: checks +honza7601: checks +*** SHOW DOWN *** +##terry##477: shows [2d Ad] (a pair of Deuces) +kosiarz72: mucks hand +honza7601: mucks hand +##terry##477 collected 175 from pot +*** SUMMARY *** +Total pot 175 | Rake 0 +Board [Qs 2h 4c 9d 8h] +Seat 1: kosiarz72 mucked [Kd 7c] +Seat 2: honza7601 mucked [Kh 7h] +Seat 3: MexicanGamb folded before Flop (didn't bet) +Seat 4: redviper131 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: s0rrow (small blind) folded before Flop +Seat 7: ##terry##477 (big blind) showed [2d Ad] and won (175) with a pair of Deuces +Seat 8: MoIsonEx folded before Flop (didn't bet) +Seat 9: hengchang folded before Flop (didn't bet) + + + +PokerStars Game #47654168252: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IV (25/50) - 2010/08/03 11:30:35 ET +Table '297808375 2' 9-max Seat #6 is the button +Seat 1: kosiarz72 (1010 in chips) +Seat 2: honza7601 (465 in chips) +Seat 3: MexicanGamb (800 in chips) +Seat 5: Georgy80 (2870 in chips) +Seat 6: s0rrow (3135 in chips) +Seat 7: ##terry##477 (3645 in chips) +Seat 8: MoIsonEx (4905 in chips) +Seat 9: hengchang (2810 in chips) +##terry##477: posts small blind 25 +MoIsonEx: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [Jh 4d] +hengchang: folds +kosiarz72: calls 50 +honza7601: raises 415 to 465 and is all-in +MexicanGamb: folds +Georgy80: folds +s0rrow: folds +##terry##477: calls 440 +MoIsonEx: folds +kosiarz72: calls 415 +*** FLOP *** [2d 8c Qh] +##terry##477: checks +kosiarz72: bets 50 +##terry##477: calls 50 +*** TURN *** [2d 8c Qh] [7h] +##terry##477: checks +kosiarz72: bets 100 +##terry##477: calls 100 +*** RIVER *** [2d 8c Qh 7h] [9h] +##terry##477: checks +kosiarz72: bets 250 +##terry##477: folds +Uncalled bet (250) returned to kosiarz72 +*** SHOW DOWN *** +kosiarz72: shows [8s 8h] (three of a kind, Eights) +kosiarz72 collected 300 from side pot +honza7601: shows [3d 3c] (a pair of Threes) +kosiarz72 collected 1445 from main pot +kosiarz72 wins the $0.25 bounty for eliminating honza7601 +honza7601 finished the tournament in 56th place +*** SUMMARY *** +Total pot 1745 Main pot 1445. Side pot 300. | Rake 0 +Board [2d 8c Qh 7h 9h] +Seat 1: kosiarz72 showed [8s 8h] and won (1745) with three of a kind, Eights +Seat 2: honza7601 showed [3d 3c] and lost with a pair of Threes +Seat 3: MexicanGamb folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: s0rrow (button) folded before Flop (didn't bet) +Seat 7: ##terry##477 (small blind) folded on the River +Seat 8: MoIsonEx (big blind) folded before Flop +Seat 9: hengchang folded before Flop (didn't bet) + + + +PokerStars Game #47654202524: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IV (25/50) - 2010/08/03 11:31:32 ET +Table '297808375 2' 9-max Seat #7 is the button +Seat 1: kosiarz72 (2140 in chips) +Seat 3: MexicanGamb (800 in chips) +Seat 5: Georgy80 (2870 in chips) +Seat 6: s0rrow (3135 in chips) +Seat 7: ##terry##477 (3030 in chips) +Seat 8: MoIsonEx (4855 in chips) +Seat 9: hengchang (2810 in chips) +MoIsonEx: posts small blind 25 +hengchang: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [9s Kd] +kosiarz72: folds +MexicanGamb: folds +kosiarz72 is sitting out +Georgy80: folds +s0rrow: raises 100 to 150 +##terry##477: folds +MoIsonEx: folds +hengchang: calls 100 +*** FLOP *** [6s 8s 8c] +hengchang: checks +s0rrow: bets 250 +nenemalo77 is connected +THOUSANDGRAM is connected +hengchang: raises 400 to 650 +s0rrow: calls 400 +*** TURN *** [6s 8s 8c] [Qh] +hengchang: bets 650 +s0rrow: folds +Uncalled bet (650) returned to hengchang +hengchang collected 1625 from pot +hengchang: doesn't show hand +*** SUMMARY *** +Total pot 1625 | Rake 0 +Board [6s 8s 8c Qh] +Seat 1: kosiarz72 folded before Flop (didn't bet) +Seat 3: MexicanGamb folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: s0rrow folded on the Turn +Seat 7: ##terry##477 (button) folded before Flop (didn't bet) +Seat 8: MoIsonEx (small blind) folded before Flop +Seat 9: hengchang (big blind) collected (1625) + + + +PokerStars Game #47654246802: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IV (25/50) - 2010/08/03 11:32:46 ET +Table '297808375 2' 9-max Seat #8 is the button +Seat 1: kosiarz72 (2140 in chips) is sitting out +Seat 2: nenemalo77 (7003 in chips) +Seat 3: MexicanGamb (800 in chips) +Seat 4: THOUSANDGRAM (3870 in chips) +Seat 5: Georgy80 (2870 in chips) +Seat 6: s0rrow (2335 in chips) +Seat 7: ##terry##477 (3030 in chips) +Seat 8: MoIsonEx (4830 in chips) +Seat 9: hengchang (3635 in chips) +hengchang: posts small blind 25 +kosiarz72: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [8s 5s] +nenemalo77: calls 50 +MexicanGamb: folds +THOUSANDGRAM: folds +Georgy80: raises 50 to 100 +s0rrow: folds +##terry##477: folds +MoIsonEx: calls 100 +hengchang: raises 400 to 500 +kosiarz72: folds +nenemalo77: folds +Georgy80: calls 400 +MoIsonEx: folds +*** FLOP *** [4s Qc 5c] +hengchang: bets 250 +Georgy80: calls 250 +*** TURN *** [4s Qc 5c] [7d] +hengchang: bets 550 +Georgy80: calls 550 +*** RIVER *** [4s Qc 5c 7d] [6d] +hengchang: bets 700 +Georgy80: calls 700 +*** SHOW DOWN *** +hengchang: shows [Qs Qd] (three of a kind, Queens) +Georgy80: mucks hand +hengchang collected 4200 from pot +*** SUMMARY *** +Total pot 4200 | Rake 0 +Board [4s Qc 5c 7d 6d] +Seat 1: kosiarz72 (big blind) folded before Flop +Seat 2: nenemalo77 folded before Flop +Seat 3: MexicanGamb folded before Flop (didn't bet) +Seat 4: THOUSANDGRAM folded before Flop (didn't bet) +Seat 5: Georgy80 mucked [As Qh] +Seat 6: s0rrow folded before Flop (didn't bet) +Seat 7: ##terry##477 folded before Flop (didn't bet) +Seat 8: MoIsonEx (button) folded before Flop +Seat 9: hengchang (small blind) showed [Qs Qd] and won (4200) with three of a kind, Queens + + + +PokerStars Game #47654301269: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IV (25/50) - 2010/08/03 11:34:19 ET +Table '297808375 2' 9-max Seat #9 is the button +Seat 1: kosiarz72 (2090 in chips) is sitting out +Seat 2: nenemalo77 (6953 in chips) +Seat 3: MexicanGamb (800 in chips) +Seat 4: THOUSANDGRAM (3870 in chips) +Seat 5: Georgy80 (870 in chips) +Seat 6: s0rrow (2335 in chips) +Seat 7: ##terry##477 (3030 in chips) +Seat 8: MoIsonEx (4730 in chips) +Seat 9: hengchang (5835 in chips) +kosiarz72: posts small blind 25 +nenemalo77: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [9c 2h] +MexicanGamb: folds +THOUSANDGRAM: calls 50 +Georgy80: raises 820 to 870 and is all-in +s0rrow: folds +##terry##477 has timed out +##terry##477: folds +##terry##477 is sitting out +MoIsonEx: folds +hengchang: folds +kosiarz72: folds +nenemalo77: folds +THOUSANDGRAM: calls 820 +##terry##477 has returned +*** FLOP *** [Ks 4s 9d] +*** TURN *** [Ks 4s 9d] [3c] +*** RIVER *** [Ks 4s 9d 3c] [5c] +*** SHOW DOWN *** +THOUSANDGRAM: shows [Ac Td] (high card Ace) +Georgy80: shows [9s 9h] (three of a kind, Nines) +Georgy80 collected 1815 from pot +*** SUMMARY *** +Total pot 1815 | Rake 0 +Board [Ks 4s 9d 3c 5c] +Seat 1: kosiarz72 (small blind) folded before Flop +Seat 2: nenemalo77 (big blind) folded before Flop +Seat 3: MexicanGamb folded before Flop (didn't bet) +Seat 4: THOUSANDGRAM showed [Ac Td] and lost with high card Ace +Seat 5: Georgy80 showed [9s 9h] and won (1815) with three of a kind, Nines +Seat 6: s0rrow folded before Flop (didn't bet) +Seat 7: ##terry##477 folded before Flop (didn't bet) +Seat 8: MoIsonEx folded before Flop (didn't bet) +Seat 9: hengchang (button) folded before Flop (didn't bet) + + + +PokerStars Game #47654330399: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IV (25/50) - 2010/08/03 11:35:08 ET +Table '297808375 2' 9-max Seat #1 is the button +Seat 1: kosiarz72 (2065 in chips) is sitting out +Seat 2: nenemalo77 (6903 in chips) +Seat 3: MexicanGamb (800 in chips) +Seat 4: THOUSANDGRAM (3000 in chips) +Seat 5: Georgy80 (1815 in chips) +Seat 6: s0rrow (2335 in chips) +Seat 7: ##terry##477 (3030 in chips) +Seat 8: MoIsonEx (4730 in chips) +Seat 9: hengchang (5835 in chips) +nenemalo77: posts small blind 25 +MexicanGamb: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [4s 9s] +THOUSANDGRAM has timed out +THOUSANDGRAM: folds +THOUSANDGRAM is sitting out +Georgy80: folds +s0rrow: folds +##terry##477: folds +MoIsonEx: folds +THOUSANDGRAM has returned +hengchang: raises 100 to 150 +kosiarz72: folds +nenemalo77: folds +MexicanGamb: folds +Uncalled bet (100) returned to hengchang +hengchang collected 125 from pot +hengchang: doesn't show hand +*** SUMMARY *** +Total pot 125 | Rake 0 +Seat 1: kosiarz72 (button) folded before Flop (didn't bet) +Seat 2: nenemalo77 (small blind) folded before Flop +Seat 3: MexicanGamb (big blind) folded before Flop +Seat 4: THOUSANDGRAM folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) +Seat 7: ##terry##477 folded before Flop (didn't bet) +Seat 8: MoIsonEx folded before Flop (didn't bet) +Seat 9: hengchang collected (125) + + + +PokerStars Game #47654358545: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IV (25/50) - 2010/08/03 11:35:56 ET +Table '297808375 2' 9-max Seat #2 is the button +Seat 1: kosiarz72 (2065 in chips) is sitting out +Seat 2: nenemalo77 (6878 in chips) +Seat 3: MexicanGamb (750 in chips) +Seat 4: THOUSANDGRAM (3000 in chips) +Seat 5: Georgy80 (1815 in chips) +Seat 6: s0rrow (2335 in chips) +Seat 7: ##terry##477 (3030 in chips) +Seat 8: MoIsonEx (4730 in chips) +Seat 9: hengchang (5910 in chips) +MexicanGamb: posts small blind 25 +THOUSANDGRAM: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [Kc Kh] +Georgy80: folds +s0rrow: raises 100 to 150 +##terry##477: folds +MoIsonEx: folds +hengchang: folds +kosiarz72: folds +nenemalo77: calls 150 +MexicanGamb: folds +THOUSANDGRAM: folds +*** FLOP *** [5c As 6s] +s0rrow: checks +nenemalo77: checks +*** TURN *** [5c As 6s] [8d] +s0rrow: checks +nenemalo77: checks +*** RIVER *** [5c As 6s 8d] [8c] +s0rrow: bets 200 +nenemalo77: raises 350 to 550 +s0rrow: calls 350 +*** SHOW DOWN *** +nenemalo77: shows [Ks 8s] (three of a kind, Eights) +s0rrow: mucks hand +nenemalo77 collected 1475 from pot +*** SUMMARY *** +Total pot 1475 | Rake 0 +Board [5c As 6s 8d 8c] +Seat 1: kosiarz72 folded before Flop (didn't bet) +Seat 2: nenemalo77 (button) showed [Ks 8s] and won (1475) with three of a kind, Eights +Seat 3: MexicanGamb (small blind) folded before Flop +Seat 4: THOUSANDGRAM (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: s0rrow mucked [Kc Kh] +Seat 7: ##terry##477 folded before Flop (didn't bet) +Seat 8: MoIsonEx folded before Flop (didn't bet) +Seat 9: hengchang folded before Flop (didn't bet) + + + +PokerStars Game #47654389068: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IV (25/50) - 2010/08/03 11:36:49 ET +Table '297808375 2' 9-max Seat #3 is the button +Seat 1: kosiarz72 (2065 in chips) is sitting out +Seat 2: nenemalo77 (7653 in chips) +Seat 3: MexicanGamb (725 in chips) +Seat 4: THOUSANDGRAM (2950 in chips) +Seat 5: Georgy80 (1815 in chips) +Seat 6: s0rrow (1635 in chips) +Seat 7: ##terry##477 (3030 in chips) +Seat 8: MoIsonEx (4730 in chips) +Seat 9: hengchang (5910 in chips) +THOUSANDGRAM: posts small blind 25 +Georgy80: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [9s 4h] +s0rrow: folds +##terry##477: raises 150 to 200 +MoIsonEx: folds +hengchang: folds +kosiarz72: folds +nenemalo77: calls 200 +MexicanGamb: folds +THOUSANDGRAM: folds +Georgy80: folds +*** FLOP *** [Qd Qs Kd] +##terry##477: bets 200 +nenemalo77: raises 200 to 400 +##terry##477: calls 200 +*** TURN *** [Qd Qs Kd] [6s] +##terry##477: checks +nenemalo77: bets 300 +##terry##477: calls 300 +*** RIVER *** [Qd Qs Kd 6s] [3s] +##terry##477: checks +nenemalo77: bets 6753 and is all-in +##terry##477: calls 2130 and is all-in +Uncalled bet (4623) returned to nenemalo77 +*** SHOW DOWN *** +nenemalo77: shows [3c 3d] (a full house, Threes full of Queens) +##terry##477: shows [As Kh] (two pair, Kings and Queens) +nenemalo77 collected 6135 from pot +nenemalo77 wins the $0.25 bounty for eliminating ##terry##477 +##terry##477 finished the tournament in 52nd place +*** SUMMARY *** +Total pot 6135 | Rake 0 +Board [Qd Qs Kd 6s 3s] +Seat 1: kosiarz72 folded before Flop (didn't bet) +Seat 2: nenemalo77 showed [3c 3d] and won (6135) with a full house, Threes full of Queens +Seat 3: MexicanGamb (button) folded before Flop (didn't bet) +Seat 4: THOUSANDGRAM (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 6: s0rrow folded before Flop (didn't bet) +Seat 7: ##terry##477 showed [As Kh] and lost with two pair, Kings and Queens +Seat 8: MoIsonEx folded before Flop (didn't bet) +Seat 9: hengchang folded before Flop (didn't bet) + + + +PokerStars Game #47654417595: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IV (25/50) - 2010/08/03 11:37:38 ET +Table '297808375 2' 9-max Seat #4 is the button +Seat 1: kosiarz72 (2065 in chips) is sitting out +Seat 2: nenemalo77 (10758 in chips) +Seat 3: MexicanGamb (725 in chips) +Seat 4: THOUSANDGRAM (2925 in chips) +Seat 5: Georgy80 (1765 in chips) +Seat 6: s0rrow (1635 in chips) +Seat 8: MoIsonEx (4730 in chips) +Seat 9: hengchang (5910 in chips) +Georgy80: posts small blind 25 +s0rrow: posts big blind 50 +*** HOLE CARDS *** +Dealt to s0rrow [Qd Qh] +MoIsonEx: folds +hengchang: raises 100 to 150 +kosiarz72: folds +nenemalo77: folds +MexicanGamb: folds +THOUSANDGRAM: folds +Georgy80: folds +s0rrow: raises 350 to 500 +hengchang: raises 1250 to 1750 +kosiarz72 has returned +s0rrow: calls 1135 and is all-in +Uncalled bet (115) returned to hengchang +*** FLOP *** [Kh 4s Js] +*** TURN *** [Kh 4s Js] [2s] +*** RIVER *** [Kh 4s Js 2s] [8d] +*** SHOW DOWN *** +s0rrow: shows [Qd Qh] (a pair of Queens) +hengchang: shows [Tc Ts] (a pair of Tens) +s0rrow collected 3295 from pot +*** SUMMARY *** +Total pot 3295 | Rake 0 +Board [Kh 4s Js 2s 8d] +Seat 1: kosiarz72 folded before Flop (didn't bet) +Seat 2: nenemalo77 folded before Flop (didn't bet) +Seat 3: MexicanGamb folded before Flop (didn't bet) +Seat 4: THOUSANDGRAM (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: s0rrow (big blind) showed [Qd Qh] and won (3295) with a pair of Queens +Seat 8: MoIsonEx folded before Flop (didn't bet) +Seat 9: hengchang showed [Tc Ts] and lost with a pair of Tens + + + +PokerStars Game #47654447848: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level V (30/60) - 2010/08/03 11:38:30 ET +Table '297808375 2' 9-max Seat #5 is the button +Seat 1: kosiarz72 (2065 in chips) +Seat 2: nenemalo77 (10758 in chips) +Seat 3: MexicanGamb (725 in chips) +Seat 4: THOUSANDGRAM (2925 in chips) +Seat 5: Georgy80 (1740 in chips) +Seat 6: s0rrow (3295 in chips) +Seat 8: MoIsonEx (4730 in chips) +Seat 9: hengchang (4275 in chips) +s0rrow: posts small blind 30 +MoIsonEx: posts big blind 60 +*** HOLE CARDS *** +Dealt to s0rrow [Ts 6s] +hengchang: folds +kosiarz72: calls 60 +nenemalo77: folds +MexicanGamb: folds +THOUSANDGRAM: calls 60 +Georgy80: raises 1680 to 1740 and is all-in +s0rrow: folds +MoIsonEx: calls 1680 +kosiarz72: folds +THOUSANDGRAM: folds +*** FLOP *** [Tc 7c 6d] +*** TURN *** [Tc 7c 6d] [4h] +*** RIVER *** [Tc 7c 6d 4h] [Jd] +*** SHOW DOWN *** +MoIsonEx: shows [8c 8s] (a pair of Eights) +Georgy80: shows [Js Jc] (three of a kind, Jacks) +Georgy80 collected 3630 from pot +*** SUMMARY *** +Total pot 3630 | Rake 0 +Board [Tc 7c 6d 4h Jd] +Seat 1: kosiarz72 folded before Flop +Seat 2: nenemalo77 folded before Flop (didn't bet) +Seat 3: MexicanGamb folded before Flop (didn't bet) +Seat 4: THOUSANDGRAM folded before Flop +Seat 5: Georgy80 (button) showed [Js Jc] and won (3630) with three of a kind, Jacks +Seat 6: s0rrow (small blind) folded before Flop +Seat 8: MoIsonEx (big blind) showed [8c 8s] and lost with a pair of Eights +Seat 9: hengchang folded before Flop (didn't bet) + + + +PokerStars Game #47654472077: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level V (30/60) - 2010/08/03 11:39:11 ET +Table '297808375 2' 9-max Seat #6 is the button +Seat 1: kosiarz72 (2005 in chips) +Seat 2: nenemalo77 (10758 in chips) +Seat 3: MexicanGamb (725 in chips) +Seat 4: THOUSANDGRAM (2865 in chips) +Seat 5: Georgy80 (3630 in chips) +Seat 6: s0rrow (3265 in chips) +Seat 8: MoIsonEx (2990 in chips) +Seat 9: hengchang (4275 in chips) +MoIsonEx: posts small blind 30 +hengchang: posts big blind 60 +*** HOLE CARDS *** +Dealt to s0rrow [Kh Ah] +kosiarz72: calls 60 +nenemalo77: folds +MexicanGamb: raises 180 to 240 +THOUSANDGRAM: folds +Georgy80: calls 240 +s0rrow: raises 600 to 840 +MoIsonEx: folds +hengchang: folds +kosiarz72: folds +MexicanGamb: calls 485 and is all-in +Georgy80: calls 600 +*** FLOP *** [Jd 5d 3d] +Georgy80: checks +s0rrow: checks +*** TURN *** [Jd 5d 3d] [Qc] +Georgy80: checks +s0rrow: checks +*** RIVER *** [Jd 5d 3d Qc] [Kc] +Georgy80: checks +s0rrow: checks +*** SHOW DOWN *** +Georgy80: shows [9c 9d] (a pair of Nines) +s0rrow: shows [Kh Ah] (a pair of Kings) +s0rrow collected 230 from side pot +MexicanGamb: shows [Ac As] (a pair of Aces) +MexicanGamb collected 2325 from main pot +*** SUMMARY *** +Total pot 2555 Main pot 2325. Side pot 230. | Rake 0 +Board [Jd 5d 3d Qc Kc] +Seat 1: kosiarz72 folded before Flop +Seat 2: nenemalo77 folded before Flop (didn't bet) +Seat 3: MexicanGamb showed [Ac As] and won (2325) with a pair of Aces +Seat 4: THOUSANDGRAM folded before Flop (didn't bet) +Seat 5: Georgy80 showed [9c 9d] and lost with a pair of Nines +Seat 6: s0rrow (button) showed [Kh Ah] and won (230) with a pair of Kings +Seat 8: MoIsonEx (small blind) folded before Flop +Seat 9: hengchang (big blind) folded before Flop + + + +PokerStars Game #47654512666: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level V (30/60) - 2010/08/03 11:40:22 ET +Table '297808375 2' 9-max Seat #8 is the button +Seat 1: kosiarz72 (1945 in chips) +Seat 2: nenemalo77 (10758 in chips) +Seat 3: MexicanGamb (2325 in chips) +Seat 4: THOUSANDGRAM (2865 in chips) +Seat 5: Georgy80 (2790 in chips) +Seat 6: s0rrow (2655 in chips) +Seat 8: MoIsonEx (2960 in chips) +Seat 9: hengchang (4215 in chips) +hengchang: posts small blind 30 +kosiarz72: posts big blind 60 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 8h] +nenemalo77: calls 60 +MexicanGamb: raises 165 to 225 +THOUSANDGRAM: folds +Georgy80: folds +s0rrow: folds +MoIsonEx: folds +hengchang: folds +kosiarz72: folds +nenemalo77: calls 165 +*** FLOP *** [9h Kd 6c] +nenemalo77: checks +MexicanGamb: bets 300 +nenemalo77: folds +Uncalled bet (300) returned to MexicanGamb +MexicanGamb collected 540 from pot +MexicanGamb: doesn't show hand +*** SUMMARY *** +Total pot 540 | Rake 0 +Board [9h Kd 6c] +Seat 1: kosiarz72 (big blind) folded before Flop +Seat 2: nenemalo77 folded on the Flop +Seat 3: MexicanGamb collected (540) +Seat 4: THOUSANDGRAM folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) +Seat 8: MoIsonEx (button) folded before Flop (didn't bet) +Seat 9: hengchang (small blind) folded before Flop + + + +PokerStars Game #47654539551: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level V (30/60) - 2010/08/03 11:41:08 ET +Table '297808375 2' 9-max Seat #9 is the button +Seat 1: kosiarz72 (1885 in chips) +Seat 2: nenemalo77 (10533 in chips) +Seat 3: MexicanGamb (2640 in chips) +Seat 4: THOUSANDGRAM (2865 in chips) +Seat 5: Georgy80 (2790 in chips) +Seat 6: s0rrow (2655 in chips) +Seat 8: MoIsonEx (2960 in chips) +Seat 9: hengchang (4185 in chips) +kosiarz72: posts small blind 30 +nenemalo77: posts big blind 60 +*** HOLE CARDS *** +Dealt to s0rrow [Kh Ts] +MexicanGamb: folds +THOUSANDGRAM: calls 60 +Georgy80: calls 60 +s0rrow: folds +MoIsonEx: folds +hengchang: folds +kosiarz72: calls 30 +nenemalo77: checks +*** FLOP *** [7c Ah 7s] +kosiarz72: checks +nenemalo77: checks +THOUSANDGRAM: checks +Georgy80: checks +*** TURN *** [7c Ah 7s] [3c] +kosiarz72: checks +nenemalo77: checks +THOUSANDGRAM: checks +Georgy80: checks +*** RIVER *** [7c Ah 7s 3c] [5h] +kosiarz72: checks +nenemalo77: checks +THOUSANDGRAM: checks +Georgy80: checks +*** SHOW DOWN *** +kosiarz72: shows [Kd 6s] (a pair of Sevens) +nenemalo77: mucks hand +THOUSANDGRAM: mucks hand +Georgy80: mucks hand +kosiarz72 collected 240 from pot +*** SUMMARY *** +Total pot 240 | Rake 0 +Board [7c Ah 7s 3c 5h] +Seat 1: kosiarz72 (small blind) showed [Kd 6s] and won (240) with a pair of Sevens +Seat 2: nenemalo77 (big blind) mucked [9s 4s] +Seat 3: MexicanGamb folded before Flop (didn't bet) +Seat 4: THOUSANDGRAM mucked [Qc 8d] +Seat 5: Georgy80 mucked [Th 9h] +Seat 6: s0rrow folded before Flop (didn't bet) +Seat 8: MoIsonEx folded before Flop (didn't bet) +Seat 9: hengchang (button) folded before Flop (didn't bet) + + + +PokerStars Game #47654584917: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level V (30/60) - 2010/08/03 11:42:26 ET +Table '297808375 2' 9-max Seat #1 is the button +Seat 1: kosiarz72 (2065 in chips) +Seat 2: nenemalo77 (10473 in chips) +Seat 3: MexicanGamb (2640 in chips) +Seat 4: THOUSANDGRAM (2805 in chips) +Seat 5: Georgy80 (2730 in chips) +Seat 6: s0rrow (2655 in chips) +Seat 8: MoIsonEx (2960 in chips) +Seat 9: hengchang (4185 in chips) +nenemalo77: posts small blind 30 +MexicanGamb: posts big blind 60 +*** HOLE CARDS *** +Dealt to s0rrow [2d Jd] +THOUSANDGRAM: calls 60 +Georgy80: folds +s0rrow: folds +MoIsonEx: folds +hengchang: raises 120 to 180 +kosiarz72: folds +nenemalo77: calls 150 +MexicanGamb: folds +THOUSANDGRAM: calls 120 +*** FLOP *** [8c 5d 7h] +nenemalo77: bets 180 +THOUSANDGRAM: calls 180 +hengchang: folds +*** TURN *** [8c 5d 7h] [2s] +nenemalo77: bets 180 +THOUSANDGRAM: calls 180 +*** RIVER *** [8c 5d 7h 2s] [Ac] +nenemalo77: bets 240 +THOUSANDGRAM: folds +Uncalled bet (240) returned to nenemalo77 +nenemalo77 collected 1320 from pot +nenemalo77: doesn't show hand +*** SUMMARY *** +Total pot 1320 | Rake 0 +Board [8c 5d 7h 2s Ac] +Seat 1: kosiarz72 (button) folded before Flop (didn't bet) +Seat 2: nenemalo77 (small blind) collected (1320) +Seat 3: MexicanGamb (big blind) folded before Flop +Seat 4: THOUSANDGRAM folded on the River +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) +Seat 8: MoIsonEx folded before Flop (didn't bet) +Seat 9: hengchang folded on the Flop + + + +PokerStars Game #47654625143: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level V (30/60) - 2010/08/03 11:43:36 ET +Table '297808375 2' 9-max Seat #2 is the button +Seat 1: kosiarz72 (2065 in chips) +Seat 2: nenemalo77 (11253 in chips) +Seat 3: MexicanGamb (2580 in chips) +Seat 4: THOUSANDGRAM (2265 in chips) +Seat 5: Georgy80 (2730 in chips) +Seat 6: s0rrow (2655 in chips) +Seat 8: MoIsonEx (2960 in chips) +Seat 9: hengchang (4005 in chips) +MexicanGamb: posts small blind 30 +THOUSANDGRAM: posts big blind 60 +*** HOLE CARDS *** +Dealt to s0rrow [6s Js] +Georgy80: folds +s0rrow: folds +MoIsonEx: raises 180 to 240 +hengchang: folds +kosiarz72: calls 240 +nenemalo77: folds +MexicanGamb: folds +THOUSANDGRAM: folds +*** FLOP *** [Td Ts Tc] +MoIsonEx: bets 240 +kosiarz72: calls 240 +*** TURN *** [Td Ts Tc] [Ks] +MoIsonEx: bets 540 +kosiarz72: calls 540 +*** RIVER *** [Td Ts Tc Ks] [7s] +MoIsonEx: bets 1940 and is all-in +kosiarz72: calls 1045 and is all-in +Uncalled bet (895) returned to MoIsonEx +*** SHOW DOWN *** +MoIsonEx: shows [Kd Qc] (a full house, Tens full of Kings) +kosiarz72: shows [2s 2d] (a full house, Tens full of Deuces) +MoIsonEx collected 4220 from pot +*** SUMMARY *** +Total pot 4220 | Rake 0 +Board [Td Ts Tc Ks 7s] +Seat 1: kosiarz72 showed [2s 2d] and lost with a full house, Tens full of Deuces +Seat 2: nenemalo77 (button) folded before Flop (didn't bet) +Seat 3: MexicanGamb (small blind) folded before Flop +Seat 4: THOUSANDGRAM (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: s0rrow folded before Flop (didn't bet) +Seat 8: MoIsonEx showed [Kd Qc] and won (4220) with a full house, Tens full of Kings +Seat 9: hengchang folded before Flop (didn't bet) + + + +PokerStars Game #47654668328: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level V (30/60) - 2010/08/03 11:44:50 ET +Table '297808375 3' 9-max Seat #2 is the button +Seat 1: ratabar111 (5215 in chips) +Seat 2: TEJED (1522 in chips) +Seat 3: Djkujuhfl (1585 in chips) +Seat 4: beatlesmau5 (5130 in chips) +Seat 5: s0rrow (2655 in chips) +Seat 6: g0ty4 (1635 in chips) +Seat 7: Poker Elfe 1 (12593 in chips) +Seat 8: 123456789476 (5855 in chips) +Seat 9: CQ47 (967 in chips) +Djkujuhfl: posts small blind 30 +beatlesmau5: posts big blind 60 +*** HOLE CARDS *** +Dealt to s0rrow [Th 4h] +s0rrow: folds +g0ty4: folds +Poker Elfe 1: folds +123456789476: calls 60 +CQ47: calls 60 +ratabar111: calls 60 +TEJED: folds +Djkujuhfl: calls 30 +beatlesmau5: raises 240 to 300 +123456789476: folds +CQ47: raises 667 to 967 and is all-in +ratabar111: folds +Djkujuhfl: folds +beatlesmau5: calls 667 +*** FLOP *** [6c 2c Ts] +*** TURN *** [6c 2c Ts] [Td] +*** RIVER *** [6c 2c Ts Td] [5s] +*** SHOW DOWN *** +beatlesmau5: shows [Js Jh] (two pair, Jacks and Tens) +CQ47: shows [3s Ks] (a pair of Tens) +beatlesmau5 collected 2114 from pot +beatlesmau5 wins the $0.25 bounty for eliminating CQ47 +CQ47 finished the tournament in 43rd place +*** SUMMARY *** +Total pot 2114 | Rake 0 +Board [6c 2c Ts Td 5s] +Seat 1: ratabar111 folded before Flop +Seat 2: TEJED (button) folded before Flop (didn't bet) +Seat 3: Djkujuhfl (small blind) folded before Flop +Seat 4: beatlesmau5 (big blind) showed [Js Jh] and won (2114) with two pair, Jacks and Tens +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: g0ty4 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: 123456789476 folded before Flop +Seat 9: CQ47 showed [3s Ks] and lost with a pair of Tens + + + +PokerStars Game #47654702160: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level V (30/60) - 2010/08/03 11:45:49 ET +Table '297808375 3' 9-max Seat #3 is the button +Seat 1: ratabar111 (5155 in chips) +Seat 2: TEJED (1522 in chips) +Seat 3: Djkujuhfl (1525 in chips) +Seat 4: beatlesmau5 (6277 in chips) +Seat 5: s0rrow (2655 in chips) +Seat 6: g0ty4 (1635 in chips) +Seat 7: Poker Elfe 1 (12593 in chips) +Seat 8: 123456789476 (5795 in chips) +beatlesmau5: posts small blind 30 +s0rrow: posts big blind 60 +*** HOLE CARDS *** +Dealt to s0rrow [3h Tc] +g0ty4: folds +Poker Elfe 1: folds +123456789476: calls 60 +ratabar111: calls 60 +TEJED: calls 60 +Djkujuhfl: folds +beatlesmau5: calls 30 +s0rrow: checks +*** FLOP *** [6d 5d Qh] +beatlesmau5: checks +s0rrow: checks +123456789476: bets 120 +ratabar111: calls 120 +TEJED: calls 120 +beatlesmau5: folds +s0rrow: folds +*** TURN *** [6d 5d Qh] [8c] +123456789476: checks +ratabar111: checks +TEJED: checks +*** RIVER *** [6d 5d Qh 8c] [6s] +123456789476: checks +ratabar111: checks +TEJED: bets 1140 +123456789476: raises 1140 to 2280 +ratabar111: folds +TEJED: calls 202 and is all-in +Uncalled bet (938) returned to 123456789476 +*** SHOW DOWN *** +123456789476: shows [6h Ac] (three of a kind, Sixes) +TEJED: shows [Kd 6c] (three of a kind, Sixes - lower kicker) +123456789476 collected 3344 from pot +123456789476 wins the $0.25 bounty for eliminating TEJED +TEJED finished the tournament in 42nd place +*** SUMMARY *** +Total pot 3344 | Rake 0 +Board [6d 5d Qh 8c 6s] +Seat 1: ratabar111 folded on the River +Seat 2: TEJED showed [Kd 6c] and lost with three of a kind, Sixes +Seat 3: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 4: beatlesmau5 (small blind) folded on the Flop +Seat 5: s0rrow (big blind) folded on the Flop +Seat 6: g0ty4 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: 123456789476 showed [6h Ac] and won (3344) with three of a kind, Sixes + + + +PokerStars Game #47654767005: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level V (30/60) - 2010/08/03 11:47:41 ET +Table '297808375 3' 9-max Seat #4 is the button +Seat 1: ratabar111 (4975 in chips) +Seat 3: Djkujuhfl (1525 in chips) +Seat 4: beatlesmau5 (6217 in chips) +Seat 5: s0rrow (2595 in chips) +Seat 6: g0ty4 (1635 in chips) +Seat 7: Poker Elfe 1 (12593 in chips) +Seat 8: 123456789476 (7617 in chips) +s0rrow: posts small blind 30 +g0ty4: posts big blind 60 +*** HOLE CARDS *** +Dealt to s0rrow [Kh Qc] +Poker Elfe 1: calls 60 +123456789476: calls 60 +ratabar111: folds +ruslik_28 is connected +Djkujuhfl: raises 180 to 240 +beatlesmau5: folds +s0rrow: folds +g0ty4: folds +Poker Elfe 1: calls 180 +123456789476: calls 180 +*** FLOP *** [7s 7d 4s] +Poker Elfe 1: checks +123456789476: checks +Djkujuhfl: bets 480 +Poker Elfe 1: folds +123456789476: calls 480 +*** TURN *** [7s 7d 4s] [2h] +123456789476: checks +Djkujuhfl: bets 805 and is all-in +123456789476: folds +Uncalled bet (805) returned to Djkujuhfl +Djkujuhfl collected 1770 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 1770 | Rake 0 +Board [7s 7d 4s 2h] +Seat 1: ratabar111 folded before Flop (didn't bet) +Seat 3: Djkujuhfl collected (1770) +Seat 4: beatlesmau5 (button) folded before Flop (didn't bet) +Seat 5: s0rrow (small blind) folded before Flop +Seat 6: g0ty4 (big blind) folded before Flop +Seat 7: Poker Elfe 1 folded on the Flop +Seat 8: 123456789476 folded on the Turn + + + +PokerStars Game #47654817966: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VI (40/80) - 2010/08/03 11:49:09 ET +Table '297808375 3' 9-max Seat #5 is the button +Seat 1: ratabar111 (4975 in chips) +Seat 3: Djkujuhfl (2575 in chips) +Seat 4: beatlesmau5 (6217 in chips) +Seat 5: s0rrow (2565 in chips) +Seat 6: g0ty4 (1575 in chips) +Seat 7: Poker Elfe 1 (12353 in chips) +Seat 8: 123456789476 (6897 in chips) +Seat 9: ruslik_28 (2210 in chips) +g0ty4: posts small blind 40 +Poker Elfe 1: posts big blind 80 +*** HOLE CARDS *** +Dealt to s0rrow [Qd Qh] +123456789476: folds +ruslik_28: folds +ratabar111: folds +Djkujuhfl: raises 80 to 160 +beatlesmau5: folds +s0rrow: raises 400 to 560 +g0ty4: folds +Poker Elfe 1: folds +Djkujuhfl: folds +Uncalled bet (400) returned to s0rrow +s0rrow collected 440 from pot +*** SUMMARY *** +Total pot 440 | Rake 0 +Seat 1: ratabar111 folded before Flop (didn't bet) +Seat 3: Djkujuhfl folded before Flop +Seat 4: beatlesmau5 folded before Flop (didn't bet) +Seat 5: s0rrow (button) collected (440) +Seat 6: g0ty4 (small blind) folded before Flop +Seat 7: Poker Elfe 1 (big blind) folded before Flop +Seat 8: 123456789476 folded before Flop (didn't bet) +Seat 9: ruslik_28 folded before Flop (didn't bet) + + + +PokerStars Game #47654833720: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VI (40/80) - 2010/08/03 11:49:36 ET +Table '297808375 3' 9-max Seat #6 is the button +Seat 1: ratabar111 (4975 in chips) +Seat 3: Djkujuhfl (2415 in chips) +Seat 4: beatlesmau5 (6217 in chips) +Seat 5: s0rrow (2845 in chips) +Seat 6: g0ty4 (1535 in chips) +Seat 8: 123456789476 (6897 in chips) +Seat 9: ruslik_28 (2210 in chips) +123456789476: posts small blind 40 +ruslik_28: posts big blind 80 +*** HOLE CARDS *** +Dealt to s0rrow [Jh Td] +ratabar111: calls 80 +Djkujuhfl: folds +beatlesmau5: folds +s0rrow: folds +g0ty4: folds +123456789476: raises 80 to 160 +ruslik_28: calls 80 +ratabar111: calls 80 +*** FLOP *** [8s Ah 5c] +123456789476: checks +ruslik_28: checks +ratabar111: checks +*** TURN *** [8s Ah 5c] [Kh] +123456789476: bets 160 +ruslik_28: folds +ratabar111: folds +Uncalled bet (160) returned to 123456789476 +123456789476 collected 480 from pot +*** SUMMARY *** +Total pot 480 | Rake 0 +Board [8s Ah 5c Kh] +Seat 1: ratabar111 folded on the Turn +Seat 3: Djkujuhfl folded before Flop (didn't bet) +Seat 4: beatlesmau5 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: g0ty4 (button) folded before Flop (didn't bet) +Seat 8: 123456789476 (small blind) collected (480) +Seat 9: ruslik_28 (big blind) folded on the Turn + + + +PokerStars Game #47654854025: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VI (40/80) - 2010/08/03 11:50:10 ET +Table '297808375 3' 9-max Seat #8 is the button +Seat 1: ratabar111 (4815 in chips) +Seat 3: Djkujuhfl (2415 in chips) +Seat 4: beatlesmau5 (6217 in chips) +Seat 5: s0rrow (2845 in chips) +Seat 6: g0ty4 (1535 in chips) +Seat 8: 123456789476 (7217 in chips) +Seat 9: ruslik_28 (2050 in chips) +ruslik_28: posts small blind 40 +ratabar111: posts big blind 80 +*** HOLE CARDS *** +Dealt to s0rrow [Js 8d] +Djkujuhfl: folds +beatlesmau5: folds +s0rrow: folds +g0ty4: raises 240 to 320 +123456789476: folds +ruslik_28: folds +ratabar111: folds +Uncalled bet (240) returned to g0ty4 +g0ty4 collected 200 from pot +*** SUMMARY *** +Total pot 200 | Rake 0 +Seat 1: ratabar111 (big blind) folded before Flop +Seat 3: Djkujuhfl folded before Flop (didn't bet) +Seat 4: beatlesmau5 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: g0ty4 collected (200) +Seat 8: 123456789476 (button) folded before Flop (didn't bet) +Seat 9: ruslik_28 (small blind) folded before Flop + + + +PokerStars Game #47654870547: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VI (40/80) - 2010/08/03 11:50:38 ET +Table '297808375 3' 9-max Seat #9 is the button +Seat 1: ratabar111 (4735 in chips) +Seat 3: Djkujuhfl (2415 in chips) +Seat 4: beatlesmau5 (6217 in chips) +Seat 5: s0rrow (2845 in chips) +Seat 6: g0ty4 (1655 in chips) +Seat 8: 123456789476 (7217 in chips) +Seat 9: ruslik_28 (2010 in chips) +ratabar111: posts small blind 40 +Djkujuhfl: posts big blind 80 +*** HOLE CARDS *** +Dealt to s0rrow [7s Td] +beatlesmau5: folds +s0rrow: folds +g0ty4: folds +123456789476: calls 80 +ruslik_28: raises 240 to 320 +ratabar111: folds +Djkujuhfl: folds +123456789476: folds +Uncalled bet (240) returned to ruslik_28 +ruslik_28 collected 280 from pot +ruslik_28: doesn't show hand +*** SUMMARY *** +Total pot 280 | Rake 0 +Seat 1: ratabar111 (small blind) folded before Flop +Seat 3: Djkujuhfl (big blind) folded before Flop +Seat 4: beatlesmau5 folded before Flop (didn't bet) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: g0ty4 folded before Flop (didn't bet) +Seat 8: 123456789476 folded before Flop +Seat 9: ruslik_28 (button) collected (280) + + + +PokerStars Game #47654886590: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VI (40/80) - 2010/08/03 11:51:06 ET +Table '297808375 3' 9-max Seat #1 is the button +Seat 1: ratabar111 (4695 in chips) +Seat 3: Djkujuhfl (2335 in chips) +Seat 4: beatlesmau5 (6217 in chips) +Seat 5: s0rrow (2845 in chips) +Seat 6: g0ty4 (1655 in chips) +Seat 8: 123456789476 (7137 in chips) +Seat 9: ruslik_28 (2210 in chips) +Djkujuhfl: posts small blind 40 +beatlesmau5: posts big blind 80 +*** HOLE CARDS *** +Dealt to s0rrow [9h 6s] +s0rrow: folds +g0ty4: raises 160 to 240 +123456789476: folds +ruslik_28: folds +ratabar111: folds +Djkujuhfl: folds +beatlesmau5: folds +Uncalled bet (160) returned to g0ty4 +g0ty4 collected 200 from pot +g0ty4: doesn't show hand +*** SUMMARY *** +Total pot 200 | Rake 0 +Seat 1: ratabar111 (button) folded before Flop (didn't bet) +Seat 3: Djkujuhfl (small blind) folded before Flop +Seat 4: beatlesmau5 (big blind) folded before Flop +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: g0ty4 collected (200) +Seat 8: 123456789476 folded before Flop (didn't bet) +Seat 9: ruslik_28 folded before Flop (didn't bet) + + + +PokerStars Game #47654896263: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VI (40/80) - 2010/08/03 11:51:22 ET +Table '297808375 3' 9-max Seat #3 is the button +Seat 1: ratabar111 (4695 in chips) +Seat 3: Djkujuhfl (2295 in chips) +Seat 4: beatlesmau5 (6137 in chips) +Seat 5: s0rrow (2845 in chips) +Seat 6: g0ty4 (1775 in chips) +Seat 8: 123456789476 (7137 in chips) +Seat 9: ruslik_28 (2210 in chips) +beatlesmau5: posts small blind 40 +s0rrow: posts big blind 80 +*** HOLE CARDS *** +Dealt to s0rrow [6c 5d] +g0ty4: calls 80 +123456789476: folds +ruslik_28: folds +ratabar111: calls 80 +Djkujuhfl: folds +beatlesmau5: folds +s0rrow: checks +*** FLOP *** [6h 2c 4s] +s0rrow: checks +g0ty4: checks +ratabar111: checks +*** TURN *** [6h 2c 4s] [Js] +s0rrow: checks +g0ty4: checks +ratabar111: checks +*** RIVER *** [6h 2c 4s Js] [Qh] +s0rrow: checks +g0ty4: checks +ratabar111: checks +*** SHOW DOWN *** +s0rrow: shows [6c 5d] (a pair of Sixes) +g0ty4: mucks hand +ratabar111: mucks hand +s0rrow collected 280 from pot +*** SUMMARY *** +Total pot 280 | Rake 0 +Board [6h 2c 4s Js Qh] +Seat 1: ratabar111 mucked [9h Td] +Seat 3: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 4: beatlesmau5 (small blind) folded before Flop +Seat 5: s0rrow (big blind) showed [6c 5d] and won (280) with a pair of Sixes +Seat 6: g0ty4 mucked [3c 3h] +Seat 8: 123456789476 folded before Flop (didn't bet) +Seat 9: ruslik_28 folded before Flop (didn't bet) + + + +PokerStars Game #47654918793: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VI (40/80) - 2010/08/03 11:52:00 ET +Table '297808375 3' 9-max Seat #4 is the button +Seat 1: ratabar111 (4615 in chips) +Seat 3: Djkujuhfl (2295 in chips) +Seat 4: beatlesmau5 (6097 in chips) +Seat 5: s0rrow (3045 in chips) +Seat 6: g0ty4 (1695 in chips) +Seat 8: 123456789476 (7137 in chips) +Seat 9: ruslik_28 (2210 in chips) +s0rrow: posts small blind 40 +g0ty4: posts big blind 80 +*** HOLE CARDS *** +Dealt to s0rrow [8d 2h] +123456789476: calls 80 +ruslik_28: folds +ratabar111: folds +Djkujuhfl: folds +beatlesmau5: folds +s0rrow: folds +g0ty4: checks +*** FLOP *** [2s 5d 9h] +g0ty4: checks +123456789476: bets 160 +g0ty4: folds +Uncalled bet (160) returned to 123456789476 +123456789476 collected 200 from pot +*** SUMMARY *** +Total pot 200 | Rake 0 +Board [2s 5d 9h] +Seat 1: ratabar111 folded before Flop (didn't bet) +Seat 3: Djkujuhfl folded before Flop (didn't bet) +Seat 4: beatlesmau5 (button) folded before Flop (didn't bet) +Seat 5: s0rrow (small blind) folded before Flop +Seat 6: g0ty4 (big blind) folded on the Flop +Seat 8: 123456789476 collected (200) +Seat 9: ruslik_28 folded before Flop (didn't bet) + + + +PokerStars Game #47654932954: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VI (40/80) - 2010/08/03 11:52:24 ET +Table '297808375 3' 9-max Seat #5 is the button +Seat 1: ratabar111 (4615 in chips) +Seat 3: Djkujuhfl (2295 in chips) +Seat 4: beatlesmau5 (6097 in chips) +Seat 5: s0rrow (3005 in chips) +Seat 6: g0ty4 (1615 in chips) +Seat 8: 123456789476 (7257 in chips) +Seat 9: ruslik_28 (2210 in chips) +g0ty4: posts small blind 40 +123456789476: posts big blind 80 +*** HOLE CARDS *** +Dealt to s0rrow [7c 5h] +ruslik_28: calls 80 +ratabar111: folds +Djkujuhfl: folds +beatlesmau5: folds +s0rrow: calls 80 +g0ty4: folds +123456789476: checks +*** FLOP *** [4h Th Ts] +123456789476: checks +ruslik_28: checks +s0rrow: bets 240 +123456789476: folds +ruslik_28: folds +Uncalled bet (240) returned to s0rrow +s0rrow collected 280 from pot +*** SUMMARY *** +Total pot 280 | Rake 0 +Board [4h Th Ts] +Seat 1: ratabar111 folded before Flop (didn't bet) +Seat 3: Djkujuhfl folded before Flop (didn't bet) +Seat 4: beatlesmau5 folded before Flop (didn't bet) +Seat 5: s0rrow (button) collected (280) +Seat 6: g0ty4 (small blind) folded before Flop +Seat 8: 123456789476 (big blind) folded on the Flop +Seat 9: ruslik_28 folded on the Flop + + + +PokerStars Game #47654957983: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VI (40/80) - 2010/08/03 11:53:07 ET +Table '297808375 3' 9-max Seat #6 is the button +Seat 1: ratabar111 (4615 in chips) +Seat 3: Djkujuhfl (2295 in chips) +Seat 4: beatlesmau5 (6097 in chips) +Seat 5: s0rrow (3205 in chips) +Seat 6: g0ty4 (1575 in chips) +Seat 8: 123456789476 (7177 in chips) +Seat 9: ruslik_28 (2130 in chips) +123456789476: posts small blind 40 +ruslik_28: posts big blind 80 +*** HOLE CARDS *** +Dealt to s0rrow [8s 9s] +ratabar111: calls 80 +Djkujuhfl: folds +beatlesmau5: folds +s0rrow: raises 240 to 320 +g0ty4: folds +123456789476: calls 280 +ruslik_28: calls 240 +ratabar111: folds +*** FLOP *** [6d 7c 8h] +123456789476: bets 160 +ruslik_28: calls 160 +s0rrow: calls 160 +*** TURN *** [6d 7c 8h] [Kd] +123456789476: checks +ruslik_28: bets 320 +s0rrow: calls 320 +123456789476: folds +*** RIVER *** [6d 7c 8h Kd] [4d] +ruslik_28: checks +s0rrow: bets 880 +ruslik_28: folds +Uncalled bet (880) returned to s0rrow +s0rrow collected 2160 from pot +*** SUMMARY *** +Total pot 2160 | Rake 0 +Board [6d 7c 8h Kd 4d] +Seat 1: ratabar111 folded before Flop +Seat 3: Djkujuhfl folded before Flop (didn't bet) +Seat 4: beatlesmau5 folded before Flop (didn't bet) +Seat 5: s0rrow collected (2160) +Seat 6: g0ty4 (button) folded before Flop (didn't bet) +Seat 8: 123456789476 (small blind) folded on the Turn +Seat 9: ruslik_28 (big blind) folded on the River + + + +PokerStars Game #47654990248: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VI (40/80) - 2010/08/03 11:54:02 ET +Table '297808375 3' 9-max Seat #8 is the button +Seat 1: ratabar111 (4535 in chips) +Seat 3: Djkujuhfl (2295 in chips) +Seat 4: beatlesmau5 (6097 in chips) +Seat 5: s0rrow (4565 in chips) +Seat 6: g0ty4 (1575 in chips) +Seat 8: 123456789476 (6697 in chips) +Seat 9: ruslik_28 (1330 in chips) +ruslik_28: posts small blind 40 +ratabar111: posts big blind 80 +*** HOLE CARDS *** +Dealt to s0rrow [Kd Jd] +Djkujuhfl: folds +beatlesmau5: raises 240 to 320 +s0rrow: folds +g0ty4: folds +123456789476: folds +ruslik_28: folds +ratabar111: folds +Uncalled bet (240) returned to beatlesmau5 +beatlesmau5 collected 200 from pot +beatlesmau5: doesn't show hand +*** SUMMARY *** +Total pot 200 | Rake 0 +Seat 1: ratabar111 (big blind) folded before Flop +Seat 3: Djkujuhfl folded before Flop (didn't bet) +Seat 4: beatlesmau5 collected (200) +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: g0ty4 folded before Flop (didn't bet) +Seat 8: 123456789476 (button) folded before Flop (didn't bet) +Seat 9: ruslik_28 (small blind) folded before Flop + + + +PokerStars Game #47655153118: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VI (40/80) - 2010/08/03 11:59:45 ET +Table '297808375 3' 9-max Seat #9 is the button +Seat 1: ratabar111 (4455 in chips) +Seat 3: Djkujuhfl (2295 in chips) +Seat 4: beatlesmau5 (6217 in chips) +Seat 5: s0rrow (4565 in chips) +Seat 6: g0ty4 (1575 in chips) +Seat 8: 123456789476 (6697 in chips) +Seat 9: ruslik_28 (1290 in chips) +ratabar111: posts small blind 40 +Djkujuhfl: posts big blind 80 +*** HOLE CARDS *** +Dealt to s0rrow [7s 5c] +beatlesmau5: calls 80 +s0rrow: folds +g0ty4: folds +123456789476: calls 80 +ruslik_28: raises 1210 to 1290 and is all-in +ratabar111: folds +Djkujuhfl has timed out +Djkujuhfl: folds +Djkujuhfl is sitting out +beatlesmau5: folds +123456789476: calls 1210 +*** FLOP *** [3c Ks 9c] +*** TURN *** [3c Ks 9c] [Ah] +*** RIVER *** [3c Ks 9c Ah] [Qc] +*** SHOW DOWN *** +123456789476: shows [Js Qh] (a pair of Queens) +ruslik_28: shows [5h 5s] (a pair of Fives) +123456789476 collected 2780 from pot +*** SUMMARY *** +Total pot 2780 | Rake 0 +Board [3c Ks 9c Ah Qc] +Seat 1: ratabar111 (small blind) folded before Flop +Seat 3: Djkujuhfl (big blind) folded before Flop +Seat 4: beatlesmau5 folded before Flop +Seat 5: s0rrow folded before Flop (didn't bet) +Seat 6: g0ty4 folded before Flop (didn't bet) +Seat 8: 123456789476 showed [Js Qh] and won (2780) with a pair of Queens +Seat 9: ruslik_28 (button) showed [5h 5s] and lost with a pair of Fives + + + +PokerStars Game #47655304866: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:03:50 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (4565 in chips) +Seat 2: ruslan999588 (4436 in chips) +Seat 3: titasands (1500 in chips) is sitting out +Seat 4: seric1975 (2050 in chips) +Seat 5: Georgy80 (8689 in chips) +Seat 6: ramones004 (1845 in chips) +Seat 7: Poker Elfe 1 (12353 in chips) +Seat 8: Djkujuhfl (2215 in chips) +Seat 9: stefan_bg_46 (6515 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +ramones004: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +titasands: posts small blind 50 +seric1975: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [6c 9s] +Georgy80: folds +ramones004: folds +Poker Elfe 1: folds +Djkujuhfl: raises 300 to 400 +stefan_bg_46: folds +s0rrow: folds +ruslan999588: folds +titasands: folds +seric1975: folds +Uncalled bet (300) returned to Djkujuhfl +Djkujuhfl collected 340 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 340 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 (button) folded before Flop (didn't bet) +Seat 3: titasands (small blind) folded before Flop +Seat 4: seric1975 (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: ramones004 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl collected (340) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655322797: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:04:15 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: s0rrow (4555 in chips) +Seat 2: ruslan999588 (4426 in chips) +Seat 3: titasands (1440 in chips) is sitting out +Seat 4: seric1975 (1940 in chips) +Seat 5: Georgy80 (8679 in chips) +Seat 6: ramones004 (1835 in chips) +Seat 7: Poker Elfe 1 (12343 in chips) +Seat 8: Djkujuhfl (2445 in chips) +Seat 9: stefan_bg_46 (6505 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +ramones004: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +seric1975: posts small blind 50 +Georgy80: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [7h 9h] +ramones004: folds +Poker Elfe 1: calls 100 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: calls 100 +ruslan999588: folds +titasands: folds +seric1975: folds +Georgy80: checks +*** FLOP *** [5s Ad 8s] +Georgy80: checks +Poker Elfe 1: checks +s0rrow: bets 300 +Georgy80: folds +Poker Elfe 1: folds +Uncalled bet (300) returned to s0rrow +s0rrow collected 440 from pot +*** SUMMARY *** +Total pot 440 | Rake 0 +Board [5s Ad 8s] +Seat 1: s0rrow collected (440) +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands (button) folded before Flop (didn't bet) +Seat 4: seric1975 (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded on the Flop +Seat 6: ramones004 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded on the Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655351079: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:04:58 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (4885 in chips) +Seat 2: ruslan999588 (4416 in chips) +Seat 3: titasands (1430 in chips) is sitting out +Seat 4: seric1975 (1880 in chips) +Seat 5: Georgy80 (8569 in chips) +Seat 6: ramones004 (1825 in chips) +Seat 7: Poker Elfe 1 (12233 in chips) +Seat 8: Djkujuhfl (2435 in chips) +Seat 9: stefan_bg_46 (6495 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +ramones004: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +Georgy80: posts small blind 50 +ramones004: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [8h 7c] +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +ruslan999588: calls 100 +titasands: folds +seric1975: folds +Georgy80: folds +ramones004: checks +*** FLOP *** [8d 7s Qc] +ramones004: checks +ruslan999588: checks +*** TURN *** [8d 7s Qc] [6c] +ramones004: checks +ruslan999588: checks +*** RIVER *** [8d 7s Qc 6c] [Jh] +ramones004: checks +ruslan999588: bets 100 +ramones004: folds +Uncalled bet (100) returned to ruslan999588 +ruslan999588 collected 340 from pot +ruslan999588: doesn't show hand +*** SUMMARY *** +Total pot 340 | Rake 0 +Board [8d 7s Qc 6c Jh] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 collected (340) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: ramones004 (big blind) folded on the River +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655380480: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:05:41 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (4875 in chips) +Seat 2: ruslan999588 (4646 in chips) +Seat 3: titasands (1420 in chips) is sitting out +Seat 4: seric1975 (1870 in chips) +Seat 5: Georgy80 (8509 in chips) +Seat 6: ramones004 (1715 in chips) +Seat 7: Poker Elfe 1 (12223 in chips) +Seat 8: Djkujuhfl (2425 in chips) +Seat 9: stefan_bg_46 (6485 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +ramones004: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +ramones004: posts small blind 50 +Poker Elfe 1: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [7c 5h] +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +ruslan999588: calls 100 +titasands: folds +seric1975: raises 400 to 500 +Georgy80: folds +ramones004: folds +Poker Elfe 1: calls 400 +ruslan999588: folds +*** FLOP *** [As 3c 5d] +Poker Elfe 1: bets 200 +seric1975: raises 1160 to 1360 and is all-in +Poker Elfe 1: calls 1160 +*** TURN *** [As 3c 5d] [Th] +*** RIVER *** [As 3c 5d Th] [Ts] +*** SHOW DOWN *** +Poker Elfe 1: shows [Ac 8s] (two pair, Aces and Tens) +seric1975: shows [Ah Jd] (two pair, Aces and Tens - Jack kicker) +seric1975 collected 3960 from pot +*** SUMMARY *** +Total pot 3960 | Rake 0 +Board [As 3c 5d Th Ts] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 folded before Flop +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 showed [Ah Jd] and won (3960) with two pair, Aces and Tens +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: ramones004 (small blind) folded before Flop +Seat 7: Poker Elfe 1 (big blind) showed [Ac 8s] and lost with two pair, Aces and Tens +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655411366: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:06:27 ET +Table '297808375 8' 9-max Seat #6 is the button +Seat 1: s0rrow (4865 in chips) +Seat 2: ruslan999588 (4536 in chips) +Seat 3: titasands (1410 in chips) is sitting out +Seat 4: seric1975 (3960 in chips) +Seat 5: Georgy80 (8499 in chips) +Seat 6: ramones004 (1655 in chips) +Seat 7: Poker Elfe 1 (10353 in chips) +Seat 8: Djkujuhfl (2415 in chips) +Seat 9: stefan_bg_46 (6475 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +ramones004: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +Poker Elfe 1: posts small blind 50 +Djkujuhfl: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Jd 7d] +stefan_bg_46: raises 100 to 200 +s0rrow: folds +ruslan999588: folds +titasands: folds +seric1975: calls 200 +Georgy80: folds +ramones004: folds +Poker Elfe 1: calls 150 +Djkujuhfl: folds +*** FLOP *** [6h Ad Jc] +Poker Elfe 1: checks +stefan_bg_46: checks +seric1975: bets 300 +Poker Elfe 1: folds +stefan_bg_46: calls 300 +*** TURN *** [6h Ad Jc] [5h] +stefan_bg_46: checks +seric1975: bets 300 +stefan_bg_46: calls 300 +*** RIVER *** [6h Ad Jc 5h] [Kh] +stefan_bg_46: checks +seric1975: bets 1900 +stefan_bg_46: calls 1900 +*** SHOW DOWN *** +seric1975: shows [Ah 4h] (a flush, Ace high) +stefan_bg_46: mucks hand +seric1975 collected 5790 from pot +*** SUMMARY *** +Total pot 5790 | Rake 0 +Board [6h Ad Jc 5h Kh] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 showed [Ah 4h] and won (5790) with a flush, Ace high +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: ramones004 (button) folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (small blind) folded on the Flop +Seat 8: Djkujuhfl (big blind) folded before Flop +Seat 9: stefan_bg_46 mucked [Kc Tc] + + + +PokerStars Game #47655459229: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:07:38 ET +Table '297808375 8' 9-max Seat #7 is the button +Seat 1: s0rrow (4855 in chips) +Seat 2: ruslan999588 (4526 in chips) +Seat 3: titasands (1400 in chips) is sitting out +Seat 4: seric1975 (7040 in chips) +Seat 5: Georgy80 (8489 in chips) +Seat 6: ramones004 (1645 in chips) +Seat 7: Poker Elfe 1 (10143 in chips) +Seat 8: Djkujuhfl (2305 in chips) +Seat 9: stefan_bg_46 (3765 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +ramones004: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +Djkujuhfl: posts small blind 50 +stefan_bg_46: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 5s] +s0rrow: folds +ruslan999588: folds +titasands: folds +seric1975: raises 100 to 200 +Georgy80: folds +ramones004: folds +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: raises 3555 to 3755 and is all-in +seric1975: folds +Uncalled bet (3555) returned to stefan_bg_46 +stefan_bg_46 collected 540 from pot +*** SUMMARY *** +Total pot 540 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: ramones004 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (button) folded before Flop (didn't bet) +Seat 8: Djkujuhfl (small blind) folded before Flop +Seat 9: stefan_bg_46 (big blind) collected (540) + + + +PokerStars Game #47655481983: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:08:11 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (4845 in chips) +Seat 2: ruslan999588 (4516 in chips) +Seat 3: titasands (1390 in chips) is sitting out +Seat 4: seric1975 (6830 in chips) +Seat 5: Georgy80 (8479 in chips) +Seat 6: ramones004 (1635 in chips) +Seat 7: Poker Elfe 1 (10133 in chips) +Seat 8: Djkujuhfl (2245 in chips) +Seat 9: stefan_bg_46 (4095 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +ramones004: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +stefan_bg_46: posts small blind 50 +s0rrow: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Qc 4s] +ruslan999588: folds +titasands: folds +seric1975: folds +Georgy80: folds +ramones004: folds +Poker Elfe 1: folds +Djkujuhfl: raises 200 to 300 +stefan_bg_46: folds +s0rrow: folds +Uncalled bet (200) returned to Djkujuhfl +Djkujuhfl collected 340 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 340 | Rake 0 +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: ramones004 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) collected (340) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47655498478: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:08:36 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (4735 in chips) +Seat 2: ruslan999588 (4506 in chips) +Seat 3: titasands (1380 in chips) is sitting out +Seat 4: seric1975 (6820 in chips) +Seat 5: Georgy80 (8469 in chips) +Seat 6: ramones004 (1625 in chips) +Seat 7: Poker Elfe 1 (10123 in chips) +Seat 8: Djkujuhfl (2475 in chips) +Seat 9: stefan_bg_46 (4035 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +ramones004: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +s0rrow: posts small blind 50 +ruslan999588: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [2h 4s] +titasands: folds +seric1975: folds +Georgy80: folds +ramones004: folds +Poker Elfe 1: calls 100 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +ruslan999588: checks +*** FLOP *** [4d 7d 3s] +ruslan999588: checks +Poker Elfe 1: checks +*** TURN *** [4d 7d 3s] [9c] +ruslan999588: checks +Poker Elfe 1: checks +*** RIVER *** [4d 7d 3s 9c] [8h] +ruslan999588: bets 100 +Poker Elfe 1: calls 100 +*** SHOW DOWN *** +ruslan999588: shows [Qh 2c] (high card Queen) +Poker Elfe 1: shows [Qd Ac] (high card Ace) +Poker Elfe 1 collected 540 from pot +*** SUMMARY *** +Total pot 540 | Rake 0 +Board [4d 7d 3s 9c 8h] +Seat 1: s0rrow (small blind) folded before Flop +Seat 2: ruslan999588 (big blind) showed [Qh 2c] and lost with high card Queen +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: ramones004 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 showed [Qd Ac] and won (540) with high card Ace +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47655518149: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:09:05 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (4675 in chips) +Seat 2: ruslan999588 (4296 in chips) +Seat 3: titasands (1370 in chips) is sitting out +Seat 4: seric1975 (6810 in chips) +Seat 5: Georgy80 (8459 in chips) +Seat 6: ramones004 (1615 in chips) +Seat 7: Poker Elfe 1 (10453 in chips) +Seat 8: Djkujuhfl (2465 in chips) +Seat 9: stefan_bg_46 (4025 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +ramones004: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +ruslan999588: posts small blind 50 +titasands: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [2s Kc] +seric1975: raises 300 to 400 +Georgy80: calls 400 +ramones004: folds +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +ruslan999588: folds +titasands: folds +*** FLOP *** [Jd 5c 6d] +seric1975: bets 1100 +Georgy80: folds +Uncalled bet (1100) returned to seric1975 +seric1975 collected 1040 from pot +*** SUMMARY *** +Total pot 1040 | Rake 0 +Board [Jd 5c 6d] +Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 2: ruslan999588 (small blind) folded before Flop +Seat 3: titasands (big blind) folded before Flop +Seat 4: seric1975 collected (1040) +Seat 5: Georgy80 folded on the Flop +Seat 6: ramones004 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655549895: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:09:52 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (4665 in chips) +Seat 2: ruslan999588 (4236 in chips) +Seat 3: titasands (1260 in chips) is sitting out +Seat 4: seric1975 (7440 in chips) +Seat 5: Georgy80 (8049 in chips) +Seat 6: ramones004 (1605 in chips) +Seat 7: Poker Elfe 1 (10443 in chips) +Seat 8: Djkujuhfl (2455 in chips) +Seat 9: stefan_bg_46 (4015 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +ramones004: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +titasands: posts small blind 50 +seric1975: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 6s] +Georgy80: raises 245 to 345 +ramones004: raises 1250 to 1595 and is all-in +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +ruslan999588: folds +titasands: folds +seric1975: calls 1495 +Georgy80: raises 3260 to 4855 +seric1975: folds +Uncalled bet (3260) returned to Georgy80 +*** FLOP *** [5c Jh Kd] +*** TURN *** [5c Jh Kd] [4d] +*** RIVER *** [5c Jh Kd 4d] [Tc] +*** SHOW DOWN *** +Georgy80: shows [Kc Ks] (three of a kind, Kings) +ramones004: shows [Ad Th] (a pair of Tens) +Georgy80 collected 4925 from pot +Georgy80 wins the $0.25 bounty for eliminating ramones004 +ramones004 finished the tournament in 34th place +*** SUMMARY *** +Total pot 4925 | Rake 0 +Board [5c Jh Kd 4d Tc] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 (button) folded before Flop (didn't bet) +Seat 3: titasands (small blind) folded before Flop +Seat 4: seric1975 (big blind) folded before Flop +Seat 5: Georgy80 showed [Kc Ks] and won (4925) with three of a kind, Kings +Seat 6: ramones004 showed [Ad Th] and lost with a pair of Tens +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655583680: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:10:43 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: s0rrow (4655 in chips) +Seat 2: ruslan999588 (4226 in chips) +Seat 3: titasands (1200 in chips) is sitting out +Seat 4: seric1975 (5835 in chips) +Seat 5: Georgy80 (11369 in chips) +Seat 7: Poker Elfe 1 (10433 in chips) +Seat 8: Djkujuhfl (2445 in chips) +Seat 9: stefan_bg_46 (4005 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +seric1975: posts small blind 50 +Georgy80: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Th 8s] +Poker Elfe 1: calls 100 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +ruslan999588: folds +titasands: folds +seric1975: calls 50 +Georgy80: checks +*** FLOP *** [Ad 3h As] +seric1975: checks +Georgy80: checks +Poker Elfe 1: checks +*** TURN *** [Ad 3h As] [2d] +seric1975: checks +Georgy80: bets 125 +Poker Elfe 1: raises 125 to 250 +seric1975: folds +Georgy80: calls 125 +*** RIVER *** [Ad 3h As 2d] [3s] +Georgy80: checks +Poker Elfe 1: bets 100 +Georgy80: raises 689 to 789 +Poker Elfe 1: calls 689 +*** SHOW DOWN *** +Georgy80: shows [Ah 7d] (a full house, Aces full of Threes) +Poker Elfe 1: mucks hand +Georgy80 collected 2458 from pot +*** SUMMARY *** +Total pot 2458 | Rake 0 +Board [Ad 3h As 2d 3s] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands (button) folded before Flop (didn't bet) +Seat 4: seric1975 (small blind) folded on the Turn +Seat 5: Georgy80 (big blind) showed [Ah 7d] and won (2458) with a full house, Aces full of Threes +Seat 7: Poker Elfe 1 mucked [2h 2s] +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655617101: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:11:33 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (4645 in chips) +Seat 2: ruslan999588 (4216 in chips) +Seat 3: titasands (1190 in chips) is sitting out +Seat 4: seric1975 (5725 in chips) +Seat 5: Georgy80 (12678 in chips) +Seat 7: Poker Elfe 1 (9284 in chips) +Seat 8: Djkujuhfl (2435 in chips) +Seat 9: stefan_bg_46 (3995 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +Georgy80: posts small blind 50 +Poker Elfe 1: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [2h 7d] +Djkujuhfl: folds +stefan_bg_46: calls 100 +s0rrow: folds +ruslan999588: folds +titasands: folds +seric1975: folds +Georgy80: calls 50 +Poker Elfe 1: checks +*** FLOP *** [As Ac Ts] +Georgy80: checks +Poker Elfe 1: checks +stefan_bg_46: checks +*** TURN *** [As Ac Ts] [Jc] +Georgy80: bets 125 +Poker Elfe 1: folds +stefan_bg_46: calls 125 +*** RIVER *** [As Ac Ts Jc] [Qh] +Georgy80: bets 485 +stefan_bg_46: raises 485 to 970 +Georgy80: calls 485 +*** SHOW DOWN *** +stefan_bg_46: shows [Kc 7c] (a straight, Ten to Ace) +Georgy80: shows [Kd Jh] (a straight, Ten to Ace) +Georgy80 collected 1285 from pot +stefan_bg_46 collected 1285 from pot +*** SUMMARY *** +Total pot 2570 | Rake 0 +Board [As Ac Ts Jc Qh] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) showed [Kd Jh] and won (1285) with a straight, Ten to Ace +Seat 7: Poker Elfe 1 (big blind) folded on the Turn +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 showed [Kc 7c] and won (1285) with a straight, Ten to Ace + + + +PokerStars Game #47655644547: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:12:15 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (4635 in chips) +Seat 2: ruslan999588 (4206 in chips) +Seat 3: titasands (1180 in chips) is sitting out +Seat 4: seric1975 (5715 in chips) +Seat 5: Georgy80 (12758 in chips) +Seat 7: Poker Elfe 1 (9174 in chips) +Seat 8: Djkujuhfl (2425 in chips) +Seat 9: stefan_bg_46 (4075 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +Poker Elfe 1: posts small blind 50 +Djkujuhfl: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [Td Qc] +stefan_bg_46: folds +s0rrow: folds +ruslan999588: folds +titasands: folds +seric1975: raises 100 to 200 +Georgy80: raises 12548 to 12748 and is all-in +Poker Elfe 1: folds +Djkujuhfl: folds +seric1975: folds +Uncalled bet (12548) returned to Georgy80 +Georgy80 collected 630 from pot +Georgy80: doesn't show hand +*** SUMMARY *** +Total pot 630 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop +Seat 5: Georgy80 (button) collected (630) +Seat 7: Poker Elfe 1 (small blind) folded before Flop +Seat 8: Djkujuhfl (big blind) folded before Flop +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655662061: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VII (50/100) - 2010/08/03 12:12:41 ET +Table '297808375 8' 9-max Seat #7 is the button +Seat 1: s0rrow (4625 in chips) +Seat 2: ruslan999588 (4196 in chips) +Seat 3: titasands (1170 in chips) is sitting out +Seat 4: seric1975 (5505 in chips) +Seat 5: Georgy80 (13178 in chips) +Seat 7: Poker Elfe 1 (9114 in chips) +Seat 8: Djkujuhfl (2315 in chips) +Seat 9: stefan_bg_46 (4065 in chips) +s0rrow: posts the ante 10 +ruslan999588: posts the ante 10 +titasands: posts the ante 10 +seric1975: posts the ante 10 +Georgy80: posts the ante 10 +Poker Elfe 1: posts the ante 10 +Djkujuhfl: posts the ante 10 +stefan_bg_46: posts the ante 10 +Djkujuhfl: posts small blind 50 +stefan_bg_46: posts big blind 100 +*** HOLE CARDS *** +Dealt to s0rrow [6h Ks] +s0rrow: folds +ruslan999588: folds +titasands: folds +seric1975: folds +Georgy80: raises 245 to 345 +Poker Elfe 1: calls 345 +Djkujuhfl: folds +stefan_bg_46: folds +*** FLOP *** [Td 8h 5s] +Georgy80: bets 789 +Poker Elfe 1: folds +Uncalled bet (789) returned to Georgy80 +Georgy80 collected 920 from pot +Georgy80: shows [Jd Jh] (a pair of Jacks) +*** SUMMARY *** +Total pot 920 | Rake 0 +Board [Td 8h 5s] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 collected (920) +Seat 7: Poker Elfe 1 (button) folded on the Flop +Seat 8: Djkujuhfl (small blind) folded before Flop +Seat 9: stefan_bg_46 (big blind) folded before Flop + + + +PokerStars Game #47655690913: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:13:25 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (4615 in chips) +Seat 2: ruslan999588 (4186 in chips) +Seat 3: titasands (1160 in chips) is sitting out +Seat 4: seric1975 (5495 in chips) +Seat 5: Georgy80 (13743 in chips) +Seat 7: Poker Elfe 1 (8759 in chips) +Seat 8: Djkujuhfl (2255 in chips) +Seat 9: stefan_bg_46 (3955 in chips) +s0rrow: posts the ante 15 +ruslan999588: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +stefan_bg_46: posts small blind 60 +s0rrow: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [5s Ks] +ruslan999588: folds +titasands: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: raises 205 to 325 +stefan_bg_46: folds +s0rrow: folds +Uncalled bet (205) returned to Djkujuhfl +Djkujuhfl collected 420 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 420 | Rake 0 +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) collected (420) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47655709885: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:13:54 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (4480 in chips) +Seat 2: ruslan999588 (4171 in chips) +Seat 3: titasands (1145 in chips) is sitting out +Seat 4: seric1975 (5480 in chips) +Seat 5: Georgy80 (13728 in chips) +Seat 7: Poker Elfe 1 (8744 in chips) +Seat 8: Djkujuhfl (2540 in chips) +Seat 9: stefan_bg_46 (3880 in chips) +s0rrow: posts the ante 15 +ruslan999588: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +s0rrow: posts small blind 60 +ruslan999588: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [9s Ad] +titasands: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 240 to 360 +ruslan999588: calls 240 +*** FLOP *** [Jh Kd 8d] +s0rrow: checks +ruslan999588: bets 3796 and is all-in +s0rrow: folds +Uncalled bet (3796) returned to ruslan999588 +ruslan999588 collected 840 from pot +ruslan999588: doesn't show hand +*** SUMMARY *** +Total pot 840 | Rake 0 +Board [Jh Kd 8d] +Seat 1: s0rrow (small blind) folded on the Flop +Seat 2: ruslan999588 (big blind) collected (840) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47655739636: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:14:39 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (4105 in chips) +Seat 2: ruslan999588 (4636 in chips) +Seat 3: titasands (1130 in chips) is sitting out +Seat 4: seric1975 (5465 in chips) +Seat 5: Georgy80 (13713 in chips) +Seat 7: Poker Elfe 1 (8729 in chips) +Seat 8: Djkujuhfl (2525 in chips) +Seat 9: stefan_bg_46 (3865 in chips) +s0rrow: posts the ante 15 +ruslan999588: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +ruslan999588: posts small blind 60 +titasands: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [3s 7d] +seric1975: folds +Georgy80: folds +Poker Elfe 1: calls 120 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +ruslan999588: calls 60 +titasands: folds +*** FLOP *** [Td 9s 4s] +ruslan999588: checks +Poker Elfe 1: checks +*** TURN *** [Td 9s 4s] [Ah] +ruslan999588: bets 120 +Poker Elfe 1: folds +Uncalled bet (120) returned to ruslan999588 +ruslan999588 collected 480 from pot +ruslan999588: doesn't show hand +*** SUMMARY *** +Total pot 480 | Rake 0 +Board [Td 9s 4s Ah] +Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 2: ruslan999588 (small blind) collected (480) +Seat 3: titasands (big blind) folded before Flop +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded on the Turn +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655765065: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:15:18 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (4090 in chips) +Seat 2: ruslan999588 (4981 in chips) +Seat 3: titasands (995 in chips) is sitting out +Seat 4: seric1975 (5450 in chips) +Seat 5: Georgy80 (13698 in chips) +Seat 7: Poker Elfe 1 (8594 in chips) +Seat 8: Djkujuhfl (2510 in chips) +Seat 9: stefan_bg_46 (3850 in chips) +s0rrow: posts the ante 15 +ruslan999588: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +titasands: posts small blind 60 +seric1975: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [3h Kh] +Georgy80: raises 312 to 432 +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +ruslan999588: folds +titasands: folds +seric1975: folds +Uncalled bet (312) returned to Georgy80 +Georgy80 collected 420 from pot +Georgy80: doesn't show hand +*** SUMMARY *** +Total pot 420 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 (button) folded before Flop (didn't bet) +Seat 3: titasands (small blind) folded before Flop +Seat 4: seric1975 (big blind) folded before Flop +Seat 5: Georgy80 collected (420) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655782271: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:15:44 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: s0rrow (4075 in chips) +Seat 2: ruslan999588 (4966 in chips) +Seat 3: titasands (920 in chips) is sitting out +Seat 4: seric1975 (5315 in chips) +Seat 5: Georgy80 (13983 in chips) +Seat 7: Poker Elfe 1 (8579 in chips) +Seat 8: Djkujuhfl (2495 in chips) +Seat 9: stefan_bg_46 (3835 in chips) +s0rrow: posts the ante 15 +ruslan999588: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +seric1975: posts small blind 60 +Georgy80: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [6c Jh] +Poker Elfe 1: folds +Djkujuhfl: raises 240 to 360 +stefan_bg_46: folds +s0rrow: folds +ruslan999588: folds +titasands: folds +seric1975: folds +Georgy80: folds +Uncalled bet (240) returned to Djkujuhfl +Djkujuhfl collected 420 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 420 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands (button) folded before Flop (didn't bet) +Seat 4: seric1975 (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl collected (420) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655797210: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:16:06 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (4060 in chips) +Seat 2: ruslan999588 (4951 in chips) +Seat 3: titasands (905 in chips) is sitting out +Seat 4: seric1975 (5240 in chips) +Seat 5: Georgy80 (13848 in chips) +Seat 7: Poker Elfe 1 (8564 in chips) +Seat 8: Djkujuhfl (2780 in chips) +Seat 9: stefan_bg_46 (3820 in chips) +s0rrow: posts the ante 15 +ruslan999588: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +Georgy80: posts small blind 60 +Poker Elfe 1: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [Kd 8c] +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +ruslan999588: calls 120 +titasands: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: checks +*** FLOP *** [Ad 3h 4d] +Poker Elfe 1: checks +ruslan999588: bets 120 +Poker Elfe 1: folds +Uncalled bet (120) returned to ruslan999588 +ruslan999588 collected 420 from pot +*** SUMMARY *** +Total pot 420 | Rake 0 +Board [Ad 3h 4d] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 collected (420) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 7: Poker Elfe 1 (big blind) folded on the Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655816777: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:16:36 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (4045 in chips) +Seat 2: ruslan999588 (5236 in chips) +Seat 3: titasands (890 in chips) is sitting out +Seat 4: seric1975 (5225 in chips) +Seat 5: Georgy80 (13773 in chips) +Seat 7: Poker Elfe 1 (8429 in chips) +Seat 8: Djkujuhfl (2765 in chips) +Seat 9: stefan_bg_46 (3805 in chips) +s0rrow: posts the ante 15 +ruslan999588: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +Poker Elfe 1: posts small blind 60 +Djkujuhfl: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [Td Ah] +stefan_bg_46: calls 120 +s0rrow: calls 120 +ruslan999588: folds +titasands: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: calls 60 +Djkujuhfl: checks +*** FLOP *** [6s Kh 5h] +Poker Elfe 1: bets 120 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: calls 120 +*** TURN *** [6s Kh 5h] [Js] +Poker Elfe 1: bets 120 +s0rrow: raises 360 to 480 +Poker Elfe 1: calls 360 +*** RIVER *** [6s Kh 5h Js] [Tc] +Poker Elfe 1: checks +s0rrow: bets 1080 +Poker Elfe 1: folds +Uncalled bet (1080) returned to s0rrow +s0rrow collected 1800 from pot +*** SUMMARY *** +Total pot 1800 | Rake 0 +Board [6s Kh 5h Js Tc] +Seat 1: s0rrow collected (1800) +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (small blind) folded on the River +Seat 8: Djkujuhfl (big blind) folded on the Flop +Seat 9: stefan_bg_46 folded on the Flop + + + +PokerStars Game #47655849138: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:17:25 ET +Table '297808375 8' 9-max Seat #7 is the button +Seat 1: s0rrow (5110 in chips) +Seat 2: ruslan999588 (5221 in chips) +Seat 3: titasands (875 in chips) is sitting out +Seat 4: seric1975 (5210 in chips) +Seat 5: Georgy80 (13758 in chips) +Seat 7: Poker Elfe 1 (7694 in chips) +Seat 8: Djkujuhfl (2630 in chips) +Seat 9: stefan_bg_46 (3670 in chips) +s0rrow: posts the ante 15 +ruslan999588: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +Djkujuhfl: posts small blind 60 +stefan_bg_46: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [6c Tc] +s0rrow: folds +ruslan999588: folds +titasands: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: raises 240 to 360 +stefan_bg_46: folds +Uncalled bet (240) returned to Djkujuhfl +Djkujuhfl collected 360 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 360 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: ruslan999588 folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (button) folded before Flop (didn't bet) +Seat 8: Djkujuhfl (small blind) collected (360) +Seat 9: stefan_bg_46 (big blind) folded before Flop + + + +PokerStars Game #47655864200: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:17:48 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (5095 in chips) +Seat 2: ruslan999588 (5206 in chips) +Seat 3: titasands (860 in chips) is sitting out +Seat 4: seric1975 (5195 in chips) +Seat 5: Georgy80 (13743 in chips) +Seat 7: Poker Elfe 1 (7679 in chips) +Seat 8: Djkujuhfl (2855 in chips) +Seat 9: stefan_bg_46 (3535 in chips) +s0rrow: posts the ante 15 +ruslan999588: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +stefan_bg_46: posts small blind 60 +s0rrow: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [Jc Kc] +ruslan999588: calls 120 +titasands: folds +seric1975: raises 480 to 600 +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +ruslan999588: calls 480 +*** FLOP *** [Tc 7c 6d] +ruslan999588: bets 4320 +seric1975: raises 260 to 4580 and is all-in +ruslan999588: calls 260 +*** TURN *** [Tc 7c 6d] [4d] +*** RIVER *** [Tc 7c 6d 4d] [6h] +*** SHOW DOWN *** +ruslan999588: shows [Js As] (a pair of Sixes) +seric1975: shows [Qd Qc] (two pair, Queens and Sixes) +seric1975 collected 10660 from pot +*** SUMMARY *** +Total pot 10660 | Rake 0 +Board [Tc 7c 6d 4d 6h] +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: ruslan999588 showed [Js As] and lost with a pair of Sixes +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 showed [Qd Qc] and won (10660) with two pair, Queens and Sixes +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47655901719: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:18:45 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (4960 in chips) +Seat 2: ruslan999588 (11 in chips) +Seat 3: titasands (845 in chips) is sitting out +Seat 4: seric1975 (10660 in chips) +Seat 5: Georgy80 (13728 in chips) +Seat 7: Poker Elfe 1 (7664 in chips) +Seat 8: Djkujuhfl (2840 in chips) +Seat 9: stefan_bg_46 (3460 in chips) +s0rrow: posts the ante 15 +ruslan999588: posts the ante 11 and is all-in +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +s0rrow: posts small blind 60 +*** HOLE CARDS *** +Dealt to s0rrow [6c 4s] +titasands: folds +seric1975: calls 120 +Georgy80: folds +Poker Elfe 1: calls 120 +Djkujuhfl: calls 120 +stefan_bg_46: folds +s0rrow: calls 60 +*** FLOP *** [9s 5s Qd] +s0rrow: checks +seric1975: checks +Poker Elfe 1: checks +Djkujuhfl: bets 404 +s0rrow: folds +seric1975: folds +Poker Elfe 1: folds +Uncalled bet (404) returned to Djkujuhfl +*** TURN *** [9s 5s Qd] [Jd] +*** RIVER *** [9s 5s Qd Jd] [3c] +*** SHOW DOWN *** +Djkujuhfl: shows [Qh Ks] (a pair of Queens) +Djkujuhfl collected 508 from side pot +ruslan999588: shows [9c Ts] (a pair of Nines) +Djkujuhfl collected 88 from main pot +Djkujuhfl wins the $0.25 bounty for eliminating ruslan999588 +ruslan999588 finished the tournament in 33rd place +*** SUMMARY *** +Total pot 596 Main pot 88. Side pot 508. | Rake 0 +Board [9s 5s Qd Jd 3c] +Seat 1: s0rrow (small blind) folded on the Flop +Seat 2: ruslan999588 (big blind) showed [9c Ts] and lost with a pair of Nines +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded on the Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded on the Flop +Seat 8: Djkujuhfl showed [Qh Ks] and won (596) with a pair of Queens +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47655946565: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:19:53 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (4825 in chips) +Seat 3: titasands (830 in chips) is sitting out +Seat 4: seric1975 (10525 in chips) +Seat 5: Georgy80 (13713 in chips) +Seat 7: Poker Elfe 1 (7529 in chips) +Seat 8: Djkujuhfl (3301 in chips) +Seat 9: stefan_bg_46 (3445 in chips) +s0rrow: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +titasands: posts small blind 60 +seric1975: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [8s Js] +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: raises 145 to 265 +stefan_bg_46: folds +s0rrow: calls 265 +titasands: folds +seric1975: folds +*** FLOP *** [7c Jh Qc] +Djkujuhfl: checks +s0rrow: bets 480 +Djkujuhfl: folds +Uncalled bet (480) returned to s0rrow +s0rrow collected 815 from pot +*** SUMMARY *** +Total pot 815 | Rake 0 +Board [7c Jh Qc] +Seat 1: s0rrow (button) collected (815) +Seat 3: titasands (small blind) folded before Flop +Seat 4: seric1975 (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded on the Flop +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47655975396: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:20:36 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: s0rrow (5360 in chips) +Seat 3: titasands (755 in chips) is sitting out +Seat 4: seric1975 (10390 in chips) +Seat 5: Georgy80 (13698 in chips) +Seat 7: Poker Elfe 1 (7514 in chips) +Seat 8: Djkujuhfl (3021 in chips) +Seat 9: stefan_bg_46 (3430 in chips) +s0rrow: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +seric1975: posts small blind 60 +Georgy80: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [Kh Ah] +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 240 to 360 +titasands: folds +seric1975: calls 300 +Georgy80: folds +*** FLOP *** [Jh Kd 5s] +seric1975: bets 360 +s0rrow: raises 840 to 1200 +seric1975: folds +Uncalled bet (840) returned to s0rrow +s0rrow collected 1665 from pot +*** SUMMARY *** +Total pot 1665 | Rake 0 +Board [Jh Kd 5s] +Seat 1: s0rrow collected (1665) +Seat 3: titasands (button) folded before Flop (didn't bet) +Seat 4: seric1975 (small blind) folded on the Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656010121: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:21:29 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (6290 in chips) +Seat 3: titasands (740 in chips) is sitting out +Seat 4: seric1975 (9655 in chips) +Seat 5: Georgy80 (13563 in chips) +Seat 7: Poker Elfe 1 (7499 in chips) +Seat 8: Djkujuhfl (3006 in chips) +Seat 9: stefan_bg_46 (3415 in chips) +s0rrow: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +Georgy80: posts small blind 60 +Poker Elfe 1: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 2s] +Djkujuhfl: raises 240 to 360 +stefan_bg_46: folds +s0rrow: folds +titasands: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Uncalled bet (240) returned to Djkujuhfl +Djkujuhfl collected 405 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 405 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 7: Poker Elfe 1 (big blind) folded before Flop +Seat 8: Djkujuhfl collected (405) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656021423: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:21:46 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (6275 in chips) +Seat 3: titasands (725 in chips) is sitting out +Seat 4: seric1975 (9640 in chips) +Seat 5: Georgy80 (13488 in chips) +Seat 7: Poker Elfe 1 (7364 in chips) +Seat 8: Djkujuhfl (3276 in chips) +Seat 9: stefan_bg_46 (3400 in chips) +s0rrow: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +Poker Elfe 1: posts small blind 60 +Djkujuhfl: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [6h 2d] +stefan_bg_46: folds +s0rrow: folds +titasands: folds +seric1975: folds +Georgy80: raises 312 to 432 +Poker Elfe 1: folds +Djkujuhfl: raises 2829 to 3261 and is all-in +Georgy80: calls 2829 +*** FLOP *** [8d 6d 2h] +*** TURN *** [8d 6d 2h] [4d] +*** RIVER *** [8d 6d 2h 4d] [Js] +*** SHOW DOWN *** +Djkujuhfl: shows [8h 8c] (three of a kind, Eights) +Georgy80: shows [Jc Ac] (a pair of Jacks) +Djkujuhfl collected 6687 from pot +*** SUMMARY *** +Total pot 6687 | Rake 0 +Board [8d 6d 2h 4d Js] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) showed [Jc Ac] and lost with a pair of Jacks +Seat 7: Poker Elfe 1 (small blind) folded before Flop +Seat 8: Djkujuhfl (big blind) showed [8h 8c] and won (6687) with three of a kind, Eights +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656048740: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:22:28 ET +Table '297808375 8' 9-max Seat #7 is the button +Seat 1: s0rrow (6260 in chips) +Seat 3: titasands (710 in chips) is sitting out +Seat 4: seric1975 (9625 in chips) +Seat 5: Georgy80 (10212 in chips) +Seat 7: Poker Elfe 1 (7289 in chips) +Seat 8: Djkujuhfl (6687 in chips) +Seat 9: stefan_bg_46 (3385 in chips) +s0rrow: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +Djkujuhfl: posts small blind 60 +stefan_bg_46: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [Js Kc] +s0rrow: folds +titasands: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: raises 240 to 360 +stefan_bg_46: folds +Uncalled bet (240) returned to Djkujuhfl +Djkujuhfl collected 345 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 345 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (button) folded before Flop (didn't bet) +Seat 8: Djkujuhfl (small blind) collected (345) +Seat 9: stefan_bg_46 (big blind) folded before Flop + + + +PokerStars Game #47656069203: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level VIII (60/120) - 2010/08/03 12:22:59 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (6245 in chips) +Seat 3: titasands (695 in chips) is sitting out +Seat 4: seric1975 (9610 in chips) +Seat 5: Georgy80 (10197 in chips) +Seat 7: Poker Elfe 1 (7274 in chips) +Seat 8: Djkujuhfl (6897 in chips) +Seat 9: stefan_bg_46 (3250 in chips) +s0rrow: posts the ante 15 +titasands: posts the ante 15 +seric1975: posts the ante 15 +Georgy80: posts the ante 15 +Poker Elfe 1: posts the ante 15 +Djkujuhfl: posts the ante 15 +stefan_bg_46: posts the ante 15 +stefan_bg_46: posts small blind 60 +s0rrow: posts big blind 120 +*** HOLE CARDS *** +Dealt to s0rrow [3c 4s] +titasands: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: raises 240 to 360 +stefan_bg_46: calls 300 +s0rrow: folds +*** FLOP *** [8s Ah Td] +stefan_bg_46: bets 240 +Djkujuhfl: folds +Uncalled bet (240) returned to stefan_bg_46 +stefan_bg_46 collected 945 from pot +*** SUMMARY *** +Total pot 945 | Rake 0 +Board [8s Ah Td] +Seat 1: s0rrow (big blind) folded before Flop +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) folded on the Flop +Seat 9: stefan_bg_46 (small blind) collected (945) + + + +PokerStars Game #47656102769: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:23:50 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (6110 in chips) +Seat 3: titasands (680 in chips) is sitting out +Seat 4: seric1975 (9595 in chips) +Seat 5: Georgy80 (10182 in chips) +Seat 7: Poker Elfe 1 (7259 in chips) +Seat 8: Djkujuhfl (6522 in chips) +Seat 9: stefan_bg_46 (3820 in chips) +s0rrow: posts the ante 20 +titasands: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +s0rrow: posts small blind 75 +titasands: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [6c 5h] +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: raises 150 to 300 +s0rrow: folds +titasands: folds +Uncalled bet (150) returned to stefan_bg_46 +stefan_bg_46 collected 515 from pot +*** SUMMARY *** +Total pot 515 | Rake 0 +Seat 1: s0rrow (small blind) folded before Flop +Seat 3: titasands (big blind) folded before Flop +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) collected (515) + + + +PokerStars Game #47656112787: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:24:06 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (6015 in chips) +Seat 3: titasands (510 in chips) is sitting out +Seat 4: seric1975 (9575 in chips) +Seat 5: Georgy80 (10162 in chips) +Seat 7: Poker Elfe 1 (7239 in chips) +Seat 8: Djkujuhfl (6502 in chips) +Seat 9: stefan_bg_46 (4165 in chips) +s0rrow: posts the ante 20 +titasands: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +titasands: posts small blind 75 +seric1975: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Th 3c] +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 300 to 450 +titasands: folds +seric1975: folds +Uncalled bet (300) returned to s0rrow +s0rrow collected 515 from pot +*** SUMMARY *** +Total pot 515 | Rake 0 +Seat 1: s0rrow (button) collected (515) +Seat 3: titasands (small blind) folded before Flop +Seat 4: seric1975 (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656123972: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:24:23 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: s0rrow (6360 in chips) +Seat 3: titasands (415 in chips) is sitting out +Seat 4: seric1975 (9405 in chips) +Seat 5: Georgy80 (10142 in chips) +Seat 7: Poker Elfe 1 (7219 in chips) +Seat 8: Djkujuhfl (6482 in chips) +Seat 9: stefan_bg_46 (4145 in chips) +s0rrow: posts the ante 20 +titasands: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +seric1975: posts small blind 75 +Georgy80: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [3c 3d] +Poker Elfe 1: calls 150 +Djkujuhfl: raises 450 to 600 +stefan_bg_46: folds +s0rrow: folds +titasands: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: raises 450 to 1050 +Djkujuhfl: raises 5412 to 6462 and is all-in +Poker Elfe 1: calls 5412 +*** FLOP *** [Ks Ts 2s] +*** TURN *** [Ks Ts 2s] [5d] +*** RIVER *** [Ks Ts 2s 5d] [8h] +*** SHOW DOWN *** +Poker Elfe 1: shows [Ac Ad] (a pair of Aces) +Djkujuhfl: shows [As Ah] (a pair of Aces) +Poker Elfe 1 collected 6645 from pot +Djkujuhfl collected 6644 from pot +*** SUMMARY *** +Total pot 13289 | Rake 0 +Board [Ks Ts 2s 5d 8h] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 3: titasands (button) folded before Flop (didn't bet) +Seat 4: seric1975 (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 7: Poker Elfe 1 showed [Ac Ad] and won (6645) with a pair of Aces +Seat 8: Djkujuhfl showed [As Ah] and won (6644) with a pair of Aces +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656151639: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:25:06 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (6340 in chips) +Seat 3: titasands (395 in chips) is sitting out +Seat 4: seric1975 (9310 in chips) +Seat 5: Georgy80 (9972 in chips) +Seat 7: Poker Elfe 1 (7382 in chips) +Seat 8: Djkujuhfl (6644 in chips) +Seat 9: stefan_bg_46 (4125 in chips) +s0rrow: posts the ante 20 +titasands: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +Georgy80: posts small blind 75 +Poker Elfe 1: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Jh Td] +Djkujuhfl: folds +stefan_bg_46: folds +Djkujuhfl said, "hf" +s0rrow: folds +titasands: folds +Djkujuhfl said, "nh" +seric1975: raises 150 to 300 +Georgy80: folds +Poker Elfe 1 said, "lol" +Poker Elfe 1: folds +Uncalled bet (150) returned to seric1975 +seric1975 collected 515 from pot +*** SUMMARY *** +Total pot 515 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 (button) collected (515) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 7: Poker Elfe 1 (big blind) folded before Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656174786: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:25:41 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (6320 in chips) +Seat 2: MexicanGamb (5815 in chips) +Seat 3: titasands (375 in chips) is sitting out +Seat 4: seric1975 (9655 in chips) +Seat 5: Georgy80 (9877 in chips) +Seat 6: Asdelpoker01 (4685 in chips) out of hand (moved from another table into small blind) +Seat 7: Poker Elfe 1 (7212 in chips) +Seat 8: Djkujuhfl (6624 in chips) +Seat 9: stefan_bg_46 (4105 in chips) +s0rrow: posts the ante 20 +MexicanGamb: posts the ante 20 +titasands: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +Poker Elfe 1: posts small blind 75 +Djkujuhfl: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [6h Ad] +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +titasands: folds +seric1975: folds +Georgy80: raises 393 to 543 +Poker Elfe 1: folds +Djkujuhfl: folds +Uncalled bet (393) returned to Georgy80 +Georgy80 collected 535 from pot +Georgy80: doesn't show hand +*** SUMMARY *** +Total pot 535 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) collected (535) +Seat 7: Poker Elfe 1 (small blind) folded before Flop +Seat 8: Djkujuhfl (big blind) folded before Flop +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656186462: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:25:59 ET +Table '297808375 8' 9-max Seat #7 is the button +Seat 1: s0rrow (6300 in chips) +Seat 2: MexicanGamb (5795 in chips) +Seat 3: titasands (355 in chips) is sitting out +Seat 4: seric1975 (9635 in chips) +Seat 5: Georgy80 (10242 in chips) +Seat 6: Asdelpoker01 (4685 in chips) is sitting out +Seat 7: Poker Elfe 1 (7117 in chips) +Seat 8: Djkujuhfl (6454 in chips) +Seat 9: stefan_bg_46 (4085 in chips) +s0rrow: posts the ante 20 +MexicanGamb: posts the ante 20 +titasands: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Asdelpoker01: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +Djkujuhfl: posts small blind 75 +stefan_bg_46: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Ac 6d] +s0rrow: folds +MexicanGamb: folds +titasands: folds +seric1975: folds +Georgy80: folds +Asdelpoker01: folds +Poker Elfe 1: calls 150 +Djkujuhfl: folds +stefan_bg_46: checks +*** FLOP *** [Td 3h 9d] +stefan_bg_46: checks +Poker Elfe 1: checks +*** TURN *** [Td 3h 9d] [8c] +stefan_bg_46: checks +Poker Elfe 1: checks +*** RIVER *** [Td 3h 9d 8c] [8h] +stefan_bg_46: checks +Poker Elfe 1: checks +*** SHOW DOWN *** +stefan_bg_46: shows [6s 5s] (a pair of Eights) +Poker Elfe 1: shows [7s As] (a pair of Eights - Ace kicker) +Poker Elfe 1 collected 555 from pot +*** SUMMARY *** +Total pot 555 | Rake 0 +Board [Td 3h 9d 8c 8h] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: Asdelpoker01 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (button) showed [7s As] and won (555) with a pair of Eights +Seat 8: Djkujuhfl (small blind) folded before Flop +Seat 9: stefan_bg_46 (big blind) showed [6s 5s] and lost with a pair of Eights + + + +PokerStars Game #47656211307: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:26:38 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (6280 in chips) +Seat 2: MexicanGamb (5775 in chips) +Seat 3: titasands (335 in chips) is sitting out +Seat 4: seric1975 (9615 in chips) +Seat 5: Georgy80 (10222 in chips) +Seat 6: Asdelpoker01 (4665 in chips) is sitting out +Seat 7: Poker Elfe 1 (7502 in chips) +Seat 8: Djkujuhfl (6359 in chips) +Seat 9: stefan_bg_46 (3915 in chips) +s0rrow: posts the ante 20 +MexicanGamb: posts the ante 20 +titasands: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Asdelpoker01: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +stefan_bg_46: posts small blind 75 +s0rrow: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Kc Ac] +MexicanGamb: folds +titasands: folds +seric1975: folds +Georgy80: folds +Asdelpoker01: folds +Poker Elfe 1: folds +Djkujuhfl: raises 251 to 401 +stefan_bg_46: folds +s0rrow: raises 649 to 1050 +Djkujuhfl: folds +Uncalled bet (649) returned to s0rrow +s0rrow collected 1057 from pot +*** SUMMARY *** +Total pot 1057 | Rake 0 +Seat 1: s0rrow (big blind) collected (1057) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: Asdelpoker01 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) folded before Flop +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47656234932: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:27:15 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (6916 in chips) +Seat 2: MexicanGamb (5755 in chips) +Seat 3: titasands (315 in chips) is sitting out +Seat 4: seric1975 (9595 in chips) +Seat 5: Georgy80 (10202 in chips) +Seat 6: Asdelpoker01 (4645 in chips) is sitting out +Seat 7: Poker Elfe 1 (7482 in chips) +Seat 8: Djkujuhfl (5938 in chips) +Seat 9: stefan_bg_46 (3820 in chips) +s0rrow: posts the ante 20 +MexicanGamb: posts the ante 20 +titasands: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Asdelpoker01: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +s0rrow: posts small blind 75 +MexicanGamb: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 3h] +titasands: folds +seric1975: calls 150 +Georgy80: folds +Asdelpoker01: folds +Poker Elfe 1: calls 150 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: calls 75 +MexicanGamb: checks +*** FLOP *** [4h Qd Th] +s0rrow: bets 600 +MexicanGamb: folds +seric1975: folds +Poker Elfe 1: folds +Uncalled bet (600) returned to s0rrow +s0rrow collected 780 from pot +*** SUMMARY *** +Total pot 780 | Rake 0 +Board [4h Qd Th] +Seat 1: s0rrow (small blind) collected (780) +Seat 2: MexicanGamb (big blind) folded on the Flop +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 folded on the Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: Asdelpoker01 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded on the Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47656255158: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:27:46 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (7526 in chips) +Seat 2: MexicanGamb (5585 in chips) +Seat 3: titasands (295 in chips) is sitting out +Seat 4: seric1975 (9425 in chips) +Seat 5: Georgy80 (10182 in chips) +Seat 6: Asdelpoker01 (4625 in chips) is sitting out +Seat 7: Poker Elfe 1 (7312 in chips) +Seat 8: Djkujuhfl (5918 in chips) +Seat 9: stefan_bg_46 (3800 in chips) +s0rrow: posts the ante 20 +MexicanGamb: posts the ante 20 +titasands: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Asdelpoker01: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +MexicanGamb: posts small blind 75 +titasands: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [5s Ah] +seric1975: calls 150 +Georgy80: folds +Asdelpoker01: folds +Poker Elfe 1: calls 150 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: calls 75 +titasands: folds +*** FLOP *** [9c 8d Tc] +MexicanGamb: bets 150 +seric1975: calls 150 +Poker Elfe 1: calls 150 +*** TURN *** [9c 8d Tc] [6c] +MexicanGamb: checks +seric1975: checks +Poker Elfe 1: checks +*** RIVER *** [9c 8d Tc 6c] [Ks] +MexicanGamb: checks +seric1975: checks +Poker Elfe 1: checks +*** SHOW DOWN *** +MexicanGamb: shows [2d Jd] (high card King) +seric1975: shows [8s As] (a pair of Eights) +Poker Elfe 1: mucks hand +seric1975 collected 1230 from pot +*** SUMMARY *** +Total pot 1230 | Rake 0 +Board [9c 8d Tc 6c Ks] +Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 2: MexicanGamb (small blind) showed [2d Jd] and lost with high card King +Seat 3: titasands (big blind) folded before Flop +Seat 4: seric1975 showed [8s As] and won (1230) with a pair of Eights +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: Asdelpoker01 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 mucked [Js 4c] +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656285269: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:28:33 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (7506 in chips) +Seat 2: MexicanGamb (5265 in chips) +Seat 3: titasands (125 in chips) is sitting out +Seat 4: seric1975 (10335 in chips) +Seat 5: Georgy80 (10162 in chips) +Seat 6: Asdelpoker01 (4605 in chips) is sitting out +Seat 7: Poker Elfe 1 (6992 in chips) +Seat 8: Djkujuhfl (5898 in chips) +Seat 9: stefan_bg_46 (3780 in chips) +s0rrow: posts the ante 20 +MexicanGamb: posts the ante 20 +titasands: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Asdelpoker01: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +titasands: posts small blind 75 +seric1975: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Jh Td] +Georgy80: folds +Asdelpoker01: folds +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 300 to 450 +MexicanGamb: folds +titasands: folds +seric1975: folds +Uncalled bet (300) returned to s0rrow +s0rrow collected 555 from pot +*** SUMMARY *** +Total pot 555 | Rake 0 +Seat 1: s0rrow collected (555) +Seat 2: MexicanGamb (button) folded before Flop (didn't bet) +Seat 3: titasands (small blind) folded before Flop +Seat 4: seric1975 (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: Asdelpoker01 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656323019: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:29:32 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: s0rrow (7891 in chips) +Seat 2: MexicanGamb (5245 in chips) +Seat 3: titasands (30 in chips) is sitting out +Seat 4: seric1975 (10165 in chips) +Seat 5: Georgy80 (10142 in chips) +Seat 6: Asdelpoker01 (4585 in chips) is sitting out +Seat 7: Poker Elfe 1 (6972 in chips) +Seat 8: Djkujuhfl (5878 in chips) +Seat 9: stefan_bg_46 (3760 in chips) +s0rrow: posts the ante 20 +MexicanGamb: posts the ante 20 +titasands: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Asdelpoker01: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +seric1975: posts small blind 75 +Georgy80: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [Kh Td] +Asdelpoker01: folds +Poker Elfe 1: calls 150 +Djkujuhfl: folds +stefan_bg_46: raises 150 to 300 +s0rrow: folds +MexicanGamb: folds +titasands: folds +seric1975: raises 600 to 900 +Georgy80: folds +Poker Elfe 1: folds +stefan_bg_46: raises 600 to 1500 +seric1975: calls 600 +*** FLOP *** [Tc 5d 2h] +seric1975: checks +stefan_bg_46: bets 450 +seric1975: calls 450 +*** TURN *** [Tc 5d 2h] [4c] +seric1975: checks +stefan_bg_46: bets 1790 and is all-in +seric1975: folds +Uncalled bet (1790) returned to stefan_bg_46 +stefan_bg_46 collected 4380 from pot +*** SUMMARY *** +Total pot 4380 | Rake 0 +Board [Tc 5d 2h 4c] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: titasands (button) folded before Flop (didn't bet) +Seat 4: seric1975 (small blind) folded on the Turn +Seat 5: Georgy80 (big blind) folded before Flop +Seat 6: Asdelpoker01 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 collected (4380) + + + +PokerStars Game #47656382023: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:31:05 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (7871 in chips) +Seat 2: MexicanGamb (5225 in chips) +Seat 3: titasands (10 in chips) is sitting out +Seat 4: seric1975 (8195 in chips) +Seat 5: Georgy80 (9972 in chips) +Seat 6: Asdelpoker01 (4565 in chips) is sitting out +Seat 7: Poker Elfe 1 (6802 in chips) +Seat 8: Djkujuhfl (5858 in chips) +Seat 9: stefan_bg_46 (6170 in chips) +s0rrow: posts the ante 20 +MexicanGamb: posts the ante 20 +titasands: posts the ante 10 and is all-in +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Asdelpoker01: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +Georgy80: posts small blind 75 +Asdelpoker01: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [9s 7s] +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: calls 150 +s0rrow: folds +MexicanGamb: folds +titasands: folds +seric1975: raises 150 to 300 +Georgy80: folds +Asdelpoker01: folds +stefan_bg_46: calls 150 +*** FLOP *** [9c Jd 2c] +stefan_bg_46: checks +seric1975: checks +*** TURN *** [9c Jd 2c] [Td] +stefan_bg_46: checks +seric1975: checks +*** RIVER *** [9c Jd 2c Td] [6d] +stefan_bg_46: checks +seric1975: checks +*** SHOW DOWN *** +stefan_bg_46: shows [Qd Ac] (high card Ace) +seric1975: shows [Ts 8s] (a pair of Tens) +seric1975 collected 905 from side pot +seric1975 collected 90 from main pot +seric1975 wins the $0.25 bounty for eliminating titasands +titasands finished the tournament in 26th place +*** SUMMARY *** +Total pot 995 Main pot 90. Side pot 905. | Rake 0 +Board [9c Jd 2c Td 6d] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: titasands folded before Flop (didn't bet) +Seat 4: seric1975 (button) showed [Ts 8s] and won (995) with a pair of Tens +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: Asdelpoker01 (big blind) folded before Flop +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 showed [Qd Ac] and lost with high card Ace + + + +PokerStars Game #47656414632: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:31:56 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (7851 in chips) +Seat 2: MexicanGamb (5205 in chips) +Seat 4: seric1975 (8870 in chips) +Seat 5: Georgy80 (9877 in chips) +Seat 6: Asdelpoker01 (4395 in chips) is sitting out +Seat 7: Poker Elfe 1 (6782 in chips) +Seat 8: Djkujuhfl (5838 in chips) +Seat 9: stefan_bg_46 (5850 in chips) +s0rrow: posts the ante 20 +MexicanGamb: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Asdelpoker01: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +Asdelpoker01: posts small blind 75 +Poker Elfe 1: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [8c 3s] +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +Asdelpoker01 has returned +seric1975: folds +Georgy80: folds +Asdelpoker01: raises 450 to 600 +Poker Elfe 1: folds +Uncalled bet (450) returned to Asdelpoker01 +Asdelpoker01 collected 460 from pot +Asdelpoker01: doesn't show hand +*** SUMMARY *** +Total pot 460 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: Asdelpoker01 (small blind) collected (460) +Seat 7: Poker Elfe 1 (big blind) folded before Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656431192: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level IX (75/150) - 2010/08/03 12:32:22 ET +Table '297808375 8' 9-max Seat #6 is the button +Seat 1: s0rrow (7831 in chips) +Seat 2: MexicanGamb (5185 in chips) +Seat 4: seric1975 (8850 in chips) +Seat 5: Georgy80 (9857 in chips) +Seat 6: Asdelpoker01 (4685 in chips) +Seat 7: Poker Elfe 1 (6612 in chips) +Seat 8: Djkujuhfl (5818 in chips) +Seat 9: stefan_bg_46 (5830 in chips) +s0rrow: posts the ante 20 +MexicanGamb: posts the ante 20 +seric1975: posts the ante 20 +Georgy80: posts the ante 20 +Asdelpoker01: posts the ante 20 +Poker Elfe 1: posts the ante 20 +Djkujuhfl: posts the ante 20 +stefan_bg_46: posts the ante 20 +Poker Elfe 1: posts small blind 75 +Djkujuhfl: posts big blind 150 +*** HOLE CARDS *** +Dealt to s0rrow [2s 6d] +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +seric1975: folds +Georgy80: folds +Asdelpoker01: folds +Asdelpoker01 is sitting out +Poker Elfe 1: calls 75 +Djkujuhfl: raises 300 to 450 +Poker Elfe 1: calls 300 +*** FLOP *** [Jd 8c 2d] +Poker Elfe 1: checks +Djkujuhfl: bets 600 +Poker Elfe 1: folds +Uncalled bet (600) returned to Djkujuhfl +Djkujuhfl collected 1060 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 1060 | Rake 0 +Board [Jd 8c 2d] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: Asdelpoker01 (button) folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (small blind) folded on the Flop +Seat 8: Djkujuhfl (big blind) collected (1060) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656469092: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:33:22 ET +Table '297808375 8' 9-max Seat #7 is the button +Seat 1: s0rrow (7811 in chips) +Seat 2: MexicanGamb (5165 in chips) +Seat 4: seric1975 (8830 in chips) +Seat 5: Georgy80 (9837 in chips) +Seat 6: Asdelpoker01 (4665 in chips) is sitting out +Seat 7: Poker Elfe 1 (6142 in chips) +Seat 8: Djkujuhfl (6408 in chips) +Seat 9: stefan_bg_46 (5810 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Asdelpoker01: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +Djkujuhfl: posts small blind 100 +stefan_bg_46: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [4h 2d] +s0rrow: folds +MexicanGamb: folds +seric1975: folds +Georgy80: folds +Asdelpoker01: folds +Poker Elfe 1: raises 200 to 400 +Djkujuhfl: calls 300 +stefan_bg_46: calls 200 +*** FLOP *** [Ks Qs 4d] +Djkujuhfl: checks +stefan_bg_46: bets 200 +Poker Elfe 1: calls 200 +Djkujuhfl: calls 200 +*** TURN *** [Ks Qs 4d] [4s] +Djkujuhfl: checks +stefan_bg_46: bets 200 +Poker Elfe 1: calls 200 +Djkujuhfl: calls 200 +*** RIVER *** [Ks Qs 4d 4s] [Ah] +Djkujuhfl: bets 200 +stefan_bg_46: calls 200 +Poker Elfe 1: calls 200 +*** SHOW DOWN *** +Djkujuhfl: shows [Qd Ac] (two pair, Aces and Queens) +stefan_bg_46: mucks hand +Poker Elfe 1: mucks hand +Djkujuhfl collected 3200 from pot +*** SUMMARY *** +Total pot 3200 | Rake 0 +Board [Ks Qs 4d 4s Ah] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: Asdelpoker01 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (button) mucked [Th Td] +Seat 8: Djkujuhfl (small blind) showed [Qd Ac] and won (3200) with two pair, Aces and Queens +Seat 9: stefan_bg_46 (big blind) mucked [Qh Jc] + + + +PokerStars Game #47656506175: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:34:21 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (7786 in chips) +Seat 2: MexicanGamb (5140 in chips) +Seat 4: seric1975 (8805 in chips) +Seat 5: Georgy80 (9812 in chips) +Seat 6: Asdelpoker01 (4640 in chips) is sitting out +Seat 7: Poker Elfe 1 (5117 in chips) +Seat 8: Djkujuhfl (8583 in chips) +Seat 9: stefan_bg_46 (4785 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Asdelpoker01: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +stefan_bg_46: posts small blind 100 +s0rrow: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [Th 5s] +MexicanGamb: folds +seric1975: raises 600 to 800 +Georgy80: folds +Asdelpoker01: folds +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +Uncalled bet (600) returned to seric1975 +seric1975 collected 700 from pot +*** SUMMARY *** +Total pot 700 | Rake 0 +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: seric1975 collected (700) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: Asdelpoker01 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47656519295: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:34:42 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (7561 in chips) +Seat 2: MexicanGamb (5115 in chips) +Seat 4: seric1975 (9280 in chips) +Seat 5: Georgy80 (9787 in chips) +Seat 6: Asdelpoker01 (4615 in chips) is sitting out +Seat 7: Poker Elfe 1 (5092 in chips) +Seat 8: Djkujuhfl (8558 in chips) +Seat 9: stefan_bg_46 (4660 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Asdelpoker01: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +s0rrow: posts small blind 100 +MexicanGamb: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [Qd Ac] +seric1975: folds +Georgy80: folds +Asdelpoker01: folds +Poker Elfe 1: folds +Djkujuhfl: raises 400 to 600 +stefan_bg_46: folds +s0rrow: calls 500 +MexicanGamb: folds +*** FLOP *** [Jc Jh 6d] +s0rrow: checks +Djkujuhfl: bets 800 +s0rrow: calls 800 +*** TURN *** [Jc Jh 6d] [2d] +s0rrow: checks +Djkujuhfl: bets 1000 +s0rrow: raises 1000 to 2000 +Djkujuhfl: calls 1000 +*** RIVER *** [Jc Jh 6d 2d] [9c] +s0rrow: bets 4136 and is all-in +Djkujuhfl: folds +Uncalled bet (4136) returned to s0rrow +s0rrow collected 7200 from pot +s0rrow: shows [Qd Ac] (a pair of Jacks) +*** SUMMARY *** +Total pot 7200 | Rake 0 +Board [Jc Jh 6d 2d 9c] +Seat 1: s0rrow (small blind) collected (7200) +Seat 2: MexicanGamb (big blind) folded before Flop +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: Asdelpoker01 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded on the River +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47656571191: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:36:04 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (11336 in chips) +Seat 2: MexicanGamb (4890 in chips) +Seat 4: seric1975 (9255 in chips) +Seat 5: Georgy80 (9762 in chips) +Seat 6: Asdelpoker01 (4590 in chips) is sitting out +Seat 7: Poker Elfe 1 (5067 in chips) +Seat 8: Djkujuhfl (5133 in chips) +Seat 9: stefan_bg_46 (4635 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Asdelpoker01: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +MexicanGamb: posts small blind 100 +seric1975: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [2s 2c] +Georgy80: folds +Asdelpoker01: folds +Asdelpoker01 is disconnected +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: raises 200 to 400 +s0rrow: calls 400 +MexicanGamb: calls 300 +seric1975: folds +*** FLOP *** [Kh Ac 5d] +MexicanGamb: checks +stefan_bg_46: bets 400 +s0rrow: folds +Asdelpoker01 is connected +Asdelpoker01 has returned +MexicanGamb: calls 400 +*** TURN *** [Kh Ac 5d] [3s] +MexicanGamb: checks +stefan_bg_46: bets 400 +MexicanGamb: calls 400 +*** RIVER *** [Kh Ac 5d 3s] [9s] +MexicanGamb: checks +stefan_bg_46: checks +*** SHOW DOWN *** +MexicanGamb: shows [Kc 6c] (a pair of Kings) +stefan_bg_46: shows [As 6h] (a pair of Aces) +stefan_bg_46 collected 3200 from pot +*** SUMMARY *** +Total pot 3200 | Rake 0 +Board [Kh Ac 5d 3s 9s] +Seat 1: s0rrow (button) folded on the Flop +Seat 2: MexicanGamb (small blind) showed [Kc 6c] and lost with a pair of Kings +Seat 4: seric1975 (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: Asdelpoker01 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 showed [As 6h] and won (3200) with a pair of Aces + + + +PokerStars Game #47656625677: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:37:30 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (10911 in chips) +Seat 2: MexicanGamb (3665 in chips) +Seat 4: seric1975 (9030 in chips) +Seat 5: Georgy80 (9737 in chips) +Seat 6: Asdelpoker01 (4565 in chips) +Seat 7: Poker Elfe 1 (5042 in chips) +Seat 8: Djkujuhfl (5108 in chips) +Seat 9: stefan_bg_46 (6610 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Asdelpoker01: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +seric1975: posts small blind 100 +Georgy80: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [2s Js] +Asdelpoker01: raises 4340 to 4540 and is all-in +Poker Elfe 1: folds +Djkujuhfl: raises 543 to 5083 and is all-in +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +seric1975: folds +Georgy80: folds +Uncalled bet (543) returned to Djkujuhfl +*** FLOP *** [3s 8s 7c] +*** TURN *** [3s 8s 7c] [3h] +*** RIVER *** [3s 8s 7c 3h] [4h] +*** SHOW DOWN *** +Asdelpoker01: shows [4c Ks] (two pair, Fours and Threes) +Djkujuhfl: shows [As Ah] (two pair, Aces and Threes) +Djkujuhfl collected 9580 from pot +Djkujuhfl wins the $0.25 bounty for eliminating Asdelpoker01 +Asdelpoker01 finished the tournament in 23rd place +*** SUMMARY *** +Total pot 9580 | Rake 0 +Board [3s 8s 7c 3h 4h] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb (button) folded before Flop (didn't bet) +Seat 4: seric1975 (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 6: Asdelpoker01 showed [4c Ks] and lost with two pair, Fours and Threes +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl showed [As Ah] and won (9580) with two pair, Aces and Threes +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656645203: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:38:00 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (10886 in chips) +Seat 2: MexicanGamb (3640 in chips) +Seat 4: seric1975 (8905 in chips) +Seat 5: Georgy80 (9512 in chips) +Seat 7: Poker Elfe 1 (5017 in chips) +Seat 8: Djkujuhfl (10123 in chips) +Seat 9: stefan_bg_46 (6585 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +Georgy80: posts small blind 100 +Poker Elfe 1: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [Kc Js] +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 400 to 600 +MexicanGamb: calls 600 +seric1975: folds +Georgy80: folds +Poker Elfe 1: calls 400 +*** FLOP *** [5d Ac 5c] +Poker Elfe 1: checks +s0rrow: checks +MexicanGamb: checks +*** TURN *** [5d Ac 5c] [7d] +Poker Elfe 1: checks +s0rrow: checks +MexicanGamb: bets 600 +Poker Elfe 1: folds +s0rrow: calls 600 +*** RIVER *** [5d Ac 5c 7d] [7h] +s0rrow: checks +MexicanGamb: bets 800 +s0rrow: folds +Uncalled bet (800) returned to MexicanGamb +MexicanGamb collected 3275 from pot +MexicanGamb: doesn't show hand +*** SUMMARY *** +Total pot 3275 | Rake 0 +Board [5d Ac 5c 7d 7h] +Seat 1: s0rrow folded on the River +Seat 2: MexicanGamb collected (3275) +Seat 4: seric1975 (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 7: Poker Elfe 1 (big blind) folded on the Turn +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656688694: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:39:09 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (9661 in chips) +Seat 2: MexicanGamb (5690 in chips) +Seat 4: seric1975 (8880 in chips) +Seat 5: Georgy80 (9387 in chips) +Seat 7: Poker Elfe 1 (4392 in chips) +Seat 8: Djkujuhfl (10098 in chips) +Seat 9: stefan_bg_46 (6560 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +Poker Elfe 1: posts small blind 100 +Djkujuhfl: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [Qd 3s] +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: raises 465 to 665 +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: folds +Uncalled bet (465) returned to MexicanGamb +MexicanGamb collected 675 from pot +MexicanGamb: doesn't show hand +*** SUMMARY *** +Total pot 675 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb collected (675) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (small blind) folded before Flop +Seat 8: Djkujuhfl (big blind) folded before Flop +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656706371: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:39:37 ET +Table '297808375 8' 9-max Seat #7 is the button +Seat 1: s0rrow (9636 in chips) +Seat 2: MexicanGamb (6140 in chips) +Seat 4: seric1975 (8855 in chips) +Seat 5: Georgy80 (9362 in chips) +Seat 7: Poker Elfe 1 (4267 in chips) +Seat 8: Djkujuhfl (9873 in chips) +Seat 9: stefan_bg_46 (6535 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +Djkujuhfl: posts small blind 100 +stefan_bg_46: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [3d Ks] +s0rrow: folds +MexicanGamb: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: calls 100 +stefan_bg_46: checks +*** FLOP *** [6c 6s Js] +Djkujuhfl: checks +stefan_bg_46: bets 200 +Djkujuhfl: raises 400 to 600 +stefan_bg_46: calls 400 +*** TURN *** [6c 6s Js] [2d] +Djkujuhfl: bets 1000 +stefan_bg_46: calls 1000 +*** RIVER *** [6c 6s Js 2d] [Ah] +Djkujuhfl: bets 1800 +stefan_bg_46: calls 1800 +*** SHOW DOWN *** +Djkujuhfl: shows [6d 3h] (three of a kind, Sixes) +stefan_bg_46: shows [6h 3c] (three of a kind, Sixes) +Djkujuhfl collected 3688 from pot +stefan_bg_46 collected 3687 from pot +*** SUMMARY *** +Total pot 7375 | Rake 0 +Board [6c 6s Js 2d Ah] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (button) folded before Flop (didn't bet) +Seat 8: Djkujuhfl (small blind) showed [6d 3h] and won (3688) with three of a kind, Sixes +Seat 9: stefan_bg_46 (big blind) showed [6h 3c] and won (3687) with three of a kind, Sixes + + + +PokerStars Game #47656753035: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:40:49 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (9611 in chips) +Seat 2: MexicanGamb (6115 in chips) +Seat 4: seric1975 (8830 in chips) +Seat 5: Georgy80 (9337 in chips) +Seat 7: Poker Elfe 1 (4242 in chips) +Seat 8: Djkujuhfl (9936 in chips) +Seat 9: stefan_bg_46 (6597 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +stefan_bg_46: posts small blind 100 +s0rrow: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [4h Ks] +MexicanGamb: raises 490 to 690 +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +Uncalled bet (490) returned to MexicanGamb +MexicanGamb collected 675 from pot +MexicanGamb: doesn't show hand +*** SUMMARY *** +Total pot 675 | Rake 0 +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: MexicanGamb collected (675) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47656770690: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:41:17 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (9386 in chips) +Seat 2: MexicanGamb (6565 in chips) +Seat 4: seric1975 (8805 in chips) +Seat 5: Georgy80 (9312 in chips) +Seat 7: Poker Elfe 1 (4217 in chips) +Seat 8: Djkujuhfl (9911 in chips) +Seat 9: stefan_bg_46 (6472 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +s0rrow: posts small blind 100 +MexicanGamb: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [3d 6d] +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: raises 355 to 555 +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +Uncalled bet (355) returned to Djkujuhfl +Djkujuhfl collected 675 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 675 | Rake 0 +Seat 1: s0rrow (small blind) folded before Flop +Seat 2: MexicanGamb (big blind) folded before Flop +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl collected (675) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47656789310: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:41:46 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (9261 in chips) +Seat 2: MexicanGamb (6340 in chips) +Seat 4: seric1975 (8780 in chips) +Seat 5: Georgy80 (9287 in chips) +Seat 7: Poker Elfe 1 (4192 in chips) +Seat 8: Djkujuhfl (10361 in chips) +Seat 9: stefan_bg_46 (6447 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +MexicanGamb: posts small blind 100 +seric1975: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [9c Ks] +Georgy80: folds +Poker Elfe 1: calls 200 +Djkujuhfl: folds +stefan_bg_46: calls 200 +s0rrow: calls 200 +MexicanGamb: folds +seric1975: checks +*** FLOP *** [Js 3d Tc] +seric1975: checks +Poker Elfe 1: checks +stefan_bg_46: checks +s0rrow: checks +*** TURN *** [Js 3d Tc] [8h] +seric1975: checks +Poker Elfe 1: checks +stefan_bg_46: checks +s0rrow: bets 800 +seric1975: folds +Poker Elfe 1: folds +stefan_bg_46: folds +Uncalled bet (800) returned to s0rrow +s0rrow collected 1075 from pot +*** SUMMARY *** +Total pot 1075 | Rake 0 +Board [Js 3d Tc 8h] +Seat 1: s0rrow (button) collected (1075) +Seat 2: MexicanGamb (small blind) folded before Flop +Seat 4: seric1975 (big blind) folded on the Turn +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded on the Turn +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded on the Turn + + + +PokerStars Game #47656823014: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:42:37 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (10111 in chips) +Seat 2: MexicanGamb (6215 in chips) +Seat 4: seric1975 (8555 in chips) +Seat 5: Georgy80 (9262 in chips) +Seat 7: Poker Elfe 1 (3967 in chips) +Seat 8: Djkujuhfl (10336 in chips) +Seat 9: stefan_bg_46 (6222 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +seric1975: posts small blind 100 +Georgy80: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [7d 6h] +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 400 to 600 +MexicanGamb: folds +seric1975: folds +Georgy80: folds +Uncalled bet (400) returned to s0rrow +s0rrow collected 675 from pot +*** SUMMARY *** +Total pot 675 | Rake 0 +Seat 1: s0rrow collected (675) +Seat 2: MexicanGamb (button) folded before Flop (didn't bet) +Seat 4: seric1975 (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656838606: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level X (100/200) - 2010/08/03 12:43:01 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (10561 in chips) +Seat 2: MexicanGamb (6190 in chips) +Seat 4: seric1975 (8430 in chips) +Seat 5: Georgy80 (9037 in chips) +Seat 7: Poker Elfe 1 (3942 in chips) +Seat 8: Djkujuhfl (10311 in chips) +Seat 9: stefan_bg_46 (6197 in chips) +s0rrow: posts the ante 25 +MexicanGamb: posts the ante 25 +seric1975: posts the ante 25 +Georgy80: posts the ante 25 +Poker Elfe 1: posts the ante 25 +Djkujuhfl: posts the ante 25 +stefan_bg_46: posts the ante 25 +Georgy80: posts small blind 100 +Poker Elfe 1: posts big blind 200 +*** HOLE CARDS *** +Dealt to s0rrow [2d 5c] +Djkujuhfl: folds +stefan_bg_46: raises 200 to 400 +s0rrow: folds +MexicanGamb: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Uncalled bet (200) returned to stefan_bg_46 +stefan_bg_46 collected 675 from pot +*** SUMMARY *** +Total pot 675 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: seric1975 (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 7: Poker Elfe 1 (big blind) folded before Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 collected (675) + + + +PokerStars Game #47656854341: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:43:25 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (10536 in chips) +Seat 2: MexicanGamb (6165 in chips) +Seat 4: seric1975 (8405 in chips) +Seat 5: Georgy80 (8912 in chips) +Seat 7: Poker Elfe 1 (3717 in chips) +Seat 8: Djkujuhfl (10286 in chips) +Seat 9: stefan_bg_46 (6647 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +seric1975: posts the ante 30 +Georgy80: posts the ante 30 +Poker Elfe 1: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +Poker Elfe 1: posts small blind 125 +Djkujuhfl: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [Jd 7c] +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: raises 500 to 750 +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: folds +Uncalled bet (500) returned to MexicanGamb +MexicanGamb collected 835 from pot +MexicanGamb: doesn't show hand +*** SUMMARY *** +Total pot 835 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb collected (835) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (small blind) folded before Flop +Seat 8: Djkujuhfl (big blind) folded before Flop +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656867057: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:43:45 ET +Table '297808375 8' 9-max Seat #7 is the button +Seat 1: s0rrow (10506 in chips) +Seat 2: MexicanGamb (6720 in chips) +Seat 4: seric1975 (8375 in chips) +Seat 5: Georgy80 (8882 in chips) +Seat 7: Poker Elfe 1 (3562 in chips) +Seat 8: Djkujuhfl (10006 in chips) +Seat 9: stefan_bg_46 (6617 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +seric1975: posts the ante 30 +Georgy80: posts the ante 30 +Poker Elfe 1: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +Djkujuhfl: posts small blind 125 +stefan_bg_46: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [2h Ts] +s0rrow: folds +MexicanGamb: folds +seric1975: folds +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: calls 125 +stefan_bg_46: checks +*** FLOP *** [9h 5c 8s] +Djkujuhfl: checks +stefan_bg_46: bets 250 +Djkujuhfl: folds +Uncalled bet (250) returned to stefan_bg_46 +stefan_bg_46 collected 710 from pot +*** SUMMARY *** +Total pot 710 | Rake 0 +Board [9h 5c 8s] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: seric1975 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 (button) folded before Flop (didn't bet) +Seat 8: Djkujuhfl (small blind) folded on the Flop +Seat 9: stefan_bg_46 (big blind) collected (710) + + + +PokerStars Game #47656888903: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:44:19 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (10476 in chips) +Seat 2: MexicanGamb (6690 in chips) +Seat 5: Georgy80 (8852 in chips) +Seat 7: Poker Elfe 1 (3532 in chips) +Seat 8: Djkujuhfl (9726 in chips) +Seat 9: stefan_bg_46 (7047 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +Georgy80: posts the ante 30 +Poker Elfe 1: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +stefan_bg_46: posts small blind 125 +s0rrow: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [Ad 6s] +MexicanGamb: folds +Georgy80: raises 250 to 500 +Poker Elfe 1: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +Uncalled bet (250) returned to Georgy80 +Georgy80 collected 805 from pot +Georgy80: doesn't show hand +*** SUMMARY *** +Total pot 805 | Rake 0 +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 5: Georgy80 collected (805) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47656900619: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:44:37 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (10196 in chips) +Seat 2: MexicanGamb (6660 in chips) +Seat 5: Georgy80 (9377 in chips) +Seat 7: Poker Elfe 1 (3502 in chips) +Seat 8: Djkujuhfl (9696 in chips) +Seat 9: stefan_bg_46 (6892 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +Georgy80: posts the ante 30 +Poker Elfe 1: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +s0rrow: posts small blind 125 +MexicanGamb: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [6s 8c] +Georgy80: folds +Poker Elfe 1: folds +Djkujuhfl: raises 750 to 1000 +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +Uncalled bet (750) returned to Djkujuhfl +Djkujuhfl collected 805 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 805 | Rake 0 +Seat 1: s0rrow (small blind) folded before Flop +Seat 2: MexicanGamb (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 7: Poker Elfe 1 folded before Flop (didn't bet) +Seat 8: Djkujuhfl collected (805) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47656916060: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:45:01 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (10041 in chips) +Seat 2: MexicanGamb (6380 in chips) +Seat 5: Georgy80 (9347 in chips) +Seat 7: Poker Elfe 1 (3472 in chips) +Seat 8: Djkujuhfl (10221 in chips) +Seat 9: stefan_bg_46 (6862 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +Georgy80: posts the ante 30 +Poker Elfe 1: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +MexicanGamb: posts small blind 125 +Georgy80: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [9d 4s] +Poker Elfe 1: calls 250 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: calls 125 +Georgy80: raises 350 to 600 +Poker Elfe 1: calls 350 +MexicanGamb: calls 350 +*** FLOP *** [8d 5c 8s] +MexicanGamb: checks +Georgy80: bets 725 +Poker Elfe 1: calls 725 +MexicanGamb: folds +*** TURN *** [8d 5c 8s] [Ac] +Georgy80: checks +Poker Elfe 1: checks +*** RIVER *** [8d 5c 8s Ac] [6c] +pokergott68 is connected +madrk is connected +Vitinho1983 is connected +Georgy80: bets 725 +Poker Elfe 1: calls 725 +*** SHOW DOWN *** +Georgy80: shows [Ah Ad] (a full house, Aces full of Eights) +Poker Elfe 1: mucks hand +Georgy80 collected 4880 from pot +*** SUMMARY *** +Total pot 4880 | Rake 0 +Board [8d 5c 8s Ac 6c] +Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 2: MexicanGamb (small blind) folded on the Flop +Seat 5: Georgy80 (big blind) showed [Ah Ad] and won (4880) with a full house, Aces full of Eights +Seat 7: Poker Elfe 1 mucked [Tc Ts] +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656957039: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:46:05 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (10011 in chips) +Seat 2: MexicanGamb (5750 in chips) +Seat 3: madrk (3216 in chips) out of hand (moved from another table into small blind) +Seat 4: pokergott68 (5665 in chips) out of hand (moved from another table into small blind) +Seat 5: Georgy80 (12147 in chips) +Seat 6: Vitinho1983 (9420 in chips) +Seat 7: Poker Elfe 1 (1392 in chips) +Seat 8: Djkujuhfl (10191 in chips) +Seat 9: stefan_bg_46 (6832 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +Georgy80: posts the ante 30 +Vitinho1983: posts the ante 30 +Poker Elfe 1: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +Georgy80: posts small blind 125 +Vitinho1983: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [3h 2s] +Poker Elfe 1: raises 1112 to 1362 and is all-in +Djkujuhfl: raises 1112 to 2474 +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +Georgy80: folds +Vitinho1983: folds +Uncalled bet (1112) returned to Djkujuhfl +*** FLOP *** [Ts 6d 7c] +*** TURN *** [Ts 6d 7c] [9c] +*** RIVER *** [Ts 6d 7c 9c] [Td] +*** SHOW DOWN *** +Poker Elfe 1: shows [Jd Qd] (a pair of Tens) +Djkujuhfl: shows [Ad Js] (a pair of Tens - Ace kicker) +Djkujuhfl collected 3309 from pot +Djkujuhfl wins the $0.25 bounty for eliminating Poker Elfe 1 +Poker Elfe 1 finished the tournament in 18th place +*** SUMMARY *** +Total pot 3309 | Rake 0 +Board [Ts 6d 7c 9c Td] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: Vitinho1983 (big blind) folded before Flop +Seat 7: Poker Elfe 1 showed [Jd Qd] and lost with a pair of Tens +Seat 8: Djkujuhfl showed [Ad Js] and won (3309) with a pair of Tens +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47656981310: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:46:42 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (9981 in chips) +Seat 2: MexicanGamb (5720 in chips) +Seat 3: madrk (3216 in chips) +Seat 4: pokergott68 (5665 in chips) is sitting out +Seat 5: Georgy80 (11992 in chips) +Seat 6: Vitinho1983 (9140 in chips) +Seat 8: Djkujuhfl (12108 in chips) +Seat 9: stefan_bg_46 (6802 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +madrk: posts the ante 30 +pokergott68: posts the ante 30 +Georgy80: posts the ante 30 +Vitinho1983: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +Vitinho1983: posts small blind 125 +Djkujuhfl: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [7d 4h] +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +madrk: folds +pokergott68: folds +Georgy80: folds +Vitinho1983: calls 125 +Djkujuhfl: raises 500 to 750 +Vitinho1983: calls 500 +*** FLOP *** [6c Ah 7c] +Vitinho1983: checks +Djkujuhfl: bets 500 +Vitinho1983: calls 500 +*** TURN *** [6c Ah 7c] [7s] +Vitinho1983: checks +Djkujuhfl: checks +*** RIVER *** [6c Ah 7c 7s] [3s] +Vitinho1983: bets 1000 +pokergott68 has returned +Djkujuhfl: raises 9828 to 10828 and is all-in +Vitinho1983: calls 6860 and is all-in +Uncalled bet (2968) returned to Djkujuhfl +*** SHOW DOWN *** +Djkujuhfl: shows [4d 5s] (a straight, Three to Seven) +Vitinho1983: shows [7h 8d] (three of a kind, Sevens) +Djkujuhfl collected 18460 from pot +Djkujuhfl wins the $0.25 bounty for eliminating Vitinho1983 +Vitinho1983 finished the tournament in 17th place +*** SUMMARY *** +Total pot 18460 | Rake 0 +Board [6c Ah 7c 7s 3s] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: Vitinho1983 (small blind) showed [7h 8d] and lost with three of a kind, Sevens +Seat 8: Djkujuhfl (big blind) showed [4d 5s] and won (18460) with a straight, Three to Seven +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657019801: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:47:42 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (9951 in chips) +Seat 2: MexicanGamb (5690 in chips) +Seat 3: madrk (3186 in chips) +Seat 4: pokergott68 (5635 in chips) +Seat 5: Georgy80 (11962 in chips) +Seat 8: Djkujuhfl (21428 in chips) +Seat 9: stefan_bg_46 (6772 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +madrk: posts the ante 30 +pokergott68: posts the ante 30 +Georgy80: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +stefan_bg_46: posts small blind 125 +s0rrow: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [Jh Ah] +MexicanGamb: folds +madrk: folds +pokergott68: folds +Georgy80: folds +123456789476 is connected +Djkujuhfl: calls 250 +stefan_bg_46: calls 125 +s0rrow: raises 1000 to 1250 +Djkujuhfl: folds +stefan_bg_46: folds +Uncalled bet (1000) returned to s0rrow +s0rrow collected 960 from pot +*** SUMMARY *** +Total pot 960 | Rake 0 +Seat 1: s0rrow (big blind) collected (960) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) folded before Flop +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47657039562: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:48:13 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (10631 in chips) +Seat 2: MexicanGamb (5660 in chips) +Seat 3: madrk (3156 in chips) +Seat 4: pokergott68 (5605 in chips) +Seat 5: Georgy80 (11932 in chips) +Seat 6: 123456789476 (8616 in chips) +Seat 8: Djkujuhfl (21148 in chips) +Seat 9: stefan_bg_46 (6492 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +madrk: posts the ante 30 +pokergott68: posts the ante 30 +Georgy80: posts the ante 30 +123456789476: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +s0rrow: posts small blind 125 +MexicanGamb: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [7d 4d] +madrk: folds +pokergott68: folds +Georgy80: folds +123456789476: raises 250 to 500 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +Uncalled bet (250) returned to 123456789476 +123456789476 collected 865 from pot +*** SUMMARY *** +Total pot 865 | Rake 0 +Seat 1: s0rrow (small blind) folded before Flop +Seat 2: MexicanGamb (big blind) folded before Flop +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 collected (865) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47657052271: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:48:33 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (10476 in chips) +Seat 2: MexicanGamb (5380 in chips) +Seat 3: madrk (3126 in chips) +Seat 4: pokergott68 (5575 in chips) +Seat 5: Georgy80 (11902 in chips) +Seat 6: 123456789476 (9201 in chips) +Seat 8: Djkujuhfl (21118 in chips) +Seat 9: stefan_bg_46 (6462 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +madrk: posts the ante 30 +pokergott68: posts the ante 30 +Georgy80: posts the ante 30 +123456789476: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +MexicanGamb: posts small blind 125 +madrk: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [Kd 2s] +pokergott68: folds +Georgy80: raises 350 to 600 +123456789476: calls 600 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +madrk: folds +*** FLOP *** [6c Jh 6h] +Georgy80: checks +123456789476: bets 500 +Georgy80: calls 500 +*** TURN *** [6c Jh 6h] [Ah] +Georgy80: checks +123456789476: bets 500 +Georgy80: folds +Uncalled bet (500) returned to 123456789476 +123456789476 collected 2815 from pot +*** SUMMARY *** +Total pot 2815 | Rake 0 +Board [6c Jh 6h Ah] +Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 2: MexicanGamb (small blind) folded before Flop +Seat 3: madrk (big blind) folded before Flop +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded on the Turn +Seat 6: 123456789476 collected (2815) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657092296: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:49:36 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (10446 in chips) +Seat 2: MexicanGamb (5225 in chips) +Seat 3: madrk (2846 in chips) +Seat 4: pokergott68 (5545 in chips) +Seat 5: Georgy80 (10772 in chips) +Seat 6: 123456789476 (10886 in chips) +Seat 8: Djkujuhfl (21088 in chips) +Seat 9: stefan_bg_46 (6432 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +madrk: posts the ante 30 +pokergott68: posts the ante 30 +Georgy80: posts the ante 30 +123456789476: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +madrk: posts small blind 125 +pokergott68: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [5d Jd] +Georgy80: folds +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 500 to 750 +MexicanGamb: folds +madrk: folds +pokergott68: calls 500 +*** FLOP *** [5c 2s 2d] +pokergott68: checks +s0rrow: bets 1250 +pokergott68: folds +Uncalled bet (1250) returned to s0rrow +s0rrow collected 1865 from pot +*** SUMMARY *** +Total pot 1865 | Rake 0 +Board [5c 2s 2d] +Seat 1: s0rrow collected (1865) +Seat 2: MexicanGamb (button) folded before Flop (didn't bet) +Seat 3: madrk (small blind) folded before Flop +Seat 4: pokergott68 (big blind) folded on the Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657111180: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:50:05 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: s0rrow (11531 in chips) +Seat 2: MexicanGamb (5195 in chips) +Seat 3: madrk (2691 in chips) +Seat 4: pokergott68 (4765 in chips) +Seat 5: Georgy80 (10742 in chips) +Seat 6: 123456789476 (10856 in chips) +Seat 8: Djkujuhfl (21058 in chips) +Seat 9: stefan_bg_46 (6402 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +madrk: posts the ante 30 +pokergott68: posts the ante 30 +Georgy80: posts the ante 30 +123456789476: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +pokergott68: posts small blind 125 +Georgy80: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [8d Jd] +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: calls 250 +s0rrow: folds +MexicanGamb: folds +madrk: calls 250 +pokergott68: calls 125 +Georgy80: checks +*** FLOP *** [5s 9c Qd] +pokergott68: checks +Georgy80: checks +stefan_bg_46: checks +madrk: checks +*** TURN *** [5s 9c Qd] [9h] +pokergott68: checks +Georgy80: checks +stefan_bg_46: checks +madrk: checks +*** RIVER *** [5s 9c Qd 9h] [Jh] +pokergott68: checks +Georgy80: checks +stefan_bg_46: checks +madrk: checks +*** SHOW DOWN *** +pokergott68: shows [4s 6s] (a pair of Nines) +Georgy80: mucks hand +stefan_bg_46: shows [7d 7c] (two pair, Nines and Sevens) +madrk: shows [Th 8h] (a straight, Eight to Queen) +madrk collected 1240 from pot +*** SUMMARY *** +Total pot 1240 | Rake 0 +Board [5s 9c Qd 9h Jh] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: madrk (button) showed [Th 8h] and won (1240) with a straight, Eight to Queen +Seat 4: pokergott68 (small blind) showed [4s 6s] and lost with a pair of Nines +Seat 5: Georgy80 (big blind) mucked [3d 4d] +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 showed [7d 7c] and lost with two pair, Nines and Sevens + + + +PokerStars Game #47657138068: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:50:47 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (11501 in chips) +Seat 2: MexicanGamb (5165 in chips) +Seat 3: madrk (3651 in chips) +Seat 4: pokergott68 (4485 in chips) +Seat 5: Georgy80 (10462 in chips) +Seat 6: 123456789476 (10826 in chips) +Seat 8: Djkujuhfl (21028 in chips) +Seat 9: stefan_bg_46 (6122 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +madrk: posts the ante 30 +pokergott68: posts the ante 30 +Georgy80: posts the ante 30 +123456789476: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +Georgy80: posts small blind 125 +123456789476: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [8h Th] +Djkujuhfl: raises 375 to 625 +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +madrk: folds +pokergott68: calls 625 +Georgy80: folds +123456789476: folds +*** FLOP *** [5h 4h 4s] +Djkujuhfl: bets 750 +pokergott68: folds +Uncalled bet (750) returned to Djkujuhfl +Djkujuhfl collected 1865 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 1865 | Rake 0 +Board [5h 4h 4s] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 (button) folded on the Flop +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: 123456789476 (big blind) folded before Flop +Seat 8: Djkujuhfl collected (1865) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657171385: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:51:40 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (11471 in chips) +Seat 2: MexicanGamb (5135 in chips) +Seat 3: madrk (3621 in chips) +Seat 4: pokergott68 (3830 in chips) +Seat 5: Georgy80 (10307 in chips) +Seat 6: 123456789476 (10546 in chips) +Seat 8: Djkujuhfl (22238 in chips) +Seat 9: stefan_bg_46 (6092 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +madrk: posts the ante 30 +pokergott68: posts the ante 30 +Georgy80: posts the ante 30 +123456789476: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +123456789476: posts small blind 125 +Djkujuhfl: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [Qd 5d] +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +madrk: folds +pokergott68: folds +Georgy80: folds +123456789476: folds +Uncalled bet (125) returned to Djkujuhfl +Djkujuhfl collected 490 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 490 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: 123456789476 (small blind) folded before Flop +Seat 8: Djkujuhfl (big blind) collected (490) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657183750: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:51:59 ET +Table '297808375 8' 9-max Seat #6 is the button +Seat 1: s0rrow (11441 in chips) +Seat 2: MexicanGamb (5105 in chips) +Seat 3: madrk (3591 in chips) +Seat 4: pokergott68 (3800 in chips) +Seat 5: Georgy80 (10277 in chips) +Seat 6: 123456789476 (10391 in chips) +Seat 8: Djkujuhfl (22573 in chips) +Seat 9: stefan_bg_46 (6062 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +madrk: posts the ante 30 +pokergott68: posts the ante 30 +Georgy80: posts the ante 30 +123456789476: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +Djkujuhfl: posts small blind 125 +stefan_bg_46: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [7h Kh] +s0rrow: folds +MexicanGamb: folds +madrk: folds +pokergott68: folds +Georgy80: calls 250 +123456789476: calls 250 +Djkujuhfl: folds +stefan_bg_46: checks +*** FLOP *** [8d 3h 2c] +stefan_bg_46: bets 250 +Georgy80: folds +123456789476: calls 250 +*** TURN *** [8d 3h 2c] [5c] +stefan_bg_46: bets 500 +123456789476: calls 500 +*** RIVER *** [8d 3h 2c 5c] [Jc] +stefan_bg_46: bets 1500 +123456789476: folds +Uncalled bet (1500) returned to stefan_bg_46 +stefan_bg_46 collected 2615 from pot +*** SUMMARY *** +Total pot 2615 | Rake 0 +Board [8d 3h 2c 5c Jc] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded on the Flop +Seat 6: 123456789476 (button) folded on the River +Seat 8: Djkujuhfl (small blind) folded before Flop +Seat 9: stefan_bg_46 (big blind) collected (2615) + + + +PokerStars Game #47657213923: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:52:46 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (11411 in chips) +Seat 2: MexicanGamb (5075 in chips) +Seat 3: madrk (3561 in chips) +Seat 4: pokergott68 (3770 in chips) +Seat 5: Georgy80 (9997 in chips) +Seat 6: 123456789476 (9361 in chips) +Seat 8: Djkujuhfl (22418 in chips) +Seat 9: stefan_bg_46 (7647 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +madrk: posts the ante 30 +pokergott68: posts the ante 30 +Georgy80: posts the ante 30 +123456789476: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +stefan_bg_46: posts small blind 125 +s0rrow: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [5s 9h] +MexicanGamb: folds +madrk: folds +pokergott68: folds +Georgy80: raises 350 to 600 +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +Uncalled bet (350) returned to Georgy80 +Georgy80 collected 865 from pot +Georgy80: doesn't show hand +*** SUMMARY *** +Total pot 865 | Rake 0 +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 collected (865) +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47657227914: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XI (125/250) - 2010/08/03 12:53:08 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (11131 in chips) +Seat 2: MexicanGamb (5045 in chips) +Seat 3: madrk (3531 in chips) +Seat 4: pokergott68 (3740 in chips) +Seat 5: Georgy80 (10582 in chips) +Seat 6: 123456789476 (9331 in chips) +Seat 8: Djkujuhfl (22388 in chips) +Seat 9: stefan_bg_46 (7492 in chips) +s0rrow: posts the ante 30 +MexicanGamb: posts the ante 30 +madrk: posts the ante 30 +pokergott68: posts the ante 30 +Georgy80: posts the ante 30 +123456789476: posts the ante 30 +Djkujuhfl: posts the ante 30 +stefan_bg_46: posts the ante 30 +s0rrow: posts small blind 125 +MexicanGamb: posts big blind 250 +*** HOLE CARDS *** +Dealt to s0rrow [2h Ah] +madrk: calls 250 +pokergott68: calls 250 +Georgy80: folds +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: calls 125 +MexicanGamb: checks +*** FLOP *** [5s Ks 6d] +s0rrow: checks +MexicanGamb: checks +madrk: checks +pokergott68: checks +*** TURN *** [5s Ks 6d] [8d] +s0rrow: checks +MexicanGamb: checks +madrk: checks +pokergott68: checks +*** RIVER *** [5s Ks 6d 8d] [Jd] +s0rrow: checks +MexicanGamb: checks +madrk: checks +pokergott68: checks +*** SHOW DOWN *** +s0rrow: shows [2h Ah] (high card Ace) +MexicanGamb: shows [3s Ad] (high card Ace) +madrk: shows [3c 3h] (a pair of Threes) +pokergott68: shows [Tc Jc] (a pair of Jacks) +pokergott68 collected 1240 from pot +*** SUMMARY *** +Total pot 1240 | Rake 0 +Board [5s Ks 6d 8d Jd] +Seat 1: s0rrow (small blind) showed [2h Ah] and lost with high card Ace +Seat 2: MexicanGamb (big blind) showed [3s Ad] and lost with high card Ace +Seat 3: madrk showed [3c 3h] and lost with a pair of Threes +Seat 4: pokergott68 showed [Tc Jc] and won (1240) with a pair of Jacks +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47657435279: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 12:59:49 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (10851 in chips) +Seat 2: MexicanGamb (4765 in chips) +Seat 3: madrk (3251 in chips) +Seat 4: pokergott68 (4700 in chips) +Seat 5: Georgy80 (10552 in chips) +Seat 6: 123456789476 (9301 in chips) +Seat 8: Djkujuhfl (22358 in chips) +Seat 9: stefan_bg_46 (7462 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +MexicanGamb: posts small blind 150 +madrk: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [7h 5d] +pokergott68: folds +Georgy80: folds +123456789476: folds +Djkujuhfl: raises 425 to 725 +stefan_bg_46: folds +s0rrow: raises 1075 to 1800 +MexicanGamb: folds +madrk: folds +Djkujuhfl has timed out +Djkujuhfl: folds +Uncalled bet (1075) returned to s0rrow +Djkujuhfl is sitting out +s0rrow collected 2220 from pot +Djkujuhfl has returned +*** SUMMARY *** +Total pot 2220 | Rake 0 +Seat 1: s0rrow (button) collected (2220) +Seat 2: MexicanGamb (small blind) folded before Flop +Seat 3: madrk (big blind) folded before Flop +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657489543: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:01:20 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (12306 in chips) +Seat 2: MexicanGamb (4575 in chips) +Seat 3: madrk (2911 in chips) +Seat 4: pokergott68 (4660 in chips) +Seat 5: Georgy80 (10512 in chips) +Seat 6: 123456789476 (9261 in chips) +Seat 8: Djkujuhfl (21593 in chips) +Seat 9: stefan_bg_46 (7422 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +madrk: posts small blind 150 +pokergott68: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [9c 7c] +Georgy80: folds +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 600 to 900 +MexicanGamb: folds +madrk: folds +pokergott68: folds +Uncalled bet (600) returned to s0rrow +s0rrow collected 1070 from pot +*** SUMMARY *** +Total pot 1070 | Rake 0 +Seat 1: s0rrow collected (1070) +Seat 2: MexicanGamb (button) folded before Flop (didn't bet) +Seat 3: madrk (small blind) folded before Flop +Seat 4: pokergott68 (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657511858: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:01:55 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: s0rrow (13036 in chips) +Seat 2: MexicanGamb (4535 in chips) +Seat 3: madrk (2721 in chips) +Seat 4: pokergott68 (4320 in chips) +Seat 5: Georgy80 (10472 in chips) +Seat 6: 123456789476 (9221 in chips) +Seat 8: Djkujuhfl (21553 in chips) +Seat 9: stefan_bg_46 (7382 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +pokergott68: posts small blind 150 +Georgy80: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [7s Jd] +123456789476: calls 300 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: calls 300 +madrk: raises 2381 to 2681 and is all-in +pokergott68: folds +Georgy80: folds +123456789476: folds +MexicanGamb: folds +Uncalled bet (2381) returned to madrk +madrk collected 1670 from pot +madrk: doesn't show hand +*** SUMMARY *** +Total pot 1670 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop +Seat 3: madrk (button) collected (1670) +Seat 4: pokergott68 (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 6: 123456789476 folded before Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657535544: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:02:33 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (12996 in chips) +Seat 2: MexicanGamb (4195 in chips) +Seat 3: madrk (4051 in chips) +Seat 4: pokergott68 (4130 in chips) +Seat 5: Georgy80 (10132 in chips) +Seat 6: 123456789476 (8881 in chips) +Seat 8: Djkujuhfl (21513 in chips) +Seat 9: stefan_bg_46 (7342 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +Georgy80: posts small blind 150 +123456789476: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [5s Ks] +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: raises 600 to 900 +madrk: folds +pokergott68: calls 900 +Georgy80: folds +123456789476: folds +*** FLOP *** [8s 3h 5h] +MexicanGamb: checks +pokergott68: checks +*** TURN *** [8s 3h 5h] [Qh] +MexicanGamb: bets 900 +pokergott68: folds +Uncalled bet (900) returned to MexicanGamb +MexicanGamb collected 2570 from pot +MexicanGamb: doesn't show hand +*** SUMMARY *** +Total pot 2570 | Rake 0 +Board [8s 3h 5h Qh] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb collected (2570) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 (button) folded on the Turn +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: 123456789476 (big blind) folded before Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657556286: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:03:05 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (12956 in chips) +Seat 2: MexicanGamb (5825 in chips) +Seat 3: madrk (4011 in chips) +Seat 4: pokergott68 (3190 in chips) +Seat 5: Georgy80 (9942 in chips) +Seat 6: 123456789476 (8541 in chips) +Seat 8: Djkujuhfl (21473 in chips) +Seat 9: stefan_bg_46 (7302 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +123456789476: posts small blind 150 +Djkujuhfl: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [7h Tc] +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +madrk: folds +pokergott68: folds +Georgy80: raises 600 to 900 +123456789476: folds +Djkujuhfl: folds +Uncalled bet (600) returned to Georgy80 +Georgy80 collected 1070 from pot +Georgy80: doesn't show hand +*** SUMMARY *** +Total pot 1070 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) collected (1070) +Seat 6: 123456789476 (small blind) folded before Flop +Seat 8: Djkujuhfl (big blind) folded before Flop +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657593528: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:04:03 ET +Table '297808375 8' 9-max Seat #6 is the button +Seat 1: s0rrow (12916 in chips) +Seat 2: MexicanGamb (5785 in chips) +Seat 3: madrk (3971 in chips) +Seat 4: pokergott68 (3150 in chips) +Seat 5: Georgy80 (10672 in chips) +Seat 6: 123456789476 (8351 in chips) +Seat 8: Djkujuhfl (21133 in chips) +Seat 9: stefan_bg_46 (7262 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +Djkujuhfl: posts small blind 150 +stefan_bg_46: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [6c 5h] +s0rrow: folds +MexicanGamb: folds +madrk: folds +pokergott68: folds +Georgy80: folds +123456789476: folds +Djkujuhfl: raises 600 to 900 +stefan_bg_46: folds +Uncalled bet (600) returned to Djkujuhfl +Djkujuhfl collected 920 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 920 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 (button) folded before Flop (didn't bet) +Seat 8: Djkujuhfl (small blind) collected (920) +Seat 9: stefan_bg_46 (big blind) folded before Flop + + + +PokerStars Game #47657626557: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:04:50 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (12876 in chips) +Seat 2: MexicanGamb (5745 in chips) +Seat 3: madrk (3931 in chips) +Seat 4: pokergott68 (3110 in chips) +Seat 5: Georgy80 (10632 in chips) +Seat 6: 123456789476 (8311 in chips) +Seat 8: Djkujuhfl (21713 in chips) +Seat 9: stefan_bg_46 (6922 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +stefan_bg_46: posts small blind 150 +s0rrow: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [6h 9s] +MexicanGamb: folds +madrk: folds +pokergott68: folds +Georgy80: folds +123456789476: raises 300 to 600 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +Uncalled bet (300) returned to 123456789476 +123456789476 collected 1070 from pot +*** SUMMARY *** +Total pot 1070 | Rake 0 +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 collected (1070) +Seat 8: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47657644189: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:05:16 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (12536 in chips) +Seat 2: MexicanGamb (5705 in chips) +Seat 3: madrk (3891 in chips) +Seat 4: pokergott68 (3070 in chips) +Seat 5: Georgy80 (10592 in chips) +Seat 6: 123456789476 (9041 in chips) +Seat 8: Djkujuhfl (21673 in chips) +Seat 9: stefan_bg_46 (6732 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +s0rrow: posts small blind 150 +MexicanGamb: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [6s Ac] +madrk: folds +pokergott68: folds +Georgy80: folds +123456789476: calls 300 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: calls 150 +MexicanGamb: checks +*** FLOP *** [Jc Kh 5s] +s0rrow: checks +MexicanGamb: checks +123456789476: bets 300 +s0rrow: folds +MexicanGamb: raises 600 to 900 +123456789476: folds +Uncalled bet (600) returned to MexicanGamb +MexicanGamb collected 1820 from pot +MexicanGamb: doesn't show hand +*** SUMMARY *** +Total pot 1820 | Rake 0 +Board [Jc Kh 5s] +Seat 1: s0rrow (small blind) folded on the Flop +Seat 2: MexicanGamb (big blind) collected (1820) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 folded on the Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47657685969: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:06:18 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (12196 in chips) +Seat 2: MexicanGamb (6885 in chips) +Seat 3: madrk (3851 in chips) +Seat 4: pokergott68 (3030 in chips) +Seat 5: Georgy80 (10552 in chips) +Seat 6: 123456789476 (8401 in chips) +Seat 8: Djkujuhfl (21633 in chips) +Seat 9: stefan_bg_46 (6692 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +MexicanGamb: posts small blind 150 +madrk: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [Ah 3d] +pokergott68: folds +Georgy80: folds +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 600 to 900 +MexicanGamb: calls 750 +madrk: folds +*** FLOP *** [7h 8h 7c] +MexicanGamb: checks +s0rrow: checks +*** TURN *** [7h 8h 7c] [Ad] +MexicanGamb: checks +s0rrow: bets 2100 +MexicanGamb: folds +Uncalled bet (2100) returned to s0rrow +s0rrow collected 2420 from pot +*** SUMMARY *** +Total pot 2420 | Rake 0 +Board [7h 8h 7c Ad] +Seat 1: s0rrow (button) collected (2420) +Seat 2: MexicanGamb (small blind) folded on the Turn +Seat 3: madrk (big blind) folded before Flop +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657716576: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:07:02 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (13676 in chips) +Seat 2: MexicanGamb (5945 in chips) +Seat 3: madrk (3511 in chips) +Seat 4: pokergott68 (2990 in chips) +Seat 5: Georgy80 (10512 in chips) +Seat 6: 123456789476 (8361 in chips) +Seat 8: Djkujuhfl (21593 in chips) +Seat 9: stefan_bg_46 (6652 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +madrk: posts small blind 150 +pokergott68: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [6h 9h] +Georgy80: folds +123456789476: folds +Djkujuhfl: raises 900 to 1200 +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +madrk: folds +pokergott68: calls 900 +*** FLOP *** [7c 3c 5d] +pokergott68: checks +Djkujuhfl: checks +*** TURN *** [7c 3c 5d] [7d] +pokergott68: checks +Djkujuhfl: checks +*** RIVER *** [7c 3c 5d 7d] [Ks] +pokergott68: checks +Djkujuhfl: checks +*** SHOW DOWN *** +pokergott68: shows [Qs Jh] (a pair of Sevens) +Djkujuhfl: shows [Ah Jc] (a pair of Sevens - Ace kicker) +Djkujuhfl collected 2870 from pot +*** SUMMARY *** +Total pot 2870 | Rake 0 +Board [7c 3c 5d 7d Ks] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb (button) folded before Flop (didn't bet) +Seat 3: madrk (small blind) folded before Flop +Seat 4: pokergott68 (big blind) showed [Qs Jh] and lost with a pair of Sevens +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl showed [Ah Jc] and won (2870) with a pair of Sevens +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657761659: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:08:08 ET +Table '297808375 8' 9-max Seat #3 is the button +Seat 1: s0rrow (13636 in chips) +Seat 2: MexicanGamb (5905 in chips) +Seat 3: madrk (3321 in chips) +Seat 4: pokergott68 (1750 in chips) +Seat 5: Georgy80 (10472 in chips) +Seat 6: 123456789476 (8321 in chips) +Seat 8: Djkujuhfl (23223 in chips) +Seat 9: stefan_bg_46 (6612 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +pokergott68: posts small blind 150 +Georgy80: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [4d Ah] +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: raises 600 to 900 +madrk: folds +pokergott68: folds +Georgy80: folds +Uncalled bet (600) returned to MexicanGamb +MexicanGamb collected 1070 from pot +MexicanGamb: doesn't show hand +*** SUMMARY *** +Total pot 1070 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb collected (1070) +Seat 3: madrk (button) folded before Flop (didn't bet) +Seat 4: pokergott68 (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657774523: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XII (150/300) - 2010/08/03 13:08:27 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (13596 in chips) +Seat 2: MexicanGamb (6635 in chips) +Seat 3: madrk (3281 in chips) +Seat 4: pokergott68 (1560 in chips) +Seat 5: Georgy80 (10132 in chips) +Seat 6: 123456789476 (8281 in chips) +Seat 8: Djkujuhfl (23183 in chips) +Seat 9: stefan_bg_46 (6572 in chips) +s0rrow: posts the ante 40 +MexicanGamb: posts the ante 40 +madrk: posts the ante 40 +pokergott68: posts the ante 40 +Georgy80: posts the ante 40 +123456789476: posts the ante 40 +Djkujuhfl: posts the ante 40 +stefan_bg_46: posts the ante 40 +Georgy80: posts small blind 150 +123456789476: posts big blind 300 +*** HOLE CARDS *** +Dealt to s0rrow [5c 4h] +Djkujuhfl: folds +stefan_bg_46: calls 300 +s0rrow: folds +MexicanGamb: raises 995 to 1295 +madrk: folds +pokergott68: folds +Georgy80: folds +123456789476: folds +stefan_bg_46: folds +Uncalled bet (995) returned to MexicanGamb +MexicanGamb collected 1370 from pot +MexicanGamb: doesn't show hand +*** SUMMARY *** +Total pot 1370 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb collected (1370) +Seat 3: madrk folded before Flop (didn't bet) +Seat 4: pokergott68 (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: 123456789476 (big blind) folded before Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop + + + +PokerStars Game #47657798709: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:09:02 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (13556 in chips) +Seat 2: MexicanGamb (7665 in chips) +Seat 3: madrk (3241 in chips) +Seat 4: pokergott68 (1520 in chips) +Seat 5: Georgy80 (9942 in chips) +Seat 6: 123456789476 (7941 in chips) +Seat 8: Djkujuhfl (23143 in chips) +Seat 9: stefan_bg_46 (6232 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +madrk: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +123456789476: posts small blind 200 +Djkujuhfl: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [Jd 9s] +stefan_bg_46: raises 400 to 800 +s0rrow: folds +MexicanGamb: folds +madrk: raises 2391 to 3191 and is all-in +pokergott68: folds +Georgy80: folds +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: calls 2391 +*** FLOP *** [4h 8d 2d] +madrk said, "nh" +*** TURN *** [4h 8d 2d] [Jc] +*** RIVER *** [4h 8d 2d Jc] [6s] +*** SHOW DOWN *** +stefan_bg_46: shows [Ks Kc] (a pair of Kings) +madrk: shows [Td Th] (a pair of Tens) +stefan_bg_46 collected 7382 from pot +stefan_bg_46 wins the $0.25 bounty for eliminating madrk +madrk finished the tournament in 15th place +*** SUMMARY *** +Total pot 7382 | Rake 0 +Board [4h 8d 2d Jc 6s] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 3: madrk showed [Td Th] and lost with a pair of Tens +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: 123456789476 (small blind) folded before Flop +Seat 8: Djkujuhfl (big blind) folded before Flop +Seat 9: stefan_bg_46 showed [Ks Kc] and won (7382) with a pair of Kings + + + +PokerStars Game #47657821857: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:09:36 ET +Table '297808375 8' 9-max Seat #6 is the button +Seat 1: s0rrow (13506 in chips) +Seat 2: MexicanGamb (7615 in chips) +Seat 4: pokergott68 (1470 in chips) +Seat 5: Georgy80 (9892 in chips) +Seat 6: 123456789476 (7691 in chips) +Seat 8: Djkujuhfl (22693 in chips) +Seat 9: stefan_bg_46 (10373 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +Djkujuhfl: posts small blind 200 +stefan_bg_46: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [2h 5d] +s0rrow: folds +MexicanGamb: folds +pokergott68: folds +Georgy80: folds +123456789476: folds +Djkujuhfl: calls 200 +stefan_bg_46: checks +*** FLOP *** [7d 3d 9s] +Djkujuhfl: checks +stefan_bg_46: checks +*** TURN *** [7d 3d 9s] [4d] +Djkujuhfl: bets 400 +stefan_bg_46: folds +Uncalled bet (400) returned to Djkujuhfl +Djkujuhfl collected 1150 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 1150 | Rake 0 +Board [7d 3d 9s 4d] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 (button) folded before Flop (didn't bet) +Seat 8: Djkujuhfl (small blind) collected (1150) +Seat 9: stefan_bg_46 (big blind) folded on the Turn + + + +PokerStars Game #47657856528: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:10:27 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (13456 in chips) +Seat 2: MexicanGamb (7565 in chips) +Seat 4: pokergott68 (1420 in chips) +Seat 5: Georgy80 (9842 in chips) +Seat 6: 123456789476 (7641 in chips) +Seat 8: Djkujuhfl (23393 in chips) +Seat 9: stefan_bg_46 (9923 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +stefan_bg_46: posts small blind 200 +s0rrow: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [As Jd] +MexicanGamb: folds +pokergott68: raises 970 to 1370 and is all-in +Georgy80: folds +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: calls 970 +*** FLOP *** [Td 2c Ks] +*** TURN *** [Td 2c Ks] [8c] +*** RIVER *** [Td 2c Ks 8c] [Th] +*** SHOW DOWN *** +s0rrow: shows [As Jd] (a pair of Tens) +pokergott68: shows [Ah Jh] (a pair of Tens) +s0rrow collected 1645 from pot +pokergott68 collected 1645 from pot +*** SUMMARY *** +Total pot 3290 | Rake 0 +Board [Td 2c Ks 8c Th] +Seat 1: s0rrow (big blind) showed [As Jd] and won (1645) with a pair of Tens +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: pokergott68 showed [Ah Jh] and won (1645) with a pair of Tens +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47657892885: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:11:20 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (13681 in chips) +Seat 2: MexicanGamb (7515 in chips) +Seat 4: pokergott68 (1645 in chips) +Seat 5: Georgy80 (9792 in chips) +Seat 6: 123456789476 (7591 in chips) +Seat 8: Djkujuhfl (23343 in chips) +Seat 9: stefan_bg_46 (9673 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +s0rrow: posts small blind 200 +MexicanGamb: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [4d Qc] +pokergott68: folds +Georgy80: calls 400 +123456789476: calls 400 +Djkujuhfl: folds +stefan_bg_46: raises 400 to 800 +s0rrow: folds +MexicanGamb: folds +Georgy80: calls 400 +123456789476: calls 400 +*** FLOP *** [4c 5h 8c] +Georgy80: checks +123456789476: bets 800 +stefan_bg_46: folds +Georgy80: calls 800 +*** TURN *** [4c 5h 8c] [Kd] +Georgy80: checks +123456789476: checks +*** RIVER *** [4c 5h 8c Kd] [3s] +Georgy80: checks +123456789476: checks +*** SHOW DOWN *** +Georgy80: shows [Jh Ad] (high card Ace) +123456789476: mucks hand +Georgy80 collected 4950 from pot +*** SUMMARY *** +Total pot 4950 | Rake 0 +Board [4c 5h 8c Kd 3s] +Seat 1: s0rrow (small blind) folded before Flop +Seat 2: MexicanGamb (big blind) folded before Flop +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 showed [Jh Ad] and won (4950) with high card Ace +Seat 6: 123456789476 mucked [6s Ac] +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded on the Flop + + + +PokerStars Game #47657924822: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:12:06 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (13431 in chips) +Seat 2: MexicanGamb (7065 in chips) +Seat 4: pokergott68 (1595 in chips) +Seat 5: Georgy80 (13092 in chips) +Seat 6: 123456789476 (5941 in chips) +Seat 8: Djkujuhfl (23293 in chips) +Seat 9: stefan_bg_46 (8823 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +MexicanGamb: posts small blind 200 +pokergott68: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [4d Js] +Georgy80: folds +123456789476: calls 400 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +pokergott68: checks +*** FLOP *** [As 7d 8d] +pokergott68: checks +123456789476: bets 400 +pokergott68: folds +Uncalled bet (400) returned to 123456789476 +123456789476 collected 1350 from pot +*** SUMMARY *** +Total pot 1350 | Rake 0 +Board [As 7d 8d] +Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 2: MexicanGamb (small blind) folded before Flop +Seat 4: pokergott68 (big blind) folded on the Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 collected (1350) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657949881: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:12:44 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (13381 in chips) +Seat 2: MexicanGamb (6815 in chips) +Seat 4: pokergott68 (1145 in chips) +Seat 5: Georgy80 (13042 in chips) +Seat 6: 123456789476 (6841 in chips) +Seat 8: Djkujuhfl (23243 in chips) +Seat 9: stefan_bg_46 (8773 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +pokergott68: posts small blind 200 +Georgy80: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [8h 9h] +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 800 to 1200 +MexicanGamb: folds +pokergott68: folds +Georgy80: folds +Uncalled bet (800) returned to s0rrow +s0rrow collected 1350 from pot +*** SUMMARY *** +Total pot 1350 | Rake 0 +Seat 1: s0rrow collected (1350) +Seat 2: MexicanGamb (button) folded before Flop (didn't bet) +Seat 4: pokergott68 (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47657963281: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:13:03 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (14281 in chips) +Seat 2: MexicanGamb (6765 in chips) +Seat 4: pokergott68 (895 in chips) +Seat 5: Georgy80 (12592 in chips) +Seat 6: 123456789476 (6791 in chips) +Seat 8: Djkujuhfl (23193 in chips) +Seat 9: stefan_bg_46 (8723 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +Georgy80: posts small blind 200 +123456789476: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [4d 3h] +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 800 to 1200 +MexicanGamb: folds +pokergott68: folds +Georgy80: folds +123456789476: calls 800 +*** FLOP *** [Ts 3d Ks] +123456789476: bets 5541 and is all-in +s0rrow: folds +Uncalled bet (5541) returned to 123456789476 +123456789476 collected 2950 from pot +*** SUMMARY *** +Total pot 2950 | Rake 0 +Board [Ts 3d Ks] +Seat 1: s0rrow folded on the Flop +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: pokergott68 (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: 123456789476 (big blind) collected (2950) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658001297: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:14:00 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (13031 in chips) +Seat 2: MexicanGamb (6715 in chips) +Seat 4: pokergott68 (845 in chips) +Seat 5: Georgy80 (12342 in chips) +Seat 6: 123456789476 (8491 in chips) +Seat 8: Djkujuhfl (23143 in chips) +Seat 9: stefan_bg_46 (8673 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +123456789476: posts small blind 200 +Djkujuhfl: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [7d Qh] +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +pokergott68: folds +Georgy80: folds +123456789476: folds +Uncalled bet (200) returned to Djkujuhfl +Djkujuhfl collected 750 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 750 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: 123456789476 (small blind) folded before Flop +Seat 8: Djkujuhfl (big blind) collected (750) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658026359: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:14:37 ET +Table '297808375 8' 9-max Seat #6 is the button +Seat 1: s0rrow (12981 in chips) +Seat 2: MexicanGamb (6665 in chips) +Seat 4: pokergott68 (795 in chips) +Seat 5: Georgy80 (12292 in chips) +Seat 6: 123456789476 (8241 in chips) +Seat 8: Djkujuhfl (23643 in chips) +Seat 9: stefan_bg_46 (8623 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +Djkujuhfl: posts small blind 200 +stefan_bg_46: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [Td 9c] +s0rrow: folds +MexicanGamb: folds +pokergott68: folds +Georgy80: folds +123456789476: raises 400 to 800 +Djkujuhfl: folds +stefan_bg_46: calls 400 +*** FLOP *** [9d 7s 7h] +stefan_bg_46: checks +123456789476: bets 800 +stefan_bg_46: folds +Uncalled bet (800) returned to 123456789476 +123456789476 collected 2150 from pot +*** SUMMARY *** +Total pot 2150 | Rake 0 +Board [9d 7s 7h] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 (button) collected (2150) +Seat 8: Djkujuhfl (small blind) folded before Flop +Seat 9: stefan_bg_46 (big blind) folded on the Flop + + + +PokerStars Game #47658054747: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:15:19 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (12931 in chips) +Seat 2: MexicanGamb (6615 in chips) +Seat 4: pokergott68 (745 in chips) +Seat 5: Georgy80 (12242 in chips) +Seat 6: 123456789476 (9541 in chips) +Seat 8: Djkujuhfl (23393 in chips) +Seat 9: stefan_bg_46 (7773 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +stefan_bg_46: posts small blind 200 +s0rrow: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [2h 8s] +MexicanGamb: folds +pokergott68: folds +Georgy80: folds +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: calls 200 +s0rrow: checks +*** FLOP *** [9d Jd Td] +stefan_bg_46: checks +s0rrow: bets 400 +stefan_bg_46: folds +Uncalled bet (400) returned to s0rrow +s0rrow collected 1150 from pot +*** SUMMARY *** +Total pot 1150 | Rake 0 +Board [9d Jd Td] +Seat 1: s0rrow (big blind) collected (1150) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded on the Flop + + + +PokerStars Game #47658082255: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:16:00 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (13631 in chips) +Seat 2: MexicanGamb (6565 in chips) +Seat 4: pokergott68 (695 in chips) +Seat 5: Georgy80 (12192 in chips) +Seat 6: 123456789476 (9491 in chips) +Seat 8: Djkujuhfl (23343 in chips) +Seat 9: stefan_bg_46 (7323 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +s0rrow: posts small blind 200 +MexicanGamb: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [3d As] +pokergott68: folds +Georgy80: folds +123456789476: calls 400 +Djkujuhfl: calls 400 +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: checks +*** FLOP *** [Qc 2d 6c] +MexicanGamb: checks +123456789476: bets 800 +Djkujuhfl: folds +MexicanGamb: folds +Uncalled bet (800) returned to 123456789476 +123456789476 collected 1750 from pot +*** SUMMARY *** +Total pot 1750 | Rake 0 +Board [Qc 2d 6c] +Seat 1: s0rrow (small blind) folded before Flop +Seat 2: MexicanGamb (big blind) folded on the Flop +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 collected (1750) +Seat 8: Djkujuhfl folded on the Flop +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47658105879: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:16:36 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (13381 in chips) +Seat 2: MexicanGamb (6115 in chips) +Seat 4: pokergott68 (645 in chips) +Seat 5: Georgy80 (12142 in chips) +Seat 6: 123456789476 (10791 in chips) +Seat 8: Djkujuhfl (22893 in chips) +Seat 9: stefan_bg_46 (7273 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +MexicanGamb: posts small blind 200 +pokergott68: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [Js 9c] +Georgy80: calls 400 +123456789476: raises 400 to 800 +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: folds +MexicanGamb: folds +pokergott68: folds +Georgy80: calls 400 +*** FLOP *** [Tc 7h 4h] +Georgy80: checks +123456789476: checks +*** TURN *** [Tc 7h 4h] [4s] +Georgy80: bets 1600 +123456789476: folds +Uncalled bet (1600) returned to Georgy80 +Georgy80 collected 2550 from pot +Georgy80: doesn't show hand +*** SUMMARY *** +Total pot 2550 | Rake 0 +Board [Tc 7h 4h 4s] +Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 2: MexicanGamb (small blind) folded before Flop +Seat 4: pokergott68 (big blind) folded before Flop +Seat 5: Georgy80 collected (2550) +Seat 6: 123456789476 folded on the Turn +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658174164: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIII (200/400) - 2010/08/03 13:18:17 ET +Table '297808375 8' 9-max Seat #2 is the button +Seat 1: s0rrow (13331 in chips) +Seat 2: MexicanGamb (5865 in chips) +Seat 4: pokergott68 (195 in chips) +Seat 5: Georgy80 (13842 in chips) +Seat 6: 123456789476 (9941 in chips) +Seat 8: Djkujuhfl (22843 in chips) +Seat 9: stefan_bg_46 (7223 in chips) +s0rrow: posts the ante 50 +MexicanGamb: posts the ante 50 +pokergott68: posts the ante 50 +Georgy80: posts the ante 50 +123456789476: posts the ante 50 +Djkujuhfl: posts the ante 50 +stefan_bg_46: posts the ante 50 +pokergott68: posts small blind 145 and is all-in +Georgy80: posts big blind 400 +*** HOLE CARDS *** +Dealt to s0rrow [4h 8c] +123456789476: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: calls 400 +MexicanGamb: folds +Georgy80: checks +*** FLOP *** [8h Jc Qd] +Georgy80: checks +s0rrow: checks +*** TURN *** [8h Jc Qd] [4d] +Georgy80: checks +s0rrow: bets 400 +Georgy80: folds +Uncalled bet (400) returned to s0rrow +*** RIVER *** [8h Jc Qd 4d] [9d] +*** SHOW DOWN *** +s0rrow: shows [4h 8c] (two pair, Eights and Fours) +s0rrow collected 510 from side pot +pokergott68: shows [5h Td] (a straight, Eight to Queen) +pokergott68 collected 785 from main pot +*** SUMMARY *** +Total pot 1295 Main pot 785. Side pot 510. | Rake 0 +Board [8h Jc Qd 4d 9d] +Seat 1: s0rrow showed [4h 8c] and won (510) with two pair, Eights and Fours +Seat 2: MexicanGamb (button) folded before Flop (didn't bet) +Seat 4: pokergott68 (small blind) showed [5h Td] and won (785) with a straight, Eight to Queen +Seat 5: Georgy80 (big blind) folded on the Turn +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658203143: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:19:00 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (13391 in chips) +Seat 2: MexicanGamb (5815 in chips) +Seat 4: pokergott68 (785 in chips) +Seat 5: Georgy80 (13392 in chips) +Seat 6: 123456789476 (9891 in chips) +Seat 8: Djkujuhfl (22793 in chips) +Seat 9: stefan_bg_46 (7173 in chips) +s0rrow: posts the ante 60 +MexicanGamb: posts the ante 60 +pokergott68: posts the ante 60 +Georgy80: posts the ante 60 +123456789476: posts the ante 60 +Djkujuhfl: posts the ante 60 +stefan_bg_46: posts the ante 60 +Georgy80: posts small blind 250 +123456789476: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 9d] +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 1000 to 1500 +MexicanGamb: folds +pokergott68: calls 725 and is all-in +Georgy80: folds +123456789476: folds +Uncalled bet (775) returned to s0rrow +*** FLOP *** [Ac 9s Jc] +*** TURN *** [Ac 9s Jc] [4c] +*** RIVER *** [Ac 9s Jc 4c] [Kh] +*** SHOW DOWN *** +s0rrow: shows [Qs 9d] (a pair of Nines) +pokergott68: shows [As 3s] (a pair of Aces) +pokergott68 collected 2620 from pot +*** SUMMARY *** +Total pot 2620 | Rake 0 +Board [Ac 9s Jc 4c Kh] +Seat 1: s0rrow showed [Qs 9d] and lost with a pair of Nines +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: pokergott68 (button) showed [As 3s] and won (2620) with a pair of Aces +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: 123456789476 (big blind) folded before Flop +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658224354: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:19:31 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (12606 in chips) +Seat 2: MexicanGamb (5755 in chips) +Seat 4: pokergott68 (2620 in chips) +Seat 5: Georgy80 (13082 in chips) +Seat 6: 123456789476 (9331 in chips) +Seat 8: Djkujuhfl (22733 in chips) +Seat 9: stefan_bg_46 (7113 in chips) +s0rrow: posts the ante 60 +MexicanGamb: posts the ante 60 +pokergott68: posts the ante 60 +Georgy80: posts the ante 60 +123456789476: posts the ante 60 +Djkujuhfl: posts the ante 60 +stefan_bg_46: posts the ante 60 +123456789476: posts small blind 250 +Djkujuhfl: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [5s Qc] +stefan_bg_46: raises 500 to 1000 +s0rrow: folds +MexicanGamb: folds +pokergott68: folds +Georgy80: folds +123456789476: calls 750 +Djkujuhfl: calls 500 +*** FLOP *** [7s Ks Js] +123456789476: bets 500 +Djkujuhfl: calls 500 +stefan_bg_46: raises 1500 to 2000 +123456789476: folds +Djkujuhfl: folds +Uncalled bet (1500) returned to stefan_bg_46 +stefan_bg_46 collected 4920 from pot +*** SUMMARY *** +Total pot 4920 | Rake 0 +Board [7s Ks Js] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: 123456789476 (small blind) folded on the Flop +Seat 8: Djkujuhfl (big blind) folded on the Flop +Seat 9: stefan_bg_46 collected (4920) + + + +PokerStars Game #47658274214: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:20:46 ET +Table '297808375 8' 9-max Seat #6 is the button +Seat 1: s0rrow (12546 in chips) +Seat 2: MexicanGamb (5695 in chips) +Seat 4: pokergott68 (2560 in chips) +Seat 5: Georgy80 (13022 in chips) +Seat 6: 123456789476 (7771 in chips) +Seat 8: Djkujuhfl (21173 in chips) +Seat 9: stefan_bg_46 (10473 in chips) +s0rrow: posts the ante 60 +MexicanGamb: posts the ante 60 +pokergott68: posts the ante 60 +Georgy80: posts the ante 60 +123456789476: posts the ante 60 +Djkujuhfl: posts the ante 60 +stefan_bg_46: posts the ante 60 +Djkujuhfl: posts small blind 250 +stefan_bg_46: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [2d 7h] +s0rrow: folds +MexicanGamb: folds +pokergott68: folds +Georgy80: calls 500 +123456789476: folds +Djkujuhfl: calls 250 +stefan_bg_46: checks +*** FLOP *** [Qc 9c 7d] +Djkujuhfl: checks +stefan_bg_46: checks +Georgy80: bets 800 +Djkujuhfl: folds +stefan_bg_46: folds +Uncalled bet (800) returned to Georgy80 +Georgy80 collected 1920 from pot +Georgy80: doesn't show hand +*** SUMMARY *** +Total pot 1920 | Rake 0 +Board [Qc 9c 7d] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: MexicanGamb folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 collected (1920) +Seat 6: 123456789476 (button) folded before Flop (didn't bet) +Seat 8: Djkujuhfl (small blind) folded on the Flop +Seat 9: stefan_bg_46 (big blind) folded on the Flop + + + +PokerStars Game #47658305074: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:21:31 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (12486 in chips) +Seat 2: MexicanGamb (5635 in chips) +Seat 4: pokergott68 (2500 in chips) +Seat 5: Georgy80 (14382 in chips) +Seat 6: 123456789476 (7711 in chips) +Seat 8: Djkujuhfl (20613 in chips) +Seat 9: stefan_bg_46 (9913 in chips) +s0rrow: posts the ante 60 +MexicanGamb: posts the ante 60 +pokergott68: posts the ante 60 +Georgy80: posts the ante 60 +123456789476: posts the ante 60 +Djkujuhfl: posts the ante 60 +stefan_bg_46: posts the ante 60 +stefan_bg_46: posts small blind 250 +s0rrow: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [5c 5s] +MexicanGamb: raises 1000 to 1500 +pokergott68: folds +Georgy80: folds +123456789476: folds +Djkujuhfl has timed out +Djkujuhfl: folds +Djkujuhfl is sitting out +stefan_bg_46: folds +Djkujuhfl has returned +s0rrow: raises 10926 to 12426 and is all-in +MexicanGamb: calls 4075 and is all-in +Uncalled bet (6851) returned to s0rrow +*** FLOP *** [Tc 5h 7d] +*** TURN *** [Tc 5h 7d] [As] +*** RIVER *** [Tc 5h 7d As] [6c] +*** SHOW DOWN *** +s0rrow: shows [5c 5s] (three of a kind, Fives) +MexicanGamb: shows [Qc Kc] (high card Ace) +s0rrow collected 11820 from pot +s0rrow wins the $0.25 bounty for eliminating MexicanGamb +MexicanGamb finished the tournament in 13th place +*** SUMMARY *** +Total pot 11820 | Rake 0 +Board [Tc 5h 7d As 6c] +Seat 1: s0rrow (big blind) showed [5c 5s] and won (11820) with three of a kind, Fives +Seat 2: MexicanGamb showed [Qc Kc] and lost with high card Ace +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47658350278: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:22:37 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (18671 in chips) +Seat 4: pokergott68 (2440 in chips) +Seat 5: Georgy80 (14322 in chips) +Seat 6: 123456789476 (7651 in chips) +Seat 8: Djkujuhfl (20553 in chips) +Seat 9: stefan_bg_46 (9603 in chips) +s0rrow: posts the ante 60 +pokergott68: posts the ante 60 +Georgy80: posts the ante 60 +123456789476: posts the ante 60 +Djkujuhfl: posts the ante 60 +stefan_bg_46: posts the ante 60 +s0rrow: posts small blind 250 +pokergott68: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 4s] +Georgy80: folds +123456789476: folds +Djkujuhfl: raises 1500 to 2000 +stefan_bg_46: folds +s0rrow: folds +pokergott68: folds +Uncalled bet (1500) returned to Djkujuhfl +Djkujuhfl collected 1610 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 1610 | Rake 0 +Seat 1: s0rrow (small blind) folded before Flop +Seat 4: pokergott68 (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl collected (1610) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47658362133: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:22:55 ET +Table '297808375 8' 9-max Seat #1 is the button +Seat 1: s0rrow (18361 in chips) +Seat 4: pokergott68 (1880 in chips) +Seat 5: Georgy80 (14262 in chips) +Seat 6: 123456789476 (7591 in chips) +Seat 8: Djkujuhfl (21603 in chips) +Seat 9: stefan_bg_46 (9543 in chips) +s0rrow: posts the ante 60 +pokergott68: posts the ante 60 +Georgy80: posts the ante 60 +123456789476: posts the ante 60 +Djkujuhfl: posts the ante 60 +stefan_bg_46: posts the ante 60 +pokergott68: posts small blind 250 +Georgy80: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [6s 4s] +123456789476: folds +Djkujuhfl: raises 1000 to 1500 +stefan_bg_46: folds +s0rrow: folds +pokergott68: folds +Georgy80: folds +Uncalled bet (1000) returned to Djkujuhfl +Djkujuhfl collected 1610 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 1610 | Rake 0 +Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 4: pokergott68 (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 6: 123456789476 folded before Flop (didn't bet) +Seat 8: Djkujuhfl collected (1610) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658379474: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:23:20 ET +Table '297808375 8' 9-max Seat #4 is the button +Seat 1: s0rrow (18301 in chips) +Seat 4: pokergott68 (1570 in chips) +Seat 5: Georgy80 (13702 in chips) +Seat 6: 123456789476 (7531 in chips) +Seat 8: Djkujuhfl (22653 in chips) +Seat 9: stefan_bg_46 (9483 in chips) +s0rrow: posts the ante 60 +pokergott68: posts the ante 60 +Georgy80: posts the ante 60 +123456789476: posts the ante 60 +Djkujuhfl: posts the ante 60 +stefan_bg_46: posts the ante 60 +Georgy80: posts small blind 250 +123456789476: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [Ah Kc] +Djkujuhfl: raises 1000 to 1500 +stefan_bg_46: folds +s0rrow: raises 2000 to 3500 +pokergott68: folds +Georgy80: folds +123456789476: folds +Djkujuhfl: calls 2000 +*** FLOP *** [Th Ad Qh] +Djkujuhfl: bets 4000 +s0rrow: raises 10741 to 14741 and is all-in +Djkujuhfl: folds +Uncalled bet (10741) returned to s0rrow +s0rrow collected 16110 from pot +*** SUMMARY *** +Total pot 16110 | Rake 0 +Board [Th Ad Qh] +Seat 1: s0rrow collected (16110) +Seat 4: pokergott68 (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: 123456789476 (big blind) folded before Flop +Seat 8: Djkujuhfl folded on the Flop +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658410311: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:24:06 ET +Table '297808375 8' 9-max Seat #5 is the button +Seat 1: s0rrow (26851 in chips) +Seat 4: pokergott68 (1510 in chips) +Seat 5: Georgy80 (13392 in chips) +Seat 6: 123456789476 (6971 in chips) +Seat 8: Djkujuhfl (15093 in chips) +Seat 9: stefan_bg_46 (9423 in chips) +s0rrow: posts the ante 60 +pokergott68: posts the ante 60 +Georgy80: posts the ante 60 +123456789476: posts the ante 60 +Djkujuhfl: posts the ante 60 +stefan_bg_46: posts the ante 60 +123456789476: posts small blind 250 +Djkujuhfl: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [3d 6s] +stefan_bg_46: folds +s0rrow: folds +pokergott68: folds +Georgy80: folds +123456789476: raises 500 to 1000 +Djkujuhfl: raises 14033 to 15033 and is all-in +123456789476: calls 5911 and is all-in +Uncalled bet (8122) returned to Djkujuhfl +*** FLOP *** [Kd Ts 3s] +*** TURN *** [Kd Ts 3s] [9c] +*** RIVER *** [Kd Ts 3s 9c] [8d] +*** SHOW DOWN *** +123456789476: shows [Qc 8c] (a pair of Eights) +Djkujuhfl: shows [Kc Ac] (a pair of Kings) +Djkujuhfl collected 14182 from pot +Djkujuhfl wins the $0.25 bounty for eliminating 123456789476 +123456789476 finished the tournament in 11th place and received $2.20. +*** SUMMARY *** +Total pot 14182 | Rake 0 +Board [Kd Ts 3s 9c 8d] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: 123456789476 (small blind) showed [Qc 8c] and lost with a pair of Eights +Seat 8: Djkujuhfl (big blind) showed [Kc Ac] and won (14182) with a pair of Kings +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658430135: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:24:35 ET +Table '297808375 8' 9-max Seat #8 is the button +Seat 1: s0rrow (26791 in chips) +Seat 4: pokergott68 (1450 in chips) +Seat 5: Georgy80 (13332 in chips) +Seat 8: Djkujuhfl (22304 in chips) +Seat 9: stefan_bg_46 (9363 in chips) +s0rrow: posts the ante 60 +pokergott68: posts the ante 60 +Georgy80: posts the ante 60 +Djkujuhfl: posts the ante 60 +stefan_bg_46: posts the ante 60 +stefan_bg_46: posts small blind 250 +s0rrow: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [4c 3c] +pokergott68: folds +Georgy80: folds +Djkujuhfl: raises 1000 to 1500 +stefan_bg_46: calls 1250 +s0rrow: calls 1000 +*** FLOP *** [Ac 7c 9s] +stefan_bg_46: checks +s0rrow: checks +Djkujuhfl: bets 4000 +stefan_bg_46: folds +s0rrow: calls 4000 +*** TURN *** [Ac 7c 9s] [9h] +s0rrow: checks +Djkujuhfl: checks +*** RIVER *** [Ac 7c 9s 9h] [5c] +s0rrow: bets 7500 +Djkujuhfl: calls 7500 +*** SHOW DOWN *** +s0rrow: shows [4c 3c] (a flush, Ace high) +Djkujuhfl: mucks hand +s0rrow collected 27800 from pot +*** SUMMARY *** +Total pot 27800 | Rake 0 +Board [Ac 7c 9s 9h 5c] +Seat 1: s0rrow (big blind) showed [4c 3c] and won (27800) with a flush, Ace high +Seat 4: pokergott68 folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 8: Djkujuhfl (button) mucked [Kd Ah] +Seat 9: stefan_bg_46 (small blind) folded on the Flop + + + +PokerStars Game #47658474121: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:25:40 ET +Table '297808375 8' 9-max Seat #9 is the button +Seat 1: s0rrow (41531 in chips) +Seat 4: pokergott68 (1390 in chips) +Seat 5: Georgy80 (13272 in chips) +Seat 8: Djkujuhfl (9244 in chips) +Seat 9: stefan_bg_46 (7803 in chips) +s0rrow: posts the ante 60 +pokergott68: posts the ante 60 +Georgy80: posts the ante 60 +Djkujuhfl: posts the ante 60 +stefan_bg_46: posts the ante 60 +s0rrow: posts small blind 250 +pokergott68: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [8h Kd] +Georgy80: folds +Djkujuhfl: folds +stefan_bg_46: folds +s0rrow: raises 1000 to 1500 +pokergott68: calls 830 and is all-in +Uncalled bet (170) returned to s0rrow +*** FLOP *** [5c 6h 8s] +*** TURN *** [5c 6h 8s] [2h] +*** RIVER *** [5c 6h 8s 2h] [5d] +*** SHOW DOWN *** +s0rrow: shows [8h Kd] (two pair, Eights and Fives) +pokergott68: shows [As 9h] (a pair of Fives) +s0rrow collected 2960 from pot +*** SUMMARY *** +Total pot 2960 | Rake 0 +Board [5c 6h 8s 2h 5d] +Seat 1: s0rrow (small blind) showed [8h Kd] and won (2960) with two pair, Eights and Fives +Seat 4: pokergott68 (big blind) showed [As 9h] and lost with a pair of Fives +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 8: Djkujuhfl folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47658505979: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:26:27 ET +Table '297808375 7' 9-max Seat #4 is the button +Seat 1: s0rrow (43101 in chips) +Seat 2: darsOK (48112 in chips) +Seat 3: sptsfan56 (17456 in chips) +Seat 4: MoIsonEx (19516 in chips) +Seat 5: Georgy80 (13212 in chips) out of hand (moved from another table into small blind) +Seat 6: seric1975 (6860 in chips) +Seat 7: Djkujuhfl (9184 in chips) +Seat 8: AALuckyBucks (14816 in chips) +Seat 9: stefan_bg_46 (7743 in chips) +s0rrow: posts the ante 60 +darsOK: posts the ante 60 +sptsfan56: posts the ante 60 +MoIsonEx: posts the ante 60 +seric1975: posts the ante 60 +Djkujuhfl: posts the ante 60 +AALuckyBucks: posts the ante 60 +stefan_bg_46: posts the ante 60 +seric1975: posts small blind 250 +Djkujuhfl: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [Jc 7s] +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: folds +darsOK: calls 500 +sptsfan56: folds +MoIsonEx: folds +seric1975: calls 250 +Djkujuhfl: checks +*** FLOP *** [Jh 9c 2s] +seric1975: checks +Djkujuhfl: bets 1000 +darsOK: folds +seric1975: folds +Uncalled bet (1000) returned to Djkujuhfl +Djkujuhfl collected 1980 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 1980 | Rake 0 +Board [Jh 9c 2s] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK folded on the Flop +Seat 3: sptsfan56 folded before Flop (didn't bet) +Seat 4: MoIsonEx (button) folded before Flop (didn't bet) +Seat 6: seric1975 (small blind) folded on the Flop +Seat 7: Djkujuhfl (big blind) collected (1980) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658536512: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:27:12 ET +Table '297808375 7' 9-max Seat #6 is the button +Seat 1: s0rrow (43041 in chips) +Seat 2: darsOK (47552 in chips) +Seat 3: sptsfan56 (17396 in chips) +Seat 4: MoIsonEx (19456 in chips) +Seat 5: Georgy80 (13212 in chips) +Seat 6: seric1975 (6300 in chips) +Seat 7: Djkujuhfl (10604 in chips) +Seat 8: AALuckyBucks (14756 in chips) +Seat 9: stefan_bg_46 (7683 in chips) +s0rrow: posts the ante 60 +darsOK: posts the ante 60 +sptsfan56: posts the ante 60 +MoIsonEx: posts the ante 60 +Georgy80: posts the ante 60 +seric1975: posts the ante 60 +Djkujuhfl: posts the ante 60 +AALuckyBucks: posts the ante 60 +stefan_bg_46: posts the ante 60 +Djkujuhfl: posts small blind 250 +AALuckyBucks: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 9c] +stefan_bg_46: folds +s0rrow: folds +darsOK: raises 3000 to 3500 +sptsfan56: folds +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Djkujuhfl: folds +AALuckyBucks: folds +Uncalled bet (3000) returned to darsOK +darsOK collected 1790 from pot +darsOK: doesn't show hand +*** SUMMARY *** +Total pot 1790 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK collected (1790) +Seat 3: sptsfan56 folded before Flop (didn't bet) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 (button) folded before Flop (didn't bet) +Seat 7: Djkujuhfl (small blind) folded before Flop +Seat 8: AALuckyBucks (big blind) folded before Flop +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658557149: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:27:42 ET +Table '297808375 7' 9-max Seat #7 is the button +Seat 1: s0rrow (42981 in chips) +Seat 2: darsOK (48782 in chips) +Seat 3: sptsfan56 (17336 in chips) +Seat 4: MoIsonEx (19396 in chips) +Seat 5: Georgy80 (13152 in chips) +Seat 6: seric1975 (6240 in chips) +Seat 7: Djkujuhfl (10294 in chips) +Seat 8: AALuckyBucks (14196 in chips) +Seat 9: stefan_bg_46 (7623 in chips) +s0rrow: posts the ante 60 +darsOK: posts the ante 60 +sptsfan56: posts the ante 60 +MoIsonEx: posts the ante 60 +Georgy80: posts the ante 60 +seric1975: posts the ante 60 +Djkujuhfl: posts the ante 60 +AALuckyBucks: posts the ante 60 +stefan_bg_46: posts the ante 60 +AALuckyBucks: posts small blind 250 +stefan_bg_46: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [9h 8d] +s0rrow: folds +darsOK: raises 500 to 1000 +sptsfan56: calls 1000 +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Djkujuhfl: folds +AALuckyBucks: folds +stefan_bg_46: folds +*** FLOP *** [5d Ks Qs] +darsOK: checks +sptsfan56: bets 1500 +darsOK: calls 1500 +*** TURN *** [5d Ks Qs] [Ac] +darsOK: checks +sptsfan56: bets 3000 +darsOK: calls 3000 +*** RIVER *** [5d Ks Qs Ac] [4c] +darsOK: checks +sptsfan56: bets 6000 +darsOK: calls 6000 +*** SHOW DOWN *** +sptsfan56: shows [5h Kh] (two pair, Kings and Fives) +darsOK: shows [Th Ad] (a pair of Aces) +sptsfan56 collected 24290 from pot +*** SUMMARY *** +Total pot 24290 | Rake 0 +Board [5d Ks Qs Ac 4c] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK showed [Th Ad] and lost with a pair of Aces +Seat 3: sptsfan56 showed [5h Kh] and won (24290) with two pair, Kings and Fives +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 7: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 8: AALuckyBucks (small blind) folded before Flop +Seat 9: stefan_bg_46 (big blind) folded before Flop + + + +PokerStars Game #47658591764: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XIV (250/500) - 2010/08/03 13:28:33 ET +Table '297808375 7' 9-max Seat #8 is the button +Seat 1: s0rrow (42921 in chips) +Seat 2: darsOK (37222 in chips) +Seat 3: sptsfan56 (30066 in chips) +Seat 4: MoIsonEx (19336 in chips) +Seat 5: Georgy80 (13092 in chips) +Seat 6: seric1975 (6180 in chips) +Seat 7: Djkujuhfl (10234 in chips) +Seat 8: AALuckyBucks (13886 in chips) +Seat 9: stefan_bg_46 (7063 in chips) +s0rrow: posts the ante 60 +darsOK: posts the ante 60 +sptsfan56: posts the ante 60 +MoIsonEx: posts the ante 60 +Georgy80: posts the ante 60 +seric1975: posts the ante 60 +Djkujuhfl: posts the ante 60 +AALuckyBucks: posts the ante 60 +stefan_bg_46: posts the ante 60 +stefan_bg_46: posts small blind 250 +s0rrow: posts big blind 500 +*** HOLE CARDS *** +Dealt to s0rrow [Td Ac] +darsOK: calls 500 +sptsfan56: folds +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Djkujuhfl: folds +AALuckyBucks: folds +stefan_bg_46: raises 500 to 1000 +s0rrow: calls 500 +darsOK: calls 500 +*** FLOP *** [3c 3h 9h] +stefan_bg_46: checks +s0rrow: checks +darsOK: bets 4500 +stefan_bg_46: folds +s0rrow: folds +Uncalled bet (4500) returned to darsOK +darsOK collected 3540 from pot +darsOK: doesn't show hand +*** SUMMARY *** +Total pot 3540 | Rake 0 +Board [3c 3h 9h] +Seat 1: s0rrow (big blind) folded on the Flop +Seat 2: darsOK collected (3540) +Seat 3: sptsfan56 folded before Flop (didn't bet) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 7: Djkujuhfl folded before Flop (didn't bet) +Seat 8: AALuckyBucks (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded on the Flop + + + +PokerStars Game #47658622167: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:29:18 ET +Table '297808375 7' 9-max Seat #9 is the button +Seat 1: s0rrow (41861 in chips) +Seat 2: darsOK (39702 in chips) +Seat 3: sptsfan56 (30006 in chips) +Seat 4: MoIsonEx (19276 in chips) +Seat 5: Georgy80 (13032 in chips) +Seat 6: seric1975 (6120 in chips) +Seat 7: Djkujuhfl (10174 in chips) +Seat 8: AALuckyBucks (13826 in chips) +Seat 9: stefan_bg_46 (6003 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +sptsfan56: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +s0rrow: posts small blind 300 +darsOK: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [6d 6s] +sptsfan56: folds +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Djkujuhfl: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: calls 300 +darsOK: checks +*** FLOP *** [9c 2h 4d] +s0rrow: checks +darsOK: bets 600 +s0rrow: calls 600 +*** TURN *** [9c 2h 4d] [7h] +s0rrow: checks +darsOK: bets 600 +s0rrow: calls 600 +*** RIVER *** [9c 2h 4d 7h] [Qs] +s0rrow: checks +darsOK: checks +*** SHOW DOWN *** +s0rrow: shows [6d 6s] (a pair of Sixes) +darsOK: mucks hand +s0rrow collected 4230 from pot +*** SUMMARY *** +Total pot 4230 | Rake 0 +Board [9c 2h 4d 7h Qs] +Seat 1: s0rrow (small blind) showed [6d 6s] and won (4230) with a pair of Sixes +Seat 2: darsOK (big blind) mucked [8c 2c] +Seat 3: sptsfan56 folded before Flop (didn't bet) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 7: Djkujuhfl folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47658653603: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:30:03 ET +Table '297808375 7' 9-max Seat #1 is the button +Seat 1: s0rrow (44221 in chips) +Seat 2: darsOK (37832 in chips) +Seat 3: sptsfan56 (29936 in chips) +Seat 4: MoIsonEx (19206 in chips) +Seat 5: Georgy80 (12962 in chips) +Seat 6: seric1975 (6050 in chips) +Seat 7: Djkujuhfl (10104 in chips) +Seat 8: AALuckyBucks (13756 in chips) +Seat 9: stefan_bg_46 (5933 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +sptsfan56: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +darsOK: posts small blind 300 +sptsfan56: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Ad 4s] +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Djkujuhfl: raises 1399 to 1999 +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: folds +darsOK: folds +sptsfan56: folds +Uncalled bet (1399) returned to Djkujuhfl +Djkujuhfl collected 2130 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 2130 | Rake 0 +Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 2: darsOK (small blind) folded before Flop +Seat 3: sptsfan56 (big blind) folded before Flop +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 7: Djkujuhfl collected (2130) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658674375: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:30:33 ET +Table '297808375 7' 9-max Seat #2 is the button +Seat 1: s0rrow (44151 in chips) +Seat 2: darsOK (37462 in chips) +Seat 3: sptsfan56 (29266 in chips) +Seat 4: MoIsonEx (19136 in chips) +Seat 5: Georgy80 (12892 in chips) +Seat 6: seric1975 (5980 in chips) +Seat 7: Djkujuhfl (11564 in chips) +Seat 8: AALuckyBucks (13686 in chips) +Seat 9: stefan_bg_46 (5863 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +sptsfan56: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +sptsfan56: posts small blind 300 +MoIsonEx: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Ah 8d] +Georgy80: folds +seric1975: folds +Djkujuhfl: folds +AALuckyBucks: folds +stefan_bg_46: raises 600 to 1200 +s0rrow: folds +darsOK: folds +sptsfan56: folds +MoIsonEx: folds +Uncalled bet (600) returned to stefan_bg_46 +stefan_bg_46 collected 2130 from pot +*** SUMMARY *** +Total pot 2130 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK (button) folded before Flop (didn't bet) +Seat 3: sptsfan56 (small blind) folded before Flop +Seat 4: MoIsonEx (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 7: Djkujuhfl folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 collected (2130) + + + +PokerStars Game #47658686418: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:30:50 ET +Table '297808375 7' 9-max Seat #3 is the button +Seat 1: s0rrow (44081 in chips) +Seat 2: darsOK (37392 in chips) +Seat 3: sptsfan56 (28896 in chips) +Seat 4: MoIsonEx (18466 in chips) +Seat 5: Georgy80 (12822 in chips) +Seat 6: seric1975 (5910 in chips) +Seat 7: Djkujuhfl (11494 in chips) +Seat 8: AALuckyBucks (13616 in chips) +Seat 9: stefan_bg_46 (7323 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +sptsfan56: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +MoIsonEx: posts small blind 300 +Georgy80: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [8d 9h] +seric1975: folds +Djkujuhfl: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: folds +darsOK: folds +sptsfan56: folds +MoIsonEx: folds +Uncalled bet (300) returned to Georgy80 +Georgy80 collected 1230 from pot +Georgy80: doesn't show hand +*** SUMMARY *** +Total pot 1230 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK folded before Flop (didn't bet) +Seat 3: sptsfan56 (button) folded before Flop (didn't bet) +Seat 4: MoIsonEx (small blind) folded before Flop +Seat 5: Georgy80 (big blind) collected (1230) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 7: Djkujuhfl folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658701573: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:31:13 ET +Table '297808375 7' 9-max Seat #4 is the button +Seat 1: s0rrow (44011 in chips) +Seat 2: darsOK (37322 in chips) +Seat 3: sptsfan56 (28826 in chips) +Seat 4: MoIsonEx (18096 in chips) +Seat 5: Georgy80 (13682 in chips) +Seat 6: seric1975 (5840 in chips) +Seat 7: Djkujuhfl (11424 in chips) +Seat 8: AALuckyBucks (13546 in chips) +Seat 9: stefan_bg_46 (7253 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +sptsfan56: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +Georgy80: posts small blind 300 +seric1975: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [3c 4c] +Djkujuhfl: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: folds +darsOK: folds +sptsfan56: raises 1800 to 2400 +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Uncalled bet (1800) returned to sptsfan56 +sptsfan56 collected 2130 from pot +sptsfan56: doesn't show hand +*** SUMMARY *** +Total pot 2130 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK folded before Flop (didn't bet) +Seat 3: sptsfan56 collected (2130) +Seat 4: MoIsonEx (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: seric1975 (big blind) folded before Flop +Seat 7: Djkujuhfl folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658722448: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:31:42 ET +Table '297808375 7' 9-max Seat #5 is the button +Seat 1: s0rrow (43941 in chips) +Seat 2: darsOK (37252 in chips) +Seat 3: sptsfan56 (30286 in chips) +Seat 4: MoIsonEx (18026 in chips) +Seat 5: Georgy80 (13312 in chips) +Seat 6: seric1975 (5170 in chips) +Seat 7: Djkujuhfl (11354 in chips) +Seat 8: AALuckyBucks (13476 in chips) +Seat 9: stefan_bg_46 (7183 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +sptsfan56: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +seric1975: posts small blind 300 +Djkujuhfl: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Ah Qc] +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: raises 1200 to 1800 +darsOK: folds +sptsfan56: calls 1800 +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Djkujuhfl: folds +*** FLOP *** [Js Kh Ts] +s0rrow: checks +sptsfan56: bets 3000 +s0rrow: raises 5400 to 8400 +sptsfan56: raises 20016 to 28416 and is all-in +s0rrow: calls 20016 +*** TURN *** [Js Kh Ts] [2d] +*** RIVER *** [Js Kh Ts 2d] [3h] +*** SHOW DOWN *** +s0rrow: shows [Ah Qc] (a straight, Ten to Ace) +sptsfan56: shows [Tc Jc] (two pair, Jacks and Tens) +s0rrow collected 61962 from pot +s0rrow wins the $0.25 bounty for eliminating sptsfan56 +sptsfan56 finished the tournament in 9th place and received $2.70. +*** SUMMARY *** +Total pot 61962 | Rake 0 +Board [Js Kh Ts 2d 3h] +Seat 1: s0rrow showed [Ah Qc] and won (61962) with a straight, Ten to Ace +Seat 2: darsOK folded before Flop (didn't bet) +Seat 3: sptsfan56 showed [Tc Jc] and lost with two pair, Jacks and Tens +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: seric1975 (small blind) folded before Flop +Seat 7: Djkujuhfl (big blind) folded before Flop +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658761782: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:32:39 ET +Table '297808375 7' 9-max Seat #6 is the button +Seat 1: s0rrow (75617 in chips) +Seat 2: darsOK (37182 in chips) +Seat 4: MoIsonEx (17956 in chips) +Seat 5: Georgy80 (13242 in chips) +Seat 6: seric1975 (4800 in chips) +Seat 7: Djkujuhfl (10684 in chips) +Seat 8: AALuckyBucks (13406 in chips) +Seat 9: stefan_bg_46 (7113 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +Djkujuhfl: posts small blind 300 +AALuckyBucks: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [7s 4d] +stefan_bg_46: folds +s0rrow: folds +darsOK said, "nice" +darsOK: folds +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Djkujuhfl: raises 950 to 1550 +AALuckyBucks: folds +Uncalled bet (950) returned to Djkujuhfl +Djkujuhfl collected 1760 from pot +Djkujuhfl: doesn't show hand +*** SUMMARY *** +Total pot 1760 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 (button) folded before Flop (didn't bet) +Seat 7: Djkujuhfl (small blind) collected (1760) +Seat 8: AALuckyBucks (big blind) folded before Flop +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658780867: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:33:07 ET +Table '297808375 7' 9-max Seat #7 is the button +Seat 1: s0rrow (75547 in chips) +Seat 2: darsOK (37112 in chips) +Seat 4: MoIsonEx (17886 in chips) +Seat 5: Georgy80 (13172 in chips) +Seat 6: seric1975 (4730 in chips) +Seat 7: Djkujuhfl (11774 in chips) +Seat 8: AALuckyBucks (12736 in chips) +Seat 9: stefan_bg_46 (7043 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +AALuckyBucks: posts small blind 300 +stefan_bg_46: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Qh 6c] +s0rrow: folds +darsOK: raises 600 to 1200 +MoIsonEx: raises 2400 to 3600 +Georgy80: folds +seric1975: folds +Djkujuhfl: folds +AALuckyBucks: folds +stefan_bg_46: folds +darsOK: calls 2400 +*** FLOP *** [5d Jd 4c] +darsOK: checks +MoIsonEx: bets 14216 and is all-in +darsOK: folds +Uncalled bet (14216) returned to MoIsonEx +MoIsonEx collected 8660 from pot +MoIsonEx: doesn't show hand +*** SUMMARY *** +Total pot 8660 | Rake 0 +Board [5d Jd 4c] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK folded on the Flop +Seat 4: MoIsonEx collected (8660) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 7: Djkujuhfl (button) folded before Flop (didn't bet) +Seat 8: AALuckyBucks (small blind) folded before Flop +Seat 9: stefan_bg_46 (big blind) folded before Flop + + + +PokerStars Game #47658806411: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:33:44 ET +Table '297808375 7' 9-max Seat #8 is the button +Seat 1: s0rrow (75477 in chips) +Seat 2: darsOK (33442 in chips) +Seat 4: MoIsonEx (22876 in chips) +Seat 5: Georgy80 (13102 in chips) +Seat 6: seric1975 (4660 in chips) +Seat 7: Djkujuhfl (11704 in chips) +Seat 8: AALuckyBucks (12366 in chips) +Seat 9: stefan_bg_46 (6373 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +stefan_bg_46: posts small blind 300 +s0rrow: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [2s 3h] +darsOK: raises 1200 to 1800 +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Djkujuhfl: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: folds +Uncalled bet (1200) returned to darsOK +darsOK collected 2060 from pot +*** SUMMARY *** +Total pot 2060 | Rake 0 +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: darsOK collected (2060) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 7: Djkujuhfl folded before Flop (didn't bet) +Seat 8: AALuckyBucks (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47658817059: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:34:00 ET +Table '297808375 7' 9-max Seat #9 is the button +Seat 1: s0rrow (74807 in chips) +Seat 2: darsOK (34832 in chips) +Seat 4: MoIsonEx (22806 in chips) +Seat 5: Georgy80 (13032 in chips) +Seat 6: seric1975 (4590 in chips) +Seat 7: Djkujuhfl (11634 in chips) +Seat 8: AALuckyBucks (12296 in chips) +Seat 9: stefan_bg_46 (6003 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +s0rrow: posts small blind 300 +darsOK: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [4c Kd] +MoIsonEx: folds +Georgy80: folds +seric1975: calls 600 +Djkujuhfl: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: folds +darsOK: raises 3600 to 4200 +seric1975: folds +Uncalled bet (3600) returned to darsOK +darsOK collected 2060 from pot +*** SUMMARY *** +Total pot 2060 | Rake 0 +Seat 1: s0rrow (small blind) folded before Flop +Seat 2: darsOK (big blind) collected (2060) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop +Seat 7: Djkujuhfl folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47658835690: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:34:27 ET +Table '297808375 7' 9-max Seat #1 is the button +Seat 1: s0rrow (74437 in chips) +Seat 2: darsOK (36222 in chips) +Seat 4: MoIsonEx (22736 in chips) +Seat 5: Georgy80 (12962 in chips) +Seat 6: seric1975 (3920 in chips) +Seat 7: Djkujuhfl (11564 in chips) +Seat 8: AALuckyBucks (12226 in chips) +Seat 9: stefan_bg_46 (5933 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +darsOK: posts small blind 300 +MoIsonEx: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [8d 6s] +Georgy80: folds +seric1975: folds +Djkujuhfl: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: folds +darsOK: calls 300 +MoIsonEx: checks +*** FLOP *** [4c Ts 9c] +darsOK: bets 600 +MoIsonEx: folds +Uncalled bet (600) returned to darsOK +darsOK collected 1760 from pot +*** SUMMARY *** +Total pot 1760 | Rake 0 +Board [4c Ts 9c] +Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 2: darsOK (small blind) collected (1760) +Seat 4: MoIsonEx (big blind) folded on the Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 7: Djkujuhfl folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658854489: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:34:55 ET +Table '297808375 7' 9-max Seat #2 is the button +Seat 1: s0rrow (74367 in chips) +Seat 2: darsOK (37312 in chips) +Seat 4: MoIsonEx (22066 in chips) +Seat 5: Georgy80 (12892 in chips) +Seat 6: seric1975 (3850 in chips) +Seat 7: Djkujuhfl (11494 in chips) +Seat 8: AALuckyBucks (12156 in chips) +Seat 9: stefan_bg_46 (5863 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +MoIsonEx: posts small blind 300 +Georgy80: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [8d Ac] +seric1975: folds +Djkujuhfl: folds +AALuckyBucks: raises 11486 to 12086 and is all-in +stefan_bg_46: folds +s0rrow: folds +darsOK: folds +MoIsonEx: folds +Georgy80: folds +Uncalled bet (11486) returned to AALuckyBucks +AALuckyBucks collected 2060 from pot +AALuckyBucks: doesn't show hand +*** SUMMARY *** +Total pot 2060 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK (button) folded before Flop (didn't bet) +Seat 4: MoIsonEx (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 7: Djkujuhfl folded before Flop (didn't bet) +Seat 8: AALuckyBucks collected (2060) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658875388: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:35:19 ET +Table '297808375 7' 9-max Seat #4 is the button +Seat 1: s0rrow (74297 in chips) +Seat 2: darsOK (37242 in chips) +Seat 4: MoIsonEx (21696 in chips) +Seat 5: Georgy80 (12222 in chips) +Seat 6: seric1975 (3780 in chips) +Seat 7: Djkujuhfl (11424 in chips) +Seat 8: AALuckyBucks (13546 in chips) +Seat 9: stefan_bg_46 (5793 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +Georgy80: posts small blind 300 +seric1975: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [2c Th] +Djkujuhfl: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: folds +darsOK: calls 600 +MoIsonEx: folds +Georgy80: folds +seric1975: checks +*** FLOP *** [Js 9c Td] +seric1975: checks +darsOK: checks +*** TURN *** [Js 9c Td] [Ah] +seric1975: checks +darsOK: checks +*** RIVER *** [Js 9c Td Ah] [Qs] +seric1975: checks +darsOK: bets 1200 +seric1975: folds +Uncalled bet (1200) returned to darsOK +darsOK collected 2060 from pot +*** SUMMARY *** +Total pot 2060 | Rake 0 +Board [Js 9c Td Ah Qs] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK collected (2060) +Seat 4: MoIsonEx (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: seric1975 (big blind) folded on the River +Seat 7: Djkujuhfl folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47658925172: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:36:30 ET +Table '297808375 7' 9-max Seat #5 is the button +Seat 1: s0rrow (74227 in chips) +Seat 2: darsOK (38632 in chips) +Seat 4: MoIsonEx (21626 in chips) +Seat 5: Georgy80 (11852 in chips) +Seat 6: seric1975 (3110 in chips) +Seat 7: Djkujuhfl (11354 in chips) +Seat 8: AALuckyBucks (13476 in chips) +Seat 9: stefan_bg_46 (5723 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +Djkujuhfl: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +seric1975: posts small blind 300 +Djkujuhfl: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 3c] +AALuckyBucks: folds +stefan_bg_46: calls 600 +s0rrow: folds +darsOK: raises 600 to 1200 +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Djkujuhfl: raises 1850 to 3050 +stefan_bg_46: folds +darsOK: calls 1850 +*** FLOP *** [Jc 3h Kh] +Djkujuhfl: checks +darsOK: bets 7200 +Djkujuhfl: raises 1034 to 8234 and is all-in +darsOK: calls 1034 +*** TURN *** [Jc 3h Kh] [4c] +*** RIVER *** [Jc 3h Kh 4c] [4d] +*** SHOW DOWN *** +Djkujuhfl: shows [Qc Qd] (two pair, Queens and Fours) +darsOK: shows [Qh Kd] (two pair, Kings and Fours) +darsOK collected 24028 from pot +darsOK wins the $0.25 bounty for eliminating Djkujuhfl +Djkujuhfl finished the tournament in 8th place and received $3.24. +*** SUMMARY *** +Total pot 24028 | Rake 0 +Board [Jc 3h Kh 4c 4d] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK showed [Qh Kd] and won (24028) with two pair, Kings and Fours +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: seric1975 (small blind) folded before Flop +Seat 7: Djkujuhfl (big blind) showed [Qc Qd] and lost with two pair, Queens and Fours +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop + + + +PokerStars Game #47658985166: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:37:51 ET +Table '297808375 7' 9-max Seat #6 is the button +Seat 1: s0rrow (74157 in chips) +Seat 2: darsOK (51306 in chips) +Seat 4: MoIsonEx (21556 in chips) +Seat 5: Georgy80 (11782 in chips) +Seat 6: seric1975 (2740 in chips) +Seat 8: AALuckyBucks (13406 in chips) +Seat 9: stefan_bg_46 (5053 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +AALuckyBucks: posts small blind 300 +stefan_bg_46: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [4s 4c] +s0rrow: raises 1200 to 1800 +darsOK: folds +MoIsonEx: folds +Georgy80: folds +seric1975: folds +AALuckyBucks: folds +stefan_bg_46: folds +Uncalled bet (1200) returned to s0rrow +s0rrow collected 1990 from pot +*** SUMMARY *** +Total pot 1990 | Rake 0 +Seat 1: s0rrow collected (1990) +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 (button) folded before Flop (didn't bet) +Seat 8: AALuckyBucks (small blind) folded before Flop +Seat 9: stefan_bg_46 (big blind) folded before Flop + + + +PokerStars Game #47658999400: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:38:10 ET +Table '297808375 7' 9-max Seat #8 is the button +Seat 1: s0rrow (75477 in chips) +Seat 2: darsOK (51236 in chips) +Seat 4: MoIsonEx (21486 in chips) +Seat 5: Georgy80 (11712 in chips) +Seat 6: seric1975 (2670 in chips) +Seat 8: AALuckyBucks (13036 in chips) +Seat 9: stefan_bg_46 (4383 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +stefan_bg_46: posts small blind 300 +s0rrow: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [7d 3h] +darsOK: calls 600 +MoIsonEx: folds +Georgy80: folds +seric1975: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: checks +*** FLOP *** [Ks Qd Kd] +s0rrow: checks +darsOK: bets 600 +s0rrow: folds +Uncalled bet (600) returned to darsOK +darsOK collected 1990 from pot +darsOK: doesn't show hand +*** SUMMARY *** +Total pot 1990 | Rake 0 +Board [Ks Qd Kd] +Seat 1: s0rrow (big blind) folded on the Flop +Seat 2: darsOK collected (1990) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 8: AALuckyBucks (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47659019101: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XV (300/600) - 2010/08/03 13:38:37 ET +Table '297808375 7' 9-max Seat #9 is the button +Seat 1: s0rrow (74807 in chips) +Seat 2: darsOK (52556 in chips) +Seat 4: MoIsonEx (21416 in chips) +Seat 5: Georgy80 (11642 in chips) +Seat 6: seric1975 (2600 in chips) +Seat 8: AALuckyBucks (12966 in chips) +Seat 9: stefan_bg_46 (4013 in chips) +s0rrow: posts the ante 70 +darsOK: posts the ante 70 +MoIsonEx: posts the ante 70 +Georgy80: posts the ante 70 +seric1975: posts the ante 70 +AALuckyBucks: posts the ante 70 +stefan_bg_46: posts the ante 70 +s0rrow: posts small blind 300 +darsOK: posts big blind 600 +*** HOLE CARDS *** +Dealt to s0rrow [Ad 7h] +MoIsonEx: raises 1200 to 1800 +Georgy80: folds +seric1975: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: folds +darsOK: folds +Uncalled bet (1200) returned to MoIsonEx +MoIsonEx collected 1990 from pot +MoIsonEx: doesn't show hand +*** SUMMARY *** +Total pot 1990 | Rake 0 +Seat 1: s0rrow (small blind) folded before Flop +Seat 2: darsOK (big blind) folded before Flop +Seat 4: MoIsonEx collected (1990) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47659037345: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:39:02 ET +Table '297808375 7' 9-max Seat #1 is the button +Seat 1: s0rrow (74437 in chips) +Seat 2: darsOK (51886 in chips) +Seat 4: MoIsonEx (22736 in chips) +Seat 5: Georgy80 (11572 in chips) +Seat 6: seric1975 (2530 in chips) +Seat 8: AALuckyBucks (12896 in chips) +Seat 9: stefan_bg_46 (3943 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +seric1975: posts the ante 85 +AALuckyBucks: posts the ante 85 +stefan_bg_46: posts the ante 85 +darsOK: posts small blind 350 +MoIsonEx: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [5c Qd] +Georgy80: folds +seric1975: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: folds +darsOK: raises 700 to 1400 +MoIsonEx: calls 700 +*** FLOP *** [6h Ad Ts] +darsOK: bets 2800 +MoIsonEx: calls 2800 +*** TURN *** [6h Ad Ts] [Ac] +darsOK: checks +MoIsonEx: bets 4700 +darsOK: folds +Uncalled bet (4700) returned to MoIsonEx +MoIsonEx collected 8995 from pot +MoIsonEx: doesn't show hand +*** SUMMARY *** +Total pot 8995 | Rake 0 +Board [6h Ad Ts Ac] +Seat 1: s0rrow (button) folded before Flop (didn't bet) +Seat 2: darsOK (small blind) folded on the Turn +Seat 4: MoIsonEx (big blind) collected (8995) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47659067053: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:39:42 ET +Table '297808375 7' 9-max Seat #2 is the button +Seat 1: s0rrow (74352 in chips) +Seat 2: darsOK (47601 in chips) +Seat 4: MoIsonEx (27446 in chips) +Seat 5: Georgy80 (11487 in chips) +Seat 6: seric1975 (2445 in chips) +Seat 8: AALuckyBucks (12811 in chips) +Seat 9: stefan_bg_46 (3858 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +seric1975: posts the ante 85 +AALuckyBucks: posts the ante 85 +stefan_bg_46: posts the ante 85 +MoIsonEx: posts small blind 350 +Georgy80: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [7d 5d] +seric1975: folds +AALuckyBucks: raises 12026 to 12726 and is all-in +stefan_bg_46: folds +s0rrow: folds +darsOK: folds +MoIsonEx: folds +Georgy80: folds +Uncalled bet (12026) returned to AALuckyBucks +AALuckyBucks collected 2345 from pot +AALuckyBucks: doesn't show hand +*** SUMMARY *** +Total pot 2345 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK (button) folded before Flop (didn't bet) +Seat 4: MoIsonEx (small blind) folded before Flop +Seat 5: Georgy80 (big blind) folded before Flop +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 8: AALuckyBucks collected (2345) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47659091389: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:40:15 ET +Table '297808375 7' 9-max Seat #4 is the button +Seat 1: s0rrow (74267 in chips) +Seat 2: darsOK (47516 in chips) +Seat 4: MoIsonEx (27011 in chips) +Seat 5: Georgy80 (10702 in chips) +Seat 6: seric1975 (2360 in chips) +Seat 8: AALuckyBucks (14371 in chips) +Seat 9: stefan_bg_46 (3773 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +seric1975: posts the ante 85 +AALuckyBucks: posts the ante 85 +stefan_bg_46: posts the ante 85 +Georgy80: posts small blind 350 +seric1975: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [Ac Kc] +AALuckyBucks: raises 13586 to 14286 and is all-in +stefan_bg_46: folds +s0rrow: raises 13586 to 27872 +darsOK: folds +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Uncalled bet (13586) returned to s0rrow +*** FLOP *** [7s 2h 6d] +*** TURN *** [7s 2h 6d] [4h] +*** RIVER *** [7s 2h 6d 4h] [4c] +*** SHOW DOWN *** +AALuckyBucks: shows [Ts Th] (two pair, Tens and Fours) +s0rrow: shows [Ac Kc] (a pair of Fours) +AALuckyBucks collected 30217 from pot +*** SUMMARY *** +Total pot 30217 | Rake 0 +Board [7s 2h 6d 4h 4c] +Seat 1: s0rrow showed [Ac Kc] and lost with a pair of Fours +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: seric1975 (big blind) folded before Flop +Seat 8: AALuckyBucks showed [Ts Th] and won (30217) with two pair, Tens and Fours +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47659116072: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:40:49 ET +Table '297808375 7' 9-max Seat #5 is the button +Seat 1: s0rrow (59896 in chips) +Seat 2: darsOK (47431 in chips) +Seat 4: MoIsonEx (26926 in chips) +Seat 5: Georgy80 (10267 in chips) +Seat 6: seric1975 (1575 in chips) +Seat 8: AALuckyBucks (30217 in chips) +Seat 9: stefan_bg_46 (3688 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +seric1975: posts the ante 85 +AALuckyBucks: posts the ante 85 +stefan_bg_46: posts the ante 85 +seric1975: posts small blind 350 +AALuckyBucks: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [7c Qd] +stefan_bg_46: folds +s0rrow: folds +darsOK: folds +MoIsonEx: folds +Georgy80: folds +seric1975: folds +Uncalled bet (350) returned to AALuckyBucks +AALuckyBucks collected 1295 from pot +AALuckyBucks: doesn't show hand +*** SUMMARY *** +Total pot 1295 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 6: seric1975 (small blind) folded before Flop +Seat 8: AALuckyBucks (big blind) collected (1295) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47659129286: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:41:07 ET +Table '297808375 7' 9-max Seat #6 is the button +Seat 1: s0rrow (59811 in chips) +Seat 2: darsOK (47346 in chips) +Seat 4: MoIsonEx (26841 in chips) +Seat 5: Georgy80 (10182 in chips) +Seat 6: seric1975 (1140 in chips) +Seat 8: AALuckyBucks (31077 in chips) +Seat 9: stefan_bg_46 (3603 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +seric1975: posts the ante 85 +AALuckyBucks: posts the ante 85 +stefan_bg_46: posts the ante 85 +AALuckyBucks: posts small blind 350 +stefan_bg_46: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [Tc Qd] +s0rrow: folds +darsOK: folds +MoIsonEx: raises 1400 to 2100 +Georgy80: folds +seric1975: folds +AALuckyBucks: folds +stefan_bg_46: folds +Uncalled bet (1400) returned to MoIsonEx +MoIsonEx collected 2345 from pot +MoIsonEx: doesn't show hand +*** SUMMARY *** +Total pot 2345 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx collected (2345) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 (button) folded before Flop (didn't bet) +Seat 8: AALuckyBucks (small blind) folded before Flop +Seat 9: stefan_bg_46 (big blind) folded before Flop + + + +PokerStars Game #47659142719: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:41:25 ET +Table '297808375 7' 9-max Seat #8 is the button +Seat 1: s0rrow (59726 in chips) +Seat 2: darsOK (47261 in chips) +Seat 4: MoIsonEx (28401 in chips) +Seat 5: Georgy80 (10097 in chips) +Seat 6: seric1975 (1055 in chips) +Seat 8: AALuckyBucks (30642 in chips) +Seat 9: stefan_bg_46 (2818 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +seric1975: posts the ante 85 +AALuckyBucks: posts the ante 85 +stefan_bg_46: posts the ante 85 +stefan_bg_46: posts small blind 350 +s0rrow: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [Qs 4h] +darsOK: folds +MoIsonEx: folds +Georgy80: folds +seric1975: folds +AALuckyBucks: folds +stefan_bg_46: folds +Uncalled bet (350) returned to s0rrow +s0rrow collected 1295 from pot +*** SUMMARY *** +Total pot 1295 | Rake 0 +Seat 1: s0rrow (big blind) collected (1295) +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 8: AALuckyBucks (button) folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (small blind) folded before Flop + + + +PokerStars Game #47659158111: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:41:46 ET +Table '297808375 7' 9-max Seat #9 is the button +Seat 1: s0rrow (60586 in chips) +Seat 2: darsOK (47176 in chips) +Seat 4: MoIsonEx (28316 in chips) +Seat 5: Georgy80 (10012 in chips) +Seat 6: seric1975 (970 in chips) +Seat 8: AALuckyBucks (30557 in chips) +Seat 9: stefan_bg_46 (2383 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +seric1975: posts the ante 85 +AALuckyBucks: posts the ante 85 +stefan_bg_46: posts the ante 85 +s0rrow: posts small blind 350 +darsOK: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [Ts Tc] +MoIsonEx: folds +Georgy80: raises 9227 to 9927 and is all-in +seric1975: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: raises 50574 to 60501 and is all-in +darsOK: folds +Uncalled bet (50574) returned to s0rrow +*** FLOP *** [3d 3h As] +*** TURN *** [3d 3h As] [Ah] +*** RIVER *** [3d 3h As Ah] [6h] +*** SHOW DOWN *** +s0rrow: shows [Ts Tc] (two pair, Aces and Tens) +Georgy80: shows [Ks Kh] (two pair, Aces and Kings) +Georgy80 collected 21149 from pot +*** SUMMARY *** +Total pot 21149 | Rake 0 +Board [3d 3h As Ah 6h] +Seat 1: s0rrow (small blind) showed [Ts Tc] and lost with two pair, Aces and Tens +Seat 2: darsOK (big blind) folded before Flop +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 showed [Ks Kh] and won (21149) with two pair, Aces and Kings +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 (button) folded before Flop (didn't bet) + + + +PokerStars Game #47659182569: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:42:20 ET +Table '297808375 7' 9-max Seat #1 is the button +Seat 1: s0rrow (50574 in chips) +Seat 2: darsOK (46391 in chips) +Seat 4: MoIsonEx (28231 in chips) +Seat 5: Georgy80 (21149 in chips) +Seat 6: seric1975 (885 in chips) +Seat 8: AALuckyBucks (30472 in chips) +Seat 9: stefan_bg_46 (2298 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +seric1975: posts the ante 85 +AALuckyBucks: posts the ante 85 +stefan_bg_46: posts the ante 85 +darsOK: posts small blind 350 +MoIsonEx: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [Th Ts] +Georgy80: folds +seric1975: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: raises 1400 to 2100 +darsOK: folds +MoIsonEx: calls 1400 +*** FLOP *** [8s Jd Ac] +MoIsonEx: checks +s0rrow: checks +*** TURN *** [8s Jd Ac] [8h] +MoIsonEx: bets 2100 +s0rrow: calls 2100 +*** RIVER *** [8s Jd Ac 8h] [5d] +MoIsonEx: bets 2800 +s0rrow: calls 2800 +*** SHOW DOWN *** +MoIsonEx: shows [Jc Kc] (two pair, Jacks and Eights) +s0rrow: mucks hand +MoIsonEx collected 14945 from pot +*** SUMMARY *** +Total pot 14945 | Rake 0 +Board [8s Jd Ac 8h 5d] +Seat 1: s0rrow (button) mucked [Th Ts] +Seat 2: darsOK (small blind) folded before Flop +Seat 4: MoIsonEx (big blind) showed [Jc Kc] and won (14945) with two pair, Jacks and Eights +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47659209539: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:42:57 ET +Table '297808375 7' 9-max Seat #2 is the button +Seat 1: s0rrow (43489 in chips) +Seat 2: darsOK (45956 in chips) +Seat 4: MoIsonEx (36091 in chips) +Seat 5: Georgy80 (21064 in chips) +Seat 6: seric1975 (800 in chips) +Seat 8: AALuckyBucks (30387 in chips) +Seat 9: stefan_bg_46 (2213 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +seric1975: posts the ante 85 +AALuckyBucks: posts the ante 85 +stefan_bg_46: posts the ante 85 +MoIsonEx: posts small blind 350 +Georgy80: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [2s Th] +seric1975: folds +AALuckyBucks: folds +stefan_bg_46: folds +s0rrow: folds +darsOK: folds +MoIsonEx: calls 350 +Georgy80: checks +*** FLOP *** [As 3d 6s] +MoIsonEx: checks +Georgy80: checks +*** TURN *** [As 3d 6s] [7c] +MoIsonEx: bets 2800 +Georgy80: folds +Uncalled bet (2800) returned to MoIsonEx +MoIsonEx collected 1995 from pot +MoIsonEx: doesn't show hand +*** SUMMARY *** +Total pot 1995 | Rake 0 +Board [As 3d 6s 7c] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK (button) folded before Flop (didn't bet) +Seat 4: MoIsonEx (small blind) collected (1995) +Seat 5: Georgy80 (big blind) folded on the Turn +Seat 6: seric1975 folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) +Seat 9: stefan_bg_46 folded before Flop (didn't bet) + + + +PokerStars Game #47659234486: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:43:31 ET +Table '297808375 7' 9-max Seat #4 is the button +Seat 1: s0rrow (43404 in chips) +Seat 2: darsOK (45871 in chips) +Seat 4: MoIsonEx (37301 in chips) +Seat 5: Georgy80 (20279 in chips) +Seat 6: seric1975 (715 in chips) +Seat 8: AALuckyBucks (30302 in chips) +Seat 9: stefan_bg_46 (2128 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +seric1975: posts the ante 85 +AALuckyBucks: posts the ante 85 +stefan_bg_46: posts the ante 85 +Georgy80: posts small blind 350 +seric1975: posts big blind 630 and is all-in +*** HOLE CARDS *** +Dealt to s0rrow [3d As] +AALuckyBucks: raises 1470 to 2100 +stefan_bg_46: calls 2043 and is all-in +s0rrow: folds +darsOK: raises 6300 to 8400 +MoIsonEx: folds +Georgy80: folds +AALuckyBucks: folds +Uncalled bet (6300) returned to darsOK +*** FLOP *** [Td 5s 4c] +*** TURN *** [Td 5s 4c] [6d] +*** RIVER *** [Td 5s 4c 6d] [5c] +*** SHOW DOWN *** +darsOK: shows [Ah Ad] (two pair, Aces and Fives) +darsOK collected 114 from side pot-2 +stefan_bg_46: shows [Kh Kc] (two pair, Kings and Fives) +darsOK collected 4239 from side pot-1 +seric1975: shows [6s Th] (two pair, Tens and Sixes) +darsOK collected 3465 from main pot +darsOK wins the $0.25 bounty for eliminating seric1975 +darsOK wins the $0.25 bounty for eliminating stefan_bg_46 +stefan_bg_46 finished the tournament in 6th place and received $4.72. +seric1975 finished the tournament in 7th place and received $3.82. +*** SUMMARY *** +Total pot 7818 Main pot 3465. Side pot-1 4239. Side pot-2 114. | Rake 0 +Board [Td 5s 4c 6d 5c] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK showed [Ah Ad] and won (7818) with two pair, Aces and Fives +Seat 4: MoIsonEx (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 6: seric1975 (big blind) showed [6s Th] and lost with two pair, Tens and Sixes +Seat 8: AALuckyBucks folded before Flop +Seat 9: stefan_bg_46 showed [Kh Kc] and lost with two pair, Kings and Fives + + + +PokerStars Game #47659262551: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:44:10 ET +Table '297808375 7' 9-max Seat #5 is the button +Seat 1: s0rrow (43319 in chips) +Seat 2: darsOK (51504 in chips) +Seat 4: MoIsonEx (37216 in chips) +Seat 5: Georgy80 (19844 in chips) +Seat 8: AALuckyBucks (28117 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +AALuckyBucks: posts the ante 85 +AALuckyBucks: posts small blind 350 +s0rrow: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [Jd 8c] +darsOK: raises 700 to 1400 +MoIsonEx: folds +Georgy80: folds +AALuckyBucks: raises 26632 to 28032 and is all-in +s0rrow: folds +darsOK: folds +Uncalled bet (26632) returned to AALuckyBucks +AALuckyBucks collected 3925 from pot +AALuckyBucks: doesn't show hand +*** SUMMARY *** +Total pot 3925 | Rake 0 +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: darsOK folded before Flop +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 8: AALuckyBucks (small blind) collected (3925) + + + +PokerStars Game #47659304733: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:45:09 ET +Table '297808375 7' 9-max Seat #8 is the button +Seat 1: s0rrow (42534 in chips) +Seat 2: darsOK (50019 in chips) +Seat 4: MoIsonEx (37131 in chips) +Seat 5: Georgy80 (19759 in chips) +Seat 8: AALuckyBucks (30557 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +AALuckyBucks: posts the ante 85 +s0rrow: posts small blind 350 +darsOK: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [8c 6c] +MoIsonEx: folds +Georgy80: folds +AALuckyBucks: folds +s0rrow: calls 350 +darsOK: checks +*** FLOP *** [Tc 5c 9h] +s0rrow: checks +darsOK: bets 700 +s0rrow: calls 700 +*** TURN *** [Tc 5c 9h] [Jd] +s0rrow: checks +darsOK: bets 700 +s0rrow: calls 700 +*** RIVER *** [Tc 5c 9h Jd] [2s] +s0rrow: checks +darsOK: bets 2100 +s0rrow: folds +Uncalled bet (2100) returned to darsOK +darsOK collected 4625 from pot +*** SUMMARY *** +Total pot 4625 | Rake 0 +Board [Tc 5c 9h Jd 2s] +Seat 1: s0rrow (small blind) folded on the River +Seat 2: darsOK (big blind) collected (4625) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 8: AALuckyBucks (button) folded before Flop (didn't bet) + + + +PokerStars Game #47659336011: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:45:53 ET +Table '297808375 7' 9-max Seat #1 is the button +Seat 1: s0rrow (40349 in chips) +Seat 2: darsOK (52459 in chips) +Seat 4: MoIsonEx (37046 in chips) +Seat 5: Georgy80 (19674 in chips) +Seat 8: AALuckyBucks (30472 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +AALuckyBucks: posts the ante 85 +darsOK: posts small blind 350 +MoIsonEx: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [4d Kh] +Georgy80: folds +AALuckyBucks: folds +s0rrow: raises 1400 to 2100 +darsOK: folds +MoIsonEx: folds +Uncalled bet (1400) returned to s0rrow +s0rrow collected 2175 from pot +*** SUMMARY *** +Total pot 2175 | Rake 0 +Seat 1: s0rrow (button) collected (2175) +Seat 2: darsOK (small blind) folded before Flop +Seat 4: MoIsonEx (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) + + + +PokerStars Game #47659351859: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:46:15 ET +Table '297808375 7' 9-max Seat #2 is the button +Seat 1: s0rrow (41739 in chips) +Seat 2: darsOK (52024 in chips) +Seat 4: MoIsonEx (36261 in chips) +Seat 5: Georgy80 (19589 in chips) +Seat 8: AALuckyBucks (30387 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +AALuckyBucks: posts the ante 85 +MoIsonEx: posts small blind 350 +Georgy80: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [2s Th] +AALuckyBucks: folds +s0rrow: folds +darsOK: raises 2100 to 2800 +MoIsonEx: folds +Georgy80: raises 16704 to 19504 and is all-in +darsOK: calls 16704 +*** FLOP *** [6c 2d As] +*** TURN *** [6c 2d As] [7s] +*** RIVER *** [6c 2d As 7s] [4d] +*** SHOW DOWN *** +Georgy80: shows [Js Jh] (a pair of Jacks) +darsOK: shows [Td Kc] (high card Ace) +Georgy80 collected 39783 from pot +*** SUMMARY *** +Total pot 39783 | Rake 0 +Board [6c 2d As 7s 4d] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK (button) showed [Td Kc] and lost with high card Ace +Seat 4: MoIsonEx (small blind) folded before Flop +Seat 5: Georgy80 (big blind) showed [Js Jh] and won (39783) with a pair of Jacks +Seat 8: AALuckyBucks folded before Flop (didn't bet) + + + +PokerStars Game #47659373560: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:46:45 ET +Table '297808375 7' 9-max Seat #4 is the button +Seat 1: s0rrow (41654 in chips) +Seat 2: darsOK (32435 in chips) +Seat 4: MoIsonEx (35826 in chips) +Seat 5: Georgy80 (39783 in chips) +Seat 8: AALuckyBucks (30302 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +AALuckyBucks: posts the ante 85 +Georgy80: posts small blind 350 +AALuckyBucks: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [8d 5c] +s0rrow: folds +darsOK: folds +MoIsonEx: folds +Georgy80: folds +Uncalled bet (350) returned to AALuckyBucks +AALuckyBucks collected 1125 from pot +AALuckyBucks: doesn't show hand +*** SUMMARY *** +Total pot 1125 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 8: AALuckyBucks (big blind) collected (1125) + + + +PokerStars Game #47659382879: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:46:58 ET +Table '297808375 7' 9-max Seat #5 is the button +Seat 1: s0rrow (41569 in chips) +Seat 2: darsOK (32350 in chips) +Seat 4: MoIsonEx (35741 in chips) +Seat 5: Georgy80 (39348 in chips) +Seat 8: AALuckyBucks (30992 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +AALuckyBucks: posts the ante 85 +AALuckyBucks: posts small blind 350 +s0rrow: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [3c Js] +darsOK: folds +MoIsonEx: folds +Georgy80: folds +AALuckyBucks: raises 2100 to 2800 +s0rrow: folds +Uncalled bet (2100) returned to AALuckyBucks +AALuckyBucks collected 1825 from pot +AALuckyBucks: doesn't show hand +*** SUMMARY *** +Total pot 1825 | Rake 0 +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 8: AALuckyBucks (small blind) collected (1825) + + + +PokerStars Game #47659393522: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:47:13 ET +Table '297808375 7' 9-max Seat #8 is the button +Seat 1: s0rrow (40784 in chips) +Seat 2: darsOK (32265 in chips) +Seat 4: MoIsonEx (35656 in chips) +Seat 5: Georgy80 (39263 in chips) +Seat 8: AALuckyBucks (32032 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +AALuckyBucks: posts the ante 85 +s0rrow: posts small blind 350 +darsOK: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [Jh 3h] +MoIsonEx: folds +Georgy80: folds +AALuckyBucks: folds +s0rrow: raises 1400 to 2100 +darsOK: raises 11900 to 14000 +s0rrow: folds +Uncalled bet (11900) returned to darsOK +darsOK collected 4625 from pot +*** SUMMARY *** +Total pot 4625 | Rake 0 +Seat 1: s0rrow (small blind) folded before Flop +Seat 2: darsOK (big blind) collected (4625) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 8: AALuckyBucks (button) folded before Flop (didn't bet) + + + +PokerStars Game #47659410940: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:47:37 ET +Table '297808375 7' 9-max Seat #1 is the button +Seat 1: s0rrow (38599 in chips) +Seat 2: darsOK (34705 in chips) +Seat 4: MoIsonEx (35571 in chips) +Seat 5: Georgy80 (39178 in chips) +Seat 8: AALuckyBucks (31947 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +AALuckyBucks: posts the ante 85 +darsOK: posts small blind 350 +MoIsonEx: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [4s 5s] +Georgy80: folds +AALuckyBucks: folds +s0rrow: raises 1400 to 2100 +darsOK: folds +MoIsonEx: folds +Uncalled bet (1400) returned to s0rrow +s0rrow collected 2175 from pot +*** SUMMARY *** +Total pot 2175 | Rake 0 +Seat 1: s0rrow (button) collected (2175) +Seat 2: darsOK (small blind) folded before Flop +Seat 4: MoIsonEx (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) + + + +PokerStars Game #47659422965: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:47:53 ET +Table '297808375 7' 9-max Seat #2 is the button +Seat 1: s0rrow (39989 in chips) +Seat 2: darsOK (34270 in chips) +Seat 4: MoIsonEx (34786 in chips) +Seat 5: Georgy80 (39093 in chips) +Seat 8: AALuckyBucks (31862 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +AALuckyBucks: posts the ante 85 +MoIsonEx: posts small blind 350 +Georgy80: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [2c 8d] +AALuckyBucks: folds +s0rrow: folds +darsOK: calls 700 +MoIsonEx: calls 350 +Georgy80: checks +*** FLOP *** [7d 4s Ad] +MoIsonEx: bets 2100 +Georgy80: folds +darsOK: calls 2100 +*** TURN *** [7d 4s Ad] [Ac] +MoIsonEx: bets 2800 +darsOK: calls 2800 +*** RIVER *** [7d 4s Ad Ac] [Ah] +MoIsonEx: bets 2800 +darsOK: calls 2800 +*** SHOW DOWN *** +MoIsonEx: shows [6d 4d] (a full house, Aces full of Fours) +darsOK: mucks hand +MoIsonEx collected 17925 from pot +*** SUMMARY *** +Total pot 17925 | Rake 0 +Board [7d 4s Ad Ac Ah] +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK (button) mucked [3s 3h] +Seat 4: MoIsonEx (small blind) showed [6d 4d] and won (17925) with a full house, Aces full of Fours +Seat 5: Georgy80 (big blind) folded on the Flop +Seat 8: AALuckyBucks folded before Flop (didn't bet) + + + +PokerStars Game #47659447144: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:48:27 ET +Table '297808375 7' 9-max Seat #4 is the button +Seat 1: s0rrow (39904 in chips) +Seat 2: darsOK (25785 in chips) +Seat 4: MoIsonEx (44226 in chips) +Seat 5: Georgy80 (38308 in chips) +Seat 8: AALuckyBucks (31777 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +AALuckyBucks: posts the ante 85 +Georgy80: posts small blind 350 +AALuckyBucks: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [4h 6h] +s0rrow: folds +darsOK: folds +MoIsonEx: folds +Georgy80: folds +Uncalled bet (350) returned to AALuckyBucks +AALuckyBucks collected 1125 from pot +AALuckyBucks: doesn't show hand +*** SUMMARY *** +Total pot 1125 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 8: AALuckyBucks (big blind) collected (1125) + + + +PokerStars Game #47659455874: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVI (350/700) - 2010/08/03 13:48:39 ET +Table '297808375 7' 9-max Seat #5 is the button +Seat 1: s0rrow (39819 in chips) +Seat 2: darsOK (25700 in chips) +Seat 4: MoIsonEx (44141 in chips) +Seat 5: Georgy80 (37873 in chips) +Seat 8: AALuckyBucks (32467 in chips) +s0rrow: posts the ante 85 +darsOK: posts the ante 85 +MoIsonEx: posts the ante 85 +Georgy80: posts the ante 85 +AALuckyBucks: posts the ante 85 +AALuckyBucks: posts small blind 350 +s0rrow: posts big blind 700 +*** HOLE CARDS *** +Dealt to s0rrow [3c Ac] +darsOK: folds +MoIsonEx: folds +Georgy80: raises 1400 to 2100 +AALuckyBucks: folds +s0rrow: raises 2800 to 4900 +Georgy80: raises 32888 to 37788 and is all-in +s0rrow: folds +Uncalled bet (32888) returned to Georgy80 +Georgy80 collected 10575 from pot +Georgy80: doesn't show hand +*** SUMMARY *** +Total pot 10575 | Rake 0 +Seat 1: s0rrow (big blind) folded before Flop +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 (button) collected (10575) +Seat 8: AALuckyBucks (small blind) folded before Flop + + + +PokerStars Game #47659477187: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:49:09 ET +Table '297808375 7' 9-max Seat #8 is the button +Seat 1: s0rrow (34834 in chips) +Seat 2: darsOK (25615 in chips) +Seat 4: MoIsonEx (44056 in chips) +Seat 5: Georgy80 (43463 in chips) +Seat 8: AALuckyBucks (32032 in chips) +s0rrow: posts the ante 100 +darsOK: posts the ante 100 +MoIsonEx: posts the ante 100 +Georgy80: posts the ante 100 +AALuckyBucks: posts the ante 100 +s0rrow: posts small blind 400 +darsOK: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [7c 9d] +MoIsonEx: folds +Georgy80: folds +AALuckyBucks: raises 2400 to 3200 +s0rrow: folds +darsOK: folds +Uncalled bet (2400) returned to AALuckyBucks +AALuckyBucks collected 2500 from pot +AALuckyBucks: doesn't show hand +*** SUMMARY *** +Total pot 2500 | Rake 0 +Seat 1: s0rrow (small blind) folded before Flop +Seat 2: darsOK (big blind) folded before Flop +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 8: AALuckyBucks (button) collected (2500) + + + +PokerStars Game #47659489360: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:49:26 ET +Table '297808375 7' 9-max Seat #1 is the button +Seat 1: s0rrow (34334 in chips) +Seat 2: darsOK (24715 in chips) +Seat 4: MoIsonEx (43956 in chips) +Seat 5: Georgy80 (43363 in chips) +Seat 8: AALuckyBucks (33632 in chips) +s0rrow: posts the ante 100 +darsOK: posts the ante 100 +MoIsonEx: posts the ante 100 +Georgy80: posts the ante 100 +AALuckyBucks: posts the ante 100 +darsOK: posts small blind 400 +MoIsonEx: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [9d As] +Georgy80: folds +AALuckyBucks: folds +s0rrow: raises 800 to 1600 +darsOK: folds +MoIsonEx: folds +Uncalled bet (800) returned to s0rrow +s0rrow collected 2500 from pot +*** SUMMARY *** +Total pot 2500 | Rake 0 +Seat 1: s0rrow (button) collected (2500) +Seat 2: darsOK (small blind) folded before Flop +Seat 4: MoIsonEx (big blind) folded before Flop +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 8: AALuckyBucks folded before Flop (didn't bet) + + + +PokerStars Game #47659498991: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:49:39 ET +Table '297808375 7' 9-max Seat #2 is the button +Seat 1: s0rrow (35934 in chips) +Seat 2: darsOK (24215 in chips) +Seat 4: MoIsonEx (43056 in chips) +Seat 5: Georgy80 (43263 in chips) +Seat 8: AALuckyBucks (33532 in chips) +s0rrow: posts the ante 100 +darsOK: posts the ante 100 +MoIsonEx: posts the ante 100 +Georgy80: posts the ante 100 +AALuckyBucks: posts the ante 100 +MoIsonEx: posts small blind 400 +Georgy80: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [8d 7c] +AALuckyBucks: folds +s0rrow: folds +darsOK: folds +MoIsonEx: folds +Uncalled bet (400) returned to Georgy80 +Georgy80 collected 1300 from pot +Georgy80: shows [Qs Qd] (a pair of Queens) +*** SUMMARY *** +Total pot 1300 | Rake 0 +Seat 1: s0rrow folded before Flop (didn't bet) +Seat 2: darsOK (button) folded before Flop (didn't bet) +Seat 4: MoIsonEx (small blind) folded before Flop +Seat 5: Georgy80 (big blind) collected (1300) +Seat 8: AALuckyBucks folded before Flop (didn't bet) + + + +PokerStars Game #47659506322: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:49:49 ET +Table '297808375 7' 9-max Seat #4 is the button +Seat 1: s0rrow (35834 in chips) +Seat 2: darsOK (24115 in chips) +Seat 4: MoIsonEx (42556 in chips) +Seat 5: Georgy80 (44063 in chips) +Seat 8: AALuckyBucks (33432 in chips) +s0rrow: posts the ante 100 +darsOK: posts the ante 100 +MoIsonEx: posts the ante 100 +Georgy80: posts the ante 100 +AALuckyBucks: posts the ante 100 +Georgy80: posts small blind 400 +AALuckyBucks: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Ah As] +s0rrow: raises 1600 to 2400 +darsOK: folds +MoIsonEx: folds +Georgy80: folds +AALuckyBucks: folds +Uncalled bet (1600) returned to s0rrow +s0rrow collected 2500 from pot +*** SUMMARY *** +Total pot 2500 | Rake 0 +Seat 1: s0rrow collected (2500) +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx (button) folded before Flop (didn't bet) +Seat 5: Georgy80 (small blind) folded before Flop +Seat 8: AALuckyBucks (big blind) folded before Flop + + + +PokerStars Game #47659515689: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:50:03 ET +Table '297808375 7' 9-max Seat #5 is the button +Seat 1: s0rrow (37434 in chips) +Seat 2: darsOK (24015 in chips) +Seat 4: MoIsonEx (42456 in chips) +Seat 5: Georgy80 (43563 in chips) +Seat 8: AALuckyBucks (32532 in chips) +s0rrow: posts the ante 100 +darsOK: posts the ante 100 +MoIsonEx: posts the ante 100 +Georgy80: posts the ante 100 +AALuckyBucks: posts the ante 100 +AALuckyBucks: posts small blind 400 +s0rrow: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Th 3h] +darsOK: folds +MoIsonEx: folds +Georgy80: folds +AALuckyBucks: folds +Uncalled bet (400) returned to s0rrow +s0rrow collected 1300 from pot +*** SUMMARY *** +Total pot 1300 | Rake 0 +Seat 1: s0rrow (big blind) collected (1300) +Seat 2: darsOK folded before Flop (didn't bet) +Seat 4: MoIsonEx folded before Flop (didn't bet) +Seat 5: Georgy80 (button) folded before Flop (didn't bet) +Seat 8: AALuckyBucks (small blind) folded before Flop + + + +PokerStars Game #47659525439: Tournament #297808375, $1.00+$0.25+$0.15 USD Hold'em No Limit - Level XVII (400/800) - 2010/08/03 13:50:16 ET +Table '297808375 7' 9-max Seat #8 is the button +Seat 1: s0rrow (38234 in chips) +Seat 2: darsOK (23915 in chips) +Seat 4: MoIsonEx (42356 in chips) +Seat 5: Georgy80 (43463 in chips) +Seat 8: AALuckyBucks (32032 in chips) +s0rrow: posts the ante 100 +darsOK: posts the ante 100 +MoIsonEx: posts the ante 100 +Georgy80: posts the ante 100 +AALuckyBucks: posts the ante 100 +s0rrow: posts small blind 400 +darsOK: posts big blind 800 +*** HOLE CARDS *** +Dealt to s0rrow [Kd Jd] +MoIsonEx: raises 1600 to 2400 +Georgy80: folds +AALuckyBucks: folds +s0rrow: calls 2000 +darsOK: folds +*** FLOP *** [3h 7d 3d] +s0rrow: checks +MoIsonEx: bets 3200 +s0rrow: raises 12000 to 15200 +MoIsonEx: calls 12000 +*** TURN *** [3h 7d 3d] [Ks] +s0rrow: bets 20534 and is all-in +MoIsonEx: calls 20534 +*** RIVER *** [3h 7d 3d Ks] [6h] +*** SHOW DOWN *** +s0rrow: shows [Kd Jd] (two pair, Kings and Threes) +MoIsonEx: shows [7c 7h] (a full house, Sevens full of Threes) +MoIsonEx collected 77568 from pot +MoIsonEx wins the $0.25 bounty for eliminating s0rrow +s0rrow finished the tournament in 5th place and received $6.30. +*** SUMMARY *** +Total pot 77568 | Rake 0 +Board [3h 7d 3d Ks 6h] +Seat 1: s0rrow (small blind) showed [Kd Jd] and lost with two pair, Kings and Threes +Seat 2: darsOK (big blind) folded before Flop +Seat 4: MoIsonEx showed [7c 7h] and won (77568) with a full house, Sevens full of Threes +Seat 5: Georgy80 folded before Flop (didn't bet) +Seat 8: AALuckyBucks (button) folded before Flop (didn't bet) + + + From faee37e1013bf91a559bf66261b898aff73cb8fe Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 3 Aug 2010 22:25:49 +0200 Subject: [PATCH 91/93] set isKO to false when we know it's not a KO --- pyfpdb/PokerStarsToFpdb.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyfpdb/PokerStarsToFpdb.py b/pyfpdb/PokerStarsToFpdb.py index 384f5082..86334bd5 100644 --- a/pyfpdb/PokerStarsToFpdb.py +++ b/pyfpdb/PokerStarsToFpdb.py @@ -262,6 +262,8 @@ class PokerStars(HandHistoryConverter): info['BOUNTY'] = info['BOUNTY'].strip(u'$€') # Strip here where it isn't 'None' hand.koBounty = int(100*Decimal(info['BOUNTY'])) hand.isKO = True + else: + hand.isKO = False info['BIRAKE'] = info['BIRAKE'].strip(u'$€') From 7f8243f19d58222d537433d66204069993cd434f Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 3 Aug 2010 22:32:31 +0200 Subject: [PATCH 92/93] remove some default values - if we don't know, don't just assume no/normal --- pyfpdb/Hand.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index e4965dab..ee6d0bf2 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -79,13 +79,13 @@ class Hand(object): self.fee = None # the Database code is looking for this one .. ? self.level = None self.mixed = None - self.speed = "Normal" - self.isRebuy = False - self.isAddOn = False - self.isKO = False + self.speed = None + self.isRebuy = None + self.isAddOn = None + self.isKO = None self.koBounty = None - self.isMatrix = False - self.isShootout = False + self.isMatrix = None + self.isShootout = None self.added = None self.addedCurrency = None self.tourneyComment = None From 2f9ded514175642da072000adddeb1788f0d5be5 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Wed, 4 Aug 2010 17:39:45 +0200 Subject: [PATCH 93/93] fix pgsql index rebuilding --- pyfpdb/Database.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index ec3d9a4e..cf62dcad 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1371,6 +1371,7 @@ class Database: # hmmm, tested by commenting out rollback in grapher. lock seems to work but # then drop still hangs :-( does work in some tests though?? # will leave code here for now pending further tests/enhancement ... + c.execute("BEGIN TRANSACTION") c.execute( "lock table %s in exclusive mode nowait" % (fk['fktab'],) ) #print "after lock, status:", c.statusmessage #print "alter table %s drop constraint %s_%s_fkey" % (fk['fktab'], fk['fktab'], fk['fkcol']) @@ -1381,6 +1382,7 @@ class Database: if "does not exist" not in str(sys.exc_value): print "warning: drop pg fk %s_%s_fkey failed: %s, continuing ..." \ % (fk['fktab'], fk['fkcol'], str(sys.exc_value).rstrip('\n') ) + c.execute("END TRANSACTION") except: print "warning: constraint %s_%s_fkey not dropped: %s, continuing ..." \ % (fk['fktab'],fk['fkcol'], str(sys.exc_value).rstrip('\n'))