An armed suspect prohibited from possessing firearms was arrested in Aurora on Sunday evening following a lengthy standoff, the Aurora Police Department announced.
Christopher Gott was arrested for violating an extreme risk protection order and will be charged with multiple weapons violations due to his actions during the standoff, police said.
Police said they received a report of gunshots Sunday in the 1300 block of North Geneva Street. The caller said they woke up to gunshots at 4 a.m. and found bullet holes outside their house in the morning.
Officers determined the gunshots came from next door, where Gott lives. Gott had an active extreme risk protection order, a court order under Colorado’s red flag law to prohibit people from having firearms if they pose a risk to themselves or others.
Police said Gott locked himself inside his house for over three hours, refusing to surrender to officers and repeatedly arming himself with a gun. At one point, Gott allegedly fired a gun from inside the house while officers spoke to him.
Gott eventually went into his backyard wearing a bulletproof vest and armed with a gun, police said.
At this point, members of the SWAT team distracted Gott while officers used a flash grenade and K-9s against him. Gott was arrested at around 5:30 p.m., having suffered minor injuries from K-9 bites, police said.
It is unclear why Gott was firing the gun at 4 a.m. No one was injured by the gunshots, police said.
Gott is currently being held at the Aurora jail awaiting trial.
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[].,;:s@”]+(.[^()[].,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}