use std::collections::HashSet;
pub static TRACKERS: LazyCell<HashSet<&'static str>> = LazyCell::new(|| {
vec![
"utm_source",
"utm_medium",
"utm_term",
"utm_campaign",
"utm_content",
"utm_name",
"utm_cid",
"utm_reader",
"utm_viz_id",
"utm_pubreferrer",
"utm_swu",
"ICID",
"icid",
"_hsenc",
"_hsmi",
"mkt_tok",
"mc_cid",
"mc_eid",
"ns_source",
"ns_mchannel",
"ns_campaign",
"ns_linkname",
"ns_fee",
"sr_share",
"vero_conv",
"vero_id",
"fbclid",
"igshid",
"srcid",
"gclid",
"ocid",
"ncid",
"nr_email_referer",
"ref",
"spm",
]
.into_iter()
.collect()
});