diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 8c7ef50d..e94074c4 100644 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -126,6 +126,7 @@ class Database: , {'tab':'Hands', 'col':'gametypeId', 'drop':0} # mct 22/3/09 #, {'tab':'Hands', 'col':'siteHandNo', 'drop':0} unique indexes not dropped , {'tab':'HandsActions', 'col':'handsPlayerId', 'drop':0} + , {'tab':'HandsActions', 'col':'actionId', 'drop':1} , {'tab':'HandsPlayers', 'col':'handId', 'drop':1} , {'tab':'HandsPlayers', 'col':'playerId', 'drop':1} , {'tab':'HandsPlayers', 'col':'tourneysPlayersId', 'drop':0} @@ -149,6 +150,8 @@ class Database: , {'tab':'HandsPlayers', 'col':'handId', 'drop':0} , {'tab':'HandsPlayers', 'col':'playerId', 'drop':0} , {'tab':'HandsPlayers', 'col':'tourneysPlayersId', 'drop':0} + , {'tab':'HandsActions', 'col':'handsPlayerId', 'drop':0} + , {'tab':'HandsActions', 'col':'actionId', 'drop':1} , {'tab':'HudCache', 'col':'gametypeId', 'drop':1} , {'tab':'HudCache', 'col':'playerId', 'drop':0} , {'tab':'HudCache', 'col':'tourneyTypeId', 'drop':0} @@ -172,6 +175,7 @@ class Database: , {'fktab':'HandsPlayers', 'fkcol':'playerId', 'rtab':'Players', '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':'HandsActions', 'fkcol':'actionId', 'rtab':'Actions', 'rcol':'id', 'drop':1} , {'fktab':'HudCache', 'fkcol':'gametypeId', 'rtab':'Gametypes', 'rcol':'id', 'drop':1} , {'fktab':'HudCache', 'fkcol':'playerId', 'rtab':'Players', 'rcol':'id', 'drop':0} , {'fktab':'HudCache', 'fkcol':'tourneyTypeId', 'rtab':'TourneyTypes', 'rcol':'id', 'drop':1} @@ -181,6 +185,7 @@ class Database: , {'fktab':'HandsPlayers', 'fkcol':'handId', 'rtab':'Hands', 'rcol':'id', 'drop':1} , {'fktab':'HandsPlayers', 'fkcol':'playerId', 'rtab':'Players', 'rcol':'id', 'drop':1} , {'fktab':'HandsActions', 'fkcol':'handsPlayerId', 'rtab':'HandsPlayers', 'rcol':'id', 'drop':1} + , {'fktab':'HandsActions', 'fkcol':'actionId', 'rtab':'Actions', 'rcol':'id', 'drop':1} , {'fktab':'HudCache', 'fkcol':'gametypeId', 'rtab':'Gametypes', 'rcol':'id', 'drop':1} , {'fktab':'HudCache', 'fkcol':'playerId', 'rtab':'Players', 'rcol':'id', 'drop':0} , {'fktab':'HudCache', 'fkcol':'tourneyTypeId', 'rtab':'TourneyTypes', 'rcol':'id', 'drop':1} @@ -302,7 +307,7 @@ class Database: tables=self.cursor.execute(self.sql.query['list_tables']) tables=self.cursor.fetchall() - for table in (u'Autorates', u'Backings', u'Gametypes', u'Hands', u'HandsActions', u'HandsPlayers', u'HudCache', u'Players', u'RawHands', u'RawTourneys', u'Settings', u'Sites', u'TourneyTypes', u'Tourneys', u'TourneysPlayers'): + for table in (u'Actions', u'Autorates', u'Backings', u'Gametypes', u'Hands', u'HandsActions', u'HandsPlayers', u'HudCache', u'Players', u'RawHands', u'RawTourneys', u'Settings', u'Sites', u'TourneyTypes', u'Tourneys', u'TourneysPlayers'): print "table:", table result+="###################\nTable "+table+"\n###################\n" rows=self.cursor.execute(self.sql.query['get'+table]) @@ -1151,6 +1156,7 @@ class Database: c.execute(self.sql.query['createSettingsTable']) log.debug("Creating tables") + c.execute(self.sql.query['createActionsTable']) c.execute(self.sql.query['createSitesTable']) c.execute(self.sql.query['createGametypesTable']) c.execute(self.sql.query['createPlayersTable']) @@ -1422,6 +1428,7 @@ class Database: def fillDefaultData(self): c = self.get_cursor() c.execute("INSERT INTO Settings (version) VALUES (%s);" % (DB_VERSION)) + #Fill Sites c.execute("INSERT INTO Sites (name,code) VALUES ('Full Tilt Poker', 'FT')") c.execute("INSERT INTO Sites (name,code) VALUES ('PokerStars', 'PS')") c.execute("INSERT INTO Sites (name,code) VALUES ('Everleaf', 'EV')") @@ -1436,6 +1443,22 @@ class Database: c.execute("INSERT INTO Sites (name,code) VALUES ('PKR', 'PK')") c.execute("INSERT INTO Sites (name,code) VALUES ('iPoker', 'IP')") c.execute("INSERT INTO Sites (name,code) VALUES ('Winamax', 'WM')") + #Fill Actions + c.execute("INSERT INTO Actions (name,code) VALUES ('ante', 'A')") + c.execute("INSERT INTO Actions (name,code) VALUES ('small blind', 'SB')") + c.execute("INSERT INTO Actions (name,code) VALUES ('secondsb', 'SSB')") + c.execute("INSERT INTO Actions (name,code) VALUES ('big blind', 'BB')") + c.execute("INSERT INTO Actions (name,code) VALUES ('both', 'SBBB')") + c.execute("INSERT INTO Actions (name,code) VALUES ('calls', 'C')") + c.execute("INSERT INTO Actions (name,code) VALUES ('raises', 'R')") + c.execute("INSERT INTO Actions (name,code) VALUES ('bets', 'B')") + c.execute("INSERT INTO Actions (name,code) VALUES ('stands pat', 'S')") + c.execute("INSERT INTO Actions (name,code) VALUES ('folds', 'F')") + c.execute("INSERT INTO Actions (name,code) VALUES ('checks', 'K')") + c.execute("INSERT INTO Actions (name,code) VALUES ('discards', 'D')") + c.execute("INSERT INTO Actions (name,code) VALUES ('bringin', 'I')") + c.execute("INSERT INTO Actions (name,code) VALUES ('completes', 'P')") + #end def fillDefaultData def rebuild_indexes(self, start=None): @@ -1653,6 +1676,7 @@ class Database: pp.pprint(pdata) inserts = [] + hpid = {} for p in pdata: inserts.append( (hid, pids[p], @@ -1757,39 +1781,44 @@ class Database: #print "DEBUG: inserts: %s" %inserts #print "DEBUG: q: %s" % q c = self.get_cursor() - c.executemany(q, inserts) + + if self.import_options['saveActions']: + for r in inserts: + c.execute(q, r) + hpid[(r[0], r[1])] = self.get_last_insert_id(c) + else: + c.executemany(q, inserts) + + return hpid - def storeHandsActions(self, hid, pids, adata, printdata = False): + def storeHandsActions(self, hid, pids, hpid, adata, printdata = False): #print "DEBUG: %s %s %s" %(hid, pids, adata) if printdata: import pprint pp = pprint.PrettyPrinter(indent=4) pp.pprint(adata) - #inserts = [] - #for p in pdata: - # inserts.append( (hid, - # pids[p], - # adata[p]['startCash'], - # adata[p]['seatNo'], - # adata[p]['sitout'], - # adata[p]['card1'], - - #handsPlayerId BIGINT UNSIGNED NOT NULL, FOREIGN KEY (handsPlayerId) REFERENCES HandsPlayers(id), - #street SMALLINT NOT NULL, - #actionNo SMALLINT NOT NULL, - #action CHAR(5) NOT NULL, - #allIn BOOLEAN NOT NULL, - #amount INT NOT NULL, - + inserts = [] + for a in adata: + inserts.append( (hpid[(hid, pids[adata[a]['player']])], + #self.getHandsPlayerId(self.hid, pids[adata[a]['player']]), + adata[a]['street'], + adata[a]['actionNo'], + adata[a]['streetActionNo'], + adata[a]['actionId'], + adata[a]['amount'], + adata[a]['raiseTo'], + adata[a]['amountCalled'], + adata[a]['numDiscarded'], + adata[a]['cardsDiscarded'], + adata[a]['allIn'] + ) ) q = self.sql.query['store_hands_actions'] - #q = q.replace('%s', self.sql.query['placeholder']) + q = q.replace('%s', self.sql.query['placeholder']) - #print "DEBUG: inserts: %s" %inserts - #print "DEBUG: q: %s" % q - #c = self.get_cursor() - #c.executemany(q, inserts) + c = self.get_cursor() + c.executemany(q, inserts) def storeHudCache(self, gid, pids, starttime, pdata): """Update cached statistics. If update fails because no record exists, do an insert.""" diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 1172d1f0..cb289b7a 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -23,13 +23,6 @@ import logging # logging has been set up in fpdb.py or HUD_main.py, use their settings: log = logging.getLogger("parser") -DEBUG = False - -if DEBUG: - import pprint - pp = pprint.PrettyPrinter(indent=4) - - class DerivedStats(): def __init__(self, hand): self.hand = hand @@ -93,17 +86,9 @@ class DerivedStats(): self.assembleHands(self.hand) self.assembleHandsPlayers(self.hand) - if DEBUG: + if self.hand.saveActions: self.assembleHandsActions(self.hand) - if DEBUG: - #print "Hands:" - #pp.pprint(self.hands) - #print "HandsPlayers:" - #pp.pprint(self.handsplayers) - print "HandsActions:" - pp.pprint(self.handsactions) - def getHands(self): return self.hands @@ -216,9 +201,35 @@ class DerivedStats(): # Squeeze, Ratchet? def assembleHandsActions(self, hand): - print "DEBUG: hand.actions" - pp.pprint(hand.actions) - pass + k = 0 + for i, street in enumerate(hand.actionStreets): + for j, act in enumerate(hand.actions[street]): + k += 1 + self.handsactions[k] = {} + #default values + self.handsactions[k]['amount'] = 0 + self.handsactions[k]['raiseTo'] = 0 + self.handsactions[k]['amountCalled'] = 0 + self.handsactions[k]['numDiscarded'] = 0 + self.handsactions[k]['cardsDiscarded'] = None + self.handsactions[k]['allIn'] = False + #Insert values from hand.actions + self.handsactions[k]['player'] = act[0] + self.handsactions[k]['street'] = i-1 + self.handsactions[k]['actionNo'] = k + self.handsactions[k]['streetActionNo'] = (j+1) + self.handsactions[k]['actionId'] = hand.ACTION[act[1]] + if act[1] not in ('discards') and len(act) > 2: + self.handsactions[k]['amount'] = int(100 * act[2]) + if act[1] in ('raises', 'completes'): + self.handsactions[k]['raiseTo'] = int(100 * act[3]) + self.handsactions[k]['amountCalled'] = int(100 * act[4]) + if act[1] in ('discards'): + self.handsactions[k]['numDiscarded'] = int(act[2]) + if act[1] in ('discards') and len(act) > 3: + self.handsactions[k]['cardsDiscarded'] = act[3] + if len(act) > 3 and act[1] not in ('discards'): + self.handsactions[k]['allIn'] = act[-1] def setPositions(self, hand): """Sets the position for each player in HandsPlayers @@ -251,8 +262,8 @@ class DerivedStats(): else: # set blinds first, then others from pfbao list, avoids problem if bb # is missing from pfbao list or if there is no small blind - bb = [x[0] for x in hand.actions[hand.actionStreets[0]] if x[2] == 'big blind'] - sb = [x[0] for x in hand.actions[hand.actionStreets[0]] if x[2] == 'small blind'] + bb = [x[0] for x in hand.actions[hand.actionStreets[0]] if x[1] == 'big blind'] + sb = [x[0] for x in hand.actions[hand.actionStreets[0]] if x[1] == 'small blind'] # if there are > 1 sb or bb only the first is used! if bb: self.handsplayers[bb[0]]['position'] = 'B' diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index 7c35c85c..0909d42d 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -49,11 +49,14 @@ class Hand(object): LCS = {'H':'h', 'D':'d', 'C':'c', 'S':'s'} SYMBOL = {'USD': '$', 'EUR': u'$', 'GBP': '$', 'T$': '', 'play': ''} MS = {'horse' : 'HORSE', '8game' : '8-Game', 'hose' : 'HOSE', 'ha': 'HA'} + ACTION = {'ante': 1, 'small blind': 2, 'secondsb': 3, 'big blind': 4, 'both': 5, 'calls': 6, 'raises': 7, + 'bets': 8, 'stands pat': 9, 'folds': 10, 'checks': 11, 'discards': 12, 'bringin': 13, 'completes': 14} def __init__(self, config, sitename, gametype, handText, builtFrom = "HHC"): #log.debug( _("Hand.init(): handText is ") + str(handText) ) self.config = config + self.saveActions = self.config.get_import_parameters().get('saveActions') #log = Configuration.get_logger("logging.conf", "db", log_dir=self.config.dir_log) self.sitename = sitename self.siteId = self.config.get_site_id(sitename) @@ -65,13 +68,14 @@ class Hand(object): self.cancelled = False self.dbid_hands = 0 self.dbid_pids = None + self.dbid_hpid = None self.dbid_gt = 0 self.tablename = "" self.hero = "" self.maxseats = None self.counted_seats = 0 self.buttonpos = 0 - + #tourney stuff self.tourNo = None self.tourneyId = None @@ -97,7 +101,7 @@ class Hand(object): self.players = [] self.posted = [] self.tourneysPlayersIds = [] - + # Collections indexed by street names self.bets = {} self.lastBet = {} @@ -232,7 +236,7 @@ dealt whether they were seen in a 'dealt to' line #Gametypes self.dbid_gt = db.getGameTypeId(self.siteId, self.gametype) - + if self.tourNo!=None: self.tourneyTypeId = db.createTourneyType(self) db.commit() @@ -262,10 +266,11 @@ db: a connected Database object""" hh['seats'] = len(self.dbid_pids) self.dbid_hands = db.storeHand(hh) - db.storeHandsPlayers(self.dbid_hands, self.dbid_pids, self.stats.getHandsPlayers(), printdata = printtest) - # TODO HandsActions - all actions for all players for all streets - self.actions - # HudCache data can be generated from HandsActions (HandsPlayers?) - #db.storeHandsActions(self.dbid_hands, self.dbid_pids, self.stats.getHandsActions(), printdata = printtest) + self.dbid_hpid = db.storeHandsPlayers(self.dbid_hands, self.dbid_pids, + self.stats.getHandsPlayers(), printdata = printtest) + if self.saveActions: + db.storeHandsActions(self.dbid_hands, self.dbid_pids, self.dbid_hpid, + self.stats.getHandsActions(), printdata = printtest) else: log.info(_("Hand.insert(): hid #: %s is a duplicate") % hh['siteHandNo']) self.is_duplicate = True # i.e. don't update hudcache @@ -350,12 +355,12 @@ For sites (currently only Carbon Poker) which record "all in" as a special actio ante = re.sub(u',', u'', ante) #some sites have commas self.bets['BLINDSANTES'][player].append(Decimal(ante)) self.stacks[player] -= Decimal(ante) - act = (player, 'posts', "ante", ante, self.stacks[player]==0) + act = (player, 'ante', Decimal(ante), self.stacks[player]==0) self.actions['BLINDSANTES'].append(act) # self.pot.addMoney(player, Decimal(ante)) self.pot.addCommonMoney(player, Decimal(ante)) #I think the antes should be common money, don't have enough hand history to check - + def addBlind(self, player, blindtype, amount): # if player is None, it's a missing small blind. # The situation we need to cover are: @@ -369,13 +374,13 @@ For sites (currently only Carbon Poker) which record "all in" as a special actio if player is not None: amount = re.sub(u',', u'', amount) #some sites have commas self.stacks[player] -= Decimal(amount) - act = (player, 'posts', blindtype, amount, self.stacks[player]==0) + act = (player, blindtype, Decimal(amount), self.stacks[player]==0) self.actions['BLINDSANTES'].append(act) if blindtype == 'both': # work with the real amount. limit games are listed as $1, $2, where # the SB 0.50 and the BB is $1, after the turn the minimum bet amount is $2.... - amount = self.bb + amount = self.bb self.bets['BLINDSANTES'][player].append(Decimal(self.sb)) self.pot.addCommonMoney(player, Decimal(self.sb)) @@ -402,7 +407,7 @@ For sites (currently only Carbon Poker) which record "all in" as a special actio #self.lastBet[street] = Decimal(amount) self.stacks[player] -= Decimal(amount) #print "DEBUG %s calls %s, stack %s" % (player, amount, self.stacks[player]) - act = (player, 'calls', amount, self.stacks[player]==0) + act = (player, 'calls', Decimal(amount), self.stacks[player]==0) self.actions[street].append(act) self.pot.addMoney(player, Decimal(amount)) @@ -463,11 +468,11 @@ Add a raise on [street] by [player] to [amountTo] Rb = Rt - C - Bc self._addRaise(street, player, C, Rb, Rt) - def _addRaise(self, street, player, C, Rb, Rt): + def _addRaise(self, street, player, C, Rb, Rt, action = 'raises'): log.debug(_("%s %s raise %s") %(street, player, Rt)) self.bets[street][player].append(C + Rb) self.stacks[player] -= (C + Rb) - act = (player, 'raises', Rb, Rt, C, self.stacks[player]==0) + act = (player, action, Rb, Rt, C, self.stacks[player]==0) self.actions[street].append(act) self.lastBet[street] = Rt # TODO check this is correct self.pot.addMoney(player, C+Rb) @@ -481,7 +486,7 @@ Add a raise on [street] by [player] to [amountTo] self.bets[street][player].append(Decimal(amount)) self.stacks[player] -= Decimal(amount) #print "DEBUG %s bets %s, stack %s" % (player, amount, self.stacks[player]) - act = (player, 'bets', amount, self.stacks[player]==0) + act = (player, 'bets', Decimal(amount), self.stacks[player]==0) self.actions[street].append(act) self.lastBet[street] = Decimal(amount) self.pot.addMoney(player, Decimal(amount)) @@ -544,7 +549,7 @@ Card ranks will be uppercased self.totalcollected = 0; #self.collected looks like [[p1,amount][px,amount]] for entry in self.collected: - self.totalcollected += Decimal(entry[1]) + self.totalcollected += Decimal(entry[1]) def getGameTypeAsString(self): """\ @@ -684,12 +689,12 @@ class HoldemOmahaHand(Hand): hhc.readPlayerStacks(self) hhc.compilePlayerRegexs(self) hhc.markStreets(self) - + if self.cancelled: return - + hhc.readBlinds(self) - + hhc.readAntes(self) hhc.readButton(self) hhc.readHeroCards(self) @@ -1020,7 +1025,7 @@ class DrawHand(Hand): self.bets['DEAL'][player].append(Decimal(amount)) self.stacks[player] -= Decimal(amount) #print "DEBUG %s posts, stack %s" % (player, self.stacks[player]) - act = (player, 'posts', blindtype, amount, self.stacks[player]==0) + act = (player, blindtype, Decimal(amount), self.stacks[player]==0) self.actions['BLINDSANTES'].append(act) self.pot.addMoney(player, Decimal(amount)) if blindtype == 'big blind': @@ -1050,10 +1055,10 @@ class DrawHand(Hand): def addDiscard(self, street, player, num, cards): self.checkPlayerExists(player) if cards: - act = (player, 'discards', num, cards) + act = (player, 'discards', Decimal(num), cards) self.discardDrawHoleCards(cards, player, street) else: - act = (player, 'discards', num) + act = (player, 'discards', Decimal(num)) self.actions[street].append(act) def holecardsAsSet(self, street, player): @@ -1246,7 +1251,7 @@ Add a complete on [street] by [player] to [amountTo] Rt = Decimal(amountTo) C = Bp - Bc Rb = Rt - C - self._addRaise(street, player, C, Rb, Rt) + self._addRaise(street, player, C, Rb, Rt, 'completes') #~ self.bets[street][player].append(C + Rb) #~ self.stacks[player] -= (C + Rb) #~ act = (player, 'raises', Rb, Rt, C, self.stacks[player]==0) @@ -1259,7 +1264,7 @@ Add a complete on [street] by [player] to [amountTo] log.debug(_("Bringin: %s, %s") % (player , bringin)) self.bets['THIRD'][player].append(Decimal(bringin)) self.stacks[player] -= Decimal(bringin) - act = (player, 'bringin', bringin, self.stacks[player]==0) + act = (player, 'bringin', Decimal(bringin), self.stacks[player]==0) self.actions['THIRD'].append(act) self.lastBet['THIRD'] = Decimal(bringin) self.pot.addMoney(player, Decimal(bringin)) @@ -1486,7 +1491,7 @@ class Pot(object): # Return any uncalled bet. committed = sorted([ (v,k) for (k,v) in self.committed.items()]) #print "DEBUG: committed: %s" % committed - #ERROR below. lastbet is correct in most cases, but wrong when + #ERROR below. lastbet is correct in most cases, but wrong when # additional money is committed to the pot in cash games # due to an additional sb being posted. (Speculate that # posting sb+bb is also potentially wrong) diff --git a/pyfpdb/PartyPokerToFpdb.py b/pyfpdb/PartyPokerToFpdb.py index a96308c0..46f94952 100755 --- a/pyfpdb/PartyPokerToFpdb.py +++ b/pyfpdb/PartyPokerToFpdb.py @@ -52,7 +52,7 @@ class PartyPoker(HandHistoryConverter): re_GameInfoRing = re.compile(""" (?P\$|)\s*(?P[.,0-9]+)([.,0-9/$]+)?\s*(?:USD)?\s* (?P(NL|PL|))\s* - (?P(Texas\ Hold\'em|Omaha)) + (?P(Texas\ Hold\'em|Omaha|7 Card Stud Hi-Lo)) \s*\-\s* (?P.+) """, re.VERBOSE) @@ -202,6 +202,7 @@ class PartyPoker(HandHistoryConverter): games = { # base, category "Texas Hold'em" : ('hold','holdem'), 'Omaha' : ('hold','omahahi'), + "7 Card Stud Hi-Lo" : ('stud','studhi'), } currencies = { '$':'USD', '':'T$' } @@ -348,19 +349,19 @@ class PartyPoker(HandHistoryConverter): def readPlayerStacks(self, hand): log.debug("readPlayerStacks") m = self.re_PlayerInfo.finditer(hand.handText) - players = [] + maxKnownStack = 0 + zeroStackPlayers = [] for a in m: - hand.addPlayer(int(a.group('SEAT')), a.group('PNAME'), - clearMoneyString(a.group('CASH'))) - - # detecting new active players without a seat - # and new active players with zero stack + if a.group('CASH') > '0': + #record max known stack for use with players with unknown stack + maxKnownStack = max(a.group('CASH'),maxKnownStack) + hand.addPlayer(int(a.group('SEAT')), a.group('PNAME'), clearMoneyString(a.group('CASH'))) + else: + #zero stacked players are added later + zeroStackPlayers.append([int(a.group('SEAT')), a.group('PNAME'), clearMoneyString(a.group('CASH'))]) if hand.gametype['type'] == 'ring': - re_JoiningPlayers = re.compile(r"(?P.*) has joined the table") - re_BBPostingPlayers = re.compile(r"(?P.*) posts big blind") - seatedPlayers = list([(f[1]) for f in hand.players]) - + #finds first vacant seat after an exact seat def findFirstEmptySeat(startSeat): while startSeat in occupiedSeats: if startSeat >= hand.maxseats: @@ -368,14 +369,25 @@ class PartyPoker(HandHistoryConverter): startSeat += 1 return startSeat + re_JoiningPlayers = re.compile(r"(?P.*) has joined the table") + re_BBPostingPlayers = re.compile(r"(?P.*) posts big blind") + match_JoiningPlayers = re_JoiningPlayers.findall(hand.handText) match_BBPostingPlayers = re_BBPostingPlayers.findall(hand.handText) - ringLimit = self.re_GameInfoRing.search(hand.handText).groupdict()['RINGLIMIT'] - unseatedActivePlayers = list(set(match_BBPostingPlayers) - set(seatedPlayers)) - for player in seatedPlayers: - if hand.stacks[player] == 0 and player in match_BBPostingPlayers: - hand.stacks[player] = Decimal(ringLimit) + #add every player with zero stack, but: + #if a zero stacked player is just joined the table in this very hand then set his stack to maxKnownStack + for p in zeroStackPlayers: + if p[1] in match_JoiningPlayers: + p[2] = clearMoneyString(maxKnownStack) + hand.addPlayer(p[0],p[1],p[2]) + + seatedPlayers = list([(f[1]) for f in hand.players]) + + #it works for all known cases as of 2010-09-28 + #should be refined with using match_ActivePlayers instead of match_BBPostingPlayers + #as a leaving and rejoining player could be active without posting a BB (sample HH needed) + unseatedActivePlayers = list(set(match_BBPostingPlayers) - set(seatedPlayers)) if unseatedActivePlayers: for player in unseatedActivePlayers: @@ -384,7 +396,7 @@ class PartyPoker(HandHistoryConverter): occupiedSeats = list([(f[0]) for f in hand.players]) occupiedSeats.sort() newPlayerSeat = findFirstEmptySeat(previousBBPosterSeat) - hand.addPlayer(newPlayerSeat,player,clearMoneyString(ringLimit)) + hand.addPlayer(newPlayerSeat,player,clearMoneyString(maxKnownStack)) def markStreets(self, hand): m = re.search( diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 2994515f..25dd36e5 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -153,7 +153,28 @@ class Sql: tourneyId BIGINT NOT NULL, rawTourney TEXT NOT NULL, complain BOOLEAN NOT NULL DEFAULT FALSE)""" - + + ################################ + # Create Actions + ################################ + + if db_server == 'mysql': + self.query['createActionsTable'] = """CREATE TABLE Actions ( + id SMALLINT UNSIGNED AUTO_INCREMENT NOT NULL, PRIMARY KEY (id), + name varchar(32) NOT NULL, + code char(2) NOT NULL) + ENGINE=INNODB""" + elif db_server == 'postgresql': + self.query['createActionsTable'] = """CREATE TABLE Actions ( + id SERIAL, PRIMARY KEY (id), + name varchar(32), + code char(2))""" + elif db_server == 'sqlite': + self.query['createActionsTable'] = """CREATE TABLE Actions ( + id INTEGER PRIMARY KEY, + name TEXT NOT NULL, + code TEXT NOT NULL)""" + ################################ # Create Sites ################################ @@ -989,11 +1010,14 @@ class Sql: handsPlayerId BIGINT UNSIGNED NOT NULL, FOREIGN KEY (handsPlayerId) REFERENCES HandsPlayers(id), street SMALLINT NOT NULL, actionNo SMALLINT NOT NULL, - action CHAR(5) NOT NULL, - allIn BOOLEAN NOT NULL, + streetActionNo SMALLINT NOT NULL, + actionId SMALLINT NOT NULL, FOREIGN KEY (actionId) REFERENCES Actions(id), amount INT NOT NULL, - comment TEXT, - commentTs DATETIME) + raiseTo INT NOT NULL, + amountCalled INT NOT NULL, + numDiscarded SMALLINT NOT NULL, + cardsDiscarded varchar(14), + allIn BOOLEAN NOT NULL) ENGINE=INNODB""" elif db_server == 'postgresql': self.query['createHandsActionsTable'] = """CREATE TABLE HandsActions ( @@ -1001,24 +1025,31 @@ class Sql: handsPlayerId BIGINT, FOREIGN KEY (handsPlayerId) REFERENCES HandsPlayers(id), street SMALLINT, actionNo SMALLINT, - action CHAR(5), - allIn BOOLEAN, + streetActionNo SMALLINT, + actionId SMALLINT, FOREIGN KEY (actionId) REFERENCES Actions(id), amount INT, - comment TEXT, - commentTs timestamp without time zone)""" + raiseTo INT, + amountCalled INT, + numDiscarded SMALLINT, + cardsDiscarded varchar(14), + allIn BOOLEAN)""" elif db_server == 'sqlite': self.query['createHandsActionsTable'] = """CREATE TABLE HandsActions ( id INTEGER PRIMARY KEY, handsPlayerId BIGINT, street SMALLINT, actionNo SMALLINT, - action CHAR(5), - allIn INT, + streetActionNo SMALLINT, + actionId SMALLINT, amount INT, - comment TEXT, - commentTs timestamp without time zone, - FOREIGN KEY (handsPlayerId) REFERENCES HandsPlayers(id) - )""" + raiseTo INT, + amountCalled INT, + numDiscarded SMALLINT, + cardsDiscarded TEXT, + allIn BOOLEAN, + FOREIGN KEY (handsPlayerId) REFERENCES HandsPlayers(id), + FOREIGN KEY (actionId) REFERENCES Actions(id) ON DELETE CASCADE + )""" ################################ @@ -4251,11 +4282,17 @@ class Sql: handsPlayerId, street, actionNo, - action, - allIn, - amount + streetActionNo, + actionId, + amount, + raiseTo, + amountCalled, + numDiscarded, + cardsDiscarded, + allIn ) VALUES ( + %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s )""" diff --git a/pyfpdb/TableWindow.py b/pyfpdb/TableWindow.py index f904fa15..e3ec40de 100644 --- a/pyfpdb/TableWindow.py +++ b/pyfpdb/TableWindow.py @@ -189,7 +189,7 @@ class Table_Window(object): print "get_table_no: mo=",mo.groups() return mo.group(1) return False - + #################################################################### # check_table() is meant to be called by the hud periodically to # determine if the client has been moved or resized. check_table() @@ -254,7 +254,7 @@ class Table_Window(object): if hud is not None: hud.main_window.emit("table_changed", hud) return True - + def check_bad_words(self, title): for word in bad_words: if word in title: return True diff --git a/pyfpdb/WinamaxToFpdb.py b/pyfpdb/WinamaxToFpdb.py index ff644515..cb2c8d2a 100755 --- a/pyfpdb/WinamaxToFpdb.py +++ b/pyfpdb/WinamaxToFpdb.py @@ -18,6 +18,9 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ######################################################################## +import L10n +_ = L10n.get_translation() + import sys import exceptions @@ -28,18 +31,6 @@ import Configuration from HandHistoryConverter import * from decimal import Decimal import time -import locale - -lang=locale.getdefaultlocale()[0][0:2] -if lang=="en": - def _(string): return string -else: - import gettext - try: - trans = gettext.translation("fpdb", localedir="locale", languages=[lang]) - trans.install() - except IOError: - def _(string): return string # Winamax HH Format @@ -58,7 +49,7 @@ class Winamax(HandHistoryConverter): siteName = "Winamax" filetype = "text" codepage = ("utf8", "cp1252") - siteId = 5 # Needs to match id entry in Sites database + siteId = 14 # Needs to match id entry in Sites database mixes = { } # Legal mixed games sym = {'USD': "\$", 'CAD': "\$", 'T$': "", "EUR": "\xe2\x82\xac", "GBP": "\xa3"} # ADD Euro, Sterling, etc HERE diff --git a/pyfpdb/locale/fpdb-hu_HU.po b/pyfpdb/locale/fpdb-hu_HU.po index 01f6c30b..ecd6c69e 100644 --- a/pyfpdb/locale/fpdb-hu_HU.po +++ b/pyfpdb/locale/fpdb-hu_HU.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.20.905 plus git\n" "POT-Creation-Date: 2010-09-22 20:10+CEST\n" -"PO-Revision-Date: 2010-09-23 11:36+0200\n" +"PO-Revision-Date: 2010-09-28 15:55+0200\n" "Last-Translator: Ferenc Erki \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -1449,7 +1449,7 @@ msgstr "Sessionök" #: GuiTourneyGraphViewer.py:185 msgid "Tournaments" -msgstr "Verseny3k" +msgstr "Versenyek" #: GuiTourneyGraphViewer.py:212 GuiTourneyGraphViewer.py:225 msgid "" diff --git a/pyfpdb/regression-test-files/cash/Absolute/Stud/7-StudHL-USD-0.02-0.04-200903.River.with.mucked.txt b/pyfpdb/regression-test-files/cash/Absolute/Stud/7-StudHL-USD-0.02-0.04-200903.River.with.mucked.txt index f91ed38c..3bccf2d9 100644 --- a/pyfpdb/regression-test-files/cash/Absolute/Stud/7-StudHL-USD-0.02-0.04-200903.River.with.mucked.txt +++ b/pyfpdb/regression-test-files/cash/Absolute/Stud/7-StudHL-USD-0.02-0.04-200903.River.with.mucked.txt @@ -1,91 +1,91 @@ -Stage #1300000000: Seven Card Hi/Lo Normal $0.02/$0.04 - 2009-03-18 19:10:00 (ET) -Seat 1 - PLAYER1 ($0.17 in chips) -Seat 2 - PLAYER2 ($0.36 in chips) -Seat 3 - PLAYER3 ($3.46 in chips) -Seat 5 - PLAYER4 ($1 in chips) -Seat 6 - PLAYER5 ($1.07 in chips) -Seat 7 - PLAYER6 ($2.31 in chips) -Seat 8 - PLAYER7 ($0.93 in chips) -Player1 - Ante $0.01 -PLAYER5 - Ante $0.01 -PLAYER6 - Ante $0.01 -PLAYER3 - Ante $0.01 -PLAYER7 - Ante $0.01 -PLAYER2 - Ante $0.01 -PLAYER4 - Ante $0.01 -*** 3rd STREET *** -Player1 - Pocket [H H Js] -PLAYER2 - Pocket [H H 7h] -PLAYER3 - Pocket [H H 6s] -PLAYER4 - Pocket [10c 5c 7s] -PLAYER5 - Pocket [H H Qh] -PLAYER6 - Pocket [H H 9c] -PLAYER7 - Pocket [H H 3s] -PLAYER7 - Bring-In $0.01 -Player1 - Calls $0.01 -PLAYER2 - Folds -PLAYER3 - Calls $0.01 -PLAYER4 - Folds -PLAYER5 - Folds -PLAYER6 - Calls $0.01 -*** 4TH STREET *** -Player1 - Pocket [H H Js 10d] -PLAYER3 - Pocket [H H 6s Ah] -PLAYER4 - Pocket [10c 5c 7s] -PLAYER6 - Pocket [H H 9c Ks] -PLAYER7 - Pocket [H H 3s Qc] -PLAYER3 - Checks -PLAYER6 - Checks -PLAYER7 - Checks -Player1 - Checks -*** 5TH STREET *** -Player1 - Pocket [H H Js 10d Kh] -PLAYER3 - Pocket [H H 6s Ah 8c] -PLAYER4 - Pocket [10c 5c 7s] -PLAYER6 - Pocket [H H 9c Ks 10s] -PLAYER7 - Pocket [H H 3s Qc 6c] -PLAYER3 - Bets $0.04 -PLAYER6 - Calls $0.04 -PLAYER7 - Calls $0.04 -Player1 - Calls $0.04 -*** 6TH STREET *** -Player1 - Pocket [H H Js 10d Kh 2c] -PLAYER3 - Pocket [H H 6s Ah 8c Jc] -PLAYER4 - Pocket [10c 5c 7s] -PLAYER6 - Pocket [H H 9c Ks 10s 8h] -PLAYER7 - Pocket [H H 3s Qc 6c Qs] -PLAYER7 - Checks -Player1 - Checks -PLAYER3 - Bets $0.04 -PLAYER6 - Calls $0.04 -PLAYER7 - Calls $0.04 -Player1 - Calls $0.04 -*** RIVER *** -Player1 - Pocket [H H Js 10d Kh 2c H] -PLAYER3 - Pocket [H H 6s Ah 8c Jc H] -PLAYER4 - Pocket [10c 5c 7s] -PLAYER6 - Pocket [H H 9c Ks 10s 8h H] -PLAYER7 - Pocket [H H 3s Qc 6c Qs H] -PLAYER7 - Checks -Player1 - Checks -PLAYER3 - Checks -PLAYER6 - Checks -*** SHOW DOWN *** -PLAYER7 - Shows [5s 8d 3s Qc 6c Qs 9s] (One pair, queens) -Player1 - Shows [Jh 3h Js 10d Kh 2c 2h] (Two Pair, jacks and twos) -PLAYER3 - Shows [3d 5d 6s Ah 8c Jc As] (One pair, aces) -PLAYER6 - Shows [Kc 10h 9c Ks 10s 8h 2s] (Two Pair, kings and tens) -PLAYER3 Collects $0.19 from main pot -PLAYER6 Collects $0.20 from main pot -*** SUMMARY *** -Total Pot($0.43) | Rake ($0.04) -Seat 1: Player1 HI:lost with Two Pair, jacks and twos [Jh 3h Js 10d Kh 2c 2h - B:Js,P:Jh,P:2h,B:2c,B:Kh] -Seat 2: PLAYER2 Folded on the 3rd STREET -Seat 3: PLAYER3 won Total ($0.19) HI:with One pair, aces [3d 5d 6s Ah 8c Jc As - P:As,B:Ah,B:Jc,B:8c,B:6s] LO:($0.19) [B:Ah,P:3d,P:5d,B:6s,B:8c] -Seat 5: PLAYER4 Folded on the 3rd STREET -Seat 6: PLAYER5 Folded on the 3rd STREET -Seat 7: PLAYER6 won Total ($0.20) HI:($0.20) with Two Pair, kings and tens [Kc 10h 9c Ks 10s 8h 2s - B:Ks,P:Kc,B:10s,P:10h,B:9c] -Seat 8: PLAYER7 HI:lost with One pair, queens [5s 8d 3s Qc 6c Qs 9s - B:Qs,B:Qc,P:9s,P:8d,B:6c] - - - +Stage #1300000000: Seven Card Hi/Lo Normal $0.02/$0.04 - 2009-03-18 19:10:00 (ET) +Seat 1 - PLAYER1 ($0.17 in chips) +Seat 2 - PLAYER2 ($0.36 in chips) +Seat 3 - PLAYER3 ($3.46 in chips) +Seat 5 - PLAYER4 ($1 in chips) +Seat 6 - PLAYER5 ($1.07 in chips) +Seat 7 - PLAYER6 ($2.31 in chips) +Seat 8 - PLAYER7 ($0.93 in chips) +Player1 - Ante $0.01 +PLAYER5 - Ante $0.01 +PLAYER6 - Ante $0.01 +PLAYER3 - Ante $0.01 +PLAYER7 - Ante $0.01 +PLAYER2 - Ante $0.01 +PLAYER4 - Ante $0.01 +*** 3rd STREET *** +Player1 - Pocket [H H Js] +PLAYER2 - Pocket [H H 7h] +PLAYER3 - Pocket [H H 6s] +PLAYER4 - Pocket [10c 5c 7s] +PLAYER5 - Pocket [H H Qh] +PLAYER6 - Pocket [H H 9c] +PLAYER7 - Pocket [H H 3s] +PLAYER7 - Bring-In $0.01 +Player1 - Calls $0.01 +PLAYER2 - Folds +PLAYER3 - Calls $0.01 +PLAYER4 - Folds +PLAYER5 - Folds +PLAYER6 - Calls $0.01 +*** 4TH STREET *** +Player1 - Pocket [H H Js 10d] +PLAYER3 - Pocket [H H 6s Ah] +PLAYER4 - Pocket [10c 5c 7s] +PLAYER6 - Pocket [H H 9c Ks] +PLAYER7 - Pocket [H H 3s Qc] +PLAYER3 - Checks +PLAYER6 - Checks +PLAYER7 - Checks +Player1 - Checks +*** 5TH STREET *** +Player1 - Pocket [H H Js 10d Kh] +PLAYER3 - Pocket [H H 6s Ah 8c] +PLAYER4 - Pocket [10c 5c 7s] +PLAYER6 - Pocket [H H 9c Ks 10s] +PLAYER7 - Pocket [H H 3s Qc 6c] +PLAYER3 - Bets $0.04 +PLAYER6 - Calls $0.04 +PLAYER7 - Calls $0.04 +Player1 - Calls $0.04 +*** 6TH STREET *** +Player1 - Pocket [H H Js 10d Kh 2c] +PLAYER3 - Pocket [H H 6s Ah 8c Jc] +PLAYER4 - Pocket [10c 5c 7s] +PLAYER6 - Pocket [H H 9c Ks 10s 8h] +PLAYER7 - Pocket [H H 3s Qc 6c Qs] +PLAYER7 - Checks +Player1 - Checks +PLAYER3 - Bets $0.04 +PLAYER6 - Calls $0.04 +PLAYER7 - Calls $0.04 +Player1 - Calls $0.04 +*** RIVER *** +Player1 - Pocket [H H Js 10d Kh 2c H] +PLAYER3 - Pocket [H H 6s Ah 8c Jc H] +PLAYER4 - Pocket [10c 5c 7s] +PLAYER6 - Pocket [H H 9c Ks 10s 8h H] +PLAYER7 - Pocket [H H 3s Qc 6c Qs H] +PLAYER7 - Checks +Player1 - Checks +PLAYER3 - Checks +PLAYER6 - Checks +*** SHOW DOWN *** +PLAYER7 - Shows [5s 8d 3s Qc 6c Qs 9s] (One pair, queens) +Player1 - Shows [Jh 3h Js 10d Kh 2c 2h] (Two Pair, jacks and twos) +PLAYER3 - Shows [3d 5d 6s Ah 8c Jc As] (One pair, aces) +PLAYER6 - Shows [Kc 10h 9c Ks 10s 8h 2s] (Two Pair, kings and tens) +PLAYER3 Collects $0.19 from main pot +PLAYER6 Collects $0.20 from main pot +*** SUMMARY *** +Total Pot($0.43) | Rake ($0.04) +Seat 1: Player1 HI:lost with Two Pair, jacks and twos [Jh 3h Js 10d Kh 2c 2h - B:Js,P:Jh,P:2h,B:2c,B:Kh] +Seat 2: PLAYER2 Folded on the 3rd STREET +Seat 3: PLAYER3 won Total ($0.19) HI:with One pair, aces [3d 5d 6s Ah 8c Jc As - P:As,B:Ah,B:Jc,B:8c,B:6s] LO:($0.19) [B:Ah,P:3d,P:5d,B:6s,B:8c] +Seat 5: PLAYER4 Folded on the 3rd STREET +Seat 6: PLAYER5 Folded on the 3rd STREET +Seat 7: PLAYER6 won Total ($0.20) HI:($0.20) with Two Pair, kings and tens [Kc 10h 9c Ks 10s 8h 2s - B:Ks,P:Kc,B:10s,P:10h,B:9c] +Seat 8: PLAYER7 HI:lost with One pair, queens [5s 8d 3s Qc 6c Qs 9s - B:Qs,B:Qc,P:9s,P:8d,B:6c] + + + diff --git a/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt b/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt index 06b447e4..2f47c939 100644 --- a/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt +++ b/pyfpdb/regression-test-files/cash/Carbon/Flop/NLHE-9max-USD-0.25-0.50.200810.All.Streets.txt @@ -1,53 +1,53 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pyfpdb/regression-test-files/cash/Everleaf/Flop/FLO8-10max-USD-0.50-1.00-201003.HU.on.10max.txt b/pyfpdb/regression-test-files/cash/Everleaf/Flop/FLO8-10max-USD-0.50-1.00-201003.HU.on.10max.txt index 1e883e83..8973cbf8 100644 --- a/pyfpdb/regression-test-files/cash/Everleaf/Flop/FLO8-10max-USD-0.50-1.00-201003.HU.on.10max.txt +++ b/pyfpdb/regression-test-files/cash/Everleaf/Flop/FLO8-10max-USD-0.50-1.00-201003.HU.on.10max.txt @@ -1,1905 +1,1905 @@ -Everleaf Gaming Game #148735443 -***** Hand history for game #148735443 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:00:02 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25 USD ) -Seat 10: Hero ( $ 25 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 9c, 4h, Td, Jc ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 2s, Ad, 8d ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.95 USD) from main pot - - - -Everleaf Gaming Game #148735485 -***** Hand history for game #148735485 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:00:24 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25.45 USD ) -Seat 10: Hero ( $ 24.50 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 9d, 2h, 5c, 5d ] -Hero calls [$ 0.25 USD] -Villain raises [$ 0.50 USD] -Hero calls [$ 0.50 USD] -** Dealing Flop ** [ 8c, Jd, Td ] -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 1.90 USD) from main pot - - - -Everleaf Gaming Game #148735532 -***** Hand history for game #148735532 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:00:45 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 26.35 USD ) -Seat 10: Hero ( $ 23.50 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Kc, Kh, 2c, Kd ] -Villain raises [$ 0.75 USD] -Hero calls [$ 0.50 USD] -** Dealing Flop ** [ Ks, 5s, Qd ] -Hero: bets [$ 0.50 USD] -Villain folds -Hero does not show cards -Hero wins $ 1.90 USD from main pot - - - -Everleaf Gaming Game #148735563 -***** Hand history for game #148735563 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:01:04 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25.35 USD ) -Seat 10: Hero ( $ 24.40 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Qc, 5c, Ah, 5d ] -Hero raises [$ 0.75 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 6h, 8d, 9h ] -Villain checks -Hero checks -** Dealing Turn ** [ Ad ] -Villain: bets [$ 1 USD] -Hero folds -Villain does not show cards -Villain wins $ 1.90 USD from main pot - - - -Everleaf Gaming Game #148735617 -***** Hand history for game #148735617 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:01:32 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 26.25 USD ) -Seat 10: Hero ( $ 23.40 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 8s, 6s, 6h, 4h ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ As, 9c, Ks ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins $ 0.95 USD from main pot - - - -Everleaf Gaming Game #148735643 -***** Hand history for game #148735643 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:01:48 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 26.70 USD ) -Seat 10: Hero ( $ 22.90 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 5h, Ac, 9d, Qd ] -Hero raises [$ 0.75 USD] -Villain folds -Hero does not show cards -Hero wins $ 1 USD from main pot - - - -Everleaf Gaming Game #148735677 -***** Hand history for game #148735677 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:02:00 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 26.20 USD ) -Seat 10: Hero ( $ 23.40 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Qc, Qd, 5c, 8c ] -Villain calls [$ 0.25 USD] -Hero raises [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 5d, Ad, Jc ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins $ 1.90 USD from main pot - - - -Everleaf Gaming Game #148735718 -***** Hand history for game #148735718 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:02:24 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 27.10 USD ) -Seat 10: Hero ( $ 22.40 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Tc, 6c, 3c, Ac ] -Hero raises [$ 0.75 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ As, Jh, Ah ] -Villain checks -Hero: bets [$ 0.50 USD] -Villain folds -Hero does not show cards -Hero wins $ 1.90 USD from main pot - - - -Everleaf Gaming Game #148735755 -***** Hand history for game #148735755 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:02:43 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 26.10 USD ) -Seat 10: Hero ( $ 23.30 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Qd, 4c, 7c, 6c ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ Td, 6d, Ah ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins $ 0.95 USD from main pot - - - -Everleaf Gaming Game #148735800 -***** Hand history for game #148735800 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:03:06 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 26.55 USD ) -Seat 10: Hero ( $ 22.80 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 9s, Td, 3c, 4c ] -Hero folds -Villain does not show cards -Villain wins $ 0.50 USD from main pot - - - -Everleaf Gaming Game #148735813 -***** Hand history for game #148735813 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:03:13 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 26.80 USD ) -Seat 10: Hero ( $ 22.55 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Th, 4c, 9h, 2h ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 9d, 5h, Kd ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins $ 0.95 USD from main pot - - - -Everleaf Gaming Game #148735851 -***** Hand history for game #148735851 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:03:30 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 27.25 USD ) -Seat 10: Hero ( $ 22.05 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 9s, Jc, 6c, 9c ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ 9d, 5s, 2d ] -Villain checks -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ Th ] -Villain checks -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -** Dealing River ** [ 5h ] -Villain checks -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -Hero shows [ 9s, Jc, 6c, 9c ] a full house, nines full of fives -Villain does not show cards -Hero wins high ($ 5.70 USD) from main pot with a full house, nines full of fives [ 9s, 9c, 9d, 5s, 5h ] - - - -Everleaf Gaming Game #148735911 -***** Hand history for game #148735911 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:03:59 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 24.25 USD ) -Seat 10: Hero ( $ 24.75 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Ac, 5d, 3d, Qs ] -Villain calls [$ 0.25 USD] -Hero raises [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ Ts, 3c, 8d ] -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ 9h ] -Hero checks -Villain checks -** Dealing River ** [ Qd ] -Hero checks -Villain checks -Hero shows [ Ac, 5d, 3d, Qs ] two pairs, queens and threes -Villain shows [ Qc, 2h, As, 9s ] two pairs, queens and nines -Villain wins high ($ 2.85 USD) from main pot with two pairs, queens and nines [ Qc, Qd, Ts, 9s, 9h ] - - - -Everleaf Gaming Game #148735968 -***** Hand history for game #148735968 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:04:27 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25.60 USD ) -Seat 10: Hero ( $ 23.25 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 7h, As, 6h, 3c ] -Hero raises [$ 0.75 USD] -Villain raises [$ 1 USD] -Hero calls [$ 0.50 USD] -** Dealing Flop ** [ 7c, 4h, Ks ] -Villain checks -Hero checks -** Dealing Turn ** [ 8h ] -Villain checks -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -** Dealing River ** [ Qh ] -Villain checks -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -Hero shows [ 7h, As, 6h, 3c ] a flush, queen high -Villain does not show cards -Hero wins high ($ 3.33 USD) from main pot with a flush, queen high [ Qh, 8h, 7h, 6h, 4h ] -Hero wins low ($3.32) from main pot with 8, 7, 4, 3, A [ As, 8h, 7c, 4h, 3c ] - - - -Everleaf Gaming Game #148736022 -***** Hand history for game #148736022 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:04:52 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.10 USD ) -Seat 10: Hero ( $ 26.40 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 9d, As, Ac, 9s ] -Villain calls [$ 0.25 USD] -Hero raises [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 2c, Qh, 4h ] -Hero: bets [$ 0.50 USD] -Villain folds -Hero does not show cards -Hero wins $ 1.90 USD from main pot - - - -Everleaf Gaming Game #148736049 -***** Hand history for game #148736049 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:05:06 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.10 USD ) -Seat 10: Hero ( $ 27.30 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 2d, 3d, Jh, Kh ] -Hero calls [$ 0.25 USD] -Villain raises [$ 0.50 USD] -Hero calls [$ 0.50 USD] -** Dealing Flop ** [ Qd, Jd, 4c ] -Villain: bets [$ 0.50 USD] -Hero calls [$ 0.50 USD] -** Dealing Turn ** [ 5d ] -Villain: bets [$ 1 USD] -Hero calls [$ 1 USD] -** Dealing River ** [ Ac ] -Villain: bets [$ 1 USD] -Hero raises [$ 2 USD] -Villain calls [$ 1 USD] -Hero shows [ 2d, 3d, Jh, Kh ] a flush, queen high -Villain does not show cards -Hero wins high ($ 4.28 USD) from main pot with a flush, queen high [ Qd, Jd, 5d, 3d, 2d ] -Hero wins low ($4.27) from main pot with 5, 4, 3, 2, A [ Ac, 5d, 4c, 3d, 2d ] - - - -Everleaf Gaming Game #148736101 -***** Hand history for game #148736101 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:05:34 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 16.60 USD ) -Seat 10: Hero ( $ 31.35 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Ks, 6c, As, 2s ] -Villain folds -Hero does not show cards -Hero wins $ 0.50 USD from main pot - - - -Everleaf Gaming Game #148736116 -***** Hand history for game #148736116 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:05:40 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 16.35 USD ) -Seat 10: Hero ( $ 31.60 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 9h, Kc, Ah, Td ] -Hero raises [$ 0.75 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 2c, Jh, 5h ] -Villain checks -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ Jd ] -Villain checks -Hero checks -** Dealing River ** [ 2s ] -Villain checks -Hero checks -Villain shows [ Ts, 2h, 3d, As ] three of a kind, twos -Hero does not show cards -Villain wins high ($ 2.85 USD) from main pot with three of a kind, twos [ As, Jh, 2h, 2c, 2s ] - - - -Everleaf Gaming Game #148736205 -***** Hand history for game #148736205 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:06:19 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 17.70 USD ) -Seat 10: Hero ( $ 30.10 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 8d, 7s, 7c, Jd ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ Ac, Ts, Ks ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.95 USD) from main pot - - - -Everleaf Gaming Game #148736235 -***** Hand history for game #148736235 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:06:35 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 18.15 USD ) -Seat 10: Hero ( $ 29.60 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Th, Ad, Kd, Jh ] -Hero raises [$ 0.75 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 9h, 3c, 9s ] -Villain checks -Hero checks -** Dealing Turn ** [ 5c ] -Villain: bets [$ 1 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 1.90 USD) from main pot - - - -Everleaf Gaming Game #148736268 -***** Hand history for game #148736268 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:06:50 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 19.05 USD ) -Seat 10: Hero ( $ 28.60 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ As, 3c, 6h, 7h ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 2s, Ah, Jd ] -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ 7d ] -Hero checks -Villain checks -** Dealing River ** [ 4s ] -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -Hero shows [ As, 3c, 6h, 7h ] two pairs, aces and sevens -Villain shows [ 3d, 4h, 4d, 2d ] three of a kind, fours -Villain wins high ($ 1.90 USD) from main pot with three of a kind, fours [ Ah, Jd, 4h, 4d, 4s ] -Hero wins low ($1.90) from main pot with 6, 4, 3, 2, A [ Ah, 6h, 4s, 3c, 2s ] - - - -Everleaf Gaming Game #148736316 -***** Hand history for game #148736316 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:07:13 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 18.95 USD ) -Seat 10: Hero ( $ 28.50 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 4d, 4s, 2h, 4h ] -Hero folds -Villain does not show cards -Villain wins high ($ 0.50 USD) from main pot - - - -Everleaf Gaming Game #148736331 -***** Hand history for game #148736331 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:07:20 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 19.20 USD ) -Seat 10: Hero ( $ 28.25 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 4h, 9s, Kd, 5s ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 5d, Td, Js ] -Hero checks -Villain checks -** Dealing Turn ** [ 7d ] -Hero checks -Villain checks -** Dealing River ** [ 2c ] -Hero checks -Villain checks -Hero shows [ 4h, 9s, Kd, 5s ] a pair of fives -Villain shows [ 4c, Ts, 9h, 4s ] a pair of tens -Villain wins high ($ 0.95 USD) from main pot with a pair of tens [ Js, Ts, Td, 9h, 7d ] - - - -Everleaf Gaming Game #148736380 -***** Hand history for game #148736380 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:07:46 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 19.65 USD ) -Seat 10: Hero ( $ 27.75 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Js, Qh, 8s, Ks ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ 6d, 2c, 5c ] -Villain checks -Hero checks -** Dealing Turn ** [ 7d ] -Villain checks -Hero checks -** Dealing River ** [ 2h ] -Villain: bets [$ 1 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.48 USD) from main pot -Villain wins low ($0.47) from main pot - - - -Everleaf Gaming Game #148736454 -***** Hand history for game #148736454 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:08:20 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 20.10 USD ) -Seat 10: Hero ( $ 27.25 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Jd, 2c, Td, 2s ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ Qh, Ad, 6s ] -Hero checks -Villain checks -** Dealing Turn ** [ 9h ] -Hero checks -Villain checks -** Dealing River ** [ Ks ] -Hero: bets [$ 1 USD] -Villain folds -Hero does not show cards -Hero wins $ 0.95 USD from main pot - - - -Everleaf Gaming Game #148736512 -***** Hand history for game #148736512 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:08:46 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 19.60 USD ) -Seat 10: Hero ( $ 27.70 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 8d, Qc, 8c, 7d ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ 6s, Kd, 5d ] -Villain: bets [$ 0.50 USD] -Hero raises [$ 1 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ 6d ] -Villain: bets [$ 1 USD] -Hero calls [$ 1 USD] -** Dealing River ** [ 3h ] -Villain: bets [$ 1 USD] -Hero calls [$ 1 USD] -Villain shows [ 2s, 5h, 9c, 6c ] a full house, sixes full of fives -Hero shows [ 8d, Qc, 8c, 7d ] a flush, king high -Villain wins high ($ 3.33 USD) from main pot with a full house, sixes full of fives [ 6c, 6s, 6d, 5h, 5d ] -Hero wins low ($3.32) from main pot with 8, 7, 6, 5, 3 [ 8d, 7d, 6s, 5d, 3h ] - - - -Everleaf Gaming Game #148736585 -***** Hand history for game #148736585 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:09:23 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 19.43 USD ) -Seat 10: Hero ( $ 27.52 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Qh, Tc, 7h, 3c ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 5c, 6s, 9s ] -Hero checks -Villain checks -** Dealing Turn ** [ 9h ] -Hero checks -Villain checks -** Dealing River ** [ Qc ] -Hero checks -Villain checks -Hero shows [ Qh, Tc, 7h, 3c ] two pairs, queens and nines -Villain does not show cards -Hero wins high ($ 0.95 USD) from main pot with two pairs, queens and nines [ Qh, Qc, Tc, 9s, 9h ] - - - -Everleaf Gaming Game #148736633 -***** Hand history for game #148736633 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:09:44 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 18.93 USD ) -Seat 10: Hero ( $ 27.97 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 3s, Tc, 7d, 4h ] -Hero folds -Villain does not show cards -Villain wins high ($ 0.50 USD) from main pot - - - -Everleaf Gaming Game #148736641 -***** Hand history for game #148736641 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:09:52 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 19.18 USD ) -Seat 10: Hero ( $ 27.72 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 7h, Td, 3d, Kh ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 4d, 6c, Ad ] -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ Js ] -Hero checks -Villain checks -** Dealing River ** [ Tc ] -Hero checks -Villain checks -Hero shows [ 7h, Td, 3d, Kh ] a pair of tens -Villain shows [ 3c, Ts, Kc, 5c ] a pair of tens -Villain wins high ($ 0.47 USD) from main pot with a pair of tens [ Ad, Kc, Js, Ts, Tc ] -Hero wins high ($ 0.48 USD) from main pot with a pair of tens [ Ad, Kh, Js, Td, Tc ] -Villain wins low ($0.95) from main pot with 6, 5, 4, 3, A [ Ad, 6c, 5c, 4d, 3c ] - - - -Everleaf Gaming Game #148736705 -***** Hand history for game #148736705 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:10:20 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 19.60 USD ) -Seat 10: Hero ( $ 27.20 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 6s, 3s, Th, Td ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ 3h, 9s, 4c ] -Villain checks -Hero checks -** Dealing Turn ** [ As ] -Villain checks -Hero checks -** Dealing River ** [ 5c ] -Villain checks -Hero checks -Villain shows [ 2d, Ks, 8s, 9d ] a pair of nines -Hero shows [ 6s, 3s, Th, Td ] a pair of tens -Hero wins high ($ 0.48 USD) from main pot with a pair of tens [ As, Th, Td, 9s, 5c ] -Hero wins low ($0.47) from main pot with 6, 5, 4, 3, A [ As, 6s, 5c, 4c, 3s ] - - - -Everleaf Gaming Game #148736743 -***** Hand history for game #148736743 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:10:44 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 19.10 USD ) -Seat 10: Hero ( $ 27.65 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Qd, Qs, Qh, 6h ] -Villain raises [$ 0.75 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 1 USD) from main pot - - - -Everleaf Gaming Game #148736763 -***** Hand history for game #148736763 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:10:53 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 19.60 USD ) -Seat 10: Hero ( $ 27.15 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Th, 8c, 5s, Qs ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ 6s, 7d, 3h ] -Villain checks -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ Kh ] -Villain checks -Hero checks -** Dealing River ** [ Ah ] -Villain checks -Hero checks -Villain shows [ 3d, Kd, 8d, 5h ] two pairs, kings and threes -Hero does not show cards -Villain wins high ($ 0.95 USD) from main pot with two pairs, kings and threes [ Ah, Kd, Kh, 3d, 3h ] -Villain wins low ($0.95) from main pot with 7, 6, 5, 3, A [ Ah, 7d, 6s, 5h, 3d ] - - - -Everleaf Gaming Game #148736826 -***** Hand history for game #148736826 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:11:25 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 20.50 USD ) -Seat 10: Hero ( $ 26.15 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Ac, 6s, 3d, Th ] -Villain raises [$ 0.75 USD] -Hero calls [$ 0.50 USD] -** Dealing Flop ** [ 4h, 3h, As ] -Hero: bets [$ 0.50 USD] -Villain raises [$ 1 USD] -Hero calls [$ 0.50 USD] -** Dealing Turn ** [ 5c ] -Hero checks -Villain: bets [$ 1 USD] -Hero calls [$ 1 USD] -** Dealing River ** [ Ks ] -Hero checks -Villain: bets [$ 1 USD] -Hero calls [$ 1 USD] -Villain shows [ Ad, Ah, Qc, 6d ] three of a kind, aces -Hero shows [ Ac, 6s, 3d, Th ] two pairs, aces and threes -Villain wins high ($ 3.80 USD) from main pot with three of a kind, aces [ Ad, Ah, As, Ks, 5c ] -Villain wins low ($1.90) from main pot with 6, 5, 4, 3, A [ Ad, 6d, 5c, 4h, 3h ] -Hero wins low ($1.90) from main pot with 6, 5, 4, 3, A [ Ac, 6s, 5c, 4h, 3h ] - - - -Everleaf Gaming Game #148736881 -***** Hand history for game #148736881 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:11:49 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.20 USD ) -Seat 10: Hero ( $ 24.05 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ As, Qc, 7d, Ts ] -Hero raises [$ 0.75 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 3h, 5s, 6c ] -Villain checks -Hero checks -** Dealing Turn ** [ 8s ] -Villain checks -Hero checks -** Dealing River ** [ Th ] -Villain checks -Hero checks -Villain shows [ Ks, Ad, 2c, 2s ] a pair of twos -Hero shows [ As, Qc, 7d, Ts ] a pair of tens -Hero wins high ($ 0.95 USD) from main pot with a pair of tens [ As, Ts, Th, 8s, 6c ] -Villain wins low ($0.95) from main pot with 6, 5, 3, 2, A [ Ad, 6c, 5s, 3h, 2c ] - - - -Everleaf Gaming Game #148736929 -***** Hand history for game #148736929 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:12:14 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.15 USD ) -Seat 10: Hero ( $ 24 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Ac, 2s, 2h, As ] -Villain calls [$ 0.25 USD] -Hero raises [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 5d, 3d, 6s ] -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ 6h ] -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -** Dealing River ** [ 7s ] -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -Hero shows [ Ac, 2s, 2h, As ] two pairs, aces and sixes -Villain shows [ 4c, Ts, 5c, 8d ] a straight, eight high -Villain wins high ($ 3.33 USD) from main pot with a straight, eight high [ 8d, 7s, 6s, 5d, 4c ] -Hero wins low ($3.32) from main pot with 6, 5, 3, 2, A [ Ac, 6s, 5d, 3d, 2s ] - - - -Everleaf Gaming Game #148736970 -***** Hand history for game #148736970 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:12:35 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.98 USD ) -Seat 10: Hero ( $ 23.82 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 9d, 9c, 2d, 2s ] -Hero raises [$ 0.75 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ Kh, 6d, 4c ] -Villain checks -Hero checks -** Dealing Turn ** [ 3d ] -Villain checks -Hero checks -** Dealing River ** [ 6c ] -Villain checks -Hero checks -Villain shows [ 5d, Qh, 4s, 8d ] two pairs, sixes and fours -Hero shows [ 9d, 9c, 2d, 2s ] two pairs, nines and sixes -Hero wins high ($ 0.95 USD) from main pot with two pairs, nines and sixes [ Kh, 9d, 9c, 6d, 6c ] -Villain wins low ($0.95) from main pot with 8, 6, 5, 4, 3 [ 8d, 6d, 5d, 4c, 3d ] - - - -Everleaf Gaming Game #148737009 -***** Hand history for game #148737009 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:12:53 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.93 USD ) -Seat 10: Hero ( $ 23.77 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 3h, 5d, 9c, 8d ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 2d, Tc, 8c ] -Hero checks -Villain checks -** Dealing Turn ** [ 8s ] -Hero: bets [$ 1 USD] -Villain folds -Hero does not show cards -Hero wins $ 0.95 USD from main pot - - - -Everleaf Gaming Game #148737047 -***** Hand history for game #148737047 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:13:12 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.43 USD ) -Seat 10: Hero ( $ 24.22 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 9c, Kc, 2d, 5c ] -Hero folds -Villain does not show cards -Villain wins $ 0.50 USD from main pot - - - -Everleaf Gaming Game #148737063 -***** Hand history for game #148737063 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:13:20 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.68 USD ) -Seat 10: Hero ( $ 23.97 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 5s, 9d, Ad, Qd ] -Villain calls [$ 0.25 USD] -Hero raises [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ Ah, 3d, Qh ] -Hero: bets [$ 0.50 USD] -Villain raises [$ 1 USD] -Hero calls [$ 0.50 USD] -** Dealing Turn ** [ 3h ] -Hero checks -Villain: bets [$ 1 USD] -Hero calls [$ 1 USD] -** Dealing River ** [ 2h ] -Hero checks -Villain checks -Hero shows [ 5s, 9d, Ad, Qd ] two pairs, aces and queens -Villain shows [ 6h, As, Qc, 6s ] two pairs, aces and queens -Villain wins high ($ 2.85 USD) from main pot with two pairs, aces and queens [ As, Ah, Qc, Qh, 3d ] -Hero wins high ($ 2.85 USD) from main pot with two pairs, aces and queens [ Ad, Ah, Qd, Qh, 3d ] - - - -Everleaf Gaming Game #148737126 -***** Hand history for game #148737126 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:13:51 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.53 USD ) -Seat 10: Hero ( $ 23.82 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Ah, 6c, Kc, 2c ] -Hero raises [$ 0.75 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 4h, 2h, 2d ] -Villain checks -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ 6h ] -Villain: bets [$ 1 USD] -Hero raises [$ 2 USD] -Villain calls [$ 1 USD] -** Dealing River ** [ 7d ] -Villain checks -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -Hero shows [ Ah, 6c, Kc, 2c ] a full house, twos full of sixes -Villain shows [ 5h, 3c, 9c, Th ] a flush, ten high -Hero wins high ($ 4.28 USD) from main pot with a full house, twos full of sixes [ 6c, 6h, 2c, 2h, 2d ] -Villain wins low ($4.27) from main pot with 6, 5, 4, 3, 2 [ 6h, 5h, 4h, 3c, 2h ] - - - -Everleaf Gaming Game #148737179 -***** Hand history for game #148737179 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:14:17 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.30 USD ) -Seat 10: Hero ( $ 23.60 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 7c, 3h, 5s, 6c ] -Villain raises [$ 0.75 USD] -Hero calls [$ 0.50 USD] -** Dealing Flop ** [ Tc, Ad, 5c ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 1.90 USD) from main pot - - - -Everleaf Gaming Game #148737225 -***** Hand history for game #148737225 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:14:38 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.20 USD ) -Seat 10: Hero ( $ 22.60 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 6c, 9s, Ad, Ac ] -Hero raises [$ 0.75 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 7s, 6s, 9c ] -Villain: bets [$ 0.50 USD] -Hero calls [$ 0.50 USD] -** Dealing Turn ** [ 4s ] -Villain: bets [$ 1 USD] -Hero calls [$ 1 USD] -** Dealing River ** [ Qh ] -Villain: bets [$ 1 USD] -Hero calls [$ 1 USD] -Villain shows [ 6h, 7d, 9h, 6d ] three of a kind, sixes -Hero does not show cards -Villain wins high ($ 6.65 USD) from main pot with three of a kind, sixes [ Qh, 9c, 6h, 6d, 6s ] - - - -Everleaf Gaming Game #148737270 -***** Hand history for game #148737270 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:14:58 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25.35 USD ) -Seat 10: Hero ( $ 19.10 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Th, Jc, 7s, 8d ] -Villain calls [$ 0.25 USD] -Hero raises [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 6c, Js, 7h ] -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ Kc ] -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -** Dealing River ** [ 2h ] -Hero: bets [$ 1 USD] -Villain folds -Hero does not show cards -Hero wins $ 4.75 USD from main pot - - - -Everleaf Gaming Game #148737344 -***** Hand history for game #148737344 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:15:31 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.85 USD ) -Seat 10: Hero ( $ 21.35 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Qs, 3c, 7c, 8h ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ 9d, Qd, 8d ] -Villain checks -Hero: bets [$ 0.50 USD] -Villain folds -Hero does not show cards -Hero wins $ 0.95 USD from main pot - - - -Everleaf Gaming Game #148737405 -***** Hand history for game #148737405 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:16:03 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.35 USD ) -Seat 10: Hero ( $ 21.80 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 9s, 8s, Jh, Th ] -Villain folds -Hero does not show cards -Hero wins $ 0.50 USD from main pot - - - -Everleaf Gaming Game #148737425 -***** Hand history for game #148737425 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:16:11 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.10 USD ) -Seat 10: Hero ( $ 22.05 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 5h, Jd, 3c, Kd ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ 2s, 6d, 7s ] -Villain: bets [$ 0.50 USD] -Hero calls [$ 0.50 USD] -** Dealing Turn ** [ Ac ] -Villain: bets [$ 1 USD] -Hero calls [$ 1 USD] -** Dealing River ** [ 2c ] -Villain: bets [$ 1 USD] -Hero calls [$ 1 USD] -Villain shows [ Td, 2d, 7c, 4c ] a full house, twos full of sevens -Hero shows [ 5h, Jd, 3c, Kd ] a pair of twos -Villain wins high ($ 2.85 USD) from main pot with a full house, twos full of sevens [ 7c, 7s, 2d, 2s, 2c ] -Hero wins low ($2.85) from main pot with 6, 5, 3, 2, A [ Ac, 6d, 5h, 3c, 2s ] - - - -Everleaf Gaming Game #148737475 -***** Hand history for game #148737475 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:16:38 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.95 USD ) -Seat 10: Hero ( $ 21.90 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Kc, 6c, 2c, 5h ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ Ks, 3h, As ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.95 USD) from main pot - - - -Everleaf Gaming Game #148737509 -***** Hand history for game #148737509 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:16:55 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.40 USD ) -Seat 10: Hero ( $ 21.40 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 2s, 4c, Td, 9d ] -Hero folds -Villain does not show cards -Villain wins high ($ 0.50 USD) from main pot - - - -Everleaf Gaming Game #148737530 -***** Hand history for game #148737530 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:17:02 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.65 USD ) -Seat 10: Hero ( $ 21.15 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 8d, Ts, 4h, 4s ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 2s, Ac, 9h ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.95 USD) from main pot - - - -Everleaf Gaming Game #148737550 -***** Hand history for game #148737550 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:17:16 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 23.10 USD ) -Seat 10: Hero ( $ 20.65 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 7c, Jc, Kd, Kc ] -Hero raises [$ 0.75 USD] -Villain raises [$ 1 USD] -Hero calls [$ 0.50 USD] -** Dealing Flop ** [ 5c, 7s, Tc ] -Villain checks -Hero checks -** Dealing Turn ** [ 7d ] -Villain checks -Hero: bets [$ 1 USD] -Villain folds -Hero does not show cards -Hero wins $ 2.85 USD from main pot - - - -Everleaf Gaming Game #148737589 -***** Hand history for game #148737589 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:17:38 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.60 USD ) -Seat 10: Hero ( $ 22 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 5d, Tc, 3h, Ks ] -Villain raises [$ 0.75 USD] -Hero folds -Villain does not show cards -Villain wins $ 1 USD from main pot - - - -Everleaf Gaming Game #148737612 -***** Hand history for game #148737612 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:17:49 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.10 USD ) -Seat 10: Hero ( $ 21.50 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 6c, Qh, Kh, Jc ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ 7c, 5h, 2c ] -Villain checks -Hero checks -** Dealing Turn ** [ As ] -Villain checks -Hero checks -** Dealing River ** [ 2h ] -Villain checks -Hero checks -Villain shows [ Jh, 9h, 6s, 2s ] three of a kind, twos -Hero does not show cards -Villain wins high ($ 0.48 USD) from main pot with three of a kind, twos [ As, Jh, 2s, 2c, 2h ] -Villain wins low ($0.47) from main pot with 7, 6, 5, 2, A [ As, 7c, 6s, 5h, 2s ] - - - -Everleaf Gaming Game #148737651 -***** Hand history for game #148737651 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:18:10 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.55 USD ) -Seat 10: Hero ( $ 21 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 2d, 3d, Tc, 8s ] -Villain raises [$ 0.75 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 1 USD) from main pot - - - -Everleaf Gaming Game #148737675 -***** Hand history for game #148737675 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:18:21 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 23.05 USD ) -Seat 10: Hero ( $ 20.50 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 6h, Ah, 6d, Ac ] -Hero raises [$ 0.75 USD] -Villain folds -Hero does not show cards -Hero wins $ 1 USD from main pot - - - -Everleaf Gaming Game #148737692 -***** Hand history for game #148737692 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:18:28 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.55 USD ) -Seat 10: Hero ( $ 21 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Kh, 7h, 2c, Jc ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 7s, Jd, 5c ] -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ 8c ] -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -** Dealing River ** [ 3c ] -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -Hero shows [ Kh, 7h, 2c, Jc ] a flush, jack high -Villain shows [ Ad, 4c, 8h, 5s ] two pairs, eights and fives -Hero wins high ($ 2.85 USD) from main pot with a flush, jack high [ Jc, 8c, 5c, 3c, 2c ] -Villain wins low ($2.85) from main pot with 7, 5, 4, 3, A [ Ad, 7s, 5c, 4c, 3c ] - - - -Everleaf Gaming Game #148737727 -***** Hand history for game #148737727 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:18:50 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 22.40 USD ) -Seat 10: Hero ( $ 20.85 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 2s, 2c, 8c, Jh ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ 4s, 5h, Ah ] -Villain checks -Hero checks -** Dealing Turn ** [ 2d ] -Villain checks -Hero: bets [$ 1 USD] -Villain folds -Hero does not show cards -Hero wins $ 0.95 USD from main pot - - - -Everleaf Gaming Game #148737762 -***** Hand history for game #148737762 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:19:09 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.90 USD ) -Seat 10: Hero ( $ 21.30 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 3d, Qd, Js, 7d ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 5d, 9d, 2c ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero calls [$ 0.50 USD] -** Dealing Turn ** [ 2d ] -Hero checks -Villain checks -** Dealing River ** [ Qh ] -Hero: bets [$ 1 USD] -Villain folds -Hero does not show cards -Hero wins $ 1.90 USD from main pot - - - -Everleaf Gaming Game #148737833 -***** Hand history for game #148737833 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:19:45 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 20.90 USD ) -Seat 10: Hero ( $ 22.20 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Kd, 6c, As, 7s ] -Hero raises [$ 0.75 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 2c, 4h, 6s ] -Villain checks -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ 7c ] -Villain checks -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -** Dealing River ** [ 2h ] -Villain checks -Hero checks -Villain shows [ Jc, Ad, 9h, 5c ] a pair of twos -Hero shows [ Kd, 6c, As, 7s ] two pairs, sevens and sixes -Hero wins high ($ 2.38 USD) from main pot with two pairs, sevens and sixes [ 7s, 7c, 6c, 6s, 4h ] -Villain wins low ($2.37) from main pot with 6, 5, 4, 2, A [ Ad, 6s, 5c, 4h, 2c ] - - - -Everleaf Gaming Game #148737880 -***** Hand history for game #148737880 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:20:12 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 20.77 USD ) -Seat 10: Hero ( $ 22.08 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 7h, Qh, 2s, Js ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 8h, As, Ac ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.95 USD) from main pot - - - -Everleaf Gaming Game #148737917 -***** Hand history for game #148737917 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:20:29 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.22 USD ) -Seat 10: Hero ( $ 21.58 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 5c, As, 4s, 8h ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ Jc, Kh, 3c ] -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.95 USD) from main pot - - - -Everleaf Gaming Game #148737951 -***** Hand history for game #148737951 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:20:44 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 21.67 USD ) -Seat 10: Hero ( $ 21.08 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 7c, Jd, Qd, Th ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ Jc, 5h, 6d ] -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ 2h ] -Hero checks -Villain checks -** Dealing River ** [ Ts ] -Hero: bets [$ 1 USD] -Villain raises [$ 2 USD] -Hero calls [$ 1 USD] -Villain shows [ Kd, Tc, Td, 6h ] three of a kind, tens -Hero does not show cards -Villain wins high ($ 5.70 USD) from main pot with three of a kind, tens [ Jc, Tc, Td, Ts, 6d ] - - - -Everleaf Gaming Game #148738008 -***** Hand history for game #148738008 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:21:16 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 24.37 USD ) -Seat 10: Hero ( $ 18.08 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 9d, Ac, Qs, Ks ] -Hero raises [$ 0.75 USD] -Villain folds -Hero does not show cards -Hero wins $ 1 USD from main pot - - - -Everleaf Gaming Game #148738022 -***** Hand history for game #148738022 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:21:23 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 23.87 USD ) -Seat 10: Hero ( $ 18.58 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 5s, 9c, 2s, Js ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 3c, Ad, 6d ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins $ 0.95 USD from main pot - - - -Everleaf Gaming Game #148738049 -***** Hand history for game #148738049 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:21:38 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 24.32 USD ) -Seat 10: Hero ( $ 18.08 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 3c, 9s, 2d, Jd ] -Hero calls [$ 0.25 USD] -Villain raises [$ 0.50 USD] -Hero calls [$ 0.50 USD] -** Dealing Flop ** [ 3s, 4s, Tc ] -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins $ 1.90 USD from main pot - - - -Everleaf Gaming Game #148738093 -***** Hand history for game #148738093 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:21:58 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25.22 USD ) -Seat 10: Hero ( $ 17.08 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 9s, Ks, Th, 7d ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 6h, Ad, Ts ] -Hero checks -Villain checks -** Dealing Turn ** [ As ] -Hero: bets [$ 1 USD] -Villain folds -Hero does not show cards -Hero wins $ 0.95 USD from main pot - - - -Everleaf Gaming Game #148738137 -***** Hand history for game #148738137 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:22:19 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 24.72 USD ) -Seat 10: Hero ( $ 17.53 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Qh, 5s, Td, 4c ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ 5h, 7c, 2h ] -Villain checks -Hero checks -** Dealing Turn ** [ 8d ] -Villain checks -Hero checks -** Dealing River ** [ Ks ] -Villain checks -Hero checks -Villain shows [ Th, 6c, 6d, Kd ] a pair of kings -Hero shows [ Qh, 5s, Td, 4c ] a pair of fives -Villain wins high ($ 0.48 USD) from main pot with a pair of kings [ Kd, Ks, Th, 8d, 7c ] -Hero wins low ($0.47) from main pot with 8, 7, 5, 4, 2 [ 8d, 7c, 5s, 4c, 2h ] - - - -Everleaf Gaming Game #148738182 -***** Hand history for game #148738182 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:22:45 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 24.70 USD ) -Seat 10: Hero ( $ 17.50 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 2d, Qs, 6c, 9d ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 2h, Ac, As ] -Hero checks -Villain: bets [$ 0.50 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.95 USD) from main pot - - - -Everleaf Gaming Game #148738243 -***** Hand history for game #148738243 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:23:11 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25.15 USD ) -Seat 10: Hero ( $ 17 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 3s, Qh, 4h, Kc ] -Hero calls [$ 0.25 USD] -Villain checks -** Dealing Flop ** [ 2s, 3d, 9h ] -Villain checks -Hero checks -** Dealing Turn ** [ As ] -Villain checks -Hero checks -** Dealing River ** [ Kh ] -Villain checks -Hero checks -Villain shows [ 8d, 8c, 8h, 7h ] a pair of eights -Hero shows [ 3s, Qh, 4h, Kc ] two pairs, kings and threes -Hero wins high ($ 0.48 USD) from main pot with two pairs, kings and threes [ As, Kc, Kh, 3s, 3d ] -Villain wins low ($0.47) from main pot with 8, 7, 3, 2, A [ As, 8d, 7h, 3d, 2s ] - - - -Everleaf Gaming Game #148738287 -***** Hand history for game #148738287 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:23:32 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25.12 USD ) -Seat 10: Hero ( $ 16.98 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 7c, Tc, Kd, 2h ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 9c, Kh, Jd ] -Hero: bets [$ 0.50 USD] -Villain folds -Hero does not show cards -Hero wins $ 0.95 USD from main pot - - - -Everleaf Gaming Game #148738314 -***** Hand history for game #148738314 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:23:46 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 24.62 USD ) -Seat 10: Hero ( $ 17.43 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Qs, Ah, 4c, 5c ] -Hero raises [$ 0.75 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 9h, Kd, 3c ] -Villain checks -Hero checks -** Dealing Turn ** [ 3s ] -Villain checks -Hero checks -** Dealing River ** [ Tc ] -Villain checks -Hero checks -Villain shows [ Qd, Jh, 8c, As ] a straight, king high -Hero does not show cards -Villain wins high ($ 1.90 USD) from main pot with a straight, king high [ Kd, Qd, Jh, Tc, 9h ] - - - -Everleaf Gaming Game #148738348 -***** Hand history for game #148738348 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:24:03 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25.52 USD ) -Seat 10: Hero ( $ 16.43 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ Qs, 3s, 9d, As ] -Villain calls [$ 0.25 USD] -Hero raises [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ 7h, 5s, 6h ] -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ Ks ] -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -** Dealing River ** [ 4c ] -Hero: bets [$ 1 USD] -Villain raises [$ 2 USD] -Hero calls [$ 1 USD] -Villain shows [ Jh, Kd, 8c, 7s ] a straight, eight high -Hero shows [ Qs, 3s, 9d, As ] high card ace -Villain wins high ($ 4.28 USD) from main pot with a straight, eight high [ 8c, 7s, 6h, 5s, 4c ] -Hero wins low ($4.27) from main pot with 6, 5, 4, 3, A [ As, 6h, 5s, 4c, 3s ] - - - -Everleaf Gaming Game #148738403 -***** Hand history for game #148738403 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:24:31 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25.30 USD ) -Seat 10: Hero ( $ 16.20 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 2s, 9d, 3h, 7c ] -Hero folds -Villain does not show cards -Villain wins high ($ 0.50 USD) from main pot - - - -Everleaf Gaming Game #148738420 -***** Hand history for game #148738420 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:24:36 -Table Kentfield I -Seat 6 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25.55 USD ) -Seat 10: Hero ( $ 15.95 USD ) -Villain: posts small blind [$ 0.25 USD] -Hero: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 6h, 6d, 7d, 9h ] -Villain calls [$ 0.25 USD] -Hero checks -** Dealing Flop ** [ 3c, Jh, 8d ] -Hero checks -Villain checks -** Dealing Turn ** [ Qs ] -Hero checks -Villain checks -** Dealing River ** [ 6c ] -Hero: bets [$ 1 USD] -Villain calls [$ 1 USD] -Hero shows [ 6h, 6d, 7d, 9h ] three of a kind, sixes -Villain shows [ Ac, 7c, 3h, 5s ] a pair of threes -Hero wins high ($ 1.43 USD) from main pot with three of a kind, sixes [ Qs, Jh, 6h, 6d, 6c ] -Villain wins low ($1.42) from main pot with 8, 6, 5, 3, A [ Ac, 8d, 6c, 5s, 3c ] - - - -Everleaf Gaming Game #148738468 -***** Hand history for game #148738468 ***** -$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:24:57 -Table Kentfield I -Seat 10 is the button -Total number of players: 2 -Seat 6: Villain ( $ 25.47 USD ) -Seat 10: Hero ( $ 15.88 USD ) -Hero: posts small blind [$ 0.25 USD] -Villain: posts big blind [$ 0.50 USD] -** Dealing down cards ** -Dealt to Hero [ 6s, Kd, 3c, Qd ] -Hero raises [$ 0.75 USD] -Villain calls [$ 0.50 USD] -** Dealing Flop ** [ Jh, Th, 5d ] -Villain checks -Hero: bets [$ 0.50 USD] -Villain calls [$ 0.50 USD] -** Dealing Turn ** [ Ks ] -Villain checks -Hero checks -** Dealing River ** [ 9h ] -Villain checks -Hero checks -Villain shows [ Js, 4s, 8d, 6c ] a pair of jacks -Hero shows [ 6s, Kd, 3c, Qd ] a straight, king high -Hero wins high ($ 2.85 USD) from main pot with a straight, king high [ Kd, Qd, Jh, Th, 9h ] - - - +Everleaf Gaming Game #148735443 +***** Hand history for game #148735443 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:00:02 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25 USD ) +Seat 10: Hero ( $ 25 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 9c, 4h, Td, Jc ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 2s, Ad, 8d ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.95 USD) from main pot + + + +Everleaf Gaming Game #148735485 +***** Hand history for game #148735485 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:00:24 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25.45 USD ) +Seat 10: Hero ( $ 24.50 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 9d, 2h, 5c, 5d ] +Hero calls [$ 0.25 USD] +Villain raises [$ 0.50 USD] +Hero calls [$ 0.50 USD] +** Dealing Flop ** [ 8c, Jd, Td ] +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 1.90 USD) from main pot + + + +Everleaf Gaming Game #148735532 +***** Hand history for game #148735532 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:00:45 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 26.35 USD ) +Seat 10: Hero ( $ 23.50 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Kc, Kh, 2c, Kd ] +Villain raises [$ 0.75 USD] +Hero calls [$ 0.50 USD] +** Dealing Flop ** [ Ks, 5s, Qd ] +Hero: bets [$ 0.50 USD] +Villain folds +Hero does not show cards +Hero wins $ 1.90 USD from main pot + + + +Everleaf Gaming Game #148735563 +***** Hand history for game #148735563 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:01:04 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25.35 USD ) +Seat 10: Hero ( $ 24.40 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Qc, 5c, Ah, 5d ] +Hero raises [$ 0.75 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 6h, 8d, 9h ] +Villain checks +Hero checks +** Dealing Turn ** [ Ad ] +Villain: bets [$ 1 USD] +Hero folds +Villain does not show cards +Villain wins $ 1.90 USD from main pot + + + +Everleaf Gaming Game #148735617 +***** Hand history for game #148735617 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:01:32 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 26.25 USD ) +Seat 10: Hero ( $ 23.40 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 8s, 6s, 6h, 4h ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ As, 9c, Ks ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins $ 0.95 USD from main pot + + + +Everleaf Gaming Game #148735643 +***** Hand history for game #148735643 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:01:48 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 26.70 USD ) +Seat 10: Hero ( $ 22.90 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 5h, Ac, 9d, Qd ] +Hero raises [$ 0.75 USD] +Villain folds +Hero does not show cards +Hero wins $ 1 USD from main pot + + + +Everleaf Gaming Game #148735677 +***** Hand history for game #148735677 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:02:00 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 26.20 USD ) +Seat 10: Hero ( $ 23.40 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Qc, Qd, 5c, 8c ] +Villain calls [$ 0.25 USD] +Hero raises [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 5d, Ad, Jc ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins $ 1.90 USD from main pot + + + +Everleaf Gaming Game #148735718 +***** Hand history for game #148735718 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:02:24 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 27.10 USD ) +Seat 10: Hero ( $ 22.40 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Tc, 6c, 3c, Ac ] +Hero raises [$ 0.75 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ As, Jh, Ah ] +Villain checks +Hero: bets [$ 0.50 USD] +Villain folds +Hero does not show cards +Hero wins $ 1.90 USD from main pot + + + +Everleaf Gaming Game #148735755 +***** Hand history for game #148735755 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:02:43 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 26.10 USD ) +Seat 10: Hero ( $ 23.30 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Qd, 4c, 7c, 6c ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ Td, 6d, Ah ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins $ 0.95 USD from main pot + + + +Everleaf Gaming Game #148735800 +***** Hand history for game #148735800 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:03:06 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 26.55 USD ) +Seat 10: Hero ( $ 22.80 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 9s, Td, 3c, 4c ] +Hero folds +Villain does not show cards +Villain wins $ 0.50 USD from main pot + + + +Everleaf Gaming Game #148735813 +***** Hand history for game #148735813 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:03:13 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 26.80 USD ) +Seat 10: Hero ( $ 22.55 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Th, 4c, 9h, 2h ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 9d, 5h, Kd ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins $ 0.95 USD from main pot + + + +Everleaf Gaming Game #148735851 +***** Hand history for game #148735851 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:03:30 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 27.25 USD ) +Seat 10: Hero ( $ 22.05 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 9s, Jc, 6c, 9c ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ 9d, 5s, 2d ] +Villain checks +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ Th ] +Villain checks +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +** Dealing River ** [ 5h ] +Villain checks +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +Hero shows [ 9s, Jc, 6c, 9c ] a full house, nines full of fives +Villain does not show cards +Hero wins high ($ 5.70 USD) from main pot with a full house, nines full of fives [ 9s, 9c, 9d, 5s, 5h ] + + + +Everleaf Gaming Game #148735911 +***** Hand history for game #148735911 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:03:59 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 24.25 USD ) +Seat 10: Hero ( $ 24.75 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Ac, 5d, 3d, Qs ] +Villain calls [$ 0.25 USD] +Hero raises [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ Ts, 3c, 8d ] +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ 9h ] +Hero checks +Villain checks +** Dealing River ** [ Qd ] +Hero checks +Villain checks +Hero shows [ Ac, 5d, 3d, Qs ] two pairs, queens and threes +Villain shows [ Qc, 2h, As, 9s ] two pairs, queens and nines +Villain wins high ($ 2.85 USD) from main pot with two pairs, queens and nines [ Qc, Qd, Ts, 9s, 9h ] + + + +Everleaf Gaming Game #148735968 +***** Hand history for game #148735968 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:04:27 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25.60 USD ) +Seat 10: Hero ( $ 23.25 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 7h, As, 6h, 3c ] +Hero raises [$ 0.75 USD] +Villain raises [$ 1 USD] +Hero calls [$ 0.50 USD] +** Dealing Flop ** [ 7c, 4h, Ks ] +Villain checks +Hero checks +** Dealing Turn ** [ 8h ] +Villain checks +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +** Dealing River ** [ Qh ] +Villain checks +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +Hero shows [ 7h, As, 6h, 3c ] a flush, queen high +Villain does not show cards +Hero wins high ($ 3.33 USD) from main pot with a flush, queen high [ Qh, 8h, 7h, 6h, 4h ] +Hero wins low ($3.32) from main pot with 8, 7, 4, 3, A [ As, 8h, 7c, 4h, 3c ] + + + +Everleaf Gaming Game #148736022 +***** Hand history for game #148736022 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:04:52 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.10 USD ) +Seat 10: Hero ( $ 26.40 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 9d, As, Ac, 9s ] +Villain calls [$ 0.25 USD] +Hero raises [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 2c, Qh, 4h ] +Hero: bets [$ 0.50 USD] +Villain folds +Hero does not show cards +Hero wins $ 1.90 USD from main pot + + + +Everleaf Gaming Game #148736049 +***** Hand history for game #148736049 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:05:06 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.10 USD ) +Seat 10: Hero ( $ 27.30 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 2d, 3d, Jh, Kh ] +Hero calls [$ 0.25 USD] +Villain raises [$ 0.50 USD] +Hero calls [$ 0.50 USD] +** Dealing Flop ** [ Qd, Jd, 4c ] +Villain: bets [$ 0.50 USD] +Hero calls [$ 0.50 USD] +** Dealing Turn ** [ 5d ] +Villain: bets [$ 1 USD] +Hero calls [$ 1 USD] +** Dealing River ** [ Ac ] +Villain: bets [$ 1 USD] +Hero raises [$ 2 USD] +Villain calls [$ 1 USD] +Hero shows [ 2d, 3d, Jh, Kh ] a flush, queen high +Villain does not show cards +Hero wins high ($ 4.28 USD) from main pot with a flush, queen high [ Qd, Jd, 5d, 3d, 2d ] +Hero wins low ($4.27) from main pot with 5, 4, 3, 2, A [ Ac, 5d, 4c, 3d, 2d ] + + + +Everleaf Gaming Game #148736101 +***** Hand history for game #148736101 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:05:34 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 16.60 USD ) +Seat 10: Hero ( $ 31.35 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Ks, 6c, As, 2s ] +Villain folds +Hero does not show cards +Hero wins $ 0.50 USD from main pot + + + +Everleaf Gaming Game #148736116 +***** Hand history for game #148736116 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:05:40 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 16.35 USD ) +Seat 10: Hero ( $ 31.60 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 9h, Kc, Ah, Td ] +Hero raises [$ 0.75 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 2c, Jh, 5h ] +Villain checks +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ Jd ] +Villain checks +Hero checks +** Dealing River ** [ 2s ] +Villain checks +Hero checks +Villain shows [ Ts, 2h, 3d, As ] three of a kind, twos +Hero does not show cards +Villain wins high ($ 2.85 USD) from main pot with three of a kind, twos [ As, Jh, 2h, 2c, 2s ] + + + +Everleaf Gaming Game #148736205 +***** Hand history for game #148736205 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:06:19 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 17.70 USD ) +Seat 10: Hero ( $ 30.10 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 8d, 7s, 7c, Jd ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ Ac, Ts, Ks ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.95 USD) from main pot + + + +Everleaf Gaming Game #148736235 +***** Hand history for game #148736235 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:06:35 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 18.15 USD ) +Seat 10: Hero ( $ 29.60 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Th, Ad, Kd, Jh ] +Hero raises [$ 0.75 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 9h, 3c, 9s ] +Villain checks +Hero checks +** Dealing Turn ** [ 5c ] +Villain: bets [$ 1 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 1.90 USD) from main pot + + + +Everleaf Gaming Game #148736268 +***** Hand history for game #148736268 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:06:50 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 19.05 USD ) +Seat 10: Hero ( $ 28.60 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ As, 3c, 6h, 7h ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 2s, Ah, Jd ] +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ 7d ] +Hero checks +Villain checks +** Dealing River ** [ 4s ] +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +Hero shows [ As, 3c, 6h, 7h ] two pairs, aces and sevens +Villain shows [ 3d, 4h, 4d, 2d ] three of a kind, fours +Villain wins high ($ 1.90 USD) from main pot with three of a kind, fours [ Ah, Jd, 4h, 4d, 4s ] +Hero wins low ($1.90) from main pot with 6, 4, 3, 2, A [ Ah, 6h, 4s, 3c, 2s ] + + + +Everleaf Gaming Game #148736316 +***** Hand history for game #148736316 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:07:13 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 18.95 USD ) +Seat 10: Hero ( $ 28.50 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 4d, 4s, 2h, 4h ] +Hero folds +Villain does not show cards +Villain wins high ($ 0.50 USD) from main pot + + + +Everleaf Gaming Game #148736331 +***** Hand history for game #148736331 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:07:20 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 19.20 USD ) +Seat 10: Hero ( $ 28.25 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 4h, 9s, Kd, 5s ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 5d, Td, Js ] +Hero checks +Villain checks +** Dealing Turn ** [ 7d ] +Hero checks +Villain checks +** Dealing River ** [ 2c ] +Hero checks +Villain checks +Hero shows [ 4h, 9s, Kd, 5s ] a pair of fives +Villain shows [ 4c, Ts, 9h, 4s ] a pair of tens +Villain wins high ($ 0.95 USD) from main pot with a pair of tens [ Js, Ts, Td, 9h, 7d ] + + + +Everleaf Gaming Game #148736380 +***** Hand history for game #148736380 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:07:46 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 19.65 USD ) +Seat 10: Hero ( $ 27.75 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Js, Qh, 8s, Ks ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ 6d, 2c, 5c ] +Villain checks +Hero checks +** Dealing Turn ** [ 7d ] +Villain checks +Hero checks +** Dealing River ** [ 2h ] +Villain: bets [$ 1 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.48 USD) from main pot +Villain wins low ($0.47) from main pot + + + +Everleaf Gaming Game #148736454 +***** Hand history for game #148736454 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:08:20 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 20.10 USD ) +Seat 10: Hero ( $ 27.25 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Jd, 2c, Td, 2s ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ Qh, Ad, 6s ] +Hero checks +Villain checks +** Dealing Turn ** [ 9h ] +Hero checks +Villain checks +** Dealing River ** [ Ks ] +Hero: bets [$ 1 USD] +Villain folds +Hero does not show cards +Hero wins $ 0.95 USD from main pot + + + +Everleaf Gaming Game #148736512 +***** Hand history for game #148736512 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:08:46 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 19.60 USD ) +Seat 10: Hero ( $ 27.70 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 8d, Qc, 8c, 7d ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ 6s, Kd, 5d ] +Villain: bets [$ 0.50 USD] +Hero raises [$ 1 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ 6d ] +Villain: bets [$ 1 USD] +Hero calls [$ 1 USD] +** Dealing River ** [ 3h ] +Villain: bets [$ 1 USD] +Hero calls [$ 1 USD] +Villain shows [ 2s, 5h, 9c, 6c ] a full house, sixes full of fives +Hero shows [ 8d, Qc, 8c, 7d ] a flush, king high +Villain wins high ($ 3.33 USD) from main pot with a full house, sixes full of fives [ 6c, 6s, 6d, 5h, 5d ] +Hero wins low ($3.32) from main pot with 8, 7, 6, 5, 3 [ 8d, 7d, 6s, 5d, 3h ] + + + +Everleaf Gaming Game #148736585 +***** Hand history for game #148736585 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:09:23 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 19.43 USD ) +Seat 10: Hero ( $ 27.52 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Qh, Tc, 7h, 3c ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 5c, 6s, 9s ] +Hero checks +Villain checks +** Dealing Turn ** [ 9h ] +Hero checks +Villain checks +** Dealing River ** [ Qc ] +Hero checks +Villain checks +Hero shows [ Qh, Tc, 7h, 3c ] two pairs, queens and nines +Villain does not show cards +Hero wins high ($ 0.95 USD) from main pot with two pairs, queens and nines [ Qh, Qc, Tc, 9s, 9h ] + + + +Everleaf Gaming Game #148736633 +***** Hand history for game #148736633 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:09:44 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 18.93 USD ) +Seat 10: Hero ( $ 27.97 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 3s, Tc, 7d, 4h ] +Hero folds +Villain does not show cards +Villain wins high ($ 0.50 USD) from main pot + + + +Everleaf Gaming Game #148736641 +***** Hand history for game #148736641 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:09:52 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 19.18 USD ) +Seat 10: Hero ( $ 27.72 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 7h, Td, 3d, Kh ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 4d, 6c, Ad ] +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ Js ] +Hero checks +Villain checks +** Dealing River ** [ Tc ] +Hero checks +Villain checks +Hero shows [ 7h, Td, 3d, Kh ] a pair of tens +Villain shows [ 3c, Ts, Kc, 5c ] a pair of tens +Villain wins high ($ 0.47 USD) from main pot with a pair of tens [ Ad, Kc, Js, Ts, Tc ] +Hero wins high ($ 0.48 USD) from main pot with a pair of tens [ Ad, Kh, Js, Td, Tc ] +Villain wins low ($0.95) from main pot with 6, 5, 4, 3, A [ Ad, 6c, 5c, 4d, 3c ] + + + +Everleaf Gaming Game #148736705 +***** Hand history for game #148736705 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:10:20 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 19.60 USD ) +Seat 10: Hero ( $ 27.20 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 6s, 3s, Th, Td ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ 3h, 9s, 4c ] +Villain checks +Hero checks +** Dealing Turn ** [ As ] +Villain checks +Hero checks +** Dealing River ** [ 5c ] +Villain checks +Hero checks +Villain shows [ 2d, Ks, 8s, 9d ] a pair of nines +Hero shows [ 6s, 3s, Th, Td ] a pair of tens +Hero wins high ($ 0.48 USD) from main pot with a pair of tens [ As, Th, Td, 9s, 5c ] +Hero wins low ($0.47) from main pot with 6, 5, 4, 3, A [ As, 6s, 5c, 4c, 3s ] + + + +Everleaf Gaming Game #148736743 +***** Hand history for game #148736743 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:10:44 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 19.10 USD ) +Seat 10: Hero ( $ 27.65 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Qd, Qs, Qh, 6h ] +Villain raises [$ 0.75 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 1 USD) from main pot + + + +Everleaf Gaming Game #148736763 +***** Hand history for game #148736763 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:10:53 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 19.60 USD ) +Seat 10: Hero ( $ 27.15 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Th, 8c, 5s, Qs ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ 6s, 7d, 3h ] +Villain checks +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ Kh ] +Villain checks +Hero checks +** Dealing River ** [ Ah ] +Villain checks +Hero checks +Villain shows [ 3d, Kd, 8d, 5h ] two pairs, kings and threes +Hero does not show cards +Villain wins high ($ 0.95 USD) from main pot with two pairs, kings and threes [ Ah, Kd, Kh, 3d, 3h ] +Villain wins low ($0.95) from main pot with 7, 6, 5, 3, A [ Ah, 7d, 6s, 5h, 3d ] + + + +Everleaf Gaming Game #148736826 +***** Hand history for game #148736826 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:11:25 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 20.50 USD ) +Seat 10: Hero ( $ 26.15 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Ac, 6s, 3d, Th ] +Villain raises [$ 0.75 USD] +Hero calls [$ 0.50 USD] +** Dealing Flop ** [ 4h, 3h, As ] +Hero: bets [$ 0.50 USD] +Villain raises [$ 1 USD] +Hero calls [$ 0.50 USD] +** Dealing Turn ** [ 5c ] +Hero checks +Villain: bets [$ 1 USD] +Hero calls [$ 1 USD] +** Dealing River ** [ Ks ] +Hero checks +Villain: bets [$ 1 USD] +Hero calls [$ 1 USD] +Villain shows [ Ad, Ah, Qc, 6d ] three of a kind, aces +Hero shows [ Ac, 6s, 3d, Th ] two pairs, aces and threes +Villain wins high ($ 3.80 USD) from main pot with three of a kind, aces [ Ad, Ah, As, Ks, 5c ] +Villain wins low ($1.90) from main pot with 6, 5, 4, 3, A [ Ad, 6d, 5c, 4h, 3h ] +Hero wins low ($1.90) from main pot with 6, 5, 4, 3, A [ Ac, 6s, 5c, 4h, 3h ] + + + +Everleaf Gaming Game #148736881 +***** Hand history for game #148736881 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:11:49 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.20 USD ) +Seat 10: Hero ( $ 24.05 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ As, Qc, 7d, Ts ] +Hero raises [$ 0.75 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 3h, 5s, 6c ] +Villain checks +Hero checks +** Dealing Turn ** [ 8s ] +Villain checks +Hero checks +** Dealing River ** [ Th ] +Villain checks +Hero checks +Villain shows [ Ks, Ad, 2c, 2s ] a pair of twos +Hero shows [ As, Qc, 7d, Ts ] a pair of tens +Hero wins high ($ 0.95 USD) from main pot with a pair of tens [ As, Ts, Th, 8s, 6c ] +Villain wins low ($0.95) from main pot with 6, 5, 3, 2, A [ Ad, 6c, 5s, 3h, 2c ] + + + +Everleaf Gaming Game #148736929 +***** Hand history for game #148736929 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:12:14 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.15 USD ) +Seat 10: Hero ( $ 24 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Ac, 2s, 2h, As ] +Villain calls [$ 0.25 USD] +Hero raises [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 5d, 3d, 6s ] +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ 6h ] +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +** Dealing River ** [ 7s ] +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +Hero shows [ Ac, 2s, 2h, As ] two pairs, aces and sixes +Villain shows [ 4c, Ts, 5c, 8d ] a straight, eight high +Villain wins high ($ 3.33 USD) from main pot with a straight, eight high [ 8d, 7s, 6s, 5d, 4c ] +Hero wins low ($3.32) from main pot with 6, 5, 3, 2, A [ Ac, 6s, 5d, 3d, 2s ] + + + +Everleaf Gaming Game #148736970 +***** Hand history for game #148736970 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:12:35 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.98 USD ) +Seat 10: Hero ( $ 23.82 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 9d, 9c, 2d, 2s ] +Hero raises [$ 0.75 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ Kh, 6d, 4c ] +Villain checks +Hero checks +** Dealing Turn ** [ 3d ] +Villain checks +Hero checks +** Dealing River ** [ 6c ] +Villain checks +Hero checks +Villain shows [ 5d, Qh, 4s, 8d ] two pairs, sixes and fours +Hero shows [ 9d, 9c, 2d, 2s ] two pairs, nines and sixes +Hero wins high ($ 0.95 USD) from main pot with two pairs, nines and sixes [ Kh, 9d, 9c, 6d, 6c ] +Villain wins low ($0.95) from main pot with 8, 6, 5, 4, 3 [ 8d, 6d, 5d, 4c, 3d ] + + + +Everleaf Gaming Game #148737009 +***** Hand history for game #148737009 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:12:53 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.93 USD ) +Seat 10: Hero ( $ 23.77 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 3h, 5d, 9c, 8d ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 2d, Tc, 8c ] +Hero checks +Villain checks +** Dealing Turn ** [ 8s ] +Hero: bets [$ 1 USD] +Villain folds +Hero does not show cards +Hero wins $ 0.95 USD from main pot + + + +Everleaf Gaming Game #148737047 +***** Hand history for game #148737047 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:13:12 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.43 USD ) +Seat 10: Hero ( $ 24.22 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 9c, Kc, 2d, 5c ] +Hero folds +Villain does not show cards +Villain wins $ 0.50 USD from main pot + + + +Everleaf Gaming Game #148737063 +***** Hand history for game #148737063 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:13:20 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.68 USD ) +Seat 10: Hero ( $ 23.97 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 5s, 9d, Ad, Qd ] +Villain calls [$ 0.25 USD] +Hero raises [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ Ah, 3d, Qh ] +Hero: bets [$ 0.50 USD] +Villain raises [$ 1 USD] +Hero calls [$ 0.50 USD] +** Dealing Turn ** [ 3h ] +Hero checks +Villain: bets [$ 1 USD] +Hero calls [$ 1 USD] +** Dealing River ** [ 2h ] +Hero checks +Villain checks +Hero shows [ 5s, 9d, Ad, Qd ] two pairs, aces and queens +Villain shows [ 6h, As, Qc, 6s ] two pairs, aces and queens +Villain wins high ($ 2.85 USD) from main pot with two pairs, aces and queens [ As, Ah, Qc, Qh, 3d ] +Hero wins high ($ 2.85 USD) from main pot with two pairs, aces and queens [ Ad, Ah, Qd, Qh, 3d ] + + + +Everleaf Gaming Game #148737126 +***** Hand history for game #148737126 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:13:51 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.53 USD ) +Seat 10: Hero ( $ 23.82 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Ah, 6c, Kc, 2c ] +Hero raises [$ 0.75 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 4h, 2h, 2d ] +Villain checks +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ 6h ] +Villain: bets [$ 1 USD] +Hero raises [$ 2 USD] +Villain calls [$ 1 USD] +** Dealing River ** [ 7d ] +Villain checks +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +Hero shows [ Ah, 6c, Kc, 2c ] a full house, twos full of sixes +Villain shows [ 5h, 3c, 9c, Th ] a flush, ten high +Hero wins high ($ 4.28 USD) from main pot with a full house, twos full of sixes [ 6c, 6h, 2c, 2h, 2d ] +Villain wins low ($4.27) from main pot with 6, 5, 4, 3, 2 [ 6h, 5h, 4h, 3c, 2h ] + + + +Everleaf Gaming Game #148737179 +***** Hand history for game #148737179 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:14:17 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.30 USD ) +Seat 10: Hero ( $ 23.60 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 7c, 3h, 5s, 6c ] +Villain raises [$ 0.75 USD] +Hero calls [$ 0.50 USD] +** Dealing Flop ** [ Tc, Ad, 5c ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 1.90 USD) from main pot + + + +Everleaf Gaming Game #148737225 +***** Hand history for game #148737225 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:14:38 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.20 USD ) +Seat 10: Hero ( $ 22.60 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 6c, 9s, Ad, Ac ] +Hero raises [$ 0.75 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 7s, 6s, 9c ] +Villain: bets [$ 0.50 USD] +Hero calls [$ 0.50 USD] +** Dealing Turn ** [ 4s ] +Villain: bets [$ 1 USD] +Hero calls [$ 1 USD] +** Dealing River ** [ Qh ] +Villain: bets [$ 1 USD] +Hero calls [$ 1 USD] +Villain shows [ 6h, 7d, 9h, 6d ] three of a kind, sixes +Hero does not show cards +Villain wins high ($ 6.65 USD) from main pot with three of a kind, sixes [ Qh, 9c, 6h, 6d, 6s ] + + + +Everleaf Gaming Game #148737270 +***** Hand history for game #148737270 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:14:58 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25.35 USD ) +Seat 10: Hero ( $ 19.10 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Th, Jc, 7s, 8d ] +Villain calls [$ 0.25 USD] +Hero raises [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 6c, Js, 7h ] +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ Kc ] +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +** Dealing River ** [ 2h ] +Hero: bets [$ 1 USD] +Villain folds +Hero does not show cards +Hero wins $ 4.75 USD from main pot + + + +Everleaf Gaming Game #148737344 +***** Hand history for game #148737344 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:15:31 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.85 USD ) +Seat 10: Hero ( $ 21.35 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Qs, 3c, 7c, 8h ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ 9d, Qd, 8d ] +Villain checks +Hero: bets [$ 0.50 USD] +Villain folds +Hero does not show cards +Hero wins $ 0.95 USD from main pot + + + +Everleaf Gaming Game #148737405 +***** Hand history for game #148737405 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:16:03 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.35 USD ) +Seat 10: Hero ( $ 21.80 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 9s, 8s, Jh, Th ] +Villain folds +Hero does not show cards +Hero wins $ 0.50 USD from main pot + + + +Everleaf Gaming Game #148737425 +***** Hand history for game #148737425 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:16:11 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.10 USD ) +Seat 10: Hero ( $ 22.05 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 5h, Jd, 3c, Kd ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ 2s, 6d, 7s ] +Villain: bets [$ 0.50 USD] +Hero calls [$ 0.50 USD] +** Dealing Turn ** [ Ac ] +Villain: bets [$ 1 USD] +Hero calls [$ 1 USD] +** Dealing River ** [ 2c ] +Villain: bets [$ 1 USD] +Hero calls [$ 1 USD] +Villain shows [ Td, 2d, 7c, 4c ] a full house, twos full of sevens +Hero shows [ 5h, Jd, 3c, Kd ] a pair of twos +Villain wins high ($ 2.85 USD) from main pot with a full house, twos full of sevens [ 7c, 7s, 2d, 2s, 2c ] +Hero wins low ($2.85) from main pot with 6, 5, 3, 2, A [ Ac, 6d, 5h, 3c, 2s ] + + + +Everleaf Gaming Game #148737475 +***** Hand history for game #148737475 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:16:38 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.95 USD ) +Seat 10: Hero ( $ 21.90 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Kc, 6c, 2c, 5h ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ Ks, 3h, As ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.95 USD) from main pot + + + +Everleaf Gaming Game #148737509 +***** Hand history for game #148737509 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:16:55 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.40 USD ) +Seat 10: Hero ( $ 21.40 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 2s, 4c, Td, 9d ] +Hero folds +Villain does not show cards +Villain wins high ($ 0.50 USD) from main pot + + + +Everleaf Gaming Game #148737530 +***** Hand history for game #148737530 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:17:02 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.65 USD ) +Seat 10: Hero ( $ 21.15 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 8d, Ts, 4h, 4s ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 2s, Ac, 9h ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.95 USD) from main pot + + + +Everleaf Gaming Game #148737550 +***** Hand history for game #148737550 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:17:16 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 23.10 USD ) +Seat 10: Hero ( $ 20.65 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 7c, Jc, Kd, Kc ] +Hero raises [$ 0.75 USD] +Villain raises [$ 1 USD] +Hero calls [$ 0.50 USD] +** Dealing Flop ** [ 5c, 7s, Tc ] +Villain checks +Hero checks +** Dealing Turn ** [ 7d ] +Villain checks +Hero: bets [$ 1 USD] +Villain folds +Hero does not show cards +Hero wins $ 2.85 USD from main pot + + + +Everleaf Gaming Game #148737589 +***** Hand history for game #148737589 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:17:38 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.60 USD ) +Seat 10: Hero ( $ 22 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 5d, Tc, 3h, Ks ] +Villain raises [$ 0.75 USD] +Hero folds +Villain does not show cards +Villain wins $ 1 USD from main pot + + + +Everleaf Gaming Game #148737612 +***** Hand history for game #148737612 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:17:49 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.10 USD ) +Seat 10: Hero ( $ 21.50 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 6c, Qh, Kh, Jc ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ 7c, 5h, 2c ] +Villain checks +Hero checks +** Dealing Turn ** [ As ] +Villain checks +Hero checks +** Dealing River ** [ 2h ] +Villain checks +Hero checks +Villain shows [ Jh, 9h, 6s, 2s ] three of a kind, twos +Hero does not show cards +Villain wins high ($ 0.48 USD) from main pot with three of a kind, twos [ As, Jh, 2s, 2c, 2h ] +Villain wins low ($0.47) from main pot with 7, 6, 5, 2, A [ As, 7c, 6s, 5h, 2s ] + + + +Everleaf Gaming Game #148737651 +***** Hand history for game #148737651 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:18:10 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.55 USD ) +Seat 10: Hero ( $ 21 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 2d, 3d, Tc, 8s ] +Villain raises [$ 0.75 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 1 USD) from main pot + + + +Everleaf Gaming Game #148737675 +***** Hand history for game #148737675 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:18:21 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 23.05 USD ) +Seat 10: Hero ( $ 20.50 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 6h, Ah, 6d, Ac ] +Hero raises [$ 0.75 USD] +Villain folds +Hero does not show cards +Hero wins $ 1 USD from main pot + + + +Everleaf Gaming Game #148737692 +***** Hand history for game #148737692 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:18:28 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.55 USD ) +Seat 10: Hero ( $ 21 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Kh, 7h, 2c, Jc ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 7s, Jd, 5c ] +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ 8c ] +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +** Dealing River ** [ 3c ] +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +Hero shows [ Kh, 7h, 2c, Jc ] a flush, jack high +Villain shows [ Ad, 4c, 8h, 5s ] two pairs, eights and fives +Hero wins high ($ 2.85 USD) from main pot with a flush, jack high [ Jc, 8c, 5c, 3c, 2c ] +Villain wins low ($2.85) from main pot with 7, 5, 4, 3, A [ Ad, 7s, 5c, 4c, 3c ] + + + +Everleaf Gaming Game #148737727 +***** Hand history for game #148737727 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:18:50 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 22.40 USD ) +Seat 10: Hero ( $ 20.85 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 2s, 2c, 8c, Jh ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ 4s, 5h, Ah ] +Villain checks +Hero checks +** Dealing Turn ** [ 2d ] +Villain checks +Hero: bets [$ 1 USD] +Villain folds +Hero does not show cards +Hero wins $ 0.95 USD from main pot + + + +Everleaf Gaming Game #148737762 +***** Hand history for game #148737762 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:19:09 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.90 USD ) +Seat 10: Hero ( $ 21.30 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 3d, Qd, Js, 7d ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 5d, 9d, 2c ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero calls [$ 0.50 USD] +** Dealing Turn ** [ 2d ] +Hero checks +Villain checks +** Dealing River ** [ Qh ] +Hero: bets [$ 1 USD] +Villain folds +Hero does not show cards +Hero wins $ 1.90 USD from main pot + + + +Everleaf Gaming Game #148737833 +***** Hand history for game #148737833 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:19:45 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 20.90 USD ) +Seat 10: Hero ( $ 22.20 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Kd, 6c, As, 7s ] +Hero raises [$ 0.75 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 2c, 4h, 6s ] +Villain checks +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ 7c ] +Villain checks +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +** Dealing River ** [ 2h ] +Villain checks +Hero checks +Villain shows [ Jc, Ad, 9h, 5c ] a pair of twos +Hero shows [ Kd, 6c, As, 7s ] two pairs, sevens and sixes +Hero wins high ($ 2.38 USD) from main pot with two pairs, sevens and sixes [ 7s, 7c, 6c, 6s, 4h ] +Villain wins low ($2.37) from main pot with 6, 5, 4, 2, A [ Ad, 6s, 5c, 4h, 2c ] + + + +Everleaf Gaming Game #148737880 +***** Hand history for game #148737880 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:20:12 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 20.77 USD ) +Seat 10: Hero ( $ 22.08 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 7h, Qh, 2s, Js ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 8h, As, Ac ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.95 USD) from main pot + + + +Everleaf Gaming Game #148737917 +***** Hand history for game #148737917 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:20:29 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.22 USD ) +Seat 10: Hero ( $ 21.58 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 5c, As, 4s, 8h ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ Jc, Kh, 3c ] +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.95 USD) from main pot + + + +Everleaf Gaming Game #148737951 +***** Hand history for game #148737951 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:20:44 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 21.67 USD ) +Seat 10: Hero ( $ 21.08 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 7c, Jd, Qd, Th ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ Jc, 5h, 6d ] +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ 2h ] +Hero checks +Villain checks +** Dealing River ** [ Ts ] +Hero: bets [$ 1 USD] +Villain raises [$ 2 USD] +Hero calls [$ 1 USD] +Villain shows [ Kd, Tc, Td, 6h ] three of a kind, tens +Hero does not show cards +Villain wins high ($ 5.70 USD) from main pot with three of a kind, tens [ Jc, Tc, Td, Ts, 6d ] + + + +Everleaf Gaming Game #148738008 +***** Hand history for game #148738008 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:21:16 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 24.37 USD ) +Seat 10: Hero ( $ 18.08 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 9d, Ac, Qs, Ks ] +Hero raises [$ 0.75 USD] +Villain folds +Hero does not show cards +Hero wins $ 1 USD from main pot + + + +Everleaf Gaming Game #148738022 +***** Hand history for game #148738022 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:21:23 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 23.87 USD ) +Seat 10: Hero ( $ 18.58 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 5s, 9c, 2s, Js ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 3c, Ad, 6d ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins $ 0.95 USD from main pot + + + +Everleaf Gaming Game #148738049 +***** Hand history for game #148738049 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:21:38 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 24.32 USD ) +Seat 10: Hero ( $ 18.08 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 3c, 9s, 2d, Jd ] +Hero calls [$ 0.25 USD] +Villain raises [$ 0.50 USD] +Hero calls [$ 0.50 USD] +** Dealing Flop ** [ 3s, 4s, Tc ] +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins $ 1.90 USD from main pot + + + +Everleaf Gaming Game #148738093 +***** Hand history for game #148738093 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:21:58 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25.22 USD ) +Seat 10: Hero ( $ 17.08 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 9s, Ks, Th, 7d ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 6h, Ad, Ts ] +Hero checks +Villain checks +** Dealing Turn ** [ As ] +Hero: bets [$ 1 USD] +Villain folds +Hero does not show cards +Hero wins $ 0.95 USD from main pot + + + +Everleaf Gaming Game #148738137 +***** Hand history for game #148738137 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:22:19 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 24.72 USD ) +Seat 10: Hero ( $ 17.53 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Qh, 5s, Td, 4c ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ 5h, 7c, 2h ] +Villain checks +Hero checks +** Dealing Turn ** [ 8d ] +Villain checks +Hero checks +** Dealing River ** [ Ks ] +Villain checks +Hero checks +Villain shows [ Th, 6c, 6d, Kd ] a pair of kings +Hero shows [ Qh, 5s, Td, 4c ] a pair of fives +Villain wins high ($ 0.48 USD) from main pot with a pair of kings [ Kd, Ks, Th, 8d, 7c ] +Hero wins low ($0.47) from main pot with 8, 7, 5, 4, 2 [ 8d, 7c, 5s, 4c, 2h ] + + + +Everleaf Gaming Game #148738182 +***** Hand history for game #148738182 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:22:45 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 24.70 USD ) +Seat 10: Hero ( $ 17.50 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 2d, Qs, 6c, 9d ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 2h, Ac, As ] +Hero checks +Villain: bets [$ 0.50 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.95 USD) from main pot + + + +Everleaf Gaming Game #148738243 +***** Hand history for game #148738243 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:23:11 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25.15 USD ) +Seat 10: Hero ( $ 17 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 3s, Qh, 4h, Kc ] +Hero calls [$ 0.25 USD] +Villain checks +** Dealing Flop ** [ 2s, 3d, 9h ] +Villain checks +Hero checks +** Dealing Turn ** [ As ] +Villain checks +Hero checks +** Dealing River ** [ Kh ] +Villain checks +Hero checks +Villain shows [ 8d, 8c, 8h, 7h ] a pair of eights +Hero shows [ 3s, Qh, 4h, Kc ] two pairs, kings and threes +Hero wins high ($ 0.48 USD) from main pot with two pairs, kings and threes [ As, Kc, Kh, 3s, 3d ] +Villain wins low ($0.47) from main pot with 8, 7, 3, 2, A [ As, 8d, 7h, 3d, 2s ] + + + +Everleaf Gaming Game #148738287 +***** Hand history for game #148738287 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:23:32 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25.12 USD ) +Seat 10: Hero ( $ 16.98 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 7c, Tc, Kd, 2h ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 9c, Kh, Jd ] +Hero: bets [$ 0.50 USD] +Villain folds +Hero does not show cards +Hero wins $ 0.95 USD from main pot + + + +Everleaf Gaming Game #148738314 +***** Hand history for game #148738314 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:23:46 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 24.62 USD ) +Seat 10: Hero ( $ 17.43 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Qs, Ah, 4c, 5c ] +Hero raises [$ 0.75 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 9h, Kd, 3c ] +Villain checks +Hero checks +** Dealing Turn ** [ 3s ] +Villain checks +Hero checks +** Dealing River ** [ Tc ] +Villain checks +Hero checks +Villain shows [ Qd, Jh, 8c, As ] a straight, king high +Hero does not show cards +Villain wins high ($ 1.90 USD) from main pot with a straight, king high [ Kd, Qd, Jh, Tc, 9h ] + + + +Everleaf Gaming Game #148738348 +***** Hand history for game #148738348 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:24:03 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25.52 USD ) +Seat 10: Hero ( $ 16.43 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ Qs, 3s, 9d, As ] +Villain calls [$ 0.25 USD] +Hero raises [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ 7h, 5s, 6h ] +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ Ks ] +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +** Dealing River ** [ 4c ] +Hero: bets [$ 1 USD] +Villain raises [$ 2 USD] +Hero calls [$ 1 USD] +Villain shows [ Jh, Kd, 8c, 7s ] a straight, eight high +Hero shows [ Qs, 3s, 9d, As ] high card ace +Villain wins high ($ 4.28 USD) from main pot with a straight, eight high [ 8c, 7s, 6h, 5s, 4c ] +Hero wins low ($4.27) from main pot with 6, 5, 4, 3, A [ As, 6h, 5s, 4c, 3s ] + + + +Everleaf Gaming Game #148738403 +***** Hand history for game #148738403 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:24:31 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25.30 USD ) +Seat 10: Hero ( $ 16.20 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 2s, 9d, 3h, 7c ] +Hero folds +Villain does not show cards +Villain wins high ($ 0.50 USD) from main pot + + + +Everleaf Gaming Game #148738420 +***** Hand history for game #148738420 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:24:36 +Table Kentfield I +Seat 6 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25.55 USD ) +Seat 10: Hero ( $ 15.95 USD ) +Villain: posts small blind [$ 0.25 USD] +Hero: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 6h, 6d, 7d, 9h ] +Villain calls [$ 0.25 USD] +Hero checks +** Dealing Flop ** [ 3c, Jh, 8d ] +Hero checks +Villain checks +** Dealing Turn ** [ Qs ] +Hero checks +Villain checks +** Dealing River ** [ 6c ] +Hero: bets [$ 1 USD] +Villain calls [$ 1 USD] +Hero shows [ 6h, 6d, 7d, 9h ] three of a kind, sixes +Villain shows [ Ac, 7c, 3h, 5s ] a pair of threes +Hero wins high ($ 1.43 USD) from main pot with three of a kind, sixes [ Qs, Jh, 6h, 6d, 6c ] +Villain wins low ($1.42) from main pot with 8, 6, 5, 3, A [ Ac, 8d, 6c, 5s, 3c ] + + + +Everleaf Gaming Game #148738468 +***** Hand history for game #148738468 ***** +$0.50/$1 Omaha Hi/Lo - 2010/03/01 - 11:24:57 +Table Kentfield I +Seat 10 is the button +Total number of players: 2 +Seat 6: Villain ( $ 25.47 USD ) +Seat 10: Hero ( $ 15.88 USD ) +Hero: posts small blind [$ 0.25 USD] +Villain: posts big blind [$ 0.50 USD] +** Dealing down cards ** +Dealt to Hero [ 6s, Kd, 3c, Qd ] +Hero raises [$ 0.75 USD] +Villain calls [$ 0.50 USD] +** Dealing Flop ** [ Jh, Th, 5d ] +Villain checks +Hero: bets [$ 0.50 USD] +Villain calls [$ 0.50 USD] +** Dealing Turn ** [ Ks ] +Villain checks +Hero checks +** Dealing River ** [ 9h ] +Villain checks +Hero checks +Villain shows [ Js, 4s, 8d, 6c ] a pair of jacks +Hero shows [ 6s, Kd, 3c, Qd ] a straight, king high +Hero wins high ($ 2.85 USD) from main pot with a straight, king high [ Kd, Qd, Jh, Th, 9h ] + + + diff --git a/pyfpdb/regression-test-files/cash/Everleaf/Flop/PLO8-10max-USD-0.05-0.10-201003.HU.on.10max.txt b/pyfpdb/regression-test-files/cash/Everleaf/Flop/PLO8-10max-USD-0.05-0.10-201003.HU.on.10max.txt index d91aaaa0..7a21a586 100644 --- a/pyfpdb/regression-test-files/cash/Everleaf/Flop/PLO8-10max-USD-0.05-0.10-201003.HU.on.10max.txt +++ b/pyfpdb/regression-test-files/cash/Everleaf/Flop/PLO8-10max-USD-0.05-0.10-201003.HU.on.10max.txt @@ -1,588 +1,588 @@ -Everleaf Gaming Game #149107406 -***** Hand history for game #149107406 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:35:19 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 10 USD ) -Seat 10: Hero ( $ 10 USD ) -Villain has disconnected and has been given a further 20 seconds to react -Villain has disconnected and has been given a further 20 seconds to react -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ Qc, Qh, 7s, Jd ] -Villain calls [$ 0.05 USD] -Hero raises [$ 0.20 USD] -Villain calls [$ 0.20 USD] -** Dealing Flop ** [ Tc, Kc, 3s ] -Hero: bets [$ 0.60 USD] -Villain calls [$ 0.60 USD] -** Dealing Turn ** [ 6d ] -Hero checks -Villain: bets [$ 1.80 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 1.71 USD) from main pot - - - -Everleaf Gaming Game #149107627 -***** Hand history for game #149107627 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:36:09 -Table Old Market I -Seat 10 is the button -Total number of players: 2 -Seat 5: Villain ( $ 10.81 USD ) -Seat 10: Hero ( $ 9.10 USD ) -Hero: posts small blind [$ 0.05 USD] -Villain: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ Jd, 9h, 3h, 3c ] -Hero calls [$ 0.05 USD] -Villain checks -** Dealing Flop ** [ 8c, 8h, Qs ] -Villain checks -Hero checks -** Dealing Turn ** [ 7h ] -Villain: bets [$ 0.10 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.19 USD) from main pot - - - -Everleaf Gaming Game #149107795 -***** Hand history for game #149107795 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:36:48 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 10.90 USD ) -Seat 10: Hero ( $ 9 USD ) -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ Qc, As, 4s, Qh ] -Villain calls [$ 0.05 USD] -Hero raises [$ 0.20 USD] -Villain calls [$ 0.20 USD] -** Dealing Flop ** [ 8d, 6h, 3c ] -Hero: bets [$ 0.60 USD] -Villain calls [$ 0.60 USD] -** Dealing Turn ** [ Qd ] -Hero: bets [$ 1.80 USD] -Villain calls [$ 1.80 USD] -** Dealing River ** [ 7h ] -Hero checks -Villain checks -Hero shows [ Qc, As, 4s, Qh ] three of a kind, queens -Villain does not show cards -Hero wins high ($ 2.57 USD) from main pot with three of a kind, queens [ Qc, Qh, Qd, 8d, 7h ] -Hero wins low ($2.56) from main pot with 7, 6, 4, 3, A [ As, 7h, 6h, 4s, 3c ] - - - -Everleaf Gaming Game #149108010 -***** Hand history for game #149108010 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:37:35 -Table Old Market I -Seat 10 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.20 USD ) -Seat 10: Hero ( $ 11.43 USD ) -Hero: posts small blind [$ 0.05 USD] -Villain: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 4s, Ts, 3h, 5s ] -Hero folds -Villain does not show cards -Villain wins high ($ 0.10 USD) from main pot - - - -Everleaf Gaming Game #149108038 -***** Hand history for game #149108038 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:37:43 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.25 USD ) -Seat 10: Hero ( $ 11.38 USD ) -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 9d, Qc, 9s, Tc ] -Villain raises [$ 0.25 USD] -Hero calls [$ 0.20 USD] -** Dealing Flop ** [ 3d, 4d, 2h ] -Hero checks -Villain: bets [$ 0.60 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.57 USD) from main pot - - - -Everleaf Gaming Game #149108121 -***** Hand history for game #149108121 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:38:02 -Table Old Market I -Seat 10 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.52 USD ) -Seat 10: Hero ( $ 11.08 USD ) -Hero: posts small blind [$ 0.05 USD] -Villain: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 4d, Ks, 7h, As ] -Hero raises [$ 0.25 USD] -Villain calls [$ 0.20 USD] -** Dealing Flop ** [ 7d, Qc, 6s ] -Villain checks -Hero checks -** Dealing Turn ** [ Kh ] -Villain: bets [$ 0.60 USD] -Hero calls [$ 0.60 USD] -** Dealing River ** [ Qh ] -Villain: bets [$ 1.80 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 1.71 USD) from main pot - - - -Everleaf Gaming Game #149108259 -***** Hand history for game #149108259 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:38:32 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 9.33 USD ) -Seat 10: Hero ( $ 10.18 USD ) -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 7d, 2h, Ad, Jh ] -Villain calls [$ 0.05 USD] -Hero raises [$ 0.20 USD] -Villain has disconnected and has been given a further 20 seconds to react -Villain has disconnected and has been given a further 20 seconds to react -Villain folds -Hero does not show cards -Hero wins $ 0.20 USD from main pot - - - -Everleaf Gaming Game #149108411 -***** Hand history for game #149108411 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:39:07 -Table Old Market I -Seat 10 is the button -Total number of players: 2 -Seat 5: Villain ( $ 9.23 USD ) -Seat 10: Hero ( $ 10.28 USD ) -Hero: posts small blind [$ 0.05 USD] -Villain: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ Ks, Kd, 7c, 7s ] -Hero raises [$ 0.25 USD] -Villain calls [$ 0.20 USD] -** Dealing Flop ** [ 7d, Ac, 9h ] -Villain checks -Hero checks -** Dealing Turn ** [ 2d ] -Villain: bets [$ 0.60 USD] -Hero calls [$ 0.60 USD] -** Dealing River ** [ 9s ] -Villain checks -Hero: bets [$ 1.80 USD] -Villain folds -Hero does not show cards -Hero wins $ 1.71 USD from main pot - - - -Everleaf Gaming Game #149108717 -***** Hand history for game #149108717 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:40:22 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.33 USD ) -Seat 10: Hero ( $ 11.09 USD ) -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 5s, 3s, Js, 9d ] -Villain calls [$ 0.05 USD] -Hero checks -** Dealing Flop ** [ 6c, 4s, 4d ] -Hero checks -Villain checks -** Dealing Turn ** [ 7c ] -Hero: bets [$ 0.20 USD] -Villain calls [$ 0.20 USD] -** Dealing River ** [ Qd ] -Hero: bets [$ 0.60 USD] -Villain folds -Hero does not show cards -Hero wins $ 0.29 USD from main pot -Hero wins $ 0.28 USD from main pot - - - -Everleaf Gaming Game #149108874 -***** Hand history for game #149108874 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:40:58 -Table Old Market I -Seat 10 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.03 USD ) -Seat 10: Hero ( $ 11.36 USD ) -Hero: posts small blind [$ 0.05 USD] -Villain: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ Qd, Jh, 2h, 5s ] -Hero calls [$ 0.05 USD] -Villain checks -** Dealing Flop ** [ 7d, 2c, 9c ] -Villain: bets [$ 0.20 USD] -Hero folds -Villain does not show cards -Villain wins $ 0.19 USD from main pot - - - -Everleaf Gaming Game #149109021 -***** Hand history for game #149109021 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:41:31 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.12 USD ) -Seat 10: Hero ( $ 11.26 USD ) -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 4c, 6h, 8s, 5c ] -Villain calls [$ 0.05 USD] -Hero checks -** Dealing Flop ** [ 3d, 8h, Qd ] -Hero checks -Villain: bets [$ 0.20 USD] -Hero folds -Villain does not show cards -Villain wins $ 0.19 USD from main pot - - - -Everleaf Gaming Game #149109123 -***** Hand history for game #149109123 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:41:54 -Table Old Market I -Seat 10 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.21 USD ) -Seat 10: Hero ( $ 11.16 USD ) -Hero: posts small blind [$ 0.05 USD] -Villain: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 7s, 3d, Tc, 5s ] -Hero folds -Villain does not show cards -Villain wins $ 0.10 USD from main pot - - - -Everleaf Gaming Game #149109165 -***** Hand history for game #149109165 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:42:04 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.26 USD ) -Seat 10: Hero ( $ 11.11 USD ) -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ Kh, 3c, 6d, 6s ] -Villain calls [$ 0.05 USD] -Hero checks -** Dealing Flop ** [ 2d, 6c, Th ] -Hero checks -Villain checks -** Dealing Turn ** [ 9d ] -Hero checks -Villain: bets [$ 0.20 USD] -Hero folds -Villain does not show cards -Villain wins $ 0.19 USD from main pot - - - -Everleaf Gaming Game #149109398 -***** Hand history for game #149109398 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:42:55 -Table Old Market I -Seat 10 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.35 USD ) -Seat 10: Hero ( $ 11.01 USD ) -Hero: posts small blind [$ 0.05 USD] -Villain: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 5c, Qd, 6d, 7d ] -Hero calls [$ 0.05 USD] -Villain raises [$ 0.20 USD] -Hero folds -Villain does not show cards -Villain wins $ 0.20 USD from main pot - - - -Everleaf Gaming Game #149109482 -***** Hand history for game #149109482 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:43:15 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.45 USD ) -Seat 10: Hero ( $ 10.91 USD ) -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 7s, 8d, 5c, Qc ] -Villain calls [$ 0.05 USD] -Hero checks -** Dealing Flop ** [ 5s, Js, 7h ] -Hero: bets [$ 0.20 USD] -Villain calls [$ 0.20 USD] -** Dealing Turn ** [ Ac ] -Hero checks -Villain checks -** Dealing River ** [ 8h ] -Hero checks -Villain checks -Hero shows [ 7s, 8d, 5c, Qc ] two pairs, eights and sevens -Villain does not show cards -Hero wins high ($ 0.57 USD) from main pot with two pairs, eights and sevens [ Ac, 8d, 8h, 7s, 7h ] - - - -Everleaf Gaming Game #149109706 -***** Hand history for game #149109706 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:44:04 -Table Old Market I -Seat 10 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.15 USD ) -Seat 10: Hero ( $ 11.18 USD ) -Hero: posts small blind [$ 0.05 USD] -Villain: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 5s, 8c, 7s, Td ] -Hero calls [$ 0.05 USD] -Villain raises [$ 0.20 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.20 USD) from main pot - - - -Everleaf Gaming Game #149109783 -***** Hand history for game #149109783 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:44:23 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.25 USD ) -Seat 10: Hero ( $ 11.08 USD ) -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 5d, 4c, 8c, Th ] -Villain calls [$ 0.05 USD] -Hero checks -** Dealing Flop ** [ 7h, As, 7s ] -Hero checks -Villain checks -** Dealing Turn ** [ Jc ] -Hero checks -Villain checks -** Dealing River ** [ 3h ] -Hero checks -Villain checks -Hero shows [ 5d, 4c, 8c, Th ] a pair of sevens -Villain shows [ 2h, Kd, 8d, Ts ] a pair of sevens -Villain wins high ($ 0.10 USD) from main pot with a pair of sevens [ As, Kd, Ts, 7h, 7s ] with kicker [ Kh ] -Hero wins low ($0.09) from main pot with 7, 5, 4, 3, A [ As, 7h, 5d, 4c, 3h ] - - - -Everleaf Gaming Game #149109887 -***** Hand history for game #149109887 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:44:48 -Table Old Market I -Seat 10 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.25 USD ) -Seat 10: Hero ( $ 11.07 USD ) -Hero: posts small blind [$ 0.05 USD] -Villain: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ Js, Jc, 3d, 7d ] -Hero raises [$ 0.25 USD] -Villain calls [$ 0.20 USD] -** Dealing Flop ** [ 9s, 5d, Qh ] -Villain checks -Hero checks -** Dealing Turn ** [ 6d ] -Villain: bets [$ 0.60 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.57 USD) from main pot - - - -Everleaf Gaming Game #149110044 -***** Hand history for game #149110044 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:45:23 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.52 USD ) -Seat 10: Hero ( $ 10.77 USD ) -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ Ah, 2d, 6d, Qh ] -Villain calls [$ 0.05 USD] -Hero raises [$ 0.20 USD] -Villain calls [$ 0.20 USD] -** Dealing Flop ** [ 5c, Td, 9h ] -Hero checks -Villain checks -** Dealing Turn ** [ Ks ] -Hero checks -Villain checks -** Dealing River ** [ 8s ] -Hero checks -Villain: bets [$ 0.30 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.57 USD) from main pot - - - -Everleaf Gaming Game #149110335 -***** Hand history for game #149110335 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:46:33 -Table Old Market I -Seat 10 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.79 USD ) -Seat 10: Hero ( $ 10.47 USD ) -Hero: posts small blind [$ 0.05 USD] -Villain: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ Th, 5d, Qd, 7s ] -Hero calls [$ 0.05 USD] -Villain checks -** Dealing Flop ** [ 8s, 9c, 3s ] -Villain checks -Hero checks -** Dealing Turn ** [ Tc ] -Villain checks -Hero checks -** Dealing River ** [ Qc ] -Villain checks -Hero checks -Villain shows [ 8d, Kc, 6c, 4s ] a flush, king high -Hero does not show cards -Villain wins high ($ 0.19 USD) from main pot with a flush, king high [ Kc, Qc, Tc, 9c, 6c ] - - - -Everleaf Gaming Game #149110588 -***** Hand history for game #149110588 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:47:30 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 8.88 USD ) -Seat 10: Hero ( $ 10.37 USD ) -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 2h, 2s, Qs, Ah ] -Villain calls [$ 0.05 USD] -Hero raises [$ 0.20 USD] -Villain calls [$ 0.20 USD] -** Dealing Flop ** [ Td, Qh, 8h ] -Hero: bets [$ 0.60 USD] -Villain calls [$ 0.60 USD] -** Dealing Turn ** [ 9s ] -Hero checks -Villain: bets [$ 1.80 USD] -Hero calls [$ 1.80 USD] -** Dealing River ** [ 8s ] -Hero checks -Villain checks -Villain shows [ Js, 5h, Tc, 7d ] a straight, queen high -Hero does not show cards -Villain wins high ($ 5.13 USD) from main pot with a straight, queen high [ Qh, Js, Tc, 9s, 8h ] - - - -Everleaf Gaming Game #149110838 -***** Hand history for game #149110838 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:48:31 -Table Old Market I -Seat 10 is the button -Total number of players: 2 -Seat 5: Villain ( $ 11.31 USD ) -Seat 10: Hero ( $ 7.67 USD ) -Hero: posts small blind [$ 0.05 USD] -Villain: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ Ts, 3d, 8s, 9h ] -Hero calls [$ 0.05 USD] -Villain raises [$ 0.20 USD] -Hero folds -Villain has disconnected and has been given a further 20 seconds to react -Villain does not show cards -Villain wins high ($ 0.20 USD) from main pot - - - -Everleaf Gaming Game #149111070 -***** Hand history for game #149111070 ***** -Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:49:28 -Table Old Market I -Seat 5 is the button -Total number of players: 2 -Seat 5: Villain ( $ 11.41 USD ) -Seat 10: Hero ( $ 7.57 USD ) -Villain: posts small blind [$ 0.05 USD] -Hero: posts big blind [$ 0.10 USD] -** Dealing down cards ** -Dealt to Hero [ 9c, 4d, 8h, Th ] -Villain calls [$ 0.05 USD] -Hero checks -** Dealing Flop ** [ Ad, Qs, 4s ] -Hero checks -Villain checks -** Dealing Turn ** [ Td ] -Hero checks -Villain checks -** Dealing River ** [ 6d ] -Hero checks -Villain: bets [$ 0.10 USD] -Hero folds -Villain does not show cards -Villain wins high ($ 0.10 USD) from main pot -Villain wins low ($0.09) from main pot - - - +Everleaf Gaming Game #149107406 +***** Hand history for game #149107406 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:35:19 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 10 USD ) +Seat 10: Hero ( $ 10 USD ) +Villain has disconnected and has been given a further 20 seconds to react +Villain has disconnected and has been given a further 20 seconds to react +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ Qc, Qh, 7s, Jd ] +Villain calls [$ 0.05 USD] +Hero raises [$ 0.20 USD] +Villain calls [$ 0.20 USD] +** Dealing Flop ** [ Tc, Kc, 3s ] +Hero: bets [$ 0.60 USD] +Villain calls [$ 0.60 USD] +** Dealing Turn ** [ 6d ] +Hero checks +Villain: bets [$ 1.80 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 1.71 USD) from main pot + + + +Everleaf Gaming Game #149107627 +***** Hand history for game #149107627 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:36:09 +Table Old Market I +Seat 10 is the button +Total number of players: 2 +Seat 5: Villain ( $ 10.81 USD ) +Seat 10: Hero ( $ 9.10 USD ) +Hero: posts small blind [$ 0.05 USD] +Villain: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ Jd, 9h, 3h, 3c ] +Hero calls [$ 0.05 USD] +Villain checks +** Dealing Flop ** [ 8c, 8h, Qs ] +Villain checks +Hero checks +** Dealing Turn ** [ 7h ] +Villain: bets [$ 0.10 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.19 USD) from main pot + + + +Everleaf Gaming Game #149107795 +***** Hand history for game #149107795 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:36:48 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 10.90 USD ) +Seat 10: Hero ( $ 9 USD ) +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ Qc, As, 4s, Qh ] +Villain calls [$ 0.05 USD] +Hero raises [$ 0.20 USD] +Villain calls [$ 0.20 USD] +** Dealing Flop ** [ 8d, 6h, 3c ] +Hero: bets [$ 0.60 USD] +Villain calls [$ 0.60 USD] +** Dealing Turn ** [ Qd ] +Hero: bets [$ 1.80 USD] +Villain calls [$ 1.80 USD] +** Dealing River ** [ 7h ] +Hero checks +Villain checks +Hero shows [ Qc, As, 4s, Qh ] three of a kind, queens +Villain does not show cards +Hero wins high ($ 2.57 USD) from main pot with three of a kind, queens [ Qc, Qh, Qd, 8d, 7h ] +Hero wins low ($2.56) from main pot with 7, 6, 4, 3, A [ As, 7h, 6h, 4s, 3c ] + + + +Everleaf Gaming Game #149108010 +***** Hand history for game #149108010 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:37:35 +Table Old Market I +Seat 10 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.20 USD ) +Seat 10: Hero ( $ 11.43 USD ) +Hero: posts small blind [$ 0.05 USD] +Villain: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 4s, Ts, 3h, 5s ] +Hero folds +Villain does not show cards +Villain wins high ($ 0.10 USD) from main pot + + + +Everleaf Gaming Game #149108038 +***** Hand history for game #149108038 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:37:43 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.25 USD ) +Seat 10: Hero ( $ 11.38 USD ) +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 9d, Qc, 9s, Tc ] +Villain raises [$ 0.25 USD] +Hero calls [$ 0.20 USD] +** Dealing Flop ** [ 3d, 4d, 2h ] +Hero checks +Villain: bets [$ 0.60 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.57 USD) from main pot + + + +Everleaf Gaming Game #149108121 +***** Hand history for game #149108121 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:38:02 +Table Old Market I +Seat 10 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.52 USD ) +Seat 10: Hero ( $ 11.08 USD ) +Hero: posts small blind [$ 0.05 USD] +Villain: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 4d, Ks, 7h, As ] +Hero raises [$ 0.25 USD] +Villain calls [$ 0.20 USD] +** Dealing Flop ** [ 7d, Qc, 6s ] +Villain checks +Hero checks +** Dealing Turn ** [ Kh ] +Villain: bets [$ 0.60 USD] +Hero calls [$ 0.60 USD] +** Dealing River ** [ Qh ] +Villain: bets [$ 1.80 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 1.71 USD) from main pot + + + +Everleaf Gaming Game #149108259 +***** Hand history for game #149108259 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:38:32 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 9.33 USD ) +Seat 10: Hero ( $ 10.18 USD ) +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 7d, 2h, Ad, Jh ] +Villain calls [$ 0.05 USD] +Hero raises [$ 0.20 USD] +Villain has disconnected and has been given a further 20 seconds to react +Villain has disconnected and has been given a further 20 seconds to react +Villain folds +Hero does not show cards +Hero wins $ 0.20 USD from main pot + + + +Everleaf Gaming Game #149108411 +***** Hand history for game #149108411 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:39:07 +Table Old Market I +Seat 10 is the button +Total number of players: 2 +Seat 5: Villain ( $ 9.23 USD ) +Seat 10: Hero ( $ 10.28 USD ) +Hero: posts small blind [$ 0.05 USD] +Villain: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ Ks, Kd, 7c, 7s ] +Hero raises [$ 0.25 USD] +Villain calls [$ 0.20 USD] +** Dealing Flop ** [ 7d, Ac, 9h ] +Villain checks +Hero checks +** Dealing Turn ** [ 2d ] +Villain: bets [$ 0.60 USD] +Hero calls [$ 0.60 USD] +** Dealing River ** [ 9s ] +Villain checks +Hero: bets [$ 1.80 USD] +Villain folds +Hero does not show cards +Hero wins $ 1.71 USD from main pot + + + +Everleaf Gaming Game #149108717 +***** Hand history for game #149108717 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:40:22 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.33 USD ) +Seat 10: Hero ( $ 11.09 USD ) +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 5s, 3s, Js, 9d ] +Villain calls [$ 0.05 USD] +Hero checks +** Dealing Flop ** [ 6c, 4s, 4d ] +Hero checks +Villain checks +** Dealing Turn ** [ 7c ] +Hero: bets [$ 0.20 USD] +Villain calls [$ 0.20 USD] +** Dealing River ** [ Qd ] +Hero: bets [$ 0.60 USD] +Villain folds +Hero does not show cards +Hero wins $ 0.29 USD from main pot +Hero wins $ 0.28 USD from main pot + + + +Everleaf Gaming Game #149108874 +***** Hand history for game #149108874 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:40:58 +Table Old Market I +Seat 10 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.03 USD ) +Seat 10: Hero ( $ 11.36 USD ) +Hero: posts small blind [$ 0.05 USD] +Villain: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ Qd, Jh, 2h, 5s ] +Hero calls [$ 0.05 USD] +Villain checks +** Dealing Flop ** [ 7d, 2c, 9c ] +Villain: bets [$ 0.20 USD] +Hero folds +Villain does not show cards +Villain wins $ 0.19 USD from main pot + + + +Everleaf Gaming Game #149109021 +***** Hand history for game #149109021 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:41:31 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.12 USD ) +Seat 10: Hero ( $ 11.26 USD ) +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 4c, 6h, 8s, 5c ] +Villain calls [$ 0.05 USD] +Hero checks +** Dealing Flop ** [ 3d, 8h, Qd ] +Hero checks +Villain: bets [$ 0.20 USD] +Hero folds +Villain does not show cards +Villain wins $ 0.19 USD from main pot + + + +Everleaf Gaming Game #149109123 +***** Hand history for game #149109123 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:41:54 +Table Old Market I +Seat 10 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.21 USD ) +Seat 10: Hero ( $ 11.16 USD ) +Hero: posts small blind [$ 0.05 USD] +Villain: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 7s, 3d, Tc, 5s ] +Hero folds +Villain does not show cards +Villain wins $ 0.10 USD from main pot + + + +Everleaf Gaming Game #149109165 +***** Hand history for game #149109165 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:42:04 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.26 USD ) +Seat 10: Hero ( $ 11.11 USD ) +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ Kh, 3c, 6d, 6s ] +Villain calls [$ 0.05 USD] +Hero checks +** Dealing Flop ** [ 2d, 6c, Th ] +Hero checks +Villain checks +** Dealing Turn ** [ 9d ] +Hero checks +Villain: bets [$ 0.20 USD] +Hero folds +Villain does not show cards +Villain wins $ 0.19 USD from main pot + + + +Everleaf Gaming Game #149109398 +***** Hand history for game #149109398 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:42:55 +Table Old Market I +Seat 10 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.35 USD ) +Seat 10: Hero ( $ 11.01 USD ) +Hero: posts small blind [$ 0.05 USD] +Villain: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 5c, Qd, 6d, 7d ] +Hero calls [$ 0.05 USD] +Villain raises [$ 0.20 USD] +Hero folds +Villain does not show cards +Villain wins $ 0.20 USD from main pot + + + +Everleaf Gaming Game #149109482 +***** Hand history for game #149109482 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:43:15 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.45 USD ) +Seat 10: Hero ( $ 10.91 USD ) +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 7s, 8d, 5c, Qc ] +Villain calls [$ 0.05 USD] +Hero checks +** Dealing Flop ** [ 5s, Js, 7h ] +Hero: bets [$ 0.20 USD] +Villain calls [$ 0.20 USD] +** Dealing Turn ** [ Ac ] +Hero checks +Villain checks +** Dealing River ** [ 8h ] +Hero checks +Villain checks +Hero shows [ 7s, 8d, 5c, Qc ] two pairs, eights and sevens +Villain does not show cards +Hero wins high ($ 0.57 USD) from main pot with two pairs, eights and sevens [ Ac, 8d, 8h, 7s, 7h ] + + + +Everleaf Gaming Game #149109706 +***** Hand history for game #149109706 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:44:04 +Table Old Market I +Seat 10 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.15 USD ) +Seat 10: Hero ( $ 11.18 USD ) +Hero: posts small blind [$ 0.05 USD] +Villain: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 5s, 8c, 7s, Td ] +Hero calls [$ 0.05 USD] +Villain raises [$ 0.20 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.20 USD) from main pot + + + +Everleaf Gaming Game #149109783 +***** Hand history for game #149109783 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:44:23 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.25 USD ) +Seat 10: Hero ( $ 11.08 USD ) +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 5d, 4c, 8c, Th ] +Villain calls [$ 0.05 USD] +Hero checks +** Dealing Flop ** [ 7h, As, 7s ] +Hero checks +Villain checks +** Dealing Turn ** [ Jc ] +Hero checks +Villain checks +** Dealing River ** [ 3h ] +Hero checks +Villain checks +Hero shows [ 5d, 4c, 8c, Th ] a pair of sevens +Villain shows [ 2h, Kd, 8d, Ts ] a pair of sevens +Villain wins high ($ 0.10 USD) from main pot with a pair of sevens [ As, Kd, Ts, 7h, 7s ] with kicker [ Kh ] +Hero wins low ($0.09) from main pot with 7, 5, 4, 3, A [ As, 7h, 5d, 4c, 3h ] + + + +Everleaf Gaming Game #149109887 +***** Hand history for game #149109887 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:44:48 +Table Old Market I +Seat 10 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.25 USD ) +Seat 10: Hero ( $ 11.07 USD ) +Hero: posts small blind [$ 0.05 USD] +Villain: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ Js, Jc, 3d, 7d ] +Hero raises [$ 0.25 USD] +Villain calls [$ 0.20 USD] +** Dealing Flop ** [ 9s, 5d, Qh ] +Villain checks +Hero checks +** Dealing Turn ** [ 6d ] +Villain: bets [$ 0.60 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.57 USD) from main pot + + + +Everleaf Gaming Game #149110044 +***** Hand history for game #149110044 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:45:23 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.52 USD ) +Seat 10: Hero ( $ 10.77 USD ) +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ Ah, 2d, 6d, Qh ] +Villain calls [$ 0.05 USD] +Hero raises [$ 0.20 USD] +Villain calls [$ 0.20 USD] +** Dealing Flop ** [ 5c, Td, 9h ] +Hero checks +Villain checks +** Dealing Turn ** [ Ks ] +Hero checks +Villain checks +** Dealing River ** [ 8s ] +Hero checks +Villain: bets [$ 0.30 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.57 USD) from main pot + + + +Everleaf Gaming Game #149110335 +***** Hand history for game #149110335 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:46:33 +Table Old Market I +Seat 10 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.79 USD ) +Seat 10: Hero ( $ 10.47 USD ) +Hero: posts small blind [$ 0.05 USD] +Villain: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ Th, 5d, Qd, 7s ] +Hero calls [$ 0.05 USD] +Villain checks +** Dealing Flop ** [ 8s, 9c, 3s ] +Villain checks +Hero checks +** Dealing Turn ** [ Tc ] +Villain checks +Hero checks +** Dealing River ** [ Qc ] +Villain checks +Hero checks +Villain shows [ 8d, Kc, 6c, 4s ] a flush, king high +Hero does not show cards +Villain wins high ($ 0.19 USD) from main pot with a flush, king high [ Kc, Qc, Tc, 9c, 6c ] + + + +Everleaf Gaming Game #149110588 +***** Hand history for game #149110588 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:47:30 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 8.88 USD ) +Seat 10: Hero ( $ 10.37 USD ) +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 2h, 2s, Qs, Ah ] +Villain calls [$ 0.05 USD] +Hero raises [$ 0.20 USD] +Villain calls [$ 0.20 USD] +** Dealing Flop ** [ Td, Qh, 8h ] +Hero: bets [$ 0.60 USD] +Villain calls [$ 0.60 USD] +** Dealing Turn ** [ 9s ] +Hero checks +Villain: bets [$ 1.80 USD] +Hero calls [$ 1.80 USD] +** Dealing River ** [ 8s ] +Hero checks +Villain checks +Villain shows [ Js, 5h, Tc, 7d ] a straight, queen high +Hero does not show cards +Villain wins high ($ 5.13 USD) from main pot with a straight, queen high [ Qh, Js, Tc, 9s, 8h ] + + + +Everleaf Gaming Game #149110838 +***** Hand history for game #149110838 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:48:31 +Table Old Market I +Seat 10 is the button +Total number of players: 2 +Seat 5: Villain ( $ 11.31 USD ) +Seat 10: Hero ( $ 7.67 USD ) +Hero: posts small blind [$ 0.05 USD] +Villain: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ Ts, 3d, 8s, 9h ] +Hero calls [$ 0.05 USD] +Villain raises [$ 0.20 USD] +Hero folds +Villain has disconnected and has been given a further 20 seconds to react +Villain does not show cards +Villain wins high ($ 0.20 USD) from main pot + + + +Everleaf Gaming Game #149111070 +***** Hand history for game #149111070 ***** +Blinds $0.05/$0.10 PL Omaha Hi/Lo - 2010/03/02 - 19:49:28 +Table Old Market I +Seat 5 is the button +Total number of players: 2 +Seat 5: Villain ( $ 11.41 USD ) +Seat 10: Hero ( $ 7.57 USD ) +Villain: posts small blind [$ 0.05 USD] +Hero: posts big blind [$ 0.10 USD] +** Dealing down cards ** +Dealt to Hero [ 9c, 4d, 8h, Th ] +Villain calls [$ 0.05 USD] +Hero checks +** Dealing Flop ** [ Ad, Qs, 4s ] +Hero checks +Villain checks +** Dealing Turn ** [ Td ] +Hero checks +Villain checks +** Dealing River ** [ 6d ] +Hero checks +Villain: bets [$ 0.10 USD] +Hero folds +Villain does not show cards +Villain wins high ($ 0.10 USD) from main pot +Villain wins low ($0.09) from main pot + + + diff --git a/pyfpdb/regression-test-files/cash/OnGame/Draw/5-Carddraw-USD-0.05-0.10-201009.Sample.txt b/pyfpdb/regression-test-files/cash/OnGame/Draw/5-Carddraw-USD-0.05-0.10-201009.Sample.txt index 43c02f4f..75abdbaa 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Draw/5-Carddraw-USD-0.05-0.10-201009.Sample.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Draw/5-Carddraw-USD-0.05-0.10-201009.Sample.txt @@ -1,153 +1,153 @@ -***** History for hand R5-81962116-232 ***** -Start hand: Mon Sep 13 00:21:02 GMT+0100 2010 -Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) -User: tchazx -Button: seat 3 -Players in round: 4 -Seat 8: DamonV2 ($0.07) -Seat 10: tchazx ($1) -Seat 1: x Diabolo666 ($11.23) -Seat 3: velabianca ($0.51) -DamonV2 posts small blind ($0.02) -tchazx posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [Tc, 9h, 7c, Ah, Jh] -x Diabolo666 raises $0.10 to $0.10 -velabianca folds -DamonV2 folds -tchazx calls $0.05 ---- -tchazx changed 2 cards -New hand for tchazx: [8h, 9h, 6s, Ah, Jh] -x Diabolo666 changed 3 cards -tchazx checks -x Diabolo666 checks ---- -Summary: -Main pot: $0.22 won by x Diabolo666 ($0.21) -Rake taken: $0.01 -Seat 8: DamonV2 ($0.05), net: -$0.02 -Seat 10: tchazx ($0.90), net: -$0.10, [8h, 9h, 6s, Ah, Jh] (HIGH_CARD ACE) -Seat 1: x Diabolo666 ($11.34), net: +$0.11, [2c, Ac, Td, As, Qc] (PAIR ACE) -Seat 3: velabianca ($0.51) -***** End of hand R5-81962116-232 ***** -***** History for hand R5-81962116-233 ***** -Start hand: Mon Sep 13 00:21:42 GMT+0100 2010 -Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) -User: tchazx -Button: seat 8 -Players in round: 5 -Seat 10: tchazx ($0.90) -Seat 1: x Diabolo666 ($11.34) -Seat 3: velabianca ($0.51) -Seat 4: grommek ($9.40) -Seat 8: DamonV2 ($0.05) -tchazx posts small blind ($0.02) -x Diabolo666 posts big blind ($0.05) -grommek posts big blind ($0.05) -grommek posts dead blind ($0.02) ---- -Dealing pocket cards -Dealing to tchazx: [Jd, 5s, 8h, 4h, 7d] -velabianca calls $0.05 -grommek checks -DamonV2 calls $0.05 [all in] -tchazx calls $0.03 -x Diabolo666 checks ---- -tchazx changed 1 cards -New hand for tchazx: [Ah, 5s, 8h, 4h, 7d] -x Diabolo666 changed 4 cards -velabianca changed 2 cards -grommek changed 3 cards -DamonV2 changed 2 cards -tchazx checks -x Diabolo666 checks -velabianca bets $0.10 -grommek folds -tchazx folds -x Diabolo666 folds ---- ---- -Summary: -Main pot: $0.27 won by velabianca ($0.26) -Rake taken: $0.01 -Seat 10: tchazx ($0.85), net: -$0.05 -Seat 1: x Diabolo666 ($11.29), net: -$0.05 -Seat 3: velabianca ($0.72), net: +$0.21, [As, 9s, 6s, 6c, 9h] (TWO_PAIR NINE, SIX) -Seat 4: grommek ($9.33), net: -$0.07 -Seat 8: DamonV2 ($0), net: -$0.05, [Jh, 2c, Kh, Td, 6h] (HIGH_CARD KING) -***** End of hand R5-81962116-233 ***** -***** History for hand R5-81962116-234 ***** -Start hand: Mon Sep 13 00:22:36 GMT+0100 2010 -Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) -User: tchazx -Button: seat 10 -Players in round: 4 -Seat 1: x Diabolo666 ($11.29) -Seat 3: velabianca ($0.72) -Seat 4: grommek ($9.33) -Seat 10: tchazx ($0.85) -x Diabolo666 posts small blind ($0.02) -velabianca posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [Kh, 9d, As, 4s, 7c] -grommek calls $0.05 -tchazx folds -x Diabolo666 folds -velabianca checks -velabianca changed 3 cards -grommek changed 3 cards -velabianca checks -grommek bets $0.10 -velabianca folds ---- -Summary: -Main pot: $0.12 won by grommek ($0.12) -Rake taken: $0 -Seat 1: x Diabolo666 ($11.27), net: -$0.02 -Seat 3: velabianca ($0.67), net: -$0.05 -Seat 4: grommek ($9.40), net: +$0.07 -Seat 10: tchazx ($0.85) -***** End of hand R5-81962116-234 ***** -***** History for hand R5-81962116-235 ***** -Start hand: Mon Sep 13 00:23:04 GMT+0100 2010 -Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) -User: tchazx -Button: seat 1 -Players in round: 4 -Seat 3: velabianca ($0.67) -Seat 4: grommek ($9.40) -Seat 10: tchazx ($0.85) -Seat 1: x Diabolo666 ($11.27) -velabianca posts small blind ($0.02) -grommek posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [8d, Td, 2s, 3d, Qd] -tchazx calls $0.05 -x Diabolo666 raises $0.10 to $0.10 -velabianca calls $0.08 -grommek calls $0.05 -tchazx calls $0.05 ---- -velabianca changed 2 cards -grommek changed 2 cards -tchazx changed 1 cards -New hand for tchazx: [8d, Td, 8h, 3d, Qd] -x Diabolo666 changed 3 cards -velabianca checks -grommek checks -tchazx checks -x Diabolo666 checks ---- -Summary: -Main pot: $0.40 won by velabianca ($0.38) -Rake taken: $0.02 -Seat 3: velabianca ($0.95), net: +$0.28 -Seat 4: grommek ($9.30), net: -$0.10 -Seat 10: tchazx ($0.75), net: -$0.10 -Seat 1: x Diabolo666 ($11.17), net: -$0.10, [6d, Qc, 4c, Th, Qs] (PAIR QUEEN) -***** End of hand R5-81962116-235 ***** +***** History for hand R5-81962116-232 ***** +Start hand: Mon Sep 13 00:21:02 GMT+0100 2010 +Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) +User: tchazx +Button: seat 3 +Players in round: 4 +Seat 8: DamonV2 ($0.07) +Seat 10: tchazx ($1) +Seat 1: x Diabolo666 ($11.23) +Seat 3: velabianca ($0.51) +DamonV2 posts small blind ($0.02) +tchazx posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [Tc, 9h, 7c, Ah, Jh] +x Diabolo666 raises $0.10 to $0.10 +velabianca folds +DamonV2 folds +tchazx calls $0.05 +--- +tchazx changed 2 cards +New hand for tchazx: [8h, 9h, 6s, Ah, Jh] +x Diabolo666 changed 3 cards +tchazx checks +x Diabolo666 checks +--- +Summary: +Main pot: $0.22 won by x Diabolo666 ($0.21) +Rake taken: $0.01 +Seat 8: DamonV2 ($0.05), net: -$0.02 +Seat 10: tchazx ($0.90), net: -$0.10, [8h, 9h, 6s, Ah, Jh] (HIGH_CARD ACE) +Seat 1: x Diabolo666 ($11.34), net: +$0.11, [2c, Ac, Td, As, Qc] (PAIR ACE) +Seat 3: velabianca ($0.51) +***** End of hand R5-81962116-232 ***** +***** History for hand R5-81962116-233 ***** +Start hand: Mon Sep 13 00:21:42 GMT+0100 2010 +Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) +User: tchazx +Button: seat 8 +Players in round: 5 +Seat 10: tchazx ($0.90) +Seat 1: x Diabolo666 ($11.34) +Seat 3: velabianca ($0.51) +Seat 4: grommek ($9.40) +Seat 8: DamonV2 ($0.05) +tchazx posts small blind ($0.02) +x Diabolo666 posts big blind ($0.05) +grommek posts big blind ($0.05) +grommek posts dead blind ($0.02) +--- +Dealing pocket cards +Dealing to tchazx: [Jd, 5s, 8h, 4h, 7d] +velabianca calls $0.05 +grommek checks +DamonV2 calls $0.05 [all in] +tchazx calls $0.03 +x Diabolo666 checks +--- +tchazx changed 1 cards +New hand for tchazx: [Ah, 5s, 8h, 4h, 7d] +x Diabolo666 changed 4 cards +velabianca changed 2 cards +grommek changed 3 cards +DamonV2 changed 2 cards +tchazx checks +x Diabolo666 checks +velabianca bets $0.10 +grommek folds +tchazx folds +x Diabolo666 folds +--- +--- +Summary: +Main pot: $0.27 won by velabianca ($0.26) +Rake taken: $0.01 +Seat 10: tchazx ($0.85), net: -$0.05 +Seat 1: x Diabolo666 ($11.29), net: -$0.05 +Seat 3: velabianca ($0.72), net: +$0.21, [As, 9s, 6s, 6c, 9h] (TWO_PAIR NINE, SIX) +Seat 4: grommek ($9.33), net: -$0.07 +Seat 8: DamonV2 ($0), net: -$0.05, [Jh, 2c, Kh, Td, 6h] (HIGH_CARD KING) +***** End of hand R5-81962116-233 ***** +***** History for hand R5-81962116-234 ***** +Start hand: Mon Sep 13 00:22:36 GMT+0100 2010 +Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) +User: tchazx +Button: seat 10 +Players in round: 4 +Seat 1: x Diabolo666 ($11.29) +Seat 3: velabianca ($0.72) +Seat 4: grommek ($9.33) +Seat 10: tchazx ($0.85) +x Diabolo666 posts small blind ($0.02) +velabianca posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [Kh, 9d, As, 4s, 7c] +grommek calls $0.05 +tchazx folds +x Diabolo666 folds +velabianca checks +velabianca changed 3 cards +grommek changed 3 cards +velabianca checks +grommek bets $0.10 +velabianca folds +--- +Summary: +Main pot: $0.12 won by grommek ($0.12) +Rake taken: $0 +Seat 1: x Diabolo666 ($11.27), net: -$0.02 +Seat 3: velabianca ($0.67), net: -$0.05 +Seat 4: grommek ($9.40), net: +$0.07 +Seat 10: tchazx ($0.85) +***** End of hand R5-81962116-234 ***** +***** History for hand R5-81962116-235 ***** +Start hand: Mon Sep 13 00:23:04 GMT+0100 2010 +Table: Suez [81962116] (LIMIT FIVE_CARD_DRAW $0.05/$0.10, Real money) +User: tchazx +Button: seat 1 +Players in round: 4 +Seat 3: velabianca ($0.67) +Seat 4: grommek ($9.40) +Seat 10: tchazx ($0.85) +Seat 1: x Diabolo666 ($11.27) +velabianca posts small blind ($0.02) +grommek posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [8d, Td, 2s, 3d, Qd] +tchazx calls $0.05 +x Diabolo666 raises $0.10 to $0.10 +velabianca calls $0.08 +grommek calls $0.05 +tchazx calls $0.05 +--- +velabianca changed 2 cards +grommek changed 2 cards +tchazx changed 1 cards +New hand for tchazx: [8d, Td, 8h, 3d, Qd] +x Diabolo666 changed 3 cards +velabianca checks +grommek checks +tchazx checks +x Diabolo666 checks +--- +Summary: +Main pot: $0.40 won by velabianca ($0.38) +Rake taken: $0.02 +Seat 3: velabianca ($0.95), net: +$0.28 +Seat 4: grommek ($9.30), net: -$0.10 +Seat 10: tchazx ($0.75), net: -$0.10 +Seat 1: x Diabolo666 ($11.17), net: -$0.10, [6d, Qc, 4c, Th, Qs] (PAIR QUEEN) +***** End of hand R5-81962116-235 ***** diff --git a/pyfpdb/regression-test-files/cash/OnGame/Flop/LO-9max-0.05-0.10-201009.Sample.txt b/pyfpdb/regression-test-files/cash/OnGame/Flop/LO-9max-0.05-0.10-201009.Sample.txt index 96661590..862b2335 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Flop/LO-9max-0.05-0.10-201009.Sample.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Flop/LO-9max-0.05-0.10-201009.Sample.txt @@ -1,444 +1,444 @@ -***** History for hand R5-81867677-656 ***** -Start hand: Mon Sep 13 00:26:26 GMT+0100 2010 -Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx -Button: seat 8 -Players in round: 3 -Seat 3: nickgerm ($3.74) -Seat 4: tchazx ($5) -Seat 8: XYXY26XYXY ($1.79) -nickgerm posts small blind ($0.02) -tchazx posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [Ks, 4s, 6s, Th] -XYXY26XYXY calls $0.05 -nickgerm calls $0.03 -tchazx checks ---- Dealing flop [5h, 7d, 2s] -nickgerm checks -tchazx checks -XYXY26XYXY checks ---- Dealing turn [Qs] -nickgerm checks -tchazx checks -XYXY26XYXY checks ---- Dealing river [4d] -nickgerm bets $0.10 -tchazx folds -XYXY26XYXY folds ---- -Summary: -Main pot: $0.15 won by nickgerm ($0.15) -Rake taken: $0 -Seat 3: nickgerm ($3.84), net: +$0.10 -Seat 4: tchazx ($4.95), net: -$0.05 -Seat 8: XYXY26XYXY ($1.74), net: -$0.05 -***** End of hand R5-81867677-656 ***** -***** History for hand R5-81867677-657 ***** -Start hand: Mon Sep 13 00:27:13 GMT+0100 2010 -Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx -Button: seat 3 -Players in round: 3 -Seat 4: tchazx ($4.95) -Seat 8: XYXY26XYXY ($1.74) -Seat 3: nickgerm ($3.84) -tchazx posts small blind ($0.02) -XYXY26XYXY posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [Jd, Td, 8h, Tc] -nickgerm calls $0.05 -tchazx calls $0.03 -XYXY26XYXY checks ---- Dealing flop [4h, 7c, 2c] -tchazx checks -XYXY26XYXY checks -nickgerm checks ---- Dealing turn [Kc] -tchazx checks -XYXY26XYXY checks -nickgerm bets $0.10 -tchazx folds -XYXY26XYXY calls $0.10 ---- Dealing river [3d] -XYXY26XYXY checks -nickgerm bets $0.10 -XYXY26XYXY calls $0.10 ---- -Summary: -Main pot: $0.55 won by nickgerm ($0.27), XYXY26XYXY ($0.26) -Rake taken: $0.02 -Seat 4: tchazx ($4.90), net: -$0.05 -Seat 8: XYXY26XYXY ($1.75), net: +$0.01, [7h, Qs, 9c, Kd] (TWO_PAIR KING, SEVEN) -Seat 3: nickgerm ($3.86), net: +$0.02, [7d, 6s, Ks, Jc] (TWO_PAIR KING, SEVEN) -***** End of hand R5-81867677-657 ***** -***** History for hand R5-81867677-658 ***** -Start hand: Mon Sep 13 00:28:06 GMT+0100 2010 -Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx -Button: seat 4 -Players in round: 5 -Seat 8: XYXY26XYXY ($1.75) -Seat 10: Mandala14 ($3) -Seat 1: ANOKATO ($2.33) -Seat 3: nickgerm ($3.86) -Seat 4: tchazx ($4.90) -XYXY26XYXY posts small blind ($0.02) -Mandala14 posts big blind ($0.05) -ANOKATO posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [Ad, Js, Jc, 9h] -ANOKATO checks -nickgerm raises $0.10 to $0.10 -tchazx calls $0.10 -XYXY26XYXY calls $0.08 -Mandala14 calls $0.05 -ANOKATO calls $0.05 ---- Dealing flop [6h, 2s, 5c] -XYXY26XYXY checks -Mandala14 checks -ANOKATO bets $0.05 -nickgerm raises $0.10 to $0.10 -tchazx calls $0.10 -XYXY26XYXY folds -Mandala14 calls $0.10 -ANOKATO raises $0.10 to $0.15 -nickgerm calls $0.05 -tchazx calls $0.05 -Mandala14 calls $0.05 ---- Dealing turn [Kh] -Mandala14 checks -ANOKATO bets $0.10 -nickgerm calls $0.10 -tchazx calls $0.10 -Mandala14 calls $0.10 ---- Dealing river [Ks] -Mandala14 bets $0.10 -ANOKATO calls $0.10 -nickgerm folds -tchazx calls $0.10 ---- -Summary: -Main pot: $1.80 won by Mandala14 ($1.71) -Rake taken: $0.09 -Seat 8: XYXY26XYXY ($1.65), net: -$0.10 -Seat 10: Mandala14 ($4.26), net: +$1.26, [As, Ah, 5s, Qs] (TWO_PAIR ACE, KING) -Seat 1: ANOKATO ($1.88), net: -$0.45 -Seat 3: nickgerm ($3.51), net: -$0.35 -Seat 4: tchazx ($4.45), net: -$0.45 -***** End of hand R5-81867677-658 ***** -***** History for hand R5-81867677-659 ***** -Start hand: Mon Sep 13 00:29:21 GMT+0100 2010 -Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx -Button: seat 8 -Players in round: 5 -Seat 10: Mandala14 ($4.26) -Seat 1: ANOKATO ($1.88) -Seat 3: nickgerm ($3.51) -Seat 4: tchazx ($4.45) -Seat 8: XYXY26XYXY ($1.65) -Mandala14 posts small blind ($0.02) -ANOKATO posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [5h, Tc, 9c, 3h] -nickgerm raises $0.10 to $0.10 -tchazx calls $0.10 -XYXY26XYXY calls $0.10 -Mandala14 calls $0.08 -ANOKATO calls $0.05 ---- Dealing flop [8s, 4d, 6d] -Mandala14 checks -ANOKATO checks -nickgerm bets $0.05 -tchazx calls $0.05 -XYXY26XYXY calls $0.05 -Mandala14 calls $0.05 -ANOKATO calls $0.05 ---- Dealing turn [9s] -Mandala14 checks -ANOKATO bets $0.10 -nickgerm raises $0.20 to $0.20 -tchazx folds -XYXY26XYXY calls $0.20 -Mandala14 calls $0.20 -ANOKATO raises $0.20 to $0.30 -nickgerm calls $0.10 -XYXY26XYXY calls $0.10 -Mandala14 calls $0.10 ---- Dealing river [4c] -Mandala14 checks -ANOKATO bets $0.10 -nickgerm folds -XYXY26XYXY folds -Mandala14 folds ---- -Summary: -Main pot: $1.95 won by ANOKATO ($1.86) -Rake taken: $0.09 -Seat 10: Mandala14 ($3.81), net: -$0.45 -Seat 1: ANOKATO ($3.29), net: +$1.41 -Seat 3: nickgerm ($3.06), net: -$0.45 -Seat 4: tchazx ($4.30), net: -$0.15 -Seat 8: XYXY26XYXY ($1.20), net: -$0.45 -***** End of hand R5-81867677-659 ***** -***** History for hand R5-81867677-660 ***** -Start hand: Mon Sep 13 00:30:43 GMT+0100 2010 -Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx -Button: seat 10 -Players in round: 5 -Seat 1: ANOKATO ($3.29) -Seat 3: nickgerm ($3.06) -Seat 4: tchazx ($4.30) -Seat 8: XYXY26XYXY ($1.20) -Seat 10: Mandala14 ($3.81) -ANOKATO posts small blind ($0.02) -nickgerm posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [Qh, 4d, Ts, 9d] -tchazx calls $0.05 -XYXY26XYXY calls $0.05 -Mandala14 calls $0.05 -ANOKATO calls $0.03 -nickgerm raises $0.05 to $0.10 -tchazx calls $0.05 -XYXY26XYXY calls $0.05 -Mandala14 calls $0.05 -ANOKATO calls $0.05 ---- Dealing flop [6d, 3c, Qc] -ANOKATO checks -nickgerm bets $0.05 -tchazx calls $0.05 -XYXY26XYXY calls $0.05 -Mandala14 calls $0.05 -ANOKATO calls $0.05 ---- Dealing turn [7h] -ANOKATO checks -nickgerm checks -tchazx checks -XYXY26XYXY checks -Mandala14 checks ---- Dealing river [Jh] -ANOKATO bets $0.10 -nickgerm folds -tchazx calls $0.10 -XYXY26XYXY folds -Mandala14 folds ---- -Summary: -Main pot: $0.95 won by ANOKATO ($0.91) -Rake taken: $0.04 -Seat 1: ANOKATO ($3.95), net: +$0.66, [7c, Qd, Ks, 5d] (TWO_PAIR QUEEN, SEVEN) -Seat 3: nickgerm ($2.91), net: -$0.15 -Seat 4: tchazx ($4.05), net: -$0.25 -Seat 8: XYXY26XYXY ($1.05), net: -$0.15 -Seat 10: Mandala14 ($3.66), net: -$0.15 -***** End of hand R5-81867677-660 ***** -***** History for hand R5-81867677-661 ***** -Start hand: Mon Sep 13 00:31:54 GMT+0100 2010 -Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx -Button: seat 1 -Players in round: 5 -Seat 3: nickgerm ($2.91) -Seat 4: tchazx ($4.05) -Seat 8: XYXY26XYXY ($1.05) -Seat 10: Mandala14 ($3.66) -Seat 1: ANOKATO ($3.95) -nickgerm posts small blind ($0.02) -tchazx posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [5d, 9h, 6h, 4h] -XYXY26XYXY calls $0.05 -Mandala14 calls $0.05 -ANOKATO calls $0.05 -nickgerm calls $0.03 -tchazx checks ---- Dealing flop [2d, 4d, Jh] -nickgerm bets $0.05 -tchazx folds -XYXY26XYXY calls $0.05 -Mandala14 folds -ANOKATO calls $0.05 ---- Dealing turn [As] -nickgerm bets $0.10 -XYXY26XYXY calls $0.10 -ANOKATO raises $0.20 to $0.20 -nickgerm calls $0.10 -XYXY26XYXY calls $0.10 ---- Dealing river [Jc] -nickgerm bets $0.10 -XYXY26XYXY calls $0.10 -ANOKATO raises $0.20 to $0.20 -nickgerm raises $0.20 to $0.30 -XYXY26XYXY folds -ANOKATO calls $0.10 ---- -Summary: -Main pot: $1.70 won by nickgerm ($1.62) -Rake taken: $0.08 -Seat 3: nickgerm ($3.93), net: +$1.02, [9c, 4s, Jd, 6c] (FULL_HOUSE JACK, FOUR) -Seat 4: tchazx ($4), net: -$0.05 -Seat 8: XYXY26XYXY ($0.65), net: -$0.40 -Seat 10: Mandala14 ($3.61), net: -$0.05 -Seat 1: ANOKATO ($3.35), net: -$0.60 -***** End of hand R5-81867677-661 ***** -***** History for hand R5-81867677-662 ***** -Start hand: Mon Sep 13 00:33:20 GMT+0100 2010 -Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx -Button: seat 3 -Players in round: 5 -Seat 4: tchazx ($4) -Seat 8: XYXY26XYXY ($0.65) -Seat 10: Mandala14 ($3.61) -Seat 1: ANOKATO ($3.35) -Seat 3: nickgerm ($3.93) -tchazx posts small blind ($0.02) -XYXY26XYXY posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [5s, 6c, Kc, 3s] -Mandala14 calls $0.05 -ANOKATO calls $0.05 -nickgerm raises $0.10 to $0.10 -tchazx folds -XYXY26XYXY calls $0.05 -Mandala14 calls $0.05 -ANOKATO calls $0.05 ---- Dealing flop [3h, 2d, 2s] -XYXY26XYXY checks -Mandala14 checks -ANOKATO checks -nickgerm bets $0.05 -XYXY26XYXY calls $0.05 -Mandala14 folds -ANOKATO raises $0.10 to $0.10 -nickgerm calls $0.05 -XYXY26XYXY folds ---- Dealing turn [4d] -ANOKATO checks -nickgerm bets $0.10 -ANOKATO raises $0.20 to $0.20 -nickgerm calls $0.10 ---- Dealing river [Ts] -ANOKATO checks -nickgerm checks ---- -Summary: -Main pot: $1.07 won by ANOKATO ($1.02) -Rake taken: $0.05 -Seat 4: tchazx ($3.98), net: -$0.02 -Seat 8: XYXY26XYXY ($0.50), net: -$0.15 -Seat 10: Mandala14 ($3.51), net: -$0.10 -Seat 1: ANOKATO ($3.97), net: +$0.62, [Js, 5c, 9c, 2h] (THREE_OF_A_KIND TWO) -Seat 3: nickgerm ($3.53), net: -$0.40 -***** End of hand R5-81867677-662 ***** -***** History for hand R5-81867677-663 ***** -Start hand: Mon Sep 13 00:34:34 GMT+0100 2010 -Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx -Button: seat 4 -Players in round: 5 -Seat 8: XYXY26XYXY ($0.50) -Seat 10: Mandala14 ($3.51) -Seat 1: ANOKATO ($3.97) -Seat 3: nickgerm ($3.53) -Seat 4: tchazx ($3.98) -XYXY26XYXY posts small blind ($0.02) -Mandala14 posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [Ac, 9h, 6h, Jc] -ANOKATO calls $0.05 -nickgerm calls $0.05 -tchazx calls $0.05 -XYXY26XYXY calls $0.03 -Mandala14 checks ---- Dealing flop [7s, 4c, 8s] -XYXY26XYXY checks -Mandala14 checks -ANOKATO bets $0.05 -nickgerm calls $0.05 -tchazx calls $0.05 -XYXY26XYXY calls $0.05 -Mandala14 calls $0.05 ---- Dealing turn [2d] -XYXY26XYXY checks -Mandala14 checks -ANOKATO bets $0.10 -nickgerm raises $0.20 to $0.20 -tchazx calls $0.20 -XYXY26XYXY calls $0.20 -Mandala14 calls $0.20 -ANOKATO calls $0.10 ---- Dealing river [4h] -XYXY26XYXY bets $0.10 -Mandala14 folds -ANOKATO calls $0.10 -nickgerm raises $0.20 to $0.20 -tchazx folds -XYXY26XYXY calls $0.10 [all in] -ANOKATO folds ---- -Summary: -Main pot: $2 won by XYXY26XYXY ($1.90) -Rake taken: $0.10 -Seat 8: XYXY26XYXY ($1.90), net: +$1.40, [8d, 5c, 4d, 3c] (FULL_HOUSE FOUR, EIGHT) -Seat 10: Mandala14 ($3.21), net: -$0.30 -Seat 1: ANOKATO ($3.57), net: -$0.40 -Seat 3: nickgerm ($3.03), net: -$0.50, [6s, Th, 3d, 5d] (STRAIGHT EIGHT) -Seat 4: tchazx ($3.68), net: -$0.30 -***** End of hand R5-81867677-663 ***** -***** History for hand R5-81867677-664 ***** -Start hand: Mon Sep 13 00:36:21 GMT+0100 2010 -Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) -User: tchazx -Button: seat 8 -Players in round: 5 -Seat 10: Mandala14 ($3.21) -Seat 1: ANOKATO ($3.57) -Seat 3: nickgerm ($3.03) -Seat 4: tchazx ($3.68) -Seat 8: XYXY26XYXY ($1.90) -Mandala14 posts small blind ($0.02) -ANOKATO posts big blind ($0.05) ---- -Dealing pocket cards -Dealing to tchazx: [7d, Kh, 4s, Jh] -nickgerm calls $0.05 -tchazx calls $0.05 -XYXY26XYXY folds -Mandala14 calls $0.03 -ANOKATO checks ---- Dealing flop [4h, Js, Ac] -Mandala14 checks -ANOKATO folds -nickgerm bets $0.05 -tchazx calls $0.05 -Mandala14 calls $0.05 ---- Dealing turn [8c] -Mandala14 checks -nickgerm checks -tchazx checks ---- Dealing river [3d] -Mandala14 checks -nickgerm checks -tchazx checks ---- -Summary: -Main pot: $0.35 won by tchazx ($0.34) -Rake taken: $0.01 -Seat 10: Mandala14 ($3.11), net: -$0.10, [7h, 4d, Qh, 6d] (PAIR FOUR) -Seat 1: ANOKATO ($3.52), net: -$0.05 -Seat 3: nickgerm ($2.93), net: -$0.10, [7s, Qd, 6s, Ah] (PAIR ACE) -Seat 4: tchazx ($3.92), net: +$0.24, [7d, Kh, 4s, Jh] (TWO_PAIR JACK, FOUR) -Seat 8: XYXY26XYXY ($1.90) -***** End of hand R5-81867677-664 ***** +***** History for hand R5-81867677-656 ***** +Start hand: Mon Sep 13 00:26:26 GMT+0100 2010 +Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) +User: tchazx +Button: seat 8 +Players in round: 3 +Seat 3: nickgerm ($3.74) +Seat 4: tchazx ($5) +Seat 8: XYXY26XYXY ($1.79) +nickgerm posts small blind ($0.02) +tchazx posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [Ks, 4s, 6s, Th] +XYXY26XYXY calls $0.05 +nickgerm calls $0.03 +tchazx checks +--- Dealing flop [5h, 7d, 2s] +nickgerm checks +tchazx checks +XYXY26XYXY checks +--- Dealing turn [Qs] +nickgerm checks +tchazx checks +XYXY26XYXY checks +--- Dealing river [4d] +nickgerm bets $0.10 +tchazx folds +XYXY26XYXY folds +--- +Summary: +Main pot: $0.15 won by nickgerm ($0.15) +Rake taken: $0 +Seat 3: nickgerm ($3.84), net: +$0.10 +Seat 4: tchazx ($4.95), net: -$0.05 +Seat 8: XYXY26XYXY ($1.74), net: -$0.05 +***** End of hand R5-81867677-656 ***** +***** History for hand R5-81867677-657 ***** +Start hand: Mon Sep 13 00:27:13 GMT+0100 2010 +Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) +User: tchazx +Button: seat 3 +Players in round: 3 +Seat 4: tchazx ($4.95) +Seat 8: XYXY26XYXY ($1.74) +Seat 3: nickgerm ($3.84) +tchazx posts small blind ($0.02) +XYXY26XYXY posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [Jd, Td, 8h, Tc] +nickgerm calls $0.05 +tchazx calls $0.03 +XYXY26XYXY checks +--- Dealing flop [4h, 7c, 2c] +tchazx checks +XYXY26XYXY checks +nickgerm checks +--- Dealing turn [Kc] +tchazx checks +XYXY26XYXY checks +nickgerm bets $0.10 +tchazx folds +XYXY26XYXY calls $0.10 +--- Dealing river [3d] +XYXY26XYXY checks +nickgerm bets $0.10 +XYXY26XYXY calls $0.10 +--- +Summary: +Main pot: $0.55 won by nickgerm ($0.27), XYXY26XYXY ($0.26) +Rake taken: $0.02 +Seat 4: tchazx ($4.90), net: -$0.05 +Seat 8: XYXY26XYXY ($1.75), net: +$0.01, [7h, Qs, 9c, Kd] (TWO_PAIR KING, SEVEN) +Seat 3: nickgerm ($3.86), net: +$0.02, [7d, 6s, Ks, Jc] (TWO_PAIR KING, SEVEN) +***** End of hand R5-81867677-657 ***** +***** History for hand R5-81867677-658 ***** +Start hand: Mon Sep 13 00:28:06 GMT+0100 2010 +Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) +User: tchazx +Button: seat 4 +Players in round: 5 +Seat 8: XYXY26XYXY ($1.75) +Seat 10: Mandala14 ($3) +Seat 1: ANOKATO ($2.33) +Seat 3: nickgerm ($3.86) +Seat 4: tchazx ($4.90) +XYXY26XYXY posts small blind ($0.02) +Mandala14 posts big blind ($0.05) +ANOKATO posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [Ad, Js, Jc, 9h] +ANOKATO checks +nickgerm raises $0.10 to $0.10 +tchazx calls $0.10 +XYXY26XYXY calls $0.08 +Mandala14 calls $0.05 +ANOKATO calls $0.05 +--- Dealing flop [6h, 2s, 5c] +XYXY26XYXY checks +Mandala14 checks +ANOKATO bets $0.05 +nickgerm raises $0.10 to $0.10 +tchazx calls $0.10 +XYXY26XYXY folds +Mandala14 calls $0.10 +ANOKATO raises $0.10 to $0.15 +nickgerm calls $0.05 +tchazx calls $0.05 +Mandala14 calls $0.05 +--- Dealing turn [Kh] +Mandala14 checks +ANOKATO bets $0.10 +nickgerm calls $0.10 +tchazx calls $0.10 +Mandala14 calls $0.10 +--- Dealing river [Ks] +Mandala14 bets $0.10 +ANOKATO calls $0.10 +nickgerm folds +tchazx calls $0.10 +--- +Summary: +Main pot: $1.80 won by Mandala14 ($1.71) +Rake taken: $0.09 +Seat 8: XYXY26XYXY ($1.65), net: -$0.10 +Seat 10: Mandala14 ($4.26), net: +$1.26, [As, Ah, 5s, Qs] (TWO_PAIR ACE, KING) +Seat 1: ANOKATO ($1.88), net: -$0.45 +Seat 3: nickgerm ($3.51), net: -$0.35 +Seat 4: tchazx ($4.45), net: -$0.45 +***** End of hand R5-81867677-658 ***** +***** History for hand R5-81867677-659 ***** +Start hand: Mon Sep 13 00:29:21 GMT+0100 2010 +Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) +User: tchazx +Button: seat 8 +Players in round: 5 +Seat 10: Mandala14 ($4.26) +Seat 1: ANOKATO ($1.88) +Seat 3: nickgerm ($3.51) +Seat 4: tchazx ($4.45) +Seat 8: XYXY26XYXY ($1.65) +Mandala14 posts small blind ($0.02) +ANOKATO posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [5h, Tc, 9c, 3h] +nickgerm raises $0.10 to $0.10 +tchazx calls $0.10 +XYXY26XYXY calls $0.10 +Mandala14 calls $0.08 +ANOKATO calls $0.05 +--- Dealing flop [8s, 4d, 6d] +Mandala14 checks +ANOKATO checks +nickgerm bets $0.05 +tchazx calls $0.05 +XYXY26XYXY calls $0.05 +Mandala14 calls $0.05 +ANOKATO calls $0.05 +--- Dealing turn [9s] +Mandala14 checks +ANOKATO bets $0.10 +nickgerm raises $0.20 to $0.20 +tchazx folds +XYXY26XYXY calls $0.20 +Mandala14 calls $0.20 +ANOKATO raises $0.20 to $0.30 +nickgerm calls $0.10 +XYXY26XYXY calls $0.10 +Mandala14 calls $0.10 +--- Dealing river [4c] +Mandala14 checks +ANOKATO bets $0.10 +nickgerm folds +XYXY26XYXY folds +Mandala14 folds +--- +Summary: +Main pot: $1.95 won by ANOKATO ($1.86) +Rake taken: $0.09 +Seat 10: Mandala14 ($3.81), net: -$0.45 +Seat 1: ANOKATO ($3.29), net: +$1.41 +Seat 3: nickgerm ($3.06), net: -$0.45 +Seat 4: tchazx ($4.30), net: -$0.15 +Seat 8: XYXY26XYXY ($1.20), net: -$0.45 +***** End of hand R5-81867677-659 ***** +***** History for hand R5-81867677-660 ***** +Start hand: Mon Sep 13 00:30:43 GMT+0100 2010 +Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) +User: tchazx +Button: seat 10 +Players in round: 5 +Seat 1: ANOKATO ($3.29) +Seat 3: nickgerm ($3.06) +Seat 4: tchazx ($4.30) +Seat 8: XYXY26XYXY ($1.20) +Seat 10: Mandala14 ($3.81) +ANOKATO posts small blind ($0.02) +nickgerm posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [Qh, 4d, Ts, 9d] +tchazx calls $0.05 +XYXY26XYXY calls $0.05 +Mandala14 calls $0.05 +ANOKATO calls $0.03 +nickgerm raises $0.05 to $0.10 +tchazx calls $0.05 +XYXY26XYXY calls $0.05 +Mandala14 calls $0.05 +ANOKATO calls $0.05 +--- Dealing flop [6d, 3c, Qc] +ANOKATO checks +nickgerm bets $0.05 +tchazx calls $0.05 +XYXY26XYXY calls $0.05 +Mandala14 calls $0.05 +ANOKATO calls $0.05 +--- Dealing turn [7h] +ANOKATO checks +nickgerm checks +tchazx checks +XYXY26XYXY checks +Mandala14 checks +--- Dealing river [Jh] +ANOKATO bets $0.10 +nickgerm folds +tchazx calls $0.10 +XYXY26XYXY folds +Mandala14 folds +--- +Summary: +Main pot: $0.95 won by ANOKATO ($0.91) +Rake taken: $0.04 +Seat 1: ANOKATO ($3.95), net: +$0.66, [7c, Qd, Ks, 5d] (TWO_PAIR QUEEN, SEVEN) +Seat 3: nickgerm ($2.91), net: -$0.15 +Seat 4: tchazx ($4.05), net: -$0.25 +Seat 8: XYXY26XYXY ($1.05), net: -$0.15 +Seat 10: Mandala14 ($3.66), net: -$0.15 +***** End of hand R5-81867677-660 ***** +***** History for hand R5-81867677-661 ***** +Start hand: Mon Sep 13 00:31:54 GMT+0100 2010 +Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) +User: tchazx +Button: seat 1 +Players in round: 5 +Seat 3: nickgerm ($2.91) +Seat 4: tchazx ($4.05) +Seat 8: XYXY26XYXY ($1.05) +Seat 10: Mandala14 ($3.66) +Seat 1: ANOKATO ($3.95) +nickgerm posts small blind ($0.02) +tchazx posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [5d, 9h, 6h, 4h] +XYXY26XYXY calls $0.05 +Mandala14 calls $0.05 +ANOKATO calls $0.05 +nickgerm calls $0.03 +tchazx checks +--- Dealing flop [2d, 4d, Jh] +nickgerm bets $0.05 +tchazx folds +XYXY26XYXY calls $0.05 +Mandala14 folds +ANOKATO calls $0.05 +--- Dealing turn [As] +nickgerm bets $0.10 +XYXY26XYXY calls $0.10 +ANOKATO raises $0.20 to $0.20 +nickgerm calls $0.10 +XYXY26XYXY calls $0.10 +--- Dealing river [Jc] +nickgerm bets $0.10 +XYXY26XYXY calls $0.10 +ANOKATO raises $0.20 to $0.20 +nickgerm raises $0.20 to $0.30 +XYXY26XYXY folds +ANOKATO calls $0.10 +--- +Summary: +Main pot: $1.70 won by nickgerm ($1.62) +Rake taken: $0.08 +Seat 3: nickgerm ($3.93), net: +$1.02, [9c, 4s, Jd, 6c] (FULL_HOUSE JACK, FOUR) +Seat 4: tchazx ($4), net: -$0.05 +Seat 8: XYXY26XYXY ($0.65), net: -$0.40 +Seat 10: Mandala14 ($3.61), net: -$0.05 +Seat 1: ANOKATO ($3.35), net: -$0.60 +***** End of hand R5-81867677-661 ***** +***** History for hand R5-81867677-662 ***** +Start hand: Mon Sep 13 00:33:20 GMT+0100 2010 +Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) +User: tchazx +Button: seat 3 +Players in round: 5 +Seat 4: tchazx ($4) +Seat 8: XYXY26XYXY ($0.65) +Seat 10: Mandala14 ($3.61) +Seat 1: ANOKATO ($3.35) +Seat 3: nickgerm ($3.93) +tchazx posts small blind ($0.02) +XYXY26XYXY posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [5s, 6c, Kc, 3s] +Mandala14 calls $0.05 +ANOKATO calls $0.05 +nickgerm raises $0.10 to $0.10 +tchazx folds +XYXY26XYXY calls $0.05 +Mandala14 calls $0.05 +ANOKATO calls $0.05 +--- Dealing flop [3h, 2d, 2s] +XYXY26XYXY checks +Mandala14 checks +ANOKATO checks +nickgerm bets $0.05 +XYXY26XYXY calls $0.05 +Mandala14 folds +ANOKATO raises $0.10 to $0.10 +nickgerm calls $0.05 +XYXY26XYXY folds +--- Dealing turn [4d] +ANOKATO checks +nickgerm bets $0.10 +ANOKATO raises $0.20 to $0.20 +nickgerm calls $0.10 +--- Dealing river [Ts] +ANOKATO checks +nickgerm checks +--- +Summary: +Main pot: $1.07 won by ANOKATO ($1.02) +Rake taken: $0.05 +Seat 4: tchazx ($3.98), net: -$0.02 +Seat 8: XYXY26XYXY ($0.50), net: -$0.15 +Seat 10: Mandala14 ($3.51), net: -$0.10 +Seat 1: ANOKATO ($3.97), net: +$0.62, [Js, 5c, 9c, 2h] (THREE_OF_A_KIND TWO) +Seat 3: nickgerm ($3.53), net: -$0.40 +***** End of hand R5-81867677-662 ***** +***** History for hand R5-81867677-663 ***** +Start hand: Mon Sep 13 00:34:34 GMT+0100 2010 +Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) +User: tchazx +Button: seat 4 +Players in round: 5 +Seat 8: XYXY26XYXY ($0.50) +Seat 10: Mandala14 ($3.51) +Seat 1: ANOKATO ($3.97) +Seat 3: nickgerm ($3.53) +Seat 4: tchazx ($3.98) +XYXY26XYXY posts small blind ($0.02) +Mandala14 posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [Ac, 9h, 6h, Jc] +ANOKATO calls $0.05 +nickgerm calls $0.05 +tchazx calls $0.05 +XYXY26XYXY calls $0.03 +Mandala14 checks +--- Dealing flop [7s, 4c, 8s] +XYXY26XYXY checks +Mandala14 checks +ANOKATO bets $0.05 +nickgerm calls $0.05 +tchazx calls $0.05 +XYXY26XYXY calls $0.05 +Mandala14 calls $0.05 +--- Dealing turn [2d] +XYXY26XYXY checks +Mandala14 checks +ANOKATO bets $0.10 +nickgerm raises $0.20 to $0.20 +tchazx calls $0.20 +XYXY26XYXY calls $0.20 +Mandala14 calls $0.20 +ANOKATO calls $0.10 +--- Dealing river [4h] +XYXY26XYXY bets $0.10 +Mandala14 folds +ANOKATO calls $0.10 +nickgerm raises $0.20 to $0.20 +tchazx folds +XYXY26XYXY calls $0.10 [all in] +ANOKATO folds +--- +Summary: +Main pot: $2 won by XYXY26XYXY ($1.90) +Rake taken: $0.10 +Seat 8: XYXY26XYXY ($1.90), net: +$1.40, [8d, 5c, 4d, 3c] (FULL_HOUSE FOUR, EIGHT) +Seat 10: Mandala14 ($3.21), net: -$0.30 +Seat 1: ANOKATO ($3.57), net: -$0.40 +Seat 3: nickgerm ($3.03), net: -$0.50, [6s, Th, 3d, 5d] (STRAIGHT EIGHT) +Seat 4: tchazx ($3.68), net: -$0.30 +***** End of hand R5-81867677-663 ***** +***** History for hand R5-81867677-664 ***** +Start hand: Mon Sep 13 00:36:21 GMT+0100 2010 +Table: Tilburg [81867677] (LIMIT OMAHA_HI $0.05/$0.10, Real money) +User: tchazx +Button: seat 8 +Players in round: 5 +Seat 10: Mandala14 ($3.21) +Seat 1: ANOKATO ($3.57) +Seat 3: nickgerm ($3.03) +Seat 4: tchazx ($3.68) +Seat 8: XYXY26XYXY ($1.90) +Mandala14 posts small blind ($0.02) +ANOKATO posts big blind ($0.05) +--- +Dealing pocket cards +Dealing to tchazx: [7d, Kh, 4s, Jh] +nickgerm calls $0.05 +tchazx calls $0.05 +XYXY26XYXY folds +Mandala14 calls $0.03 +ANOKATO checks +--- Dealing flop [4h, Js, Ac] +Mandala14 checks +ANOKATO folds +nickgerm bets $0.05 +tchazx calls $0.05 +Mandala14 calls $0.05 +--- Dealing turn [8c] +Mandala14 checks +nickgerm checks +tchazx checks +--- Dealing river [3d] +Mandala14 checks +nickgerm checks +tchazx checks +--- +Summary: +Main pot: $0.35 won by tchazx ($0.34) +Rake taken: $0.01 +Seat 10: Mandala14 ($3.11), net: -$0.10, [7h, 4d, Qh, 6d] (PAIR FOUR) +Seat 1: ANOKATO ($3.52), net: -$0.05 +Seat 3: nickgerm ($2.93), net: -$0.10, [7s, Qd, 6s, Ah] (PAIR ACE) +Seat 4: tchazx ($3.92), net: +$0.24, [7d, Kh, 4s, Jh] (TWO_PAIR JACK, FOUR) +Seat 8: XYXY26XYXY ($1.90) +***** End of hand R5-81867677-664 ***** diff --git a/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201008.Betfair.Skin.txt b/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201008.Betfair.Skin.txt index c7de95c3..b7fa7f7b 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201008.Betfair.Skin.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201008.Betfair.Skin.txt @@ -1,41 +1,41 @@ -***** History for hand R5-70000684-006 ***** -Start hand: Wed Aug 11 03:21:00 GMT+0100 2010 -Table: Kassel [73910684] (NO_LIMIT TEXAS_HOLDEM 0.05/0.10, Real money) -User: Player3 -Button: seat 8 -Players in round: 5 -Seat 9: Player1 (4.35) -Seat 3: Player0 (10.90) -Seat 5: Player2 (12.88) -Seat 6: Player3 (14.18) -Seat 8: Player4 (9) -Player1 posts small blind (0.05) -Player0 posts big blind (0.10) ---- -Dealing pocket cards -Dealing to Player3: [6s, 7h] -Player2 folds -Player3 folds -Player4 raises 0.30 to 0.30 -Player1 calls 0.25 -Player0 folds ---- Dealing flop [8c, Ts, 4d] -Player1 checks -Player4 checks ---- Dealing turn [Ac] -Player1 bets 0.10 -Player4 calls 0.10 ---- Dealing river [5d] -Player1 bets 0.10 -Player4 folds ---- -Summary: -Main pot: 0.90 won by Player1 (0.86) -Rake taken: $0.04 -Seat 9: Player1 (4.81), net: +0.46 -Seat 3: Player0 (10.80), net: -0.10 -Seat 5: Player2 (12.88) -Seat 6: Player3 (14.18) -Seat 8: Player4 (8.60), net: -0.40 -***** End of hand R5-73910684-276 ***** +***** History for hand R5-70000684-006 ***** +Start hand: Wed Aug 11 03:21:00 GMT+0100 2010 +Table: Kassel [73910684] (NO_LIMIT TEXAS_HOLDEM 0.05/0.10, Real money) +User: Player3 +Button: seat 8 +Players in round: 5 +Seat 9: Player1 (4.35) +Seat 3: Player0 (10.90) +Seat 5: Player2 (12.88) +Seat 6: Player3 (14.18) +Seat 8: Player4 (9) +Player1 posts small blind (0.05) +Player0 posts big blind (0.10) +--- +Dealing pocket cards +Dealing to Player3: [6s, 7h] +Player2 folds +Player3 folds +Player4 raises 0.30 to 0.30 +Player1 calls 0.25 +Player0 folds +--- Dealing flop [8c, Ts, 4d] +Player1 checks +Player4 checks +--- Dealing turn [Ac] +Player1 bets 0.10 +Player4 calls 0.10 +--- Dealing river [5d] +Player1 bets 0.10 +Player4 folds +--- +Summary: +Main pot: 0.90 won by Player1 (0.86) +Rake taken: $0.04 +Seat 9: Player1 (4.81), net: +0.46 +Seat 3: Player0 (10.80), net: -0.10 +Seat 5: Player2 (12.88) +Seat 6: Player3 (14.18) +Seat 8: Player4 (8.60), net: -0.40 +***** End of hand R5-73910684-276 ***** diff --git a/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201009.Dead.Small.Blind.txt b/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201009.Dead.Small.Blind.txt index 56e14b35..ccc8a85c 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201009.Dead.Small.Blind.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Flop/NLHE-9max-USD-0.05-0.10-201009.Dead.Small.Blind.txt @@ -1,27 +1,27 @@ -***** History for hand R5-79836934-72 ***** -Start hand: Sat Sep 4 05:34:19 GMT+0100 2010 -Table: Bnei Brak [79836934] (NO_LIMIT TEXAS_HOLDEM $0.05/$0.10, Real money) -User: tchazx -Button: seat 10 -Players in round: 2 -Seat 1: feradf ($6.86) -Seat 10: tchazx ($15.44) -tchazx posts big blind ($0.10) -tchazx posts dead blind ($0.05) -feradf posts big blind ($0.10) ---- -Dealing pocket cards -Dealing to tchazx: [Qh, 4h] -tchazx raises $0.20 to $0.30 -feradf calls $0.20 ---- Dealing flop [6c, Qs, 7h] -feradf checks -tchazx bets $0.45 -feradf folds ---- -Summary: -Main pot: $0.65 won by tchazx ($0.62) -Rake taken: $0.03 -Seat 1: feradf ($6.56), net: -$0.30 -Seat 10: tchazx ($15.71), net: +$0.27 +***** History for hand R5-79836934-72 ***** +Start hand: Sat Sep 4 05:34:19 GMT+0100 2010 +Table: Bnei Brak [79836934] (NO_LIMIT TEXAS_HOLDEM $0.05/$0.10, Real money) +User: tchazx +Button: seat 10 +Players in round: 2 +Seat 1: feradf ($6.86) +Seat 10: tchazx ($15.44) +tchazx posts big blind ($0.10) +tchazx posts dead blind ($0.05) +feradf posts big blind ($0.10) +--- +Dealing pocket cards +Dealing to tchazx: [Qh, 4h] +tchazx raises $0.20 to $0.30 +feradf calls $0.20 +--- Dealing flop [6c, Qs, 7h] +feradf checks +tchazx bets $0.45 +feradf folds +--- +Summary: +Main pot: $0.65 won by tchazx ($0.62) +Rake taken: $0.03 +Seat 1: feradf ($6.56), net: -$0.30 +Seat 10: tchazx ($15.71), net: +$0.27 ***** End of hand R5-79836934-72 ***** \ No newline at end of file diff --git a/pyfpdb/regression-test-files/cash/OnGame/Stud/7-Stud-USD-0.10-0.20-201009.Sample.txt b/pyfpdb/regression-test-files/cash/OnGame/Stud/7-Stud-USD-0.10-0.20-201009.Sample.txt index dc730042..4a760505 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Stud/7-Stud-USD-0.10-0.20-201009.Sample.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Stud/7-Stud-USD-0.10-0.20-201009.Sample.txt @@ -1,270 +1,270 @@ -***** History for hand R5-82086688-607 ***** -Start hand: Mon Sep 13 22:31:30 GMT+0100 2010 -Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) -User: tchazx -Players in round: 5 -Seat 1: the bAAr ($6.53) -Seat 2: tchazx ($2) -Seat 6: kueto ($6.30) -Seat 8: E6y Ko3y ($2.70) -Seat 10: telozver123 ($6.49) -the bAAr posts ante $0.02 -kueto posts ante $0.02 -E6y Ko3y posts ante $0.02 -telozver123 posts ante $0.02 -tchazx posts ante $0.02 ---- -Dealing pocket cards -Dealing to the bAAr: [-, -, Kh] -Dealing to tchazx: [Jh, 9d, Ac] -Dealing to kueto: [-, -, 4h] -Dealing to E6y Ko3y: [-, -, Ad] -Dealing to telozver123: [-, -, 6h] -kueto small bring in $0.05 -E6y Ko3y calls $0.05 -telozver123 calls $0.05 -the bAAr calls $0.05 -tchazx calls $0.05 ---- -Dealing 4th street -Dealing to the bAAr: [3h] -Dealing to tchazx: [7h] -Dealing to kueto: [3d] -Dealing to E6y Ko3y: [Qs] -Dealing to telozver123: [Ts] -E6y Ko3y bets $0.10 -telozver123 calls $0.10 -the bAAr calls $0.10 -tchazx calls $0.10 -kueto folds ---- -Dealing 5th street -Dealing to the bAAr: [9s] -Dealing to tchazx: [Js] -Dealing to E6y Ko3y: [6c] -Dealing to telozver123: [Kd] -E6y Ko3y checks -telozver123 checks -the bAAr bets $0.20 -tchazx calls $0.20 -E6y Ko3y calls $0.20 -telozver123 folds ---- -Dealing 6th street -Dealing to the bAAr: [8s] -Dealing to tchazx: [5c] -Dealing to E6y Ko3y: [5d] -E6y Ko3y checks -the bAAr bets $0.20 -tchazx calls $0.20 -E6y Ko3y calls $0.20 ---- -Dealing river -Dealing to tchazx: [9h] -E6y Ko3y checks -the bAAr checks -tchazx bets $0.20 -E6y Ko3y folds -the bAAr calls $0.20 ---- -Summary: -Main pot: $2.35 won by tchazx ($2.24) -Rake taken: $0.11 -Seat 1: the bAAr ($5.76), net: -$0.77 -Seat 2: tchazx ($3.47), net: +$1.47, [Jh, 9d, Ac, 7h, Js, 5c, 9h] (TWO_PAIR JACK, NINE) -Seat 6: kueto ($6.23), net: -$0.07 -Seat 8: E6y Ko3y ($2.13), net: -$0.57 -Seat 10: telozver123 ($6.32), net: -$0.17 -***** End of hand R5-82086688-607 ***** -***** History for hand R5-82086688-608 ***** -Start hand: Mon Sep 13 22:32:47 GMT+0100 2010 -Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) -User: tchazx -Players in round: 5 -Seat 1: the bAAr ($5.76) -Seat 2: tchazx ($3.47) -Seat 6: kueto ($6.23) -Seat 8: E6y Ko3y ($2.13) -Seat 10: telozver123 ($6.32) -the bAAr posts ante $0.02 -tchazx posts ante $0.02 -kueto posts ante $0.02 -E6y Ko3y posts ante $0.02 -telozver123 posts ante $0.02 ---- -Dealing pocket cards -Dealing to the bAAr: [-, -, 4s] -Dealing to tchazx: [8h, Ks, Qd] -Dealing to kueto: [-, -, 5h] -Dealing to E6y Ko3y: [-, -, 2h] -Dealing to telozver123: [-, -, 3c] -E6y Ko3y small bring in $0.05 -telozver123 folds -the bAAr calls $0.05 -tchazx calls $0.05 -kueto folds ---- -Dealing 4th street -Dealing to the bAAr: [Ad] -Dealing to tchazx: [8d] -Dealing to E6y Ko3y: [Qh] -the bAAr bets $0.10 -tchazx calls $0.10 -E6y Ko3y folds ---- -Dealing 5th street -Dealing to the bAAr: [4c] -Dealing to tchazx: [Ah] -the bAAr bets $0.20 -tchazx calls $0.20 ---- -Dealing 6th street -Dealing to the bAAr: [3d] -Dealing to tchazx: [Jh] -the bAAr checks -tchazx checks ---- -Dealing river -Dealing to tchazx: [Kh] -the bAAr bets $0.20 -tchazx calls $0.20 ---- -Summary: -Main pot: $1.25 won by tchazx ($1.19) -Rake taken: $0.06 -Seat 1: the bAAr ($5.19), net: -$0.57, [6s, 9s, 4s, Ad, 4c, 3d, 3h] (TWO_PAIR FOUR, THREE) -Seat 2: tchazx ($4.09), net: +$0.62, [8h, Ks, Qd, 8d, Ah, Jh, Kh] (TWO_PAIR KING, EIGHT) -Seat 6: kueto ($6.21), net: -$0.02 -Seat 8: E6y Ko3y ($2.06), net: -$0.07 -Seat 10: telozver123 ($6.30), net: -$0.02 -***** End of hand R5-82086688-608 ***** -***** History for hand R5-82086688-609 ***** -Start hand: Mon Sep 13 22:33:42 GMT+0100 2010 -Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) -User: tchazx -Players in round: 5 -Seat 1: the bAAr ($5.19) -Seat 2: tchazx ($4.09) -Seat 6: kueto ($6.21) -Seat 8: E6y Ko3y ($2.06) -Seat 10: telozver123 ($6.30) -the bAAr posts ante $0.02 -tchazx posts ante $0.02 -kueto posts ante $0.02 -E6y Ko3y posts ante $0.02 -telozver123 posts ante $0.02 ---- -Dealing pocket cards -Dealing to the bAAr: [-, -, 5c] -Dealing to tchazx: [Ad, As, Kh] -Dealing to kueto: [-, -, Qs] -Dealing to E6y Ko3y: [-, -, 8s] -Dealing to telozver123: [-, -, Tc] -the bAAr small bring in $0.05 -tchazx bets $0.10 -kueto calls $0.10 -E6y Ko3y folds -telozver123 folds -the bAAr folds ---- -Dealing 4th street -Dealing to tchazx: [Ks] -Dealing to kueto: [Qd] -tchazx bets $0.10 -kueto calls $0.10 ---- -Dealing 5th street -Dealing to tchazx: [8c] -Dealing to kueto: [7s] -tchazx bets $0.20 -kueto calls $0.20 ---- -Dealing 6th street -Dealing to tchazx: [7d] -Dealing to kueto: [5s] -tchazx bets $0.20 -kueto calls $0.20 ---- -Dealing river -Dealing to tchazx: [7h] -tchazx bets $0.20 -kueto calls $0.20 ---- -Summary: -Main pot: $1.75 won by kueto ($1.67) -Rake taken: $0.08 -Seat 1: the bAAr ($5.12), net: -$0.07 -Seat 2: tchazx ($3.27), net: -$0.82, [Ad, As, Kh, Ks, 8c, 7d, 7h] (TWO_PAIR ACE, KING) -Seat 6: kueto ($7.06), net: +$0.85, [Qc, 6c, Qs, Qd, 7s, 5s, 3c] (THREE_OF_A_KIND QUEEN) -Seat 8: E6y Ko3y ($2.04), net: -$0.02 -Seat 10: telozver123 ($6.28), net: -$0.02 -***** End of hand R5-82086688-609 ***** -***** History for hand R5-82086688-610 ***** -Start hand: Mon Sep 13 22:34:25 GMT+0100 2010 -Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) -User: tchazx -Players in round: 5 -Seat 1: the bAAr ($5.12) -Seat 2: tchazx ($3.27) -Seat 6: kueto ($7.06) -Seat 8: E6y Ko3y ($2.04) -Seat 10: telozver123 ($6.28) -the bAAr posts ante $0.02 -tchazx posts ante $0.02 -kueto posts ante $0.02 -E6y Ko3y posts ante $0.02 -telozver123 posts ante $0.02 ---- -Dealing pocket cards -Dealing to the bAAr: [-, -, Ts] -Dealing to tchazx: [9s, 6s, 7s] -Dealing to kueto: [-, -, Qs] -Dealing to E6y Ko3y: [-, -, 3s] -Dealing to telozver123: [-, -, 9d] -E6y Ko3y small bring in $0.05 -telozver123 folds -the bAAr calls $0.05 -tchazx calls $0.05 -kueto calls $0.05 ---- -Dealing 4th street -Dealing to the bAAr: [Qd] -Dealing to tchazx: [Ah] -Dealing to kueto: [7h] -Dealing to E6y Ko3y: [Th] -tchazx checks -kueto checks -E6y Ko3y checks -the bAAr bets $0.10 -tchazx calls $0.10 -kueto folds -E6y Ko3y folds ---- -Dealing 5th street -Dealing to the bAAr: [Jh] -Dealing to tchazx: [5c] -tchazx checks -the bAAr bets $0.20 -tchazx calls $0.20 ---- -Dealing 6th street -Dealing to the bAAr: [7d] -Dealing to tchazx: [7c] -tchazx checks -the bAAr bets $0.20 -tchazx calls $0.20 ---- -Dealing river -Dealing to tchazx: [5h] -tchazx checks -the bAAr checks ---- -Summary: -Main pot: $1.30 won by the bAAr ($1.24) -Rake taken: $0.06 -Seat 1: the bAAr ($5.79), net: +$0.67, [Tc, 9h, Ts, Qd, Jh, 7d, 9c] (TWO_PAIR TEN, NINE) -Seat 2: tchazx ($2.70), net: -$0.57, [9s, 6s, 7s, Ah, 5c, 7c, 5h] (TWO_PAIR SEVEN, FIVE) -Seat 6: kueto ($6.99), net: -$0.07 -Seat 8: E6y Ko3y ($1.97), net: -$0.07 -Seat 10: telozver123 ($6.26), net: -$0.02 -***** End of hand R5-82086688-610 ***** +***** History for hand R5-82086688-607 ***** +Start hand: Mon Sep 13 22:31:30 GMT+0100 2010 +Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) +User: tchazx +Players in round: 5 +Seat 1: the bAAr ($6.53) +Seat 2: tchazx ($2) +Seat 6: kueto ($6.30) +Seat 8: E6y Ko3y ($2.70) +Seat 10: telozver123 ($6.49) +the bAAr posts ante $0.02 +kueto posts ante $0.02 +E6y Ko3y posts ante $0.02 +telozver123 posts ante $0.02 +tchazx posts ante $0.02 +--- +Dealing pocket cards +Dealing to the bAAr: [-, -, Kh] +Dealing to tchazx: [Jh, 9d, Ac] +Dealing to kueto: [-, -, 4h] +Dealing to E6y Ko3y: [-, -, Ad] +Dealing to telozver123: [-, -, 6h] +kueto small bring in $0.05 +E6y Ko3y calls $0.05 +telozver123 calls $0.05 +the bAAr calls $0.05 +tchazx calls $0.05 +--- +Dealing 4th street +Dealing to the bAAr: [3h] +Dealing to tchazx: [7h] +Dealing to kueto: [3d] +Dealing to E6y Ko3y: [Qs] +Dealing to telozver123: [Ts] +E6y Ko3y bets $0.10 +telozver123 calls $0.10 +the bAAr calls $0.10 +tchazx calls $0.10 +kueto folds +--- +Dealing 5th street +Dealing to the bAAr: [9s] +Dealing to tchazx: [Js] +Dealing to E6y Ko3y: [6c] +Dealing to telozver123: [Kd] +E6y Ko3y checks +telozver123 checks +the bAAr bets $0.20 +tchazx calls $0.20 +E6y Ko3y calls $0.20 +telozver123 folds +--- +Dealing 6th street +Dealing to the bAAr: [8s] +Dealing to tchazx: [5c] +Dealing to E6y Ko3y: [5d] +E6y Ko3y checks +the bAAr bets $0.20 +tchazx calls $0.20 +E6y Ko3y calls $0.20 +--- +Dealing river +Dealing to tchazx: [9h] +E6y Ko3y checks +the bAAr checks +tchazx bets $0.20 +E6y Ko3y folds +the bAAr calls $0.20 +--- +Summary: +Main pot: $2.35 won by tchazx ($2.24) +Rake taken: $0.11 +Seat 1: the bAAr ($5.76), net: -$0.77 +Seat 2: tchazx ($3.47), net: +$1.47, [Jh, 9d, Ac, 7h, Js, 5c, 9h] (TWO_PAIR JACK, NINE) +Seat 6: kueto ($6.23), net: -$0.07 +Seat 8: E6y Ko3y ($2.13), net: -$0.57 +Seat 10: telozver123 ($6.32), net: -$0.17 +***** End of hand R5-82086688-607 ***** +***** History for hand R5-82086688-608 ***** +Start hand: Mon Sep 13 22:32:47 GMT+0100 2010 +Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) +User: tchazx +Players in round: 5 +Seat 1: the bAAr ($5.76) +Seat 2: tchazx ($3.47) +Seat 6: kueto ($6.23) +Seat 8: E6y Ko3y ($2.13) +Seat 10: telozver123 ($6.32) +the bAAr posts ante $0.02 +tchazx posts ante $0.02 +kueto posts ante $0.02 +E6y Ko3y posts ante $0.02 +telozver123 posts ante $0.02 +--- +Dealing pocket cards +Dealing to the bAAr: [-, -, 4s] +Dealing to tchazx: [8h, Ks, Qd] +Dealing to kueto: [-, -, 5h] +Dealing to E6y Ko3y: [-, -, 2h] +Dealing to telozver123: [-, -, 3c] +E6y Ko3y small bring in $0.05 +telozver123 folds +the bAAr calls $0.05 +tchazx calls $0.05 +kueto folds +--- +Dealing 4th street +Dealing to the bAAr: [Ad] +Dealing to tchazx: [8d] +Dealing to E6y Ko3y: [Qh] +the bAAr bets $0.10 +tchazx calls $0.10 +E6y Ko3y folds +--- +Dealing 5th street +Dealing to the bAAr: [4c] +Dealing to tchazx: [Ah] +the bAAr bets $0.20 +tchazx calls $0.20 +--- +Dealing 6th street +Dealing to the bAAr: [3d] +Dealing to tchazx: [Jh] +the bAAr checks +tchazx checks +--- +Dealing river +Dealing to tchazx: [Kh] +the bAAr bets $0.20 +tchazx calls $0.20 +--- +Summary: +Main pot: $1.25 won by tchazx ($1.19) +Rake taken: $0.06 +Seat 1: the bAAr ($5.19), net: -$0.57, [6s, 9s, 4s, Ad, 4c, 3d, 3h] (TWO_PAIR FOUR, THREE) +Seat 2: tchazx ($4.09), net: +$0.62, [8h, Ks, Qd, 8d, Ah, Jh, Kh] (TWO_PAIR KING, EIGHT) +Seat 6: kueto ($6.21), net: -$0.02 +Seat 8: E6y Ko3y ($2.06), net: -$0.07 +Seat 10: telozver123 ($6.30), net: -$0.02 +***** End of hand R5-82086688-608 ***** +***** History for hand R5-82086688-609 ***** +Start hand: Mon Sep 13 22:33:42 GMT+0100 2010 +Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) +User: tchazx +Players in round: 5 +Seat 1: the bAAr ($5.19) +Seat 2: tchazx ($4.09) +Seat 6: kueto ($6.21) +Seat 8: E6y Ko3y ($2.06) +Seat 10: telozver123 ($6.30) +the bAAr posts ante $0.02 +tchazx posts ante $0.02 +kueto posts ante $0.02 +E6y Ko3y posts ante $0.02 +telozver123 posts ante $0.02 +--- +Dealing pocket cards +Dealing to the bAAr: [-, -, 5c] +Dealing to tchazx: [Ad, As, Kh] +Dealing to kueto: [-, -, Qs] +Dealing to E6y Ko3y: [-, -, 8s] +Dealing to telozver123: [-, -, Tc] +the bAAr small bring in $0.05 +tchazx bets $0.10 +kueto calls $0.10 +E6y Ko3y folds +telozver123 folds +the bAAr folds +--- +Dealing 4th street +Dealing to tchazx: [Ks] +Dealing to kueto: [Qd] +tchazx bets $0.10 +kueto calls $0.10 +--- +Dealing 5th street +Dealing to tchazx: [8c] +Dealing to kueto: [7s] +tchazx bets $0.20 +kueto calls $0.20 +--- +Dealing 6th street +Dealing to tchazx: [7d] +Dealing to kueto: [5s] +tchazx bets $0.20 +kueto calls $0.20 +--- +Dealing river +Dealing to tchazx: [7h] +tchazx bets $0.20 +kueto calls $0.20 +--- +Summary: +Main pot: $1.75 won by kueto ($1.67) +Rake taken: $0.08 +Seat 1: the bAAr ($5.12), net: -$0.07 +Seat 2: tchazx ($3.27), net: -$0.82, [Ad, As, Kh, Ks, 8c, 7d, 7h] (TWO_PAIR ACE, KING) +Seat 6: kueto ($7.06), net: +$0.85, [Qc, 6c, Qs, Qd, 7s, 5s, 3c] (THREE_OF_A_KIND QUEEN) +Seat 8: E6y Ko3y ($2.04), net: -$0.02 +Seat 10: telozver123 ($6.28), net: -$0.02 +***** End of hand R5-82086688-609 ***** +***** History for hand R5-82086688-610 ***** +Start hand: Mon Sep 13 22:34:25 GMT+0100 2010 +Table: Milwaukee [82086688] (LIMIT SEVEN_CARD_STUD $0.10/$0.20, ante: $0.02, Real money) +User: tchazx +Players in round: 5 +Seat 1: the bAAr ($5.12) +Seat 2: tchazx ($3.27) +Seat 6: kueto ($7.06) +Seat 8: E6y Ko3y ($2.04) +Seat 10: telozver123 ($6.28) +the bAAr posts ante $0.02 +tchazx posts ante $0.02 +kueto posts ante $0.02 +E6y Ko3y posts ante $0.02 +telozver123 posts ante $0.02 +--- +Dealing pocket cards +Dealing to the bAAr: [-, -, Ts] +Dealing to tchazx: [9s, 6s, 7s] +Dealing to kueto: [-, -, Qs] +Dealing to E6y Ko3y: [-, -, 3s] +Dealing to telozver123: [-, -, 9d] +E6y Ko3y small bring in $0.05 +telozver123 folds +the bAAr calls $0.05 +tchazx calls $0.05 +kueto calls $0.05 +--- +Dealing 4th street +Dealing to the bAAr: [Qd] +Dealing to tchazx: [Ah] +Dealing to kueto: [7h] +Dealing to E6y Ko3y: [Th] +tchazx checks +kueto checks +E6y Ko3y checks +the bAAr bets $0.10 +tchazx calls $0.10 +kueto folds +E6y Ko3y folds +--- +Dealing 5th street +Dealing to the bAAr: [Jh] +Dealing to tchazx: [5c] +tchazx checks +the bAAr bets $0.20 +tchazx calls $0.20 +--- +Dealing 6th street +Dealing to the bAAr: [7d] +Dealing to tchazx: [7c] +tchazx checks +the bAAr bets $0.20 +tchazx calls $0.20 +--- +Dealing river +Dealing to tchazx: [5h] +tchazx checks +the bAAr checks +--- +Summary: +Main pot: $1.30 won by the bAAr ($1.24) +Rake taken: $0.06 +Seat 1: the bAAr ($5.79), net: +$0.67, [Tc, 9h, Ts, Qd, Jh, 7d, 9c] (TWO_PAIR TEN, NINE) +Seat 2: tchazx ($2.70), net: -$0.57, [9s, 6s, 7s, Ah, 5c, 7c, 5h] (TWO_PAIR SEVEN, FIVE) +Seat 6: kueto ($6.99), net: -$0.07 +Seat 8: E6y Ko3y ($1.97), net: -$0.07 +Seat 10: telozver123 ($6.26), net: -$0.02 +***** End of hand R5-82086688-610 ***** diff --git a/pyfpdb/regression-test-files/cash/OnGame/Stud/7-StudHL-USD-0.25-0.50-201008.All.streets.txt b/pyfpdb/regression-test-files/cash/OnGame/Stud/7-StudHL-USD-0.25-0.50-201008.All.streets.txt index df701803..53757eab 100644 --- a/pyfpdb/regression-test-files/cash/OnGame/Stud/7-StudHL-USD-0.25-0.50-201008.All.streets.txt +++ b/pyfpdb/regression-test-files/cash/OnGame/Stud/7-StudHL-USD-0.25-0.50-201008.All.streets.txt @@ -1,76 +1,76 @@ -***** History for hand R5-78227816-62 ***** -Start hand: Sat Aug 28 20:33:38 GMT+0300 2010 -Table: Taegu [78227816] (LIMIT SEVEN_CARD_STUD_HI_LO $0.25/$0.50, ante: $0.05, Real money) -User: XMAN1 -Players in round: 8 -Seat 1: XMAN1 ($25) -Seat 3: boneos56 ($27.78) -Seat 5: grumset2007 ($3.48) -Seat 6: mylonas77 ($40.73) -Seat 7: YMAN1 ($14.70) -Seat 8: Lee Clayton ($14.79) -Seat 9: guggi_cool ($8.34) -Seat 10: HangEv ($29.08) -boneos56 posts ante $0.05 -grumset2007 posts ante $0.05 -YMAN1 posts ante $0.05 -Lee Clayton posts ante $0.05 -guggi_cool posts ante $0.05 -HangEv posts ante $0.05 -mylonas77 posts ante $0.05 -XMAN1 posts ante $0.05 ---- -Dealing pocket cards -Dealing to XMAN1: [8d, 8s, 4d] -Dealing to boneos56: [-, -, Kd] -Dealing to grumset2007: [-, -, Ks] -Dealing to mylonas77: [-, -, 5c] -Dealing to YMAN1: [-, -, As] -Dealing to Lee Clayton: [-, -, Js] -Dealing to guggi_cool: [-, -, 9s] -Dealing to HangEv: [-, -, 6s] -XMAN1 small bring in $0.12 -boneos56 folds -grumset2007 folds -mylonas77 calls $0.12 -YMAN1 folds -Lee Clayton folds -guggi_cool folds -HangEv folds ---- -Dealing 4th street -Dealing to XMAN1: [3h] -Dealing to mylonas77: [2h] -mylonas77 bets $0.25 -XMAN1 calls $0.25 ---- -Dealing 5th street -Dealing to XMAN1: [8c] -Dealing to mylonas77: [Kh] -mylonas77 bets $0.50 -XMAN1 raises $1 to $1.37 -mylonas77 calls $0.50 ---- -Dealing 6th street -Dealing to XMAN1: [4c] -Dealing to mylonas77: [Qh] -XMAN1 bets $0.50 -mylonas77 calls $0.50 ---- -Dealing river -Dealing to XMAN1: [5h] -XMAN1 bets $0.50 -mylonas77 calls $0.50 ---- -Summary: -Main pot: $5.14 won by XMAN1 ($4.89) -Rake taken: $0.25 -Seat 1: XMAN1 ($27.47), net: +$2.47, [8d, 8s, 4d, 3h, 8c, 4c, 5h] (FULL_HOUSE EIGHT, FOUR) -Seat 3: boneos56 ($27.73), net: -$0.05 -Seat 5: grumset2007 ($3.43), net: -$0.05 -Seat 6: mylonas77 ($38.31), net: -$2.42 -Seat 7: YMAN1 ($14.65), net: -$0.05 -Seat 8: Lee Clayton ($14.74), net: -$0.05 -Seat 9: guggi_cool ($8.29), net: -$0.05 -Seat 10: HangEv ($29.03), net: -$0.05 -***** End of hand R5-78227816-62 ***** +***** History for hand R5-78227816-62 ***** +Start hand: Sat Aug 28 20:33:38 GMT+0300 2010 +Table: Taegu [78227816] (LIMIT SEVEN_CARD_STUD_HI_LO $0.25/$0.50, ante: $0.05, Real money) +User: XMAN1 +Players in round: 8 +Seat 1: XMAN1 ($25) +Seat 3: boneos56 ($27.78) +Seat 5: grumset2007 ($3.48) +Seat 6: mylonas77 ($40.73) +Seat 7: YMAN1 ($14.70) +Seat 8: Lee Clayton ($14.79) +Seat 9: guggi_cool ($8.34) +Seat 10: HangEv ($29.08) +boneos56 posts ante $0.05 +grumset2007 posts ante $0.05 +YMAN1 posts ante $0.05 +Lee Clayton posts ante $0.05 +guggi_cool posts ante $0.05 +HangEv posts ante $0.05 +mylonas77 posts ante $0.05 +XMAN1 posts ante $0.05 +--- +Dealing pocket cards +Dealing to XMAN1: [8d, 8s, 4d] +Dealing to boneos56: [-, -, Kd] +Dealing to grumset2007: [-, -, Ks] +Dealing to mylonas77: [-, -, 5c] +Dealing to YMAN1: [-, -, As] +Dealing to Lee Clayton: [-, -, Js] +Dealing to guggi_cool: [-, -, 9s] +Dealing to HangEv: [-, -, 6s] +XMAN1 small bring in $0.12 +boneos56 folds +grumset2007 folds +mylonas77 calls $0.12 +YMAN1 folds +Lee Clayton folds +guggi_cool folds +HangEv folds +--- +Dealing 4th street +Dealing to XMAN1: [3h] +Dealing to mylonas77: [2h] +mylonas77 bets $0.25 +XMAN1 calls $0.25 +--- +Dealing 5th street +Dealing to XMAN1: [8c] +Dealing to mylonas77: [Kh] +mylonas77 bets $0.50 +XMAN1 raises $1 to $1.37 +mylonas77 calls $0.50 +--- +Dealing 6th street +Dealing to XMAN1: [4c] +Dealing to mylonas77: [Qh] +XMAN1 bets $0.50 +mylonas77 calls $0.50 +--- +Dealing river +Dealing to XMAN1: [5h] +XMAN1 bets $0.50 +mylonas77 calls $0.50 +--- +Summary: +Main pot: $5.14 won by XMAN1 ($4.89) +Rake taken: $0.25 +Seat 1: XMAN1 ($27.47), net: +$2.47, [8d, 8s, 4d, 3h, 8c, 4c, 5h] (FULL_HOUSE EIGHT, FOUR) +Seat 3: boneos56 ($27.73), net: -$0.05 +Seat 5: grumset2007 ($3.43), net: -$0.05 +Seat 6: mylonas77 ($38.31), net: -$2.42 +Seat 7: YMAN1 ($14.65), net: -$0.05 +Seat 8: Lee Clayton ($14.74), net: -$0.05 +Seat 9: guggi_cool ($8.29), net: -$0.05 +Seat 10: HangEv ($29.03), net: -$0.05 +***** End of hand R5-78227816-62 ***** diff --git a/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt b/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt index c369978b..4da14181 100644 --- a/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt +++ b/pyfpdb/regression-test-files/cash/PKR/Flop/NLHE-2max-USD-0.02-0.04-200903.All-in.on.turn.txt @@ -1,61 +1,61 @@ -Table #15200183 - Hapuna Beach 2 -Starting Hand #746382000 -Start time of hand: 30 Mar 2009 21:00:00 -Last Hand #746380000 -Game Type: HOLD'EM -Limit Type: NO LIMIT -Table Type: RING -Money Type: REAL MONEY -Blinds are now $0.02/$0.04 -Button is at seat 5 -Seat 1: Player1 - $0.23 -Seat 2: Player2 - $5.28 -Seat 3: Player3 - $1.80 -Seat 4: allout96 - $3.99 -Seat 5: Player4 - $1.47 -Seat 6: Player5 - $4 -Moving Button to seat 1 -Player2 posts small blind ($0.02) -Player3 posts big blind ($0.04) -Player5 posts $0.04 -Shuffling Deck -Dealing Cards -Dealing [Ad 8h] to Player5 -allout96 folds -Player4 calls $0.04 -Player5 checks -Player1 folds -Player2 calls $0.04 -Player3 checks -Dealing Flop [9s Ac 5s] -Player2 bets $0.08 -Player3 calls $0.08 -Player4 calls $0.08 -Player5 raises to $0.16 -Player2 calls $0.16 -Player3 calls $0.16 -Player4 calls $0.16 -Dealing Turn [4s] -Player2 checks -Player3 bets $0.04 -Player4 calls $0.04 -Player5 raises to $0.72 -Player2 folds -Player3 raises to $1.40 -Player4 calls $1.27 (all-in) -Player5 folds -Returning $0.13 to Player3 uncalled -Player3 shows [2h 3d] -Player4 shows [4d 9c] -Dealing River [2c] -Taking Rake of $0.40 from pot 1 -Player3 has Straight, 5 high -Player3 wins $3.66 with: Straight, 5 high -Seat 1: Player1 - $0.23 -Seat 2: Player2 - $5.08 -Seat 3: Player3 - $3.99 -Seat 4: allout96 - $3.99 -Seat 5: Player4 - $0 -Seat 6: Player5 - $3.08 -End Of Hand #746382682 - +Table #15200183 - Hapuna Beach 2 +Starting Hand #746382000 +Start time of hand: 30 Mar 2009 21:00:00 +Last Hand #746380000 +Game Type: HOLD'EM +Limit Type: NO LIMIT +Table Type: RING +Money Type: REAL MONEY +Blinds are now $0.02/$0.04 +Button is at seat 5 +Seat 1: Player1 - $0.23 +Seat 2: Player2 - $5.28 +Seat 3: Player3 - $1.80 +Seat 4: allout96 - $3.99 +Seat 5: Player4 - $1.47 +Seat 6: Player5 - $4 +Moving Button to seat 1 +Player2 posts small blind ($0.02) +Player3 posts big blind ($0.04) +Player5 posts $0.04 +Shuffling Deck +Dealing Cards +Dealing [Ad 8h] to Player5 +allout96 folds +Player4 calls $0.04 +Player5 checks +Player1 folds +Player2 calls $0.04 +Player3 checks +Dealing Flop [9s Ac 5s] +Player2 bets $0.08 +Player3 calls $0.08 +Player4 calls $0.08 +Player5 raises to $0.16 +Player2 calls $0.16 +Player3 calls $0.16 +Player4 calls $0.16 +Dealing Turn [4s] +Player2 checks +Player3 bets $0.04 +Player4 calls $0.04 +Player5 raises to $0.72 +Player2 folds +Player3 raises to $1.40 +Player4 calls $1.27 (all-in) +Player5 folds +Returning $0.13 to Player3 uncalled +Player3 shows [2h 3d] +Player4 shows [4d 9c] +Dealing River [2c] +Taking Rake of $0.40 from pot 1 +Player3 has Straight, 5 high +Player3 wins $3.66 with: Straight, 5 high +Seat 1: Player1 - $0.23 +Seat 2: Player2 - $5.08 +Seat 3: Player3 - $3.99 +Seat 4: allout96 - $3.99 +Seat 5: Player4 - $0 +Seat 6: Player5 - $3.08 +End Of Hand #746382682 + diff --git a/pyfpdb/regression-test-files/cash/PartyPoker/Stud/7-StudHL-USD-0.50-1.00-201008.txt b/pyfpdb/regression-test-files/cash/PartyPoker/Stud/7-StudHL-USD-0.50-1.00-201008.txt index 46f04052..317a942a 100644 --- a/pyfpdb/regression-test-files/cash/PartyPoker/Stud/7-StudHL-USD-0.50-1.00-201008.txt +++ b/pyfpdb/regression-test-files/cash/PartyPoker/Stud/7-StudHL-USD-0.50-1.00-201008.txt @@ -1,54 +1,54 @@ -Game #9581478205 starts. - -#Game No : 9581478205 -***** Hand History for Game 9581478205 ***** -$0.50/$1 USD 7 Card Stud Hi-Lo - Monday, August 30, 20:20:17 EEST 2010 -Table Table 136403 (Real Money) -Seat 0 is the button -Total number of players : 7/8 -Seat 3: XMAN1 ( $24.95 USD ) -Seat 5: ISqzUSqueal ( $31.02 USD ) -Seat 7: PPPPPositive ( $4.20 USD ) -Seat 8: Unladylike ( $19 USD ) -Seat 6: YMAN1 ( $10.18 USD ) -Seat 2: strandalleen ( $17.55 USD ) -Seat 1: tubby09 ( $24.20 USD ) -tubby09 posts ante [$0.05 USD] -strandalleen posts ante [$0.05 USD] -XMAN1 posts ante [$0.05 USD] -ISqzUSqueal posts ante [$0.05 USD] -YMAN1 posts ante [$0.05 USD] -PPPPPositive posts ante [$0.05 USD] -Unladylike posts ante [$0.05 USD] -** Dealing ** -Dealt to XMAN1 [ Td 5s 3c ] -YMAN1 opens -YMAN1 bring-ins [$0.25 USD] -PPPPPositive completes [$0.50 USD] -Unladylike folds -tubby09 folds -strandalleen calls [$0.50 USD] -XMAN1 folds -ISqzUSqueal folds -YMAN1 calls [$0.25 USD] -** Dealing Fourth street ** -PPPPPositive opens -PPPPPositive bets [$0.50 USD] -strandalleen calls [$0.50 USD] -YMAN1 folds -** Dealing Fifth street ** -PPPPPositive opens -PPPPPositive bets [$1 USD] -strandalleen calls [$1 USD] -** Dealing Sixth street ** -PPPPPositive opens -PPPPPositive bets [$1 USD] -strandalleen calls [$1 USD] -** Dealing River ** -PPPPPositive opens -PPPPPositive bets [$1 USD] -strandalleen calls [$1 USD] -PPPPPositive shows [ Ad, Qd, Ah, 2d, 7d, Th, 6d ]a flush, Ace high. -strandalleen doesn't show [ 5h, 9d, 9c, Qc, 2h, Kc, Js ]a pair of Nines. -PPPPPositive wins $8.45 USD from the main pot with a flush, Ace high. -There was no qualifying low hand +Game #9581478205 starts. + +#Game No : 9581478205 +***** Hand History for Game 9581478205 ***** +$0.50/$1 USD 7 Card Stud Hi-Lo - Monday, August 30, 20:20:17 EEST 2010 +Table Table 136403 (Real Money) +Seat 0 is the button +Total number of players : 7/8 +Seat 3: XMAN1 ( $24.95 USD ) +Seat 5: ISqzUSqueal ( $31.02 USD ) +Seat 7: PPPPPositive ( $4.20 USD ) +Seat 8: Unladylike ( $19 USD ) +Seat 6: YMAN1 ( $10.18 USD ) +Seat 2: strandalleen ( $17.55 USD ) +Seat 1: tubby09 ( $24.20 USD ) +tubby09 posts ante [$0.05 USD] +strandalleen posts ante [$0.05 USD] +XMAN1 posts ante [$0.05 USD] +ISqzUSqueal posts ante [$0.05 USD] +YMAN1 posts ante [$0.05 USD] +PPPPPositive posts ante [$0.05 USD] +Unladylike posts ante [$0.05 USD] +** Dealing ** +Dealt to XMAN1 [ Td 5s 3c ] +YMAN1 opens +YMAN1 bring-ins [$0.25 USD] +PPPPPositive completes [$0.50 USD] +Unladylike folds +tubby09 folds +strandalleen calls [$0.50 USD] +XMAN1 folds +ISqzUSqueal folds +YMAN1 calls [$0.25 USD] +** Dealing Fourth street ** +PPPPPositive opens +PPPPPositive bets [$0.50 USD] +strandalleen calls [$0.50 USD] +YMAN1 folds +** Dealing Fifth street ** +PPPPPositive opens +PPPPPositive bets [$1 USD] +strandalleen calls [$1 USD] +** Dealing Sixth street ** +PPPPPositive opens +PPPPPositive bets [$1 USD] +strandalleen calls [$1 USD] +** Dealing River ** +PPPPPositive opens +PPPPPositive bets [$1 USD] +strandalleen calls [$1 USD] +PPPPPositive shows [ Ad, Qd, Ah, 2d, 7d, Th, 6d ]a flush, Ace high. +strandalleen doesn't show [ 5h, 9d, 9c, Qc, 2h, Kc, Js ]a pair of Nines. +PPPPPositive wins $8.45 USD from the main pot with a flush, Ace high. +There was no qualifying low hand diff --git a/pyfpdb/regression-test-files/cash/Stars/Draw/Badugi-USD-0.25-0.50-201009.txt b/pyfpdb/regression-test-files/cash/Stars/Draw/Badugi-USD-0.25-0.50-201009.txt index aa47ff10..a00ce637 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Draw/Badugi-USD-0.25-0.50-201009.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Draw/Badugi-USD-0.25-0.50-201009.txt @@ -1,225 +1,225 @@ -PokerStars Game #49164202872: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:32:15 ET -Table 'Benkoela V' 8-max Seat #8 is the button -Seat 1: Lino19 ($6.80 in chips) -Seat 2: s0rrow ($5 in chips) -Seat 3: jodarin ($0.70 in chips) -Seat 4: Scorpio2000 ($3.40 in chips) -Seat 5: buddyboy3399 ($8.25 in chips) -Seat 6: JDANIELDC ($8.75 in chips) -Seat 8: Kula91 ($3.80 in chips) -Lino19: posts small blind $0.10 -s0rrow: posts big blind $0.25 -cuchiku: sits out -*** DEALING HANDS *** -Dealt to s0rrow [As 3h 8h 6s] -jodarin: calls $0.25 -Scorpio2000: calls $0.25 -buddyboy3399: calls $0.25 -JDANIELDC: folds -Kula91: folds -Kula91 leaves the table -Lino19: calls $0.15 -s0rrow: checks -*** FIRST DRAW *** -Lino19: discards 1 card -s0rrow: discards 2 cards [8h 6s] -Dealt to s0rrow [As 3h] [5h Ks] -jodarin: discards 2 cards -Scorpio2000: discards 1 card -buddyboy3399: discards 2 cards -Lino19: bets $0.25 -s0rrow: folds -jodarin: calls $0.25 -Scorpio2000: calls $0.25 -buddyboy3399: raises $0.25 to $0.50 -Lino19: calls $0.25 -jodarin: calls $0.20 and is all-in -Scorpio2000: calls $0.25 -*** SECOND DRAW *** -Lino19: discards 1 card -jodarin: discards 2 cards -Scorpio2000: discards 1 card -buddyboy3399: stands pat -Lino19: checks -Scorpio2000: bets $0.50 -buddyboy3399: calls $0.50 -Lino19: calls $0.50 -*** THIRD DRAW *** -Lino19: discards 1 card -jodarin: discards 2 cards -Scorpio2000: stands pat -buddyboy3399: stands pat -Lino19: checks -Scorpio2000: bets $0.50 -buddyboy3399: calls $0.50 -Lino19: folds -*** SHOW DOWN *** -Scorpio2000: shows [8c 5d 7s Th] (Badugi: T,8,7,5) -buddyboy3399: shows [8s 3d Ac 4h] (Badugi: 8,4,3,A) -buddyboy3399 collected $2.55 from side pot -jodarin: mucks hand -buddyboy3399 collected $2.90 from main pot -jodarin leaves the table -*** SUMMARY *** -Total pot $5.70 Main pot $2.90. Side pot $2.55. | Rake $0.25 -Seat 1: Lino19 (small blind) folded after the 3rd Draw -Seat 2: s0rrow (big blind) folded after the 1st Draw -Seat 3: jodarin mucked [Ad Td Qc 2s] -Seat 4: Scorpio2000 showed [8c 5d 7s Th] and lost with a Badugi: T,8,7,5 -Seat 5: buddyboy3399 showed [8s 3d Ac 4h] and won ($5.45) with a Badugi: 8,4,3,A -Seat 6: JDANIELDC folded before the Draw (didn't bet) -Seat 8: Kula91 (button) folded before the Draw (didn't bet) - - - -PokerStars Game #49164247462: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:33:25 ET -Table 'Benkoela V' 8-max Seat #1 is the button -Seat 1: Lino19 ($5.55 in chips) -Seat 2: s0rrow ($4.75 in chips) -Seat 4: Scorpio2000 ($1.65 in chips) -Seat 5: buddyboy3399 ($11.95 in chips) -Seat 6: JDANIELDC ($8.75 in chips) -s0rrow: posts small blind $0.10 -Scorpio2000: posts big blind $0.25 -cuchiku: sits out -*** DEALING HANDS *** -Dealt to s0rrow [3h Tc Kc Ad] -oooDestroyoo joins the table at seat #3 -kallexx1 joins the table at seat #8 -buddyboy3399: folds -JDANIELDC: folds -Lino19: folds -s0rrow: folds -Uncalled bet ($0.15) returned to Scorpio2000 -Scorpio2000 collected $0.20 from pot -Scorpio2000: doesn't show hand -*** SUMMARY *** -Total pot $0.20 | Rake $0 -Seat 1: Lino19 (button) folded before the Draw (didn't bet) -Seat 2: s0rrow (small blind) folded before the Draw -Seat 4: Scorpio2000 (big blind) collected ($0.20) -Seat 5: buddyboy3399 folded before the Draw (didn't bet) -Seat 6: JDANIELDC folded before the Draw (didn't bet) - - - -PokerStars Game #49164255772: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:33:38 ET -Table 'Benkoela V' 8-max Seat #2 is the button -Seat 1: Lino19 ($5.55 in chips) -Seat 2: s0rrow ($4.65 in chips) -Seat 4: Scorpio2000 ($1.75 in chips) -Seat 5: buddyboy3399 ($11.95 in chips) -Seat 6: JDANIELDC ($8.75 in chips) -Seat 8: kallexx1 ($5000 in chips) -oooDestroyoo will be allowed to play after the button -Scorpio2000: posts small blind $0.10 -buddyboy3399: posts big blind $0.25 -cuchiku: sits out -kallexx1: posts big blind $0.25 -*** DEALING HANDS *** -Dealt to s0rrow [4s 8s Kc 3h] -JDANIELDC: calls $0.25 -kallexx1: checks -Lino19: folds -s0rrow: folds -Scorpio2000: calls $0.15 -cuchiku leaves the table -buddyboy3399: raises $0.25 to $0.50 -JDANIELDC: calls $0.25 -kallexx1: calls $0.25 -Scorpio2000: folds -*** FIRST DRAW *** -buddyboy3399: stands pat -JDANIELDC: discards 2 cards -kallexx1: stands pat -buddyboy3399: bets $0.25 -JDANIELDC: folds -kallexx1: calls $0.25 -*** SECOND DRAW *** -buddyboy3399: stands pat -kallexx1: discards 1 card -buddyboy3399: bets $0.50 -kallexx1: calls $0.50 -*** THIRD DRAW *** -buddyboy3399: stands pat -kallexx1: discards 1 card -buddyboy3399: bets $0.50 -kallexx1: calls $0.50 -*** SHOW DOWN *** -buddyboy3399: shows [Tc 3s 2s 7h] (3-card: T,7,2) -kallexx1: shows [4c 4d 5s 6h] (3-card: 6,5,4) -kallexx1 collected $4.05 from pot -*** SUMMARY *** -Total pot $4.25 | Rake $0.20 -Seat 1: Lino19 folded before the Draw (didn't bet) -Seat 2: s0rrow (button) folded before the Draw (didn't bet) -Seat 4: Scorpio2000 (small blind) folded before the Draw -Seat 5: buddyboy3399 (big blind) showed [Tc 3s 2s 7h] and lost with a 3-card: T,7,2 -Seat 6: JDANIELDC folded after the 1st Draw -Seat 8: kallexx1 showed [4c 4d 5s 6h] and won ($4.05) with a 3-card: 6,5,4 - - - -PokerStars Game #49164287914: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:34:29 ET -Table 'Benkoela V' 8-max Seat #4 is the button -Seat 1: Lino19 ($5.55 in chips) -Seat 2: s0rrow ($4.65 in chips) -Seat 3: oooDestroyoo ($20 in chips) -Seat 4: Scorpio2000 ($1.50 in chips) -Seat 5: buddyboy3399 ($10.20 in chips) -Seat 6: JDANIELDC ($8.25 in chips) -Seat 8: kallexx1 ($5002.30 in chips) -buddyboy3399: posts small blind $0.10 -JDANIELDC: posts big blind $0.25 -oooDestroyoo: posts big blind $0.25 -*** DEALING HANDS *** -Dealt to s0rrow [2h 5c Kd 7h] -kallexx1: folds -kallexx1 leaves the table -Lino19: folds -s0rrow: folds -oooDestroyoo: checks -Scorpio2000: calls $0.25 -buddyboy3399: calls $0.15 -JDANIELDC: checks -*** FIRST DRAW *** -buddyboy3399: discards 1 card -JDANIELDC: discards 2 cards -oooDestroyoo: discards 2 cards -Scorpio2000: discards 2 cards -buddyboy3399: bets $0.25 -JDANIELDC: calls $0.25 -oooDestroyoo: calls $0.25 -Scorpio2000: folds -*** SECOND DRAW *** -buddyboy3399: stands pat -JDANIELDC: discards 1 card -oooDestroyoo: discards 1 card -buddyboy3399: bets $0.50 -JDANIELDC: calls $0.50 -oooDestroyoo: calls $0.50 -*** THIRD DRAW *** -buddyboy3399: stands pat -JDANIELDC: discards 1 card -oooDestroyoo: discards 1 card -buddyboy3399: bets $0.50 -JDANIELDC: raises $0.50 to $1 -oooDestroyoo: calls $1 -buddyboy3399: calls $0.50 -*** SHOW DOWN *** -JDANIELDC: shows [3c 4d 6h 8s] (Badugi: 8,6,4,3) -oooDestroyoo: mucks hand -buddyboy3399: mucks hand -JDANIELDC collected $5.95 from pot -*** SUMMARY *** -Total pot $6.25 | Rake $0.30 -Seat 1: Lino19 folded before the Draw (didn't bet) -Seat 2: s0rrow folded before the Draw (didn't bet) -Seat 3: oooDestroyoo mucked [9d 3d 2s 7c] -Seat 4: Scorpio2000 (button) folded after the 1st Draw -Seat 5: buddyboy3399 (small blind) mucked [Qh 3s 4c Td] -Seat 6: JDANIELDC (big blind) showed [3c 4d 6h 8s] and won ($5.95) with a Badugi: 8,6,4,3 -Seat 8: kallexx1 folded before the Draw (didn't bet) - - - +PokerStars Game #49164202872: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:32:15 ET +Table 'Benkoela V' 8-max Seat #8 is the button +Seat 1: Lino19 ($6.80 in chips) +Seat 2: s0rrow ($5 in chips) +Seat 3: jodarin ($0.70 in chips) +Seat 4: Scorpio2000 ($3.40 in chips) +Seat 5: buddyboy3399 ($8.25 in chips) +Seat 6: JDANIELDC ($8.75 in chips) +Seat 8: Kula91 ($3.80 in chips) +Lino19: posts small blind $0.10 +s0rrow: posts big blind $0.25 +cuchiku: sits out +*** DEALING HANDS *** +Dealt to s0rrow [As 3h 8h 6s] +jodarin: calls $0.25 +Scorpio2000: calls $0.25 +buddyboy3399: calls $0.25 +JDANIELDC: folds +Kula91: folds +Kula91 leaves the table +Lino19: calls $0.15 +s0rrow: checks +*** FIRST DRAW *** +Lino19: discards 1 card +s0rrow: discards 2 cards [8h 6s] +Dealt to s0rrow [As 3h] [5h Ks] +jodarin: discards 2 cards +Scorpio2000: discards 1 card +buddyboy3399: discards 2 cards +Lino19: bets $0.25 +s0rrow: folds +jodarin: calls $0.25 +Scorpio2000: calls $0.25 +buddyboy3399: raises $0.25 to $0.50 +Lino19: calls $0.25 +jodarin: calls $0.20 and is all-in +Scorpio2000: calls $0.25 +*** SECOND DRAW *** +Lino19: discards 1 card +jodarin: discards 2 cards +Scorpio2000: discards 1 card +buddyboy3399: stands pat +Lino19: checks +Scorpio2000: bets $0.50 +buddyboy3399: calls $0.50 +Lino19: calls $0.50 +*** THIRD DRAW *** +Lino19: discards 1 card +jodarin: discards 2 cards +Scorpio2000: stands pat +buddyboy3399: stands pat +Lino19: checks +Scorpio2000: bets $0.50 +buddyboy3399: calls $0.50 +Lino19: folds +*** SHOW DOWN *** +Scorpio2000: shows [8c 5d 7s Th] (Badugi: T,8,7,5) +buddyboy3399: shows [8s 3d Ac 4h] (Badugi: 8,4,3,A) +buddyboy3399 collected $2.55 from side pot +jodarin: mucks hand +buddyboy3399 collected $2.90 from main pot +jodarin leaves the table +*** SUMMARY *** +Total pot $5.70 Main pot $2.90. Side pot $2.55. | Rake $0.25 +Seat 1: Lino19 (small blind) folded after the 3rd Draw +Seat 2: s0rrow (big blind) folded after the 1st Draw +Seat 3: jodarin mucked [Ad Td Qc 2s] +Seat 4: Scorpio2000 showed [8c 5d 7s Th] and lost with a Badugi: T,8,7,5 +Seat 5: buddyboy3399 showed [8s 3d Ac 4h] and won ($5.45) with a Badugi: 8,4,3,A +Seat 6: JDANIELDC folded before the Draw (didn't bet) +Seat 8: Kula91 (button) folded before the Draw (didn't bet) + + + +PokerStars Game #49164247462: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:33:25 ET +Table 'Benkoela V' 8-max Seat #1 is the button +Seat 1: Lino19 ($5.55 in chips) +Seat 2: s0rrow ($4.75 in chips) +Seat 4: Scorpio2000 ($1.65 in chips) +Seat 5: buddyboy3399 ($11.95 in chips) +Seat 6: JDANIELDC ($8.75 in chips) +s0rrow: posts small blind $0.10 +Scorpio2000: posts big blind $0.25 +cuchiku: sits out +*** DEALING HANDS *** +Dealt to s0rrow [3h Tc Kc Ad] +oooDestroyoo joins the table at seat #3 +kallexx1 joins the table at seat #8 +buddyboy3399: folds +JDANIELDC: folds +Lino19: folds +s0rrow: folds +Uncalled bet ($0.15) returned to Scorpio2000 +Scorpio2000 collected $0.20 from pot +Scorpio2000: doesn't show hand +*** SUMMARY *** +Total pot $0.20 | Rake $0 +Seat 1: Lino19 (button) folded before the Draw (didn't bet) +Seat 2: s0rrow (small blind) folded before the Draw +Seat 4: Scorpio2000 (big blind) collected ($0.20) +Seat 5: buddyboy3399 folded before the Draw (didn't bet) +Seat 6: JDANIELDC folded before the Draw (didn't bet) + + + +PokerStars Game #49164255772: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:33:38 ET +Table 'Benkoela V' 8-max Seat #2 is the button +Seat 1: Lino19 ($5.55 in chips) +Seat 2: s0rrow ($4.65 in chips) +Seat 4: Scorpio2000 ($1.75 in chips) +Seat 5: buddyboy3399 ($11.95 in chips) +Seat 6: JDANIELDC ($8.75 in chips) +Seat 8: kallexx1 ($5000 in chips) +oooDestroyoo will be allowed to play after the button +Scorpio2000: posts small blind $0.10 +buddyboy3399: posts big blind $0.25 +cuchiku: sits out +kallexx1: posts big blind $0.25 +*** DEALING HANDS *** +Dealt to s0rrow [4s 8s Kc 3h] +JDANIELDC: calls $0.25 +kallexx1: checks +Lino19: folds +s0rrow: folds +Scorpio2000: calls $0.15 +cuchiku leaves the table +buddyboy3399: raises $0.25 to $0.50 +JDANIELDC: calls $0.25 +kallexx1: calls $0.25 +Scorpio2000: folds +*** FIRST DRAW *** +buddyboy3399: stands pat +JDANIELDC: discards 2 cards +kallexx1: stands pat +buddyboy3399: bets $0.25 +JDANIELDC: folds +kallexx1: calls $0.25 +*** SECOND DRAW *** +buddyboy3399: stands pat +kallexx1: discards 1 card +buddyboy3399: bets $0.50 +kallexx1: calls $0.50 +*** THIRD DRAW *** +buddyboy3399: stands pat +kallexx1: discards 1 card +buddyboy3399: bets $0.50 +kallexx1: calls $0.50 +*** SHOW DOWN *** +buddyboy3399: shows [Tc 3s 2s 7h] (3-card: T,7,2) +kallexx1: shows [4c 4d 5s 6h] (3-card: 6,5,4) +kallexx1 collected $4.05 from pot +*** SUMMARY *** +Total pot $4.25 | Rake $0.20 +Seat 1: Lino19 folded before the Draw (didn't bet) +Seat 2: s0rrow (button) folded before the Draw (didn't bet) +Seat 4: Scorpio2000 (small blind) folded before the Draw +Seat 5: buddyboy3399 (big blind) showed [Tc 3s 2s 7h] and lost with a 3-card: T,7,2 +Seat 6: JDANIELDC folded after the 1st Draw +Seat 8: kallexx1 showed [4c 4d 5s 6h] and won ($4.05) with a 3-card: 6,5,4 + + + +PokerStars Game #49164287914: Badugi Limit ($0.25/$0.50 USD) - 2010/09/05 10:34:29 ET +Table 'Benkoela V' 8-max Seat #4 is the button +Seat 1: Lino19 ($5.55 in chips) +Seat 2: s0rrow ($4.65 in chips) +Seat 3: oooDestroyoo ($20 in chips) +Seat 4: Scorpio2000 ($1.50 in chips) +Seat 5: buddyboy3399 ($10.20 in chips) +Seat 6: JDANIELDC ($8.25 in chips) +Seat 8: kallexx1 ($5002.30 in chips) +buddyboy3399: posts small blind $0.10 +JDANIELDC: posts big blind $0.25 +oooDestroyoo: posts big blind $0.25 +*** DEALING HANDS *** +Dealt to s0rrow [2h 5c Kd 7h] +kallexx1: folds +kallexx1 leaves the table +Lino19: folds +s0rrow: folds +oooDestroyoo: checks +Scorpio2000: calls $0.25 +buddyboy3399: calls $0.15 +JDANIELDC: checks +*** FIRST DRAW *** +buddyboy3399: discards 1 card +JDANIELDC: discards 2 cards +oooDestroyoo: discards 2 cards +Scorpio2000: discards 2 cards +buddyboy3399: bets $0.25 +JDANIELDC: calls $0.25 +oooDestroyoo: calls $0.25 +Scorpio2000: folds +*** SECOND DRAW *** +buddyboy3399: stands pat +JDANIELDC: discards 1 card +oooDestroyoo: discards 1 card +buddyboy3399: bets $0.50 +JDANIELDC: calls $0.50 +oooDestroyoo: calls $0.50 +*** THIRD DRAW *** +buddyboy3399: stands pat +JDANIELDC: discards 1 card +oooDestroyoo: discards 1 card +buddyboy3399: bets $0.50 +JDANIELDC: raises $0.50 to $1 +oooDestroyoo: calls $1 +buddyboy3399: calls $0.50 +*** SHOW DOWN *** +JDANIELDC: shows [3c 4d 6h 8s] (Badugi: 8,6,4,3) +oooDestroyoo: mucks hand +buddyboy3399: mucks hand +JDANIELDC collected $5.95 from pot +*** SUMMARY *** +Total pot $6.25 | Rake $0.30 +Seat 1: Lino19 folded before the Draw (didn't bet) +Seat 2: s0rrow folded before the Draw (didn't bet) +Seat 3: oooDestroyoo mucked [9d 3d 2s 7c] +Seat 4: Scorpio2000 (button) folded after the 1st Draw +Seat 5: buddyboy3399 (small blind) mucked [Qh 3s 4c Td] +Seat 6: JDANIELDC (big blind) showed [3c 4d 6h 8s] and won ($5.95) with a Badugi: 8,6,4,3 +Seat 8: kallexx1 folded before the Draw (didn't bet) + + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Draw/NLSDraw-USD-0.25-0.50-201009.Mucked.cards.txt b/pyfpdb/regression-test-files/cash/Stars/Draw/NLSDraw-USD-0.25-0.50-201009.Mucked.cards.txt index ce82e9be..fef0e475 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Draw/NLSDraw-USD-0.25-0.50-201009.Mucked.cards.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Draw/NLSDraw-USD-0.25-0.50-201009.Mucked.cards.txt @@ -1,40 +1,40 @@ -PokerStars Game #48974407184: Single Draw 2-7 Lowball No Limit ($0.25/$0.50 USD) - 2010/09/01 9:49:52 ET -Table 'Eucharis II' 7-max Seat #4 is the button -Seat 1: Philippus40 ($60.90 in chips) -Seat 2: barbus533 ($21.15 in chips) -Seat 3: @sker86 ($82.60 in chips) -Seat 4: nl pokerr ($49.15 in chips) -Seat 5: heliodorus ($73.45 in chips) -Seat 6: s0rrow ($20 in chips) -Seat 7: KBH7 ($14 in chips) -heliodorus: posts small blind $0.25 -s0rrow: posts big blind $0.50 -*** DEALING HANDS *** -Dealt to s0rrow [2s 7d 4d 6d 8s] -KBH7: folds -Philippus40: folds -barbus533: folds -@sker86: raises $1.50 to $2 -nl pokerr: folds -heliodorus: folds -s0rrow: calls $1.50 -s0rrow: stands pat on [2s 7d 4d 6d 8s] -@sker86: discards 1 card -s0rrow: checks -@sker86: checks -*** SHOW DOWN *** -s0rrow: shows [2s 7d 4d 6d 8s] (Lo: 8,7,6,4,2) -@sker86: mucks hand -s0rrow collected $4.05 from pot -*** SUMMARY *** -Total pot $4.25 | Rake $0.20 -Seat 1: Philippus40 folded before Flop (didn't bet) -Seat 2: barbus533 folded before Flop (didn't bet) -Seat 3: @sker86 mucked [2h 8d 7h 7s 4s] -Seat 4: nl pokerr (button) folded before Flop (didn't bet) -Seat 5: heliodorus (small blind) folded before Flop -Seat 6: s0rrow (big blind) showed [2s 7d 4d 6d 8s] and won ($4.05) with Lo: 8,7,6,4,2 -Seat 7: KBH7 folded before Flop (didn't bet) - - - +PokerStars Game #48974407184: Single Draw 2-7 Lowball No Limit ($0.25/$0.50 USD) - 2010/09/01 9:49:52 ET +Table 'Eucharis II' 7-max Seat #4 is the button +Seat 1: Philippus40 ($60.90 in chips) +Seat 2: barbus533 ($21.15 in chips) +Seat 3: @sker86 ($82.60 in chips) +Seat 4: nl pokerr ($49.15 in chips) +Seat 5: heliodorus ($73.45 in chips) +Seat 6: s0rrow ($20 in chips) +Seat 7: KBH7 ($14 in chips) +heliodorus: posts small blind $0.25 +s0rrow: posts big blind $0.50 +*** DEALING HANDS *** +Dealt to s0rrow [2s 7d 4d 6d 8s] +KBH7: folds +Philippus40: folds +barbus533: folds +@sker86: raises $1.50 to $2 +nl pokerr: folds +heliodorus: folds +s0rrow: calls $1.50 +s0rrow: stands pat on [2s 7d 4d 6d 8s] +@sker86: discards 1 card +s0rrow: checks +@sker86: checks +*** SHOW DOWN *** +s0rrow: shows [2s 7d 4d 6d 8s] (Lo: 8,7,6,4,2) +@sker86: mucks hand +s0rrow collected $4.05 from pot +*** SUMMARY *** +Total pot $4.25 | Rake $0.20 +Seat 1: Philippus40 folded before Flop (didn't bet) +Seat 2: barbus533 folded before Flop (didn't bet) +Seat 3: @sker86 mucked [2h 8d 7h 7s 4s] +Seat 4: nl pokerr (button) folded before Flop (didn't bet) +Seat 5: heliodorus (small blind) folded before Flop +Seat 6: s0rrow (big blind) showed [2s 7d 4d 6d 8s] and won ($4.05) with Lo: 8,7,6,4,2 +Seat 7: KBH7 folded before Flop (didn't bet) + + + diff --git a/pyfpdb/regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200907.Missing.Showdown.Card.txt b/pyfpdb/regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200907.Missing.Showdown.Card.txt index d384d772..2c91c101 100644 --- a/pyfpdb/regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200907.Missing.Showdown.Card.txt +++ b/pyfpdb/regression-test-files/cash/Stars/Stud/7-Stud-USD-0.04-0.08-200907.Missing.Showdown.Card.txt @@ -1,117 +1,117 @@ -PokerStars Game #30506593746: 7 Card Stud Limit ($0.04/$0.08) - 2009/07/16 2:36:31 CET [2009/07/15 20:36:31 ET] -Table 'Laomedon' 8-max -Seat 1: Player1 ($1.81 in chips) -Seat 2: Player2 ($2.46 in chips) -Seat 3: Player3 ($1.67 in chips) -Seat 4: Player4 ($0.35 in chips) -Seat 5: Player5 ($1.75 in chips) -Seat 6: Player6 ($2.92 in chips) -Seat 7: Player7 ($1.54 in chips) -Seat 8: Player8 ($0.71 in chips) -Player1: posts the ante $0.01 -Player2: posts the ante $0.01 -Player3: posts the ante $0.01 -Player4: posts the ante $0.01 -Player5: posts the ante $0.01 -Player6: posts the ante $0.01 -Player7: posts the ante $0.01 -Player8: posts the ante $0.01 -*** 3rd STREET *** -Dealt to Player1 [Ac Kc 8c] -Dealt to Player2 [Tc] -Dealt to Player3 [6c] -Dealt to Player4 [Js] -Dealt to Player5 [Jd] -Dealt to Player6 [2d] -Dealt to Player7 [Jh] -Dealt to Player8 [Kh] -Player6: brings in for $0.02 -Player7: calls $0.02 -Player8: calls $0.02 -Player1: calls $0.02 -Player2: calls $0.02 -Player3: calls $0.02 -Player4: calls $0.02 -Player5: calls $0.02 -*** 4th STREET *** -Dealt to Player1 [Ac Kc 8c] [9c] -Dealt to Player2 [Tc] [7d] -Dealt to Player3 [6c] [7h] -Dealt to Player4 [Js] [2c] -Dealt to Player5 [Jd] [4h] -Dealt to Player6 [2d] [7c] -Dealt to Player7 [Jh] [4c] -Dealt to Player8 [Kh] [3d] -Player8: checks -Player1: checks -Player2: checks -Player3: checks -Player4: checks -Player5: checks -Player6: checks -Player7: checks -*** 5th STREET *** -Dealt to Player1 [Ac Kc 8c 9c] [9d] -Dealt to Player2 [Tc 7d] [8d] -Dealt to Player3 [6c 7h] [3s] -Dealt to Player4 [Js 2c] [9s] -Dealt to Player5 [Jd 4h] [9h] -Dealt to Player6 [2d 7c] [6d] -Dealt to Player7 [Jh 4c] [5d] -Dealt to Player8 [Kh 3d] [8s] -Player1: checks -Player2: checks -Player3: checks -Player4: checks -Player5: checks -Player6: checks -Player7: checks -Player8: checks -*** 6th STREET *** -Dealt to Player1 [Ac Kc 8c 9c 9d] [Th] -Dealt to Player2 [Tc 7d 8d] [3c] -Dealt to Player3 [6c 7h 3s] [Qh] -Dealt to Player4 [Js 2c 9s] [8h] -Dealt to Player5 [Jd 4h 9h] [2s] -Dealt to Player6 [2d 7c 6d] [5h] -Dealt to Player7 [Jh 4c 5d] [Td] -Dealt to Player8 [Kh 3d 8s] [6s] -Player1: checks -Player2: checks -Player3: checks -Player4: checks -Player5: checks -Player6: checks -Player7: checks -Player8: checks -*** RIVER *** [6h] -Player1: checks -Player2: checks -Player3: bets $0.08 -Player4: folds -Player5: calls $0.08 -Player6: calls $0.08 -Player7: folds -Player8: calls $0.08 -Player1: folds -Player2: folds -*** SHOW DOWN *** -Player3: shows [7s Qs 6c 7h 3s Qh] (two pair, Queens and Sevens) -Player5: mucks hand -Player6: mucks hand -Player8: mucks hand -Player3 collected $0.54 from pot -*** SUMMARY *** -Total pot $0.56 | Rake $0.02 -Board [6h] -Seat 1: Player1 folded on the River -Seat 2: Player2 folded on the River -Seat 3: Player3 showed [7s Qs 6c 7h 3s Qh] and won ($0.54) with two pair, Queens and Sevens -Seat 4: Player4 folded on the River -Seat 5: Player5 mucked [Kd Ks Jd 4h 9h 2s] -Seat 6: Player6 mucked [5s Ah 2d 7c 6d 5h] -Seat 7: Player7 folded on the River -Seat 8: Player8 mucked [Jc 3h Kh 3d 8s 6s] - - - +PokerStars Game #30506593746: 7 Card Stud Limit ($0.04/$0.08) - 2009/07/16 2:36:31 CET [2009/07/15 20:36:31 ET] +Table 'Laomedon' 8-max +Seat 1: Player1 ($1.81 in chips) +Seat 2: Player2 ($2.46 in chips) +Seat 3: Player3 ($1.67 in chips) +Seat 4: Player4 ($0.35 in chips) +Seat 5: Player5 ($1.75 in chips) +Seat 6: Player6 ($2.92 in chips) +Seat 7: Player7 ($1.54 in chips) +Seat 8: Player8 ($0.71 in chips) +Player1: posts the ante $0.01 +Player2: posts the ante $0.01 +Player3: posts the ante $0.01 +Player4: posts the ante $0.01 +Player5: posts the ante $0.01 +Player6: posts the ante $0.01 +Player7: posts the ante $0.01 +Player8: posts the ante $0.01 +*** 3rd STREET *** +Dealt to Player1 [Ac Kc 8c] +Dealt to Player2 [Tc] +Dealt to Player3 [6c] +Dealt to Player4 [Js] +Dealt to Player5 [Jd] +Dealt to Player6 [2d] +Dealt to Player7 [Jh] +Dealt to Player8 [Kh] +Player6: brings in for $0.02 +Player7: calls $0.02 +Player8: calls $0.02 +Player1: calls $0.02 +Player2: calls $0.02 +Player3: calls $0.02 +Player4: calls $0.02 +Player5: calls $0.02 +*** 4th STREET *** +Dealt to Player1 [Ac Kc 8c] [9c] +Dealt to Player2 [Tc] [7d] +Dealt to Player3 [6c] [7h] +Dealt to Player4 [Js] [2c] +Dealt to Player5 [Jd] [4h] +Dealt to Player6 [2d] [7c] +Dealt to Player7 [Jh] [4c] +Dealt to Player8 [Kh] [3d] +Player8: checks +Player1: checks +Player2: checks +Player3: checks +Player4: checks +Player5: checks +Player6: checks +Player7: checks +*** 5th STREET *** +Dealt to Player1 [Ac Kc 8c 9c] [9d] +Dealt to Player2 [Tc 7d] [8d] +Dealt to Player3 [6c 7h] [3s] +Dealt to Player4 [Js 2c] [9s] +Dealt to Player5 [Jd 4h] [9h] +Dealt to Player6 [2d 7c] [6d] +Dealt to Player7 [Jh 4c] [5d] +Dealt to Player8 [Kh 3d] [8s] +Player1: checks +Player2: checks +Player3: checks +Player4: checks +Player5: checks +Player6: checks +Player7: checks +Player8: checks +*** 6th STREET *** +Dealt to Player1 [Ac Kc 8c 9c 9d] [Th] +Dealt to Player2 [Tc 7d 8d] [3c] +Dealt to Player3 [6c 7h 3s] [Qh] +Dealt to Player4 [Js 2c 9s] [8h] +Dealt to Player5 [Jd 4h 9h] [2s] +Dealt to Player6 [2d 7c 6d] [5h] +Dealt to Player7 [Jh 4c 5d] [Td] +Dealt to Player8 [Kh 3d 8s] [6s] +Player1: checks +Player2: checks +Player3: checks +Player4: checks +Player5: checks +Player6: checks +Player7: checks +Player8: checks +*** RIVER *** [6h] +Player1: checks +Player2: checks +Player3: bets $0.08 +Player4: folds +Player5: calls $0.08 +Player6: calls $0.08 +Player7: folds +Player8: calls $0.08 +Player1: folds +Player2: folds +*** SHOW DOWN *** +Player3: shows [7s Qs 6c 7h 3s Qh] (two pair, Queens and Sevens) +Player5: mucks hand +Player6: mucks hand +Player8: mucks hand +Player3 collected $0.54 from pot +*** SUMMARY *** +Total pot $0.56 | Rake $0.02 +Board [6h] +Seat 1: Player1 folded on the River +Seat 2: Player2 folded on the River +Seat 3: Player3 showed [7s Qs 6c 7h 3s Qh] and won ($0.54) with two pair, Queens and Sevens +Seat 4: Player4 folded on the River +Seat 5: Player5 mucked [Kd Ks Jd 4h 9h 2s] +Seat 6: Player6 mucked [5s Ah 2d 7c 6d 5h] +Seat 7: Player7 folded on the River +Seat 8: Player8 mucked [Jc 3h Kh 3d 8s 6s] + + + diff --git a/pyfpdb/regression-test-files/cash/iPoker/Stud/7-StudHL-USD-0.05-0.10-201009.txt b/pyfpdb/regression-test-files/cash/iPoker/Stud/7-StudHL-USD-0.05-0.10-201009.txt index 7ea65431..13c20945 100644 --- a/pyfpdb/regression-test-files/cash/iPoker/Stud/7-StudHL-USD-0.05-0.10-201009.txt +++ b/pyfpdb/regression-test-files/cash/iPoker/Stud/7-StudHL-USD-0.05-0.10-201009.txt @@ -1,71 +1,71 @@ - - - real - 7 Card Stud L $0.05/$0.10 - Labyrinth - 00:04 - 2 - 2010-09-05 13:00:46 - USD - exStingray - $0.04 - $0 - 1 - 0.88 - 0.08 - - - - - 2010-09-05 13:00:46 - - - - - - - - - - - - X X H6H8 D7 C2X X HAX X CQH9 S6 C7X X CKD8 HJ HK - - - C5S10C10 - - - H2D10H7 - - - H4D2H3 - - - C4DQDK - - - - - 2010-09-05 13:01:58 - - - - - - - - - - - - D4 S7 C8X X D5X X S2X X H9X X CJX X H10X X H5 - - - H2H7H6HQD9C6 - - - HAS8D2 - - - + + + real + 7 Card Stud L $0.05/$0.10 + Labyrinth + 00:04 + 2 + 2010-09-05 13:00:46 + USD + exStingray + $0.04 + $0 + 1 + 0.88 + 0.08 + + + + + 2010-09-05 13:00:46 + + + + + + + + + + + + X X H6H8 D7 C2X X HAX X CQH9 S6 C7X X CKD8 HJ HK + + + C5S10C10 + + + H2D10H7 + + + H4D2H3 + + + C4DQDK + + + + + 2010-09-05 13:01:58 + + + + + + + + + + + + D4 S7 C8X X D5X X S2X X H9X X CJX X H10X X H5 + + + H2H7H6HQD9C6 + + + HAS8D2 + + + \ No newline at end of file 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 index e24e5423..09695308 100644 --- 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 @@ -1,10384 +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) - - - +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) + + +