if ((CliScriptAbstract::$flags["isVerbose"] || CliScriptAbstract::$flags["isInteractive"]) && (!CliScriptAbstract::$flags["isQuiet"] && !CliScriptAbstract::$flags["isSilent"])) {
    if ($account_credentials->getNumber() && $account_credentials->getKey() == $account_credentials->getKey($account_credentials->getNumber())) {
        print "Account " . $account_credentials->getNumber() . ": " . $account_credentials->getName() . "\n";
    }
    print "Key: " . $account_credentials->getKey() . "\n";
    print "Secret: " . $account_credentials->getSecret() . "\nValues:";
    print json_encode($call_data, JSON_PRETTY_PRINT) . "\n";
    if (CliScriptAbstract::$flags["isInteractive"]) {
        //Confirm + screen output if user decides to kills the script.
        $script->confirm("Proceed?", "Add the '-h' option for more details on valid inputs.");
    }
    //Seperate input from output
    print "\n\nCall Response\n";
}
////Api Call
$responses = $client->getCall("include", $include_get->getCallData());
$count = 0;
echo "Checking Includes: ";
foreach ($responses["includes"] as $include) {
    echo $count . ", ";
    $count = $count + 1;
    $response = $client->getCall("include", ["include" => $include["name"]]);
    inspectIncludeForZephyr($response, $bad_includes, $horizon_includes, $bad_zephyr_functions);
}
echo "horizon\n";
var_dump($horizon_includes);
echo "\n\nTemplates: \nYellow = No Horizon, Green = Good for Pinning, Red = Trouble Template, Cyan = Swap out filter_content()\n";
if (isset($call_data["template"])) {
    $response = $client->getCall("template", $call_data);
    inspectTemplateForZephyr($response, $bad_includes, $horizon_includes, $bad_zephyr_functions);
} else {