#!/bin/sh

if [ -z "${2}" ]; then
	exit 1
fi

invalid="$(cat ${2})"
if [ "${invalid}" = "Invalid" ]; then
	exit 1
fi

exit 0
