pmelvin commited on
Commit
4174670
·
1 Parent(s): 6ce1a7b

Add poker hand histories - wsop

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
.DS_Store ADDED
Binary file (6.15 kB). View file
 
.gitattributes CHANGED
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ *.phh filter=lfs diff=lfs merge=lfs -text
alice-carol-wikipedia.phh ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # An example badugi hand from Wikipedia.
2
+ # Link: https://en.wikipedia.org/wiki/Badugi
3
+
4
+ variant = "FB"
5
+ ante_trimming_status = true
6
+ antes = [0, 0, 0, 0]
7
+ blinds_or_straddles = [1, 2, 0, 0]
8
+ small_bet = 2
9
+ big_bet = 4
10
+ starting_stacks = [200, 200, 200, 200]
11
+ actions = [
12
+ # Pre-draw
13
+
14
+ "d dh p1 ????????", # Bob
15
+ "d dh p2 ????????", # Carol
16
+ "d dh p3 ????????", # Ted
17
+ "d dh p4 ????????", # Alice
18
+
19
+ "p3 f", # Ted
20
+ "p4 cc", # Alice
21
+ "p1 cc", # Bob
22
+ "p2 cc", # Carol
23
+
24
+ # First draw
25
+
26
+ "p1 sd ????", # Bob
27
+ "p2 sd ????", # Carol
28
+ "p4 sd ??", # Alice
29
+ "d dh p1 ????", # Bob
30
+ "d dh p2 ????", # Carol
31
+ "d dh p4 ??", # Alice
32
+
33
+ "p1 cc", # Bob
34
+ "p2 cbr 2", # Carol
35
+ "p4 cc", # Alice
36
+ "p1 cc", # Bob
37
+
38
+ # Second draw
39
+
40
+ "p1 sd ??", # Bob
41
+ "p2 sd", # Carol
42
+ "p4 sd ??", # Alice
43
+ "d dh p1 ??", # Bob
44
+ "d dh p4 ??", # Alice
45
+
46
+ "p1 cc", # Bob
47
+ "p2 cbr 4", # Carol
48
+ "p4 cbr 8", # Alice
49
+ "p1 f", # Bob
50
+ "p2 cc", # Bob
51
+
52
+ # Third draw
53
+
54
+ "p2 sd ??", # Carol
55
+ "p4 sd", # Alice
56
+ "d dh p2 ??", # Carol
57
+
58
+ "p2 cc", # Carol
59
+ "p4 cbr 4", # Alice
60
+ "p2 cc", # Carol
61
+
62
+ # Showdown
63
+
64
+ "p4 sm 2s4c6d9h", # Alice
65
+ "p2 sm 3s5d7c8h", # Carol
66
+ ]
67
+ author = "Juho Kim"
68
+ players = ["Bob", "Carol", "Ted", "Alice"]
antonius-blom-2009.phh ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # The largest online poker pot every played between Patrik Antonius and Viktor Blom.
2
+ # Link: https://youtu.be/UMBm66Id2AA
3
+
4
+ variant = "PO"
5
+ ante_trimming_status = true
6
+ antes = [0, 0]
7
+ blinds_or_straddles = [500, 1000]
8
+ min_bet = 1000
9
+ starting_stacks = [1259450.25, 678473.5]
10
+ actions = [
11
+ # Pre-flop
12
+
13
+ "d dh p1 Ah3sKsKh", # Antonius
14
+ "d dh p2 6d9s7d8h", # Blom
15
+
16
+ "p2 cbr 3000", # Blom
17
+ "p1 cbr 9000", # Antonius
18
+ "p2 cbr 27000", # Blom
19
+ "p1 cbr 81000", # Antonius
20
+ "p2 cc", # Blom
21
+
22
+ # Flop
23
+
24
+ "d db 4s5c2h",
25
+
26
+ "p1 cbr 91000", # Antonius
27
+ "p2 cbr 435000", # Blom
28
+ "p1 cbr 779000", # Antonius
29
+ "p2 cc", # Blom
30
+
31
+ # Showdown
32
+
33
+ "p1 sm Ah3sKsKh", # Antonius
34
+ "p2 sm 6d9s7d8h", # Blom
35
+
36
+ # Turn
37
+
38
+ "d db 5h",
39
+
40
+ # River
41
+
42
+ "d db 9c",
43
+ ]
44
+ author = "Juho Kim"
45
+ month = 11
46
+ year = 2009
47
+ players = ["Patrik Antonius", "Victor Blom"]
48
+ currency = "USD"
arieh-yockey-2019.phh ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # A bad beat between Yockey and Arieh.
2
+ # Link: https://youtu.be/pChCqb2FNxY
3
+
4
+ variant = "F2L3D"
5
+ ante_trimming_status = true
6
+ antes = [0, 0, 0, 0]
7
+ blinds_or_straddles = [75000, 150000, 0, 0]
8
+ small_bet = 150000
9
+ big_bet = 300000
10
+ starting_stacks = [1180000, 4340000, 5910000, 10765000]
11
+ actions = [
12
+ # Pre-draw
13
+
14
+ "d dh p1 7h6c4c3d2c", # Yockey
15
+ "d dh p2 ??????????", # Hui
16
+ "d dh p3 ??????????", # Esposito
17
+ "d dh p4 AsQs6s5c3c", # Arieh
18
+
19
+ "p3 f", # Esposito
20
+ "p4 cbr 300000", # Arieh
21
+ "p1 cbr 450000", # Yockey
22
+ "p2 f", # Hui
23
+ "p4 cc", # Arieh
24
+
25
+ # First draw
26
+
27
+ "p1 sd", # Yockey
28
+ "p4 sd AsQs", # Arieh
29
+ "d dh p4 2hQh", # Arieh
30
+
31
+ "p1 cbr 150000", # Yockey
32
+ "p4 cc", # Arieh
33
+
34
+ # Second draw
35
+
36
+ "p1 sd", # Yockey
37
+ "p4 sd Qh", # Arieh
38
+ "d dh p4 4d", # Arieh
39
+
40
+ "p1 cbr 300000", # Yockey
41
+ "p4 cc", # Arieh
42
+
43
+ # Third draw
44
+
45
+ "p1 sd", # Yockey
46
+ "p4 sd 6s", # Arieh
47
+ "d dh p4 7c", # Arieh
48
+
49
+ "p1 cbr 280000", # Yockey
50
+ "p4 cc", # Arieh
51
+
52
+ # Showdown
53
+
54
+ "p1 sm 7h6c4c3d2c", # Yockey
55
+ "p4 sm 2h4d7c5c3c", # Arieh
56
+ ]
57
+ author = "Juho Kim"
58
+ event = "2019 World Series of Poker Event #58: $50,000 Poker Players Championship | Day 5"
59
+ city = "Las Vegas"
60
+ region = "Nevada"
61
+ country = "United States of America"
62
+ day = 28
63
+ month = 6
64
+ year = 2019
65
+ players = ["Bryce Yockey", "Phil Hui", "John Esposito", "Josh Arieh"]
dwan-ivey-2009.phh ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # The first televised million dollar pot between Tom Dwan and Phil Ivey.
2
+ # Link: https://youtu.be/GnxFohpljqM
3
+
4
+ variant = "NT"
5
+ ante_trimming_status = true
6
+ antes = [500, 500, 500]
7
+ blinds_or_straddles = [1000, 2000, 0]
8
+ min_bet = 2000
9
+ starting_stacks = [1125600, 2000000, 553500]
10
+ actions = [
11
+ # Pre-flop
12
+
13
+ "d dh p1 Ac2d", # Ivey
14
+ "d dh p2 ????", # Antonius
15
+ "d dh p3 7h6h", # Dwan
16
+
17
+ "p3 cbr 7000", # Dwan
18
+ "p1 cbr 23000", # Ivey
19
+ "p2 f", # Antonius
20
+ "p3 cc", # Dwan
21
+
22
+ # Flop
23
+
24
+ "d db Jc3d5c",
25
+
26
+ "p1 cbr 35000", # Ivey
27
+ "p3 cc", # Dwan
28
+
29
+ # Turn
30
+
31
+ "d db 4h",
32
+
33
+ "p1 cbr 90000", # Ivey
34
+ "p3 cbr 232600", # Dwan
35
+ "p1 cbr 1067100", # Ivey
36
+ "p3 cc", # Dwan
37
+
38
+ # Showdown
39
+
40
+ "p1 sm Ac2d", # Ivey
41
+ "p3 sm 7h6h", # Dwan
42
+
43
+ # River
44
+
45
+ "d db Jh",
46
+ ]
47
+ author = "Juho Kim"
48
+ event = "Full Tilt Million Dollar Cash Game S4E12"
49
+ year = 2009
50
+ players = ["Phil Ivey", "Patrik Antonius", "Tom Dwan"]
51
+ currency = "USD"
phua-xuan-2019.phh ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # An all-in hand between Xuan and Phua.
2
+ # Link: https://youtu.be/QlgCcphLjaQ
3
+
4
+ variant = "NS"
5
+ ante_trimming_status = true
6
+ antes = [3000, 3000, 3000, 3000, 3000, 3000]
7
+ blinds_or_straddles = [0, 0, 0, 0, 0, 3000]
8
+ min_bet = 3000
9
+ starting_stacks = [495000, 232000, 362000, 403000, 301000, 204000]
10
+ actions = [
11
+ # Pre-flop
12
+
13
+ "d dh p1 Th8h", # Badziakouski
14
+ "d dh p2 QsJd", # Zhong
15
+ "d dh p3 QhQd", # Xuan
16
+ "d dh p4 8d7c", # Jun
17
+ "d dh p5 KhKs", # Phua
18
+ "d dh p6 8c7h", # Koon
19
+
20
+ "p1 cc", # Badziakouski
21
+ "p2 cc", # Zhong
22
+ "p3 cbr 35000", # Xuan
23
+ "p4 f", # Jun
24
+ "p5 cbr 298000", # Phua
25
+ "p6 f", # Koon
26
+ "p1 f", # Badziakouski
27
+ "p2 f", # Zhong
28
+ "p3 cc", # Xuan
29
+
30
+ # Showdown
31
+
32
+ "p5 sm KhKs", # Phua
33
+ "p3 sm QhQd", # Xuan
34
+
35
+ # Flop
36
+
37
+ "d db 9h6cKc",
38
+
39
+ # Turn
40
+
41
+ "d db Jh",
42
+
43
+ # River
44
+
45
+ "d db Ts",
46
+ ]
47
+ author = "Juho Kim"
48
+ event = "Triton London 2019"
49
+ address = "5 Hamilton Pl"
50
+ city = "London"
51
+ region = "Greater London"
52
+ postal_code = "W1J 7ED"
53
+ country = "United Kingdom"
54
+ year = 2019
55
+ players = ["Mikita Badziakouski", "Liu Ming Zhong", "Tan Xuan", "Wang Jun", "Paul Phua", "Jason Koon"]
56
+ currency = "GBP"
wsop/2023/43/5/1.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'NT'
2
+ ante_trimming_status = false
3
+ antes = [0, 120000, 0, 0, 0]
4
+ blinds_or_straddles = [40000, 80000, 0, 0, 0]
5
+ min_bet = 80000
6
+ starting_stacks = [7380000, 2500000, 5110000, 10170000, 4545000]
7
+ actions = ['d dh p1 7s4s', 'd dh p2 Js8h', 'd dh p3 Td8c', 'd dh p4 6d5h', 'd dh p5 Qh7h', 'p3 f', 'p4 cbr 170000', 'p5 f', 'p1 f', 'p2 cc', 'd db JcTs2d', 'p2 cc', 'p4 cbr 140000', 'p2 cc', 'd db As', 'p2 cc', 'p4 cbr 325000', 'p2 cc', 'd db Qs', 'p2 cc', 'p4 cbr 600000', 'p2 cc', 'p4 sm 6d5h', 'p2 sm Js8h']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 1
17
+ players = ['Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast']
18
+ finishing_stacks = [7340000, 3775000, 5110000, 8935000, 4545000]
wsop/2023/43/5/10.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'F7S'
2
+ ante_trimming_status = true
3
+ antes = [50000, 50000, 50000, 50000, 50000]
4
+ bring_in = 50000
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [2600000, 11250000, 4475000, 6675000, 4700000]
8
+ actions = ['d dh p1 5d2sAd', 'd dh p2 7h3s4h', 'd dh p3 Js6d9d', 'd dh p4 Ts8sQh', 'd dh p5 Qc9c9s', 'p2 pb', 'p3 f', 'p4 cbr 200000', 'p5 f', 'p1 f', 'p2 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 10
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [2550000, 11150000, 4425000, 6925000, 4650000]
wsop/2023/43/5/11.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'F7S'
2
+ ante_trimming_status = true
3
+ antes = [50000, 50000, 50000, 50000, 50000]
4
+ bring_in = 50000
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [2550000, 11150000, 4425000, 6925000, 4650000]
8
+ actions = ['d dh p1 QhTcTh', 'd dh p2 JsJc2c', 'd dh p3 9d8h8c', 'd dh p4 QsTs4s', 'd dh p5 Qd3c8d', 'p2 pb', 'p3 cbr 200000', 'p4 cc', 'p5 f', 'p1 cbr 400000', 'p2 cbr 600000', 'p3 f', 'p4 f', 'p1 cc', 'd dh p1 6c', 'd dh p2 4h', 'p1 cc', 'p2 cbr 200000', 'p1 cc', 'd dh p1 Kc', 'd dh p2 7h', 'p1 cc', 'p2 cbr 400000', 'p1 cc', 'd dh p1 Ah', 'd dh p2 6h', 'p1 cc', 'p2 cbr 400000', 'p1 cc', 'd dh p1 6d', 'd dh p2 9c', 'p1 cc', 'p2 cc', 'p1 sm QhTcTh6cKcAh6d', 'p2 sm']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 11
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [4750000, 9500000, 4175000, 6675000, 4600000]
wsop/2023/43/5/12.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FO/8'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [4175000, 6675000, 4600000, 4750000, 9500000]
8
+ actions = ['d dh p1 8d7d5d4d', 'd dh p2 Jc9s9d6s', 'd dh p3 As8c7s5h', 'd dh p4 KcTd7c5c', 'd dh p5 AdTs3d2s', 'p3 cbr 400000', 'p4 f', 'p5 f', 'p1 f', 'p2 cc', 'd db 3s7hKs', 'p2 cc', 'p3 cbr 200000', 'p2 cc', 'd db 8s', 'p2 cc', 'p3 cbr 400000', 'p2 cc', 'd db Ah', 'p2 cc', 'p3 cbr 400000', 'p2 cc', 'p3 sm As8c7s5h', 'p2 sm']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 12
18
+ players = ['Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi']
19
+ finishing_stacks = [4075000, 5275000, 6100000, 4750000, 9500000]
wsop/2023/43/5/13.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FO/8'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [5275000, 6100000, 4750000, 9500000, 4075000]
8
+ actions = ['d dh p1 AdQcJd2c', 'd dh p2 9h8h7c4d', 'd dh p3 JsTs8d5c', 'd dh p4 Ac9c7h3s', 'd dh p5 KdQd8c4s', 'p3 f', 'p4 cbr 400000', 'p5 f', 'p1 cbr 600000', 'p2 f', 'p4 cc', 'd db 2hKh9s', 'p1 cbr 200000', 'p4 cc', 'd db Tc', 'p1 cbr 400000', 'p4 cc', 'd db As', 'p1 cbr 400000', 'p4 cc', 'p1 sm AdQcJd2c', 'p4 sm']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 13
18
+ players = ['Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast']
19
+ finishing_stacks = [7075000, 5900000, 4750000, 7900000, 4075000]
wsop/2023/43/5/14.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FO/8'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [5900000, 4750000, 7900000, 4075000, 7075000]
8
+ actions = ['d dh p1 KcJh6h3s', 'd dh p2 KdQh8d3h', 'd dh p3 AdJsTd6s', 'd dh p4 Th9s8h3d', 'd dh p5 Jd9h9c6d', 'p3 cbr 400000', 'p4 f', 'p5 f', 'p1 f', 'p2 cc', 'd db Ah9d6c', 'p2 cc', 'p3 cbr 200000', 'p2 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 14
18
+ players = ['Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton']
19
+ finishing_stacks = [5800000, 4350000, 8400000, 4075000, 7075000]
wsop/2023/43/5/15.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FO/8'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [4350000, 8400000, 4075000, 7075000, 5800000]
8
+ actions = ['d dh p1 5s5d4s3c', 'd dh p2 AsQd4d2s', 'd dh p3 Kc7d5h3h', 'd dh p4 AhKhQs2c', 'd dh p5 9d6h6d5c', 'p3 f', 'p4 cbr 400000', 'p5 f', 'p1 f', 'p2 cc', 'd db 7h4c8c', 'p2 cc', 'p4 cbr 200000', 'p2 cc', 'd db Jd', 'p2 cc', 'p4 cbr 400000', 'p2 cbr 800000', 'p4 cc', 'd db 9h', 'p2 cbr 400000', 'p4 cc', 'p2 sm AsQd4d2s', 'p4 sm AhKhQs2c']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 15
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [4250000, 9375000, 4075000, 6200000, 5800000]
wsop/2023/43/5/16.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FO/8'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [9375000, 4075000, 6200000, 5800000, 4250000]
8
+ actions = ['d dh p1 AcKd5s3d', 'd dh p2 AsQsTh9c', 'd dh p3 AhJh7s6d', 'd dh p4 7h7d4c3s', 'd dh p5 ????????', 'p3 cbr 400000', 'p4 f', 'p5 f', 'p1 cbr 600000', 'p2 f', 'p3 cc', 'd db 6sQc7c', 'p1 cc', 'p3 cc', 'd db Jd', 'p1 cc', 'p3 cbr 400000', 'p1 cc', 'd db Jc', 'p1 cc', 'p3 cbr 400000', 'p1 cc', 'p3 sm AhJh7s6d', 'p1 sm']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 16
18
+ players = ['Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst']
19
+ finishing_stacks = [7975000, 3875000, 7800000, 5800000, 4250000]
wsop/2023/43/5/17.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FO/8'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [3875000, 7800000, 5800000, 4250000, 7975000]
8
+ actions = ['d dh p1 Jc7c6d2h', 'd dh p2 Ad8d6s3d', 'd dh p3 5h3s3h2d', 'd dh p4 AsKs4s2s', 'd dh p5 AcQs8c2c', 'p3 cbr 400000', 'p4 cbr 600000', 'p5 cbr 800000', 'p1 f', 'p2 f', 'p3 f', 'p4 cc', 'd db KcAhJh', 'p4 cc', 'p5 cc', 'd db Kd', 'p4 cbr 400000', 'p5 cc', 'd db 8s', 'p4 cbr 400000', 'p5 cc', 'p4 sm AsKs4s2s', 'p5 sm']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 17
18
+ players = ['Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi']
19
+ finishing_stacks = [3775000, 7600000, 5400000, 6550000, 6375000]
wsop/2023/43/5/18.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FO/8'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [7600000, 5400000, 6550000, 6375000, 3775000]
8
+ actions = ['d dh p1 Js9h7s6d', 'd dh p2 AdKcQc9c', 'd dh p3 ????????', 'd dh p4 6c5c4d2d', 'd dh p5 AsThTd4c', 'p3 f', 'p4 cbr 400000', 'p5 f', 'p1 f', 'p2 cc', 'd db Qs5h9d', 'p2 cc', 'p4 cbr 200000', 'p2 cbr 400000', 'p4 cc', 'd db Ac', 'p2 cbr 400000', 'p4 cc', 'd db 8s', 'p2 cc', 'p4 cc', 'p2 sm AdKcQc9c', 'p4 sm 6c5c4d2d']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 18
18
+ players = ['Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast']
19
+ finishing_stacks = [7500000, 5450000, 6550000, 6425000, 3775000]
wsop/2023/43/5/2.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'NT'
2
+ ante_trimming_status = false
3
+ antes = [0, 120000, 0, 0, 0]
4
+ blinds_or_straddles = [40000, 80000, 0, 0, 0]
5
+ min_bet = 80000
6
+ starting_stacks = [3775000, 5110000, 8935000, 4545000, 7340000]
7
+ actions = ['d dh p1 Th5d', 'd dh p2 Qs4s', 'd dh p3 Ac5h', 'd dh p4 QcJs', 'd dh p5 AsQh', 'p3 cbr 170000', 'p4 f', 'p5 cc', 'p1 f', 'p2 cbr 875000', 'p3 f', 'p5 cbr 4990000', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 2
17
+ players = ['Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton']
18
+ finishing_stacks = [3735000, 4115000, 8765000, 4545000, 8545000]
wsop/2023/43/5/20.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FR'
2
+ ante_trimming_status = true
3
+ antes = [50000, 50000, 50000, 50000, 50000]
4
+ bring_in = 50000
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [6550000, 6425000, 3775000, 7500000, 5450000]
8
+ actions = ['d dh p1 7c3hKc', 'd dh p2 8s6s5s', 'd dh p3 3s2c8h', 'd dh p4 Qd7h2d', 'd dh p5 9d8c5c', 'p1 pb', 'p2 cbr 200000', 'p3 cc', 'p4 f', 'p5 f', 'p1 f', 'd dh p2 Jh', 'd dh p3 6c', 'p3 cbr 200000', 'p2 cc', 'd dh p2 Ks', 'd dh p3 Js', 'p3 cbr 400000', 'p2 cc', 'd dh p2 Kd', 'd dh p3 3c', 'p3 cbr 400000', 'p2 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 20
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [6450000, 5575000, 4825000, 7450000, 5400000]
wsop/2023/43/5/21.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FR'
2
+ ante_trimming_status = true
3
+ antes = [50000, 50000, 50000, 50000, 50000]
4
+ bring_in = 50000
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [6450000, 5575000, 4825000, 7450000, 5400000]
8
+ actions = ['d dh p1 5s4hTh', 'd dh p2 Qs6s6d', 'd dh p3 8d4s8s', 'd dh p4 Ks3sQd', 'd dh p5 QcTc7s', 'p4 pb', 'p5 f', 'p1 cc', 'p2 f', 'p3 f', 'd dh p1 Ts', 'd dh p4 6c', 'p4 cc', 'p1 cbr 200000', 'p4 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 21
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [6700000, 5525000, 4775000, 7350000, 5350000]
wsop/2023/43/5/22.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FR'
2
+ ante_trimming_status = true
3
+ antes = [50000, 50000, 50000, 50000, 50000]
4
+ bring_in = 50000
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [6700000, 5525000, 4775000, 7350000, 5350000]
8
+ actions = ['d dh p1 Qd2cAd', 'd dh p2 8h4hTd', 'd dh p3 JhJcQh', 'd dh p4 9h5c7h', 'd dh p5 6c2h4d', 'p3 pb', 'p4 cc', 'p5 cbr 200000', 'p1 f', 'p2 f', 'p3 f', 'p4 cc', 'd dh p4 5s', 'd dh p5 Ah', 'p5 cbr 200000', 'p4 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 22
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [6650000, 5475000, 4675000, 7100000, 5800000]
wsop/2023/43/5/23.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FR'
2
+ ante_trimming_status = true
3
+ antes = [50000, 50000, 50000, 50000, 50000]
4
+ bring_in = 50000
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [6650000, 5475000, 4675000, 7100000, 5800000]
8
+ actions = ['d dh p1 Ks9h8h', 'd dh p2 9d7d9s', 'd dh p3 Td6sJs', 'd dh p4 Ad2hTh', 'd dh p5 8d2s5d', 'p3 pb', 'p4 f', 'p5 cbr 200000', 'p1 f', 'p2 f', 'p3 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 23
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [6600000, 5425000, 4575000, 7050000, 6050000]
wsop/2023/43/5/24.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FR'
2
+ ante_trimming_status = true
3
+ antes = [50000, 50000, 50000, 50000, 50000]
4
+ bring_in = 50000
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [6600000, 5425000, 4575000, 7050000, 6050000]
8
+ actions = ['d dh p1 6s3hKh', 'd dh p2 As6h3c', 'd dh p3 4s3d2d', 'd dh p4 Tc9cKd', 'd dh p5 5h4hJs', 'p1 pb', 'p2 cc', 'p3 cbr 200000', 'p4 f', 'p5 f', 'p1 f', 'p2 cbr 400000', 'p3 cc', 'd dh p2 Jc', 'd dh p3 8s', 'p3 cbr 200000', 'p2 cc', 'd dh p2 Ah', 'd dh p3 3s', 'p3 cbr 400000', 'p2 cc', 'd dh p2 7d', 'd dh p3 5s', 'p3 cbr 400000', 'p2 cc', 'd dh p2 5d', 'd dh p3 6c', 'p3 cbr 400000', 'p2 cc', 'p3 sm 4s3d2d8s3s5s6c', 'p2 sm']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 24
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [6500000, 3575000, 6625000, 7000000, 6000000]
wsop/2023/43/5/25.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FR'
2
+ ante_trimming_status = true
3
+ antes = [50000, 50000, 50000, 50000, 50000]
4
+ bring_in = 50000
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [6500000, 3575000, 6625000, 7000000, 6000000]
8
+ actions = ['d dh p1 7s6d5c', 'd dh p2 KsJcTd', 'd dh p3 5h2h6s', 'd dh p4 Jd3sQd', 'd dh p5 9h7c4d', 'p4 pb', 'p5 cc', 'p1 cbr 200000', 'p2 f', 'p3 cc', 'p4 f', 'p5 cc', 'd dh p1 Ts', 'd dh p3 Ad', 'd dh p5 7h', 'p3 cbr 200000', 'p5 f', 'p1 cc', 'd dh p1 Qh', 'd dh p3 6h', 'p1 cc', 'p3 cbr 400000', 'p1 cc', 'd dh p1 Kc', 'd dh p3 4c', 'p1 cc', 'p3 cbr 400000', 'p1 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 25
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [5650000, 3525000, 7875000, 6900000, 5750000]
wsop/2023/43/5/26.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FR'
2
+ ante_trimming_status = true
3
+ antes = [50000, 50000, 50000, 50000, 50000]
4
+ bring_in = 50000
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [5650000, 3525000, 7875000, 6900000, 5750000]
8
+ actions = ['d dh p1 Kd5cJh', 'd dh p2 Th8dAh', 'd dh p3 6c4c7h', 'd dh p4 Ks6d2c', 'd dh p5 7s3c5d', 'p1 pb', 'p2 cbr 200000', 'p3 cc', 'p4 f', 'p5 cc', 'p1 f', 'd dh p2 Js', 'd dh p3 Qh', 'd dh p5 3d', 'p5 cbr 200000', 'p2 cc', 'p3 cc', 'd dh p2 7c', 'd dh p3 5s', 'd dh p5 As', 'p5 cbr 400000', 'p2 f', 'p3 cc', 'd dh p3 3s', 'd dh p5 Jc', 'p5 cc', 'p3 cbr 400000', 'p5 cc', 'd dh p3 2s', 'd dh p5 4s', 'p5 cbr 400000', 'p3 cc', 'p5 sm 7s3c5d3dAsJc4s', 'p3 sm 6c4c7hQh5s3s2s']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 26
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [5550000, 3075000, 10125000, 6850000, 4100000]
wsop/2023/43/5/27.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'PO'
2
+ ante_trimming_status = false
3
+ antes = [0, 100000, 0, 0, 0]
4
+ blinds_or_straddles = [50000, 100000, 0, 0, 0]
5
+ min_bet = 100000
6
+ starting_stacks = [4100000, 5550000, 3075000, 10125000, 6850000]
7
+ actions = ['d dh p1 QhQdTc2h', 'd dh p2 AsJc6d5s', 'd dh p3 QcJh8s2c', 'd dh p4 KhTd8d3s', 'd dh p5 AhAc7h2d', 'p3 f', 'p4 f', 'p5 cbr 350000', 'p1 f', 'p2 cbr 1100000', 'p5 cbr 3350000', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 27
17
+ players = ['Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton']
18
+ finishing_stacks = [4050000, 4350000, 3075000, 10125000, 8100000]
wsop/2023/43/5/28.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'PO'
2
+ ante_trimming_status = false
3
+ antes = [0, 100000, 0, 0, 0]
4
+ blinds_or_straddles = [50000, 100000, 0, 0, 0]
5
+ min_bet = 100000
6
+ starting_stacks = [4350000, 3075000, 10125000, 8100000, 4050000]
7
+ actions = ['d dh p1 ????????', 'd dh p2 Tc5h5d2c', 'd dh p3 AhKcQsJh', 'd dh p4 Kd9h5s2h', 'd dh p5 Ts8s6d3h', 'p3 cbr 275000', 'p4 f', 'p5 f', 'p1 f', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 28
17
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
18
+ finishing_stacks = [4300000, 2875000, 10375000, 8100000, 4050000]
wsop/2023/43/5/29.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'PO'
2
+ ante_trimming_status = false
3
+ antes = [0, 100000, 0, 0, 0]
4
+ blinds_or_straddles = [50000, 100000, 0, 0, 0]
5
+ min_bet = 100000
6
+ starting_stacks = [2875000, 10375000, 8100000, 4050000, 4300000]
7
+ actions = ['d dh p1 Td4c2d2c', 'd dh p2 KcJs8c5d', 'd dh p3 QhQdTh6d', 'd dh p4 AcQc8s4h', 'd dh p5 Jh7s7d3s', 'p3 cbr 350000', 'p4 f', 'p5 f', 'p1 f', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 29
17
+ players = ['Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst']
18
+ finishing_stacks = [2825000, 10175000, 8350000, 4050000, 4300000]
wsop/2023/43/5/3.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'NT'
2
+ ante_trimming_status = false
3
+ antes = [0, 150000, 0, 0, 0]
4
+ blinds_or_straddles = [50000, 100000, 0, 0, 0]
5
+ min_bet = 100000
6
+ starting_stacks = [4100000, 8775000, 4550000, 8525000, 3750000]
7
+ actions = ['d dh p1 Qd8s', 'd dh p2 Ts2d', 'd dh p3 4c3s', 'd dh p4 7s5h', 'd dh p5 QcTc', 'p3 f', 'p4 f', 'p5 cbr 200000', 'p1 f', 'p2 cc', 'd db Th8c5d', 'p2 cc', 'p5 cbr 175000', 'p2 cc', 'd db 9d', 'p2 cc', 'p5 cc', 'd db Jd', 'p2 cbr 225000', 'p5 cbr 700000', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 3
17
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
18
+ finishing_stacks = [4050000, 8025000, 4550000, 8525000, 4550000]
wsop/2023/43/5/30.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'PO'
2
+ ante_trimming_status = false
3
+ antes = [0, 100000, 0, 0, 0]
4
+ blinds_or_straddles = [50000, 100000, 0, 0, 0]
5
+ min_bet = 100000
6
+ starting_stacks = [10175000, 8350000, 4050000, 4300000, 2825000]
7
+ actions = ['d dh p1 Jd7h5c2c', 'd dh p2 AhKs4d2s', 'd dh p3 Qs6s6d5d', 'd dh p4 8h8d3s3d', 'd dh p5 Tc9h7d2d', 'p3 f', 'p4 f', 'p5 cbr 300000', 'p1 f', 'p2 cc', 'd db 6cJc4h', 'p2 cc', 'p5 cc', 'd db 9s', 'p2 cc', 'p5 cc', 'd db 7c', 'p2 cbr 250000', 'p5 cc', 'p2 sm AhKs4d2s', 'p5 sm Tc9h7d2d']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 30
17
+ players = ['Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi']
18
+ finishing_stacks = [10125000, 7700000, 4050000, 4300000, 3525000]
wsop/2023/43/5/31.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'PO'
2
+ ante_trimming_status = false
3
+ antes = [0, 100000, 0, 0, 0]
4
+ blinds_or_straddles = [50000, 100000, 0, 0, 0]
5
+ min_bet = 100000
6
+ starting_stacks = [7700000, 4050000, 4300000, 3525000, 10125000]
7
+ actions = ['d dh p1 JsThTd6d', 'd dh p2 AdTsTc8h', 'd dh p3 KhJc7h7d', 'd dh p4 9h6s4s4h', 'd dh p5 9c7s5h2h', 'p3 f', 'p4 f', 'p5 f', 'p1 cc', 'p2 cc', 'd db 3c2dKc', 'p1 cc', 'p2 cc', 'd db Qh', 'p1 cc', 'p2 cc', 'd db 8c', 'p1 cc', 'p2 cc', 'p1 sm JsThTd6d', 'p2 sm AdTsTc8h']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 31
17
+ players = ['Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast']
18
+ finishing_stacks = [7750000, 4000000, 4300000, 3525000, 10125000]
wsop/2023/43/5/32.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'PO'
2
+ ante_trimming_status = false
3
+ antes = [0, 100000, 0, 0, 0]
4
+ blinds_or_straddles = [50000, 100000, 0, 0, 0]
5
+ min_bet = 100000
6
+ starting_stacks = [4000000, 4300000, 3525000, 10125000, 7750000]
7
+ actions = ['d dh p1 Tc9h4h2c', 'd dh p2 AcJd8c4d', 'd dh p3 Jh9c8d5s', 'd dh p4 AdQd7h2s', 'd dh p5 Qh9d8s5d', 'p3 f', 'p4 cbr 350000', 'p5 f', 'p1 f', 'p2 cc', 'd db As5h7d', 'p2 cc', 'p4 cbr 800000', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 32
17
+ players = ['Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton']
18
+ finishing_stacks = [3950000, 3850000, 3525000, 10625000, 7750000]
wsop/2023/43/5/33.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'PO'
2
+ ante_trimming_status = false
3
+ antes = [0, 100000, 0, 0, 0]
4
+ blinds_or_straddles = [50000, 100000, 0, 0, 0]
5
+ min_bet = 100000
6
+ starting_stacks = [3850000, 3525000, 10625000, 7750000, 3950000]
7
+ actions = ['d dh p1 Qs5d3d2h', 'd dh p2 KsJd7c3c', 'd dh p3 Td8h8c2s', 'd dh p4 Qh6d5s4s', 'd dh p5 AcTc9h2d', 'p3 f', 'p4 f', 'p5 cbr 250000', 'p1 f', 'p2 cc', 'd db 4h6h9c', 'p2 cc', 'p5 cbr 375000', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 33
17
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
18
+ finishing_stacks = [3800000, 3175000, 10625000, 7750000, 4350000]
wsop/2023/43/5/34.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FT'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [3175000, 10625000, 7750000, 4350000, 3800000]
8
+ actions = ['d dh p1 Td4c', 'd dh p2 Tc9s', 'd dh p3 6s5h', 'd dh p4 3h3d', 'd dh p5 Jc4d', 'p3 f', 'p4 cbr 400000', 'p5 f', 'p1 f', 'p2 cc', 'd db Ts9d5d', 'p2 cc', 'p4 cbr 200000', 'p2 cbr 400000', 'p4 cc', 'd db Kc', 'p2 cbr 400000', 'p4 cc', 'd db Qh', 'p2 cc', 'p4 cc', 'p2 sm Tc9s', 'p4 sm']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 34
18
+ players = ['Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst']
19
+ finishing_stacks = [3075000, 11925000, 7750000, 3150000, 3800000]
wsop/2023/43/5/35.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FT'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [11925000, 7750000, 3150000, 3800000, 3075000]
8
+ actions = ['d dh p1 KsKc', 'd dh p2 Td4d', 'd dh p3 ????', 'd dh p4 5c3h', 'd dh p5 Qc9s', 'p3 f', 'p4 f', 'p5 cbr 400000', 'p1 cbr 600000', 'p2 f', 'p5 cc', 'd db 9h2cJc', 'p1 cbr 200000', 'p5 cc', 'd db Jd', 'p1 cbr 400000', 'p5 cc', 'd db Tc', 'p1 cbr 400000', 'p5 cc', 'p1 sm KsKc', 'p5 sm']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 35
18
+ players = ['Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi']
19
+ finishing_stacks = [13725000, 7550000, 3150000, 3800000, 1475000]
wsop/2023/43/5/36.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FT'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [7550000, 3150000, 3800000, 1475000, 13725000]
8
+ actions = ['d dh p1 Td5c', 'd dh p2 Qs9c', 'd dh p3 KsJc', 'd dh p4 ????', 'd dh p5 Jd3c', 'p3 cbr 400000', 'p4 f', 'p5 f', 'p1 f', 'p2 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 36
18
+ players = ['Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast']
19
+ finishing_stacks = [7450000, 2950000, 4100000, 1475000, 13725000]
wsop/2023/43/5/37.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FT'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [2950000, 4100000, 1475000, 13725000, 7450000]
8
+ actions = ['d dh p1 8h4d', 'd dh p2 9d7c', 'd dh p3 Kc8s', 'd dh p4 Td6h', 'd dh p5 Tc7h', 'p3 f', 'p4 f', 'p5 f', 'p1 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 37
18
+ players = ['Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton']
19
+ finishing_stacks = [2850000, 4200000, 1475000, 13725000, 7450000]
wsop/2023/43/5/38.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FT'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [4200000, 1475000, 13725000, 7450000, 2850000]
8
+ actions = ['d dh p1 5s2c', 'd dh p2 AhQh', 'd dh p3 8c6c', 'd dh p4 5d4s', 'd dh p5 9s7h', 'p3 f', 'p4 f', 'p5 f', 'p1 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 38
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [4100000, 1575000, 13725000, 7450000, 2850000]
wsop/2023/43/5/39.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FT'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [1575000, 13725000, 7450000, 2850000, 4100000]
8
+ actions = ['d dh p1 Js9c', 'd dh p2 Ah7d', 'd dh p3 7s4c', 'd dh p4 6c4h', 'd dh p5 Qs8s', 'p3 f', 'p4 f', 'p5 cbr 400000', 'p1 f', 'p2 cc', 'd db 4s3c2c', 'p2 cbr 200000', 'p5 cc', 'd db 6d', 'p2 cbr 400000', 'p5 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 39
18
+ players = ['Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst']
19
+ finishing_stacks = [1475000, 14425000, 7450000, 2850000, 3500000]
wsop/2023/43/5/4.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'NT'
2
+ ante_trimming_status = false
3
+ antes = [0, 150000, 0, 0, 0]
4
+ blinds_or_straddles = [50000, 100000, 0, 0, 0]
5
+ min_bet = 100000
6
+ starting_stacks = [8025000, 4550000, 8525000, 4550000, 4050000]
7
+ actions = ['d dh p1 Qd8s', 'd dh p2 5h3s', 'd dh p3 Jc7c', 'd dh p4 9h4d', 'd dh p5 Jd6s', 'p3 f', 'p4 f', 'p5 f', 'p1 cc', 'p2 cc', 'd db 2s5s2d', 'p1 cc', 'p2 cbr 175000', 'p1 cc', 'd db As', 'p1 cc', 'p2 cbr 300000', 'p1 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 4
17
+ players = ['Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst']
18
+ finishing_stacks = [7750000, 4825000, 8525000, 4550000, 4050000]
wsop/2023/43/5/40.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'FT'
2
+ ante_trimming_status = true
3
+ antes = [0, 0, 0, 0, 0]
4
+ blinds_or_straddles = [100000, 200000, 0, 0, 0]
5
+ small_bet = 200000
6
+ big_bet = 400000
7
+ starting_stacks = [14425000, 7450000, 2850000, 3500000, 1475000]
8
+ actions = ['d dh p1 Jd3d', 'd dh p2 8d7s', 'd dh p3 Jh5d', 'd dh p4 Ah4h', 'd dh p5 TsTd', 'p3 f', 'p4 cbr 400000', 'p5 cbr 600000', 'p1 f', 'p2 f', 'p4 cc', 'd db AcQdKh', 'p4 cc', 'p5 cbr 200000', 'p4 cbr 400000', 'p5 cc', 'd db 6c', 'p4 cbr 400000', 'p5 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 40
18
+ players = ['Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi']
19
+ finishing_stacks = [14325000, 7250000, 2850000, 4800000, 475000]
wsop/2023/43/5/41.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'N2L1D'
2
+ ante_trimming_status = false
3
+ antes = [0, 150000, 0, 0, 0]
4
+ blinds_or_straddles = [50000, 100000, 0, 0, 0]
5
+ min_bet = 100000
6
+ starting_stacks = [7250000, 2850000, 4800000, 475000, 14325000]
7
+ actions = ['d dh p1 JsJc9s7h6s', 'd dh p2 AhAdAcJd9d', 'd dh p3 Qc9h4h3s3h', 'd dh p4 Qd8h5s4d3d', 'd dh p5 KsKcTs7s5c', 'p3 f', 'p4 cbr 200000', 'p5 f', 'p1 f', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 41
17
+ players = ['Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast']
18
+ finishing_stacks = [7200000, 2600000, 4800000, 775000, 14325000]
wsop/2023/43/5/42.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'N2L1D'
2
+ ante_trimming_status = false
3
+ antes = [0, 225000, 0, 0, 0]
4
+ blinds_or_straddles = [75000, 150000, 0, 0, 0]
5
+ min_bet = 150000
6
+ starting_stacks = [2600000, 4800000, 775000, 14325000, 7200000]
7
+ actions = ['d dh p1 ??????????', 'd dh p2 QhJhJc5c3s', 'd dh p3 Ah9s8s8c2c', 'd dh p4 KhQdJs7h4h', 'd dh p5 AdTs7d4c3d', 'p3 cbr 775000', 'p4 f', 'p5 f', 'p1 f', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 42
17
+ players = ['Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton']
18
+ finishing_stacks = [2525000, 4425000, 1225000, 14325000, 7200000]
wsop/2023/43/5/43.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'N2L1D'
2
+ ante_trimming_status = false
3
+ antes = [0, 225000, 0, 0, 0]
4
+ blinds_or_straddles = [75000, 150000, 0, 0, 0]
5
+ min_bet = 150000
6
+ starting_stacks = [4425000, 1225000, 14325000, 7200000, 2525000]
7
+ actions = ['d dh p1 KdJhTc6s3c', 'd dh p2 5s5c4d3s3h', 'd dh p3 Ac8h4s4h2h', 'd dh p4 TsTh9c7h7c', 'd dh p5 KsKh9s6h3d', 'p3 f', 'p4 f', 'p5 f', 'p1 cbr 1000000', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 43
17
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
18
+ finishing_stacks = [4800000, 850000, 14325000, 7200000, 2525000]
wsop/2023/43/5/44.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'N2L1D'
2
+ ante_trimming_status = false
3
+ antes = [0, 225000, 0, 0, 0]
4
+ blinds_or_straddles = [75000, 150000, 0, 0, 0]
5
+ min_bet = 150000
6
+ starting_stacks = [850000, 14325000, 7200000, 2525000, 4800000]
7
+ actions = ['d dh p1 QsQcJsTs2s', 'd dh p2 QhJd5h5c??', 'd dh p3 Td9s9c4d3d', 'd dh p4 Kd9h8d3c2d', 'd dh p5 QdJcTc6h4c', 'p3 f', 'p4 cbr 375000', 'p5 f', 'p1 f', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 44
17
+ players = ['Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst']
18
+ finishing_stacks = [775000, 13950000, 7200000, 2975000, 4800000]
wsop/2023/43/5/45.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'N2L1D'
2
+ ante_trimming_status = false
3
+ antes = [0, 225000, 0, 0, 0]
4
+ blinds_or_straddles = [75000, 150000, 0, 0, 0]
5
+ min_bet = 150000
6
+ starting_stacks = [13950000, 7200000, 2975000, 4800000, 775000]
7
+ actions = ['d dh p1 KdJh6c5s4h', 'd dh p2 JsJd8d5h3h', 'd dh p3 KhQcTh8h2h', 'd dh p4 AhAcKs7c3c', 'd dh p5 Ts9s9h4d2c', 'p3 f', 'p4 f', 'p5 cbr 775000', 'p1 f', 'p2 cc', 'p2 sd JsJd', 'p5 sd 9h', 'd dh p2 Qh8c', 'd dh p5 4s', 'p2 sm 8d5h3hQh8c', 'p5 sm Ts9s4d2c4s']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 45
17
+ players = ['Brian Rast', 'Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi']
18
+ finishing_stacks = [13875000, 6200000, 2975000, 4800000, 1850000]
wsop/2023/43/5/46.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'N2L1D'
2
+ ante_trimming_status = false
3
+ antes = [0, 225000, 0, 0, 0]
4
+ blinds_or_straddles = [75000, 150000, 0, 0, 0]
5
+ min_bet = 150000
6
+ starting_stacks = [6200000, 2975000, 4800000, 1850000, 13875000]
7
+ actions = ['d dh p1 KhKdJdTc9d', 'd dh p2 AsJc6s4d2h', 'd dh p3 AdKsQdTh2c', 'd dh p4 Qs8d8c3c2d', 'd dh p5 8s7h5h3h3d', 'p3 f', 'p4 f', 'p5 cbr 350000', 'p1 f', 'p2 cc', 'p2 sd JcAs', 'p5 sd 3h', 'd dh p2 6c5s', 'd dh p5 Ah', 'p2 cc', 'p5 cc', 'p2 sm 6s4d2h6c5s', 'p5 sm 8s7h5h3dAh']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 46
17
+ players = ['Matthew Ashton', 'Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast']
18
+ finishing_stacks = [6125000, 2400000, 4800000, 1850000, 14525000]
wsop/2023/43/5/47.phh ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'N2L1D'
2
+ ante_trimming_status = false
3
+ antes = [0, 225000, 0, 0, 0]
4
+ blinds_or_straddles = [75000, 150000, 0, 0, 0]
5
+ min_bet = 150000
6
+ starting_stacks = [2400000, 4800000, 1850000, 14525000, 6125000]
7
+ actions = ['d dh p1 Kc8c6s5c3c', 'd dh p2 Js3s2s2d2c', 'd dh p3 Jd8h5s4h4c', 'd dh p4 KsKhQcJhTd', 'd dh p5 AdAcTs8d6h', 'p3 f', 'p4 f', 'p5 f', 'p1 cbr 2400000', 'p2 f']
8
+ author = 'Juho Kim'
9
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
10
+ city = 'Las Vegas'
11
+ region = 'Nevada'
12
+ country = 'United States of America'
13
+ day = 22
14
+ month = 6
15
+ year = 2023
16
+ hand = 47
17
+ players = ['Kristopher Tong', 'James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton']
18
+ finishing_stacks = [2775000, 4425000, 1850000, 14525000, 6125000]
wsop/2023/43/5/48.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'F7S/8'
2
+ ante_trimming_status = true
3
+ antes = [50000, 50000, 50000, 50000, 50000]
4
+ bring_in = 75000
5
+ small_bet = 250000
6
+ big_bet = 500000
7
+ starting_stacks = [4425000, 1850000, 14525000, 6125000, 2775000]
8
+ actions = ['d dh p1 Ac8dAs', 'd dh p2 Tc4h5s', 'd dh p3 Td7h2h', 'd dh p4 KdJsJd', 'd dh p5 8h3hAh', 'p3 pb', 'p4 f', 'p5 cbr 250000', 'p1 cbr 500000', 'p2 f', 'p3 f', 'p5 cc', 'd dh p1 Th', 'd dh p5 3s', 'p1 cc', 'p5 cbr 250000', 'p1 cc', 'd dh p1 3c', 'd dh p5 Jc', 'p5 cc', 'p1 cbr 500000', 'p5 cc', 'd dh p1 Ts', 'd dh p5 7d', 'p1 cbr 500000', 'p5 cc', 'd dh p1 7c', 'd dh p5 4s', 'p1 cbr 500000', 'p5 cc', 'p1 sm Ac8dAsTh3cTs7c', 'p5 sm 8h3hAh3sJc7d4s']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 48
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [4537500, 1800000, 14400000, 6075000, 2887500]
wsop/2023/43/5/49.phh ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ variant = 'F7S/8'
2
+ ante_trimming_status = true
3
+ antes = [50000, 50000, 50000, 50000, 50000]
4
+ bring_in = 75000
5
+ small_bet = 250000
6
+ big_bet = 500000
7
+ starting_stacks = [4550000, 1800000, 14400000, 6075000, 2875000]
8
+ actions = ['d dh p1 ??????', 'd dh p2 Js4sTh', 'd dh p3 Tc3hJd', 'd dh p4 Jh6s2h', 'd dh p5 ??????', 'p4 pb', 'p5 f', 'p1 f', 'p2 f', 'p3 cbr 250000', 'p4 f']
9
+ author = 'Juho Kim'
10
+ event = '2023 World Series of Poker Event #43: $50,000 Poker Players Championship | Day 5'
11
+ city = 'Las Vegas'
12
+ region = 'Nevada'
13
+ country = 'United States of America'
14
+ day = 22
15
+ month = 6
16
+ year = 2023
17
+ hand = 49
18
+ players = ['James Obst', 'Talal Shakerchi', 'Brian Rast', 'Matthew Ashton', 'Kristopher Tong']
19
+ finishing_stacks = [4500000, 1750000, 14675000, 5950000, 2825000]