function quota(active, abstain, percent)
	return  math.ceil(100*(active-abstain)/percent)
end