export function nor(a: boolean=false, b: boolean=false, c:boolean=false, d: boolean=false,
  e: boolean=false, f: boolean=false, g:boolean=false, h: boolean=false): boolean {
  return !or(a, b, c, d, e, f, g, h);
}