# 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.

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