# Each line is one game.  First two listed players in each game form one team (a pair), 
# and the rest form the other team.
#
# No player meets any other more than once, in any capacity.

m32 = [
# Round 1:
	[
		[0, 1, 2, 3],
		[4, 5, 6, 7],
		[8, 9, 10, 11],
		[12, 13, 14, 15],
		[16, 17, 18, 19],
		[20, 21, 22, 23],
		[24, 25, 26, 27],
		[28, 29, 30, 31]
	],
# Round 2:
	[
		[0, 4, 8, 28],
		[1, 7, 18, 22],
		[3, 5, 10, 31],
		[15, 19, 21, 26],
		[12, 16, 20, 24],
		[2, 6, 17, 23],
		[11, 13, 25, 30],
		[9, 14, 27, 29]
	],
# Round 3:
	[
		[0, 21, 27, 30],
		[1, 23, 26, 28],
		[3, 6, 13, 24],
		[5, 11, 14, 16],
		[7, 10, 12, 17],
		[2, 9, 15, 20],
		[4, 18, 25, 31],
		[8, 19, 22, 29]
	],
# Round 4:
	[
		[0, 11, 18, 24],
		[1, 10, 19, 25],
		[3, 9, 17, 26],
		[5, 15, 22, 30],
		[6, 14, 21, 31],
		[2, 8, 16, 27],
		[4, 12, 23, 29],
		[7, 13, 20, 28]
	],
# Round 5:
	[
		[0, 10, 13, 22],
		[1, 4, 15, 27],
		[3, 7, 8, 30],
		[14, 19, 23, 24],
		[11, 17, 20, 31],
		[2, 21, 25, 28],
		[5, 9, 12, 18],
		[6, 16, 26, 29]
	],
# Round 6:
	[
		[0, 9, 23, 31],
		[1, 5, 24, 29],
		[3, 14, 18, 28],
		[8, 13, 17, 21],
		[6, 10, 20, 27],
		[2, 12, 19, 30],
		[4, 11, 22, 26],
		[7, 15, 16, 25]
	]
]