Missing checks for zero-addresses may lead to infunctional protocol, if the variable addresses are updated incorrectly.
Navigate to the following contract functions:
Consider adding zero-address checks in the discussed constructors:
require(newAddr != address(0));.
