# Each line is one game. First two listed players in each game form one team (a pair), # and the rest form the other team (pair or triple as needed). # # No player meets any other more than once, in any capacity. # # No player is in a triple more than twice. m34 = [ # Round 1: [ [24, 32, 16, 0, 8], [25, 33, 17, 1, 9], [2, 10, 18, 26], [3, 11, 19, 27], [4, 12, 20, 28], [5, 13, 21, 29], [6, 14, 22, 30], [7, 15, 23, 31] ], # Round 2: [ [0, 9, 18, 27], [1, 8, 19, 26], [2, 11, 16, 25], [3, 10, 17, 24], [32, 22, 4, 13, 31], [33, 23, 5, 12, 30], [6, 15, 20, 29], [7, 14, 21, 28] ], # Round 3: [ [0, 10, 20, 30], [1, 11, 21, 31], [2, 8, 22, 28], [3, 9, 23, 29], [16, 4, 14, 33, 26], [17, 5, 15, 32, 27], [6, 12, 18, 24], [7, 13, 19, 25] ], # Round 4: [ [33, 0, 11, 22, 29], [32, 1, 10, 23, 28], [2, 9, 20, 31], [3, 8, 21, 30], [4, 15, 18, 25], [5, 14, 19, 24], [6, 13, 16, 27], [7, 12, 17, 26] ], # Round 5: [ [0, 12, 21, 25], [1, 13, 20, 24], [2, 14, 23, 27], [3, 15, 22, 26], [4, 8, 17, 29], [5, 9, 16, 28], [33, 10, 6, 19, 31], [32, 11, 7, 18, 30] ], # Round 6: [ [0, 13, 23, 26], [1, 12, 22, 27], [33, 15, 2, 21, 24], [32, 14, 3, 20, 25], [4, 9, 19, 30], [5, 8, 18, 31], [6, 11, 17, 28], [7, 10, 16, 29] ] ]