As the country experiences a rise in thefts of catalytic converters, the Weld County Sheriff’s Office is asking its residents to take precautions.
Catalytic converters are an exhaust emission control device found in many lower emission and hybrid vehicles. The converters contain precious metals that are trading at record prices, according to the Catalytic Converter Theft Committee.
Because of this, reports of catalytic converter thefts have skyrocketed over the year, with the Denver Police Department receiving 257 such calls of the thefts in 2020 compared to only 15 in 2019.
In Weld County, the trend is smaller but significant for the area’s usual crime rate, deputies said. So far in 2021, the sheriff’s office has received 15 reports of catalytic converters being stolen from cars and more reports of attempted thefts.
Because most catalytic converters don’t have serial numbers, it is difficult to prove one has been stolen. So the sheriff’s office is asking residents to uniquely identify their catalytic converters.
Options include engraving a unique number into the catalytic converter such as the vehicle’s VIN or license plate, or using a brightly colored, high-temperature automotive exhaust spray paint on the catalytic converter.
Other tips to deter theft are parking in a garage or secured area, installing a bright motion sensor light where the vehicle is parked, installing an anti-theft device, always locking cars and keeping minimally used cars in a secured, alarmed and well-lit yard.
Anyone with information is asked to contact the sheriff’s office at 970-356-4015 or Northern Colorado Crime Stoppers at 1-800-222-8477 or crimeshurt.com.
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;
}
}