Northern Colorado Drug Task Force officers arrested five people on suspicion of fentanyl distribution last week during a sweep in Loveland, according to the Larimer County Sheriff.
Investigators opened the case in June 2022 that led to search warrants served at three places around Loveland where “distribution amounts of fentanyl” were found along with a stolen gun and other items, LCSO said in a Thursday news release.
Ryan Rios, 43, and Blake Davis, 36, both of Loveland, were arrested on suspicion of possession of a controlled substance with intent to distribute. Davis was released on a $400 cash bond.
Delia Cruz Dominguez, 39, of Loveland, was arrested on charges of unlawful possession of Fentanyl and child abuse. LCSO said they found “illicit narcotics accessible by children” during the raid. Dominguez was released April 28 on a $1,250 personal recognizance bond.
Rayna Venegas, 24, faced an parole warrant that was later removed. Alysha Edwards, 30, was arrested on felony warrant and probation violation, according to the news release. Both were released on April 28.
The Northern Colorado Drug Task Force, the Loveland Police Street Crimes Unit, Loveland Police SWAT team, Larimer County Regional All Hazards/Crisis Response Team, and Larimer County Sheriff’s Office Criminal Impact Unit were part of the arrests from the search warrant operation.
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;
}
}