if (oSession.uriContains("get-patreon-info.php"))
{ oSession.utilDecodeResponse();
var ResponseBody = System.Text.Encoding.UTF8.GetString(oSession.responseBodyBytes);
var Expression = /\"errors\":\[(.*?)\]/;
ResponseBody = ResponseBody.replace(Expression, "\"errors\":[]");
ResponseBody = ResponseBody.replace("\"whitelisted\":false", "\"whitelisted\":true");
ResponseBody = ResponseBody.replace("\"blacklisted\":true", "\"blacklisted\":false");
ResponseBody = ResponseBody.replace("\"patron_status\":\"\"", "\"patron_status\":\"active_patron\"");
ResponseBody = ResponseBody.replace("\"last_charge_status\":\"\"", "\"last_charge_status\":\"Paid\"");
ResponseBody = ResponseBody.replace("\"last_charge_date\":\"\"", "\"last_charge_date\":\"2022-11-01T21:28:06+00:00\"");
ResponseBody = ResponseBody.replace("\"pledge_history\":[]", "\"pledge_history\": [{\"amount_cents\": 50000, \"currency_code\": \"USD\", \"date\": \"2022-11-01T21:28:06+00:00\", \"payment_status\": \"Paid\", \"tier_id\": \"\", \"tier_title\": \"Benefactor\", \"type\": \"pledge_start\"}]");
ResponseBody = ResponseBody.replace("\"tiers\":[]", "\"tiers\": [{\"amount_cents\": 50000, \"created_at\": \"2022-11-01T21:28:06+00:00\", \"description\": \"Benefactor\", \"discord_role_ids\": \"\", \"edited_at\": \"2022-11-01T21:28:06+00:00\", \"image_url\": \"\", \"patron_count\": 1, \"post_count\": 0, \"published\": true, \"published_at\": \"\", \"remaining\": \"\", \"requires_shipping\": false, \"title\": \"Benefactor\", \"unpublished_at\": \"\", \"url\": \"https://www.patreon.com/join/naughtysandbox/checkout?rid=9112100\", \"user_limit\": \"\"}]");
oSession.utilSetResponseBody(ResponseBody);
}