Checks whether a MAC address is local or universal.
private static function isLocal(string $mac) : bool { return match (self::sanitize($mac)[1]) { '2', '6', 'a', 'e', '3', '7', 'b', 'f' => true, default => false, }; }